summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2012-04-19 15:21:26 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2012-04-19 15:21:26 +0000
commit78564e2470a12706a97516bc8eb00ae7ca0b08df (patch)
treef0ab151820012551aca6f45e1c14ecbcc248bf0e /tools
parent775b2ba810205b812d04a476e17d5aca80de9cf7 (diff)
remove soundtouch, fixes for Snow Leopard build, use libintl explicitly on non-glibc systems, fix for new glib include rules
git-svn-id: svn://localhost/ardour2/branches/2.0-ongoing@12031 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'tools')
-rwxr-xr-xtools/config.guess9
1 files changed, 7 insertions, 2 deletions
diff --git a/tools/config.guess b/tools/config.guess
index 917bbc50f3..44afbd4cc4 100755
--- a/tools/config.guess
+++ b/tools/config.guess
@@ -3,7 +3,7 @@
# Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
# 2000, 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc.
-timestamp='2005-07-08'
+timestamp='2012-03-22'
# This file is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License as published by
@@ -1182,7 +1182,12 @@ EOF
*:Darwin:*:*)
UNAME_PROCESSOR=`uname -p` || UNAME_PROCESSOR=unknown
case $UNAME_PROCESSOR in
- *86) UNAME_PROCESSOR=i686 ;;
+ *86) if sysctl hw.cpu64bit_capable 2>&1 | grep -q 1 ; then
+ UNAME_PROCESSOR=x86_64
+ else
+ UNAME_PROCESSOR=i686
+ fi
+ ;;
unknown) UNAME_PROCESSOR=powerpc ;;
esac
echo ${UNAME_PROCESSOR}-apple-darwin${UNAME_RELEASE}