diff options
author | Ricardo Signes <rjbs@cpan.org> | 2012-05-01 21:18:37 -0400 |
---|---|---|
committer | Ricardo Signes <rjbs@cpan.org> | 2012-05-10 11:11:40 -0400 |
commit | 5407e0a8eaa47eb0496267be0c13b8cef68baabf (patch) | |
tree | 2321d48f068d5e74fd49b5465d1f971f6458c482 /win32 | |
parent | 01b71c89216c9f447494638a5d108e13c45c3863 (diff) | |
download | perl-5407e0a8eaa47eb0496267be0c13b8cef68baabf.tar.gz |
bump version to 5.16.0 RC0
Done with:
./perl -Ilib Porting/bump-perl-version -i 5.15.9 5.16.0
...followed by a small edit to INSTALL and patchlevel.h.
Diffstat (limited to 'win32')
-rw-r--r-- | win32/Makefile | 12 | ||||
-rw-r--r-- | win32/Makefile.ce | 2 | ||||
-rw-r--r-- | win32/makefile.mk | 16 |
3 files changed, 15 insertions, 15 deletions
diff --git a/win32/Makefile b/win32/Makefile index d5685428ef..30618dbbb4 100644 --- a/win32/Makefile +++ b/win32/Makefile @@ -5,7 +5,7 @@ # Windows SDK 64-bit compiler and tools # # This is set up to build a perl.exe that runs off a shared library -# (perl515.dll). Also makes individual DLLs for the XS extensions. +# (perl516.dll). Also makes individual DLLs for the XS extensions. # ## @@ -37,7 +37,7 @@ INST_TOP = $(INST_DRV)\perl # versioned installation can be obtained by setting INST_TOP above to a # path that includes an arbitrary version string. # -#INST_VER = \5.15.9 +#INST_VER = \5.16.0 # # Comment this out if you DON'T want your perl installation to have @@ -152,7 +152,7 @@ CCTYPE = MSVC60 # 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 perl515s.lib will also be created. +# variables below. A static library perl516s.lib will also be created. # Ordinary perl.exe is not affected by this option. # #BUILD_STATIC = define @@ -516,9 +516,9 @@ $(o).dll: # 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 = ..\perl515.lib -PERLSTATICLIB = ..\perl515s.lib -PERLDLL = ..\perl515.dll +PERLIMPLIB = ..\perl516.lib +PERLSTATICLIB = ..\perl516s.lib +PERLDLL = ..\perl516.dll MINIPERL = ..\miniperl.exe MINIDIR = .\mini diff --git a/win32/Makefile.ce b/win32/Makefile.ce index ba58a33430..7d7b3fde05 100644 --- a/win32/Makefile.ce +++ b/win32/Makefile.ce @@ -6,7 +6,7 @@ SRCDIR = .. PV = 59 -INST_VER = 5.15.9 +INST_VER = 5.16.0 # INSTALL_ROOT specifies a path where this perl will be installed on CE device INSTALL_ROOT=/netzwerk/sprache/perl diff --git a/win32/makefile.mk b/win32/makefile.mk index b3aca56628..2be7c4e0e9 100644 --- a/win32/makefile.mk +++ b/win32/makefile.mk @@ -6,7 +6,7 @@ # Windows SDK 64-bit compiler and tools # # This is set up to build a perl.exe that runs off a shared library -# (perl515.dll). Also makes individual DLLs for the XS extensions. +# (perl516.dll). Also makes individual DLLs for the XS extensions. # ## @@ -38,7 +38,7 @@ INST_TOP *= $(INST_DRV)\perl # versioned installation can be obtained by setting INST_TOP above to a # path that includes an arbitrary version string. # -#INST_VER *= \5.15.9 +#INST_VER *= \5.16.0 # # Comment this out if you DON'T want your perl installation to have @@ -155,7 +155,7 @@ CCTYPE *= GCC # 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 perl515s.lib will also be created. +# variables below. A static library perl516s.lib will also be created. # Ordinary perl.exe is not affected by this option. # #BUILD_STATIC *= define @@ -705,8 +705,8 @@ CFGH_TMPL = config_H.gc64nox CFGSH_TMPL = config.gc CFGH_TMPL = config_H.gc .ENDIF -PERLIMPLIB = ..\libperl515$(a) -PERLSTATICLIB = ..\libperl515s$(a) +PERLIMPLIB = ..\libperl516$(a) +PERLSTATICLIB = ..\libperl516s$(a) .ELSE @@ -722,9 +722,9 @@ CFGH_TMPL = config_H.vc # 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 *= ..\perl515$(a) -PERLSTATICLIB *= ..\perl515s$(a) -PERLDLL = ..\perl515.dll +PERLIMPLIB *= ..\perl516$(a) +PERLSTATICLIB *= ..\perl516s$(a) +PERLDLL = ..\perl516.dll XCOPY = xcopy /f /r /i /d /y RCOPY = xcopy /f /r /i /e /d /y |