summaryrefslogtreecommitdiff
path: root/win32/config_sh.PL
diff options
context:
space:
mode:
authorSteve Hay <steve.m.hay@googlemail.com>2012-06-06 19:17:16 +0100
committerSteve Hay <steve.m.hay@googlemail.com>2012-06-06 19:17:16 +0100
commit2793ad9736be7d9f8d4be845ec4a4ebbc25cb516 (patch)
treed727113f4fb4ffa45620fd90e3082183fe2f4546 /win32/config_sh.PL
parent8876bcbbbc74834fd90d897e87cc5952ac1532da (diff)
downloadperl-2793ad9736be7d9f8d4be845ec4a4ebbc25cb516.tar.gz
Remove Win9x hangover from win32/config_sh.PL
We no longer support Win9x so there is no need to undef d_flock and d_link in that case.
Diffstat (limited to 'win32/config_sh.PL')
-rw-r--r--win32/config_sh.PL6
1 files changed, 0 insertions, 6 deletions
diff --git a/win32/config_sh.PL b/win32/config_sh.PL
index ebea864534..fb23ee71f5 100644
--- a/win32/config_sh.PL
+++ b/win32/config_sh.PL
@@ -107,12 +107,6 @@ $opt{'usemymalloc'} = 'y' if $opt{'d_mymalloc'} eq 'define';
$opt{libpth} = mungepath($opt{libpth}) if exists $opt{libpth};
$opt{incpath} = mungepath($opt{incpath}) if exists $opt{incpath};
-# some functions are not available on Win9x
-unless (defined $ENV{SYSTEMROOT}) { # SystemRoot has been introduced by WinNT
- $opt{d_flock} = 'undef';
- $opt{d_link} = 'undef';
-}
-
# change the lseeksize and lseektype from their canned default values (which
# are set-up for a non-uselargefiles build) if we are building with
# uselargefiles.