File tree Expand file tree Collapse file tree 4 files changed +25
-14
lines changed Expand file tree Collapse file tree 4 files changed +25
-14
lines changed Original file line number Diff line number Diff line change 11Changes
22MANIFEST
3+ META.yml
34Makefile.PL
45NetAdmin.pm
56NetAdmin.xs
Original file line number Diff line number Diff line change 1+ --- # YAML:1.0
2+ name : Win32-NetAdmin
3+ abstract : Manage network groups and users in Perl
4+ version : 0.08
5+ author :
6+ - Jan Dubois <jand@activestate.com>
7+ license : perl
8+ requires :
9+ perl : 5.6
10+ resources :
11+ license : http://dev.perl.org/licenses/
12+ homepage : http://code.google.com/p/libwin32/
13+ meta-spec :
14+ version : 1.3
15+ url : http://module-build.sourceforge.net/META-spec-v1.3.html
16+ generated_by : Jan Dubois
Original file line number Diff line number Diff line change @@ -5,17 +5,11 @@ unless ($^O eq "MSWin32" || $^O eq "cygwin") {
55 die " OS unsupported\n " ;
66}
77
8- my @libs ;
9- push @libs , ' -L/lib/w32api -lnetapi32' if $^O eq " cygwin" ;
10-
11- WriteMakefile(
12- ' NAME' => ' Win32::NetAdmin' ,
13- ' VERSION_FROM' => ' NetAdmin.pm' ,
14- ' LIBS' => \@libs ,
15- ' dist' => {COMPRESS => ' gzip -9f' , SUFFIX => ' gz' },
16- ($] < 5.005 ? () :
17- (
18- ' AUTHOR' => ' Douglas Lankshear <dougl@ActiveState.com>' ,
19- ' ABSTRACT_FROM' => ' NetAdmin.pm' ,
20- )),
8+ my %param = (
9+ NAME => ' Win32::NetAdmin' ,
10+ VERSION_FROM => ' NetAdmin.pm' ,
2111);
12+ $param {NO_META } = 1 if eval " $ExtUtils::MakeMaker::VERSION " >= 6.10_03;
13+ $param {LIBS } = [' -L/lib/w32api -lnetapi32' ] if $^O eq " cygwin" ;
14+
15+ WriteMakefile(%param );
Original file line number Diff line number Diff line change @@ -131,7 +131,7 @@ $EXPORT_TAGS{ALL}= \@EXPORT_OK;
131131
132132=head1 NAME
133133
134- Win32::NetAdmin - manage network groups and users in perl
134+ Win32::NetAdmin - Manage network groups and users in Perl
135135
136136=head1 SYNOPSIS
137137
You can’t perform that action at this time.
0 commit comments