summaryrefslogtreecommitdiff
path: root/hints/darwin.sh
diff options
context:
space:
mode:
authorNicholas Clark <nick@ccl4.org>2008-04-24 11:05:02 +0000
committerNicholas Clark <nick@ccl4.org>2008-04-24 11:05:02 +0000
commitc829329af6465d77017066582bbb884099def14d (patch)
tree4a5122c465e2704f27ed204be2606e6b6c41962d /hints/darwin.sh
parentc6eb6e8a70b63dbff935e4cbb2083cc52bcf7605 (diff)
downloadperl-c829329af6465d77017066582bbb884099def14d.tar.gz
Looks like we can do System V IPC 64 bit on Leopard. Lets see whether
the magic smoke escapes from other testers. p4raw-id: //depot/perl@33738
Diffstat (limited to 'hints/darwin.sh')
-rw-r--r--hints/darwin.sh14
1 files changed, 10 insertions, 4 deletions
diff --git a/hints/darwin.sh b/hints/darwin.sh
index 3703ed3443..34b74b721d 100644
--- a/hints/darwin.sh
+++ b/hints/darwin.sh
@@ -212,7 +212,9 @@ EOM
exit 1
;;
*)
- cat <<EOM >&4
+ case "$osvers" in
+ 8.*)
+ cat <<EOM >&4
@@ -224,6 +226,13 @@ EOM
*** ext/threads/shared/t/wait (threaded builds only)
EOM
+
+ [ "$d_msgctl" ] || d_msgctl='undef'
+ [ "$d_semctl" ] || d_semctl='undef'
+ [ "$d_shmctl" ] || d_shmctl='undef'
+ ;;
+ esac
+
case `uname -p` in
powerpc) arch=ppc64 ;;
i386) arch=x86_64 ;;
@@ -239,9 +248,6 @@ EOM
eval $var="\$${var}\ -arch\ $arch"
done
- [ "$d_msgctl" ] || d_msgctl='undef'
- [ "$d_semctl" ] || d_semctl='undef'
- [ "$d_shmctl" ] || d_shmctl='undef'
;;
esac
;;