From: Nicholas Clark Date: Thu, 24 Apr 2008 10:38:56 +0000 (+0000) Subject: On Darwin, -Uuse64bitall shouldn't mean -Duse64bitall :-/ X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=c6eb6e8a70b63dbff935e4cbb2083cc52bcf7605;p=p5sagit%2Fp5-mst-13.2.git On Darwin, -Uuse64bitall shouldn't mean -Duse64bitall :-/ Plus fix a pair of typos in a diagnostic output. p4raw-id: //depot/perl@33737 --- diff --git a/hints/darwin.sh b/hints/darwin.sh index 4dce970..3703ed3 100644 --- a/hints/darwin.sh +++ b/hints/darwin.sh @@ -196,8 +196,8 @@ esac 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 <&4 @@ -206,7 +206,7 @@ case "$osvers" in *** 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 @@ EOM [ "$d_shmctl" ] || d_shmctl='undef' ;; esac -fi +;; +esac ## # System libraries