RE: Smoke summary results for maint and current on Win32
Jan Dubois [Mon, 14 May 2007 14:58:19 +0000 (07:58 -0700)]
From: "Jan Dubois" <jand@activestate.com>
Message-ID: <013401c79672$fbbdb320$f3391960$@com>

Fixes non-threaded builds on Win32 (which had warnings with VC and
errors with GCC) by compiling the statically linked extension
Win32CORE with -DPERLDLL.

The same fix should be applied more generally to all statically
linked extensions so a further change may be forthcoming, but this
at least gets the standard non-threaded build working again.

p4raw-id: //depot/perl@31220

ext/Win32CORE/Makefile.PL

index 0fec306..c2620e7 100644 (file)
@@ -2,5 +2,6 @@ use ExtUtils::MakeMaker;
 
 WriteMakefile(
     'NAME'             => 'Win32CORE',
+    'DEFINE'           => '-DPERLDLL -DPERL_CORE',
     'VERSION_FROM'     => 'Win32CORE.pm',
 );