[svn:ponie] rev 297 - trunk

[email protected] 24 Jun 2005 20:19:04 -0000
Newsgroups perl.ponie.changes
Message-ID <[email protected]>
Author: nicholas
Date: Fri Jun 24 13:19:04 2005
New Revision: 297

Modified:
   trunk/Configure.pl
Log:
Avoid using perl's malloc for now, as it seems to be causing some problems.
Need to figure out why.


Modified: trunk/Configure.pl
==============================================================================
--- trunk/Configure.pl	(original)
+++ trunk/Configure.pl	Fri Jun 24 13:19:04 2005
@@ -34,6 +34,7 @@ foreach my $i (1..$configs) {
   my $config_value = $Config{"config_arg$i"};
   next if($config_value =~/thread/i);
   next if($config_value eq '-Dmksymlinks');
+  next if($config_value =~ /-Dusemymalloc/);
   next if($config_value eq '-Duseshrplib');
   next if($config_value eq '-Dprefix');
   next if($config_value =~/\-de/);