aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2010-04-04 12:37:15 -0700
committerGuy Harris <guy@alum.mit.edu>2010-04-04 12:37:15 -0700
commitd7cf4017fbd37fb6d0a6c48ee86a40b5c95da29a (patch)
treeb840395805410d955368ea3ff1d047260ee873d4
parent6776069ed8ca93bcd6dea714a34aefb4fe5fbbec (diff)
Fix check for Snow Leopard.
For OS X version 10.{x}.{y}, Darwin is (at least for later versions) version {x+4}.{y}.
-rwxr-xr-xconfigure2
-rw-r--r--configure.in2
2 files changed, 2 insertions, 2 deletions
diff --git a/configure b/configure
index ebd14ab..e4caa27 100755
--- a/configure
+++ b/configure
@@ -9549,7 +9549,7 @@ fi
if test "$enable_universal" != "no"; then
case "$host_os" in
- darwin10.3*)
+ darwin10.*)
#
# Snow Leopard. Build for x86-64, x86, and
# PPC, with x86-64 first. (That's what Apple
diff --git a/configure.in b/configure.in
index 0f82f6c..2a0ddf1 100644
--- a/configure.in
+++ b/configure.in
@@ -1174,7 +1174,7 @@ darwin*)
if test "$enable_universal" != "no"; then
case "$host_os" in
- darwin10.3*)
+ darwin10.*)
#
# Snow Leopard. Build for x86-64, x86, and
# PPC, with x86-64 first. (That's what Apple