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 5cc444dd92..bdc8d5b058 100644 --- a/win32/GNUmakefile +++ b/win32/GNUmakefile @@ -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 -# (perl527.dll). Also makes individual DLLs for the XS extensions. +# (perl528.dll). Also makes individual DLLs for the XS extensions. # # The easiest way to customize the build process is to use parameters like this: # @@ -63,7 +63,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.27.11 +#INST_VER := \5.28.0 # # Comment this out if you DON'T want your perl installation to have @@ -225,7 +225,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 perl527s.lib will also be created. +# variables below. A static library perl528s.lib will also be created. # Ordinary perl.exe is not affected by this option. # #BUILD_STATIC := define @@ -943,9 +943,9 @@ ifeq ($(CCTYPE),GCC) CFGSH_TMPL = config.gc CFGH_TMPL = config_H.gc -PERLIMPLIB = $(COREDIR)\libperl527$(a) -PERLIMPLIBBASE = libperl527$(a) -PERLSTATICLIB = ..\libperl527s$(a) +PERLIMPLIB = $(COREDIR)\libperl528$(a) +PERLIMPLIBBASE = libperl528$(a) +PERLSTATICLIB = ..\libperl528s$(a) INT64 = long long else @@ -958,12 +958,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)\perl527$(a) -PERLIMPLIBBASE ?= perl527$(a) -PERLEXPLIB ?= $(COREDIR)\perl527.exp -PERLSTATICLIB ?= ..\perl527s$(a) -PERLDLL = ..\perl527.dll -PERLDLLBASE = perl527.dll +PERLIMPLIB ?= $(COREDIR)\perl528$(a) +PERLIMPLIBBASE ?= perl528$(a) +PERLEXPLIB ?= $(COREDIR)\perl528.exp +PERLSTATICLIB ?= ..\perl528s$(a) +PERLDLL = ..\perl528.dll +PERLDLLBASE = perl528.dll # don't let "gmake -n all" try to run "miniperl.exe make_ext.pl" PLMAKE = gmake |