diff options
author | Jerry D. Hedden <jdhedden@cpan.org> | 2007-03-20 06:16:46 -0700 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2007-03-23 11:59:55 +0000 |
commit | 4ce45bab3f8904c62d5ee1ee90b1045ab66a0797 (patch) | |
tree | ef0388ea40de7c36c09f12914883c0a45cdf9b68 /ext/Cwd/Makefile.PL | |
parent | 6d9a2efc11d196fdeaf0052460b1c3ac83deb983 (diff) | |
download | perl-4ce45bab3f8904c62d5ee1ee90b1045ab66a0797.tar.gz |
Cwd doesn't need ppport.h in core
From: "Jerry D. Hedden" <jdhedden@yahoo.com>
Message-ID: <196803.14702.qm@web30215.mail.mud.yahoo.com>
p4raw-id: //depot/perl@30718
Diffstat (limited to 'ext/Cwd/Makefile.PL')
-rw-r--r-- | ext/Cwd/Makefile.PL | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/ext/Cwd/Makefile.PL b/ext/Cwd/Makefile.PL index 29b8de528f..02e5a3b179 100644 --- a/ext/Cwd/Makefile.PL +++ b/ext/Cwd/Makefile.PL @@ -2,4 +2,9 @@ use ExtUtils::MakeMaker; WriteMakefile( NAME => 'Cwd', VERSION_FROM => '../../lib/Cwd.pm', + ( + (grep { $_ eq 'PERL_CORE=1' } @ARGV) + ? () + : ('DEFINE' => '-DUSE_PPPORT_H') + ), ); |