From: Nick Ing-Simmons <nik@tiuk.ti.com>
Date: Thu, 2 May 2002 12:57:23 +0000 (+0000)
Subject: Remove show-stoppers to non-PERLIO Win32 builds
X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=b6d604f4723f29adddfe9974781662588dd25ed7;p=p5sagit%2Fp5-mst-13.2.git

Remove show-stoppers to non-PERLIO Win32 builds
(still not a very good show).

p4raw-id: //depot/perlio@16341
---

diff --git a/makedef.pl b/makedef.pl
index 103a1ca..6f6226e 100644
--- a/makedef.pl
+++ b/makedef.pl
@@ -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
diff --git a/win32/makefile.mk b/win32/makefile.mk
index c5c761a..0c88b67 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)