From: Nicholas Clark Date: Thu, 24 Apr 2008 11:05:02 +0000 (+0000) Subject: Looks like we can do System V IPC 64 bit on Leopard. Lets see whether X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=c829329af6465d77017066582bbb884099def14d;p=p5sagit%2Fp5-mst-13.2.git 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 --- diff --git a/hints/darwin.sh b/hints/darwin.sh index 3703ed3..34b74b7 100644 --- a/hints/darwin.sh +++ b/hints/darwin.sh @@ -212,7 +212,9 @@ EOM exit 1 ;; *) - cat <&4 + case "$osvers" in + 8.*) + cat <&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 ;;