Change 33737 by nicholas@mouse-mill on 2008/04/24 10:38:56
On Darwin, -Uuse64bitall shouldn't mean -Duse64bitall :-/
Plus fix a pair of typos in a diagnostic output.
Affected files ...
... //depot/perl/hints/darwin.sh#65 edit
Differences ...
==== //depot/perl/hints/darwin.sh#65 (text) ====
Index: perl/hints/darwin.sh
--- perl/hints/darwin.sh#64~33330~ 2008-02-18 05:29:01.000000000 -0800
+++ perl/hints/darwin.sh 2008-04-24 03:38:56.000000000 -0700
@@ -196,8 +196,8 @@
EOCBU
# 64-bit addressing support. Currently strictly experimental. DFD 2005-06-06
-if [ "$use64bitall" ]
-then
+case "$use64bitall" in
+$define|true|[yY]*)
case "$osvers" in
[1-7].*)
cat <<EOM >&4
@@ -206,7 +206,7 @@
*** 64-bit addressing is not supported for Mac OS X versions
*** below 10.4 ("Tiger") or Darwin versions below 8. Please try
-*** again without -D64bitall. (-D64bitint will work, however.)
+*** again without -Duse64bitall. (-Duse64bitint will work, however.)
EOM
exit 1
@@ -244,7 +244,8 @@
[ "$d_shmctl" ] || d_shmctl='undef'
;;
esac
-fi
+;;
+esac
##
# System libraries
End of Patch.