#!/usr/bin/perl -w use 5.001; #not tested use ExtUtils::MakeMaker; use Config; use strict; # See lib/ExtUtils/MakeMaker.pm for details of how to influence # the contents of the Makefile that is written. unless ($^O eq "MSWin32" || $^O eq "cygwin" || $^O eq "interix") { #not tested on Interix die "OS unsupported\n"; } WriteMakefile1( 'NAME' => 'Win32API::File', 'VERSION_FROM' => 'File.pm', # finds $VERSION ( $Config{archname} =~ /-object\b/i ? ( 'CAPI' => 'TRUE' ) : () ), 'AUTHOR' => 'Tye McQueen ', 'ABSTRACT_FROM' => 'File.pm', 'postamble' => { IMPORT_LIST => [qw(/._/ !/[a-z]/ :MEDIA_TYPE)], IFDEF => "!/[a-z\\d]/", CPLUSPLUS => 1, WRITE_PERL => 1, #PERL_FILE_LIST => ['File.pm'], #added by Chorny #C_FILE_LIST => ['File.xs'], #added by Chorny # Comment out next line to rebuild constants defs: NO_REBUILD => 1, }, ( ! $Config{libperl} ? () : ( LIBPERL_A => $Config{libperl} ) ), 'INSTALLDIRS' => (($] >= 5.008009 and $] < 5.012) ? 'perl' : 'site'), 'LICENSE' => 'perl', 'MIN_PERL_VERSION' => 5.001, 'PREREQ_PM' => { 'Math::BigInt' => 0, 'Win32' => 0, 'Carp' => 0, 'IO::File' => 0, }, TEST_REQUIRES => { 'File::Spec' => 0, 'Test::More' => 0, }, META_MERGE => { resources => { repository => 'http://github.com/chorny/Win32API-File', }, }, $^O =~/win/i ? ( dist => { TAR => 'ptar', TARFLAGS => '-c -C -f', }, ) : (), ); # Replacement for MakeMaker's "const2perl section" for versions # of MakeMaker prior to the addition of this functionality: sub MY::postamble { my( $self, %attribs )= @_; # Don't do anything if MakeMaker has const2perl # that already took care of all of this: return unless %attribs; # Don't require these here if we just C above: eval "use ExtUtils::Myconst2perl qw(ParseAttribs); 1" or die "$@"; eval "use ExtUtils::MakeMaker qw(neatvalue); 1" or die "$@"; # If only one module, can skip one level of indirection: my $hvAttr= \%attribs; if( $attribs{IMPORT_LIST} ) { $hvAttr= { $self->{NAME} => \%attribs }; } my( $module, @m, $_final, @clean, @realclean ); foreach $module ( keys %$hvAttr ) { my( $outfile, @perlfiles, @cfiles, $bin, $obj, $final, $noreb ); # Translate user-friendly options into coder-friendly specifics: ParseAttribs( $module, $hvAttr->{$module}, { OUTFILE => \$outfile, C_FILE_LIST => \@perlfiles, PERL_FILE_LIST => \@cfiles, OBJECT => \$obj, BINARY => \$bin, FINAL_PERL => \$final, NO_REBUILD => \$noreb } ); die "IFDEF option in Makefile.PL must be string, not code ref.\n" if ref $hvAttr->{$module}->{IFDEF}; die qq{IFDEF option in Makefile.PL must not contain quotes (").\n} if ref $hvAttr->{$module}->{IFDEF}; # How to create F<$outfile> via ExtUtils::Myconst2perl::Myconst2perl: push @m, " $outfile: @perlfiles @cfiles Makefile" . ' $(PERL) "-I$(PERL_ARCHLIB)" "-I$(PERL_LIB)" -MExtUtils::Myconst2perl \\ -e "my %attribs;" \\ '; $m[-1] =~ s/^/##/gm if $noreb; my( $key, $value ); while( ( $key, $value )= each %{$hvAttr->{$module}} ) { push @m, '-e "$$attribs{' . $key . '}= ' # try {{ }} for dmake . neatvalue($value) . qq[;" \\\n\t ]; $m[-1] =~ s/^/##/gm if $noreb; } push @m, '-e "Myconst2perl(' . neatvalue($module) . ",%attribs)\"\n"; # If requested extra work to generate Perl instead of XS code: if( $bin ) { my @path= split /::/, $module; my $_final= $final; $_final =~ s/\W/_/g; # How to compile F<$outfile> and then run it to produce F<$final>: push @m, " $bin: $outfile" . ' $(CC) $(INC) $(CCFLAGS) $(OPTIMIZE) $(PERLTYPE) $(LARGE) \\ $(SPLIT) $(DEFINE_VERSION) $(XS_DEFINE_VERSION) -I$(PERL_INC) \\ $(DEFINE)' . $outfile . " " . $self->catfile(qw[ $(PERL_INC) $(LIBPERL_A) ]) . " -o $bin $final: $bin " . $self->catfile(".",$bin) . " >$final\n"; $m[-1] =~ s/^/##/gm if $noreb; # Make sure the rarely-used $(INST_ARCHLIB) directory exists: push @m, $self->dir_target('$(INST_ARCHLIB)'); ##warn qq{$path[-1].pm should C.\n}; # Install F<$final> whenever regular pm_to_blib target is built: push @m, " pm_to_blib: ${_final}_to_blib ${_final}_to_blib: $final " . '@$(PERL) "-I$(INST_ARCHLIB)" "-I$(INST_LIB)" \\ "-I$(PERL_ARCHLIB)" "-I$(PERL_LIB)" -MExtUtils::Install \\ -e "pm_to_blib({ ',neatvalue($final),',', neatvalue($self->catfile('$(INST_ARCHLIB)',@path,$final)), ' },', neatvalue($self->catfile(qw[$(INST_LIB) auto])), ')" @$(TOUCH) ', $_final, "_to_blib realclean :: $self->{RM_RF} ", $self->catfile('$(INST_ARCHLIB)', $path[0]), "\n"; push( @clean, $outfile, $bin, $obj, $_final . "_to_blib" ); push( @realclean, $final ) unless $noreb; } else { ##my $name= ( split /::/, $module )[-1]; ##warn qq{$name.xs should C<#include "$final"> }, ## qq{in the C section\n}; push( @realclean, $outfile ) unless $noreb; } } push @m, " clean :: $self->{RM_F} @clean\n" if @clean; push @m, " realclean :: $self->{RM_F} @realclean\n" if @realclean; return join('',@m); } sub WriteMakefile1 { #Compatibility code for old versions of EU::MM. Written by Alexandr Ciornii, version 0.23. Added by eumm-upgrade. my %params=@_; my $eumm_version=$ExtUtils::MakeMaker::VERSION; $eumm_version=eval $eumm_version; die "EXTRA_META is deprecated" if exists $params{EXTRA_META}; die "License not specified" if not exists $params{LICENSE}; if ($params{AUTHOR} and ref($params{AUTHOR}) eq 'ARRAY' and $eumm_version < 6.5705) { $params{META_ADD}->{author}=$params{AUTHOR}; $params{AUTHOR}=join(', ',@{$params{AUTHOR}}); } if ($params{TEST_REQUIRES} and $eumm_version < 6.64) { $params{BUILD_REQUIRES}={ %{$params{BUILD_REQUIRES} || {}} , %{$params{TEST_REQUIRES}} }; delete $params{TEST_REQUIRES}; } if ($params{BUILD_REQUIRES} and $eumm_version < 6.5503) { #EUMM 6.5502 has problems with BUILD_REQUIRES $params{PREREQ_PM}={ %{$params{PREREQ_PM} || {}} , %{$params{BUILD_REQUIRES}} }; delete $params{BUILD_REQUIRES}; } delete $params{CONFIGURE_REQUIRES} if $eumm_version < 6.52; delete $params{MIN_PERL_VERSION} if $eumm_version < 6.48; delete $params{META_MERGE} if $eumm_version < 6.46; delete $params{META_ADD} if $eumm_version < 6.46; delete $params{LICENSE} if $eumm_version < 6.31; delete $params{AUTHOR} if $] < 5.005; delete $params{ABSTRACT_FROM} if $] < 5.005; delete $params{BINARY_LOCATION} if $] < 5.005; WriteMakefile(%params); }