diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2002-03-10 05:12:08 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2002-03-10 05:12:08 +0000 |
commit | 095a0503139d0a302aafb5098d9481c2b47c10fc (patch) | |
tree | 2abd476fbf7e238cd44c7c5fa0c21f3b5ee3c8af /ext/Socket | |
parent | 59bd0823b6625605b67ec19bd9bcc4dd06530e7e (diff) | |
download | perl-095a0503139d0a302aafb5098d9481c2b47c10fc.tar.gz |
Precedence problem.
p4raw-id: //depot/perl@15140
Diffstat (limited to 'ext/Socket')
-rw-r--r-- | ext/Socket/socketpair.t | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/Socket/socketpair.t b/ext/Socket/socketpair.t index 4e3f1714de..242e61cd89 100644 --- a/ext/Socket/socketpair.t +++ b/ext/Socket/socketpair.t @@ -8,8 +8,8 @@ BEGIN { @INC = '../lib'; require Config; import Config; $can_fork = $Config{'d_fork'} - or ($^O eq 'MSWin32' and $Config{useithreads} - and $Config{ccflags} =~ /-DPERL_IMPLICIT_SYS/); + || ($^O eq 'MSWin32' && $Config{useithreads} + && $Config{ccflags} =~ /-DPERL_IMPLICIT_SYS\b/); if ($^O eq "hpux" or $Config{'extensions'} !~ /\bSocket\b/ && |