summaryrefslogtreecommitdiff
path: root/ext/Win32CORE
diff options
context:
space:
mode:
authorJan Dubois <jand@activestate.com>2007-05-14 07:58:19 -0700
committerSteve Hay <SteveHay@planit.com>2007-05-15 08:19:56 +0000
commit473ec3c6668a3ba05c7af3e2f8f3366d69569ef4 (patch)
tree20d76a4309ad249a79e40e188833eb8a1a087809 /ext/Win32CORE
parenta13010efb6f6994c9c950ae286dadaa7685194d4 (diff)
downloadperl-473ec3c6668a3ba05c7af3e2f8f3366d69569ef4.tar.gz
RE: Smoke summary results for maint and current on Win32
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
Diffstat (limited to 'ext/Win32CORE')
-rw-r--r--ext/Win32CORE/Makefile.PL1
1 files changed, 1 insertions, 0 deletions
diff --git a/ext/Win32CORE/Makefile.PL b/ext/Win32CORE/Makefile.PL
index 0fec3061be..c2620e78bb 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',
);