diff options
-rw-r--r-- | ext/Fcntl/Makefile.PL | 2 | ||||
-rw-r--r-- | ext/POSIX/Makefile.PL | 2 | ||||
-rw-r--r-- | ext/Socket/Makefile.PL | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/ext/Fcntl/Makefile.PL b/ext/Fcntl/Makefile.PL index 43067893eb..2bed7547a1 100644 --- a/ext/Fcntl/Makefile.PL +++ b/ext/Fcntl/Makefile.PL @@ -39,7 +39,7 @@ my @names = (qw( {name=>"SEEK_END", default=>["IV", "2"]}, {name=>"_S_IFMT", macro=>"S_IFMT", value=>"S_IFMT"}); WriteConstants( - ($] > 5.009002 ? (PROXYSUBS => 1) : ()), + PROXYSUBS => 1, NAME => 'Fcntl', NAMES => \@names, ); diff --git a/ext/POSIX/Makefile.PL b/ext/POSIX/Makefile.PL index ff04c3e116..4a2c08a13e 100644 --- a/ext/POSIX/Makefile.PL +++ b/ext/POSIX/Makefile.PL @@ -119,7 +119,7 @@ if ($rt_signals) { } WriteConstants( - ($] > 5.009002 ? (PROXYSUBS => 1) : ()), + PROXYSUBS => 1, NAME => 'POSIX', NAMES => \@names, ); diff --git a/ext/Socket/Makefile.PL b/ext/Socket/Makefile.PL index 672e2265f7..043f4823cd 100644 --- a/ext/Socket/Makefile.PL +++ b/ext/Socket/Makefile.PL @@ -72,7 +72,7 @@ push @names, foreach qw(INADDR_ANY INADDR_LOOPBACK INADDR_NONE INADDR_BROADCAST); WriteConstants( - ($] > 5.009002 ? (PROXYSUBS => 1) : ()), + PROXYSUBS => 1, NAME => 'Socket', NAMES => \@names, ); |