diff options
author | Nicholas Clark <nick@ccl4.org> | 2004-03-24 10:29:16 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2004-03-24 10:29:16 +0000 |
commit | 210c4a3d4af9a86fc2ee7906a6a02d684efd3baa (patch) | |
tree | 673e4cf1bb7f2bb78f995bf430cf49578e9a8511 /makedef.pl | |
parent | c5cccb1737e4e86c4c20959d2b4cbc82c412de77 (diff) | |
download | perl-210c4a3d4af9a86fc2ee7906a6a02d684efd3baa.tar.gz |
Export PL_memory_wrap based on PERL_MALLOC_WRAP rather than
NO_MALLOC_WRAP following Configure changes. Identical patch to
mine supplied by Steve Hay while I was working on this.
IP shootout at dawn :-)
p4raw-id: //depot/perl@22576
Diffstat (limited to 'makedef.pl')
-rw-r--r-- | makedef.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/makedef.pl b/makedef.pl index 604a0d1e74..3b9759d3e1 100644 --- a/makedef.pl +++ b/makedef.pl @@ -633,7 +633,7 @@ else { )]; } -unless ($define{'NO_PERL_MALLOC_WRAP'}) { +if ($define{'PERL_MALLOC_WRAP'}) { emit_symbols [qw( PL_memory_wrap )]; |