📄 makefile.pl
字号:
use ExtUtils::MakeMaker;use Config;$expat_libpath = '';$expat_incpath = '';my @replacement_args;foreach (@ARGV) { if (/^EXPAT(LIB|INC)PATH=(.+)/) { if ($1 eq 'LIB') { $expat_libpath = $2; } else { $expat_incpath = $2; } } else { push(@replacement_args, $_); }}@ARGV = @replacement_args;if (not $expat_libpath and $] >= 5.006001) { require ExtUtils::Liblist; # Buggy before this ($expat_libpath) = ExtUtils::Liblist->ext('-lexpat');}unless ($expat_libpath) { # Test for existence of libexpat my $found = 0; foreach (split(/\s+/, $Config{libpth})) { if (-f "$_/libexpat." . $Config{so}) { $found = 1; last; } } unless ($found) { die <<'Expat_Not_Installed;';Expat must be installed prior to building XML::Parser and I can't findit in the standard library directories. You can download expat from:http://sourceforge.net/projects/expat/If expat is installed, but in a non-standard directory, then use thefollowing options to Makefile.PL: EXPATLIBPATH=... To set the directory in which to find libexpat EXPATINCPATH=... To set the directory in which to find expat.hFor example: perl Makefile.PL EXPATLIBPATH=/home/me/lib EXPATINCPATH=/home/me/includeNote that if you build against a shareable library in a non-standard locationyou may (on some platforms) also have to set your LD_LIBRARY_PATH environmentvariable at run time for perl to find the library.Expat_Not_Installed; }}# Don't try to descend into Expat directory for testingsub MY::test{ my $self = shift; my $hold = delete $self->{DIR}; my $ret = $self->MM::test(@_); $self->{DIR} = $hold if defined($hold); $ret;}@extras = ();push(@extras, CAPI => 'TRUE') if ($PERL_VERSION >= 5.005 and $OSNAME eq 'MSWin32' and $Config{archname} =~ /-object\b/i);push(@extras, ABSTRACT_FROM => 'Parser.pm', AUTHOR => 'Clark Cooper (coopercc@netheaven.com)') if ($ExtUtils::MakeMaker::Version >= 5.4301); WriteMakefile( NAME => 'XML::Parser', DIR => [qw(Expat)], dist => {COMPRESS => 'gzip', SUFFIX => '.gz'}, VERSION_FROM => 'Parser.pm', @extras );
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -