diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2001-06-26 19:10:19 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2001-06-26 19:10:19 +0000 |
commit | 9613994f65a16945d058ed97125397c8b3381e8f (patch) | |
tree | 0e14785254cf00e224b42e1a75eb775fdd14705a /win32 | |
parent | 54356c7d1aa08c09134ef6c0c5f3a940c7976f33 (diff) | |
download | perl-9613994f65a16945d058ed97125397c8b3381e8f.tar.gz |
perl_clone_host() needs PERL_IMPLICIT_SYS.
p4raw-id: //depot/perl@10970
Diffstat (limited to 'win32')
-rw-r--r-- | win32/perllib.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/win32/perllib.c b/win32/perllib.c index 36b19a3ad9..fcf1bec884 100644 --- a/win32/perllib.c +++ b/win32/perllib.c @@ -397,7 +397,7 @@ DllMain(HANDLE hModule, /* DLL module handle */ return TRUE; } -#ifdef USE_ITHREADS +#if defined(USE_ITHREADS) && defined(PERL_IMPLICIT_SYS) EXTERN_C PerlInterpreter * perl_clone_host(PerlInterpreter* proto_perl, UV flags) { dTHXo; |