diff options
Diffstat (limited to 'ext/Errno/Errno_pm.PL')
-rw-r--r-- | ext/Errno/Errno_pm.PL | 8 |
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'"; |