From d7cf4017fbd37fb6d0a6c48ee86a40b5c95da29a Mon Sep 17 00:00:00 2001 From: Guy Harris Date: Sun, 4 Apr 2010 12:37:15 -0700 Subject: [PATCH] Fix check for Snow Leopard. For OS X version 10.{x}.{y}, Darwin is (at least for later versions) version {x+4}.{y}. --- configure | 2 +- configure.in | 2 +- 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