Re: [PATCH perl@10538] make ext/re play nice with DEBUGGING override
Craig A. Berry [Wed, 13 Jun 2001 13:24:28 +0000 (08:24 -0500)]
Message-Id: <5.1.0.14.0.20010613131907.01bbc210@mail.mac.com>

p4raw-id: //depot/perl@10575

ext/re/Makefile.PL

index 9706cc5..f54f1cd 100644 (file)
@@ -10,7 +10,8 @@ my $defines = '-DPERL_EXT_RE_BUILD -DPERL_EXT_RE_DEBUG';
 # not but we need to remember that we pretended so we can avoid
 # linking to things that aren't there.
 
-if ($Config{'usedebugging_perl'} ne 'Y') {
+if ( (($Config{'ccflags'} !~ /DEBUGGING/) && $^O ne 'VMS') || 
+     (exists($Config{'usedebugging_perl'}) && $Config{'usedebugging_perl'} ne 'Y') ) {
   $defines .= ' -DDEBUGGING -DWAS_NOT_DEBUGGING';
 }