Looks like we can do System V IPC 64 bit on Leopard. Lets see whether
Nicholas Clark [Thu, 24 Apr 2008 11:05:02 +0000 (11:05 +0000)]
the magic smoke escapes from other testers.

p4raw-id: //depot/perl@33738

hints/darwin.sh

index 3703ed3..34b74b7 100644 (file)
@@ -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
 ;;