summaryrefslogtreecommitdiff
path: root/t
diff options
context:
space:
mode:
authorGurusamy Sarathy <gsar@cpan.org>2000-01-26 09:28:37 +0000
committerGurusamy Sarathy <gsar@cpan.org>2000-01-26 09:28:37 +0000
commitdfdd1393a5b8826d427524003a858b7556c66371 (patch)
treeb09633b780c9c99d18cb75a3d1fd776008cad471 /t
parent5812d790acd59b98b5e3e7519f0367585106cb30 (diff)
downloadperl-dfdd1393a5b8826d427524003a858b7556c66371.tar.gz
tweak exports list on Windows
p4raw-id: //depot/perl@4902
Diffstat (limited to 't')
-rwxr-xr-xt/op/fork.t5
1 files changed, 4 insertions, 1 deletions
diff --git a/t/op/fork.t b/t/op/fork.t
index b743a4589f..11efa79d17 100755
--- a/t/op/fork.t
+++ b/t/op/fork.t
@@ -6,7 +6,10 @@ BEGIN {
chdir 't' if -d 't';
unshift @INC, '../lib';
require Config; import Config;
- unless ($Config{'d_fork'} || ($^O eq 'MSWin32' && $Config{'useithreads'})) {
+ unless ($Config{'d_fork'}
+ or ($^O eq 'MSWin32' and $Config{useithreads}
+ and $Config{ccflags} =~ /-DPERL_IMPLICIT_SYS/))
+ {
print "1..0 # Skip: no fork\n";
exit 0;
}