# HG changeset patch # User Aidan Kehoe # Date 1315250285 -3600 # Node ID 209024442c24890a1d5534a254a11ab6949a66c7 # Parent 309e5631e4c87596db4d03bccc8c7afa4e5caf7f Examine $machine more carefully when choosing VDB implementation, NEW_GC ChangeLog addition: 2011-09-05 Aidan Kehoe * configure.ac: $machine is intel386, reflecting the file name under src/m/, on i[3-9]86. Respect this when deciding on VDB_POSIX over VDB_MACH with the new GC. * configure: Regenerate. diff -r 309e5631e4c8 -r 209024442c24 ChangeLog --- a/ChangeLog Tue Sep 06 00:04:26 2011 +0900 +++ b/ChangeLog Mon Sep 05 20:18:05 2011 +0100 @@ -1,3 +1,11 @@ +2011-09-05 Aidan Kehoe + + * configure.ac: $machine is intel386, reflecting the file name + under src/m/, on i[3-9]86. Respect this when deciding on VDB_POSIX + over VDB_MACH with the new GC. + * configure: + Regenerate. + 2011-08-24 Aidan Kehoe * configure.ac: diff -r 309e5631e4c8 -r 209024442c24 configure --- a/configure Tue Sep 06 00:04:26 2011 +0900 +++ b/configure Mon Sep 05 20:18:05 2011 +0100 @@ -5907,7 +5907,7 @@ if test "$with_vdb" = "auto"; then case "$opsys" in darwin ) case "$machine" in - i[3-9]86 ) check_vdb_posix=yes ;; + intel386 ) check_vdb_posix=yes ;; * ) $as_echo "#define VDB_MACH 1" >>confdefs.h have_vdb_mach=yes ;; esac ;; diff -r 309e5631e4c8 -r 209024442c24 configure.ac --- a/configure.ac Tue Sep 06 00:04:26 2011 +0900 +++ b/configure.ac Mon Sep 05 20:18:05 2011 +0100 @@ -1446,7 +1446,7 @@ if test "$with_vdb" = "auto"; then case "$opsys" in darwin ) case "$machine" in - i[[3-9]]86 ) check_vdb_posix=yes ;; + intel386 ) check_vdb_posix=yes ;; * ) AC_DEFINE(VDB_MACH) have_vdb_mach=yes ;; esac ;; cygwin* ) AC_DEFINE(VDB_WIN32) have_vdb_win32=yes ;;