# HG changeset patch # User Marcus Crestani # Date 1203077516 -3600 # Node ID 42711a251efd7ab172c47f4b2a45b0c1495015c8 # Parent 1982c8c556323d6e9e8f976892f1c55a4fca6273 Look for all x86 machines to determine which write barrier to use on MacOSX. diff -r 1982c8c55632 -r 42711a251efd ChangeLog --- 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 + + * configure.ac: Look for all x86 machines to determine which write + barrier to use on MacOSX. + * configure : Rebuild. + 2008-02-12 Jerry James * install.sh: Rename to install-sh and update to latest FSF version. diff -r 1982c8c55632 -r 42711a251efd configure --- 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 diff -r 1982c8c55632 -r 42711a251efd configure.ac --- 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 ;;