diff options
author | Gurusamy Sarathy <gsar@engin.umich.edu> | 1997-06-24 10:49:12 +1200 |
---|---|---|
committer | Tim Bunce <Tim.Bunce@ig.co.uk> | 1997-08-07 00:00:00 +1200 |
commit | 6890e559d7ce8a57fe2b6b18ef51d300ce98843f (patch) | |
tree | 80495b2027569001ce15fa521efa9ce066381298 /doio.c | |
parent | b4793f7f58b137d8b2f6d505d6c77dee2cd8cb25 (diff) | |
download | perl-6890e559d7ce8a57fe2b6b18ef51d300ce98843f.tar.gz |
exec() fixed on win32
exec() doesn't work right on Win32 because of the UNIX-specific
do_exec().
This patch fixes that, and updates the README.win32 in spots.
p5p-msgid: 199706241525.LAA06554@aatma.engin.umich.edu
Diffstat (limited to 'doio.c')
-rw-r--r-- | doio.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -942,7 +942,7 @@ do_execfree() } } -#ifndef OS2 +#if !defined(OS2) && !defined(WIN32) bool do_exec(cmd) @@ -1033,7 +1033,7 @@ char *cmd; return FALSE; } -#endif /* OS2 */ +#endif /* OS2 || WIN32 */ I32 apply(type,mark,sp) |