diff options
author | Nick Ing-Simmons <nik@tiuk.ti.com> | 2002-05-02 12:57:23 +0000 |
---|---|---|
committer | Nick Ing-Simmons <nik@tiuk.ti.com> | 2002-05-02 12:57:23 +0000 |
commit | b6d604f4723f29adddfe9974781662588dd25ed7 (patch) | |
tree | b595301f451e7db1e1f2217755f7245979c4f5f6 /win32 | |
parent | 6f1dbb99bde2ded9560cd9d59916180dfa35e21f (diff) | |
download | perl-b6d604f4723f29adddfe9974781662588dd25ed7.tar.gz |
Remove show-stoppers to non-PERLIO Win32 builds
(still not a very good show).
p4raw-id: //depot/perlio@16341
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) |