diff options
Diffstat (limited to 'win32')
-rw-r--r-- | win32/makefile.mk | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/win32/makefile.mk b/win32/makefile.mk index c5c761aae6..0c88b67099 100644 --- a/win32/makefile.mk +++ b/win32/makefile.mk @@ -68,7 +68,7 @@ USE_ITHREADS *= define USE_IMP_SYS *= define # -# uncomment to enable the experimental PerlIO I/O subsystem. +# Comment to disable I/O subsystem and use compiler's stdio for IO USE_PERLIO = define # @@ -701,9 +701,11 @@ WIN32_SRC = \ .\win32sck.c \ .\win32thread.c -.IF "$(USE_PERLIO)" == "define" +# We need this for miniperl build unless we override canned +# config.h #define building mini\* +#.IF "$(USE_PERLIO)" == "define" WIN32_SRC += .\win32io.c -.ENDIF +#.ENDIF .IF "$(CRYPT_SRC)" != "" WIN32_SRC += .\$(CRYPT_SRC) |