diff options
Diffstat (limited to 'win32/GNUmakefile')
-rw-r--r-- | win32/GNUmakefile | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/win32/GNUmakefile b/win32/GNUmakefile index 78fc15b725..9b4c1fa7d8 100644 --- a/win32/GNUmakefile +++ b/win32/GNUmakefile @@ -7,7 +7,7 @@ # Windows SDK 64-bit compiler and tools # # This is set up to build a perl.exe that runs off a shared library -# (perl528.dll). Also makes individual DLLs for the XS extensions. +# (perl529.dll). Also makes individual DLLs for the XS extensions. # # The easiest way to customize the build process is to use parameters like this: # @@ -64,7 +64,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.28.0 +#INST_VER := \5.29.0 # # Comment this out if you DON'T want your perl installation to have @@ -226,7 +226,7 @@ DEFAULT_INC_EXCLUDES_DOT := define # 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 perl528s.lib will also be created. +# variables below. A static library perl529s.lib will also be created. # Ordinary perl.exe is not affected by this option. # #BUILD_STATIC := define @@ -944,9 +944,9 @@ ifeq ($(CCTYPE),GCC) CFGSH_TMPL = config.gc CFGH_TMPL = config_H.gc -PERLIMPLIB = $(COREDIR)\libperl528$(a) -PERLIMPLIBBASE = libperl528$(a) -PERLSTATICLIB = ..\libperl528s$(a) +PERLIMPLIB = $(COREDIR)\libperl529$(a) +PERLIMPLIBBASE = libperl529$(a) +PERLSTATICLIB = ..\libperl529s$(a) INT64 = long long else @@ -959,12 +959,12 @@ endif # 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 ?= $(COREDIR)\perl528$(a) -PERLIMPLIBBASE ?= perl528$(a) -PERLEXPLIB ?= $(COREDIR)\perl528.exp -PERLSTATICLIB ?= ..\perl528s$(a) -PERLDLL = ..\perl528.dll -PERLDLLBASE = perl528.dll +PERLIMPLIB ?= $(COREDIR)\perl529$(a) +PERLIMPLIBBASE ?= perl529$(a) +PERLEXPLIB ?= $(COREDIR)\perl529.exp +PERLSTATICLIB ?= ..\perl529s$(a) +PERLDLL = ..\perl529.dll +PERLDLLBASE = perl529.dll # don't let "gmake -n all" try to run "miniperl.exe make_ext.pl" PLMAKE = gmake |