|
From: <sv...@va...> - 2009-01-08 22:19:20
|
Author: njn
Date: 2009-01-08 21:39:19 +0000 (Thu, 08 Jan 2009)
New Revision: 8925
Log:
DARWIN/configure.in
On x86-only Macs, the primary build target was incorrectly determined to
be AMD64_DARWIN. This commit fixes it by making the setup the same as
the Linux setup.
Modified:
branches/DARWIN/configure.in
Modified: branches/DARWIN/configure.in
===================================================================
--- branches/DARWIN/configure.in 2009-01-08 13:29:51 UTC (rev 8924)
+++ branches/DARWIN/configure.in 2009-01-08 21:39:19 UTC (rev 8925)
@@ -394,8 +394,12 @@
fi
AC_MSG_RESULT([ok (${host_cpu}-${host_os})])
;;
- x86-darwin|amd64-darwin)
- # darwin: build universal by default and let the kernel sort it out
+ x86-darwin)
+ VG_PLATFORM_PRI="X86_DARWIN"
+ VG_PLATFORM_SEC=""
+ AC_MSG_RESULT([ok (${host_cpu}-${host_os})])
+ ;;
+ amd64-darwin)
if test x$vg_cv_only64bit = xyes; then
VG_PLATFORM_PRI="AMD64_DARWIN"
VG_PLATFORM_SEC=""
|