summaryrefslogtreecommitdiff
path: root/ext/Socket
diff options
context:
space:
mode:
authorJarkko Hietaniemi <jhi@iki.fi>2002-03-10 05:12:08 +0000
committerJarkko Hietaniemi <jhi@iki.fi>2002-03-10 05:12:08 +0000
commit095a0503139d0a302aafb5098d9481c2b47c10fc (patch)
tree2abd476fbf7e238cd44c7c5fa0c21f3b5ee3c8af /ext/Socket
parent59bd0823b6625605b67ec19bd9bcc4dd06530e7e (diff)
downloadperl-095a0503139d0a302aafb5098d9481c2b47c10fc.tar.gz
Precedence problem.
p4raw-id: //depot/perl@15140
Diffstat (limited to 'ext/Socket')
-rw-r--r--ext/Socket/socketpair.t4
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/ &&