diff options
author | Sawyer X <xsawyerx@cpan.org> | 2020-06-28 01:12:28 +0300 |
---|---|---|
committer | Sawyer X <xsawyerx@cpan.org> | 2020-06-28 01:12:28 +0300 |
commit | f69f4f3b692191ce147efb8938365cd41642adcd (patch) | |
tree | 99a796f4b445be7cef884b484328fbf9ba0e1771 /win32/GNUmakefile | |
parent | 21d681b3bd67e6ee92be19e85cac9ba9e8c8a979 (diff) | |
download | perl-f69f4f3b692191ce147efb8938365cd41642adcd.tar.gz |
Bump to 5.33.0
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 0aac005e85..ad7687008d 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 -# (perl532.dll). Also makes individual DLLs for the XS extensions. +# (perl533.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.32.0 +#INST_VER := \5.33.0 # # Comment this out if you DON'T want your perl installation to have @@ -230,7 +230,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 perl532s.lib will also be created. +# variables below. A static library perl533s.lib will also be created. # Ordinary perl.exe is not affected by this option. # #BUILD_STATIC := define @@ -1004,9 +1004,9 @@ ifeq ($(CCTYPE),GCC) CFGSH_TMPL = config.gc CFGH_TMPL = config_H.gc -PERLIMPLIB = $(COREDIR)\libperl532$(a) -PERLIMPLIBBASE = libperl532$(a) -PERLSTATICLIB = ..\libperl532s$(a) +PERLIMPLIB = $(COREDIR)\libperl533$(a) +PERLIMPLIBBASE = libperl533$(a) +PERLSTATICLIB = ..\libperl533s$(a) INT64 = long long else @@ -1019,12 +1019,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)\perl532$(a) -PERLIMPLIBBASE ?= perl532$(a) -PERLEXPLIB ?= $(COREDIR)\perl532.exp -PERLSTATICLIB ?= ..\perl532s$(a) -PERLDLL = ..\perl532.dll -PERLDLLBASE = perl532.dll +PERLIMPLIB ?= $(COREDIR)\perl533$(a) +PERLIMPLIBBASE ?= perl533$(a) +PERLEXPLIB ?= $(COREDIR)\perl533.exp +PERLSTATICLIB ?= ..\perl533s$(a) +PERLDLL = ..\perl533.dll +PERLDLLBASE = perl533.dll # don't let "gmake -n all" try to run "miniperl.exe make_ext.pl" PLMAKE = gmake |