diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2003-01-22 12:28:11 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2003-01-22 12:28:11 +0000 |
commit | dbc2e2f5b50305115fcf8ccedc2a968a39d143d8 (patch) | |
tree | 62f0ff33e7624f069bc9af83666e9a20dc7f82e5 /ext/List | |
parent | bead796dc4d5a86b0e596704c7487333567211a6 (diff) | |
download | perl-dbc2e2f5b50305115fcf8ccedc2a968a39d143d8.tar.gz |
Integrate from maint-5.8:
[ 18375]
Better version of change #18370; use the new 'E' flag
so that cxinc is exposed (as cpp) only to List::Util
(well, any extension) (well, anyone who does -DPERL_EXT),
no need to export it globally.
p4raw-link: @18375 on //depot/maint-5.8/perl: c8ec9884b4dd9ffdd0a7d1514952a74c55bfab3e
p4raw-link: @18370 on //depot/maint-5.8/perl: 94115b5677e78fbc3321ad88fedfaa3b6bc804bf
p4raw-id: //depot/perl@18551
p4raw-integrated: from //depot/maint-5.8/perl@18545 'copy in'
ext/List/Util/Makefile.PL (@17645..) 'merge in' embed.fnc
embed.h global.sym (@18370..)
Diffstat (limited to 'ext/List')
-rw-r--r-- | ext/List/Util/Makefile.PL | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ext/List/Util/Makefile.PL b/ext/List/Util/Makefile.PL index eed19f9c5a..48dccdb91d 100644 --- a/ext/List/Util/Makefile.PL +++ b/ext/List/Util/Makefile.PL @@ -2,8 +2,9 @@ use ExtUtils::MakeMaker; WriteMakefile( VERSION_FROM => "lib/List/Util.pm", - MAN3PODS => {}, # Pods will be built by installman. + MAN3PODS => {}, # Pods will be built by installman. NAME => "List::Util", + DEFINE => "-DPERL_EXT", ); package MY; |