comparison configure.ac @ 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 10455659ab64
children 86d6adeb1cf4
comparison
equal deleted inserted replaced
5563:309e5631e4c8 5564:209024442c24
1444 1444
1445 if test "$with_newgc" = "yes"; then 1445 if test "$with_newgc" = "yes"; then
1446 if test "$with_vdb" = "auto"; then 1446 if test "$with_vdb" = "auto"; then
1447 case "$opsys" in 1447 case "$opsys" in
1448 darwin ) case "$machine" in 1448 darwin ) case "$machine" in
1449 i[[3-9]]86 ) check_vdb_posix=yes ;; 1449 intel386 ) check_vdb_posix=yes ;;
1450 * ) AC_DEFINE(VDB_MACH) have_vdb_mach=yes ;; 1450 * ) AC_DEFINE(VDB_MACH) have_vdb_mach=yes ;;
1451 esac ;; 1451 esac ;;
1452 cygwin* ) AC_DEFINE(VDB_WIN32) have_vdb_win32=yes ;; 1452 cygwin* ) AC_DEFINE(VDB_WIN32) have_vdb_win32=yes ;;
1453 linux* ) check_vdb_posix=yes ;; 1453 linux* ) check_vdb_posix=yes ;;
1454 freebsd ) check_vdb_posix=yes ;; 1454 freebsd ) check_vdb_posix=yes ;;