diff options
author | Steve Hay <SteveHay@planit.com> | 2006-12-05 16:41:55 +0000 |
---|---|---|
committer | Steve Hay <SteveHay@planit.com> | 2006-12-05 16:41:55 +0000 |
commit | 1fd1213a7b551f5b3fc24c317118ef268b06783e (patch) | |
tree | 740e215591ebb47ed205b573ea82cc841cff71b3 /win32/config_sh.PL | |
parent | 27bdbd07da4037be18a7347ab1c0d4093e037413 (diff) | |
download | perl-1fd1213a7b551f5b3fc24c317118ef268b06783e.tar.gz |
Make the check for PERL_IMPLICIT_SYS better
p4raw-id: //depot/perl@29470
Diffstat (limited to 'win32/config_sh.PL')
-rw-r--r-- | win32/config_sh.PL | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/win32/config_sh.PL b/win32/config_sh.PL index 3f819fe1da..6aa2a327a0 100644 --- a/win32/config_sh.PL +++ b/win32/config_sh.PL @@ -109,7 +109,7 @@ if ($opt{uselargefiles} ne 'define') { $opt{lseektype} = 'off_t'; } -if ($opt{useithreads} eq 'define' && $opt{ccflags} =~ / -DPERL_IMPLICIT_SYS/) { +if ($opt{useithreads} eq 'define' && $opt{ccflags} =~ /-DPERL_IMPLICIT_SYS\b/) { $opt{d_pseudofork} = 'define'; } |