summaryrefslogtreecommitdiff
path: root/win32/win32.c
diff options
context:
space:
mode:
authorNick Ing-Simmons <nik@tiuk.ti.com>2002-05-03 07:25:13 +0000
committerNick Ing-Simmons <nik@tiuk.ti.com>2002-05-03 07:25:13 +0000
commit2cbbe5a150b07f176547702112505e3d30ea082f (patch)
tree8627d6764220c9bfe35221e78ce2dab3e5fe4b7b /win32/win32.c
parent079b94bc698b0934beaf07d168872e7ff53ba831 (diff)
downloadperl-2cbbe5a150b07f176547702112505e3d30ea082f.tar.gz
Several of non-default builds now seem to work reasonably well
English.t seems to fail on an errno test, and socketpair blathers about something. Basic fix is to stop PERL_IMPLICIT_SYS turning on USE_PERLIO by the back door, and instead have perlsdio.h vector stdio via iperlsys.h function tables (latter was done in earlier change). Update comments in Makefile.mk p4raw-id: //depot/perlio@16367
Diffstat (limited to 'win32/win32.c')
-rw-r--r--win32/win32.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/win32/win32.c b/win32/win32.c
index 4669d3ab07..f72acdde64 100644
--- a/win32/win32.c
+++ b/win32/win32.c
@@ -2643,6 +2643,7 @@ win32_popen(const char *command, const char *mode)
#ifdef USE_RTL_POPEN
return _popen(command, mode);
#else
+ dTHX;
int p[2];
int parent, child;
int stdfd, oldfd;