changeset 4424:42711a251efd

Look for all x86 machines to determine which write barrier to use on MacOSX.
author Marcus Crestani <crestani@informatik.uni-tuebingen.de>
date Fri, 15 Feb 2008 13:11:56 +0100
parents 1982c8c55632
children bfb8a26de3cb
files ChangeLog configure configure.ac
diffstat 3 files changed, 8 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/ChangeLog	Thu Feb 14 22:40:17 2008 +0100
+++ b/ChangeLog	Fri Feb 15 13:11:56 2008 +0100
@@ -1,3 +1,9 @@
+2008-02-15  Marcus Crestani  <crestani@xemacs.org>
+
+	* configure.ac: Look for all x86 machines to determine which write
+	barrier to use on MacOSX.
+	* configure : Rebuild.
+
 2008-02-12  Jerry James  <james@xemacs.org>
 
 	* install.sh: Rename to install-sh and update to latest FSF version.
--- a/configure	Thu Feb 14 22:40:17 2008 +0100
+++ b/configure	Fri Feb 15 13:11:56 2008 +0100
@@ -5355,7 +5355,7 @@
   if test "$enable_vdb" = "auto"; then
     case "$opsys" in
       darwin )  case "$machine" in
-		  i686 ) check_vdb_posix=yes ;;
+		  i[3-9]86 ) check_vdb_posix=yes ;;
 		  * ) cat >>confdefs.h <<\_ACEOF
 #define VDB_MACH 1
 _ACEOF
--- a/configure.ac	Thu Feb 14 22:40:17 2008 +0100
+++ b/configure.ac	Fri Feb 15 13:11:56 2008 +0100
@@ -1811,7 +1811,7 @@
   if test "$enable_vdb" = "auto"; then
     case "$opsys" in
       darwin )  case "$machine" in
-		  i686 ) check_vdb_posix=yes ;;
+		  i[[3-9]]86 ) check_vdb_posix=yes ;;
 		  * ) AC_DEFINE(VDB_MACH)  have_vdb_mach=yes ;;
 		esac ;;
       cygwin* ) AC_DEFINE(VDB_WIN32) have_vdb_win32=yes ;;