summaryrefslogtreecommitdiff
path: root/ext/Errno
diff options
context:
space:
mode:
authorBrian Fraser <fraserbn@gmail.com>2014-06-03 18:58:50 +0200
committerBrian Fraser <fraserbn@gmail.com>2014-06-11 23:22:01 +0200
commitf05550c064c2736017a5c65739d9eee325eed149 (patch)
tree0683d5b400decb18f981f8b2e310ae4ea3c28911 /ext/Errno
parent27d9ebc5085bbcf931d590338a1dda72490bbd9c (diff)
downloadperl-f05550c064c2736017a5c65739d9eee325eed149.tar.gz
Removed NeXT support
Diffstat (limited to 'ext/Errno')
-rw-r--r--ext/Errno/Errno_pm.PL8
1 files changed, 2 insertions, 6 deletions
diff --git a/ext/Errno/Errno_pm.PL b/ext/Errno/Errno_pm.PL
index 55ad01a0c4..ca954b720e 100644
--- a/ext/Errno/Errno_pm.PL
+++ b/ext/Errno/Errno_pm.PL
@@ -2,7 +2,7 @@ use ExtUtils::MakeMaker;
use Config;
use strict;
-our $VERSION = "1.20_03";
+our $VERSION = "1.20_04";
my %err = ();
@@ -61,11 +61,7 @@ sub process_file {
warn "Cannot open '$file'";
return;
}
- } elsif ($Config{gccversion} ne ''
- # OpenSTEP has gcc 2.7.2.1 which recognizes but
- # doesn't implement the -dM flag.
- && $^O ne 'openstep' && $^O ne 'next' && $^O ne 'darwin'
- ) {
+ } elsif ($Config{gccversion} ne '' && $^O ne 'darwin' ) {
# With the -dM option, gcc outputs every #define it finds
unless(open(FH,"$Config{cc} -E -dM $Config{cppflags} $file |")) {
warn "Cannot open '$file'";