From a813bc223cf883f486720d3c252036e6e304ec5f Mon Sep 17 00:00:00 2001 From: Bryce Denney Date: Wed, 6 Mar 2002 23:04:17 +0000 Subject: [PATCH] - add default guis for every platform, and default CFLAGS for the ones that need it. The goal is that configure;make does something usable on every platform. --- bochs/patches/patch.check-platform | 2732 +++++++++++++++------------- 1 file changed, 1469 insertions(+), 1263 deletions(-) diff --git a/bochs/patches/patch.check-platform b/bochs/patches/patch.check-platform index f1b4efba3..b28f818f7 100644 --- a/bochs/patches/patch.check-platform +++ b/bochs/patches/patch.check-platform @@ -1,3 +1,66 @@ +diff -urN clean/.conf.macosx chkplat/.conf.macosx +--- clean/.conf.macosx Thu Dec 13 16:02:56 2001 ++++ chkplat/.conf.macosx Wed Mar 6 17:56:24 2002 +@@ -4,7 +4,7 @@ + + set echo + CC="cc" +-CFLAGS="-fpascal-strings -fno-common -arch ppc -Wno-four-char-constants -Wno-unknown-pragmas -Dmacintosh -pipe -g" ++CFLAGS="-pipe -g" + CXX="$CC" + CXXFLAGS="$CFLAGS" + +@@ -13,6 +13,6 @@ + export CFLAGS + export CXXFLAGS + +-./configure --with-carbon ++./configure + + unset echo +diff -urN clean/.conf.sparc chkplat/.conf.sparc +--- clean/.conf.sparc Mon Apr 9 21:04:08 2001 ++++ chkplat/.conf.sparc Wed Mar 6 17:57:10 2002 +@@ -19,7 +19,8 @@ + export CFLAGS + export CXXFLAGS + +-./configure --enable-fpu ++./configure ++#./configure --enable-fpu + #./configure + #./configure --enable-instrumentation + #./configure --with-nogui +diff -urN clean/.conf.win32-cygwin chkplat/.conf.win32-cygwin +--- clean/.conf.win32-cygwin Fri Nov 16 09:23:18 2001 ++++ chkplat/.conf.win32-cygwin Wed Mar 6 17:34:46 2002 +@@ -6,7 +6,7 @@ + + CC="gcc" + CXX="g++" +-CFLAGS="-mno-cygwin -DWIN32 -O6 -march=pentium -mpentium" ++CFLAGS="-O6 -march=pentium -mpentium" + CXXFLAGS="$CFLAGS" + + export CC +@@ -14,4 +14,4 @@ + export CFLAGS + export CXXFLAGS + +-./configure --with-win32 --enable-cdrom --enable-sb16=win ++./configure --enable-cdrom --enable-sb16=win +diff -urN clean/.conf.win32-vcpp chkplat/.conf.win32-vcpp +--- clean/.conf.win32-vcpp Tue Nov 20 19:16:18 2001 ++++ chkplat/.conf.win32-vcpp Wed Mar 6 17:57:58 2002 +@@ -15,7 +15,7 @@ + #./configure --with-win32-vcpp --enable-debugger --enable-disasm + #./configure --with-win32-vcpp --enable-disasm + +-./configure --with-win32-vcpp --enable-cdrom --enable-sb16=win --enable-ne2000 --enable-cpp --disable-readline ++./configure --target=pentium-windows --enable-cdrom --enable-sb16=win --enable-ne2000 --enable-cpp --disable-readline + + unset echo + diff -urN clean/config.guess chkplat/config.guess --- clean/config.guess Wed Dec 31 19:00:00 1969 +++ chkplat/config.guess Wed Mar 6 15:59:56 2002 @@ -2733,7 +2796,7 @@ diff -urN clean/config.sub chkplat/config.sub +# End: diff -urN clean/configure chkplat/configure --- clean/configure Tue Mar 5 10:56:54 2002 -+++ chkplat/configure Wed Mar 6 16:00:38 2002 ++++ chkplat/configure Wed Mar 6 17:53:18 2002 @@ -665,6 +665,11 @@ X features: --x-includes=DIR X include files are in DIR @@ -2825,7 +2888,7 @@ diff -urN clean/configure chkplat/configure (exit $ac_status); }; then ac_path_separator=';' else -@@ -1022,6 +1027,122 @@ +@@ -1022,6 +1027,169 @@ VER_STRING="1.4.pre1" REL_STRING="March 5, 2002" @@ -2934,326 +2997,373 @@ diff -urN clean/configure chkplat/configure + NONENONEs,x,x, && + program_prefix=${target_alias}- + ++# this case statement defines the compile flags which are needed to ++# compile bochs on a platform. Don't put things like optimization settings ++# into the configure.in file, since people will want to be able to change ++# those settings by defining CFLAGS and CXXFLAGS before running configure. +case "$target" in -+ i5686-pc-cygwin) -+ ADD_FLAGS="-mno-cygwin -DWIN32 -march=pentium -mpentium" ++ *-pc-windows* | *-pc-winnt*) ++ DEFAULT_GUI=win32 # default to win32 gui + ;; + *-pc-cygwin) -+ ADD_FLAGS="-mno-cygwin -DWIN32" ++ ADD_FLAGS="-mno-cygwin -DWIN32" # required for cygwin compile ++ DEFAULT_GUI=win32 # default to win32 gui ++ ;; ++ *-darwin) ++ ADD_FLAGS="-fpascal-strings -fno-common -arch ppc -Wno-four-char-constants -Wno-unknown-pragmas -Dmacintosh" # required for macosx compile ++ DEFAULT_GUI=carbon # default to carbon ++ ;; ++ *-macos) ++ DEFAULT_GUI=macos # macos defaults to macos ++ ;; ++ *-beos) ++ DEFAULT_GUI=beos # beos defaults to beos ++ ;; ++ *-amigaos) ++ DEFAULT_GUI=amigaos # amigaos defaults to amigaos ++ ;; ++ *) ++ DEFAULT_GUI=x11 + ;; +esac +CFLAGS="$CFLAGS $ADD_FLAGS" +CXXFLAGS="$CXXFLAGS $ADD_FLAGS" ++ ++echo "$as_me:1167: checking for standard CFLAGS on this platform" >&5 ++echo $ECHO_N "checking for standard CFLAGS on this platform... $ECHO_C" >&6 ++echo "$as_me:1169: result: $ADD_FLAGS" >&5 ++echo "${ECHO_T}$ADD_FLAGS" >&6 ++echo "$as_me:1171: checking for default library on this platform" >&5 ++echo $ECHO_N "checking for default library on this platform... $ECHO_C" >&6 ++echo "$as_me:1173: result: $DEFAULT_GUI" >&5 ++echo "${ECHO_T}$DEFAULT_GUI" >&6 ++ ++if (test "$with_sdl" != yes) && \ ++ (test "$with_x11" != yes) && \ ++ (test "$with_beos" != yes) && \ ++ (test "$with_win32" != yes) && \ ++ (test "$with_nogui" != yes) && \ ++ (test "$with_win32_vcpp" != yes) && \ ++ (test "$with_term" != yes) && \ ++ (test "$with_rfb" != yes) && \ ++ (test "$with_amigaos" != yes) && \ ++ (test "$with_carbon" != yes) && \ ++ (test "$with_macos" != yes); then ++ # use DEFAULT_GUI. Set the appropriate variable. ++ # DEFAULT_GUI must be set to one of the names above. Otherwise, no ++ # valid $with_* variable will be set and who knows what will happen? ++ eval "with_${DEFAULT_GUI}=yes" ++fi + ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -@@ -1030,7 +1151,7 @@ +@@ -1030,7 +1198,7 @@ if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}gcc", so it can be a program name with args. set dummy ${ac_tool_prefix}gcc; ac_word=$2 -echo "$as_me:1033: checking for $ac_word" >&5 -+echo "$as_me:1154: checking for $ac_word" >&5 ++echo "$as_me:1201: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_prog_CC+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 -@@ -1045,7 +1166,7 @@ +@@ -1045,7 +1213,7 @@ test -z "$ac_dir" && ac_dir=. $as_executable_p "$ac_dir/$ac_word" || continue ac_cv_prog_CC="${ac_tool_prefix}gcc" -echo "$as_me:1048: found $ac_dir/$ac_word" >&5 -+echo "$as_me:1169: found $ac_dir/$ac_word" >&5 ++echo "$as_me:1216: found $ac_dir/$ac_word" >&5 break done -@@ -1053,10 +1174,10 @@ +@@ -1053,10 +1221,10 @@ fi CC=$ac_cv_prog_CC if test -n "$CC"; then - echo "$as_me:1056: result: $CC" >&5 -+ echo "$as_me:1177: result: $CC" >&5 ++ echo "$as_me:1224: result: $CC" >&5 echo "${ECHO_T}$CC" >&6 else - echo "$as_me:1059: result: no" >&5 -+ echo "$as_me:1180: result: no" >&5 ++ echo "$as_me:1227: result: no" >&5 echo "${ECHO_T}no" >&6 fi -@@ -1065,7 +1186,7 @@ +@@ -1065,7 +1233,7 @@ ac_ct_CC=$CC # Extract the first word of "gcc", so it can be a program name with args. set dummy gcc; ac_word=$2 -echo "$as_me:1068: checking for $ac_word" >&5 -+echo "$as_me:1189: checking for $ac_word" >&5 ++echo "$as_me:1236: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_prog_ac_ct_CC+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 -@@ -1080,7 +1201,7 @@ +@@ -1080,7 +1248,7 @@ test -z "$ac_dir" && ac_dir=. $as_executable_p "$ac_dir/$ac_word" || continue ac_cv_prog_ac_ct_CC="gcc" -echo "$as_me:1083: found $ac_dir/$ac_word" >&5 -+echo "$as_me:1204: found $ac_dir/$ac_word" >&5 ++echo "$as_me:1251: found $ac_dir/$ac_word" >&5 break done -@@ -1088,10 +1209,10 @@ +@@ -1088,10 +1256,10 @@ fi ac_ct_CC=$ac_cv_prog_ac_ct_CC if test -n "$ac_ct_CC"; then - echo "$as_me:1091: result: $ac_ct_CC" >&5 -+ echo "$as_me:1212: result: $ac_ct_CC" >&5 ++ echo "$as_me:1259: result: $ac_ct_CC" >&5 echo "${ECHO_T}$ac_ct_CC" >&6 else - echo "$as_me:1094: result: no" >&5 -+ echo "$as_me:1215: result: no" >&5 ++ echo "$as_me:1262: result: no" >&5 echo "${ECHO_T}no" >&6 fi -@@ -1104,7 +1225,7 @@ +@@ -1104,7 +1272,7 @@ if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}cc", so it can be a program name with args. set dummy ${ac_tool_prefix}cc; ac_word=$2 -echo "$as_me:1107: checking for $ac_word" >&5 -+echo "$as_me:1228: checking for $ac_word" >&5 ++echo "$as_me:1275: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_prog_CC+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 -@@ -1119,7 +1240,7 @@ +@@ -1119,7 +1287,7 @@ test -z "$ac_dir" && ac_dir=. $as_executable_p "$ac_dir/$ac_word" || continue ac_cv_prog_CC="${ac_tool_prefix}cc" -echo "$as_me:1122: found $ac_dir/$ac_word" >&5 -+echo "$as_me:1243: found $ac_dir/$ac_word" >&5 ++echo "$as_me:1290: found $ac_dir/$ac_word" >&5 break done -@@ -1127,10 +1248,10 @@ +@@ -1127,10 +1295,10 @@ fi CC=$ac_cv_prog_CC if test -n "$CC"; then - echo "$as_me:1130: result: $CC" >&5 -+ echo "$as_me:1251: result: $CC" >&5 ++ echo "$as_me:1298: result: $CC" >&5 echo "${ECHO_T}$CC" >&6 else - echo "$as_me:1133: result: no" >&5 -+ echo "$as_me:1254: result: no" >&5 ++ echo "$as_me:1301: result: no" >&5 echo "${ECHO_T}no" >&6 fi -@@ -1139,7 +1260,7 @@ +@@ -1139,7 +1307,7 @@ ac_ct_CC=$CC # Extract the first word of "cc", so it can be a program name with args. set dummy cc; ac_word=$2 -echo "$as_me:1142: checking for $ac_word" >&5 -+echo "$as_me:1263: checking for $ac_word" >&5 ++echo "$as_me:1310: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_prog_ac_ct_CC+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 -@@ -1154,7 +1275,7 @@ +@@ -1154,7 +1322,7 @@ test -z "$ac_dir" && ac_dir=. $as_executable_p "$ac_dir/$ac_word" || continue ac_cv_prog_ac_ct_CC="cc" -echo "$as_me:1157: found $ac_dir/$ac_word" >&5 -+echo "$as_me:1278: found $ac_dir/$ac_word" >&5 ++echo "$as_me:1325: found $ac_dir/$ac_word" >&5 break done -@@ -1162,10 +1283,10 @@ +@@ -1162,10 +1330,10 @@ fi ac_ct_CC=$ac_cv_prog_ac_ct_CC if test -n "$ac_ct_CC"; then - echo "$as_me:1165: result: $ac_ct_CC" >&5 -+ echo "$as_me:1286: result: $ac_ct_CC" >&5 ++ echo "$as_me:1333: result: $ac_ct_CC" >&5 echo "${ECHO_T}$ac_ct_CC" >&6 else - echo "$as_me:1168: result: no" >&5 -+ echo "$as_me:1289: result: no" >&5 ++ echo "$as_me:1336: result: no" >&5 echo "${ECHO_T}no" >&6 fi -@@ -1178,7 +1299,7 @@ +@@ -1178,7 +1346,7 @@ if test -z "$CC"; then # Extract the first word of "cc", so it can be a program name with args. set dummy cc; ac_word=$2 -echo "$as_me:1181: checking for $ac_word" >&5 -+echo "$as_me:1302: checking for $ac_word" >&5 ++echo "$as_me:1349: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_prog_CC+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 -@@ -1198,7 +1319,7 @@ +@@ -1198,7 +1366,7 @@ continue fi ac_cv_prog_CC="cc" -echo "$as_me:1201: found $ac_dir/$ac_word" >&5 -+echo "$as_me:1322: found $ac_dir/$ac_word" >&5 ++echo "$as_me:1369: found $ac_dir/$ac_word" >&5 break done -@@ -1220,10 +1341,10 @@ +@@ -1220,10 +1388,10 @@ fi CC=$ac_cv_prog_CC if test -n "$CC"; then - echo "$as_me:1223: result: $CC" >&5 -+ echo "$as_me:1344: result: $CC" >&5 ++ echo "$as_me:1391: result: $CC" >&5 echo "${ECHO_T}$CC" >&6 else - echo "$as_me:1226: result: no" >&5 -+ echo "$as_me:1347: result: no" >&5 ++ echo "$as_me:1394: result: no" >&5 echo "${ECHO_T}no" >&6 fi -@@ -1234,7 +1355,7 @@ +@@ -1234,7 +1402,7 @@ do # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. set dummy $ac_tool_prefix$ac_prog; ac_word=$2 -echo "$as_me:1237: checking for $ac_word" >&5 -+echo "$as_me:1358: checking for $ac_word" >&5 ++echo "$as_me:1405: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_prog_CC+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 -@@ -1249,7 +1370,7 @@ +@@ -1249,7 +1417,7 @@ test -z "$ac_dir" && ac_dir=. $as_executable_p "$ac_dir/$ac_word" || continue ac_cv_prog_CC="$ac_tool_prefix$ac_prog" -echo "$as_me:1252: found $ac_dir/$ac_word" >&5 -+echo "$as_me:1373: found $ac_dir/$ac_word" >&5 ++echo "$as_me:1420: found $ac_dir/$ac_word" >&5 break done -@@ -1257,10 +1378,10 @@ +@@ -1257,10 +1425,10 @@ fi CC=$ac_cv_prog_CC if test -n "$CC"; then - echo "$as_me:1260: result: $CC" >&5 -+ echo "$as_me:1381: result: $CC" >&5 ++ echo "$as_me:1428: result: $CC" >&5 echo "${ECHO_T}$CC" >&6 else - echo "$as_me:1263: result: no" >&5 -+ echo "$as_me:1384: result: no" >&5 ++ echo "$as_me:1431: result: no" >&5 echo "${ECHO_T}no" >&6 fi -@@ -1273,7 +1394,7 @@ +@@ -1273,7 +1441,7 @@ do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 -echo "$as_me:1276: checking for $ac_word" >&5 -+echo "$as_me:1397: checking for $ac_word" >&5 ++echo "$as_me:1444: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_prog_ac_ct_CC+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 -@@ -1288,7 +1409,7 @@ +@@ -1288,7 +1456,7 @@ test -z "$ac_dir" && ac_dir=. $as_executable_p "$ac_dir/$ac_word" || continue ac_cv_prog_ac_ct_CC="$ac_prog" -echo "$as_me:1291: found $ac_dir/$ac_word" >&5 -+echo "$as_me:1412: found $ac_dir/$ac_word" >&5 ++echo "$as_me:1459: found $ac_dir/$ac_word" >&5 break done -@@ -1296,10 +1417,10 @@ +@@ -1296,10 +1464,10 @@ fi ac_ct_CC=$ac_cv_prog_ac_ct_CC if test -n "$ac_ct_CC"; then - echo "$as_me:1299: result: $ac_ct_CC" >&5 -+ echo "$as_me:1420: result: $ac_ct_CC" >&5 ++ echo "$as_me:1467: result: $ac_ct_CC" >&5 echo "${ECHO_T}$ac_ct_CC" >&6 else - echo "$as_me:1302: result: no" >&5 -+ echo "$as_me:1423: result: no" >&5 ++ echo "$as_me:1470: result: no" >&5 echo "${ECHO_T}no" >&6 fi -@@ -1311,32 +1432,32 @@ +@@ -1311,32 +1479,32 @@ fi -test -z "$CC" && { { echo "$as_me:1314: error: no acceptable cc found in \$PATH" >&5 -+test -z "$CC" && { { echo "$as_me:1435: error: no acceptable cc found in \$PATH" >&5 ++test -z "$CC" && { { echo "$as_me:1482: error: no acceptable cc found in \$PATH" >&5 echo "$as_me: error: no acceptable cc found in \$PATH" >&2;} { (exit 1); exit 1; }; } # Provide some information about the compiler. -echo "$as_me:1319:" \ -+echo "$as_me:1440:" \ ++echo "$as_me:1487:" \ "checking for C compiler version" >&5 ac_compiler=`set X $ac_compile; echo $2` -{ (eval echo "$as_me:1322: \"$ac_compiler --version &5\"") >&5 -+{ (eval echo "$as_me:1443: \"$ac_compiler --version &5\"") >&5 ++{ (eval echo "$as_me:1490: \"$ac_compiler --version &5\"") >&5 (eval $ac_compiler --version &5) 2>&5 ac_status=$? - echo "$as_me:1325: \$? = $ac_status" >&5 -+ echo "$as_me:1446: \$? = $ac_status" >&5 ++ echo "$as_me:1493: \$? = $ac_status" >&5 (exit $ac_status); } -{ (eval echo "$as_me:1327: \"$ac_compiler -v &5\"") >&5 -+{ (eval echo "$as_me:1448: \"$ac_compiler -v &5\"") >&5 ++{ (eval echo "$as_me:1495: \"$ac_compiler -v &5\"") >&5 (eval $ac_compiler -v &5) 2>&5 ac_status=$? - echo "$as_me:1330: \$? = $ac_status" >&5 -+ echo "$as_me:1451: \$? = $ac_status" >&5 ++ echo "$as_me:1498: \$? = $ac_status" >&5 (exit $ac_status); } -{ (eval echo "$as_me:1332: \"$ac_compiler -V &5\"") >&5 -+{ (eval echo "$as_me:1453: \"$ac_compiler -V &5\"") >&5 ++{ (eval echo "$as_me:1500: \"$ac_compiler -V &5\"") >&5 (eval $ac_compiler -V &5) 2>&5 ac_status=$? - echo "$as_me:1335: \$? = $ac_status" >&5 -+ echo "$as_me:1456: \$? = $ac_status" >&5 ++ echo "$as_me:1503: \$? = $ac_status" >&5 (exit $ac_status); } cat >conftest.$ac_ext <<_ACEOF -#line 1339 "configure" -+#line 1460 "configure" ++#line 1507 "configure" #include "confdefs.h" int -@@ -1352,13 +1473,13 @@ +@@ -1352,13 +1520,13 @@ # Try to create an executable without -o first, disregard a.out. # It will help us diagnose broken compilers, and finding out an intuition # of exeext. -echo "$as_me:1355: checking for C compiler default output" >&5 -+echo "$as_me:1476: checking for C compiler default output" >&5 ++echo "$as_me:1523: checking for C compiler default output" >&5 echo $ECHO_N "checking for C compiler default output... $ECHO_C" >&6 ac_link_default=`echo "$ac_link" | sed 's/ -o *conftest[^ ]*//'` -if { (eval echo "$as_me:1358: \"$ac_link_default\"") >&5 -+if { (eval echo "$as_me:1479: \"$ac_link_default\"") >&5 ++if { (eval echo "$as_me:1526: \"$ac_link_default\"") >&5 (eval $ac_link_default) 2>&5 ac_status=$? - echo "$as_me:1361: \$? = $ac_status" >&5 -+ echo "$as_me:1482: \$? = $ac_status" >&5 ++ echo "$as_me:1529: \$? = $ac_status" >&5 (exit $ac_status); }; then # Find the output, starting from the most likely. This scheme is # not robust to junk in `.', hence go to wildcards (a.*) only as a last -@@ -1381,34 +1502,34 @@ +@@ -1381,34 +1549,34 @@ else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 -{ { echo "$as_me:1384: error: C compiler cannot create executables" >&5 -+{ { echo "$as_me:1505: error: C compiler cannot create executables" >&5 ++{ { echo "$as_me:1552: error: C compiler cannot create executables" >&5 echo "$as_me: error: C compiler cannot create executables" >&2;} { (exit 77); exit 77; }; } fi ac_exeext=$ac_cv_exeext -echo "$as_me:1390: result: $ac_file" >&5 -+echo "$as_me:1511: result: $ac_file" >&5 ++echo "$as_me:1558: result: $ac_file" >&5 echo "${ECHO_T}$ac_file" >&6 # Check the compiler produces executables we can run. If not, either # the compiler is broken, or we cross compile. -echo "$as_me:1395: checking whether the C compiler works" >&5 -+echo "$as_me:1516: checking whether the C compiler works" >&5 ++echo "$as_me:1563: checking whether the C compiler works" >&5 echo $ECHO_N "checking whether the C compiler works... $ECHO_C" >&6 # FIXME: These cross compiler hacks should be removed for Autoconf 3.0 # If not cross compiling, check that we can run a simple program. if test "$cross_compiling" != yes; then if { ac_try='./$ac_file' - { (eval echo "$as_me:1401: \"$ac_try\"") >&5 -+ { (eval echo "$as_me:1522: \"$ac_try\"") >&5 ++ { (eval echo "$as_me:1569: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:1404: \$? = $ac_status" >&5 -+ echo "$as_me:1525: \$? = $ac_status" >&5 ++ echo "$as_me:1572: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cross_compiling=no else @@ -3261,16 +3371,16 @@ diff -urN clean/configure chkplat/configure cross_compiling=yes else - { { echo "$as_me:1411: error: cannot run C compiled programs. -+ { { echo "$as_me:1532: error: cannot run C compiled programs. ++ { { echo "$as_me:1579: error: cannot run C compiled programs. If you meant to cross compile, use \`--host'." >&5 echo "$as_me: error: cannot run C compiled programs. If you meant to cross compile, use \`--host'." >&2;} -@@ -1416,24 +1537,24 @@ +@@ -1416,24 +1584,24 @@ fi fi fi -echo "$as_me:1419: result: yes" >&5 -+echo "$as_me:1540: result: yes" >&5 ++echo "$as_me:1587: result: yes" >&5 echo "${ECHO_T}yes" >&6 rm -f a.out a.exe conftest$ac_cv_exeext @@ -3278,73 +3388,73 @@ diff -urN clean/configure chkplat/configure # Check the compiler produces executables we can run. If not, either # the compiler is broken, or we cross compile. -echo "$as_me:1426: checking whether we are cross compiling" >&5 -+echo "$as_me:1547: checking whether we are cross compiling" >&5 ++echo "$as_me:1594: checking whether we are cross compiling" >&5 echo $ECHO_N "checking whether we are cross compiling... $ECHO_C" >&6 -echo "$as_me:1428: result: $cross_compiling" >&5 -+echo "$as_me:1549: result: $cross_compiling" >&5 ++echo "$as_me:1596: result: $cross_compiling" >&5 echo "${ECHO_T}$cross_compiling" >&6 -echo "$as_me:1431: checking for executable suffix" >&5 -+echo "$as_me:1552: checking for executable suffix" >&5 ++echo "$as_me:1599: checking for executable suffix" >&5 echo $ECHO_N "checking for executable suffix... $ECHO_C" >&6 -if { (eval echo "$as_me:1433: \"$ac_link\"") >&5 -+if { (eval echo "$as_me:1554: \"$ac_link\"") >&5 ++if { (eval echo "$as_me:1601: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:1436: \$? = $ac_status" >&5 -+ echo "$as_me:1557: \$? = $ac_status" >&5 ++ echo "$as_me:1604: \$? = $ac_status" >&5 (exit $ac_status); }; then # If both `conftest.exe' and `conftest' are `present' (well, observable) # catch `conftest.exe'. For instance with Cygwin, `ls conftest' will -@@ -1449,25 +1570,25 @@ +@@ -1449,25 +1617,25 @@ esac done else - { { echo "$as_me:1452: error: cannot compute EXEEXT: cannot compile and link" >&5 -+ { { echo "$as_me:1573: error: cannot compute EXEEXT: cannot compile and link" >&5 ++ { { echo "$as_me:1620: error: cannot compute EXEEXT: cannot compile and link" >&5 echo "$as_me: error: cannot compute EXEEXT: cannot compile and link" >&2;} { (exit 1); exit 1; }; } fi rm -f conftest$ac_cv_exeext -echo "$as_me:1458: result: $ac_cv_exeext" >&5 -+echo "$as_me:1579: result: $ac_cv_exeext" >&5 ++echo "$as_me:1626: result: $ac_cv_exeext" >&5 echo "${ECHO_T}$ac_cv_exeext" >&6 rm -f conftest.$ac_ext EXEEXT=$ac_cv_exeext ac_exeext=$EXEEXT -echo "$as_me:1464: checking for object suffix" >&5 -+echo "$as_me:1585: checking for object suffix" >&5 ++echo "$as_me:1632: checking for object suffix" >&5 echo $ECHO_N "checking for object suffix... $ECHO_C" >&6 if test "${ac_cv_objext+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 1470 "configure" -+#line 1591 "configure" ++#line 1638 "configure" #include "confdefs.h" int -@@ -1479,10 +1600,10 @@ +@@ -1479,10 +1647,10 @@ } _ACEOF rm -f conftest.o conftest.obj -if { (eval echo "$as_me:1482: \"$ac_compile\"") >&5 -+if { (eval echo "$as_me:1603: \"$ac_compile\"") >&5 ++if { (eval echo "$as_me:1650: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:1485: \$? = $ac_status" >&5 -+ echo "$as_me:1606: \$? = $ac_status" >&5 ++ echo "$as_me:1653: \$? = $ac_status" >&5 (exit $ac_status); }; then for ac_file in `(ls conftest.o conftest.obj; ls conftest.*) 2>/dev/null`; do case $ac_file in -@@ -1494,24 +1615,24 @@ +@@ -1494,24 +1662,24 @@ else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 -{ { echo "$as_me:1497: error: cannot compute OBJEXT: cannot compile" >&5 -+{ { echo "$as_me:1618: error: cannot compute OBJEXT: cannot compile" >&5 ++{ { echo "$as_me:1665: error: cannot compute OBJEXT: cannot compile" >&5 echo "$as_me: error: cannot compute OBJEXT: cannot compile" >&2;} { (exit 1); exit 1; }; } fi @@ -3352,850 +3462,850 @@ diff -urN clean/configure chkplat/configure rm -f conftest.$ac_cv_objext conftest.$ac_ext fi -echo "$as_me:1504: result: $ac_cv_objext" >&5 -+echo "$as_me:1625: result: $ac_cv_objext" >&5 ++echo "$as_me:1672: result: $ac_cv_objext" >&5 echo "${ECHO_T}$ac_cv_objext" >&6 OBJEXT=$ac_cv_objext ac_objext=$OBJEXT -echo "$as_me:1508: checking whether we are using the GNU C compiler" >&5 -+echo "$as_me:1629: checking whether we are using the GNU C compiler" >&5 ++echo "$as_me:1676: checking whether we are using the GNU C compiler" >&5 echo $ECHO_N "checking whether we are using the GNU C compiler... $ECHO_C" >&6 if test "${ac_cv_c_compiler_gnu+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 1514 "configure" -+#line 1635 "configure" ++#line 1682 "configure" #include "confdefs.h" int -@@ -1526,16 +1647,16 @@ +@@ -1526,16 +1694,16 @@ } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:1529: \"$ac_compile\"") >&5 -+if { (eval echo "$as_me:1650: \"$ac_compile\"") >&5 ++if { (eval echo "$as_me:1697: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:1532: \$? = $ac_status" >&5 -+ echo "$as_me:1653: \$? = $ac_status" >&5 ++ echo "$as_me:1700: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:1535: \"$ac_try\"") >&5 -+ { (eval echo "$as_me:1656: \"$ac_try\"") >&5 ++ { (eval echo "$as_me:1703: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:1538: \$? = $ac_status" >&5 -+ echo "$as_me:1659: \$? = $ac_status" >&5 ++ echo "$as_me:1706: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_compiler_gnu=yes else -@@ -1547,19 +1668,19 @@ +@@ -1547,19 +1715,19 @@ ac_cv_c_compiler_gnu=$ac_compiler_gnu fi -echo "$as_me:1550: result: $ac_cv_c_compiler_gnu" >&5 -+echo "$as_me:1671: result: $ac_cv_c_compiler_gnu" >&5 ++echo "$as_me:1718: result: $ac_cv_c_compiler_gnu" >&5 echo "${ECHO_T}$ac_cv_c_compiler_gnu" >&6 GCC=`test $ac_compiler_gnu = yes && echo yes` ac_test_CFLAGS=${CFLAGS+set} ac_save_CFLAGS=$CFLAGS CFLAGS="-g" -echo "$as_me:1556: checking whether $CC accepts -g" >&5 -+echo "$as_me:1677: checking whether $CC accepts -g" >&5 ++echo "$as_me:1724: checking whether $CC accepts -g" >&5 echo $ECHO_N "checking whether $CC accepts -g... $ECHO_C" >&6 if test "${ac_cv_prog_cc_g+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 1562 "configure" -+#line 1683 "configure" ++#line 1730 "configure" #include "confdefs.h" int -@@ -1571,16 +1692,16 @@ +@@ -1571,16 +1739,16 @@ } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:1574: \"$ac_compile\"") >&5 -+if { (eval echo "$as_me:1695: \"$ac_compile\"") >&5 ++if { (eval echo "$as_me:1742: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:1577: \$? = $ac_status" >&5 -+ echo "$as_me:1698: \$? = $ac_status" >&5 ++ echo "$as_me:1745: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:1580: \"$ac_try\"") >&5 -+ { (eval echo "$as_me:1701: \"$ac_try\"") >&5 ++ { (eval echo "$as_me:1748: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:1583: \$? = $ac_status" >&5 -+ echo "$as_me:1704: \$? = $ac_status" >&5 ++ echo "$as_me:1751: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_prog_cc_g=yes else -@@ -1590,7 +1711,7 @@ +@@ -1590,7 +1758,7 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:1593: result: $ac_cv_prog_cc_g" >&5 -+echo "$as_me:1714: result: $ac_cv_prog_cc_g" >&5 ++echo "$as_me:1761: result: $ac_cv_prog_cc_g" >&5 echo "${ECHO_T}$ac_cv_prog_cc_g" >&6 if test "$ac_test_CFLAGS" = set; then CFLAGS=$ac_save_CFLAGS -@@ -1617,16 +1738,16 @@ +@@ -1617,16 +1785,16 @@ #endif _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:1620: \"$ac_compile\"") >&5 -+if { (eval echo "$as_me:1741: \"$ac_compile\"") >&5 ++if { (eval echo "$as_me:1788: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:1623: \$? = $ac_status" >&5 -+ echo "$as_me:1744: \$? = $ac_status" >&5 ++ echo "$as_me:1791: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:1626: \"$ac_try\"") >&5 -+ { (eval echo "$as_me:1747: \"$ac_try\"") >&5 ++ { (eval echo "$as_me:1794: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:1629: \$? = $ac_status" >&5 -+ echo "$as_me:1750: \$? = $ac_status" >&5 ++ echo "$as_me:1797: \$? = $ac_status" >&5 (exit $ac_status); }; }; then for ac_declaration in \ ''\ -@@ -1638,7 +1759,7 @@ +@@ -1638,7 +1806,7 @@ 'void exit (int);' do cat >conftest.$ac_ext <<_ACEOF -#line 1641 "configure" -+#line 1762 "configure" ++#line 1809 "configure" #include "confdefs.h" #include $ac_declaration -@@ -1651,16 +1772,16 @@ +@@ -1651,16 +1819,16 @@ } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:1654: \"$ac_compile\"") >&5 -+if { (eval echo "$as_me:1775: \"$ac_compile\"") >&5 ++if { (eval echo "$as_me:1822: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:1657: \$? = $ac_status" >&5 -+ echo "$as_me:1778: \$? = $ac_status" >&5 ++ echo "$as_me:1825: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:1660: \"$ac_try\"") >&5 -+ { (eval echo "$as_me:1781: \"$ac_try\"") >&5 ++ { (eval echo "$as_me:1828: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:1663: \$? = $ac_status" >&5 -+ echo "$as_me:1784: \$? = $ac_status" >&5 ++ echo "$as_me:1831: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else -@@ -1670,7 +1791,7 @@ +@@ -1670,7 +1838,7 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext cat >conftest.$ac_ext <<_ACEOF -#line 1673 "configure" -+#line 1794 "configure" ++#line 1841 "configure" #include "confdefs.h" $ac_declaration int -@@ -1682,16 +1803,16 @@ +@@ -1682,16 +1850,16 @@ } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:1685: \"$ac_compile\"") >&5 -+if { (eval echo "$as_me:1806: \"$ac_compile\"") >&5 ++if { (eval echo "$as_me:1853: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:1688: \$? = $ac_status" >&5 -+ echo "$as_me:1809: \$? = $ac_status" >&5 ++ echo "$as_me:1856: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:1691: \"$ac_try\"") >&5 -+ { (eval echo "$as_me:1812: \"$ac_try\"") >&5 ++ { (eval echo "$as_me:1859: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:1694: \$? = $ac_status" >&5 -+ echo "$as_me:1815: \$? = $ac_status" >&5 ++ echo "$as_me:1862: \$? = $ac_status" >&5 (exit $ac_status); }; }; then break else -@@ -1728,7 +1849,7 @@ +@@ -1728,7 +1896,7 @@ do # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. set dummy $ac_tool_prefix$ac_prog; ac_word=$2 -echo "$as_me:1731: checking for $ac_word" >&5 -+echo "$as_me:1852: checking for $ac_word" >&5 ++echo "$as_me:1899: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_prog_CXX+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 -@@ -1743,7 +1864,7 @@ +@@ -1743,7 +1911,7 @@ test -z "$ac_dir" && ac_dir=. $as_executable_p "$ac_dir/$ac_word" || continue ac_cv_prog_CXX="$ac_tool_prefix$ac_prog" -echo "$as_me:1746: found $ac_dir/$ac_word" >&5 -+echo "$as_me:1867: found $ac_dir/$ac_word" >&5 ++echo "$as_me:1914: found $ac_dir/$ac_word" >&5 break done -@@ -1751,10 +1872,10 @@ +@@ -1751,10 +1919,10 @@ fi CXX=$ac_cv_prog_CXX if test -n "$CXX"; then - echo "$as_me:1754: result: $CXX" >&5 -+ echo "$as_me:1875: result: $CXX" >&5 ++ echo "$as_me:1922: result: $CXX" >&5 echo "${ECHO_T}$CXX" >&6 else - echo "$as_me:1757: result: no" >&5 -+ echo "$as_me:1878: result: no" >&5 ++ echo "$as_me:1925: result: no" >&5 echo "${ECHO_T}no" >&6 fi -@@ -1767,7 +1888,7 @@ +@@ -1767,7 +1935,7 @@ do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 -echo "$as_me:1770: checking for $ac_word" >&5 -+echo "$as_me:1891: checking for $ac_word" >&5 ++echo "$as_me:1938: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_prog_ac_ct_CXX+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 -@@ -1782,7 +1903,7 @@ +@@ -1782,7 +1950,7 @@ test -z "$ac_dir" && ac_dir=. $as_executable_p "$ac_dir/$ac_word" || continue ac_cv_prog_ac_ct_CXX="$ac_prog" -echo "$as_me:1785: found $ac_dir/$ac_word" >&5 -+echo "$as_me:1906: found $ac_dir/$ac_word" >&5 ++echo "$as_me:1953: found $ac_dir/$ac_word" >&5 break done -@@ -1790,10 +1911,10 @@ +@@ -1790,10 +1958,10 @@ fi ac_ct_CXX=$ac_cv_prog_ac_ct_CXX if test -n "$ac_ct_CXX"; then - echo "$as_me:1793: result: $ac_ct_CXX" >&5 -+ echo "$as_me:1914: result: $ac_ct_CXX" >&5 ++ echo "$as_me:1961: result: $ac_ct_CXX" >&5 echo "${ECHO_T}$ac_ct_CXX" >&6 else - echo "$as_me:1796: result: no" >&5 -+ echo "$as_me:1917: result: no" >&5 ++ echo "$as_me:1964: result: no" >&5 echo "${ECHO_T}no" >&6 fi -@@ -1805,32 +1926,32 @@ +@@ -1805,32 +1973,32 @@ fi # Provide some information about the compiler. -echo "$as_me:1808:" \ -+echo "$as_me:1929:" \ ++echo "$as_me:1976:" \ "checking for C++ compiler version" >&5 ac_compiler=`set X $ac_compile; echo $2` -{ (eval echo "$as_me:1811: \"$ac_compiler --version &5\"") >&5 -+{ (eval echo "$as_me:1932: \"$ac_compiler --version &5\"") >&5 ++{ (eval echo "$as_me:1979: \"$ac_compiler --version &5\"") >&5 (eval $ac_compiler --version &5) 2>&5 ac_status=$? - echo "$as_me:1814: \$? = $ac_status" >&5 -+ echo "$as_me:1935: \$? = $ac_status" >&5 ++ echo "$as_me:1982: \$? = $ac_status" >&5 (exit $ac_status); } -{ (eval echo "$as_me:1816: \"$ac_compiler -v &5\"") >&5 -+{ (eval echo "$as_me:1937: \"$ac_compiler -v &5\"") >&5 ++{ (eval echo "$as_me:1984: \"$ac_compiler -v &5\"") >&5 (eval $ac_compiler -v &5) 2>&5 ac_status=$? - echo "$as_me:1819: \$? = $ac_status" >&5 -+ echo "$as_me:1940: \$? = $ac_status" >&5 ++ echo "$as_me:1987: \$? = $ac_status" >&5 (exit $ac_status); } -{ (eval echo "$as_me:1821: \"$ac_compiler -V &5\"") >&5 -+{ (eval echo "$as_me:1942: \"$ac_compiler -V &5\"") >&5 ++{ (eval echo "$as_me:1989: \"$ac_compiler -V &5\"") >&5 (eval $ac_compiler -V &5) 2>&5 ac_status=$? - echo "$as_me:1824: \$? = $ac_status" >&5 -+ echo "$as_me:1945: \$? = $ac_status" >&5 ++ echo "$as_me:1992: \$? = $ac_status" >&5 (exit $ac_status); } -echo "$as_me:1827: checking whether we are using the GNU C++ compiler" >&5 -+echo "$as_me:1948: checking whether we are using the GNU C++ compiler" >&5 ++echo "$as_me:1995: checking whether we are using the GNU C++ compiler" >&5 echo $ECHO_N "checking whether we are using the GNU C++ compiler... $ECHO_C" >&6 if test "${ac_cv_cxx_compiler_gnu+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 1833 "configure" -+#line 1954 "configure" ++#line 2001 "configure" #include "confdefs.h" int -@@ -1845,16 +1966,16 @@ +@@ -1845,16 +2013,16 @@ } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:1848: \"$ac_compile\"") >&5 -+if { (eval echo "$as_me:1969: \"$ac_compile\"") >&5 ++if { (eval echo "$as_me:2016: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:1851: \$? = $ac_status" >&5 -+ echo "$as_me:1972: \$? = $ac_status" >&5 ++ echo "$as_me:2019: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:1854: \"$ac_try\"") >&5 -+ { (eval echo "$as_me:1975: \"$ac_try\"") >&5 ++ { (eval echo "$as_me:2022: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:1857: \$? = $ac_status" >&5 -+ echo "$as_me:1978: \$? = $ac_status" >&5 ++ echo "$as_me:2025: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_compiler_gnu=yes else -@@ -1866,19 +1987,19 @@ +@@ -1866,19 +2034,19 @@ ac_cv_cxx_compiler_gnu=$ac_compiler_gnu fi -echo "$as_me:1869: result: $ac_cv_cxx_compiler_gnu" >&5 -+echo "$as_me:1990: result: $ac_cv_cxx_compiler_gnu" >&5 ++echo "$as_me:2037: result: $ac_cv_cxx_compiler_gnu" >&5 echo "${ECHO_T}$ac_cv_cxx_compiler_gnu" >&6 GXX=`test $ac_compiler_gnu = yes && echo yes` ac_test_CXXFLAGS=${CXXFLAGS+set} ac_save_CXXFLAGS=$CXXFLAGS CXXFLAGS="-g" -echo "$as_me:1875: checking whether $CXX accepts -g" >&5 -+echo "$as_me:1996: checking whether $CXX accepts -g" >&5 ++echo "$as_me:2043: checking whether $CXX accepts -g" >&5 echo $ECHO_N "checking whether $CXX accepts -g... $ECHO_C" >&6 if test "${ac_cv_prog_cxx_g+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 1881 "configure" -+#line 2002 "configure" ++#line 2049 "configure" #include "confdefs.h" int -@@ -1890,16 +2011,16 @@ +@@ -1890,16 +2058,16 @@ } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:1893: \"$ac_compile\"") >&5 -+if { (eval echo "$as_me:2014: \"$ac_compile\"") >&5 ++if { (eval echo "$as_me:2061: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:1896: \$? = $ac_status" >&5 -+ echo "$as_me:2017: \$? = $ac_status" >&5 ++ echo "$as_me:2064: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:1899: \"$ac_try\"") >&5 -+ { (eval echo "$as_me:2020: \"$ac_try\"") >&5 ++ { (eval echo "$as_me:2067: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:1902: \$? = $ac_status" >&5 -+ echo "$as_me:2023: \$? = $ac_status" >&5 ++ echo "$as_me:2070: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_prog_cxx_g=yes else -@@ -1909,7 +2030,7 @@ +@@ -1909,7 +2077,7 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:1912: result: $ac_cv_prog_cxx_g" >&5 -+echo "$as_me:2033: result: $ac_cv_prog_cxx_g" >&5 ++echo "$as_me:2080: result: $ac_cv_prog_cxx_g" >&5 echo "${ECHO_T}$ac_cv_prog_cxx_g" >&6 if test "$ac_test_CXXFLAGS" = set; then CXXFLAGS=$ac_save_CXXFLAGS -@@ -1936,7 +2057,7 @@ +@@ -1936,7 +2104,7 @@ 'void exit (int);' do cat >conftest.$ac_ext <<_ACEOF -#line 1939 "configure" -+#line 2060 "configure" ++#line 2107 "configure" #include "confdefs.h" #include $ac_declaration -@@ -1949,16 +2070,16 @@ +@@ -1949,16 +2117,16 @@ } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:1952: \"$ac_compile\"") >&5 -+if { (eval echo "$as_me:2073: \"$ac_compile\"") >&5 ++if { (eval echo "$as_me:2120: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:1955: \$? = $ac_status" >&5 -+ echo "$as_me:2076: \$? = $ac_status" >&5 ++ echo "$as_me:2123: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:1958: \"$ac_try\"") >&5 -+ { (eval echo "$as_me:2079: \"$ac_try\"") >&5 ++ { (eval echo "$as_me:2126: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:1961: \$? = $ac_status" >&5 -+ echo "$as_me:2082: \$? = $ac_status" >&5 ++ echo "$as_me:2129: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else -@@ -1968,7 +2089,7 @@ +@@ -1968,7 +2136,7 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext cat >conftest.$ac_ext <<_ACEOF -#line 1971 "configure" -+#line 2092 "configure" ++#line 2139 "configure" #include "confdefs.h" $ac_declaration int -@@ -1980,16 +2101,16 @@ +@@ -1980,16 +2148,16 @@ } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:1983: \"$ac_compile\"") >&5 -+if { (eval echo "$as_me:2104: \"$ac_compile\"") >&5 ++if { (eval echo "$as_me:2151: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:1986: \$? = $ac_status" >&5 -+ echo "$as_me:2107: \$? = $ac_status" >&5 ++ echo "$as_me:2154: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:1989: \"$ac_try\"") >&5 -+ { (eval echo "$as_me:2110: \"$ac_try\"") >&5 ++ { (eval echo "$as_me:2157: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:1992: \$? = $ac_status" >&5 -+ echo "$as_me:2113: \$? = $ac_status" >&5 ++ echo "$as_me:2160: \$? = $ac_status" >&5 (exit $ac_status); }; }; then break else -@@ -2011,7 +2132,7 @@ +@@ -2011,7 +2179,7 @@ ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu -echo "$as_me:2014: checking whether ${MAKE-make} sets \${MAKE}" >&5 -+echo "$as_me:2135: checking whether ${MAKE-make} sets \${MAKE}" >&5 ++echo "$as_me:2182: checking whether ${MAKE-make} sets \${MAKE}" >&5 echo $ECHO_N "checking whether ${MAKE-make} sets \${MAKE}... $ECHO_C" >&6 set dummy ${MAKE-make}; ac_make=`echo "$2" | sed 'y,./+-,__p_,'` if eval "test \"\${ac_cv_prog_make_${ac_make}_set+set}\" = set"; then -@@ -2031,11 +2152,11 @@ +@@ -2031,11 +2199,11 @@ rm -f conftest.make fi if eval "test \"`echo '$ac_cv_prog_make_'${ac_make}_set`\" = yes"; then - echo "$as_me:2034: result: yes" >&5 -+ echo "$as_me:2155: result: yes" >&5 ++ echo "$as_me:2202: result: yes" >&5 echo "${ECHO_T}yes" >&6 SET_MAKE= else - echo "$as_me:2038: result: no" >&5 -+ echo "$as_me:2159: result: no" >&5 ++ echo "$as_me:2206: result: no" >&5 echo "${ECHO_T}no" >&6 SET_MAKE="MAKE=${MAKE-make}" fi -@@ -2043,7 +2164,7 @@ +@@ -2043,7 +2211,7 @@ if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}ranlib", so it can be a program name with args. set dummy ${ac_tool_prefix}ranlib; ac_word=$2 -echo "$as_me:2046: checking for $ac_word" >&5 -+echo "$as_me:2167: checking for $ac_word" >&5 ++echo "$as_me:2214: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_prog_RANLIB+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 -@@ -2058,7 +2179,7 @@ +@@ -2058,7 +2226,7 @@ test -z "$ac_dir" && ac_dir=. $as_executable_p "$ac_dir/$ac_word" || continue ac_cv_prog_RANLIB="${ac_tool_prefix}ranlib" -echo "$as_me:2061: found $ac_dir/$ac_word" >&5 -+echo "$as_me:2182: found $ac_dir/$ac_word" >&5 ++echo "$as_me:2229: found $ac_dir/$ac_word" >&5 break done -@@ -2066,10 +2187,10 @@ +@@ -2066,10 +2234,10 @@ fi RANLIB=$ac_cv_prog_RANLIB if test -n "$RANLIB"; then - echo "$as_me:2069: result: $RANLIB" >&5 -+ echo "$as_me:2190: result: $RANLIB" >&5 ++ echo "$as_me:2237: result: $RANLIB" >&5 echo "${ECHO_T}$RANLIB" >&6 else - echo "$as_me:2072: result: no" >&5 -+ echo "$as_me:2193: result: no" >&5 ++ echo "$as_me:2240: result: no" >&5 echo "${ECHO_T}no" >&6 fi -@@ -2078,7 +2199,7 @@ +@@ -2078,7 +2246,7 @@ ac_ct_RANLIB=$RANLIB # Extract the first word of "ranlib", so it can be a program name with args. set dummy ranlib; ac_word=$2 -echo "$as_me:2081: checking for $ac_word" >&5 -+echo "$as_me:2202: checking for $ac_word" >&5 ++echo "$as_me:2249: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_prog_ac_ct_RANLIB+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 -@@ -2093,7 +2214,7 @@ +@@ -2093,7 +2261,7 @@ test -z "$ac_dir" && ac_dir=. $as_executable_p "$ac_dir/$ac_word" || continue ac_cv_prog_ac_ct_RANLIB="ranlib" -echo "$as_me:2096: found $ac_dir/$ac_word" >&5 -+echo "$as_me:2217: found $ac_dir/$ac_word" >&5 ++echo "$as_me:2264: found $ac_dir/$ac_word" >&5 break done -@@ -2102,10 +2223,10 @@ +@@ -2102,10 +2270,10 @@ fi ac_ct_RANLIB=$ac_cv_prog_ac_ct_RANLIB if test -n "$ac_ct_RANLIB"; then - echo "$as_me:2105: result: $ac_ct_RANLIB" >&5 -+ echo "$as_me:2226: result: $ac_ct_RANLIB" >&5 ++ echo "$as_me:2273: result: $ac_ct_RANLIB" >&5 echo "${ECHO_T}$ac_ct_RANLIB" >&6 else - echo "$as_me:2108: result: no" >&5 -+ echo "$as_me:2229: result: no" >&5 ++ echo "$as_me:2276: result: no" >&5 echo "${ECHO_T}no" >&6 fi -@@ -2119,7 +2240,7 @@ +@@ -2119,7 +2287,7 @@ ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu -echo "$as_me:2122: checking how to run the C preprocessor" >&5 -+echo "$as_me:2243: checking how to run the C preprocessor" >&5 ++echo "$as_me:2290: checking how to run the C preprocessor" >&5 echo $ECHO_N "checking how to run the C preprocessor... $ECHO_C" >&6 # On Suns, sometimes $CPP names a directory. if test -n "$CPP" && test -d "$CPP"; then -@@ -2140,18 +2261,18 @@ +@@ -2140,18 +2308,18 @@ # On the NeXT, cc -E runs the code through the compiler's parser, # not just through cpp. "Syntax error" is here to catch this case. cat >conftest.$ac_ext <<_ACEOF -#line 2143 "configure" -+#line 2264 "configure" ++#line 2311 "configure" #include "confdefs.h" #include Syntax error _ACEOF -if { (eval echo "$as_me:2148: \"$ac_cpp conftest.$ac_ext\"") >&5 -+if { (eval echo "$as_me:2269: \"$ac_cpp conftest.$ac_ext\"") >&5 ++if { (eval echo "$as_me:2316: \"$ac_cpp conftest.$ac_ext\"") >&5 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 ac_status=$? egrep -v '^ *\+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 - echo "$as_me:2154: \$? = $ac_status" >&5 -+ echo "$as_me:2275: \$? = $ac_status" >&5 ++ echo "$as_me:2322: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag -@@ -2174,17 +2295,17 @@ +@@ -2174,17 +2342,17 @@ # OK, works on sane cases. Now check whether non-existent headers # can be detected and how. cat >conftest.$ac_ext <<_ACEOF -#line 2177 "configure" -+#line 2298 "configure" ++#line 2345 "configure" #include "confdefs.h" #include _ACEOF -if { (eval echo "$as_me:2181: \"$ac_cpp conftest.$ac_ext\"") >&5 -+if { (eval echo "$as_me:2302: \"$ac_cpp conftest.$ac_ext\"") >&5 ++if { (eval echo "$as_me:2349: \"$ac_cpp conftest.$ac_ext\"") >&5 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 ac_status=$? egrep -v '^ *\+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 - echo "$as_me:2187: \$? = $ac_status" >&5 -+ echo "$as_me:2308: \$? = $ac_status" >&5 ++ echo "$as_me:2355: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag -@@ -2221,7 +2342,7 @@ +@@ -2221,7 +2389,7 @@ else ac_cv_prog_CPP=$CPP fi -echo "$as_me:2224: result: $CPP" >&5 -+echo "$as_me:2345: result: $CPP" >&5 ++echo "$as_me:2392: result: $CPP" >&5 echo "${ECHO_T}$CPP" >&6 ac_preproc_ok=false for ac_c_preproc_warn_flag in '' yes -@@ -2231,18 +2352,18 @@ +@@ -2231,18 +2399,18 @@ # On the NeXT, cc -E runs the code through the compiler's parser, # not just through cpp. "Syntax error" is here to catch this case. cat >conftest.$ac_ext <<_ACEOF -#line 2234 "configure" -+#line 2355 "configure" ++#line 2402 "configure" #include "confdefs.h" #include Syntax error _ACEOF -if { (eval echo "$as_me:2239: \"$ac_cpp conftest.$ac_ext\"") >&5 -+if { (eval echo "$as_me:2360: \"$ac_cpp conftest.$ac_ext\"") >&5 ++if { (eval echo "$as_me:2407: \"$ac_cpp conftest.$ac_ext\"") >&5 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 ac_status=$? egrep -v '^ *\+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 - echo "$as_me:2245: \$? = $ac_status" >&5 -+ echo "$as_me:2366: \$? = $ac_status" >&5 ++ echo "$as_me:2413: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag -@@ -2265,17 +2386,17 @@ +@@ -2265,17 +2433,17 @@ # OK, works on sane cases. Now check whether non-existent headers # can be detected and how. cat >conftest.$ac_ext <<_ACEOF -#line 2268 "configure" -+#line 2389 "configure" ++#line 2436 "configure" #include "confdefs.h" #include _ACEOF -if { (eval echo "$as_me:2272: \"$ac_cpp conftest.$ac_ext\"") >&5 -+if { (eval echo "$as_me:2393: \"$ac_cpp conftest.$ac_ext\"") >&5 ++if { (eval echo "$as_me:2440: \"$ac_cpp conftest.$ac_ext\"") >&5 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 ac_status=$? egrep -v '^ *\+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 - echo "$as_me:2278: \$? = $ac_status" >&5 -+ echo "$as_me:2399: \$? = $ac_status" >&5 ++ echo "$as_me:2446: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag -@@ -2303,7 +2424,7 @@ +@@ -2303,7 +2471,7 @@ if $ac_preproc_ok; then : else - { { echo "$as_me:2306: error: C preprocessor \"$CPP\" fails sanity check" >&5 -+ { { echo "$as_me:2427: error: C preprocessor \"$CPP\" fails sanity check" >&5 ++ { { echo "$as_me:2474: error: C preprocessor \"$CPP\" fails sanity check" >&5 echo "$as_me: error: C preprocessor \"$CPP\" fails sanity check" >&2;} { (exit 1); exit 1; }; } fi -@@ -2314,7 +2435,7 @@ +@@ -2314,7 +2482,7 @@ ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu -echo "$as_me:2317: checking for X" >&5 -+echo "$as_me:2438: checking for X" >&5 ++echo "$as_me:2485: checking for X" >&5 echo $ECHO_N "checking for X... $ECHO_C" >&6 # Check whether --with-x or --without-x was given. -@@ -2411,17 +2532,17 @@ +@@ -2411,17 +2579,17 @@ # Guess where to find include files, by looking for Intrinsic.h. # First, try using that file with no special directory specified. cat >conftest.$ac_ext <<_ACEOF -#line 2414 "configure" -+#line 2535 "configure" ++#line 2582 "configure" #include "confdefs.h" #include _ACEOF -if { (eval echo "$as_me:2418: \"$ac_cpp conftest.$ac_ext\"") >&5 -+if { (eval echo "$as_me:2539: \"$ac_cpp conftest.$ac_ext\"") >&5 ++if { (eval echo "$as_me:2586: \"$ac_cpp conftest.$ac_ext\"") >&5 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 ac_status=$? egrep -v '^ *\+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 - echo "$as_me:2424: \$? = $ac_status" >&5 -+ echo "$as_me:2545: \$? = $ac_status" >&5 ++ echo "$as_me:2592: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag -@@ -2454,7 +2575,7 @@ +@@ -2454,7 +2622,7 @@ ac_save_LIBS=$LIBS LIBS="-lXt $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 2457 "configure" -+#line 2578 "configure" ++#line 2625 "configure" #include "confdefs.h" #include int -@@ -2466,16 +2587,16 @@ +@@ -2466,16 +2634,16 @@ } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:2469: \"$ac_link\"") >&5 -+if { (eval echo "$as_me:2590: \"$ac_link\"") >&5 ++if { (eval echo "$as_me:2637: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:2472: \$? = $ac_status" >&5 -+ echo "$as_me:2593: \$? = $ac_status" >&5 ++ echo "$as_me:2640: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:2475: \"$ac_try\"") >&5 -+ { (eval echo "$as_me:2596: \"$ac_try\"") >&5 ++ { (eval echo "$as_me:2643: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:2478: \$? = $ac_status" >&5 -+ echo "$as_me:2599: \$? = $ac_status" >&5 ++ echo "$as_me:2646: \$? = $ac_status" >&5 (exit $ac_status); }; }; then LIBS=$ac_save_LIBS # We can link X programs with no special library path. -@@ -2513,7 +2634,7 @@ +@@ -2513,7 +2681,7 @@ fi # $with_x != no if test "$have_x" != yes; then - echo "$as_me:2516: result: $have_x" >&5 -+ echo "$as_me:2637: result: $have_x" >&5 ++ echo "$as_me:2684: result: $have_x" >&5 echo "${ECHO_T}$have_x" >&6 no_x=yes else -@@ -2523,7 +2644,7 @@ +@@ -2523,7 +2691,7 @@ # Update the cache value to reflect the command line values. ac_cv_have_x="have_x=yes \ ac_x_includes=$x_includes ac_x_libraries=$x_libraries" - echo "$as_me:2526: result: libraries $x_libraries, headers $x_includes" >&5 -+ echo "$as_me:2647: result: libraries $x_libraries, headers $x_includes" >&5 ++ echo "$as_me:2694: result: libraries $x_libraries, headers $x_includes" >&5 echo "${ECHO_T}libraries $x_libraries, headers $x_includes" >&6 fi -@@ -2547,11 +2668,11 @@ +@@ -2547,11 +2715,11 @@ # others require no space. Words are not sufficient . . . . case `(uname -sr) 2>/dev/null` in "SunOS 5"*) - echo "$as_me:2550: checking whether -R must be followed by a space" >&5 -+ echo "$as_me:2671: checking whether -R must be followed by a space" >&5 ++ echo "$as_me:2718: checking whether -R must be followed by a space" >&5 echo $ECHO_N "checking whether -R must be followed by a space... $ECHO_C" >&6 ac_xsave_LIBS=$LIBS; LIBS="$LIBS -R$x_libraries" cat >conftest.$ac_ext <<_ACEOF -#line 2554 "configure" -+#line 2675 "configure" ++#line 2722 "configure" #include "confdefs.h" int -@@ -2563,16 +2684,16 @@ +@@ -2563,16 +2731,16 @@ } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:2566: \"$ac_link\"") >&5 -+if { (eval echo "$as_me:2687: \"$ac_link\"") >&5 ++if { (eval echo "$as_me:2734: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:2569: \$? = $ac_status" >&5 -+ echo "$as_me:2690: \$? = $ac_status" >&5 ++ echo "$as_me:2737: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:2572: \"$ac_try\"") >&5 -+ { (eval echo "$as_me:2693: \"$ac_try\"") >&5 ++ { (eval echo "$as_me:2740: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:2575: \$? = $ac_status" >&5 -+ echo "$as_me:2696: \$? = $ac_status" >&5 ++ echo "$as_me:2743: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_R_nospace=yes else -@@ -2582,13 +2703,13 @@ +@@ -2582,13 +2750,13 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext if test $ac_R_nospace = yes; then - echo "$as_me:2585: result: no" >&5 -+ echo "$as_me:2706: result: no" >&5 ++ echo "$as_me:2753: result: no" >&5 echo "${ECHO_T}no" >&6 X_LIBS="$X_LIBS -R$x_libraries" else LIBS="$ac_xsave_LIBS -R $x_libraries" cat >conftest.$ac_ext <<_ACEOF -#line 2591 "configure" -+#line 2712 "configure" ++#line 2759 "configure" #include "confdefs.h" int -@@ -2600,16 +2721,16 @@ +@@ -2600,16 +2768,16 @@ } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:2603: \"$ac_link\"") >&5 -+if { (eval echo "$as_me:2724: \"$ac_link\"") >&5 ++if { (eval echo "$as_me:2771: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:2606: \$? = $ac_status" >&5 -+ echo "$as_me:2727: \$? = $ac_status" >&5 ++ echo "$as_me:2774: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:2609: \"$ac_try\"") >&5 -+ { (eval echo "$as_me:2730: \"$ac_try\"") >&5 ++ { (eval echo "$as_me:2777: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:2612: \$? = $ac_status" >&5 -+ echo "$as_me:2733: \$? = $ac_status" >&5 ++ echo "$as_me:2780: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_R_space=yes else -@@ -2619,11 +2740,11 @@ +@@ -2619,11 +2787,11 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext if test $ac_R_space = yes; then - echo "$as_me:2622: result: yes" >&5 -+ echo "$as_me:2743: result: yes" >&5 ++ echo "$as_me:2790: result: yes" >&5 echo "${ECHO_T}yes" >&6 X_LIBS="$X_LIBS -R $x_libraries" else - echo "$as_me:2626: result: neither works" >&5 -+ echo "$as_me:2747: result: neither works" >&5 ++ echo "$as_me:2794: result: neither works" >&5 echo "${ECHO_T}neither works" >&6 fi fi -@@ -2643,7 +2764,7 @@ +@@ -2643,7 +2811,7 @@ # the Alpha needs dnet_stub (dnet does not exist). ac_xsave_LIBS="$LIBS"; LIBS="$LIBS $X_LIBS -lX11" cat >conftest.$ac_ext <<_ACEOF -#line 2646 "configure" -+#line 2767 "configure" ++#line 2814 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ -@@ -2662,22 +2783,22 @@ +@@ -2662,22 +2830,22 @@ } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:2665: \"$ac_link\"") >&5 -+if { (eval echo "$as_me:2786: \"$ac_link\"") >&5 ++if { (eval echo "$as_me:2833: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:2668: \$? = $ac_status" >&5 -+ echo "$as_me:2789: \$? = $ac_status" >&5 ++ echo "$as_me:2836: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:2671: \"$ac_try\"") >&5 -+ { (eval echo "$as_me:2792: \"$ac_try\"") >&5 ++ { (eval echo "$as_me:2839: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:2674: \$? = $ac_status" >&5 -+ echo "$as_me:2795: \$? = $ac_status" >&5 ++ echo "$as_me:2842: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 -echo "$as_me:2680: checking for dnet_ntoa in -ldnet" >&5 -+echo "$as_me:2801: checking for dnet_ntoa in -ldnet" >&5 ++echo "$as_me:2848: checking for dnet_ntoa in -ldnet" >&5 echo $ECHO_N "checking for dnet_ntoa in -ldnet... $ECHO_C" >&6 if test "${ac_cv_lib_dnet_dnet_ntoa+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 -@@ -2685,7 +2806,7 @@ +@@ -2685,7 +2853,7 @@ ac_check_lib_save_LIBS=$LIBS LIBS="-ldnet $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 2688 "configure" -+#line 2809 "configure" ++#line 2856 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ -@@ -2704,16 +2825,16 @@ +@@ -2704,16 +2872,16 @@ } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:2707: \"$ac_link\"") >&5 -+if { (eval echo "$as_me:2828: \"$ac_link\"") >&5 ++if { (eval echo "$as_me:2875: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:2710: \$? = $ac_status" >&5 -+ echo "$as_me:2831: \$? = $ac_status" >&5 ++ echo "$as_me:2878: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:2713: \"$ac_try\"") >&5 -+ { (eval echo "$as_me:2834: \"$ac_try\"") >&5 ++ { (eval echo "$as_me:2881: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:2716: \$? = $ac_status" >&5 -+ echo "$as_me:2837: \$? = $ac_status" >&5 ++ echo "$as_me:2884: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_dnet_dnet_ntoa=yes else -@@ -2724,14 +2845,14 @@ +@@ -2724,14 +2892,14 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:2727: result: $ac_cv_lib_dnet_dnet_ntoa" >&5 -+echo "$as_me:2848: result: $ac_cv_lib_dnet_dnet_ntoa" >&5 ++echo "$as_me:2895: result: $ac_cv_lib_dnet_dnet_ntoa" >&5 echo "${ECHO_T}$ac_cv_lib_dnet_dnet_ntoa" >&6 if test $ac_cv_lib_dnet_dnet_ntoa = yes; then X_EXTRA_LIBS="$X_EXTRA_LIBS -ldnet" @@ -4203,136 +4313,136 @@ diff -urN clean/configure chkplat/configure if test $ac_cv_lib_dnet_dnet_ntoa = no; then - echo "$as_me:2734: checking for dnet_ntoa in -ldnet_stub" >&5 -+ echo "$as_me:2855: checking for dnet_ntoa in -ldnet_stub" >&5 ++ echo "$as_me:2902: checking for dnet_ntoa in -ldnet_stub" >&5 echo $ECHO_N "checking for dnet_ntoa in -ldnet_stub... $ECHO_C" >&6 if test "${ac_cv_lib_dnet_stub_dnet_ntoa+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 -@@ -2739,7 +2860,7 @@ +@@ -2739,7 +2907,7 @@ ac_check_lib_save_LIBS=$LIBS LIBS="-ldnet_stub $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 2742 "configure" -+#line 2863 "configure" ++#line 2910 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ -@@ -2758,16 +2879,16 @@ +@@ -2758,16 +2926,16 @@ } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:2761: \"$ac_link\"") >&5 -+if { (eval echo "$as_me:2882: \"$ac_link\"") >&5 ++if { (eval echo "$as_me:2929: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:2764: \$? = $ac_status" >&5 -+ echo "$as_me:2885: \$? = $ac_status" >&5 ++ echo "$as_me:2932: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:2767: \"$ac_try\"") >&5 -+ { (eval echo "$as_me:2888: \"$ac_try\"") >&5 ++ { (eval echo "$as_me:2935: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:2770: \$? = $ac_status" >&5 -+ echo "$as_me:2891: \$? = $ac_status" >&5 ++ echo "$as_me:2938: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_dnet_stub_dnet_ntoa=yes else -@@ -2778,7 +2899,7 @@ +@@ -2778,7 +2946,7 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:2781: result: $ac_cv_lib_dnet_stub_dnet_ntoa" >&5 -+echo "$as_me:2902: result: $ac_cv_lib_dnet_stub_dnet_ntoa" >&5 ++echo "$as_me:2949: result: $ac_cv_lib_dnet_stub_dnet_ntoa" >&5 echo "${ECHO_T}$ac_cv_lib_dnet_stub_dnet_ntoa" >&6 if test $ac_cv_lib_dnet_stub_dnet_ntoa = yes; then X_EXTRA_LIBS="$X_EXTRA_LIBS -ldnet_stub" -@@ -2797,13 +2918,13 @@ +@@ -2797,13 +2965,13 @@ # on Irix 5.2, according to T.E. Dickey. # The functions gethostbyname, getservbyname, and inet_addr are # in -lbsd on LynxOS 3.0.1/i386, according to Lars Hecking. - echo "$as_me:2800: checking for gethostbyname" >&5 -+ echo "$as_me:2921: checking for gethostbyname" >&5 ++ echo "$as_me:2968: checking for gethostbyname" >&5 echo $ECHO_N "checking for gethostbyname... $ECHO_C" >&6 if test "${ac_cv_func_gethostbyname+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 2806 "configure" -+#line 2927 "configure" ++#line 2974 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char gethostbyname (); below. */ -@@ -2834,16 +2955,16 @@ +@@ -2834,16 +3002,16 @@ } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:2837: \"$ac_link\"") >&5 -+if { (eval echo "$as_me:2958: \"$ac_link\"") >&5 ++if { (eval echo "$as_me:3005: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:2840: \$? = $ac_status" >&5 -+ echo "$as_me:2961: \$? = $ac_status" >&5 ++ echo "$as_me:3008: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:2843: \"$ac_try\"") >&5 -+ { (eval echo "$as_me:2964: \"$ac_try\"") >&5 ++ { (eval echo "$as_me:3011: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:2846: \$? = $ac_status" >&5 -+ echo "$as_me:2967: \$? = $ac_status" >&5 ++ echo "$as_me:3014: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_gethostbyname=yes else -@@ -2853,11 +2974,11 @@ +@@ -2853,11 +3021,11 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:2856: result: $ac_cv_func_gethostbyname" >&5 -+echo "$as_me:2977: result: $ac_cv_func_gethostbyname" >&5 ++echo "$as_me:3024: result: $ac_cv_func_gethostbyname" >&5 echo "${ECHO_T}$ac_cv_func_gethostbyname" >&6 if test $ac_cv_func_gethostbyname = no; then - echo "$as_me:2860: checking for gethostbyname in -lnsl" >&5 -+ echo "$as_me:2981: checking for gethostbyname in -lnsl" >&5 ++ echo "$as_me:3028: checking for gethostbyname in -lnsl" >&5 echo $ECHO_N "checking for gethostbyname in -lnsl... $ECHO_C" >&6 if test "${ac_cv_lib_nsl_gethostbyname+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 -@@ -2865,7 +2986,7 @@ +@@ -2865,7 +3033,7 @@ ac_check_lib_save_LIBS=$LIBS LIBS="-lnsl $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 2868 "configure" -+#line 2989 "configure" ++#line 3036 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ -@@ -2884,16 +3005,16 @@ +@@ -2884,16 +3052,16 @@ } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:2887: \"$ac_link\"") >&5 -+if { (eval echo "$as_me:3008: \"$ac_link\"") >&5 ++if { (eval echo "$as_me:3055: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:2890: \$? = $ac_status" >&5 -+ echo "$as_me:3011: \$? = $ac_status" >&5 ++ echo "$as_me:3058: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:2893: \"$ac_try\"") >&5 -+ { (eval echo "$as_me:3014: \"$ac_try\"") >&5 ++ { (eval echo "$as_me:3061: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:2896: \$? = $ac_status" >&5 -+ echo "$as_me:3017: \$? = $ac_status" >&5 ++ echo "$as_me:3064: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_nsl_gethostbyname=yes else -@@ -2904,14 +3025,14 @@ +@@ -2904,14 +3072,14 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:2907: result: $ac_cv_lib_nsl_gethostbyname" >&5 -+echo "$as_me:3028: result: $ac_cv_lib_nsl_gethostbyname" >&5 ++echo "$as_me:3075: result: $ac_cv_lib_nsl_gethostbyname" >&5 echo "${ECHO_T}$ac_cv_lib_nsl_gethostbyname" >&6 if test $ac_cv_lib_nsl_gethostbyname = yes; then X_EXTRA_LIBS="$X_EXTRA_LIBS -lnsl" @@ -4340,2614 +4450,2614 @@ diff -urN clean/configure chkplat/configure if test $ac_cv_lib_nsl_gethostbyname = no; then - echo "$as_me:2914: checking for gethostbyname in -lbsd" >&5 -+ echo "$as_me:3035: checking for gethostbyname in -lbsd" >&5 ++ echo "$as_me:3082: checking for gethostbyname in -lbsd" >&5 echo $ECHO_N "checking for gethostbyname in -lbsd... $ECHO_C" >&6 if test "${ac_cv_lib_bsd_gethostbyname+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 -@@ -2919,7 +3040,7 @@ +@@ -2919,7 +3087,7 @@ ac_check_lib_save_LIBS=$LIBS LIBS="-lbsd $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 2922 "configure" -+#line 3043 "configure" ++#line 3090 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ -@@ -2938,16 +3059,16 @@ +@@ -2938,16 +3106,16 @@ } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:2941: \"$ac_link\"") >&5 -+if { (eval echo "$as_me:3062: \"$ac_link\"") >&5 ++if { (eval echo "$as_me:3109: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:2944: \$? = $ac_status" >&5 -+ echo "$as_me:3065: \$? = $ac_status" >&5 ++ echo "$as_me:3112: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:2947: \"$ac_try\"") >&5 -+ { (eval echo "$as_me:3068: \"$ac_try\"") >&5 ++ { (eval echo "$as_me:3115: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:2950: \$? = $ac_status" >&5 -+ echo "$as_me:3071: \$? = $ac_status" >&5 ++ echo "$as_me:3118: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_bsd_gethostbyname=yes else -@@ -2958,7 +3079,7 @@ +@@ -2958,7 +3126,7 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:2961: result: $ac_cv_lib_bsd_gethostbyname" >&5 -+echo "$as_me:3082: result: $ac_cv_lib_bsd_gethostbyname" >&5 ++echo "$as_me:3129: result: $ac_cv_lib_bsd_gethostbyname" >&5 echo "${ECHO_T}$ac_cv_lib_bsd_gethostbyname" >&6 if test $ac_cv_lib_bsd_gethostbyname = yes; then X_EXTRA_LIBS="$X_EXTRA_LIBS -lbsd" -@@ -2974,13 +3095,13 @@ +@@ -2974,13 +3142,13 @@ # variants that don't use the nameserver (or something). -lsocket # must be given before -lnsl if both are needed. We assume that # if connect needs -lnsl, so does gethostbyname. - echo "$as_me:2977: checking for connect" >&5 -+ echo "$as_me:3098: checking for connect" >&5 ++ echo "$as_me:3145: checking for connect" >&5 echo $ECHO_N "checking for connect... $ECHO_C" >&6 if test "${ac_cv_func_connect+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 2983 "configure" -+#line 3104 "configure" ++#line 3151 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char connect (); below. */ -@@ -3011,16 +3132,16 @@ +@@ -3011,16 +3179,16 @@ } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:3014: \"$ac_link\"") >&5 -+if { (eval echo "$as_me:3135: \"$ac_link\"") >&5 ++if { (eval echo "$as_me:3182: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:3017: \$? = $ac_status" >&5 -+ echo "$as_me:3138: \$? = $ac_status" >&5 ++ echo "$as_me:3185: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:3020: \"$ac_try\"") >&5 -+ { (eval echo "$as_me:3141: \"$ac_try\"") >&5 ++ { (eval echo "$as_me:3188: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:3023: \$? = $ac_status" >&5 -+ echo "$as_me:3144: \$? = $ac_status" >&5 ++ echo "$as_me:3191: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_connect=yes else -@@ -3030,11 +3151,11 @@ +@@ -3030,11 +3198,11 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:3033: result: $ac_cv_func_connect" >&5 -+echo "$as_me:3154: result: $ac_cv_func_connect" >&5 ++echo "$as_me:3201: result: $ac_cv_func_connect" >&5 echo "${ECHO_T}$ac_cv_func_connect" >&6 if test $ac_cv_func_connect = no; then - echo "$as_me:3037: checking for connect in -lsocket" >&5 -+ echo "$as_me:3158: checking for connect in -lsocket" >&5 ++ echo "$as_me:3205: checking for connect in -lsocket" >&5 echo $ECHO_N "checking for connect in -lsocket... $ECHO_C" >&6 if test "${ac_cv_lib_socket_connect+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 -@@ -3042,7 +3163,7 @@ +@@ -3042,7 +3210,7 @@ ac_check_lib_save_LIBS=$LIBS LIBS="-lsocket $X_EXTRA_LIBS $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 3045 "configure" -+#line 3166 "configure" ++#line 3213 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ -@@ -3061,16 +3182,16 @@ +@@ -3061,16 +3229,16 @@ } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:3064: \"$ac_link\"") >&5 -+if { (eval echo "$as_me:3185: \"$ac_link\"") >&5 ++if { (eval echo "$as_me:3232: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:3067: \$? = $ac_status" >&5 -+ echo "$as_me:3188: \$? = $ac_status" >&5 ++ echo "$as_me:3235: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:3070: \"$ac_try\"") >&5 -+ { (eval echo "$as_me:3191: \"$ac_try\"") >&5 ++ { (eval echo "$as_me:3238: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:3073: \$? = $ac_status" >&5 -+ echo "$as_me:3194: \$? = $ac_status" >&5 ++ echo "$as_me:3241: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_socket_connect=yes else -@@ -3081,7 +3202,7 @@ +@@ -3081,7 +3249,7 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:3084: result: $ac_cv_lib_socket_connect" >&5 -+echo "$as_me:3205: result: $ac_cv_lib_socket_connect" >&5 ++echo "$as_me:3252: result: $ac_cv_lib_socket_connect" >&5 echo "${ECHO_T}$ac_cv_lib_socket_connect" >&6 if test $ac_cv_lib_socket_connect = yes; then X_EXTRA_LIBS="-lsocket $X_EXTRA_LIBS" -@@ -3090,13 +3211,13 @@ +@@ -3090,13 +3258,13 @@ fi # Guillermo Gomez says -lposix is necessary on A/UX. - echo "$as_me:3093: checking for remove" >&5 -+ echo "$as_me:3214: checking for remove" >&5 ++ echo "$as_me:3261: checking for remove" >&5 echo $ECHO_N "checking for remove... $ECHO_C" >&6 if test "${ac_cv_func_remove+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 3099 "configure" -+#line 3220 "configure" ++#line 3267 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char remove (); below. */ -@@ -3127,16 +3248,16 @@ +@@ -3127,16 +3295,16 @@ } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:3130: \"$ac_link\"") >&5 -+if { (eval echo "$as_me:3251: \"$ac_link\"") >&5 ++if { (eval echo "$as_me:3298: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:3133: \$? = $ac_status" >&5 -+ echo "$as_me:3254: \$? = $ac_status" >&5 ++ echo "$as_me:3301: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:3136: \"$ac_try\"") >&5 -+ { (eval echo "$as_me:3257: \"$ac_try\"") >&5 ++ { (eval echo "$as_me:3304: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:3139: \$? = $ac_status" >&5 -+ echo "$as_me:3260: \$? = $ac_status" >&5 ++ echo "$as_me:3307: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_remove=yes else -@@ -3146,11 +3267,11 @@ +@@ -3146,11 +3314,11 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:3149: result: $ac_cv_func_remove" >&5 -+echo "$as_me:3270: result: $ac_cv_func_remove" >&5 ++echo "$as_me:3317: result: $ac_cv_func_remove" >&5 echo "${ECHO_T}$ac_cv_func_remove" >&6 if test $ac_cv_func_remove = no; then - echo "$as_me:3153: checking for remove in -lposix" >&5 -+ echo "$as_me:3274: checking for remove in -lposix" >&5 ++ echo "$as_me:3321: checking for remove in -lposix" >&5 echo $ECHO_N "checking for remove in -lposix... $ECHO_C" >&6 if test "${ac_cv_lib_posix_remove+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 -@@ -3158,7 +3279,7 @@ +@@ -3158,7 +3326,7 @@ ac_check_lib_save_LIBS=$LIBS LIBS="-lposix $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 3161 "configure" -+#line 3282 "configure" ++#line 3329 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ -@@ -3177,16 +3298,16 @@ +@@ -3177,16 +3345,16 @@ } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:3180: \"$ac_link\"") >&5 -+if { (eval echo "$as_me:3301: \"$ac_link\"") >&5 ++if { (eval echo "$as_me:3348: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:3183: \$? = $ac_status" >&5 -+ echo "$as_me:3304: \$? = $ac_status" >&5 ++ echo "$as_me:3351: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:3186: \"$ac_try\"") >&5 -+ { (eval echo "$as_me:3307: \"$ac_try\"") >&5 ++ { (eval echo "$as_me:3354: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:3189: \$? = $ac_status" >&5 -+ echo "$as_me:3310: \$? = $ac_status" >&5 ++ echo "$as_me:3357: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_posix_remove=yes else -@@ -3197,7 +3318,7 @@ +@@ -3197,7 +3365,7 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:3200: result: $ac_cv_lib_posix_remove" >&5 -+echo "$as_me:3321: result: $ac_cv_lib_posix_remove" >&5 ++echo "$as_me:3368: result: $ac_cv_lib_posix_remove" >&5 echo "${ECHO_T}$ac_cv_lib_posix_remove" >&6 if test $ac_cv_lib_posix_remove = yes; then X_EXTRA_LIBS="$X_EXTRA_LIBS -lposix" -@@ -3206,13 +3327,13 @@ +@@ -3206,13 +3374,13 @@ fi # BSDI BSD/OS 2.1 needs -lipc for XOpenDisplay. - echo "$as_me:3209: checking for shmat" >&5 -+ echo "$as_me:3330: checking for shmat" >&5 ++ echo "$as_me:3377: checking for shmat" >&5 echo $ECHO_N "checking for shmat... $ECHO_C" >&6 if test "${ac_cv_func_shmat+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 3215 "configure" -+#line 3336 "configure" ++#line 3383 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char shmat (); below. */ -@@ -3243,16 +3364,16 @@ +@@ -3243,16 +3411,16 @@ } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:3246: \"$ac_link\"") >&5 -+if { (eval echo "$as_me:3367: \"$ac_link\"") >&5 ++if { (eval echo "$as_me:3414: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:3249: \$? = $ac_status" >&5 -+ echo "$as_me:3370: \$? = $ac_status" >&5 ++ echo "$as_me:3417: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:3252: \"$ac_try\"") >&5 -+ { (eval echo "$as_me:3373: \"$ac_try\"") >&5 ++ { (eval echo "$as_me:3420: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:3255: \$? = $ac_status" >&5 -+ echo "$as_me:3376: \$? = $ac_status" >&5 ++ echo "$as_me:3423: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_shmat=yes else -@@ -3262,11 +3383,11 @@ +@@ -3262,11 +3430,11 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:3265: result: $ac_cv_func_shmat" >&5 -+echo "$as_me:3386: result: $ac_cv_func_shmat" >&5 ++echo "$as_me:3433: result: $ac_cv_func_shmat" >&5 echo "${ECHO_T}$ac_cv_func_shmat" >&6 if test $ac_cv_func_shmat = no; then - echo "$as_me:3269: checking for shmat in -lipc" >&5 -+ echo "$as_me:3390: checking for shmat in -lipc" >&5 ++ echo "$as_me:3437: checking for shmat in -lipc" >&5 echo $ECHO_N "checking for shmat in -lipc... $ECHO_C" >&6 if test "${ac_cv_lib_ipc_shmat+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 -@@ -3274,7 +3395,7 @@ +@@ -3274,7 +3442,7 @@ ac_check_lib_save_LIBS=$LIBS LIBS="-lipc $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 3277 "configure" -+#line 3398 "configure" ++#line 3445 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ -@@ -3293,16 +3414,16 @@ +@@ -3293,16 +3461,16 @@ } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:3296: \"$ac_link\"") >&5 -+if { (eval echo "$as_me:3417: \"$ac_link\"") >&5 ++if { (eval echo "$as_me:3464: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:3299: \$? = $ac_status" >&5 -+ echo "$as_me:3420: \$? = $ac_status" >&5 ++ echo "$as_me:3467: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:3302: \"$ac_try\"") >&5 -+ { (eval echo "$as_me:3423: \"$ac_try\"") >&5 ++ { (eval echo "$as_me:3470: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:3305: \$? = $ac_status" >&5 -+ echo "$as_me:3426: \$? = $ac_status" >&5 ++ echo "$as_me:3473: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_ipc_shmat=yes else -@@ -3313,7 +3434,7 @@ +@@ -3313,7 +3481,7 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:3316: result: $ac_cv_lib_ipc_shmat" >&5 -+echo "$as_me:3437: result: $ac_cv_lib_ipc_shmat" >&5 ++echo "$as_me:3484: result: $ac_cv_lib_ipc_shmat" >&5 echo "${ECHO_T}$ac_cv_lib_ipc_shmat" >&6 if test $ac_cv_lib_ipc_shmat = yes; then X_EXTRA_LIBS="$X_EXTRA_LIBS -lipc" -@@ -3331,7 +3452,7 @@ +@@ -3331,7 +3499,7 @@ # These have to be linked with before -lX11, unlike the other # libraries we check for below, so use a different variable. # John Interrante, Karl Berry - echo "$as_me:3334: checking for IceConnectionNumber in -lICE" >&5 -+ echo "$as_me:3455: checking for IceConnectionNumber in -lICE" >&5 ++ echo "$as_me:3502: checking for IceConnectionNumber in -lICE" >&5 echo $ECHO_N "checking for IceConnectionNumber in -lICE... $ECHO_C" >&6 if test "${ac_cv_lib_ICE_IceConnectionNumber+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 -@@ -3339,7 +3460,7 @@ +@@ -3339,7 +3507,7 @@ ac_check_lib_save_LIBS=$LIBS LIBS="-lICE $X_EXTRA_LIBS $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 3342 "configure" -+#line 3463 "configure" ++#line 3510 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ -@@ -3358,16 +3479,16 @@ +@@ -3358,16 +3526,16 @@ } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:3361: \"$ac_link\"") >&5 -+if { (eval echo "$as_me:3482: \"$ac_link\"") >&5 ++if { (eval echo "$as_me:3529: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:3364: \$? = $ac_status" >&5 -+ echo "$as_me:3485: \$? = $ac_status" >&5 ++ echo "$as_me:3532: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:3367: \"$ac_try\"") >&5 -+ { (eval echo "$as_me:3488: \"$ac_try\"") >&5 ++ { (eval echo "$as_me:3535: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:3370: \$? = $ac_status" >&5 -+ echo "$as_me:3491: \$? = $ac_status" >&5 ++ echo "$as_me:3538: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_ICE_IceConnectionNumber=yes else -@@ -3378,7 +3499,7 @@ +@@ -3378,7 +3546,7 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:3381: result: $ac_cv_lib_ICE_IceConnectionNumber" >&5 -+echo "$as_me:3502: result: $ac_cv_lib_ICE_IceConnectionNumber" >&5 ++echo "$as_me:3549: result: $ac_cv_lib_ICE_IceConnectionNumber" >&5 echo "${ECHO_T}$ac_cv_lib_ICE_IceConnectionNumber" >&6 if test $ac_cv_lib_ICE_IceConnectionNumber = yes; then X_PRE_LIBS="$X_PRE_LIBS -lSM -lICE" -@@ -3388,7 +3509,7 @@ +@@ -3388,7 +3556,7 @@ fi -echo "$as_me:3391: checking whether byte ordering is bigendian" >&5 -+echo "$as_me:3512: checking whether byte ordering is bigendian" >&5 ++echo "$as_me:3559: checking whether byte ordering is bigendian" >&5 echo $ECHO_N "checking whether byte ordering is bigendian... $ECHO_C" >&6 if test "${ac_cv_c_bigendian+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 -@@ -3396,7 +3517,7 @@ +@@ -3396,7 +3564,7 @@ ac_cv_c_bigendian=unknown # See if sys/param.h defines the BYTE_ORDER macro. cat >conftest.$ac_ext <<_ACEOF -#line 3399 "configure" -+#line 3520 "configure" ++#line 3567 "configure" #include "confdefs.h" #include #include -@@ -3413,20 +3534,20 @@ +@@ -3413,20 +3581,20 @@ } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:3416: \"$ac_compile\"") >&5 -+if { (eval echo "$as_me:3537: \"$ac_compile\"") >&5 ++if { (eval echo "$as_me:3584: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:3419: \$? = $ac_status" >&5 -+ echo "$as_me:3540: \$? = $ac_status" >&5 ++ echo "$as_me:3587: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:3422: \"$ac_try\"") >&5 -+ { (eval echo "$as_me:3543: \"$ac_try\"") >&5 ++ { (eval echo "$as_me:3590: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:3425: \$? = $ac_status" >&5 -+ echo "$as_me:3546: \$? = $ac_status" >&5 ++ echo "$as_me:3593: \$? = $ac_status" >&5 (exit $ac_status); }; }; then # It does; now see whether it defined to BIG_ENDIAN or not. cat >conftest.$ac_ext <<_ACEOF -#line 3429 "configure" -+#line 3550 "configure" ++#line 3597 "configure" #include "confdefs.h" #include #include -@@ -3443,16 +3564,16 @@ +@@ -3443,16 +3611,16 @@ } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:3446: \"$ac_compile\"") >&5 -+if { (eval echo "$as_me:3567: \"$ac_compile\"") >&5 ++if { (eval echo "$as_me:3614: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:3449: \$? = $ac_status" >&5 -+ echo "$as_me:3570: \$? = $ac_status" >&5 ++ echo "$as_me:3617: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:3452: \"$ac_try\"") >&5 -+ { (eval echo "$as_me:3573: \"$ac_try\"") >&5 ++ { (eval echo "$as_me:3620: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:3455: \$? = $ac_status" >&5 -+ echo "$as_me:3576: \$? = $ac_status" >&5 ++ echo "$as_me:3623: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_c_bigendian=yes else -@@ -3468,12 +3589,12 @@ +@@ -3468,12 +3636,12 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test $ac_cv_c_bigendian = unknown; then if test "$cross_compiling" = yes; then - { { echo "$as_me:3471: error: cannot run test program while cross compiling" >&5 -+ { { echo "$as_me:3592: error: cannot run test program while cross compiling" >&5 ++ { { echo "$as_me:3639: error: cannot run test program while cross compiling" >&5 echo "$as_me: error: cannot run test program while cross compiling" >&2;} { (exit 1); exit 1; }; } else cat >conftest.$ac_ext <<_ACEOF -#line 3476 "configure" -+#line 3597 "configure" ++#line 3644 "configure" #include "confdefs.h" int main () -@@ -3489,15 +3610,15 @@ +@@ -3489,15 +3657,15 @@ } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:3492: \"$ac_link\"") >&5 -+if { (eval echo "$as_me:3613: \"$ac_link\"") >&5 ++if { (eval echo "$as_me:3660: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:3495: \$? = $ac_status" >&5 -+ echo "$as_me:3616: \$? = $ac_status" >&5 ++ echo "$as_me:3663: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:3497: \"$ac_try\"") >&5 -+ { (eval echo "$as_me:3618: \"$ac_try\"") >&5 ++ { (eval echo "$as_me:3665: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:3500: \$? = $ac_status" >&5 -+ echo "$as_me:3621: \$? = $ac_status" >&5 ++ echo "$as_me:3668: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_c_bigendian=no else -@@ -3510,7 +3631,7 @@ +@@ -3510,7 +3678,7 @@ fi fi fi -echo "$as_me:3513: result: $ac_cv_c_bigendian" >&5 -+echo "$as_me:3634: result: $ac_cv_c_bigendian" >&5 ++echo "$as_me:3681: result: $ac_cv_c_bigendian" >&5 echo "${ECHO_T}$ac_cv_c_bigendian" >&6 if test $ac_cv_c_bigendian = yes; then -@@ -3520,7 +3641,7 @@ +@@ -3520,7 +3688,7 @@ fi -echo "$as_me:3523: checking for $CC option to accept ANSI C" >&5 -+echo "$as_me:3644: checking for $CC option to accept ANSI C" >&5 ++echo "$as_me:3691: checking for $CC option to accept ANSI C" >&5 echo $ECHO_N "checking for $CC option to accept ANSI C... $ECHO_C" >&6 if test "${ac_cv_prog_cc_stdc+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 -@@ -3528,7 +3649,7 @@ +@@ -3528,7 +3696,7 @@ ac_cv_prog_cc_stdc=no ac_save_CC=$CC cat >conftest.$ac_ext <<_ACEOF -#line 3531 "configure" -+#line 3652 "configure" ++#line 3699 "configure" #include "confdefs.h" #include #include -@@ -3577,16 +3698,16 @@ +@@ -3577,16 +3745,16 @@ do CC="$ac_save_CC $ac_arg" rm -f conftest.$ac_objext -if { (eval echo "$as_me:3580: \"$ac_compile\"") >&5 -+if { (eval echo "$as_me:3701: \"$ac_compile\"") >&5 ++if { (eval echo "$as_me:3748: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:3583: \$? = $ac_status" >&5 -+ echo "$as_me:3704: \$? = $ac_status" >&5 ++ echo "$as_me:3751: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:3586: \"$ac_try\"") >&5 -+ { (eval echo "$as_me:3707: \"$ac_try\"") >&5 ++ { (eval echo "$as_me:3754: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:3589: \$? = $ac_status" >&5 -+ echo "$as_me:3710: \$? = $ac_status" >&5 ++ echo "$as_me:3757: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_prog_cc_stdc=$ac_arg break -@@ -3603,15 +3724,15 @@ +@@ -3603,15 +3771,15 @@ case "x$ac_cv_prog_cc_stdc" in x|xno) - echo "$as_me:3606: result: none needed" >&5 -+ echo "$as_me:3727: result: none needed" >&5 ++ echo "$as_me:3774: result: none needed" >&5 echo "${ECHO_T}none needed" >&6 ;; *) - echo "$as_me:3609: result: $ac_cv_prog_cc_stdc" >&5 -+ echo "$as_me:3730: result: $ac_cv_prog_cc_stdc" >&5 ++ echo "$as_me:3777: result: $ac_cv_prog_cc_stdc" >&5 echo "${ECHO_T}$ac_cv_prog_cc_stdc" >&6 CC="$CC $ac_cv_prog_cc_stdc" ;; esac -echo "$as_me:3614: checking for inline" >&5 -+echo "$as_me:3735: checking for inline" >&5 ++echo "$as_me:3782: checking for inline" >&5 echo $ECHO_N "checking for inline... $ECHO_C" >&6 if test "${ac_cv_c_inline+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 -@@ -3619,7 +3740,7 @@ +@@ -3619,7 +3787,7 @@ ac_cv_c_inline=no for ac_kw in inline __inline__ __inline; do cat >conftest.$ac_ext <<_ACEOF -#line 3622 "configure" -+#line 3743 "configure" ++#line 3790 "configure" #include "confdefs.h" #ifndef __cplusplus static $ac_kw int static_foo () {return 0; } -@@ -3628,16 +3749,16 @@ +@@ -3628,16 +3796,16 @@ _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:3631: \"$ac_compile\"") >&5 -+if { (eval echo "$as_me:3752: \"$ac_compile\"") >&5 ++if { (eval echo "$as_me:3799: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:3634: \$? = $ac_status" >&5 -+ echo "$as_me:3755: \$? = $ac_status" >&5 ++ echo "$as_me:3802: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:3637: \"$ac_try\"") >&5 -+ { (eval echo "$as_me:3758: \"$ac_try\"") >&5 ++ { (eval echo "$as_me:3805: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:3640: \$? = $ac_status" >&5 -+ echo "$as_me:3761: \$? = $ac_status" >&5 ++ echo "$as_me:3808: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_c_inline=$ac_kw; break else -@@ -3648,7 +3769,7 @@ +@@ -3648,7 +3816,7 @@ done fi -echo "$as_me:3651: result: $ac_cv_c_inline" >&5 -+echo "$as_me:3772: result: $ac_cv_c_inline" >&5 ++echo "$as_me:3819: result: $ac_cv_c_inline" >&5 echo "${ECHO_T}$ac_cv_c_inline" >&6 case $ac_cv_c_inline in inline | yes) ;; -@@ -3663,13 +3784,13 @@ +@@ -3663,13 +3831,13 @@ ;; esac -echo "$as_me:3666: checking for ANSI C header files" >&5 -+echo "$as_me:3787: checking for ANSI C header files" >&5 ++echo "$as_me:3834: checking for ANSI C header files" >&5 echo $ECHO_N "checking for ANSI C header files... $ECHO_C" >&6 if test "${ac_cv_header_stdc+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 3672 "configure" -+#line 3793 "configure" ++#line 3840 "configure" #include "confdefs.h" #include #include -@@ -3677,13 +3798,13 @@ +@@ -3677,13 +3845,13 @@ #include _ACEOF -if { (eval echo "$as_me:3680: \"$ac_cpp conftest.$ac_ext\"") >&5 -+if { (eval echo "$as_me:3801: \"$ac_cpp conftest.$ac_ext\"") >&5 ++if { (eval echo "$as_me:3848: \"$ac_cpp conftest.$ac_ext\"") >&5 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 ac_status=$? egrep -v '^ *\+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 - echo "$as_me:3686: \$? = $ac_status" >&5 -+ echo "$as_me:3807: \$? = $ac_status" >&5 ++ echo "$as_me:3854: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag -@@ -3705,7 +3826,7 @@ +@@ -3705,7 +3873,7 @@ if test $ac_cv_header_stdc = yes; then # SunOS 4.x string.h does not declare mem*, contrary to ANSI. cat >conftest.$ac_ext <<_ACEOF -#line 3708 "configure" -+#line 3829 "configure" ++#line 3876 "configure" #include "confdefs.h" #include -@@ -3723,7 +3844,7 @@ +@@ -3723,7 +3891,7 @@ if test $ac_cv_header_stdc = yes; then # ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI. cat >conftest.$ac_ext <<_ACEOF -#line 3726 "configure" -+#line 3847 "configure" ++#line 3894 "configure" #include "confdefs.h" #include -@@ -3744,7 +3865,7 @@ +@@ -3744,7 +3912,7 @@ : else cat >conftest.$ac_ext <<_ACEOF -#line 3747 "configure" -+#line 3868 "configure" ++#line 3915 "configure" #include "confdefs.h" #include #if ((' ' & 0x0FF) == 0x020) -@@ -3770,15 +3891,15 @@ +@@ -3770,15 +3938,15 @@ } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:3773: \"$ac_link\"") >&5 -+if { (eval echo "$as_me:3894: \"$ac_link\"") >&5 ++if { (eval echo "$as_me:3941: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:3776: \$? = $ac_status" >&5 -+ echo "$as_me:3897: \$? = $ac_status" >&5 ++ echo "$as_me:3944: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:3778: \"$ac_try\"") >&5 -+ { (eval echo "$as_me:3899: \"$ac_try\"") >&5 ++ { (eval echo "$as_me:3946: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:3781: \$? = $ac_status" >&5 -+ echo "$as_me:3902: \$? = $ac_status" >&5 ++ echo "$as_me:3949: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else -@@ -3791,7 +3912,7 @@ +@@ -3791,7 +3959,7 @@ fi fi fi -echo "$as_me:3794: result: $ac_cv_header_stdc" >&5 -+echo "$as_me:3915: result: $ac_cv_header_stdc" >&5 ++echo "$as_me:3962: result: $ac_cv_header_stdc" >&5 echo "${ECHO_T}$ac_cv_header_stdc" >&6 if test $ac_cv_header_stdc = yes; then -@@ -3807,28 +3928,28 @@ +@@ -3807,28 +3975,28 @@ inttypes.h stdint.h unistd.h do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` -echo "$as_me:3810: checking for $ac_header" >&5 -+echo "$as_me:3931: checking for $ac_header" >&5 ++echo "$as_me:3978: checking for $ac_header" >&5 echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6 if eval "test \"\${$as_ac_Header+set}\" = set"; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 3816 "configure" -+#line 3937 "configure" ++#line 3984 "configure" #include "confdefs.h" $ac_includes_default #include <$ac_header> _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:3822: \"$ac_compile\"") >&5 -+if { (eval echo "$as_me:3943: \"$ac_compile\"") >&5 ++if { (eval echo "$as_me:3990: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:3825: \$? = $ac_status" >&5 -+ echo "$as_me:3946: \$? = $ac_status" >&5 ++ echo "$as_me:3993: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:3828: \"$ac_try\"") >&5 -+ { (eval echo "$as_me:3949: \"$ac_try\"") >&5 ++ { (eval echo "$as_me:3996: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:3831: \$? = $ac_status" >&5 -+ echo "$as_me:3952: \$? = $ac_status" >&5 ++ echo "$as_me:3999: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_Header=yes" else -@@ -3838,7 +3959,7 @@ +@@ -3838,7 +4006,7 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:3841: result: `eval echo '${'$as_ac_Header'}'`" >&5 -+echo "$as_me:3962: result: `eval echo '${'$as_ac_Header'}'`" >&5 ++echo "$as_me:4009: result: `eval echo '${'$as_ac_Header'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6 if test `eval echo '${'$as_ac_Header'}'` = yes; then cat >>confdefs.h <&5 -+echo "$as_me:3972: checking for unsigned char" >&5 ++echo "$as_me:4019: checking for unsigned char" >&5 echo $ECHO_N "checking for unsigned char... $ECHO_C" >&6 if test "${ac_cv_type_unsigned_char+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 3857 "configure" -+#line 3978 "configure" ++#line 4025 "configure" #include "confdefs.h" $ac_includes_default int -@@ -3869,16 +3990,16 @@ +@@ -3869,16 +4037,16 @@ } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:3872: \"$ac_compile\"") >&5 -+if { (eval echo "$as_me:3993: \"$ac_compile\"") >&5 ++if { (eval echo "$as_me:4040: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:3875: \$? = $ac_status" >&5 -+ echo "$as_me:3996: \$? = $ac_status" >&5 ++ echo "$as_me:4043: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:3878: \"$ac_try\"") >&5 -+ { (eval echo "$as_me:3999: \"$ac_try\"") >&5 ++ { (eval echo "$as_me:4046: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:3881: \$? = $ac_status" >&5 -+ echo "$as_me:4002: \$? = $ac_status" >&5 ++ echo "$as_me:4049: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_type_unsigned_char=yes else -@@ -3888,10 +4009,10 @@ +@@ -3888,10 +4056,10 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:3891: result: $ac_cv_type_unsigned_char" >&5 -+echo "$as_me:4012: result: $ac_cv_type_unsigned_char" >&5 ++echo "$as_me:4059: result: $ac_cv_type_unsigned_char" >&5 echo "${ECHO_T}$ac_cv_type_unsigned_char" >&6 -echo "$as_me:3894: checking size of unsigned char" >&5 -+echo "$as_me:4015: checking size of unsigned char" >&5 ++echo "$as_me:4062: checking size of unsigned char" >&5 echo $ECHO_N "checking size of unsigned char... $ECHO_C" >&6 if test "${ac_cv_sizeof_unsigned_char+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 -@@ -3900,7 +4021,7 @@ +@@ -3900,7 +4068,7 @@ if test "$cross_compiling" = yes; then # Depending upon the size, compute the lo and hi bounds. cat >conftest.$ac_ext <<_ACEOF -#line 3903 "configure" -+#line 4024 "configure" ++#line 4071 "configure" #include "confdefs.h" $ac_includes_default int -@@ -3912,21 +4033,21 @@ +@@ -3912,21 +4080,21 @@ } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:3915: \"$ac_compile\"") >&5 -+if { (eval echo "$as_me:4036: \"$ac_compile\"") >&5 ++if { (eval echo "$as_me:4083: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:3918: \$? = $ac_status" >&5 -+ echo "$as_me:4039: \$? = $ac_status" >&5 ++ echo "$as_me:4086: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:3921: \"$ac_try\"") >&5 -+ { (eval echo "$as_me:4042: \"$ac_try\"") >&5 ++ { (eval echo "$as_me:4089: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:3924: \$? = $ac_status" >&5 -+ echo "$as_me:4045: \$? = $ac_status" >&5 ++ echo "$as_me:4092: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_lo=0 ac_mid=0 while :; do cat >conftest.$ac_ext <<_ACEOF -#line 3929 "configure" -+#line 4050 "configure" ++#line 4097 "configure" #include "confdefs.h" $ac_includes_default int -@@ -3938,16 +4059,16 @@ +@@ -3938,16 +4106,16 @@ } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:3941: \"$ac_compile\"") >&5 -+if { (eval echo "$as_me:4062: \"$ac_compile\"") >&5 ++if { (eval echo "$as_me:4109: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:3944: \$? = $ac_status" >&5 -+ echo "$as_me:4065: \$? = $ac_status" >&5 ++ echo "$as_me:4112: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:3947: \"$ac_try\"") >&5 -+ { (eval echo "$as_me:4068: \"$ac_try\"") >&5 ++ { (eval echo "$as_me:4115: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:3950: \$? = $ac_status" >&5 -+ echo "$as_me:4071: \$? = $ac_status" >&5 ++ echo "$as_me:4118: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_hi=$ac_mid; break else -@@ -3963,7 +4084,7 @@ +@@ -3963,7 +4131,7 @@ ac_hi=-1 ac_mid=-1 while :; do cat >conftest.$ac_ext <<_ACEOF -#line 3966 "configure" -+#line 4087 "configure" ++#line 4134 "configure" #include "confdefs.h" $ac_includes_default int -@@ -3975,16 +4096,16 @@ +@@ -3975,16 +4143,16 @@ } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:3978: \"$ac_compile\"") >&5 -+if { (eval echo "$as_me:4099: \"$ac_compile\"") >&5 ++if { (eval echo "$as_me:4146: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:3981: \$? = $ac_status" >&5 -+ echo "$as_me:4102: \$? = $ac_status" >&5 ++ echo "$as_me:4149: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:3984: \"$ac_try\"") >&5 -+ { (eval echo "$as_me:4105: \"$ac_try\"") >&5 ++ { (eval echo "$as_me:4152: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:3987: \$? = $ac_status" >&5 -+ echo "$as_me:4108: \$? = $ac_status" >&5 ++ echo "$as_me:4155: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_lo=$ac_mid; break else -@@ -4000,7 +4121,7 @@ +@@ -4000,7 +4168,7 @@ while test "x$ac_lo" != "x$ac_hi"; do ac_mid=`expr '(' $ac_hi - $ac_lo ')' / 2 + $ac_lo` cat >conftest.$ac_ext <<_ACEOF -#line 4003 "configure" -+#line 4124 "configure" ++#line 4171 "configure" #include "confdefs.h" $ac_includes_default int -@@ -4012,16 +4133,16 @@ +@@ -4012,16 +4180,16 @@ } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:4015: \"$ac_compile\"") >&5 -+if { (eval echo "$as_me:4136: \"$ac_compile\"") >&5 ++if { (eval echo "$as_me:4183: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:4018: \$? = $ac_status" >&5 -+ echo "$as_me:4139: \$? = $ac_status" >&5 ++ echo "$as_me:4186: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:4021: \"$ac_try\"") >&5 -+ { (eval echo "$as_me:4142: \"$ac_try\"") >&5 ++ { (eval echo "$as_me:4189: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:4024: \$? = $ac_status" >&5 -+ echo "$as_me:4145: \$? = $ac_status" >&5 ++ echo "$as_me:4192: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_hi=$ac_mid else -@@ -4034,12 +4155,12 @@ +@@ -4034,12 +4202,12 @@ ac_cv_sizeof_unsigned_char=$ac_lo else if test "$cross_compiling" = yes; then - { { echo "$as_me:4037: error: cannot run test program while cross compiling" >&5 -+ { { echo "$as_me:4158: error: cannot run test program while cross compiling" >&5 ++ { { echo "$as_me:4205: error: cannot run test program while cross compiling" >&5 echo "$as_me: error: cannot run test program while cross compiling" >&2;} { (exit 1); exit 1; }; } else cat >conftest.$ac_ext <<_ACEOF -#line 4042 "configure" -+#line 4163 "configure" ++#line 4210 "configure" #include "confdefs.h" $ac_includes_default int -@@ -4055,15 +4176,15 @@ +@@ -4055,15 +4223,15 @@ } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:4058: \"$ac_link\"") >&5 -+if { (eval echo "$as_me:4179: \"$ac_link\"") >&5 ++if { (eval echo "$as_me:4226: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:4061: \$? = $ac_status" >&5 -+ echo "$as_me:4182: \$? = $ac_status" >&5 ++ echo "$as_me:4229: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:4063: \"$ac_try\"") >&5 -+ { (eval echo "$as_me:4184: \"$ac_try\"") >&5 ++ { (eval echo "$as_me:4231: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:4066: \$? = $ac_status" >&5 -+ echo "$as_me:4187: \$? = $ac_status" >&5 ++ echo "$as_me:4234: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_sizeof_unsigned_char=`cat conftest.val` else -@@ -4079,19 +4200,19 @@ +@@ -4079,19 +4247,19 @@ ac_cv_sizeof_unsigned_char=0 fi fi -echo "$as_me:4082: result: $ac_cv_sizeof_unsigned_char" >&5 -+echo "$as_me:4203: result: $ac_cv_sizeof_unsigned_char" >&5 ++echo "$as_me:4250: result: $ac_cv_sizeof_unsigned_char" >&5 echo "${ECHO_T}$ac_cv_sizeof_unsigned_char" >&6 cat >>confdefs.h <&5 -+echo "$as_me:4209: checking for unsigned short" >&5 ++echo "$as_me:4256: checking for unsigned short" >&5 echo $ECHO_N "checking for unsigned short... $ECHO_C" >&6 if test "${ac_cv_type_unsigned_short+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 4094 "configure" -+#line 4215 "configure" ++#line 4262 "configure" #include "confdefs.h" $ac_includes_default int -@@ -4106,16 +4227,16 @@ +@@ -4106,16 +4274,16 @@ } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:4109: \"$ac_compile\"") >&5 -+if { (eval echo "$as_me:4230: \"$ac_compile\"") >&5 ++if { (eval echo "$as_me:4277: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:4112: \$? = $ac_status" >&5 -+ echo "$as_me:4233: \$? = $ac_status" >&5 ++ echo "$as_me:4280: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:4115: \"$ac_try\"") >&5 -+ { (eval echo "$as_me:4236: \"$ac_try\"") >&5 ++ { (eval echo "$as_me:4283: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:4118: \$? = $ac_status" >&5 -+ echo "$as_me:4239: \$? = $ac_status" >&5 ++ echo "$as_me:4286: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_type_unsigned_short=yes else -@@ -4125,10 +4246,10 @@ +@@ -4125,10 +4293,10 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:4128: result: $ac_cv_type_unsigned_short" >&5 -+echo "$as_me:4249: result: $ac_cv_type_unsigned_short" >&5 ++echo "$as_me:4296: result: $ac_cv_type_unsigned_short" >&5 echo "${ECHO_T}$ac_cv_type_unsigned_short" >&6 -echo "$as_me:4131: checking size of unsigned short" >&5 -+echo "$as_me:4252: checking size of unsigned short" >&5 ++echo "$as_me:4299: checking size of unsigned short" >&5 echo $ECHO_N "checking size of unsigned short... $ECHO_C" >&6 if test "${ac_cv_sizeof_unsigned_short+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 -@@ -4137,7 +4258,7 @@ +@@ -4137,7 +4305,7 @@ if test "$cross_compiling" = yes; then # Depending upon the size, compute the lo and hi bounds. cat >conftest.$ac_ext <<_ACEOF -#line 4140 "configure" -+#line 4261 "configure" ++#line 4308 "configure" #include "confdefs.h" $ac_includes_default int -@@ -4149,21 +4270,21 @@ +@@ -4149,21 +4317,21 @@ } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:4152: \"$ac_compile\"") >&5 -+if { (eval echo "$as_me:4273: \"$ac_compile\"") >&5 ++if { (eval echo "$as_me:4320: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:4155: \$? = $ac_status" >&5 -+ echo "$as_me:4276: \$? = $ac_status" >&5 ++ echo "$as_me:4323: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:4158: \"$ac_try\"") >&5 -+ { (eval echo "$as_me:4279: \"$ac_try\"") >&5 ++ { (eval echo "$as_me:4326: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:4161: \$? = $ac_status" >&5 -+ echo "$as_me:4282: \$? = $ac_status" >&5 ++ echo "$as_me:4329: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_lo=0 ac_mid=0 while :; do cat >conftest.$ac_ext <<_ACEOF -#line 4166 "configure" -+#line 4287 "configure" ++#line 4334 "configure" #include "confdefs.h" $ac_includes_default int -@@ -4175,16 +4296,16 @@ +@@ -4175,16 +4343,16 @@ } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:4178: \"$ac_compile\"") >&5 -+if { (eval echo "$as_me:4299: \"$ac_compile\"") >&5 ++if { (eval echo "$as_me:4346: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:4181: \$? = $ac_status" >&5 -+ echo "$as_me:4302: \$? = $ac_status" >&5 ++ echo "$as_me:4349: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:4184: \"$ac_try\"") >&5 -+ { (eval echo "$as_me:4305: \"$ac_try\"") >&5 ++ { (eval echo "$as_me:4352: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:4187: \$? = $ac_status" >&5 -+ echo "$as_me:4308: \$? = $ac_status" >&5 ++ echo "$as_me:4355: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_hi=$ac_mid; break else -@@ -4200,7 +4321,7 @@ +@@ -4200,7 +4368,7 @@ ac_hi=-1 ac_mid=-1 while :; do cat >conftest.$ac_ext <<_ACEOF -#line 4203 "configure" -+#line 4324 "configure" ++#line 4371 "configure" #include "confdefs.h" $ac_includes_default int -@@ -4212,16 +4333,16 @@ +@@ -4212,16 +4380,16 @@ } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:4215: \"$ac_compile\"") >&5 -+if { (eval echo "$as_me:4336: \"$ac_compile\"") >&5 ++if { (eval echo "$as_me:4383: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:4218: \$? = $ac_status" >&5 -+ echo "$as_me:4339: \$? = $ac_status" >&5 ++ echo "$as_me:4386: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:4221: \"$ac_try\"") >&5 -+ { (eval echo "$as_me:4342: \"$ac_try\"") >&5 ++ { (eval echo "$as_me:4389: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:4224: \$? = $ac_status" >&5 -+ echo "$as_me:4345: \$? = $ac_status" >&5 ++ echo "$as_me:4392: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_lo=$ac_mid; break else -@@ -4237,7 +4358,7 @@ +@@ -4237,7 +4405,7 @@ while test "x$ac_lo" != "x$ac_hi"; do ac_mid=`expr '(' $ac_hi - $ac_lo ')' / 2 + $ac_lo` cat >conftest.$ac_ext <<_ACEOF -#line 4240 "configure" -+#line 4361 "configure" ++#line 4408 "configure" #include "confdefs.h" $ac_includes_default int -@@ -4249,16 +4370,16 @@ +@@ -4249,16 +4417,16 @@ } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:4252: \"$ac_compile\"") >&5 -+if { (eval echo "$as_me:4373: \"$ac_compile\"") >&5 ++if { (eval echo "$as_me:4420: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:4255: \$? = $ac_status" >&5 -+ echo "$as_me:4376: \$? = $ac_status" >&5 ++ echo "$as_me:4423: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:4258: \"$ac_try\"") >&5 -+ { (eval echo "$as_me:4379: \"$ac_try\"") >&5 ++ { (eval echo "$as_me:4426: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:4261: \$? = $ac_status" >&5 -+ echo "$as_me:4382: \$? = $ac_status" >&5 ++ echo "$as_me:4429: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_hi=$ac_mid else -@@ -4271,12 +4392,12 @@ +@@ -4271,12 +4439,12 @@ ac_cv_sizeof_unsigned_short=$ac_lo else if test "$cross_compiling" = yes; then - { { echo "$as_me:4274: error: cannot run test program while cross compiling" >&5 -+ { { echo "$as_me:4395: error: cannot run test program while cross compiling" >&5 ++ { { echo "$as_me:4442: error: cannot run test program while cross compiling" >&5 echo "$as_me: error: cannot run test program while cross compiling" >&2;} { (exit 1); exit 1; }; } else cat >conftest.$ac_ext <<_ACEOF -#line 4279 "configure" -+#line 4400 "configure" ++#line 4447 "configure" #include "confdefs.h" $ac_includes_default int -@@ -4292,15 +4413,15 @@ +@@ -4292,15 +4460,15 @@ } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:4295: \"$ac_link\"") >&5 -+if { (eval echo "$as_me:4416: \"$ac_link\"") >&5 ++if { (eval echo "$as_me:4463: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:4298: \$? = $ac_status" >&5 -+ echo "$as_me:4419: \$? = $ac_status" >&5 ++ echo "$as_me:4466: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:4300: \"$ac_try\"") >&5 -+ { (eval echo "$as_me:4421: \"$ac_try\"") >&5 ++ { (eval echo "$as_me:4468: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:4303: \$? = $ac_status" >&5 -+ echo "$as_me:4424: \$? = $ac_status" >&5 ++ echo "$as_me:4471: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_sizeof_unsigned_short=`cat conftest.val` else -@@ -4316,19 +4437,19 @@ +@@ -4316,19 +4484,19 @@ ac_cv_sizeof_unsigned_short=0 fi fi -echo "$as_me:4319: result: $ac_cv_sizeof_unsigned_short" >&5 -+echo "$as_me:4440: result: $ac_cv_sizeof_unsigned_short" >&5 ++echo "$as_me:4487: result: $ac_cv_sizeof_unsigned_short" >&5 echo "${ECHO_T}$ac_cv_sizeof_unsigned_short" >&6 cat >>confdefs.h <&5 -+echo "$as_me:4446: checking for unsigned int" >&5 ++echo "$as_me:4493: checking for unsigned int" >&5 echo $ECHO_N "checking for unsigned int... $ECHO_C" >&6 if test "${ac_cv_type_unsigned_int+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 4331 "configure" -+#line 4452 "configure" ++#line 4499 "configure" #include "confdefs.h" $ac_includes_default int -@@ -4343,16 +4464,16 @@ +@@ -4343,16 +4511,16 @@ } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:4346: \"$ac_compile\"") >&5 -+if { (eval echo "$as_me:4467: \"$ac_compile\"") >&5 ++if { (eval echo "$as_me:4514: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:4349: \$? = $ac_status" >&5 -+ echo "$as_me:4470: \$? = $ac_status" >&5 ++ echo "$as_me:4517: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:4352: \"$ac_try\"") >&5 -+ { (eval echo "$as_me:4473: \"$ac_try\"") >&5 ++ { (eval echo "$as_me:4520: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:4355: \$? = $ac_status" >&5 -+ echo "$as_me:4476: \$? = $ac_status" >&5 ++ echo "$as_me:4523: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_type_unsigned_int=yes else -@@ -4362,10 +4483,10 @@ +@@ -4362,10 +4530,10 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:4365: result: $ac_cv_type_unsigned_int" >&5 -+echo "$as_me:4486: result: $ac_cv_type_unsigned_int" >&5 ++echo "$as_me:4533: result: $ac_cv_type_unsigned_int" >&5 echo "${ECHO_T}$ac_cv_type_unsigned_int" >&6 -echo "$as_me:4368: checking size of unsigned int" >&5 -+echo "$as_me:4489: checking size of unsigned int" >&5 ++echo "$as_me:4536: checking size of unsigned int" >&5 echo $ECHO_N "checking size of unsigned int... $ECHO_C" >&6 if test "${ac_cv_sizeof_unsigned_int+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 -@@ -4374,7 +4495,7 @@ +@@ -4374,7 +4542,7 @@ if test "$cross_compiling" = yes; then # Depending upon the size, compute the lo and hi bounds. cat >conftest.$ac_ext <<_ACEOF -#line 4377 "configure" -+#line 4498 "configure" ++#line 4545 "configure" #include "confdefs.h" $ac_includes_default int -@@ -4386,21 +4507,21 @@ +@@ -4386,21 +4554,21 @@ } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:4389: \"$ac_compile\"") >&5 -+if { (eval echo "$as_me:4510: \"$ac_compile\"") >&5 ++if { (eval echo "$as_me:4557: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:4392: \$? = $ac_status" >&5 -+ echo "$as_me:4513: \$? = $ac_status" >&5 ++ echo "$as_me:4560: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:4395: \"$ac_try\"") >&5 -+ { (eval echo "$as_me:4516: \"$ac_try\"") >&5 ++ { (eval echo "$as_me:4563: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:4398: \$? = $ac_status" >&5 -+ echo "$as_me:4519: \$? = $ac_status" >&5 ++ echo "$as_me:4566: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_lo=0 ac_mid=0 while :; do cat >conftest.$ac_ext <<_ACEOF -#line 4403 "configure" -+#line 4524 "configure" ++#line 4571 "configure" #include "confdefs.h" $ac_includes_default int -@@ -4412,16 +4533,16 @@ +@@ -4412,16 +4580,16 @@ } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:4415: \"$ac_compile\"") >&5 -+if { (eval echo "$as_me:4536: \"$ac_compile\"") >&5 ++if { (eval echo "$as_me:4583: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:4418: \$? = $ac_status" >&5 -+ echo "$as_me:4539: \$? = $ac_status" >&5 ++ echo "$as_me:4586: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:4421: \"$ac_try\"") >&5 -+ { (eval echo "$as_me:4542: \"$ac_try\"") >&5 ++ { (eval echo "$as_me:4589: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:4424: \$? = $ac_status" >&5 -+ echo "$as_me:4545: \$? = $ac_status" >&5 ++ echo "$as_me:4592: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_hi=$ac_mid; break else -@@ -4437,7 +4558,7 @@ +@@ -4437,7 +4605,7 @@ ac_hi=-1 ac_mid=-1 while :; do cat >conftest.$ac_ext <<_ACEOF -#line 4440 "configure" -+#line 4561 "configure" ++#line 4608 "configure" #include "confdefs.h" $ac_includes_default int -@@ -4449,16 +4570,16 @@ +@@ -4449,16 +4617,16 @@ } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:4452: \"$ac_compile\"") >&5 -+if { (eval echo "$as_me:4573: \"$ac_compile\"") >&5 ++if { (eval echo "$as_me:4620: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:4455: \$? = $ac_status" >&5 -+ echo "$as_me:4576: \$? = $ac_status" >&5 ++ echo "$as_me:4623: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:4458: \"$ac_try\"") >&5 -+ { (eval echo "$as_me:4579: \"$ac_try\"") >&5 ++ { (eval echo "$as_me:4626: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:4461: \$? = $ac_status" >&5 -+ echo "$as_me:4582: \$? = $ac_status" >&5 ++ echo "$as_me:4629: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_lo=$ac_mid; break else -@@ -4474,7 +4595,7 @@ +@@ -4474,7 +4642,7 @@ while test "x$ac_lo" != "x$ac_hi"; do ac_mid=`expr '(' $ac_hi - $ac_lo ')' / 2 + $ac_lo` cat >conftest.$ac_ext <<_ACEOF -#line 4477 "configure" -+#line 4598 "configure" ++#line 4645 "configure" #include "confdefs.h" $ac_includes_default int -@@ -4486,16 +4607,16 @@ +@@ -4486,16 +4654,16 @@ } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:4489: \"$ac_compile\"") >&5 -+if { (eval echo "$as_me:4610: \"$ac_compile\"") >&5 ++if { (eval echo "$as_me:4657: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:4492: \$? = $ac_status" >&5 -+ echo "$as_me:4613: \$? = $ac_status" >&5 ++ echo "$as_me:4660: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:4495: \"$ac_try\"") >&5 -+ { (eval echo "$as_me:4616: \"$ac_try\"") >&5 ++ { (eval echo "$as_me:4663: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:4498: \$? = $ac_status" >&5 -+ echo "$as_me:4619: \$? = $ac_status" >&5 ++ echo "$as_me:4666: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_hi=$ac_mid else -@@ -4508,12 +4629,12 @@ +@@ -4508,12 +4676,12 @@ ac_cv_sizeof_unsigned_int=$ac_lo else if test "$cross_compiling" = yes; then - { { echo "$as_me:4511: error: cannot run test program while cross compiling" >&5 -+ { { echo "$as_me:4632: error: cannot run test program while cross compiling" >&5 ++ { { echo "$as_me:4679: error: cannot run test program while cross compiling" >&5 echo "$as_me: error: cannot run test program while cross compiling" >&2;} { (exit 1); exit 1; }; } else cat >conftest.$ac_ext <<_ACEOF -#line 4516 "configure" -+#line 4637 "configure" ++#line 4684 "configure" #include "confdefs.h" $ac_includes_default int -@@ -4529,15 +4650,15 @@ +@@ -4529,15 +4697,15 @@ } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:4532: \"$ac_link\"") >&5 -+if { (eval echo "$as_me:4653: \"$ac_link\"") >&5 ++if { (eval echo "$as_me:4700: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:4535: \$? = $ac_status" >&5 -+ echo "$as_me:4656: \$? = $ac_status" >&5 ++ echo "$as_me:4703: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:4537: \"$ac_try\"") >&5 -+ { (eval echo "$as_me:4658: \"$ac_try\"") >&5 ++ { (eval echo "$as_me:4705: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:4540: \$? = $ac_status" >&5 -+ echo "$as_me:4661: \$? = $ac_status" >&5 ++ echo "$as_me:4708: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_sizeof_unsigned_int=`cat conftest.val` else -@@ -4553,19 +4674,19 @@ +@@ -4553,19 +4721,19 @@ ac_cv_sizeof_unsigned_int=0 fi fi -echo "$as_me:4556: result: $ac_cv_sizeof_unsigned_int" >&5 -+echo "$as_me:4677: result: $ac_cv_sizeof_unsigned_int" >&5 ++echo "$as_me:4724: result: $ac_cv_sizeof_unsigned_int" >&5 echo "${ECHO_T}$ac_cv_sizeof_unsigned_int" >&6 cat >>confdefs.h <&5 -+echo "$as_me:4683: checking for unsigned long" >&5 ++echo "$as_me:4730: checking for unsigned long" >&5 echo $ECHO_N "checking for unsigned long... $ECHO_C" >&6 if test "${ac_cv_type_unsigned_long+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 4568 "configure" -+#line 4689 "configure" ++#line 4736 "configure" #include "confdefs.h" $ac_includes_default int -@@ -4580,16 +4701,16 @@ +@@ -4580,16 +4748,16 @@ } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:4583: \"$ac_compile\"") >&5 -+if { (eval echo "$as_me:4704: \"$ac_compile\"") >&5 ++if { (eval echo "$as_me:4751: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:4586: \$? = $ac_status" >&5 -+ echo "$as_me:4707: \$? = $ac_status" >&5 ++ echo "$as_me:4754: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:4589: \"$ac_try\"") >&5 -+ { (eval echo "$as_me:4710: \"$ac_try\"") >&5 ++ { (eval echo "$as_me:4757: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:4592: \$? = $ac_status" >&5 -+ echo "$as_me:4713: \$? = $ac_status" >&5 ++ echo "$as_me:4760: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_type_unsigned_long=yes else -@@ -4599,10 +4720,10 @@ +@@ -4599,10 +4767,10 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:4602: result: $ac_cv_type_unsigned_long" >&5 -+echo "$as_me:4723: result: $ac_cv_type_unsigned_long" >&5 ++echo "$as_me:4770: result: $ac_cv_type_unsigned_long" >&5 echo "${ECHO_T}$ac_cv_type_unsigned_long" >&6 -echo "$as_me:4605: checking size of unsigned long" >&5 -+echo "$as_me:4726: checking size of unsigned long" >&5 ++echo "$as_me:4773: checking size of unsigned long" >&5 echo $ECHO_N "checking size of unsigned long... $ECHO_C" >&6 if test "${ac_cv_sizeof_unsigned_long+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 -@@ -4611,7 +4732,7 @@ +@@ -4611,7 +4779,7 @@ if test "$cross_compiling" = yes; then # Depending upon the size, compute the lo and hi bounds. cat >conftest.$ac_ext <<_ACEOF -#line 4614 "configure" -+#line 4735 "configure" ++#line 4782 "configure" #include "confdefs.h" $ac_includes_default int -@@ -4623,21 +4744,21 @@ +@@ -4623,21 +4791,21 @@ } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:4626: \"$ac_compile\"") >&5 -+if { (eval echo "$as_me:4747: \"$ac_compile\"") >&5 ++if { (eval echo "$as_me:4794: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:4629: \$? = $ac_status" >&5 -+ echo "$as_me:4750: \$? = $ac_status" >&5 ++ echo "$as_me:4797: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:4632: \"$ac_try\"") >&5 -+ { (eval echo "$as_me:4753: \"$ac_try\"") >&5 ++ { (eval echo "$as_me:4800: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:4635: \$? = $ac_status" >&5 -+ echo "$as_me:4756: \$? = $ac_status" >&5 ++ echo "$as_me:4803: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_lo=0 ac_mid=0 while :; do cat >conftest.$ac_ext <<_ACEOF -#line 4640 "configure" -+#line 4761 "configure" ++#line 4808 "configure" #include "confdefs.h" $ac_includes_default int -@@ -4649,16 +4770,16 @@ +@@ -4649,16 +4817,16 @@ } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:4652: \"$ac_compile\"") >&5 -+if { (eval echo "$as_me:4773: \"$ac_compile\"") >&5 ++if { (eval echo "$as_me:4820: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:4655: \$? = $ac_status" >&5 -+ echo "$as_me:4776: \$? = $ac_status" >&5 ++ echo "$as_me:4823: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:4658: \"$ac_try\"") >&5 -+ { (eval echo "$as_me:4779: \"$ac_try\"") >&5 ++ { (eval echo "$as_me:4826: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:4661: \$? = $ac_status" >&5 -+ echo "$as_me:4782: \$? = $ac_status" >&5 ++ echo "$as_me:4829: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_hi=$ac_mid; break else -@@ -4674,7 +4795,7 @@ +@@ -4674,7 +4842,7 @@ ac_hi=-1 ac_mid=-1 while :; do cat >conftest.$ac_ext <<_ACEOF -#line 4677 "configure" -+#line 4798 "configure" ++#line 4845 "configure" #include "confdefs.h" $ac_includes_default int -@@ -4686,16 +4807,16 @@ +@@ -4686,16 +4854,16 @@ } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:4689: \"$ac_compile\"") >&5 -+if { (eval echo "$as_me:4810: \"$ac_compile\"") >&5 ++if { (eval echo "$as_me:4857: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:4692: \$? = $ac_status" >&5 -+ echo "$as_me:4813: \$? = $ac_status" >&5 ++ echo "$as_me:4860: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:4695: \"$ac_try\"") >&5 -+ { (eval echo "$as_me:4816: \"$ac_try\"") >&5 ++ { (eval echo "$as_me:4863: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:4698: \$? = $ac_status" >&5 -+ echo "$as_me:4819: \$? = $ac_status" >&5 ++ echo "$as_me:4866: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_lo=$ac_mid; break else -@@ -4711,7 +4832,7 @@ +@@ -4711,7 +4879,7 @@ while test "x$ac_lo" != "x$ac_hi"; do ac_mid=`expr '(' $ac_hi - $ac_lo ')' / 2 + $ac_lo` cat >conftest.$ac_ext <<_ACEOF -#line 4714 "configure" -+#line 4835 "configure" ++#line 4882 "configure" #include "confdefs.h" $ac_includes_default int -@@ -4723,16 +4844,16 @@ +@@ -4723,16 +4891,16 @@ } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:4726: \"$ac_compile\"") >&5 -+if { (eval echo "$as_me:4847: \"$ac_compile\"") >&5 ++if { (eval echo "$as_me:4894: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:4729: \$? = $ac_status" >&5 -+ echo "$as_me:4850: \$? = $ac_status" >&5 ++ echo "$as_me:4897: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:4732: \"$ac_try\"") >&5 -+ { (eval echo "$as_me:4853: \"$ac_try\"") >&5 ++ { (eval echo "$as_me:4900: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:4735: \$? = $ac_status" >&5 -+ echo "$as_me:4856: \$? = $ac_status" >&5 ++ echo "$as_me:4903: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_hi=$ac_mid else -@@ -4745,12 +4866,12 @@ +@@ -4745,12 +4913,12 @@ ac_cv_sizeof_unsigned_long=$ac_lo else if test "$cross_compiling" = yes; then - { { echo "$as_me:4748: error: cannot run test program while cross compiling" >&5 -+ { { echo "$as_me:4869: error: cannot run test program while cross compiling" >&5 ++ { { echo "$as_me:4916: error: cannot run test program while cross compiling" >&5 echo "$as_me: error: cannot run test program while cross compiling" >&2;} { (exit 1); exit 1; }; } else cat >conftest.$ac_ext <<_ACEOF -#line 4753 "configure" -+#line 4874 "configure" ++#line 4921 "configure" #include "confdefs.h" $ac_includes_default int -@@ -4766,15 +4887,15 @@ +@@ -4766,15 +4934,15 @@ } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:4769: \"$ac_link\"") >&5 -+if { (eval echo "$as_me:4890: \"$ac_link\"") >&5 ++if { (eval echo "$as_me:4937: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:4772: \$? = $ac_status" >&5 -+ echo "$as_me:4893: \$? = $ac_status" >&5 ++ echo "$as_me:4940: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:4774: \"$ac_try\"") >&5 -+ { (eval echo "$as_me:4895: \"$ac_try\"") >&5 ++ { (eval echo "$as_me:4942: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:4777: \$? = $ac_status" >&5 -+ echo "$as_me:4898: \$? = $ac_status" >&5 ++ echo "$as_me:4945: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_sizeof_unsigned_long=`cat conftest.val` else -@@ -4790,19 +4911,19 @@ +@@ -4790,19 +4958,19 @@ ac_cv_sizeof_unsigned_long=0 fi fi -echo "$as_me:4793: result: $ac_cv_sizeof_unsigned_long" >&5 -+echo "$as_me:4914: result: $ac_cv_sizeof_unsigned_long" >&5 ++echo "$as_me:4961: result: $ac_cv_sizeof_unsigned_long" >&5 echo "${ECHO_T}$ac_cv_sizeof_unsigned_long" >&6 cat >>confdefs.h <&5 -+echo "$as_me:4920: checking for unsigned long long" >&5 ++echo "$as_me:4967: checking for unsigned long long" >&5 echo $ECHO_N "checking for unsigned long long... $ECHO_C" >&6 if test "${ac_cv_type_unsigned_long_long+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 4805 "configure" -+#line 4926 "configure" ++#line 4973 "configure" #include "confdefs.h" $ac_includes_default int -@@ -4817,16 +4938,16 @@ +@@ -4817,16 +4985,16 @@ } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:4820: \"$ac_compile\"") >&5 -+if { (eval echo "$as_me:4941: \"$ac_compile\"") >&5 ++if { (eval echo "$as_me:4988: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:4823: \$? = $ac_status" >&5 -+ echo "$as_me:4944: \$? = $ac_status" >&5 ++ echo "$as_me:4991: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:4826: \"$ac_try\"") >&5 -+ { (eval echo "$as_me:4947: \"$ac_try\"") >&5 ++ { (eval echo "$as_me:4994: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:4829: \$? = $ac_status" >&5 -+ echo "$as_me:4950: \$? = $ac_status" >&5 ++ echo "$as_me:4997: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_type_unsigned_long_long=yes else -@@ -4836,10 +4957,10 @@ +@@ -4836,10 +5004,10 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:4839: result: $ac_cv_type_unsigned_long_long" >&5 -+echo "$as_me:4960: result: $ac_cv_type_unsigned_long_long" >&5 ++echo "$as_me:5007: result: $ac_cv_type_unsigned_long_long" >&5 echo "${ECHO_T}$ac_cv_type_unsigned_long_long" >&6 -echo "$as_me:4842: checking size of unsigned long long" >&5 -+echo "$as_me:4963: checking size of unsigned long long" >&5 ++echo "$as_me:5010: checking size of unsigned long long" >&5 echo $ECHO_N "checking size of unsigned long long... $ECHO_C" >&6 if test "${ac_cv_sizeof_unsigned_long_long+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 -@@ -4848,7 +4969,7 @@ +@@ -4848,7 +5016,7 @@ if test "$cross_compiling" = yes; then # Depending upon the size, compute the lo and hi bounds. cat >conftest.$ac_ext <<_ACEOF -#line 4851 "configure" -+#line 4972 "configure" ++#line 5019 "configure" #include "confdefs.h" $ac_includes_default int -@@ -4860,21 +4981,21 @@ +@@ -4860,21 +5028,21 @@ } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:4863: \"$ac_compile\"") >&5 -+if { (eval echo "$as_me:4984: \"$ac_compile\"") >&5 ++if { (eval echo "$as_me:5031: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:4866: \$? = $ac_status" >&5 -+ echo "$as_me:4987: \$? = $ac_status" >&5 ++ echo "$as_me:5034: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:4869: \"$ac_try\"") >&5 -+ { (eval echo "$as_me:4990: \"$ac_try\"") >&5 ++ { (eval echo "$as_me:5037: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:4872: \$? = $ac_status" >&5 -+ echo "$as_me:4993: \$? = $ac_status" >&5 ++ echo "$as_me:5040: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_lo=0 ac_mid=0 while :; do cat >conftest.$ac_ext <<_ACEOF -#line 4877 "configure" -+#line 4998 "configure" ++#line 5045 "configure" #include "confdefs.h" $ac_includes_default int -@@ -4886,16 +5007,16 @@ +@@ -4886,16 +5054,16 @@ } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:4889: \"$ac_compile\"") >&5 -+if { (eval echo "$as_me:5010: \"$ac_compile\"") >&5 ++if { (eval echo "$as_me:5057: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:4892: \$? = $ac_status" >&5 -+ echo "$as_me:5013: \$? = $ac_status" >&5 ++ echo "$as_me:5060: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:4895: \"$ac_try\"") >&5 -+ { (eval echo "$as_me:5016: \"$ac_try\"") >&5 ++ { (eval echo "$as_me:5063: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:4898: \$? = $ac_status" >&5 -+ echo "$as_me:5019: \$? = $ac_status" >&5 ++ echo "$as_me:5066: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_hi=$ac_mid; break else -@@ -4911,7 +5032,7 @@ +@@ -4911,7 +5079,7 @@ ac_hi=-1 ac_mid=-1 while :; do cat >conftest.$ac_ext <<_ACEOF -#line 4914 "configure" -+#line 5035 "configure" ++#line 5082 "configure" #include "confdefs.h" $ac_includes_default int -@@ -4923,16 +5044,16 @@ +@@ -4923,16 +5091,16 @@ } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:4926: \"$ac_compile\"") >&5 -+if { (eval echo "$as_me:5047: \"$ac_compile\"") >&5 ++if { (eval echo "$as_me:5094: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:4929: \$? = $ac_status" >&5 -+ echo "$as_me:5050: \$? = $ac_status" >&5 ++ echo "$as_me:5097: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:4932: \"$ac_try\"") >&5 -+ { (eval echo "$as_me:5053: \"$ac_try\"") >&5 ++ { (eval echo "$as_me:5100: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:4935: \$? = $ac_status" >&5 -+ echo "$as_me:5056: \$? = $ac_status" >&5 ++ echo "$as_me:5103: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_lo=$ac_mid; break else -@@ -4948,7 +5069,7 @@ +@@ -4948,7 +5116,7 @@ while test "x$ac_lo" != "x$ac_hi"; do ac_mid=`expr '(' $ac_hi - $ac_lo ')' / 2 + $ac_lo` cat >conftest.$ac_ext <<_ACEOF -#line 4951 "configure" -+#line 5072 "configure" ++#line 5119 "configure" #include "confdefs.h" $ac_includes_default int -@@ -4960,16 +5081,16 @@ +@@ -4960,16 +5128,16 @@ } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:4963: \"$ac_compile\"") >&5 -+if { (eval echo "$as_me:5084: \"$ac_compile\"") >&5 ++if { (eval echo "$as_me:5131: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:4966: \$? = $ac_status" >&5 -+ echo "$as_me:5087: \$? = $ac_status" >&5 ++ echo "$as_me:5134: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:4969: \"$ac_try\"") >&5 -+ { (eval echo "$as_me:5090: \"$ac_try\"") >&5 ++ { (eval echo "$as_me:5137: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:4972: \$? = $ac_status" >&5 -+ echo "$as_me:5093: \$? = $ac_status" >&5 ++ echo "$as_me:5140: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_hi=$ac_mid else -@@ -4982,12 +5103,12 @@ +@@ -4982,12 +5150,12 @@ ac_cv_sizeof_unsigned_long_long=$ac_lo else if test "$cross_compiling" = yes; then - { { echo "$as_me:4985: error: cannot run test program while cross compiling" >&5 -+ { { echo "$as_me:5106: error: cannot run test program while cross compiling" >&5 ++ { { echo "$as_me:5153: error: cannot run test program while cross compiling" >&5 echo "$as_me: error: cannot run test program while cross compiling" >&2;} { (exit 1); exit 1; }; } else cat >conftest.$ac_ext <<_ACEOF -#line 4990 "configure" -+#line 5111 "configure" ++#line 5158 "configure" #include "confdefs.h" $ac_includes_default int -@@ -5003,15 +5124,15 @@ +@@ -5003,15 +5171,15 @@ } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:5006: \"$ac_link\"") >&5 -+if { (eval echo "$as_me:5127: \"$ac_link\"") >&5 ++if { (eval echo "$as_me:5174: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:5009: \$? = $ac_status" >&5 -+ echo "$as_me:5130: \$? = $ac_status" >&5 ++ echo "$as_me:5177: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:5011: \"$ac_try\"") >&5 -+ { (eval echo "$as_me:5132: \"$ac_try\"") >&5 ++ { (eval echo "$as_me:5179: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:5014: \$? = $ac_status" >&5 -+ echo "$as_me:5135: \$? = $ac_status" >&5 ++ echo "$as_me:5182: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_sizeof_unsigned_long_long=`cat conftest.val` else -@@ -5027,19 +5148,19 @@ +@@ -5027,19 +5195,19 @@ ac_cv_sizeof_unsigned_long_long=0 fi fi -echo "$as_me:5030: result: $ac_cv_sizeof_unsigned_long_long" >&5 -+echo "$as_me:5151: result: $ac_cv_sizeof_unsigned_long_long" >&5 ++echo "$as_me:5198: result: $ac_cv_sizeof_unsigned_long_long" >&5 echo "${ECHO_T}$ac_cv_sizeof_unsigned_long_long" >&6 cat >>confdefs.h <&5 -+echo "$as_me:5157: checking for int *" >&5 ++echo "$as_me:5204: checking for int *" >&5 echo $ECHO_N "checking for int *... $ECHO_C" >&6 if test "${ac_cv_type_int_p+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 5042 "configure" -+#line 5163 "configure" ++#line 5210 "configure" #include "confdefs.h" $ac_includes_default int -@@ -5054,16 +5175,16 @@ +@@ -5054,16 +5222,16 @@ } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:5057: \"$ac_compile\"") >&5 -+if { (eval echo "$as_me:5178: \"$ac_compile\"") >&5 ++if { (eval echo "$as_me:5225: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:5060: \$? = $ac_status" >&5 -+ echo "$as_me:5181: \$? = $ac_status" >&5 ++ echo "$as_me:5228: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:5063: \"$ac_try\"") >&5 -+ { (eval echo "$as_me:5184: \"$ac_try\"") >&5 ++ { (eval echo "$as_me:5231: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:5066: \$? = $ac_status" >&5 -+ echo "$as_me:5187: \$? = $ac_status" >&5 ++ echo "$as_me:5234: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_type_int_p=yes else -@@ -5073,10 +5194,10 @@ +@@ -5073,10 +5241,10 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:5076: result: $ac_cv_type_int_p" >&5 -+echo "$as_me:5197: result: $ac_cv_type_int_p" >&5 ++echo "$as_me:5244: result: $ac_cv_type_int_p" >&5 echo "${ECHO_T}$ac_cv_type_int_p" >&6 -echo "$as_me:5079: checking size of int *" >&5 -+echo "$as_me:5200: checking size of int *" >&5 ++echo "$as_me:5247: checking size of int *" >&5 echo $ECHO_N "checking size of int *... $ECHO_C" >&6 if test "${ac_cv_sizeof_int_p+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 -@@ -5085,7 +5206,7 @@ +@@ -5085,7 +5253,7 @@ if test "$cross_compiling" = yes; then # Depending upon the size, compute the lo and hi bounds. cat >conftest.$ac_ext <<_ACEOF -#line 5088 "configure" -+#line 5209 "configure" ++#line 5256 "configure" #include "confdefs.h" $ac_includes_default int -@@ -5097,21 +5218,21 @@ +@@ -5097,21 +5265,21 @@ } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:5100: \"$ac_compile\"") >&5 -+if { (eval echo "$as_me:5221: \"$ac_compile\"") >&5 ++if { (eval echo "$as_me:5268: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:5103: \$? = $ac_status" >&5 -+ echo "$as_me:5224: \$? = $ac_status" >&5 ++ echo "$as_me:5271: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:5106: \"$ac_try\"") >&5 -+ { (eval echo "$as_me:5227: \"$ac_try\"") >&5 ++ { (eval echo "$as_me:5274: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:5109: \$? = $ac_status" >&5 -+ echo "$as_me:5230: \$? = $ac_status" >&5 ++ echo "$as_me:5277: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_lo=0 ac_mid=0 while :; do cat >conftest.$ac_ext <<_ACEOF -#line 5114 "configure" -+#line 5235 "configure" ++#line 5282 "configure" #include "confdefs.h" $ac_includes_default int -@@ -5123,16 +5244,16 @@ +@@ -5123,16 +5291,16 @@ } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:5126: \"$ac_compile\"") >&5 -+if { (eval echo "$as_me:5247: \"$ac_compile\"") >&5 ++if { (eval echo "$as_me:5294: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:5129: \$? = $ac_status" >&5 -+ echo "$as_me:5250: \$? = $ac_status" >&5 ++ echo "$as_me:5297: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:5132: \"$ac_try\"") >&5 -+ { (eval echo "$as_me:5253: \"$ac_try\"") >&5 ++ { (eval echo "$as_me:5300: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:5135: \$? = $ac_status" >&5 -+ echo "$as_me:5256: \$? = $ac_status" >&5 ++ echo "$as_me:5303: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_hi=$ac_mid; break else -@@ -5148,7 +5269,7 @@ +@@ -5148,7 +5316,7 @@ ac_hi=-1 ac_mid=-1 while :; do cat >conftest.$ac_ext <<_ACEOF -#line 5151 "configure" -+#line 5272 "configure" ++#line 5319 "configure" #include "confdefs.h" $ac_includes_default int -@@ -5160,16 +5281,16 @@ +@@ -5160,16 +5328,16 @@ } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:5163: \"$ac_compile\"") >&5 -+if { (eval echo "$as_me:5284: \"$ac_compile\"") >&5 ++if { (eval echo "$as_me:5331: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:5166: \$? = $ac_status" >&5 -+ echo "$as_me:5287: \$? = $ac_status" >&5 ++ echo "$as_me:5334: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:5169: \"$ac_try\"") >&5 -+ { (eval echo "$as_me:5290: \"$ac_try\"") >&5 ++ { (eval echo "$as_me:5337: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:5172: \$? = $ac_status" >&5 -+ echo "$as_me:5293: \$? = $ac_status" >&5 ++ echo "$as_me:5340: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_lo=$ac_mid; break else -@@ -5185,7 +5306,7 @@ +@@ -5185,7 +5353,7 @@ while test "x$ac_lo" != "x$ac_hi"; do ac_mid=`expr '(' $ac_hi - $ac_lo ')' / 2 + $ac_lo` cat >conftest.$ac_ext <<_ACEOF -#line 5188 "configure" -+#line 5309 "configure" ++#line 5356 "configure" #include "confdefs.h" $ac_includes_default int -@@ -5197,16 +5318,16 @@ +@@ -5197,16 +5365,16 @@ } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:5200: \"$ac_compile\"") >&5 -+if { (eval echo "$as_me:5321: \"$ac_compile\"") >&5 ++if { (eval echo "$as_me:5368: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:5203: \$? = $ac_status" >&5 -+ echo "$as_me:5324: \$? = $ac_status" >&5 ++ echo "$as_me:5371: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:5206: \"$ac_try\"") >&5 -+ { (eval echo "$as_me:5327: \"$ac_try\"") >&5 ++ { (eval echo "$as_me:5374: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:5209: \$? = $ac_status" >&5 -+ echo "$as_me:5330: \$? = $ac_status" >&5 ++ echo "$as_me:5377: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_hi=$ac_mid else -@@ -5219,12 +5340,12 @@ +@@ -5219,12 +5387,12 @@ ac_cv_sizeof_int_p=$ac_lo else if test "$cross_compiling" = yes; then - { { echo "$as_me:5222: error: cannot run test program while cross compiling" >&5 -+ { { echo "$as_me:5343: error: cannot run test program while cross compiling" >&5 ++ { { echo "$as_me:5390: error: cannot run test program while cross compiling" >&5 echo "$as_me: error: cannot run test program while cross compiling" >&2;} { (exit 1); exit 1; }; } else cat >conftest.$ac_ext <<_ACEOF -#line 5227 "configure" -+#line 5348 "configure" ++#line 5395 "configure" #include "confdefs.h" $ac_includes_default int -@@ -5240,15 +5361,15 @@ +@@ -5240,15 +5408,15 @@ } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:5243: \"$ac_link\"") >&5 -+if { (eval echo "$as_me:5364: \"$ac_link\"") >&5 ++if { (eval echo "$as_me:5411: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:5246: \$? = $ac_status" >&5 -+ echo "$as_me:5367: \$? = $ac_status" >&5 ++ echo "$as_me:5414: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:5248: \"$ac_try\"") >&5 -+ { (eval echo "$as_me:5369: \"$ac_try\"") >&5 ++ { (eval echo "$as_me:5416: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:5251: \$? = $ac_status" >&5 -+ echo "$as_me:5372: \$? = $ac_status" >&5 ++ echo "$as_me:5419: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_sizeof_int_p=`cat conftest.val` else -@@ -5264,7 +5385,7 @@ +@@ -5264,7 +5432,7 @@ ac_cv_sizeof_int_p=0 fi fi -echo "$as_me:5267: result: $ac_cv_sizeof_int_p" >&5 -+echo "$as_me:5388: result: $ac_cv_sizeof_int_p" >&5 ++echo "$as_me:5435: result: $ac_cv_sizeof_int_p" >&5 echo "${ECHO_T}$ac_cv_sizeof_int_p" >&6 cat >>confdefs.h <&5 -+echo "$as_me:5397: checking for $ac_func" >&5 ++echo "$as_me:5444: checking for $ac_func" >&5 echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6 if eval "test \"\${$as_ac_var+set}\" = set"; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 5282 "configure" -+#line 5403 "configure" ++#line 5450 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. */ -@@ -5310,16 +5431,16 @@ +@@ -5310,16 +5478,16 @@ } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:5313: \"$ac_link\"") >&5 -+if { (eval echo "$as_me:5434: \"$ac_link\"") >&5 ++if { (eval echo "$as_me:5481: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:5316: \$? = $ac_status" >&5 -+ echo "$as_me:5437: \$? = $ac_status" >&5 ++ echo "$as_me:5484: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:5319: \"$ac_try\"") >&5 -+ { (eval echo "$as_me:5440: \"$ac_try\"") >&5 ++ { (eval echo "$as_me:5487: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:5322: \$? = $ac_status" >&5 -+ echo "$as_me:5443: \$? = $ac_status" >&5 ++ echo "$as_me:5490: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else -@@ -5329,7 +5450,7 @@ +@@ -5329,7 +5497,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:5332: result: `eval echo '${'$as_ac_var'}'`" >&5 -+echo "$as_me:5453: result: `eval echo '${'$as_ac_var'}'`" >&5 ++echo "$as_me:5500: result: `eval echo '${'$as_ac_var'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6 if test `eval echo '${'$as_ac_var'}'` = yes; then cat >>confdefs.h <&5 -+echo "$as_me:5469: checking for $ac_func" >&5 ++echo "$as_me:5516: checking for $ac_func" >&5 echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6 if eval "test \"\${$as_ac_var+set}\" = set"; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 5354 "configure" -+#line 5475 "configure" ++#line 5522 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. */ -@@ -5382,16 +5503,16 @@ +@@ -5382,16 +5550,16 @@ } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:5385: \"$ac_link\"") >&5 -+if { (eval echo "$as_me:5506: \"$ac_link\"") >&5 ++if { (eval echo "$as_me:5553: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:5388: \$? = $ac_status" >&5 -+ echo "$as_me:5509: \$? = $ac_status" >&5 ++ echo "$as_me:5556: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:5391: \"$ac_try\"") >&5 -+ { (eval echo "$as_me:5512: \"$ac_try\"") >&5 ++ { (eval echo "$as_me:5559: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:5394: \$? = $ac_status" >&5 -+ echo "$as_me:5515: \$? = $ac_status" >&5 ++ echo "$as_me:5562: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else -@@ -5401,7 +5522,7 @@ +@@ -5401,7 +5569,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:5404: result: `eval echo '${'$as_ac_var'}'`" >&5 -+echo "$as_me:5525: result: `eval echo '${'$as_ac_var'}'`" >&5 ++echo "$as_me:5572: result: `eval echo '${'$as_ac_var'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6 if test `eval echo '${'$as_ac_var'}'` = yes; then cat >>confdefs.h <&5 -+echo "$as_me:5541: checking for $ac_func" >&5 ++echo "$as_me:5588: checking for $ac_func" >&5 echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6 if eval "test \"\${$as_ac_var+set}\" = set"; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 5426 "configure" -+#line 5547 "configure" ++#line 5594 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. */ -@@ -5454,16 +5575,16 @@ +@@ -5454,16 +5622,16 @@ } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:5457: \"$ac_link\"") >&5 -+if { (eval echo "$as_me:5578: \"$ac_link\"") >&5 ++if { (eval echo "$as_me:5625: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:5460: \$? = $ac_status" >&5 -+ echo "$as_me:5581: \$? = $ac_status" >&5 ++ echo "$as_me:5628: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:5463: \"$ac_try\"") >&5 -+ { (eval echo "$as_me:5584: \"$ac_try\"") >&5 ++ { (eval echo "$as_me:5631: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:5466: \$? = $ac_status" >&5 -+ echo "$as_me:5587: \$? = $ac_status" >&5 ++ echo "$as_me:5634: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else -@@ -5473,7 +5594,7 @@ +@@ -5473,7 +5641,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:5476: result: `eval echo '${'$as_ac_var'}'`" >&5 -+echo "$as_me:5597: result: `eval echo '${'$as_ac_var'}'`" >&5 ++echo "$as_me:5644: result: `eval echo '${'$as_ac_var'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6 if test `eval echo '${'$as_ac_var'}'` = yes; then cat >>confdefs.h <&5 -+echo "$as_me:5613: checking for $ac_func" >&5 ++echo "$as_me:5660: checking for $ac_func" >&5 echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6 if eval "test \"\${$as_ac_var+set}\" = set"; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 5498 "configure" -+#line 5619 "configure" ++#line 5666 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. */ -@@ -5526,16 +5647,16 @@ +@@ -5526,16 +5694,16 @@ } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:5529: \"$ac_link\"") >&5 -+if { (eval echo "$as_me:5650: \"$ac_link\"") >&5 ++if { (eval echo "$as_me:5697: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:5532: \$? = $ac_status" >&5 -+ echo "$as_me:5653: \$? = $ac_status" >&5 ++ echo "$as_me:5700: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:5535: \"$ac_try\"") >&5 -+ { (eval echo "$as_me:5656: \"$ac_try\"") >&5 ++ { (eval echo "$as_me:5703: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:5538: \$? = $ac_status" >&5 -+ echo "$as_me:5659: \$? = $ac_status" >&5 ++ echo "$as_me:5706: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else -@@ -5545,7 +5666,7 @@ +@@ -5545,7 +5713,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:5548: result: `eval echo '${'$as_ac_var'}'`" >&5 -+echo "$as_me:5669: result: `eval echo '${'$as_ac_var'}'`" >&5 ++echo "$as_me:5716: result: `eval echo '${'$as_ac_var'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6 if test `eval echo '${'$as_ac_var'}'` = yes; then cat >>confdefs.h <&5 -+echo "$as_me:5685: checking for $ac_func" >&5 ++echo "$as_me:5732: checking for $ac_func" >&5 echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6 if eval "test \"\${$as_ac_var+set}\" = set"; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 5570 "configure" -+#line 5691 "configure" ++#line 5738 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. */ -@@ -5598,16 +5719,16 @@ +@@ -5598,16 +5766,16 @@ } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:5601: \"$ac_link\"") >&5 -+if { (eval echo "$as_me:5722: \"$ac_link\"") >&5 ++if { (eval echo "$as_me:5769: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:5604: \$? = $ac_status" >&5 -+ echo "$as_me:5725: \$? = $ac_status" >&5 ++ echo "$as_me:5772: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:5607: \"$ac_try\"") >&5 -+ { (eval echo "$as_me:5728: \"$ac_try\"") >&5 ++ { (eval echo "$as_me:5775: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:5610: \$? = $ac_status" >&5 -+ echo "$as_me:5731: \$? = $ac_status" >&5 ++ echo "$as_me:5778: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else -@@ -5617,7 +5738,7 @@ +@@ -5617,7 +5785,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:5620: result: `eval echo '${'$as_ac_var'}'`" >&5 -+echo "$as_me:5741: result: `eval echo '${'$as_ac_var'}'`" >&5 ++echo "$as_me:5788: result: `eval echo '${'$as_ac_var'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6 if test `eval echo '${'$as_ac_var'}'` = yes; then cat >>confdefs.h <&5 -+echo "$as_me:5757: checking for $ac_func" >&5 ++echo "$as_me:5804: checking for $ac_func" >&5 echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6 if eval "test \"\${$as_ac_var+set}\" = set"; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 5642 "configure" -+#line 5763 "configure" ++#line 5810 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. */ -@@ -5670,16 +5791,16 @@ +@@ -5670,16 +5838,16 @@ } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:5673: \"$ac_link\"") >&5 -+if { (eval echo "$as_me:5794: \"$ac_link\"") >&5 ++if { (eval echo "$as_me:5841: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:5676: \$? = $ac_status" >&5 -+ echo "$as_me:5797: \$? = $ac_status" >&5 ++ echo "$as_me:5844: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:5679: \"$ac_try\"") >&5 -+ { (eval echo "$as_me:5800: \"$ac_try\"") >&5 ++ { (eval echo "$as_me:5847: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:5682: \$? = $ac_status" >&5 -+ echo "$as_me:5803: \$? = $ac_status" >&5 ++ echo "$as_me:5850: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else -@@ -5689,7 +5810,7 @@ +@@ -5689,7 +5857,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:5692: result: `eval echo '${'$as_ac_var'}'`" >&5 -+echo "$as_me:5813: result: `eval echo '${'$as_ac_var'}'`" >&5 ++echo "$as_me:5860: result: `eval echo '${'$as_ac_var'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6 if test `eval echo '${'$as_ac_var'}'` = yes; then cat >>confdefs.h <&5 -+echo "$as_me:5829: checking for $ac_func" >&5 ++echo "$as_me:5876: checking for $ac_func" >&5 echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6 if eval "test \"\${$as_ac_var+set}\" = set"; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 5714 "configure" -+#line 5835 "configure" ++#line 5882 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. */ -@@ -5742,16 +5863,16 @@ +@@ -5742,16 +5910,16 @@ } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:5745: \"$ac_link\"") >&5 -+if { (eval echo "$as_me:5866: \"$ac_link\"") >&5 ++if { (eval echo "$as_me:5913: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:5748: \$? = $ac_status" >&5 -+ echo "$as_me:5869: \$? = $ac_status" >&5 ++ echo "$as_me:5916: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:5751: \"$ac_try\"") >&5 -+ { (eval echo "$as_me:5872: \"$ac_try\"") >&5 ++ { (eval echo "$as_me:5919: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:5754: \$? = $ac_status" >&5 -+ echo "$as_me:5875: \$? = $ac_status" >&5 ++ echo "$as_me:5922: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else -@@ -5761,7 +5882,7 @@ +@@ -5761,7 +5929,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:5764: result: `eval echo '${'$as_ac_var'}'`" >&5 -+echo "$as_me:5885: result: `eval echo '${'$as_ac_var'}'`" >&5 ++echo "$as_me:5932: result: `eval echo '${'$as_ac_var'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6 if test `eval echo '${'$as_ac_var'}'` = yes; then cat >>confdefs.h <&5 -+echo "$as_me:5901: checking for $ac_func" >&5 ++echo "$as_me:5948: checking for $ac_func" >&5 echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6 if eval "test \"\${$as_ac_var+set}\" = set"; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 5786 "configure" -+#line 5907 "configure" ++#line 5954 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. */ -@@ -5814,16 +5935,16 @@ +@@ -5814,16 +5982,16 @@ } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:5817: \"$ac_link\"") >&5 -+if { (eval echo "$as_me:5938: \"$ac_link\"") >&5 ++if { (eval echo "$as_me:5985: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:5820: \$? = $ac_status" >&5 -+ echo "$as_me:5941: \$? = $ac_status" >&5 ++ echo "$as_me:5988: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:5823: \"$ac_try\"") >&5 -+ { (eval echo "$as_me:5944: \"$ac_try\"") >&5 ++ { (eval echo "$as_me:5991: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:5826: \$? = $ac_status" >&5 -+ echo "$as_me:5947: \$? = $ac_status" >&5 ++ echo "$as_me:5994: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else -@@ -5833,7 +5954,7 @@ +@@ -5833,7 +6001,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:5836: result: `eval echo '${'$as_ac_var'}'`" >&5 -+echo "$as_me:5957: result: `eval echo '${'$as_ac_var'}'`" >&5 ++echo "$as_me:6004: result: `eval echo '${'$as_ac_var'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6 if test `eval echo '${'$as_ac_var'}'` = yes; then cat >>confdefs.h <&5 -+echo "$as_me:5973: checking for $ac_func" >&5 ++echo "$as_me:6020: checking for $ac_func" >&5 echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6 if eval "test \"\${$as_ac_var+set}\" = set"; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 5858 "configure" -+#line 5979 "configure" ++#line 6026 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. */ -@@ -5886,16 +6007,16 @@ +@@ -5886,16 +6054,16 @@ } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:5889: \"$ac_link\"") >&5 -+if { (eval echo "$as_me:6010: \"$ac_link\"") >&5 ++if { (eval echo "$as_me:6057: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:5892: \$? = $ac_status" >&5 -+ echo "$as_me:6013: \$? = $ac_status" >&5 ++ echo "$as_me:6060: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:5895: \"$ac_try\"") >&5 -+ { (eval echo "$as_me:6016: \"$ac_try\"") >&5 ++ { (eval echo "$as_me:6063: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:5898: \$? = $ac_status" >&5 -+ echo "$as_me:6019: \$? = $ac_status" >&5 ++ echo "$as_me:6066: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else -@@ -5905,7 +6026,7 @@ +@@ -5905,7 +6073,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:5908: result: `eval echo '${'$as_ac_var'}'`" >&5 -+echo "$as_me:6029: result: `eval echo '${'$as_ac_var'}'`" >&5 ++echo "$as_me:6076: result: `eval echo '${'$as_ac_var'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6 if test `eval echo '${'$as_ac_var'}'` = yes; then cat >>confdefs.h <&5 -+echo "$as_me:6045: checking for $ac_func" >&5 ++echo "$as_me:6092: checking for $ac_func" >&5 echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6 if eval "test \"\${$as_ac_var+set}\" = set"; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 5930 "configure" -+#line 6051 "configure" ++#line 6098 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. */ -@@ -5958,16 +6079,16 @@ +@@ -5958,16 +6126,16 @@ } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:5961: \"$ac_link\"") >&5 -+if { (eval echo "$as_me:6082: \"$ac_link\"") >&5 ++if { (eval echo "$as_me:6129: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:5964: \$? = $ac_status" >&5 -+ echo "$as_me:6085: \$? = $ac_status" >&5 ++ echo "$as_me:6132: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:5967: \"$ac_try\"") >&5 -+ { (eval echo "$as_me:6088: \"$ac_try\"") >&5 ++ { (eval echo "$as_me:6135: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:5970: \$? = $ac_status" >&5 -+ echo "$as_me:6091: \$? = $ac_status" >&5 ++ echo "$as_me:6138: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else -@@ -5977,7 +6098,7 @@ +@@ -5977,7 +6145,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:5980: result: `eval echo '${'$as_ac_var'}'`" >&5 -+echo "$as_me:6101: result: `eval echo '${'$as_ac_var'}'`" >&5 ++echo "$as_me:6148: result: `eval echo '${'$as_ac_var'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6 if test `eval echo '${'$as_ac_var'}'` = yes; then cat >>confdefs.h <&5 -+echo "$as_me:6114: checking for struct timeval" >&5 ++echo "$as_me:6161: checking for struct timeval" >&5 echo $ECHO_N "checking for struct timeval... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF -#line 5996 "configure" -+#line 6117 "configure" ++#line 6164 "configure" #include "confdefs.h" #include int -@@ -6005,19 +6126,19 @@ +@@ -6005,19 +6173,19 @@ } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:6008: \"$ac_compile\"") >&5 -+if { (eval echo "$as_me:6129: \"$ac_compile\"") >&5 ++if { (eval echo "$as_me:6176: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:6011: \$? = $ac_status" >&5 -+ echo "$as_me:6132: \$? = $ac_status" >&5 ++ echo "$as_me:6179: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:6014: \"$ac_try\"") >&5 -+ { (eval echo "$as_me:6135: \"$ac_try\"") >&5 ++ { (eval echo "$as_me:6182: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:6017: \$? = $ac_status" >&5 -+ echo "$as_me:6138: \$? = $ac_status" >&5 ++ echo "$as_me:6185: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:6020: result: yes" >&5 -+ echo "$as_me:6141: result: yes" >&5 ++ echo "$as_me:6188: result: yes" >&5 echo "${ECHO_T}yes" >&6 cat >>confdefs.h <<\EOF #define BX_HAVE_STRUCT_TIMEVAL 1 -@@ -6026,15 +6147,15 @@ +@@ -6026,15 +6194,15 @@ else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 -echo "$as_me:6029: result: no" >&5 -+echo "$as_me:6150: result: no" >&5 ++echo "$as_me:6197: result: no" >&5 echo "${ECHO_T}no" >&6 fi rm -f conftest.$ac_objext conftest.$ac_ext -echo "$as_me:6034: checking if compiler allows empty structs" >&5 -+echo "$as_me:6155: checking if compiler allows empty structs" >&5 ++echo "$as_me:6202: checking if compiler allows empty structs" >&5 echo $ECHO_N "checking if compiler allows empty structs... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF -#line 6037 "configure" -+#line 6158 "configure" ++#line 6205 "configure" #include "confdefs.h" int -@@ -6046,18 +6167,18 @@ +@@ -6046,18 +6214,18 @@ } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:6049: \"$ac_compile\"") >&5 -+if { (eval echo "$as_me:6170: \"$ac_compile\"") >&5 ++if { (eval echo "$as_me:6217: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:6052: \$? = $ac_status" >&5 -+ echo "$as_me:6173: \$? = $ac_status" >&5 ++ echo "$as_me:6220: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:6055: \"$ac_try\"") >&5 -+ { (eval echo "$as_me:6176: \"$ac_try\"") >&5 ++ { (eval echo "$as_me:6223: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:6058: \$? = $ac_status" >&5 -+ echo "$as_me:6179: \$? = $ac_status" >&5 ++ echo "$as_me:6226: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:6060: result: yes" >&5 -+ echo "$as_me:6181: result: yes" >&5 ++ echo "$as_me:6228: result: yes" >&5 echo "${ECHO_T}yes" >&6 else echo "$as_me: failed program was:" >&5 -@@ -6067,16 +6188,16 @@ +@@ -6067,16 +6235,16 @@ #define BX_NO_EMPTY_STRUCTS 1 EOF - echo "$as_me:6070: result: no" >&5 -+ echo "$as_me:6191: result: no" >&5 ++ echo "$as_me:6238: result: no" >&5 echo "${ECHO_T}no" >&6 fi rm -f conftest.$ac_objext conftest.$ac_ext -echo "$as_me:6076: checking if compiler allows __attribute__" >&5 -+echo "$as_me:6197: checking if compiler allows __attribute__" >&5 ++echo "$as_me:6244: checking if compiler allows __attribute__" >&5 echo $ECHO_N "checking if compiler allows __attribute__... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF -#line 6079 "configure" -+#line 6200 "configure" ++#line 6247 "configure" #include "confdefs.h" int -@@ -6088,24 +6209,24 @@ +@@ -6088,24 +6256,24 @@ } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:6091: \"$ac_compile\"") >&5 -+if { (eval echo "$as_me:6212: \"$ac_compile\"") >&5 ++if { (eval echo "$as_me:6259: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:6094: \$? = $ac_status" >&5 -+ echo "$as_me:6215: \$? = $ac_status" >&5 ++ echo "$as_me:6262: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:6097: \"$ac_try\"") >&5 -+ { (eval echo "$as_me:6218: \"$ac_try\"") >&5 ++ { (eval echo "$as_me:6265: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:6100: \$? = $ac_status" >&5 -+ echo "$as_me:6221: \$? = $ac_status" >&5 ++ echo "$as_me:6268: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:6102: result: yes" >&5 -+ echo "$as_me:6223: result: yes" >&5 ++ echo "$as_me:6270: result: yes" >&5 echo "${ECHO_T}yes" >&6 else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 - echo "$as_me:6108: result: no" >&5 -+ echo "$as_me:6229: result: no" >&5 ++ echo "$as_me:6276: result: no" >&5 echo "${ECHO_T}no" >&6 cat >>confdefs.h <<\EOF #define BX_NO_ATTRIBUTES 1 -@@ -6120,11 +6241,11 @@ +@@ -6120,11 +6288,11 @@ ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -echo "$as_me:6123: checking for hash_map.h" >&5 -+echo "$as_me:6244: checking for hash_map.h" >&5 ++echo "$as_me:6291: checking for hash_map.h" >&5 echo $ECHO_N "checking for hash_map.h... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF -#line 6127 "configure" -+#line 6248 "configure" ++#line 6295 "configure" #include "confdefs.h" #include int -@@ -6136,19 +6257,19 @@ +@@ -6136,19 +6304,19 @@ } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:6139: \"$ac_compile\"") >&5 -+if { (eval echo "$as_me:6260: \"$ac_compile\"") >&5 ++if { (eval echo "$as_me:6307: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:6142: \$? = $ac_status" >&5 -+ echo "$as_me:6263: \$? = $ac_status" >&5 ++ echo "$as_me:6310: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:6145: \"$ac_try\"") >&5 -+ { (eval echo "$as_me:6266: \"$ac_try\"") >&5 ++ { (eval echo "$as_me:6313: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:6148: \$? = $ac_status" >&5 -+ echo "$as_me:6269: \$? = $ac_status" >&5 ++ echo "$as_me:6316: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:6151: result: yes" >&5 -+ echo "$as_me:6272: result: yes" >&5 ++ echo "$as_me:6319: result: yes" >&5 echo "${ECHO_T}yes" >&6 cat >>confdefs.h <<\EOF #define BX_HAVE_HASH_MAP 1 -@@ -6157,7 +6278,7 @@ +@@ -6157,7 +6325,7 @@ else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 -echo "$as_me:6160: result: no" >&5 -+echo "$as_me:6281: result: no" >&5 ++echo "$as_me:6328: result: no" >&5 echo "${ECHO_T}no" >&6 fi rm -f conftest.$ac_objext conftest.$ac_ext -@@ -6167,20 +6288,20 @@ +@@ -6167,20 +6335,20 @@ ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu -echo "$as_me:6170: checking for control panel" >&5 -+echo "$as_me:6291: checking for control panel" >&5 ++echo "$as_me:6338: checking for control panel" >&5 echo $ECHO_N "checking for control panel... $ECHO_C" >&6 # Check whether --enable-control-panel or --disable-control-panel was given. if test "${enable_control_panel+set}" = set; then enableval="$enable_control_panel" if test "$enableval" = yes; then - echo "$as_me:6176: result: yes" >&5 -+ echo "$as_me:6297: result: yes" >&5 ++ echo "$as_me:6344: result: yes" >&5 echo "${ECHO_T}yes" >&6 cat >>confdefs.h <<\EOF #define BX_USE_CONTROL_PANEL 1 @@ -6955,32 +7065,32 @@ diff -urN clean/configure chkplat/configure else - echo "$as_me:6183: result: no" >&5 -+ echo "$as_me:6304: result: no" >&5 ++ echo "$as_me:6351: result: no" >&5 echo "${ECHO_T}no" >&6 cat >>confdefs.h <<\EOF #define BX_USE_CONTROL_PANEL 0 -@@ -6189,7 +6310,7 @@ +@@ -6189,7 +6357,7 @@ fi else - echo "$as_me:6192: result: yes" >&5 -+ echo "$as_me:6313: result: yes" >&5 ++ echo "$as_me:6360: result: yes" >&5 echo "${ECHO_T}yes" >&6 cat >>confdefs.h <<\EOF #define BX_USE_CONTROL_PANEL 1 -@@ -6197,20 +6318,20 @@ +@@ -6197,20 +6365,20 @@ fi; -echo "$as_me:6200: checking for new PIT model" >&5 -+echo "$as_me:6321: checking for new PIT model" >&5 ++echo "$as_me:6368: checking for new PIT model" >&5 echo $ECHO_N "checking for new PIT model... $ECHO_C" >&6 # Check whether --enable-new-pit or --disable-new-pit was given. if test "${enable_new_pit+set}" = set; then enableval="$enable_new_pit" if test "$enableval" = yes; then - echo "$as_me:6206: result: yes" >&5 -+ echo "$as_me:6327: result: yes" >&5 ++ echo "$as_me:6374: result: yes" >&5 echo "${ECHO_T}yes" >&6 cat >>confdefs.h <<\EOF #define BX_USE_NEW_PIT 1 @@ -6988,66 +7098,66 @@ diff -urN clean/configure chkplat/configure else - echo "$as_me:6213: result: no" >&5 -+ echo "$as_me:6334: result: no" >&5 ++ echo "$as_me:6381: result: no" >&5 echo "${ECHO_T}no" >&6 cat >>confdefs.h <<\EOF #define BX_USE_NEW_PIT 0 -@@ -6219,7 +6340,7 @@ +@@ -6219,7 +6387,7 @@ fi else - echo "$as_me:6222: result: yes" >&5 -+ echo "$as_me:6343: result: yes" >&5 ++ echo "$as_me:6390: result: yes" >&5 echo "${ECHO_T}yes" >&6 cat >>confdefs.h <<\EOF #define BX_USE_NEW_PIT 1 -@@ -6227,13 +6348,13 @@ +@@ -6227,13 +6395,13 @@ fi; -echo "$as_me:6230: checking for slowdown timer" >&5 -+echo "$as_me:6351: checking for slowdown timer" >&5 ++echo "$as_me:6398: checking for slowdown timer" >&5 echo $ECHO_N "checking for slowdown timer... $ECHO_C" >&6 # Check whether --enable-slowdown or --disable-slowdown was given. if test "${enable_slowdown+set}" = set; then enableval="$enable_slowdown" if test "$enableval" = yes; then - echo "$as_me:6236: result: yes" >&5 -+ echo "$as_me:6357: result: yes" >&5 ++ echo "$as_me:6404: result: yes" >&5 echo "${ECHO_T}yes" >&6 cat >>confdefs.h <<\EOF #define BX_USE_SLOWDOWN_TIMER 1 -@@ -6241,7 +6362,7 @@ +@@ -6241,7 +6409,7 @@ SLOWDOWN_OBJS='$(SLOWDOWN_OBJS)' else - echo "$as_me:6244: result: no" >&5 -+ echo "$as_me:6365: result: no" >&5 ++ echo "$as_me:6412: result: no" >&5 echo "${ECHO_T}no" >&6 cat >>confdefs.h <<\EOF #define BX_USE_SLOWDOWN_TIMER 0 -@@ -6251,7 +6372,7 @@ +@@ -6251,7 +6419,7 @@ fi else - echo "$as_me:6254: result: no" >&5 -+ echo "$as_me:6375: result: no" >&5 ++ echo "$as_me:6422: result: no" >&5 echo "${ECHO_T}no" >&6 cat >>confdefs.h <<\EOF #define BX_USE_SLOWDOWN_TIMER 0 -@@ -6261,20 +6382,20 @@ +@@ -6261,20 +6429,20 @@ fi; -echo "$as_me:6264: checking for idle hack" >&5 -+echo "$as_me:6385: checking for idle hack" >&5 ++echo "$as_me:6432: checking for idle hack" >&5 echo $ECHO_N "checking for idle hack... $ECHO_C" >&6 # Check whether --enable-idle-hack or --disable-idle-hack was given. if test "${enable_idle_hack+set}" = set; then enableval="$enable_idle_hack" if test "$enableval" = yes; then - echo "$as_me:6270: result: yes" >&5 -+ echo "$as_me:6391: result: yes" >&5 ++ echo "$as_me:6438: result: yes" >&5 echo "${ECHO_T}yes" >&6 cat >>confdefs.h <<\EOF #define BX_USE_IDLE_HACK 1 @@ -7055,25 +7165,25 @@ diff -urN clean/configure chkplat/configure else - echo "$as_me:6277: result: no" >&5 -+ echo "$as_me:6398: result: no" >&5 ++ echo "$as_me:6445: result: no" >&5 echo "${ECHO_T}no" >&6 cat >>confdefs.h <<\EOF #define BX_USE_IDLE_HACK 0 -@@ -6283,7 +6404,7 @@ +@@ -6283,7 +6451,7 @@ fi else - echo "$as_me:6286: result: no" >&5 -+ echo "$as_me:6407: result: no" >&5 ++ echo "$as_me:6454: result: no" >&5 echo "${ECHO_T}no" >&6 cat >>confdefs.h <<\EOF #define BX_USE_IDLE_HACK 0 -@@ -6291,14 +6412,14 @@ +@@ -6291,14 +6459,14 @@ fi; -echo "$as_me:6294: checking for number of processors" >&5 -+echo "$as_me:6415: checking for number of processors" >&5 ++echo "$as_me:6462: checking for number of processors" >&5 echo $ECHO_N "checking for number of processors... $ECHO_C" >&6 # Check whether --enable-processors or --disable-processors was given. if test "${enable_processors+set}" = set; then @@ -7081,140 +7191,140 @@ diff -urN clean/configure chkplat/configure case "$enableval" in 1) - echo "$as_me:6301: result: 1" >&5 -+ echo "$as_me:6422: result: 1" >&5 ++ echo "$as_me:6469: result: 1" >&5 echo "${ECHO_T}1" >&6 cat >>confdefs.h <<\EOF #define BX_SMP_PROCESSORS 1 -@@ -6314,7 +6435,7 @@ +@@ -6314,7 +6482,7 @@ ;; 2) - echo "$as_me:6317: result: 2" >&5 -+ echo "$as_me:6438: result: 2" >&5 ++ echo "$as_me:6485: result: 2" >&5 echo "${ECHO_T}2" >&6 cat >>confdefs.h <<\EOF #define BX_SMP_PROCESSORS 2 -@@ -6334,7 +6455,7 @@ +@@ -6334,7 +6502,7 @@ ;; 4) - echo "$as_me:6337: result: 4" >&5 -+ echo "$as_me:6458: result: 4" >&5 ++ echo "$as_me:6505: result: 4" >&5 echo "${ECHO_T}4" >&6 cat >>confdefs.h <<\EOF #define BX_SMP_PROCESSORS 4 -@@ -6356,7 +6477,7 @@ +@@ -6356,7 +6524,7 @@ *) echo " " echo "WARNING: processors != 1,2,4 can work, but you need to modify rombios.c manually" - echo "$as_me:6359: result: $enable_val" >&5 -+ echo "$as_me:6480: result: $enable_val" >&5 ++ echo "$as_me:6527: result: $enable_val" >&5 echo "${ECHO_T}$enable_val" >&6 cat >>confdefs.h <<\EOF #define BX_SMP_PROCESSORS $enable_val -@@ -6380,7 +6501,7 @@ +@@ -6380,7 +6548,7 @@ else - echo "$as_me:6383: result: 1" >&5 -+ echo "$as_me:6504: result: 1" >&5 ++ echo "$as_me:6551: result: 1" >&5 echo "${ECHO_T}1" >&6 cat >>confdefs.h <<\EOF #define BX_SMP_PROCESSORS 1 -@@ -6398,10 +6519,10 @@ +@@ -6398,10 +6566,10 @@ fi; -echo "$as_me:6401: checking if compiler allows blank labels" >&5 -+echo "$as_me:6522: checking if compiler allows blank labels" >&5 ++echo "$as_me:6569: checking if compiler allows blank labels" >&5 echo $ECHO_N "checking if compiler allows blank labels... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF -#line 6404 "configure" -+#line 6525 "configure" ++#line 6572 "configure" #include "confdefs.h" int -@@ -6413,24 +6534,24 @@ +@@ -6413,24 +6581,24 @@ } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:6416: \"$ac_compile\"") >&5 -+if { (eval echo "$as_me:6537: \"$ac_compile\"") >&5 ++if { (eval echo "$as_me:6584: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:6419: \$? = $ac_status" >&5 -+ echo "$as_me:6540: \$? = $ac_status" >&5 ++ echo "$as_me:6587: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:6422: \"$ac_try\"") >&5 -+ { (eval echo "$as_me:6543: \"$ac_try\"") >&5 ++ { (eval echo "$as_me:6590: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:6425: \$? = $ac_status" >&5 -+ echo "$as_me:6546: \$? = $ac_status" >&5 ++ echo "$as_me:6593: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:6427: result: yes" >&5 -+ echo "$as_me:6548: result: yes" >&5 ++ echo "$as_me:6595: result: yes" >&5 echo "${ECHO_T}yes" >&6 else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 - echo "$as_me:6433: result: no" >&5 -+ echo "$as_me:6554: result: no" >&5 ++ echo "$as_me:6601: result: no" >&5 echo "${ECHO_T}no" >&6 cat >>confdefs.h <<\EOF #define BX_NO_BLANK_LABELS 1 -@@ -6439,10 +6560,10 @@ +@@ -6439,10 +6607,10 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext -echo "$as_me:6442: checking if compiler allows LL for 64-bit constants" >&5 -+echo "$as_me:6563: checking if compiler allows LL for 64-bit constants" >&5 ++echo "$as_me:6610: checking if compiler allows LL for 64-bit constants" >&5 echo $ECHO_N "checking if compiler allows LL for 64-bit constants... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF -#line 6445 "configure" -+#line 6566 "configure" ++#line 6613 "configure" #include "confdefs.h" int -@@ -6454,24 +6575,24 @@ +@@ -6454,24 +6622,24 @@ } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:6457: \"$ac_compile\"") >&5 -+if { (eval echo "$as_me:6578: \"$ac_compile\"") >&5 ++if { (eval echo "$as_me:6625: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:6460: \$? = $ac_status" >&5 -+ echo "$as_me:6581: \$? = $ac_status" >&5 ++ echo "$as_me:6628: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:6463: \"$ac_try\"") >&5 -+ { (eval echo "$as_me:6584: \"$ac_try\"") >&5 ++ { (eval echo "$as_me:6631: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:6466: \$? = $ac_status" >&5 -+ echo "$as_me:6587: \$? = $ac_status" >&5 ++ echo "$as_me:6634: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:6468: result: yes" >&5 -+ echo "$as_me:6589: result: yes" >&5 ++ echo "$as_me:6636: result: yes" >&5 echo "${ECHO_T}yes" >&6 else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 - echo "$as_me:6474: result: no" >&5 -+ echo "$as_me:6595: result: no" >&5 ++ echo "$as_me:6642: result: no" >&5 echo "${ECHO_T}no" >&6 cat >>confdefs.h <<\EOF #define BX_64BIT_CONSTANTS_USE_LL 0 -@@ -6480,14 +6601,14 @@ +@@ -6480,14 +6648,14 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext -echo "$as_me:6483: checking for cpu level" >&5 -+echo "$as_me:6604: checking for cpu level" >&5 ++echo "$as_me:6651: checking for cpu level" >&5 echo $ECHO_N "checking for cpu level... $ECHO_C" >&6 # Check whether --enable-cpu-level or --disable-cpu-level was given. if test "${enable_cpu_level+set}" = set; then @@ -7222,145 +7332,145 @@ diff -urN clean/configure chkplat/configure case "$enableval" in 3) - echo "$as_me:6490: result: 3" >&5 -+ echo "$as_me:6611: result: 3" >&5 ++ echo "$as_me:6658: result: 3" >&5 echo "${ECHO_T}3" >&6 cat >>confdefs.h <<\EOF #define BX_CPU_LEVEL 3 -@@ -6499,7 +6620,7 @@ +@@ -6499,7 +6667,7 @@ ;; 4) - echo "$as_me:6502: result: 4" >&5 -+ echo "$as_me:6623: result: 4" >&5 ++ echo "$as_me:6670: result: 4" >&5 echo "${ECHO_T}4" >&6 cat >>confdefs.h <<\EOF #define BX_CPU_LEVEL 4 -@@ -6511,7 +6632,7 @@ +@@ -6511,7 +6679,7 @@ ;; 5) - echo "$as_me:6514: result: 5" >&5 -+ echo "$as_me:6635: result: 5" >&5 ++ echo "$as_me:6682: result: 5" >&5 echo "${ECHO_T}5" >&6 cat >>confdefs.h <<\EOF #define BX_CPU_LEVEL 5 -@@ -6523,7 +6644,7 @@ +@@ -6523,7 +6691,7 @@ ;; 6) - echo "$as_me:6526: result: 6" >&5 -+ echo "$as_me:6647: result: 6" >&5 ++ echo "$as_me:6694: result: 6" >&5 echo "${ECHO_T}6" >&6 cat >>confdefs.h <<\EOF #define BX_CPU_LEVEL 6 -@@ -6550,7 +6671,7 @@ +@@ -6550,7 +6718,7 @@ # for multiprocessors, cpu level must be 6 if test "$bx_procs" -gt 1; then - echo "$as_me:6553: result: 6" >&5 -+ echo "$as_me:6674: result: 6" >&5 ++ echo "$as_me:6721: result: 6" >&5 echo "${ECHO_T}6" >&6 cat >>confdefs.h <<\EOF #define BX_CPU_LEVEL 6 -@@ -6562,7 +6683,7 @@ +@@ -6562,7 +6730,7 @@ bx_cpu_level=6 else - echo "$as_me:6565: result: 5" >&5 -+ echo "$as_me:6686: result: 5" >&5 ++ echo "$as_me:6733: result: 5" >&5 echo "${ECHO_T}5" >&6 cat >>confdefs.h <<\EOF #define BX_CPU_LEVEL 5 -@@ -6577,13 +6698,13 @@ +@@ -6577,13 +6745,13 @@ fi; -echo "$as_me:6580: checking for dynamic translation support" >&5 -+echo "$as_me:6701: checking for dynamic translation support" >&5 ++echo "$as_me:6748: checking for dynamic translation support" >&5 echo $ECHO_N "checking for dynamic translation support... $ECHO_C" >&6 # Check whether --enable-dynamic or --disable-dynamic was given. if test "${enable_dynamic+set}" = set; then enableval="$enable_dynamic" if test "$enableval" = no; then - echo "$as_me:6586: result: no" >&5 -+ echo "$as_me:6707: result: no" >&5 ++ echo "$as_me:6754: result: no" >&5 echo "${ECHO_T}no" >&6 cat >>confdefs.h <<\EOF #define BX_DYNAMIC_TRANSLATION 0 -@@ -6626,7 +6747,7 @@ +@@ -6626,7 +6794,7 @@ AS_DYNAMIC_INCS='' exit 1 ;; esac - echo "$as_me:6629: result: yes" >&5 -+ echo "$as_me:6750: result: yes" >&5 ++ echo "$as_me:6797: result: yes" >&5 echo "${ECHO_T}yes" >&6 cat >>confdefs.h <<\EOF #define BX_DYNAMIC_TRANSLATION 1 -@@ -6636,7 +6757,7 @@ +@@ -6636,7 +6804,7 @@ fi else - echo "$as_me:6639: result: no" >&5 -+ echo "$as_me:6760: result: no" >&5 ++ echo "$as_me:6807: result: no" >&5 echo "${ECHO_T}no" >&6 cat >>confdefs.h <<\EOF #define BX_DYNAMIC_TRANSLATION 0 -@@ -6648,13 +6769,13 @@ +@@ -6648,13 +6816,13 @@ fi; -echo "$as_me:6651: checking for APIC support" >&5 -+echo "$as_me:6772: checking for APIC support" >&5 ++echo "$as_me:6819: checking for APIC support" >&5 echo $ECHO_N "checking for APIC support... $ECHO_C" >&6 # Check whether --enable-apic or --disable-apic was given. if test "${enable_apic+set}" = set; then enableval="$enable_apic" if test "$enableval" = yes; then - echo "$as_me:6657: result: yes" >&5 -+ echo "$as_me:6778: result: yes" >&5 ++ echo "$as_me:6825: result: yes" >&5 echo "${ECHO_T}yes" >&6 cat >>confdefs.h <<\EOF #define BX_SUPPORT_APIC 1 -@@ -6663,7 +6784,7 @@ +@@ -6663,7 +6831,7 @@ IOAPIC_OBJS='ioapic.o' APIC_OBJS='apic.o' else - echo "$as_me:6666: result: no" >&5 -+ echo "$as_me:6787: result: no" >&5 ++ echo "$as_me:6834: result: no" >&5 echo "${ECHO_T}no" >&6 if test "$bx_procs" -gt 1; then echo "Number of processors = $bx_procs" -@@ -6682,7 +6803,7 @@ +@@ -6682,7 +6850,7 @@ if test "$bx_procs" -gt 1 -o "$bx_cpu_level" -gt 5; then # enable APIC by default, if processors>1 or if cpulevel>5 - echo "$as_me:6685: result: yes" >&5 -+ echo "$as_me:6806: result: yes" >&5 ++ echo "$as_me:6853: result: yes" >&5 echo "${ECHO_T}yes" >&6 cat >>confdefs.h <<\EOF #define BX_SUPPORT_APIC 1 -@@ -6691,7 +6812,7 @@ +@@ -6691,7 +6859,7 @@ IOAPIC_OBJS='ioapic.o' APIC_OBJS='apic.o' else - echo "$as_me:6694: result: no" >&5 -+ echo "$as_me:6815: result: no" >&5 ++ echo "$as_me:6862: result: no" >&5 echo "${ECHO_T}no" >&6 cat >>confdefs.h <<\EOF #define BX_SUPPORT_APIC 0 -@@ -6703,20 +6824,20 @@ +@@ -6703,20 +6871,20 @@ fi; -echo "$as_me:6706: checking for split hard disk image support" >&5 -+echo "$as_me:6827: checking for split hard disk image support" >&5 ++echo "$as_me:6874: checking for split hard disk image support" >&5 echo $ECHO_N "checking for split hard disk image support... $ECHO_C" >&6 # Check whether --enable-split-hd or --disable-split-hd was given. if test "${enable_split_hd+set}" = set; then enableval="$enable_split_hd" if test "$enableval" = yes; then - echo "$as_me:6712: result: yes" >&5 -+ echo "$as_me:6833: result: yes" >&5 ++ echo "$as_me:6880: result: yes" >&5 echo "${ECHO_T}yes" >&6 cat >>confdefs.h <<\EOF #define BX_SPLIT_HD_SUPPORT 1 @@ -7368,32 +7478,32 @@ diff -urN clean/configure chkplat/configure else - echo "$as_me:6719: result: no" >&5 -+ echo "$as_me:6840: result: no" >&5 ++ echo "$as_me:6887: result: no" >&5 echo "${ECHO_T}no" >&6 cat >>confdefs.h <<\EOF #define BX_SPLIT_HD_SUPPORT 0 -@@ -6725,7 +6846,7 @@ +@@ -6725,7 +6893,7 @@ fi else - echo "$as_me:6728: result: yes" >&5 -+ echo "$as_me:6849: result: yes" >&5 ++ echo "$as_me:6896: result: yes" >&5 echo "${ECHO_T}yes" >&6 cat >>confdefs.h <<\EOF #define BX_SPLIT_HD_SUPPORT 1 -@@ -6733,36 +6854,36 @@ +@@ -6733,36 +6901,36 @@ fi; -echo "$as_me:6736: checking for NE2000 support" >&5 -+echo "$as_me:6857: checking for NE2000 support" >&5 ++echo "$as_me:6904: checking for NE2000 support" >&5 echo $ECHO_N "checking for NE2000 support... $ECHO_C" >&6 # Check whether --enable-ne2000 or --disable-ne2000 was given. if test "${enable_ne2000+set}" = set; then enableval="$enable_ne2000" if test "$enableval" = yes; then - echo "$as_me:6742: result: yes" >&5 -+ echo "$as_me:6863: result: yes" >&5 ++ echo "$as_me:6910: result: yes" >&5 echo "${ECHO_T}yes" >&6 cat >>confdefs.h <<\EOF #define BX_NE2K_SUPPORT 1 @@ -7401,138 +7511,138 @@ diff -urN clean/configure chkplat/configure NE2K_OBJS='ne2k.o eth.o eth_null.o' - echo "$as_me:6749: checking for net/bpf.h" >&5 -+ echo "$as_me:6870: checking for net/bpf.h" >&5 ++ echo "$as_me:6917: checking for net/bpf.h" >&5 echo $ECHO_N "checking for net/bpf.h... $ECHO_C" >&6 if test "${ac_cv_header_net_bpf_h+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 6755 "configure" -+#line 6876 "configure" ++#line 6923 "configure" #include "confdefs.h" #include _ACEOF -if { (eval echo "$as_me:6759: \"$ac_cpp conftest.$ac_ext\"") >&5 -+if { (eval echo "$as_me:6880: \"$ac_cpp conftest.$ac_ext\"") >&5 ++if { (eval echo "$as_me:6927: \"$ac_cpp conftest.$ac_ext\"") >&5 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 ac_status=$? egrep -v '^ *\+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 - echo "$as_me:6765: \$? = $ac_status" >&5 -+ echo "$as_me:6886: \$? = $ac_status" >&5 ++ echo "$as_me:6933: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag -@@ -6781,29 +6902,29 @@ +@@ -6781,29 +6949,29 @@ fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:6784: result: $ac_cv_header_net_bpf_h" >&5 -+echo "$as_me:6905: result: $ac_cv_header_net_bpf_h" >&5 ++echo "$as_me:6952: result: $ac_cv_header_net_bpf_h" >&5 echo "${ECHO_T}$ac_cv_header_net_bpf_h" >&6 if test $ac_cv_header_net_bpf_h = yes; then NE2K_OBJS="$NE2K_OBJS eth_fbsd.o" fi - echo "$as_me:6790: checking for netpacket/packet.h" >&5 -+ echo "$as_me:6911: checking for netpacket/packet.h" >&5 ++ echo "$as_me:6958: checking for netpacket/packet.h" >&5 echo $ECHO_N "checking for netpacket/packet.h... $ECHO_C" >&6 if test "${ac_cv_header_netpacket_packet_h+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 6796 "configure" -+#line 6917 "configure" ++#line 6964 "configure" #include "confdefs.h" #include _ACEOF -if { (eval echo "$as_me:6800: \"$ac_cpp conftest.$ac_ext\"") >&5 -+if { (eval echo "$as_me:6921: \"$ac_cpp conftest.$ac_ext\"") >&5 ++if { (eval echo "$as_me:6968: \"$ac_cpp conftest.$ac_ext\"") >&5 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 ac_status=$? egrep -v '^ *\+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 - echo "$as_me:6806: \$? = $ac_status" >&5 -+ echo "$as_me:6927: \$? = $ac_status" >&5 ++ echo "$as_me:6974: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag -@@ -6822,7 +6943,7 @@ +@@ -6822,7 +6990,7 @@ fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:6825: result: $ac_cv_header_netpacket_packet_h" >&5 -+echo "$as_me:6946: result: $ac_cv_header_netpacket_packet_h" >&5 ++echo "$as_me:6993: result: $ac_cv_header_netpacket_packet_h" >&5 echo "${ECHO_T}$ac_cv_header_netpacket_packet_h" >&6 if test $ac_cv_header_netpacket_packet_h = yes; then NE2K_OBJS="$NE2K_OBJS eth_linux.o" -@@ -6833,7 +6954,7 @@ +@@ -6833,7 +7001,7 @@ fi networking=yes else - echo "$as_me:6836: result: no" >&5 -+ echo "$as_me:6957: result: no" >&5 ++ echo "$as_me:7004: result: no" >&5 echo "${ECHO_T}no" >&6 cat >>confdefs.h <<\EOF #define BX_NE2K_SUPPORT 0 -@@ -6844,7 +6965,7 @@ +@@ -6844,7 +7012,7 @@ fi else - echo "$as_me:6847: result: no" >&5 -+ echo "$as_me:6968: result: no" >&5 ++ echo "$as_me:7015: result: no" >&5 echo "${ECHO_T}no" >&6 cat >>confdefs.h <<\EOF #define BX_NE2K_SUPPORT 0 -@@ -6855,13 +6976,13 @@ +@@ -6855,13 +7023,13 @@ fi; -echo "$as_me:6858: checking for i440FX PCI support" >&5 -+echo "$as_me:6979: checking for i440FX PCI support" >&5 ++echo "$as_me:7026: checking for i440FX PCI support" >&5 echo $ECHO_N "checking for i440FX PCI support... $ECHO_C" >&6 # Check whether --enable-pci or --disable-pci was given. if test "${enable_pci+set}" = set; then enableval="$enable_pci" if test "$enableval" = yes; then - echo "$as_me:6864: result: yes" >&5 -+ echo "$as_me:6985: result: yes" >&5 ++ echo "$as_me:7032: result: yes" >&5 echo "${ECHO_T}yes" >&6 cat >>confdefs.h <<\EOF #define BX_PCI_SUPPORT 1 -@@ -6869,7 +6990,7 @@ +@@ -6869,7 +7037,7 @@ PCI_OBJ='pci.o' else - echo "$as_me:6872: result: no" >&5 -+ echo "$as_me:6993: result: no" >&5 ++ echo "$as_me:7040: result: no" >&5 echo "${ECHO_T}no" >&6 cat >>confdefs.h <<\EOF #define BX_PCI_SUPPORT 0 -@@ -6879,7 +7000,7 @@ +@@ -6879,7 +7047,7 @@ fi else - echo "$as_me:6882: result: no" >&5 -+ echo "$as_me:7003: result: no" >&5 ++ echo "$as_me:7050: result: no" >&5 echo "${ECHO_T}no" >&6 cat >>confdefs.h <<\EOF #define BX_PCI_SUPPORT 0 -@@ -6889,20 +7010,20 @@ +@@ -6889,20 +7057,20 @@ fi; -echo "$as_me:6892: checking for port e9 hack" >&5 -+echo "$as_me:7013: checking for port e9 hack" >&5 ++echo "$as_me:7060: checking for port e9 hack" >&5 echo $ECHO_N "checking for port e9 hack... $ECHO_C" >&6 # Check whether --enable-port-e9-hack or --disable-port-e9-hack was given. if test "${enable_port_e9_hack+set}" = set; then enableval="$enable_port_e9_hack" if test "$enableval" = yes; then - echo "$as_me:6898: result: yes" >&5 -+ echo "$as_me:7019: result: yes" >&5 ++ echo "$as_me:7066: result: yes" >&5 echo "${ECHO_T}yes" >&6 cat >>confdefs.h <<\EOF #define BX_PORT_E9_HACK 1 @@ -7540,38 +7650,38 @@ diff -urN clean/configure chkplat/configure else - echo "$as_me:6905: result: no" >&5 -+ echo "$as_me:7026: result: no" >&5 ++ echo "$as_me:7073: result: no" >&5 echo "${ECHO_T}no" >&6 cat >>confdefs.h <<\EOF #define BX_PORT_E9_HACK 0 -@@ -6911,7 +7032,7 @@ +@@ -6911,7 +7079,7 @@ fi else - echo "$as_me:6914: result: yes" >&5 -+ echo "$as_me:7035: result: yes" >&5 ++ echo "$as_me:7082: result: yes" >&5 echo "${ECHO_T}yes" >&6 cat >>confdefs.h <<\EOF #define BX_PORT_E9_HACK 1 -@@ -6919,25 +7040,25 @@ +@@ -6919,25 +7087,25 @@ fi; -echo "$as_me:6922: checking for use of .cpp as suffix" >&5 -+echo "$as_me:7043: checking for use of .cpp as suffix" >&5 ++echo "$as_me:7090: checking for use of .cpp as suffix" >&5 echo $ECHO_N "checking for use of .cpp as suffix... $ECHO_C" >&6 # Check whether --enable-cpp or --disable-cpp was given. if test "${enable_cpp+set}" = set; then enableval="$enable_cpp" if test "$enableval" = yes; then - echo "$as_me:6928: result: yes" >&5 -+ echo "$as_me:7049: result: yes" >&5 ++ echo "$as_me:7096: result: yes" >&5 echo "${ECHO_T}yes" >&6 SUFFIX_LINE='.SUFFIXES: .cpp' CPP_SUFFIX='cpp' else - echo "$as_me:6933: result: no" >&5 -+ echo "$as_me:7054: result: no" >&5 ++ echo "$as_me:7101: result: no" >&5 echo "${ECHO_T}no" >&6 SUFFIX_LINE='.SUFFIXES: .cc' CPP_SUFFIX='cc' @@ -7579,128 +7689,128 @@ diff -urN clean/configure chkplat/configure else - echo "$as_me:6940: result: no" >&5 -+ echo "$as_me:7061: result: no" >&5 ++ echo "$as_me:7108: result: no" >&5 echo "${ECHO_T}no" >&6 SUFFIX_LINE='.SUFFIXES: .cc' CPP_SUFFIX='cc' -@@ -6959,13 +7080,13 @@ +@@ -6959,13 +7127,13 @@ fi fi -echo "$as_me:6962: checking for Bochs internal debugger support" >&5 -+echo "$as_me:7083: checking for Bochs internal debugger support" >&5 ++echo "$as_me:7130: checking for Bochs internal debugger support" >&5 echo $ECHO_N "checking for Bochs internal debugger support... $ECHO_C" >&6 # Check whether --enable-debugger or --disable-debugger was given. if test "${enable_debugger+set}" = set; then enableval="$enable_debugger" if test "$enableval" = yes; then - echo "$as_me:6968: result: yes" >&5 -+ echo "$as_me:7089: result: yes" >&5 ++ echo "$as_me:7136: result: yes" >&5 echo "${ECHO_T}yes" >&6 cat >>confdefs.h <<\EOF #define BX_DEBUGGER 1 -@@ -6974,7 +7095,7 @@ +@@ -6974,7 +7142,7 @@ DEBUGGER_VAR='$(DEBUGGER_LIB)' bx_debugger=1 else - echo "$as_me:6977: result: no" >&5 -+ echo "$as_me:7098: result: no" >&5 ++ echo "$as_me:7145: result: no" >&5 echo "${ECHO_T}no" >&6 cat >>confdefs.h <<\EOF #define BX_DEBUGGER 0 -@@ -6986,7 +7107,7 @@ +@@ -6986,7 +7154,7 @@ else - echo "$as_me:6989: result: no" >&5 -+ echo "$as_me:7110: result: no" >&5 ++ echo "$as_me:7157: result: no" >&5 echo "${ECHO_T}no" >&6 cat >>confdefs.h <<\EOF #define BX_DEBUGGER 0 -@@ -6997,13 +7118,13 @@ +@@ -6997,13 +7165,13 @@ fi; -echo "$as_me:7000: checking for disassembler support" >&5 -+echo "$as_me:7121: checking for disassembler support" >&5 ++echo "$as_me:7168: checking for disassembler support" >&5 echo $ECHO_N "checking for disassembler support... $ECHO_C" >&6 # Check whether --enable-disasm or --disable-disasm was given. if test "${enable_disasm+set}" = set; then enableval="$enable_disasm" if test "$enableval" = yes; then - echo "$as_me:7006: result: yes" >&5 -+ echo "$as_me:7127: result: yes" >&5 ++ echo "$as_me:7174: result: yes" >&5 echo "${ECHO_T}yes" >&6 cat >>confdefs.h <<\EOF #define BX_DISASM 1 -@@ -7011,7 +7132,7 @@ +@@ -7011,7 +7179,7 @@ DISASM_VAR='$(DISASM_LIB)' else - echo "$as_me:7014: result: no" >&5 -+ echo "$as_me:7135: result: no" >&5 ++ echo "$as_me:7182: result: no" >&5 echo "${ECHO_T}no" >&6 if test "$bx_debugger" = 1; then echo "ERROR: debugger is enabled, so --enable-disasm is required" -@@ -7026,7 +7147,7 @@ +@@ -7026,7 +7194,7 @@ else if test "$bx_debugger" = 1; then - echo "$as_me:7029: result: yes" >&5 -+ echo "$as_me:7150: result: yes" >&5 ++ echo "$as_me:7197: result: yes" >&5 echo "${ECHO_T}yes" >&6 cat >>confdefs.h <<\EOF #define BX_DISASM 1 -@@ -7034,7 +7155,7 @@ +@@ -7034,7 +7202,7 @@ DISASM_VAR='$(DISASM_LIB)' else - echo "$as_me:7037: result: no" >&5 -+ echo "$as_me:7158: result: no" >&5 ++ echo "$as_me:7205: result: no" >&5 echo "${ECHO_T}no" >&6 cat >>confdefs.h <<\EOF #define BX_DISASM 0 -@@ -7049,17 +7170,17 @@ +@@ -7049,17 +7217,17 @@ rl_without_curses_ok=no rl_with_curses_ok=no -echo "$as_me:7052: checking if readline works without -lcurses" >&5 -+echo "$as_me:7173: checking if readline works without -lcurses" >&5 ++echo "$as_me:7220: checking if readline works without -lcurses" >&5 echo $ECHO_N "checking if readline works without -lcurses... $ECHO_C" >&6 OLD_LIBS=$LIBS LIBS="$LIBS -lreadline" if test "$cross_compiling" = yes; then - { { echo "$as_me:7057: error: cannot run test program while cross compiling" >&5 -+ { { echo "$as_me:7178: error: cannot run test program while cross compiling" >&5 ++ { { echo "$as_me:7225: error: cannot run test program while cross compiling" >&5 echo "$as_me: error: cannot run test program while cross compiling" >&2;} { (exit 1); exit 1; }; } else cat >conftest.$ac_ext <<_ACEOF -#line 7062 "configure" -+#line 7183 "configure" ++#line 7230 "configure" #include "confdefs.h" #include -@@ -7068,39 +7189,39 @@ +@@ -7068,39 +7236,39 @@ _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:7071: \"$ac_link\"") >&5 -+if { (eval echo "$as_me:7192: \"$ac_link\"") >&5 ++if { (eval echo "$as_me:7239: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:7074: \$? = $ac_status" >&5 -+ echo "$as_me:7195: \$? = $ac_status" >&5 ++ echo "$as_me:7242: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:7076: \"$ac_try\"") >&5 -+ { (eval echo "$as_me:7197: \"$ac_try\"") >&5 ++ { (eval echo "$as_me:7244: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:7079: \$? = $ac_status" >&5 -+ echo "$as_me:7200: \$? = $ac_status" >&5 ++ echo "$as_me:7247: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:7081: result: yes" >&5 -+ echo "$as_me:7202: result: yes" >&5 ++ echo "$as_me:7249: result: yes" >&5 echo "${ECHO_T}yes" >&6 rl_without_curses_ok=yes else @@ -7708,48 +7818,48 @@ diff -urN clean/configure chkplat/configure echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 - echo "$as_me:7088: result: no" >&5 -+ echo "$as_me:7209: result: no" >&5 ++ echo "$as_me:7256: result: no" >&5 echo "${ECHO_T}no" >&6 fi rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:7094: checking if readline works with -lcurses" >&5 -+echo "$as_me:7215: checking if readline works with -lcurses" >&5 ++echo "$as_me:7262: checking if readline works with -lcurses" >&5 echo $ECHO_N "checking if readline works with -lcurses... $ECHO_C" >&6 LIBS="$LIBS -lcurses" if test "$cross_compiling" = yes; then - { { echo "$as_me:7098: error: cannot run test program while cross compiling" >&5 -+ { { echo "$as_me:7219: error: cannot run test program while cross compiling" >&5 ++ { { echo "$as_me:7266: error: cannot run test program while cross compiling" >&5 echo "$as_me: error: cannot run test program while cross compiling" >&2;} { (exit 1); exit 1; }; } else cat >conftest.$ac_ext <<_ACEOF -#line 7103 "configure" -+#line 7224 "configure" ++#line 7271 "configure" #include "confdefs.h" #include -@@ -7109,24 +7230,24 @@ +@@ -7109,24 +7277,24 @@ _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:7112: \"$ac_link\"") >&5 -+if { (eval echo "$as_me:7233: \"$ac_link\"") >&5 ++if { (eval echo "$as_me:7280: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:7115: \$? = $ac_status" >&5 -+ echo "$as_me:7236: \$? = $ac_status" >&5 ++ echo "$as_me:7283: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:7117: \"$ac_try\"") >&5 -+ { (eval echo "$as_me:7238: \"$ac_try\"") >&5 ++ { (eval echo "$as_me:7285: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:7120: \$? = $ac_status" >&5 -+ echo "$as_me:7241: \$? = $ac_status" >&5 ++ echo "$as_me:7288: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:7122: result: yes" >&5 -+ echo "$as_me:7243: result: yes" >&5 ++ echo "$as_me:7290: result: yes" >&5 echo "${ECHO_T}yes" >&6 rl_with_curses_ok=yes else @@ -7757,273 +7867,273 @@ diff -urN clean/configure chkplat/configure echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 - echo "$as_me:7129: result: no" >&5 -+ echo "$as_me:7250: result: no" >&5 ++ echo "$as_me:7297: result: no" >&5 echo "${ECHO_T}no" >&6 fi -@@ -7134,34 +7255,34 @@ +@@ -7134,34 +7302,34 @@ fi LIBS=$OLD_LIBS -echo "$as_me:7137: checking whether user wants readline" >&5 -+echo "$as_me:7258: checking whether user wants readline" >&5 ++echo "$as_me:7305: checking whether user wants readline" >&5 echo $ECHO_N "checking whether user wants readline... $ECHO_C" >&6 # Check whether --enable-readline or --disable-readline was given. if test "${enable_readline+set}" = set; then enableval="$enable_readline" if test "$enableval" = yes; then - echo "$as_me:7143: result: yes" >&5 -+ echo "$as_me:7264: result: yes" >&5 ++ echo "$as_me:7311: result: yes" >&5 echo "${ECHO_T}yes" >&6 want_readline=yes else - echo "$as_me:7147: result: no" >&5 -+ echo "$as_me:7268: result: no" >&5 ++ echo "$as_me:7315: result: no" >&5 echo "${ECHO_T}no" >&6 want_readline=no fi else - echo "$as_me:7153: result: yes" >&5 -+ echo "$as_me:7274: result: yes" >&5 ++ echo "$as_me:7321: result: yes" >&5 echo "${ECHO_T}yes" >&6 want_readline=yes fi; -echo "$as_me:7159: checking whether to use readline" >&5 -+echo "$as_me:7280: checking whether to use readline" >&5 ++echo "$as_me:7327: checking whether to use readline" >&5 echo $ECHO_N "checking whether to use readline... $ECHO_C" >&6 if test "$want_readline" = yes; then if test "$bx_debugger" = 1; then if test "$rl_without_curses_ok" = yes; then - echo "$as_me:7164: result: yes" >&5 -+ echo "$as_me:7285: result: yes" >&5 ++ echo "$as_me:7332: result: yes" >&5 echo "${ECHO_T}yes" >&6 cat >>confdefs.h <<\EOF #define HAVE_LIBREADLINE 1 -@@ -7169,7 +7290,7 @@ +@@ -7169,7 +7337,7 @@ READLINE_LIB="-lreadline" elif test "$rl_with_curses_ok" = yes; then - echo "$as_me:7172: result: yes" >&5 -+ echo "$as_me:7293: result: yes" >&5 ++ echo "$as_me:7340: result: yes" >&5 echo "${ECHO_T}yes" >&6 cat >>confdefs.h <<\EOF #define HAVE_LIBREADLINE 1 -@@ -7177,36 +7298,36 @@ +@@ -7177,36 +7345,36 @@ READLINE_LIB="-lreadline -lcurses" else - echo "$as_me:7180: result: no" >&5 -+ echo "$as_me:7301: result: no" >&5 ++ echo "$as_me:7348: result: no" >&5 echo "${ECHO_T}no" >&6 echo WARNING: The readline library was disabled because it was not found. fi else - echo "$as_me:7185: result: no" >&5 -+ echo "$as_me:7306: result: no" >&5 ++ echo "$as_me:7353: result: no" >&5 echo "${ECHO_T}no" >&6 fi else - echo "$as_me:7189: result: no" >&5 -+ echo "$as_me:7310: result: no" >&5 ++ echo "$as_me:7357: result: no" >&5 echo "${ECHO_T}no" >&6 fi -echo "$as_me:7193: checking for readline/history.h" >&5 -+echo "$as_me:7314: checking for readline/history.h" >&5 ++echo "$as_me:7361: checking for readline/history.h" >&5 echo $ECHO_N "checking for readline/history.h... $ECHO_C" >&6 if test "${ac_cv_header_readline_history_h+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 7199 "configure" -+#line 7320 "configure" ++#line 7367 "configure" #include "confdefs.h" #include _ACEOF -if { (eval echo "$as_me:7203: \"$ac_cpp conftest.$ac_ext\"") >&5 -+if { (eval echo "$as_me:7324: \"$ac_cpp conftest.$ac_ext\"") >&5 ++if { (eval echo "$as_me:7371: \"$ac_cpp conftest.$ac_ext\"") >&5 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 ac_status=$? egrep -v '^ *\+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 - echo "$as_me:7209: \$? = $ac_status" >&5 -+ echo "$as_me:7330: \$? = $ac_status" >&5 ++ echo "$as_me:7377: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag -@@ -7225,7 +7346,7 @@ +@@ -7225,7 +7393,7 @@ fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:7228: result: $ac_cv_header_readline_history_h" >&5 -+echo "$as_me:7349: result: $ac_cv_header_readline_history_h" >&5 ++echo "$as_me:7396: result: $ac_cv_header_readline_history_h" >&5 echo "${ECHO_T}$ac_cv_header_readline_history_h" >&6 if test $ac_cv_header_readline_history_h = yes; then cat >>confdefs.h <<\EOF -@@ -7234,13 +7355,13 @@ +@@ -7234,13 +7402,13 @@ fi -echo "$as_me:7237: checking for loader support" >&5 -+echo "$as_me:7358: checking for loader support" >&5 ++echo "$as_me:7405: checking for loader support" >&5 echo $ECHO_N "checking for loader support... $ECHO_C" >&6 # Check whether --enable-loader or --disable-loader was given. if test "${enable_loader+set}" = set; then enableval="$enable_loader" if test "$enableval" = yes; then - echo "$as_me:7243: result: yes" >&5 -+ echo "$as_me:7364: result: yes" >&5 ++ echo "$as_me:7411: result: yes" >&5 echo "${ECHO_T}yes" >&6 cat >>confdefs.h <<\EOF #define BX_USE_LOADER 1 -@@ -7248,7 +7369,7 @@ +@@ -7248,7 +7416,7 @@ BX_LOADER_OBJS='bx_loader.o loader.o' else - echo "$as_me:7251: result: no" >&5 -+ echo "$as_me:7372: result: no" >&5 ++ echo "$as_me:7419: result: no" >&5 echo "${ECHO_T}no" >&6 cat >>confdefs.h <<\EOF #define BX_USE_LOADER 0 -@@ -7258,7 +7379,7 @@ +@@ -7258,7 +7426,7 @@ fi else - echo "$as_me:7261: result: no" >&5 -+ echo "$as_me:7382: result: no" >&5 ++ echo "$as_me:7429: result: no" >&5 echo "${ECHO_T}no" >&6 cat >>confdefs.h <<\EOF #define BX_USE_LOADER 0 -@@ -7270,13 +7391,13 @@ +@@ -7270,13 +7438,13 @@ INSTRUMENT_DIR='instrument/stubs' -echo "$as_me:7273: checking for instrumentation support" >&5 -+echo "$as_me:7394: checking for instrumentation support" >&5 ++echo "$as_me:7441: checking for instrumentation support" >&5 echo $ECHO_N "checking for instrumentation support... $ECHO_C" >&6 # Check whether --enable-instrumentation or --disable-instrumentation was given. if test "${enable_instrumentation+set}" = set; then enableval="$enable_instrumentation" if test "$enableval" = yes; then - echo "$as_me:7279: result: yes" >&5 -+ echo "$as_me:7400: result: yes" >&5 ++ echo "$as_me:7447: result: yes" >&5 echo "${ECHO_T}yes" >&6 cat >>confdefs.h <<\EOF #define BX_INSTRUMENTATION 1 -@@ -7284,7 +7405,7 @@ +@@ -7284,7 +7452,7 @@ INSTRUMENT_VAR='$(INSTRUMENT_LIB)' elif test "$enableval" = no; then - echo "$as_me:7287: result: no" >&5 -+ echo "$as_me:7408: result: no" >&5 ++ echo "$as_me:7455: result: no" >&5 echo "${ECHO_T}no" >&6 cat >>confdefs.h <<\EOF #define BX_INSTRUMENTATION 0 -@@ -7292,7 +7413,7 @@ +@@ -7292,7 +7460,7 @@ INSTRUMENT_VAR='' else - echo "$as_me:7295: result: yes" >&5 -+ echo "$as_me:7416: result: yes" >&5 ++ echo "$as_me:7463: result: yes" >&5 echo "${ECHO_T}yes" >&6 cat >>confdefs.h <<\EOF #define BX_INSTRUMENTATION 1 -@@ -7303,7 +7424,7 @@ +@@ -7303,7 +7471,7 @@ fi else - echo "$as_me:7306: result: no" >&5 -+ echo "$as_me:7427: result: no" >&5 ++ echo "$as_me:7474: result: no" >&5 echo "${ECHO_T}no" >&6 cat >>confdefs.h <<\EOF #define BX_INSTRUMENTATION 0 -@@ -7394,13 +7515,13 @@ +@@ -7394,13 +7562,13 @@ fi; -echo "$as_me:7397: checking for VGA emulation" >&5 -+echo "$as_me:7518: checking for VGA emulation" >&5 ++echo "$as_me:7565: checking for VGA emulation" >&5 echo $ECHO_N "checking for VGA emulation... $ECHO_C" >&6 # Check whether --enable-vga or --disable-vga was given. if test "${enable_vga+set}" = set; then enableval="$enable_vga" if test "$enableval" = yes; then - echo "$as_me:7403: result: yes" >&5 -+ echo "$as_me:7524: result: yes" >&5 ++ echo "$as_me:7571: result: yes" >&5 echo "${ECHO_T}yes" >&6 cat >>confdefs.h <<\EOF #define BX_SUPPORT_VGA 1 -@@ -7408,7 +7529,7 @@ +@@ -7408,7 +7576,7 @@ VIDEO_OBJS='$(VIDEO_OBJS_VGA)' else - echo "$as_me:7411: result: no" >&5 -+ echo "$as_me:7532: result: no" >&5 ++ echo "$as_me:7579: result: no" >&5 echo "${ECHO_T}no" >&6 cat >>confdefs.h <<\EOF #define BX_SUPPORT_VGA 0 -@@ -7418,7 +7539,7 @@ +@@ -7418,7 +7586,7 @@ fi else - echo "$as_me:7421: result: yes" >&5 -+ echo "$as_me:7542: result: yes" >&5 ++ echo "$as_me:7589: result: yes" >&5 echo "${ECHO_T}yes" >&6 cat >>confdefs.h <<\EOF #define BX_SUPPORT_VGA 1 -@@ -7428,7 +7549,7 @@ +@@ -7428,7 +7596,7 @@ fi; -echo "$as_me:7431: checking for FPU emulation" >&5 -+echo "$as_me:7552: checking for FPU emulation" >&5 ++echo "$as_me:7599: checking for FPU emulation" >&5 echo $ECHO_N "checking for FPU emulation... $ECHO_C" >&6 FPU_VAR='' FPU_GLUE_OBJ='' -@@ -7436,7 +7557,7 @@ +@@ -7436,7 +7604,7 @@ if test "${enable_fpu+set}" = set; then enableval="$enable_fpu" if test "$enableval" = yes; then - echo "$as_me:7439: result: yes" >&5 -+ echo "$as_me:7560: result: yes" >&5 ++ echo "$as_me:7607: result: yes" >&5 echo "${ECHO_T}yes" >&6 cat >>confdefs.h <<\EOF #define BX_SUPPORT_FPU 1 -@@ -7445,7 +7566,7 @@ +@@ -7445,7 +7613,7 @@ FPU_VAR='$(FPU_LIB)' FPU_GLUE_OBJ='$(FPU_GLUE_OBJ)' elif test "$enableval" = no; then - echo "$as_me:7448: result: no" >&5 -+ echo "$as_me:7569: result: no" >&5 ++ echo "$as_me:7616: result: no" >&5 echo "${ECHO_T}no" >&6 cat >>confdefs.h <<\EOF #define BX_SUPPORT_FPU 0 -@@ -7459,7 +7580,7 @@ +@@ -7459,7 +7627,7 @@ else - echo "$as_me:7462: result: yes" >&5 -+ echo "$as_me:7583: result: yes" >&5 ++ echo "$as_me:7630: result: yes" >&5 echo "${ECHO_T}yes" >&6 cat >>confdefs.h <<\EOF #define BX_SUPPORT_FPU 1 -@@ -7470,27 +7591,27 @@ +@@ -7470,27 +7638,27 @@ fi; -echo "$as_me:7473: checking for x86 debugger support" >&5 -+echo "$as_me:7594: checking for x86 debugger support" >&5 ++echo "$as_me:7641: checking for x86 debugger support" >&5 echo $ECHO_N "checking for x86 debugger support... $ECHO_C" >&6 # Check whether --enable-x86-debugger or --disable-x86-debugger was given. if test "${enable_x86_debugger+set}" = set; then enableval="$enable_x86_debugger" if test "$enableval" = yes; then - echo "$as_me:7479: result: yes" >&5 -+ echo "$as_me:7600: result: yes" >&5 ++ echo "$as_me:7647: result: yes" >&5 echo "${ECHO_T}yes" >&6 cat >>confdefs.h <<\EOF #define BX_X86_DEBUGGER 1 @@ -8031,7 +8141,7 @@ diff -urN clean/configure chkplat/configure elif test "$enableval" = no; then - echo "$as_me:7486: result: no" >&5 -+ echo "$as_me:7607: result: no" >&5 ++ echo "$as_me:7654: result: no" >&5 echo "${ECHO_T}no" >&6 cat >>confdefs.h <<\EOF #define BX_X86_DEBUGGER 0 @@ -8039,53 +8149,53 @@ diff -urN clean/configure chkplat/configure else - echo "$as_me:7493: result: yes" >&5 -+ echo "$as_me:7614: result: yes" >&5 ++ echo "$as_me:7661: result: yes" >&5 echo "${ECHO_T}yes" >&6 cat >>confdefs.h <<\EOF #define BX_X86_DEBUGGER 1 -@@ -7499,7 +7620,7 @@ +@@ -7499,7 +7667,7 @@ fi else - echo "$as_me:7502: result: no" >&5 -+ echo "$as_me:7623: result: no" >&5 ++ echo "$as_me:7670: result: no" >&5 echo "${ECHO_T}no" >&6 cat >>confdefs.h <<\EOF #define BX_X86_DEBUGGER 0 -@@ -7507,23 +7628,23 @@ +@@ -7507,23 +7675,23 @@ fi; -echo "$as_me:7510: checking for IOKit/storage/IOCDMedia.h" >&5 -+echo "$as_me:7631: checking for IOKit/storage/IOCDMedia.h" >&5 ++echo "$as_me:7678: checking for IOKit/storage/IOCDMedia.h" >&5 echo $ECHO_N "checking for IOKit/storage/IOCDMedia.h... $ECHO_C" >&6 if test "${ac_cv_header_IOKit_storage_IOCDMedia_h+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 7516 "configure" -+#line 7637 "configure" ++#line 7684 "configure" #include "confdefs.h" #include _ACEOF -if { (eval echo "$as_me:7520: \"$ac_cpp conftest.$ac_ext\"") >&5 -+if { (eval echo "$as_me:7641: \"$ac_cpp conftest.$ac_ext\"") >&5 ++if { (eval echo "$as_me:7688: \"$ac_cpp conftest.$ac_ext\"") >&5 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 ac_status=$? egrep -v '^ *\+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 - echo "$as_me:7526: \$? = $ac_status" >&5 -+ echo "$as_me:7647: \$? = $ac_status" >&5 ++ echo "$as_me:7694: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag -@@ -7542,20 +7663,20 @@ +@@ -7542,20 +7710,20 @@ fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:7545: result: $ac_cv_header_IOKit_storage_IOCDMedia_h" >&5 -+echo "$as_me:7666: result: $ac_cv_header_IOKit_storage_IOCDMedia_h" >&5 ++echo "$as_me:7713: result: $ac_cv_header_IOKit_storage_IOCDMedia_h" >&5 echo "${ECHO_T}$ac_cv_header_IOKit_storage_IOCDMedia_h" >&6 if test $ac_cv_header_IOKit_storage_IOCDMedia_h = yes; then can_use_osx_cdrom=yes @@ -8093,102 +8203,102 @@ diff -urN clean/configure chkplat/configure fi -echo "$as_me:7552: checking for CDROM support" >&5 -+echo "$as_me:7673: checking for CDROM support" >&5 ++echo "$as_me:7720: checking for CDROM support" >&5 echo $ECHO_N "checking for CDROM support... $ECHO_C" >&6 # Check whether --enable-cdrom or --disable-cdrom was given. if test "${enable_cdrom+set}" = set; then enableval="$enable_cdrom" if test "$enableval" = no; then - echo "$as_me:7558: result: no" >&5 -+ echo "$as_me:7679: result: no" >&5 ++ echo "$as_me:7726: result: no" >&5 echo "${ECHO_T}no" >&6 CDROM_OBJS='' cat >>confdefs.h <<\EOF -@@ -7563,7 +7684,7 @@ +@@ -7563,7 +7731,7 @@ EOF else - echo "$as_me:7566: result: yes" >&5 -+ echo "$as_me:7687: result: yes" >&5 ++ echo "$as_me:7734: result: yes" >&5 echo "${ECHO_T}yes" >&6 CDROM_OBJS='cdrom.o' if test "$with_amigaos" = yes; then -@@ -7571,7 +7692,7 @@ +@@ -7571,7 +7739,7 @@ CDROM_OBJS="cdrom_amigaos.o" elif test "$can_use_osx_cdrom" = yes; then # use cdrom_osx - echo "$as_me:7574: result: Using OSX IOKit CD Interface" >&5 -+ echo "$as_me:7695: result: Using OSX IOKit CD Interface" >&5 ++ echo "$as_me:7742: result: Using OSX IOKit CD Interface" >&5 echo "${ECHO_T}Using OSX IOKit CD Interface" >&6 CDROM_OBJS="cdrom_osx.o" EXTRA_LINK_OPTS="${EXTRA_LINK_OPTS} -framework IOKit -framework CoreFoundation" -@@ -7586,7 +7707,7 @@ +@@ -7586,7 +7754,7 @@ fi else - echo "$as_me:7589: result: no" >&5 -+ echo "$as_me:7710: result: no" >&5 ++ echo "$as_me:7757: result: no" >&5 echo "${ECHO_T}no" >&6 CDROM_OBJS='' cat >>confdefs.h <<\EOF -@@ -7595,13 +7716,13 @@ +@@ -7595,13 +7763,13 @@ fi; -echo "$as_me:7598: checking for Sound Blaster 16 support" >&5 -+echo "$as_me:7719: checking for Sound Blaster 16 support" >&5 ++echo "$as_me:7766: checking for Sound Blaster 16 support" >&5 echo $ECHO_N "checking for Sound Blaster 16 support... $ECHO_C" >&6 # Check whether --enable-sb16 or --disable-sb16 was given. if test "${enable_sb16+set}" = set; then enableval="$enable_sb16" if test "$enableval" = no; then - echo "$as_me:7604: result: no" >&5 -+ echo "$as_me:7725: result: no" >&5 ++ echo "$as_me:7772: result: no" >&5 echo "${ECHO_T}no" >&6 SB16_OBJS='' cat >>confdefs.h <<\EOF -@@ -7616,7 +7737,7 @@ +@@ -7616,7 +7784,7 @@ #define BX_SOUND_OUTPUT_C bx_sound_output_c EOF - echo "$as_me:7619: result: dummy" >&5 -+ echo "$as_me:7740: result: dummy" >&5 ++ echo "$as_me:7787: result: dummy" >&5 echo "${ECHO_T}dummy" >&6 ;; freebsd|linux) -@@ -7625,7 +7746,7 @@ +@@ -7625,7 +7793,7 @@ #define BX_SOUND_OUTPUT_C bx_sound_linux_c EOF - echo "$as_me:7628: result: linux" >&5 -+ echo "$as_me:7749: result: linux" >&5 ++ echo "$as_me:7796: result: linux" >&5 echo "${ECHO_T}linux" >&6 ;; win) -@@ -7634,7 +7755,7 @@ +@@ -7634,7 +7802,7 @@ #define BX_SOUND_OUTPUT_C bx_sound_windows_c EOF - echo "$as_me:7637: result: win" >&5 -+ echo "$as_me:7758: result: win" >&5 ++ echo "$as_me:7805: result: win" >&5 echo "${ECHO_T}win" >&6 ;; *) -@@ -7650,7 +7771,7 @@ +@@ -7650,7 +7818,7 @@ fi else - echo "$as_me:7653: result: no" >&5 -+ echo "$as_me:7774: result: no" >&5 ++ echo "$as_me:7821: result: no" >&5 echo "${ECHO_T}no" >&6 SB16_OBJS='' cat >>confdefs.h <<\EOF -@@ -7668,14 +7789,14 @@ +@@ -7668,14 +7836,14 @@ fi; -echo "$as_me:7671: checking for I/O Interface to the debugger" >&5 -+echo "$as_me:7792: checking for I/O Interface to the debugger" >&5 ++echo "$as_me:7839: checking for I/O Interface to the debugger" >&5 echo $ECHO_N "checking for I/O Interface to the debugger... $ECHO_C" >&6 IODEBUG_OBJS='' # Check whether --enable-iodebug or --disable-iodebug was given. @@ -8196,467 +8306,486 @@ diff -urN clean/configure chkplat/configure enableval="$enable_iodebug" if test "$enableval" = yes; then - echo "$as_me:7678: result: yes" >&5 -+ echo "$as_me:7799: result: yes" >&5 ++ echo "$as_me:7846: result: yes" >&5 echo "${ECHO_T}yes" >&6 cat >>confdefs.h <<\EOF #define BX_IODEBUG_SUPPORT 1 -@@ -7683,7 +7804,7 @@ +@@ -7683,7 +7851,7 @@ IODEBUG_OBJS='iodebug.o' else - echo "$as_me:7686: result: no" >&5 -+ echo "$as_me:7807: result: no" >&5 ++ echo "$as_me:7854: result: no" >&5 echo "${ECHO_T}no" >&6 cat >>confdefs.h <<\EOF #define BX_IODEBUG_SUPPORT 0 -@@ -7693,7 +7814,7 @@ +@@ -7693,7 +7861,7 @@ else - echo "$as_me:7696: result: no" >&5 -+ echo "$as_me:7817: result: no" >&5 ++ echo "$as_me:7864: result: no" >&5 echo "${ECHO_T}no" >&6 cat >>confdefs.h <<\EOF #define BX_IODEBUG_SUPPORT 0 -@@ -7780,7 +7901,7 @@ +@@ -7780,23 +7948,6 @@ fi; -echo "$as_me:7783: checking for gui library to use" >&5 -+echo "$as_me:7904: checking for gui library to use" >&5 - echo $ECHO_N "checking for gui library to use... $ECHO_C" >&6 - - if (test "$with_sdl" != yes) && \ -@@ -7814,7 +7935,7 @@ +-echo $ECHO_N "checking for gui library to use... $ECHO_C" >&6 +- +-if (test "$with_sdl" != yes) && \ +- (test "$with_x11" != yes) && \ +- (test "$with_beos" != yes) && \ +- (test "$with_win32" != yes) && \ +- (test "$with_nogui" != yes) && \ +- (test "$with_win32_vcpp" != yes) && \ +- (test "$with_term" != yes) && \ +- (test "$with_rfb" != yes) && \ +- (test "$with_amigaos" != yes) && \ +- (test "$with_carbon" != yes) && \ +- (test "$with_macos" != yes); then +- with_x11=yes +-fi +- + DASH="-" + SLASH="/" + CXXFP="" +@@ -7813,8 +7964,11 @@ + INSTALL_TARGET=install_unix INSTALL_LIST_FOR_PLATFORM= ++echo "$as_me:7967: checking for gui library to use" >&5 ++echo $ECHO_N "checking for gui library to use... $ECHO_C" >&6 ++ if test "$with_x11" = yes; then - echo "$as_me:7817: result: X windows" >&5 -+ echo "$as_me:7938: result: X windows" >&5 ++ echo "$as_me:7971: result: X windows" >&5 echo "${ECHO_T}X windows" >&6 if test "$no_x" = yes; then echo ERROR: X windows gui was selected, but X windows libraries were not found. -@@ -7828,7 +7949,7 @@ +@@ -7828,7 +7982,7 @@ GUI_LINK_OPTS='$(GUI_LINK_OPTS_X)' INSTALL_LIST_FOR_PLATFORM='$(INSTALL_LIST_X11)' elif test "$with_win32" = yes; then - echo "$as_me:7831: result: win32" >&5 -+ echo "$as_me:7952: result: win32" >&5 ++ echo "$as_me:7985: result: win32" >&5 echo "${ECHO_T}win32" >&6 cat >>confdefs.h <<\EOF #define BX_WITH_WIN32 1 -@@ -7838,7 +7959,7 @@ +@@ -7838,7 +7992,7 @@ GUI_LINK_OPTS='$(GUI_LINK_OPTS_WIN32)' INSTALL_TARGET='install_win32' elif test "$with_beos" = yes; then - echo "$as_me:7841: result: beos" >&5 -+ echo "$as_me:7962: result: beos" >&5 ++ echo "$as_me:7995: result: beos" >&5 echo "${ECHO_T}beos" >&6 cat >>confdefs.h <<\EOF #define BX_WITH_BEOS 1 -@@ -7847,7 +7968,7 @@ +@@ -7847,7 +8001,7 @@ GUI_OBJS='$(GUI_OBJS_BEOS)' GUI_LINK_OPTS='$(GUI_LINK_OPTS_BEOS)' elif test "$with_sdl" = yes; then - echo "$as_me:7850: result: sdl" >&5 -+ echo "$as_me:7971: result: sdl" >&5 ++ echo "$as_me:8004: result: sdl" >&5 echo "${ECHO_T}sdl" >&6 cat >>confdefs.h <<\EOF #define BX_WITH_SDL 1 -@@ -7856,7 +7977,7 @@ +@@ -7856,7 +8010,7 @@ GUI_OBJS='$(GUI_OBJS_SDL)' GUI_LINK_OPTS='$(GUI_LINK_OPTS_SDL)' elif test "$with_rfb" = yes; then - echo "$as_me:7859: result: rfb" >&5 -+ echo "$as_me:7980: result: rfb" >&5 ++ echo "$as_me:8013: result: rfb" >&5 echo "${ECHO_T}rfb" >&6 cat >>confdefs.h <<\EOF #define BX_WITH_RFB 1 -@@ -7865,7 +7986,7 @@ +@@ -7865,7 +8019,7 @@ GUI_OBJS='$(GUI_OBJS_RFB)' GUI_LINK_OPTS='$(GUI_LINK_OPTS_RFB)' elif test "$with_amigaos" = yes; then - echo "$as_me:7868: result: amigaos" >&5 -+ echo "$as_me:7989: result: amigaos" >&5 ++ echo "$as_me:8022: result: amigaos" >&5 echo "${ECHO_T}amigaos" >&6 cat >>confdefs.h <<\EOF #define BX_WITH_AMIGAOS 1 -@@ -7874,7 +7995,7 @@ +@@ -7874,7 +8028,7 @@ GUI_OBJS='$(GUI_OBJS_AMIGAOS)' GUI_LINK_OPTS='$(GUI_LINK_OPTS_AMIGAOS)' elif test "$with_win32_vcpp" = yes; then - echo "$as_me:7877: result: win32-vcpp" >&5 -+ echo "$as_me:7998: result: win32-vcpp" >&5 ++ echo "$as_me:8031: result: win32-vcpp" >&5 echo "${ECHO_T}win32-vcpp" >&6 cat >>confdefs.h <<\EOF #define BX_WITH_WIN32 1 -@@ -7943,7 +8064,7 @@ +@@ -7943,7 +8097,7 @@ EOF elif test "$with_macos" = yes; then - echo "$as_me:7946: result: macos" >&5 -+ echo "$as_me:8067: result: macos" >&5 ++ echo "$as_me:8100: result: macos" >&5 echo "${ECHO_T}macos" >&6 cat >>confdefs.h <<\EOF #define BX_WITH_MACOS 1 -@@ -7956,7 +8077,7 @@ +@@ -7956,7 +8110,7 @@ GUI_OBJS='$(GUI_OBJS_MACOS)' GUI_LINK_OPTS='$(GUI_LINK_OPTS_MACOS)' elif test "$with_carbon" = yes; then - echo "$as_me:7959: result: carbon" >&5 -+ echo "$as_me:8080: result: carbon" >&5 ++ echo "$as_me:8113: result: carbon" >&5 echo "${ECHO_T}carbon" >&6 cat >>confdefs.h <<\EOF #define BX_WITH_CARBON 1 -@@ -7966,7 +8087,7 @@ +@@ -7966,7 +8120,7 @@ GUI_LINK_OPTS='$(GUI_LINK_OPTS_CARBON)' PRIMARY_TARGET=bochs.app/.build elif test "$with_term" = yes; then - echo "$as_me:7969: result: term" >&5 -+ echo "$as_me:8090: result: term" >&5 ++ echo "$as_me:8123: result: term" >&5 echo "${ECHO_T}term" >&6 cat >>confdefs.h <<\EOF #define BX_WITH_TERM 1 -@@ -7976,7 +8097,7 @@ +@@ -7976,7 +8130,7 @@ GUI_LINK_OPTS='$(GUI_LINK_OPTS_TERM)' use_curses=yes else - echo "$as_me:7979: result: none" >&5 -+ echo "$as_me:8100: result: none" >&5 ++ echo "$as_me:8133: result: none" >&5 echo "${ECHO_T}none" >&6 cat >>confdefs.h <<\EOF #define BX_WITH_NOGUI 1 -@@ -7987,7 +8108,7 @@ +@@ -7987,7 +8141,7 @@ fi if test "$use_curses" = yes; then - echo "$as_me:7990: checking for mvaddch in -lcurses" >&5 -+ echo "$as_me:8111: checking for mvaddch in -lcurses" >&5 ++ echo "$as_me:8144: checking for mvaddch in -lcurses" >&5 echo $ECHO_N "checking for mvaddch in -lcurses... $ECHO_C" >&6 if test "${ac_cv_lib_curses_mvaddch+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 -@@ -7995,7 +8116,7 @@ +@@ -7995,7 +8149,7 @@ ac_check_lib_save_LIBS=$LIBS LIBS="-lcurses $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 7998 "configure" -+#line 8119 "configure" ++#line 8152 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ -@@ -8014,16 +8135,16 @@ +@@ -8014,16 +8168,16 @@ } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:8017: \"$ac_link\"") >&5 -+if { (eval echo "$as_me:8138: \"$ac_link\"") >&5 ++if { (eval echo "$as_me:8171: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:8020: \$? = $ac_status" >&5 -+ echo "$as_me:8141: \$? = $ac_status" >&5 ++ echo "$as_me:8174: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:8023: \"$ac_try\"") >&5 -+ { (eval echo "$as_me:8144: \"$ac_try\"") >&5 ++ { (eval echo "$as_me:8177: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:8026: \$? = $ac_status" >&5 -+ echo "$as_me:8147: \$? = $ac_status" >&5 ++ echo "$as_me:8180: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_curses_mvaddch=yes else -@@ -8034,13 +8155,13 @@ +@@ -8034,13 +8188,13 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:8037: result: $ac_cv_lib_curses_mvaddch" >&5 -+echo "$as_me:8158: result: $ac_cv_lib_curses_mvaddch" >&5 ++echo "$as_me:8191: result: $ac_cv_lib_curses_mvaddch" >&5 echo "${ECHO_T}$ac_cv_lib_curses_mvaddch" >&6 if test $ac_cv_lib_curses_mvaddch = yes; then GUI_LINK_OPTS_TERM='-lcurses' fi - echo "$as_me:8043: checking for mvaddch in -lncurses" >&5 -+ echo "$as_me:8164: checking for mvaddch in -lncurses" >&5 ++ echo "$as_me:8197: checking for mvaddch in -lncurses" >&5 echo $ECHO_N "checking for mvaddch in -lncurses... $ECHO_C" >&6 if test "${ac_cv_lib_ncurses_mvaddch+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 -@@ -8048,7 +8169,7 @@ +@@ -8048,7 +8202,7 @@ ac_check_lib_save_LIBS=$LIBS LIBS="-lncurses $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 8051 "configure" -+#line 8172 "configure" ++#line 8205 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ -@@ -8067,16 +8188,16 @@ +@@ -8067,16 +8221,16 @@ } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:8070: \"$ac_link\"") >&5 -+if { (eval echo "$as_me:8191: \"$ac_link\"") >&5 ++if { (eval echo "$as_me:8224: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:8073: \$? = $ac_status" >&5 -+ echo "$as_me:8194: \$? = $ac_status" >&5 ++ echo "$as_me:8227: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:8076: \"$ac_try\"") >&5 -+ { (eval echo "$as_me:8197: \"$ac_try\"") >&5 ++ { (eval echo "$as_me:8230: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:8079: \$? = $ac_status" >&5 -+ echo "$as_me:8200: \$? = $ac_status" >&5 ++ echo "$as_me:8233: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_ncurses_mvaddch=yes else -@@ -8087,13 +8208,13 @@ +@@ -8087,13 +8241,13 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:8090: result: $ac_cv_lib_ncurses_mvaddch" >&5 -+echo "$as_me:8211: result: $ac_cv_lib_ncurses_mvaddch" >&5 ++echo "$as_me:8244: result: $ac_cv_lib_ncurses_mvaddch" >&5 echo "${ECHO_T}$ac_cv_lib_ncurses_mvaddch" >&6 if test $ac_cv_lib_ncurses_mvaddch = yes; then GUI_LINK_OPTS_TERM='-lncurses' fi - echo "$as_me:8096: checking for mvaddch in -ltermlib" >&5 -+ echo "$as_me:8217: checking for mvaddch in -ltermlib" >&5 ++ echo "$as_me:8250: checking for mvaddch in -ltermlib" >&5 echo $ECHO_N "checking for mvaddch in -ltermlib... $ECHO_C" >&6 if test "${ac_cv_lib_termlib_mvaddch+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 -@@ -8101,7 +8222,7 @@ +@@ -8101,7 +8255,7 @@ ac_check_lib_save_LIBS=$LIBS LIBS="-ltermlib $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 8104 "configure" -+#line 8225 "configure" ++#line 8258 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ -@@ -8120,16 +8241,16 @@ +@@ -8120,16 +8274,16 @@ } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:8123: \"$ac_link\"") >&5 -+if { (eval echo "$as_me:8244: \"$ac_link\"") >&5 ++if { (eval echo "$as_me:8277: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:8126: \$? = $ac_status" >&5 -+ echo "$as_me:8247: \$? = $ac_status" >&5 ++ echo "$as_me:8280: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:8129: \"$ac_try\"") >&5 -+ { (eval echo "$as_me:8250: \"$ac_try\"") >&5 ++ { (eval echo "$as_me:8283: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:8132: \$? = $ac_status" >&5 -+ echo "$as_me:8253: \$? = $ac_status" >&5 ++ echo "$as_me:8286: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_termlib_mvaddch=yes else -@@ -8140,7 +8261,7 @@ +@@ -8140,7 +8294,7 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:8143: result: $ac_cv_lib_termlib_mvaddch" >&5 -+echo "$as_me:8264: result: $ac_cv_lib_termlib_mvaddch" >&5 ++echo "$as_me:8297: result: $ac_cv_lib_termlib_mvaddch" >&5 echo "${ECHO_T}$ac_cv_lib_termlib_mvaddch" >&6 if test $ac_cv_lib_termlib_mvaddch = yes; then GUI_LINK_OPTS_TERM='-ltermlib' -@@ -8154,12 +8275,12 @@ +@@ -8154,12 +8308,12 @@ if test "$with_rfb" = yes; then # first see if compiler takes "-pthread" argument - echo "$as_me:8157: checking for -pthread arg to compiler" >&5 -+ echo "$as_me:8278: checking for -pthread arg to compiler" >&5 ++ echo "$as_me:8311: checking for -pthread arg to compiler" >&5 echo $ECHO_N "checking for -pthread arg to compiler... $ECHO_C" >&6 CFLAGS_SAVE="$CFLAGS" CFLAGS="$CFLAGS -pthread" cat >conftest.$ac_ext <<_ACEOF -#line 8162 "configure" -+#line 8283 "configure" ++#line 8316 "configure" #include "confdefs.h" #include int -@@ -8171,20 +8292,20 @@ +@@ -8171,20 +8325,20 @@ } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:8174: \"$ac_link\"") >&5 -+if { (eval echo "$as_me:8295: \"$ac_link\"") >&5 ++if { (eval echo "$as_me:8328: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:8177: \$? = $ac_status" >&5 -+ echo "$as_me:8298: \$? = $ac_status" >&5 ++ echo "$as_me:8331: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:8180: \"$ac_try\"") >&5 -+ { (eval echo "$as_me:8301: \"$ac_try\"") >&5 ++ { (eval echo "$as_me:8334: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:8183: \$? = $ac_status" >&5 -+ echo "$as_me:8304: \$? = $ac_status" >&5 ++ echo "$as_me:8337: \$? = $ac_status" >&5 (exit $ac_status); }; }; then # it compiles with -pthread - echo "$as_me:8187: result: yes" >&5 -+ echo "$as_me:8308: result: yes" >&5 ++ echo "$as_me:8341: result: yes" >&5 echo "${ECHO_T}yes" >&6 CXXFLAGS="$CXXFLAGS -pthread" -@@ -8192,11 +8313,11 @@ +@@ -8192,11 +8346,11 @@ echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 - echo "$as_me:8195: result: no" >&5 -+ echo "$as_me:8316: result: no" >&5 ++ echo "$as_me:8349: result: no" >&5 echo "${ECHO_T}no" >&6 # now try with -lpthread CFLAGS="$CFLAGS_SAVE" - echo "$as_me:8199: checking for pthread_create in -lpthread" >&5 -+ echo "$as_me:8320: checking for pthread_create in -lpthread" >&5 ++ echo "$as_me:8353: checking for pthread_create in -lpthread" >&5 echo $ECHO_N "checking for pthread_create in -lpthread... $ECHO_C" >&6 if test "${ac_cv_lib_pthread_pthread_create+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 -@@ -8204,7 +8325,7 @@ +@@ -8204,7 +8358,7 @@ ac_check_lib_save_LIBS=$LIBS LIBS="-lpthread $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 8207 "configure" -+#line 8328 "configure" ++#line 8361 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ -@@ -8223,16 +8344,16 @@ +@@ -8223,16 +8377,16 @@ } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:8226: \"$ac_link\"") >&5 -+if { (eval echo "$as_me:8347: \"$ac_link\"") >&5 ++if { (eval echo "$as_me:8380: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:8229: \$? = $ac_status" >&5 -+ echo "$as_me:8350: \$? = $ac_status" >&5 ++ echo "$as_me:8383: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:8232: \"$ac_try\"") >&5 -+ { (eval echo "$as_me:8353: \"$ac_try\"") >&5 ++ { (eval echo "$as_me:8386: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:8235: \$? = $ac_status" >&5 -+ echo "$as_me:8356: \$? = $ac_status" >&5 ++ echo "$as_me:8389: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_pthread_pthread_create=yes else -@@ -8243,7 +8364,7 @@ +@@ -8243,7 +8397,7 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:8246: result: $ac_cv_lib_pthread_pthread_create" >&5 -+echo "$as_me:8367: result: $ac_cv_lib_pthread_pthread_create" >&5 ++echo "$as_me:8400: result: $ac_cv_lib_pthread_pthread_create" >&5 echo "${ECHO_T}$ac_cv_lib_pthread_pthread_create" >&6 if test $ac_cv_lib_pthread_pthread_create = yes; then -@@ -8268,7 +8389,7 @@ +@@ -8268,7 +8422,7 @@ # Extract the first word of "gzip", so it can be a program name with args. set dummy gzip; ac_word=$2 -echo "$as_me:8271: checking for $ac_word" >&5 -+echo "$as_me:8392: checking for $ac_word" >&5 ++echo "$as_me:8425: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_path_GZIP+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 -@@ -8285,7 +8406,7 @@ +@@ -8285,7 +8439,7 @@ test -z "$ac_dir" && ac_dir=. if $as_executable_p "$ac_dir/$ac_word"; then ac_cv_path_GZIP="$ac_dir/$ac_word" - echo "$as_me:8288: found $ac_dir/$ac_word" >&5 -+ echo "$as_me:8409: found $ac_dir/$ac_word" >&5 ++ echo "$as_me:8442: found $ac_dir/$ac_word" >&5 break fi done -@@ -8296,16 +8417,16 @@ +@@ -8296,16 +8450,16 @@ GZIP=$ac_cv_path_GZIP if test -n "$GZIP"; then - echo "$as_me:8299: result: $GZIP" >&5 -+ echo "$as_me:8420: result: $GZIP" >&5 ++ echo "$as_me:8453: result: $GZIP" >&5 echo "${ECHO_T}$GZIP" >&6 else - echo "$as_me:8302: result: no" >&5 -+ echo "$as_me:8423: result: no" >&5 ++ echo "$as_me:8456: result: no" >&5 echo "${ECHO_T}no" >&6 fi # Extract the first word of "tar", so it can be a program name with args. set dummy tar; ac_word=$2 -echo "$as_me:8308: checking for $ac_word" >&5 -+echo "$as_me:8429: checking for $ac_word" >&5 ++echo "$as_me:8462: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_path_TAR+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 -@@ -8322,7 +8443,7 @@ +@@ -8322,7 +8476,7 @@ test -z "$ac_dir" && ac_dir=. if $as_executable_p "$ac_dir/$ac_word"; then ac_cv_path_TAR="$ac_dir/$ac_word" - echo "$as_me:8325: found $ac_dir/$ac_word" >&5 -+ echo "$as_me:8446: found $ac_dir/$ac_word" >&5 ++ echo "$as_me:8479: found $ac_dir/$ac_word" >&5 break fi done -@@ -8333,10 +8454,10 @@ +@@ -8333,10 +8487,10 @@ TAR=$ac_cv_path_TAR if test -n "$TAR"; then - echo "$as_me:8336: result: $TAR" >&5 -+ echo "$as_me:8457: result: $TAR" >&5 ++ echo "$as_me:8490: result: $TAR" >&5 echo "${ECHO_T}$TAR" >&6 else - echo "$as_me:8339: result: no" >&5 -+ echo "$as_me:8460: result: no" >&5 ++ echo "$as_me:8493: result: no" >&5 echo "${ECHO_T}no" >&6 fi -@@ -8420,7 +8541,7 @@ +@@ -8420,7 +8574,7 @@ : ${CONFIG_STATUS=./config.status} ac_clean_files_save=$ac_clean_files ac_clean_files="$ac_clean_files $CONFIG_STATUS" -{ echo "$as_me:8423: creating $CONFIG_STATUS" >&5 -+{ echo "$as_me:8544: creating $CONFIG_STATUS" >&5 ++{ echo "$as_me:8577: creating $CONFIG_STATUS" >&5 echo "$as_me: creating $CONFIG_STATUS" >&6;} cat >$CONFIG_STATUS <<_ACEOF #! $SHELL -@@ -8592,7 +8713,7 @@ +@@ -8592,7 +8746,7 @@ echo "$ac_cs_version"; exit 0 ;; --he | --h) # Conflict between --help and --header - { { echo "$as_me:8595: error: ambiguous option: $1 -+ { { echo "$as_me:8716: error: ambiguous option: $1 ++ { { echo "$as_me:8749: error: ambiguous option: $1 Try \`$0 --help' for more information." >&5 echo "$as_me: error: ambiguous option: $1 Try \`$0 --help' for more information." >&2;} -@@ -8611,7 +8732,7 @@ +@@ -8611,7 +8765,7 @@ ac_need_defaults=false;; # This is an error. - -*) { { echo "$as_me:8614: error: unrecognized option: $1 -+ -*) { { echo "$as_me:8735: error: unrecognized option: $1 ++ -*) { { echo "$as_me:8768: error: unrecognized option: $1 Try \`$0 --help' for more information." >&5 echo "$as_me: error: unrecognized option: $1 Try \`$0 --help' for more information." >&2;} -@@ -8664,7 +8785,7 @@ +@@ -8664,7 +8818,7 @@ "bxversion.h" ) CONFIG_FILES="$CONFIG_FILES bxversion.h" ;; "build/linux/DOC-linux.html" ) CONFIG_FILES="$CONFIG_FILES build/linux/DOC-linux.html" ;; "config.h" ) CONFIG_HEADERS="$CONFIG_HEADERS config.h" ;; - *) { { echo "$as_me:8667: error: invalid argument: $ac_config_target" >&5 -+ *) { { echo "$as_me:8788: error: invalid argument: $ac_config_target" >&5 ++ *) { { echo "$as_me:8821: error: invalid argument: $ac_config_target" >&5 echo "$as_me: error: invalid argument: $ac_config_target" >&2;} { (exit 1); exit 1; }; };; esac -@@ -8745,6 +8866,18 @@ +@@ -8745,6 +8899,18 @@ s,@PATH_SEPARATOR@,$PATH_SEPARATOR,;t t s,@DEFS@,$DEFS,;t t s,@LIBS@,$LIBS,;t t @@ -8675,73 +8804,73 @@ diff -urN clean/configure chkplat/configure s,@CC@,$CC,;t t s,@CFLAGS@,$CFLAGS,;t t s,@LDFLAGS@,$LDFLAGS,;t t -@@ -8928,7 +9061,7 @@ +@@ -8928,7 +9094,7 @@ esac if test x"$ac_file" != x-; then - { echo "$as_me:8931: creating $ac_file" >&5 -+ { echo "$as_me:9064: creating $ac_file" >&5 ++ { echo "$as_me:9097: creating $ac_file" >&5 echo "$as_me: creating $ac_file" >&6;} rm -f "$ac_file" fi -@@ -8946,7 +9079,7 @@ +@@ -8946,7 +9112,7 @@ -) echo $tmp/stdin ;; [\\/$]*) # Absolute (can't be DOS-style, as IFS=:) - test -f "$f" || { { echo "$as_me:8949: error: cannot find input file: $f" >&5 -+ test -f "$f" || { { echo "$as_me:9082: error: cannot find input file: $f" >&5 ++ test -f "$f" || { { echo "$as_me:9115: error: cannot find input file: $f" >&5 echo "$as_me: error: cannot find input file: $f" >&2;} { (exit 1); exit 1; }; } echo $f;; -@@ -8959,7 +9092,7 @@ +@@ -8959,7 +9125,7 @@ echo $srcdir/$f else # /dev/null tree - { { echo "$as_me:8962: error: cannot find input file: $f" >&5 -+ { { echo "$as_me:9095: error: cannot find input file: $f" >&5 ++ { { echo "$as_me:9128: error: cannot find input file: $f" >&5 echo "$as_me: error: cannot find input file: $f" >&2;} { (exit 1); exit 1; }; } fi;; -@@ -9019,7 +9152,7 @@ +@@ -9019,7 +9185,7 @@ * ) ac_file_in=$ac_file.in ;; esac - test x"$ac_file" != x- && { echo "$as_me:9022: creating $ac_file" >&5 -+ test x"$ac_file" != x- && { echo "$as_me:9155: creating $ac_file" >&5 ++ test x"$ac_file" != x- && { echo "$as_me:9188: creating $ac_file" >&5 echo "$as_me: creating $ac_file" >&6;} # First look for the input files in the build tree, otherwise in the -@@ -9030,7 +9163,7 @@ +@@ -9030,7 +9196,7 @@ -) echo $tmp/stdin ;; [\\/$]*) # Absolute (can't be DOS-style, as IFS=:) - test -f "$f" || { { echo "$as_me:9033: error: cannot find input file: $f" >&5 -+ test -f "$f" || { { echo "$as_me:9166: error: cannot find input file: $f" >&5 ++ test -f "$f" || { { echo "$as_me:9199: error: cannot find input file: $f" >&5 echo "$as_me: error: cannot find input file: $f" >&2;} { (exit 1); exit 1; }; } echo $f;; -@@ -9043,7 +9176,7 @@ +@@ -9043,7 +9209,7 @@ echo $srcdir/$f else # /dev/null tree - { { echo "$as_me:9046: error: cannot find input file: $f" >&5 -+ { { echo "$as_me:9179: error: cannot find input file: $f" >&5 ++ { { echo "$as_me:9212: error: cannot find input file: $f" >&5 echo "$as_me: error: cannot find input file: $f" >&2;} { (exit 1); exit 1; }; } fi;; -@@ -9160,7 +9293,7 @@ +@@ -9160,7 +9326,7 @@ rm -f $tmp/in if test x"$ac_file" != x-; then if cmp -s $ac_file $tmp/config.h 2>/dev/null; then - { echo "$as_me:9163: $ac_file is unchanged" >&5 -+ { echo "$as_me:9296: $ac_file is unchanged" >&5 ++ { echo "$as_me:9329: $ac_file is unchanged" >&5 echo "$as_me: $ac_file is unchanged" >&6;} else ac_dir=`$as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ diff -urN clean/configure.in chkplat/configure.in --- clean/configure.in Tue Mar 5 10:56:10 2002 -+++ chkplat/configure.in Wed Mar 6 15:59:30 2002 -@@ -13,6 +13,21 @@ ++++ chkplat/configure.in Wed Mar 6 17:55:34 2002 +@@ -13,6 +13,65 @@ changequote(<<, >>) changequote([, ]) @@ -8749,20 +8878,97 @@ diff -urN clean/configure.in chkplat/configure.in +AC_CANONICAL_HOST +AC_CANONICAL_TARGET + ++# this case statement defines the compile flags which are needed to ++# compile bochs on a platform. Don't put things like optimization settings ++# into the configure.in file, since people will want to be able to change ++# those settings by defining CFLAGS and CXXFLAGS before running configure. +case "$target" in -+ i[56]86-pc-cygwin) -+ ADD_FLAGS="-mno-cygwin -DWIN32 -march=pentium -mpentium" ++ *-pc-windows* | *-pc-winnt*) ++ DEFAULT_GUI=win32 # default to win32 gui + ;; + *-pc-cygwin) -+ ADD_FLAGS="-mno-cygwin -DWIN32" ++ ADD_FLAGS="-mno-cygwin -DWIN32" # required for cygwin compile ++ DEFAULT_GUI=win32 # default to win32 gui ++ ;; ++ *-macosx|*-darwin) ++ ADD_FLAGS="-fpascal-strings -fno-common -arch ppc -Wno-four-char-constants -Wno-unknown-pragmas -Dmacintosh" # required for macosx compile ++ DEFAULT_GUI=carbon # default to carbon ++ ;; ++ *-macos) ++ DEFAULT_GUI=macos # macos defaults to macos ++ ;; ++ *-beos) ++ DEFAULT_GUI=beos # beos defaults to beos ++ ;; ++ *-amigaos) ++ DEFAULT_GUI=amigaos # amigaos defaults to amigaos ++ ;; ++ *) ++ DEFAULT_GUI=x11 + ;; +esac +CFLAGS="$CFLAGS $ADD_FLAGS" +CXXFLAGS="$CXXFLAGS $ADD_FLAGS" ++ ++AC_MSG_CHECKING(for standard CFLAGS on this platform) ++AC_MSG_RESULT($ADD_FLAGS) ++AC_MSG_CHECKING(for default library on this platform) ++AC_MSG_RESULT($DEFAULT_GUI) ++ ++dnl // make sure X Windows is default if no other chosen ++if (test "$with_sdl" != yes) && \ ++ (test "$with_x11" != yes) && \ ++ (test "$with_beos" != yes) && \ ++ (test "$with_win32" != yes) && \ ++ (test "$with_nogui" != yes) && \ ++ (test "$with_win32_vcpp" != yes) && \ ++ (test "$with_term" != yes) && \ ++ (test "$with_rfb" != yes) && \ ++ (test "$with_amigaos" != yes) && \ ++ (test "$with_carbon" != yes) && \ ++ (test "$with_macos" != yes); then ++ # use DEFAULT_GUI. Set the appropriate variable. ++ # DEFAULT_GUI must be set to one of the names above. Otherwise, no ++ # valid $with_* variable will be set and who knows what will happen? ++ eval "with_${DEFAULT_GUI}=yes" ++fi + AC_PROG_CC AC_PROG_CXX AC_PROG_MAKE_SET +@@ -928,23 +987,6 @@ + [ --with-sdl use SDL libraries], + ) + +-AC_MSG_CHECKING(for gui library to use) +- +-dnl // make sure X Windows is default if no other chosen +-if (test "$with_sdl" != yes) && \ +- (test "$with_x11" != yes) && \ +- (test "$with_beos" != yes) && \ +- (test "$with_win32" != yes) && \ +- (test "$with_nogui" != yes) && \ +- (test "$with_win32_vcpp" != yes) && \ +- (test "$with_term" != yes) && \ +- (test "$with_rfb" != yes) && \ +- (test "$with_amigaos" != yes) && \ +- (test "$with_carbon" != yes) && \ +- (test "$with_macos" != yes); then +- with_x11=yes +-fi +- + dnl // DASH is option prefix for your platform + dnl // SLASH is directory for your platform + dnl // CXXFP is C++ File Prefix; the flag that tells the compiler +@@ -968,6 +1010,8 @@ + + INSTALL_TARGET=install_unix + INSTALL_LIST_FOR_PLATFORM= ++ ++AC_MSG_CHECKING(for gui library to use) + + if test "$with_x11" = yes; then + AC_MSG_RESULT(X windows) diff -urN clean/install-sh chkplat/install-sh --- clean/install-sh Wed Dec 31 19:00:00 1969 +++ chkplat/install-sh Wed Mar 6 15:59:50 2002