From: Jan Dubois Date: Mon, 14 May 2007 14:58:19 +0000 (-0700) Subject: RE: Smoke summary results for maint and current on Win32 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=473ec3c6668a3ba05c7af3e2f8f3366d69569ef4;p=p5sagit%2Fp5-mst-13.2.git RE: Smoke summary results for maint and current on Win32 From: "Jan Dubois" 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 --- diff --git a/ext/Win32CORE/Makefile.PL b/ext/Win32CORE/Makefile.PL index 0fec306..c2620e7 100644 --- a/ext/Win32CORE/Makefile.PL +++ b/ext/Win32CORE/Makefile.PL @@ -2,5 +2,6 @@ use ExtUtils::MakeMaker; WriteMakefile( 'NAME' => 'Win32CORE', + 'DEFINE' => '-DPERLDLL -DPERL_CORE', 'VERSION_FROM' => 'Win32CORE.pm', );