diff options
-rw-r--r-- | win32/Makefile | 2 | ||||
-rw-r--r-- | win32/makefile.mk | 2 | ||||
-rw-r--r-- | win32/win32.h | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/win32/Makefile b/win32/Makefile index 45f71462ca..79edfc2bad 100644 --- a/win32/Makefile +++ b/win32/Makefile @@ -169,7 +169,7 @@ CCLIBDIR = $(CCHOME)\lib # # This should normally be disabled. Enabling it causes perl to read scripts # in text mode (which is the 5.005 behavior) and will break ByteLoader. -#BUILDOPT = $(BUILDOPT) -DUSE_TEXTMODE_SCRIPTS +#BUILDOPT = $(BUILDOPT) -DPERL_TEXTMODE_SCRIPTS # # This should normally be disabled. Enabling it runs a cloned toplevel diff --git a/win32/makefile.mk b/win32/makefile.mk index ac43a1628b..9bdcf3d796 100644 --- a/win32/makefile.mk +++ b/win32/makefile.mk @@ -188,7 +188,7 @@ CCLIBDIR *= $(CCHOME)\lib # # This should normally be disabled. Enabling it causes perl to read scripts # in text mode (which is the 5.005 behavior) and will break ByteLoader. -#BUILDOPT += -DUSE_TEXTMODE_SCRIPTS +#BUILDOPT += -DPERL_TEXTMODE_SCRIPTS # # This should normally be disabled. Enabling it runs a cloned toplevel diff --git a/win32/win32.h b/win32/win32.h index b9fbaf4aa8..9d56578229 100644 --- a/win32/win32.h +++ b/win32/win32.h @@ -330,7 +330,7 @@ typedef char * caddr_t; /* In malloc.c (core address). */ #define PERL_CORE #endif -#ifdef USE_TEXTMODE_SCRIPTS +#ifdef PERL_TEXTMODE_SCRIPTS # define PERL_SCRIPT_MODE "r" #else # define PERL_SCRIPT_MODE "rb" |