~ubuntu-branches/ubuntu/wily/libnet-openssh-perl/wily

« back to all changes in this revision

Viewing changes to Makefile.PL

  • Committer: Package Import Robot
  • Author(s): Florian Schlichting, Salvatore Bonaccorso, Florian Schlichting
  • Date: 2015-08-18 18:58:06 UTC
  • mfrom: (1.1.3)
  • Revision ID: package-import@ubuntu.com-20150818185806-dcl4qx92q3depu2j
Tags: 0.64-1
[ Salvatore Bonaccorso ]
* Update Vcs-Browser URL to cgit web frontend

[ Florian Schlichting ]
* Convert packaging to git-debcherry
* Add debian/upstream/metadata
* Import Upstream version 0.64
* Update copyright years
* Declare compliance with Debian Policy 3.9.6
* Mark package autopkgtest-able
* Drop old and create new pod-wording.patch

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
use 5.008;
2
2
use ExtUtils::MakeMaker;
3
3
 
4
 
$^O =~ /Win32/ and die "This module does not work on MS Windows.\nTry installing a real OS!\n";
 
4
if ($^O =~ /MSWin|cygwin/i) {
 
5
    warn <<EOW;
 
6
Only a minor subset of the functionality of Net::OpenSSH is supported on Windows.
 
7
It is OK to install it as a dependency of Net::SSH::Any though.
 
8
EOW
 
9
}
5
10
 
6
11
my $ssh_V = `ssh -V 2>&1`;
7
12
if (defined $ssh_V) {