changeset 5564:209024442c24

Examine $machine more carefully when choosing VDB implementation, NEW_GC ChangeLog addition: 2011-09-05 Aidan Kehoe <kehoea@parhasard.net> * 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.
author Aidan Kehoe <kehoea@parhasard.net>
date Mon, 05 Sep 2011 20:18:05 +0100
parents 309e5631e4c8
children 48a3d3281b48
files ChangeLog configure configure.ac
diffstat 3 files changed, 10 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- 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  <kehoea@parhasard.net>
+
+	* 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  <kehoea@parhasard.net>
 
 	* configure.ac:
--- 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 ;;
--- 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 ;;