Change 32714 by [EMAIL PROTECTED] on 2007/12/23 02:15:30
Welcome to Perl 5.11, win32!
Affected files ...
... //depot/perl/win32/Makefile#351 edit
... //depot/perl/win32/makefile.mk#390 edit
Differences ...
==== //depot/perl/win32/Makefile#351 (text) ====
Index: perl/win32/Makefile
--- perl/win32/Makefile#350~32649~ 2007-12-19 06:13:07.000000000 -0800
+++ perl/win32/Makefile 2007-12-22 18:15:30.000000000 -0800
@@ -5,7 +5,7 @@
# MS Platform SDK 64-bit compiler and tools
#
# This is set up to build a perl.exe that runs off a shared library
-# (perl510.dll). Also makes individual DLLs for the XS extensions.
+# (perl511.dll). Also makes individual DLLs for the XS extensions.
#
##
@@ -170,7 +170,7 @@
# set this to additionally provide a statically linked perl-static.exe.
# Note that dynamic loading will not work with this perl, so you must
# include required modules statically using the STATIC_EXT or ALL_STATIC
-# variables below. A static library perl510s.lib will also be created.
+# variables below. A static library perl511s.lib will also be created.
# Ordinary perl.exe is not affected by this option.
#
#BUILD_STATIC = define
@@ -546,9 +546,9 @@
# makedef.pl must be updated if this changes, and this should normally
# only change when there is an incompatible revision of the public API.
-PERLIMPLIB = ..\perl510.lib
-PERLSTATICLIB = ..\perl510s.lib
-PERLDLL = ..\perl510.dll
+PERLIMPLIB = ..\perl511.lib
+PERLSTATICLIB = ..\perl511s.lib
+PERLDLL = ..\perl511.dll
MINIPERL = ..\miniperl.exe
MINIDIR = .\mini
==== //depot/perl/win32/makefile.mk#390 (text) ====
Index: perl/win32/makefile.mk
--- perl/win32/makefile.mk#389~32649~ 2007-12-19 06:13:07.000000000 -0800
+++ perl/win32/makefile.mk 2007-12-22 18:15:30.000000000 -0800
@@ -7,7 +7,7 @@
# MS Platform SDK 64-bit compiler and tools **experimental**
#
# This is set up to build a perl.exe that runs off a shared library
-# (perl510.dll). Also makes individual DLLs for the XS extensions.
+# (perl511.dll). Also makes individual DLLs for the XS extensions.
#
##
@@ -188,7 +188,7 @@
# set this to additionally provide a statically linked perl-static.exe.
# Note that dynamic loading will not work with this perl, so you must
# include required modules statically using the STATIC_EXT or ALL_STATIC
-# variables below. A static library perl510s.lib will also be created.
+# variables below. A static library perl511s.lib will also be created.
# Ordinary perl.exe is not affected by this option.
#
#BUILD_STATIC *= define
@@ -784,8 +784,8 @@
CFGSH_TMPL = config.gc
CFGH_TMPL = config_H.gc
-PERLIMPLIB = ..\libperl510$(a)
-PERLSTATICLIB = ..\libperl510s$(a)
+PERLIMPLIB = ..\libperl511$(a)
+PERLSTATICLIB = ..\libperl511s$(a)
.ELSE
@@ -801,9 +801,9 @@
# makedef.pl must be updated if this changes, and this should normally
# only change when there is an incompatible revision of the public API.
-PERLIMPLIB *= ..\perl510$(a)
-PERLSTATICLIB *= ..\perl510s$(a)
-PERLDLL = ..\perl510.dll
+PERLIMPLIB *= ..\perl511$(a)
+PERLSTATICLIB *= ..\perl511s$(a)
+PERLDLL = ..\perl511.dll
XCOPY = xcopy /f /r /i /d /y
RCOPY = xcopy /f /r /i /e /d /y
End of Patch.