diff options
author | Dominic Dunlop <domo@computer.org> | 2006-02-24 18:22:54 +0100 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2006-02-27 10:33:59 +0000 |
commit | ee94f8101362ee382e42ec2d404d79b0ab7d17ef (patch) | |
tree | 4afc1f551b829e9f05a4172215a458ab0e72464a /hints/darwin.sh | |
parent | 2b191d539426a03a8efd04e7a058708ee109afe5 (diff) | |
download | perl-ee94f8101362ee382e42ec2d404d79b0ab7d17ef.tar.gz |
Suppress System V IPC for 64-bit Darwin builds
Message-Id: <A685C5DB-23CE-430E-95F1-CC7A9480DDF9@mac.com>
p4raw-id: //depot/perl@27333
Diffstat (limited to 'hints/darwin.sh')
-rw-r--r-- | hints/darwin.sh | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/hints/darwin.sh b/hints/darwin.sh index d2cfe20daa..ffca869c9c 100644 --- a/hints/darwin.sh +++ b/hints/darwin.sh @@ -217,16 +217,21 @@ EOM *** Perl 64-bit addressing support is experimental for Mac OS X -*** 10.4 ("Tiger") and Darwin version 8. Expect a number of test -*** failures: -*** ext/IPC/sysV/t/* -*** ext/threads/shared/t/wait +*** 10.4 ("Tiger") and Darwin version 8. System V IPC is disabled +*** due to problems with the 64-bit versions of msgctl, semctl, +*** and shmctl. You should also expect the following test failures: +*** +*** ext/threads/shared/t/wait (threaded builds only) EOM for var in ccflags cppflags ld ldflags do eval $var="\$${var}\ -arch\ ppc64" done + + [ "$d_msgctl" ] || d_msgctl='undef' + [ "$d_semctl" ] || d_semctl='undef' + [ "$d_shmctl" ] || d_shmctl='undef' ;; esac fi |