diff options
author | Andrew Dunstan <andrew@dunslane.net> | 2006-01-08 15:50:00 +0000 |
---|---|---|
committer | Andrew Dunstan <andrew@dunslane.net> | 2006-01-08 15:50:00 +0000 |
commit | ed47146f1e376a1dc3dbef4ea9a53cac9eebe3c6 (patch) | |
tree | f15fb801c3e7b8c772d70deb83a6e1f27c513e76 /src/pl/plperl/spi_internal.c | |
parent | e1926aa91e316594926218187386da3077b8da88 (diff) |
Stop perl from hijacking stdio and other stuff on Windows.
Diffstat (limited to 'src/pl/plperl/spi_internal.c')
-rw-r--r-- | src/pl/plperl/spi_internal.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/pl/plperl/spi_internal.c b/src/pl/plperl/spi_internal.c index c022d7d9e57..e7f9c20f7be 100644 --- a/src/pl/plperl/spi_internal.c +++ b/src/pl/plperl/spi_internal.c @@ -8,6 +8,12 @@ /* Defined by Perl */ #undef _ + +/* stop perl from hijacking stdio and other stuff */ +#ifdef WIN32 +#define WIN32IO_IS_STDIO +#endif + #include "spi_internal.h" |