summaryrefslogtreecommitdiff
path: root/ext/Errno
diff options
context:
space:
mode:
authorRandal L. Schwartz <merlyn@stonehenge.com>2001-11-02 01:33:34 -0800
committerJarkko Hietaniemi <jhi@iki.fi>2001-11-02 17:53:00 +0000
commit8f4f83badb7d1ba9fbdc45673bc7277e7619b775 (patch)
tree6a3390cea5e2b797cd03b602e7a133d70c1df0d2 /ext/Errno
parent3d555cb8c04bfcf8315c3f7c616b505041697522 (diff)
downloadperl-8f4f83badb7d1ba9fbdc45673bc7277e7619b775.tar.gz
patches for MacOS X 10.1 for perl 5.7.2
Message-ID: <m1wv193wnl.fsf@halfdome.holdit.com> (two of the changes) Better coexistence with extensions. p4raw-id: //depot/perl@12816
Diffstat (limited to 'ext/Errno')
-rw-r--r--ext/Errno/Errno_pm.PL2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/Errno/Errno_pm.PL b/ext/Errno/Errno_pm.PL
index 58b440b9c4..541106cbc2 100644
--- a/ext/Errno/Errno_pm.PL
+++ b/ext/Errno/Errno_pm.PL
@@ -30,7 +30,7 @@ sub process_file {
} 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 'openstep' && $^O ne 'next' && $^O ne 'darwin'
) {
# With the -dM option, gcc outputs every #define it finds
unless(open(FH,"$Config{cc} -E -dM $Config{cppflags} $file |")) {