diff options
Diffstat (limited to 'hints')
-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 |