Remove show-stoppers to non-PERLIO Win32 builds
Nick Ing-Simmons [Thu, 2 May 2002 12:57:23 +0000 (12:57 +0000)]
(still not a very good show).

p4raw-id: //depot/perlio@16341

makedef.pl
win32/makefile.mk

index 103a1ca..6f6226e 100644 (file)
@@ -1241,13 +1241,15 @@ perl_destruct
 perl_free
 perl_parse
 perl_run
-# Oddities
+# Oddities from PerlIO 
+PerlIO_open
 PerlIO_binmode
 PerlIO_getpos
 PerlIO_init
 PerlIO_perlio
 PerlIO_setpos
 PerlIO_sprintf
+PerlIO_printf
 PerlIO_sv_dup
 PerlIO_tmpfile
 PerlIO_vsprintf
index c5c761a..0c88b67 100644 (file)
@@ -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)