diff options
Diffstat (limited to 'win32/makefile.mk')
-rw-r--r-- | win32/makefile.mk | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/win32/makefile.mk b/win32/makefile.mk index 262e8fcf77..e651a7bb6e 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 -# (perl518.dll). Also makes individual DLLs for the XS extensions. +# (perl519.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.18.0 +#INST_VER *= \5.19.0 # # Comment this out if you DON'T want your perl installation to have @@ -165,7 +165,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 perl518s.lib will also be created. +# variables below. A static library perl519s.lib will also be created. # Ordinary perl.exe is not affected by this option. # #BUILD_STATIC *= define @@ -718,8 +718,8 @@ UTILS = \ CFGSH_TMPL = config.gc CFGH_TMPL = config_H.gc -PERLIMPLIB = ..\libperl518$(a) -PERLSTATICLIB = ..\libperl518s$(a) +PERLIMPLIB = ..\libperl519$(a) +PERLSTATICLIB = ..\libperl519s$(a) INT64 = long long INT64f = ll @@ -734,9 +734,9 @@ INT64f = I64 # 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 *= ..\perl518$(a) -PERLSTATICLIB *= ..\perl518s$(a) -PERLDLL = ..\perl518.dll +PERLIMPLIB *= ..\perl519$(a) +PERLSTATICLIB *= ..\perl519s$(a) +PERLDLL = ..\perl519.dll XCOPY = xcopy /f /r /i /d /y RCOPY = xcopy /f /r /i /e /d /y |