diff options
-rw-r--r-- | CHANGES | 7 | ||||
-rw-r--r-- | INSTALLATION | 8 | ||||
-rw-r--r-- | aclocal.m4 | 99 | ||||
-rw-r--r-- | config.hin | 3 | ||||
-rwxr-xr-x | configure | 6903 | ||||
-rw-r--r-- | configure.in | 7 |
6 files changed, 3659 insertions, 3368 deletions
diff --git a/CHANGES b/CHANGES index af442b91..e9bac7df 100644 --- a/CHANGES +++ b/CHANGES @@ -1,9 +1,12 @@ --- $LynxId: CHANGES,v 1.468 2010/04/07 22:56:00 tom Exp $ +-- $LynxId: CHANGES,v 1.470 2010/04/20 22:30:18 tom Exp $ =============================================================================== Changes since Lynx 2.8 release =============================================================================== -2010-04-07 (2.8.8dev.3) +2010-04-21 (2.8.8dev.3) +* add workaround in CF_SSL configure macro for broken openssl pkg-config script + on Redhat, CentOS -TD +* add configure option --disable-rpath-hack -TD * allow IPv6 addresses without "http://" prefix (Redhat #425879, patch by Kamil Dudka) * build-fixes for OpenSolaris aka Solaris 11 -TD diff --git a/INSTALLATION b/INSTALLATION index ca0ef28d..bd2c877e 100644 --- a/INSTALLATION +++ b/INSTALLATION @@ -357,6 +357,12 @@ II. Compile instructions -- UNIX completion), as well as the amount of time stalled without any data transferred. + --disable-rpath-hack + The rpath-hack makes it simpler to build programs, particularly with + the *BSD ports which may have essential libraries in unusual places. + But it can interfere with building an executable for the base system. + Use this option in that case. + --disable-scrollbar (define USE_SCROLLBAR) Turn off support for scrollbar on the right-margin of the screen. If you configure with ncurses, this works with the mouse on xterm, @@ -1375,4 +1381,4 @@ VIII. Acknowledgment -- 1999/04/24 - H. Nelson <lynx-admin@irm.nara.kindai.ac.jp> -- vile:txtmode --- $LynxId: INSTALLATION,v 1.110 2009/11/21 16:23:25 tom Exp $ +-- $LynxId: INSTALLATION,v 1.111 2010/04/20 09:44:11 tom Exp $ diff --git a/aclocal.m4 b/aclocal.m4 index 5470a85c..defb7abc 100644 --- a/aclocal.m4 +++ b/aclocal.m4 @@ -1,11 +1,11 @@ -dnl $LynxId: aclocal.m4,v 1.153 2010/04/03 23:17:17 tom Exp $ +dnl $LynxId: aclocal.m4,v 1.156 2010/04/20 23:06:24 tom Exp $ dnl Macros for auto-configure script. dnl by T.E.Dickey <dickey@invisible-island.net> dnl and Jim Spath <jspath@mail.bcpl.lib.md.us> dnl and Philippe De Muyter <phdm@macqel.be> dnl dnl Created: 1997/1/28 -dnl Updated: 2010/3/27 +dnl Updated: 2010/4/20 dnl dnl The autoconf used in Lynx development is GNU autoconf 2.13 or 2.52, patched dnl by Thomas Dickey. See your local GNU archives, and this URL: @@ -1937,6 +1937,25 @@ AC_SUBST(SHOW_CC) AC_SUBST(ECHO_CC) ])dnl dnl --------------------------------------------------------------------------- +dnl CF_DISABLE_RPATH_HACK version: 1 updated: 2010/04/11 10:54:00 +dnl --------------------- +dnl The rpath-hack makes it simpler to build programs, particularly with the +dnl *BSD ports which may have essential libraries in unusual places. But it +dnl can interfere with building an executable for the base system. Use this +dnl option in that case. +AC_DEFUN([CF_DISABLE_RPATH_HACK], +[ +AC_MSG_CHECKING(if rpath should be not be set) +CF_ARG_DISABLE(rpath-hack, + [ --disable-rpath-hack don't add rpath options for additional libraries], + [cf_disable_rpath_hack=yes], + [cf_disable_rpath_hack=no]) +AC_MSG_RESULT($cf_disable_rpath_hack) +if test "$cf_disable_rpath_hack" = no ; then + CF_RPATH_HACK +fi +]) +dnl --------------------------------------------------------------------------- dnl CF_ERRNO version: 5 updated: 1997/11/30 12:44:39 dnl -------- dnl Check if 'errno' is declared in <errno.h> @@ -4228,7 +4247,7 @@ $1=`echo "$2" | \ -e 's/-[[UD]]'"$3"'\(=[[^ ]]*\)\?[$]//g'` ])dnl dnl --------------------------------------------------------------------------- -dnl CF_RPATH_HACK version: 7 updated: 2010/04/02 20:27:47 +dnl CF_RPATH_HACK version: 8 updated: 2010/04/17 15:38:58 dnl ------------- AC_DEFUN([CF_RPATH_HACK], [ @@ -4237,6 +4256,15 @@ AC_MSG_CHECKING(for updated LDFLAGS) if test -n "$LD_RPATH_OPT" ; then AC_MSG_RESULT(maybe) + AC_CHECK_PROGS(cf_ldd_prog,ldd,no) + cf_rpath_list="/usr/lib /lib" + if test "$cf_ldd_prog" != no + then +AC_TRY_LINK([#include <stdio.h>], + [printf("Hello");], + [cf_rpath_list=`$cf_ldd_prog conftest$ac_exeext | fgrep / | sed -e 's%^.*[[ ]]/%/%' -e 's%/[[^/]][[^/]]*$%%' |sort -u`]) + fi + CF_VERBOSE(...checking EXTRA_LDFLAGS $EXTRA_LDFLAGS) CF_RPATH_HACK_2(LDFLAGS) @@ -4247,11 +4275,13 @@ fi AC_SUBST(EXTRA_LDFLAGS) ])dnl dnl --------------------------------------------------------------------------- -dnl CF_RPATH_HACK_2 version: 3 updated: 2010/04/02 20:27:47 +dnl CF_RPATH_HACK_2 version: 6 updated: 2010/04/17 16:31:24 dnl --------------- dnl Do one set of substitutions for CF_RPATH_HACK, adding an rpath option to dnl EXTRA_LDFLAGS for each -L option found. dnl +dnl $cf_rpath_list contains a list of directories to ignore. +dnl dnl $1 = variable name to update. The LDFLAGS variable should be the only one, dnl but LIBS often has misplaced -L options. AC_DEFUN([CF_RPATH_HACK_2], @@ -4263,13 +4293,38 @@ for cf_rpath_src in [$]$1 do case $cf_rpath_src in #(vi -L*) #(vi - if test "$LD_RPATH_OPT" = "-R " ; then - cf_rpath_tmp=`echo "$cf_rpath_src" |sed -e 's%-L%-R %'` - else - cf_rpath_tmp=`echo "$cf_rpath_src" |sed -e s%-L%$LD_RPATH_OPT%` + + # check if this refers to a directory which we will ignore + cf_rpath_skip=no + if test -n "$cf_rpath_list" + then + for cf_rpath_item in $cf_rpath_list + do + if test "x$cf_rpath_src" = "x-L$cf_rpath_item" + then + cf_rpath_skip=yes + break + fi + done + fi + + if test "$cf_rpath_skip" = no + then + # transform the option + if test "$LD_RPATH_OPT" = "-R " ; then + cf_rpath_tmp=`echo "$cf_rpath_src" |sed -e "s%-L%-R %"` + else + cf_rpath_tmp=`echo "$cf_rpath_src" |sed -e "s%-L%$LD_RPATH_OPT%"` + fi + + # if we have not already added this, add it now + cf_rpath_tst=`echo "$EXTRA_LDFLAGS" | sed -e "s%$cf_rpath_tmp %%"` + if test "x$cf_rpath_tst" = "x$EXTRA_LDFLAGS" + then + CF_VERBOSE(...Filter $cf_rpath_src ->$cf_rpath_tmp) + EXTRA_LDFLAGS="$cf_rpath_tmp $EXTRA_LDFLAGS" + fi fi - CF_VERBOSE(...Filter $cf_rpath_src ->$cf_rpath_tmp) - EXTRA_LDFLAGS="$cf_rpath_tmp $EXTRA_LDFLAGS" ;; esac cf_rpath_dst="$cf_rpath_dst $cf_rpath_src" @@ -4739,7 +4794,7 @@ define([CF_SRAND_PARSE],[ esac ])dnl dnl --------------------------------------------------------------------------- -dnl CF_SSL version: 19 updated: 2009/02/01 15:26:31 +dnl CF_SSL version: 20 updated: 2010/04/20 18:27:30 dnl ------ dnl Check for ssl library dnl $1 = [optional] directory in which the library may be found, set by AC_ARG_WITH @@ -4774,6 +4829,13 @@ AC_DEFUN([CF_SSL],[ cf_cv_header_path_ssl=$cf_cv_header_path_ssl/openssl fi CF_ADD_CFLAGS($cf_cflags_ssl) + + # workaround for broken openssl package using kerberos + case "$cf_cflags_ssl" in #(vi + *kerberos*) + cf_cv_have_ssl=maybe + ;; + esac fi if test -n "$cf_libs_ssl" ; then @@ -5228,6 +5290,21 @@ AC_MSG_RESULT($cf_cv_have_ttytype) test $cf_cv_have_ttytype = yes && AC_DEFINE(HAVE_TTYTYPE) ])dnl dnl --------------------------------------------------------------------------- +dnl CF_TYPE_LONG_LONG version: 1 updated: 2010/04/20 19:05:14 +dnl ----------------- +dnl Check for long long type. +AC_DEFUN([CF_TYPE_LONG_LONG],[ +AC_CACHE_CHECK(for long long type,cf_cv_type_long_long,[ + AC_TRY_COMPILE([],[long long foo = 123456789123456789LL], + [cf_cv_type_long_long=yes], + [cf_cv_type_long_long=no]) +]) + +if test "$cf_cv_type_long_long" = yes ; then + AC_DEFINE(HAVE_LONG_LONG) +fi +])dnl +dnl --------------------------------------------------------------------------- dnl CF_UNION_WAIT version: 5 updated: 1997/11/23 14:49:44 dnl ------------- dnl Check to see if the BSD-style union wait is declared. Some platforms may diff --git a/config.hin b/config.hin index f0d60adf..47ada330 100644 --- a/config.hin +++ b/config.hin @@ -1,5 +1,5 @@ /* - * $LynxId: config.hin,v 1.116 2009/11/21 15:52:17 tom Exp $ + * $LynxId: config.hin,v 1.117 2010/04/20 22:52:37 tom Exp $ * vile:cmode * * The configure script translates "config.hin" into "lynx_cfg.h" @@ -95,6 +95,7 @@ #undef HAVE_LIBUTF8_H /* may be needed for libncursesw */ #undef HAVE_LIMITS_H #undef HAVE_LOCALE_H +#undef HAVE_LONG_LONG /* CF_TYPE_LONG_LONG */ #undef HAVE_LSTAT /* CF_FUNC_LSTAT */ #undef HAVE_MALLOC_H /* AM_GNU_GETTEXT */ #undef HAVE_MBSTATE_T /* CF_WIDEC_CURSES */ diff --git a/configure b/configure index d4830182..719edec9 100755 --- a/configure +++ b/configure @@ -791,6 +791,7 @@ Special Libraries for PDCurses X11: --with-Xaw3d link with Xaw 3d library --with-neXtaw link with neXT Athena library --with-XawPlus link with Athena-Plus library + --disable-rpath-hack don't add rpath options for additional libraries Some influential environment variables: CC C compiler command @@ -984,7 +985,7 @@ if test -z "$CONFIG_SITE"; then fi for ac_site_file in $CONFIG_SITE; do if test -r "$ac_site_file"; then - { echo "$as_me:987: loading site script $ac_site_file" >&5 + { echo "$as_me:988: loading site script $ac_site_file" >&5 echo "$as_me: loading site script $ac_site_file" >&6;} cat "$ac_site_file" >&5 . "$ac_site_file" @@ -995,7 +996,7 @@ if test -r "$cache_file"; then # Some versions of bash will fail to source /dev/null (special # files actually), so we avoid doing that. if test -f "$cache_file"; then - { echo "$as_me:998: loading cache $cache_file" >&5 + { echo "$as_me:999: loading cache $cache_file" >&5 echo "$as_me: loading cache $cache_file" >&6;} case $cache_file in [\\/]* | ?:[\\/]* ) . $cache_file;; @@ -1003,7 +1004,7 @@ echo "$as_me: loading cache $cache_file" >&6;} esac fi else - { echo "$as_me:1006: creating cache $cache_file" >&5 + { echo "$as_me:1007: creating cache $cache_file" >&5 echo "$as_me: creating cache $cache_file" >&6;} >$cache_file fi @@ -1019,21 +1020,21 @@ for ac_var in `(set) 2>&1 | eval ac_new_val="\$ac_env_${ac_var}_value" case $ac_old_set,$ac_new_set in set,) - { echo "$as_me:1022: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&5 + { echo "$as_me:1023: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&5 echo "$as_me: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&2;} ac_cache_corrupted=: ;; ,set) - { echo "$as_me:1026: error: \`$ac_var' was not set in the previous run" >&5 + { echo "$as_me:1027: error: \`$ac_var' was not set in the previous run" >&5 echo "$as_me: error: \`$ac_var' was not set in the previous run" >&2;} ac_cache_corrupted=: ;; ,);; *) if test "x$ac_old_val" != "x$ac_new_val"; then - { echo "$as_me:1032: error: \`$ac_var' has changed since the previous run:" >&5 + { echo "$as_me:1033: error: \`$ac_var' has changed since the previous run:" >&5 echo "$as_me: error: \`$ac_var' has changed since the previous run:" >&2;} - { echo "$as_me:1034: former value: $ac_old_val" >&5 + { echo "$as_me:1035: former value: $ac_old_val" >&5 echo "$as_me: former value: $ac_old_val" >&2;} - { echo "$as_me:1036: current value: $ac_new_val" >&5 + { echo "$as_me:1037: current value: $ac_new_val" >&5 echo "$as_me: current value: $ac_new_val" >&2;} ac_cache_corrupted=: fi;; @@ -1052,9 +1053,9 @@ echo "$as_me: current value: $ac_new_val" >&2;} fi done if $ac_cache_corrupted; then - { echo "$as_me:1055: error: changes in the environment can compromise the build" >&5 + { echo "$as_me:1056: error: changes in the environment can compromise the build" >&5 echo "$as_me: error: changes in the environment can compromise the build" >&2;} - { { echo "$as_me:1057: error: run \`make distclean' and/or \`rm $cache_file' and start over" >&5 + { { echo "$as_me:1058: error: run \`make distclean' and/or \`rm $cache_file' and start over" >&5 echo "$as_me: error: run \`make distclean' and/or \`rm $cache_file' and start over" >&2;} { (exit 1); exit 1; }; } fi @@ -1075,10 +1076,10 @@ esac echo "#! $SHELL" >conftest.sh echo "exit 0" >>conftest.sh chmod +x conftest.sh -if { (echo "$as_me:1078: PATH=\".;.\"; conftest.sh") >&5 +if { (echo "$as_me:1079: PATH=\".;.\"; conftest.sh") >&5 (PATH=".;."; conftest.sh) 2>&5 ac_status=$? - echo "$as_me:1081: \$? = $ac_status" >&5 + echo "$as_me:1082: \$? = $ac_status" >&5 (exit $ac_status); }; then ac_path_separator=';' else @@ -1113,7 +1114,7 @@ for ac_dir in $srcdir $srcdir/.. $srcdir/../..; do fi done if test -z "$ac_aux_dir"; then - { { echo "$as_me:1116: error: cannot find install-sh or install.sh in $srcdir $srcdir/.. $srcdir/../.." >&5 + { { echo "$as_me:1117: error: cannot find install-sh or install.sh in $srcdir $srcdir/.. $srcdir/../.." >&5 echo "$as_me: error: cannot find install-sh or install.sh in $srcdir $srcdir/.. $srcdir/../.." >&2;} { (exit 1); exit 1; }; } fi @@ -1123,11 +1124,11 @@ ac_configure="$SHELL $ac_aux_dir/configure" # This should be Cygnus configure. # Make sure we can run config.sub. $ac_config_sub sun4 >/dev/null 2>&1 || - { { echo "$as_me:1126: error: cannot run $ac_config_sub" >&5 + { { echo "$as_me:1127: error: cannot run $ac_config_sub" >&5 echo "$as_me: error: cannot run $ac_config_sub" >&2;} { (exit 1); exit 1; }; } -echo "$as_me:1130: checking build system type" >&5 +echo "$as_me:1131: checking build system type" >&5 echo $ECHO_N "checking build system type... $ECHO_C" >&6 if test "${ac_cv_build+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -1136,23 +1137,23 @@ else test -z "$ac_cv_build_alias" && ac_cv_build_alias=`$ac_config_guess` test -z "$ac_cv_build_alias" && - { { echo "$as_me:1139: error: cannot guess build type; you must specify one" >&5 + { { echo "$as_me:1140: error: cannot guess build type; you must specify one" >&5 echo "$as_me: error: cannot guess build type; you must specify one" >&2;} { (exit 1); exit 1; }; } ac_cv_build=`$ac_config_sub $ac_cv_build_alias` || - { { echo "$as_me:1143: error: $ac_config_sub $ac_cv_build_alias failed." >&5 + { { echo "$as_me:1144: error: $ac_config_sub $ac_cv_build_alias failed." >&5 echo "$as_me: error: $ac_config_sub $ac_cv_build_alias failed." >&2;} { (exit 1); exit 1; }; } fi -echo "$as_me:1148: result: $ac_cv_build" >&5 +echo "$as_me:1149: result: $ac_cv_build" >&5 echo "${ECHO_T}$ac_cv_build" >&6 build=$ac_cv_build build_cpu=`echo $ac_cv_build | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\1/'` build_vendor=`echo $ac_cv_build | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\2/'` build_os=`echo $ac_cv_build | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\3/'` -echo "$as_me:1155: checking host system type" >&5 +echo "$as_me:1156: checking host system type" >&5 echo $ECHO_N "checking host system type... $ECHO_C" >&6 if test "${ac_cv_host+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -1161,12 +1162,12 @@ else test -z "$ac_cv_host_alias" && ac_cv_host_alias=$ac_cv_build_alias ac_cv_host=`$ac_config_sub $ac_cv_host_alias` || - { { echo "$as_me:1164: error: $ac_config_sub $ac_cv_host_alias failed" >&5 + { { echo "$as_me:1165: error: $ac_config_sub $ac_cv_host_alias failed" >&5 echo "$as_me: error: $ac_config_sub $ac_cv_host_alias failed" >&2;} { (exit 1); exit 1; }; } fi -echo "$as_me:1169: result: $ac_cv_host" >&5 +echo "$as_me:1170: result: $ac_cv_host" >&5 echo "${ECHO_T}$ac_cv_host" >&6 host=$ac_cv_host host_cpu=`echo $ac_cv_host | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\1/'` @@ -1174,7 +1175,7 @@ host_vendor=`echo $ac_cv_host | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\2/'` host_os=`echo $ac_cv_host | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\3/'` if test -f $srcdir/config.guess || test -f $ac_aux_dir/config.guess ; then - echo "$as_me:1177: checking target system type" >&5 + echo "$as_me:1178: checking target system type" >&5 echo $ECHO_N "checking target system type... $ECHO_C" >&6 if test "${ac_cv_target+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -1183,12 +1184,12 @@ else test "x$ac_cv_target_alias" = "x" && ac_cv_target_alias=$ac_cv_host_alias ac_cv_target=`$ac_config_sub $ac_cv_target_alias` || - { { echo "$as_me:1186: error: $ac_config_sub $ac_cv_target_alias failed" >&5 + { { echo "$as_me:1187: error: $ac_config_sub $ac_cv_target_alias failed" >&5 echo "$as_me: error: $ac_config_sub $ac_cv_target_alias failed" >&2;} { (exit 1); exit 1; }; } fi -echo "$as_me:1191: result: $ac_cv_target" >&5 +echo "$as_me:1192: result: $ac_cv_target" >&5 echo "${ECHO_T}$ac_cv_target" >&6 target=$ac_cv_target target_cpu=`echo $ac_cv_target | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\1/'` @@ -1219,13 +1220,13 @@ else fi test -z "$system_name" && system_name="$cf_cv_system_name" -test -n "$cf_cv_system_name" && echo "$as_me:1222: result: Configuring for $cf_cv_system_name" >&5 +test -n "$cf_cv_system_name" && echo "$as_me:1223: result: Configuring for $cf_cv_system_name" >&5 echo "${ECHO_T}Configuring for $cf_cv_system_name" >&6 if test ".$system_name" != ".$cf_cv_system_name" ; then - echo "$as_me:1226: result: Cached system name ($system_name) does not agree with actual ($cf_cv_system_name)" >&5 + echo "$as_me:1227: result: Cached system name ($system_name) does not agree with actual ($cf_cv_system_name)" >&5 echo "${ECHO_T}Cached system name ($system_name) does not agree with actual ($cf_cv_system_name)" >&6 - { { echo "$as_me:1228: error: \"Please remove config.cache and try again.\"" >&5 + { { echo "$as_me:1229: error: \"Please remove config.cache and try again.\"" >&5 echo "$as_me: error: \"Please remove config.cache and try again.\"" >&2;} { (exit 1); exit 1; }; } fi @@ -1233,7 +1234,7 @@ fi # Check whether --with-system-type or --without-system-type was given. if test "${with_system_type+set}" = set; then withval="$with_system_type" - { echo "$as_me:1236: WARNING: overriding system type $host_os to $withval" >&5 + { echo "$as_me:1237: WARNING: overriding system type $host_os to $withval" >&5 echo "$as_me: WARNING: overriding system type $host_os to $withval" >&2;} host_os=$withval fi; @@ -1242,7 +1243,7 @@ PACKAGE=lynx # $Format: "VERSION=$ProjectVersion$"$ VERSION=2.8.8dev.2 -echo "$as_me:1245: checking for DESTDIR" >&5 +echo "$as_me:1246: checking for DESTDIR" >&5 echo $ECHO_N "checking for DESTDIR... $ECHO_C" >&6 # Check whether --with-destdir or --without-destdir was given. @@ -1278,7 +1279,7 @@ case ".$withval" in #(vi withval=`echo $withval | sed -e s%NONE%$cf_path_syntax%` ;; *) - { { echo "$as_me:1281: error: expected a pathname, not \"$withval\"" >&5 + { { echo "$as_me:1282: error: expected a pathname, not \"$withval\"" >&5 echo "$as_me: error: expected a pathname, not \"$withval\"" >&2;} { (exit 1); exit 1; }; } ;; @@ -1287,7 +1288,7 @@ esac fi DESTDIR="$withval" -echo "$as_me:1290: result: $DESTDIR" >&5 +echo "$as_me:1291: result: $DESTDIR" >&5 echo "${ECHO_T}$DESTDIR" >&6 case $host_os in @@ -1306,7 +1307,7 @@ ac_main_return=return 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:1309: 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_CC+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -1321,7 +1322,7 @@ for ac_dir in $ac_dummy; do 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:1324: found $ac_dir/$ac_word" >&5 +echo "$as_me:1325: found $ac_dir/$ac_word" >&5 break done @@ -1329,10 +1330,10 @@ fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then - echo "$as_me:1332: result: $CC" >&5 + echo "$as_me:1333: result: $CC" >&5 echo "${ECHO_T}$CC" >&6 else - echo "$as_me:1335: result: no" >&5 + echo "$as_me:1336: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -1341,7 +1342,7 @@ if test -z "$ac_cv_prog_CC"; then 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:1344: checking for $ac_word" >&5 +echo "$as_me:1345: 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 @@ -1356,7 +1357,7 @@ for ac_dir in $ac_dummy; do test -z "$ac_dir" && ac_dir=. $as_executable_p "$ac_dir/$ac_word" || continue ac_cv_prog_ac_ct_CC="gcc" -echo "$as_me:1359: found $ac_dir/$ac_word" >&5 +echo "$as_me:1360: found $ac_dir/$ac_word" >&5 break done @@ -1364,10 +1365,10 @@ fi fi ac_ct_CC=$ac_cv_prog_ac_ct_CC if test -n "$ac_ct_CC"; then - echo "$as_me:1367: result: $ac_ct_CC" >&5 + echo "$as_me:1368: result: $ac_ct_CC" >&5 echo "${ECHO_T}$ac_ct_CC" >&6 else - echo "$as_me:1370: result: no" >&5 + echo "$as_me:1371: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -1380,7 +1381,7 @@ if test -z "$CC"; then 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:1383: checking for $ac_word" >&5 +echo "$as_me:1384: 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 @@ -1395,7 +1396,7 @@ for ac_dir in $ac_dummy; do 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:1398: found $ac_dir/$ac_word" >&5 +echo "$as_me:1399: found $ac_dir/$ac_word" >&5 break done @@ -1403,10 +1404,10 @@ fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then - echo "$as_me:1406: result: $CC" >&5 + echo "$as_me:1407: result: $CC" >&5 echo "${ECHO_T}$CC" >&6 else - echo "$as_me:1409: result: no" >&5 + echo "$as_me:1410: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -1415,7 +1416,7 @@ if test -z "$ac_cv_prog_CC"; then 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:1418: checking for $ac_word" >&5 +echo "$as_me:1419: 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 @@ -1430,7 +1431,7 @@ for ac_dir in $ac_dummy; do test -z "$ac_dir" && ac_dir=. $as_executable_p "$ac_dir/$ac_word" || continue ac_cv_prog_ac_ct_CC="cc" -echo "$as_me:1433: found $ac_dir/$ac_word" >&5 +echo "$as_me:1434: found $ac_dir/$ac_word" >&5 break done @@ -1438,10 +1439,10 @@ fi fi ac_ct_CC=$ac_cv_prog_ac_ct_CC if test -n "$ac_ct_CC"; then - echo "$as_me:1441: result: $ac_ct_CC" >&5 + echo "$as_me:1442: result: $ac_ct_CC" >&5 echo "${ECHO_T}$ac_ct_CC" >&6 else - echo "$as_me:1444: result: no" >&5 + echo "$as_me:1445: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -1454,7 +1455,7 @@ fi 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:1457: checking for $ac_word" >&5 +echo "$as_me:1458: 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 @@ -1474,7 +1475,7 @@ if test "$ac_dir/$ac_word" = "/usr/ucb/cc"; then continue fi ac_cv_prog_CC="cc" -echo "$as_me:1477: found $ac_dir/$ac_word" >&5 +echo "$as_me:1478: found $ac_dir/$ac_word" >&5 break done @@ -1496,10 +1497,10 @@ fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then - echo "$as_me:1499: result: $CC" >&5 + echo "$as_me:1500: result: $CC" >&5 echo "${ECHO_T}$CC" >&6 else - echo "$as_me:1502: result: no" >&5 + echo "$as_me:1503: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -1510,7 +1511,7 @@ if test -z "$CC"; then 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:1513: checking for $ac_word" >&5 +echo "$as_me:1514: 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 @@ -1525,7 +1526,7 @@ for ac_dir in $ac_dummy; do 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:1528: found $ac_dir/$ac_word" >&5 +echo "$as_me:1529: found $ac_dir/$ac_word" >&5 break done @@ -1533,10 +1534,10 @@ fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then - echo "$as_me:1536: result: $CC" >&5 + echo "$as_me:1537: result: $CC" >&5 echo "${ECHO_T}$CC" >&6 else - echo "$as_me:1539: result: no" >&5 + echo "$as_me:1540: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -1549,7 +1550,7 @@ if test -z "$CC"; then 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:1552: checking for $ac_word" >&5 +echo "$as_me:1553: 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 @@ -1564,7 +1565,7 @@ for ac_dir in $ac_dummy; do 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:1567: found $ac_dir/$ac_word" >&5 +echo "$as_me:1568: found $ac_dir/$ac_word" >&5 break done @@ -1572,10 +1573,10 @@ fi fi ac_ct_CC=$ac_cv_prog_ac_ct_CC if test -n "$ac_ct_CC"; then - echo "$as_me:1575: result: $ac_ct_CC" >&5 + echo "$as_me:1576: result: $ac_ct_CC" >&5 echo "${ECHO_T}$ac_ct_CC" >&6 else - echo "$as_me:1578: result: no" >&5 + echo "$as_me:1579: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -1587,32 +1588,32 @@ fi fi -test -z "$CC" && { { echo "$as_me:1590: error: no acceptable cc found in \$PATH" >&5 +test -z "$CC" && { { echo "$as_me:1591: 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:1595:" \ +echo "$as_me:1596:" \ "checking for C compiler version" >&5 ac_compiler=`set X $ac_compile; echo $2` -{ (eval echo "$as_me:1598: \"$ac_compiler --version </dev/null >&5\"") >&5 +{ (eval echo "$as_me:1599: \"$ac_compiler --version </dev/null >&5\"") >&5 (eval $ac_compiler --version </dev/null >&5) 2>&5 ac_status=$? - echo "$as_me:1601: \$? = $ac_status" >&5 + echo "$as_me:1602: \$? = $ac_status" >&5 (exit $ac_status); } -{ (eval echo "$as_me:1603: \"$ac_compiler -v </dev/null >&5\"") >&5 +{ (eval echo "$as_me:1604: \"$ac_compiler -v </dev/null >&5\"") >&5 (eval $ac_compiler -v </dev/null >&5) 2>&5 ac_status=$? - echo "$as_me:1606: \$? = $ac_status" >&5 + echo "$as_me:1607: \$? = $ac_status" >&5 (exit $ac_status); } -{ (eval echo "$as_me:1608: \"$ac_compiler -V </dev/null >&5\"") >&5 +{ (eval echo "$as_me:1609: \"$ac_compiler -V </dev/null >&5\"") >&5 (eval $ac_compiler -V </dev/null >&5) 2>&5 ac_status=$? - echo "$as_me:1611: \$? = $ac_status" >&5 + echo "$as_me:1612: \$? = $ac_status" >&5 (exit $ac_status); } cat >conftest.$ac_ext <<_ACEOF -#line 1615 "configure" +#line 1616 "configure" #include "confdefs.h" int @@ -1628,13 +1629,13 @@ ac_clean_files="$ac_clean_files a.out a.exe" # 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:1631: checking for C compiler default output" >&5 +echo "$as_me:1632: 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:1634: \"$ac_link_default\"") >&5 +if { (eval echo "$as_me:1635: \"$ac_link_default\"") >&5 (eval $ac_link_default) 2>&5 ac_status=$? - echo "$as_me:1637: \$? = $ac_status" >&5 + echo "$as_me:1638: \$? = $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 @@ -1657,34 +1658,34 @@ done else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 -{ { echo "$as_me:1660: error: C compiler cannot create executables" >&5 +{ { echo "$as_me:1661: 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:1666: result: $ac_file" >&5 +echo "$as_me:1667: 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:1671: checking whether the C compiler works" >&5 +echo "$as_me:1672: 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:1677: \"$ac_try\"") >&5 + { (eval echo "$as_me:1678: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:1680: \$? = $ac_status" >&5 + echo "$as_me:1681: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cross_compiling=no else if test "$cross_compiling" = maybe; then cross_compiling=yes else - { { echo "$as_me:1687: error: cannot run C compiled programs. + { { echo "$as_me:1688: 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;} @@ -1692,24 +1693,24 @@ If you meant to cross compile, use \`--host'." >&2;} fi fi fi -echo "$as_me:1695: result: yes" >&5 +echo "$as_me:1696: result: yes" >&5 echo "${ECHO_T}yes" >&6 rm -f a.out a.exe conftest$ac_cv_exeext ac_clean_files=$ac_clean_files_save # Check the compiler produces executables we can run. If not, either # the compiler is broken, or we cross compile. -echo "$as_me:1702: checking whether we are cross compiling" >&5 +echo "$as_me:1703: checking whether we are cross compiling" >&5 echo $ECHO_N "checking whether we are cross compiling... $ECHO_C" >&6 -echo "$as_me:1704: result: $cross_compiling" >&5 +echo "$as_me:1705: result: $cross_compiling" >&5 echo "${ECHO_T}$cross_compiling" >&6 -echo "$as_me:1707: checking for executable suffix" >&5 +echo "$as_me:1708: checking for executable suffix" >&5 echo $ECHO_N "checking for executable suffix... $ECHO_C" >&6 -if { (eval echo "$as_me:1709: \"$ac_link\"") >&5 +if { (eval echo "$as_me:1710: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:1712: \$? = $ac_status" >&5 + echo "$as_me:1713: \$? = $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 @@ -1725,25 +1726,25 @@ for ac_file in `(ls conftest.exe; ls conftest; ls conftest.*) 2>/dev/null`; do esac done else - { { echo "$as_me:1728: error: cannot compute EXEEXT: cannot compile and link" >&5 + { { echo "$as_me:1729: 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:1734: result: $ac_cv_exeext" >&5 +echo "$as_me:1735: 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:1740: checking for object suffix" >&5 +echo "$as_me:1741: 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 1746 "configure" +#line 1747 "configure" #include "confdefs.h" int @@ -1755,10 +1756,10 @@ main () } _ACEOF rm -f conftest.o conftest.obj -if { (eval echo "$as_me:1758: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:1759: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:1761: \$? = $ac_status" >&5 + echo "$as_me:1762: \$? = $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 @@ -1770,24 +1771,24 @@ done else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 -{ { echo "$as_me:1773: error: cannot compute OBJEXT: cannot compile" >&5 +{ { echo "$as_me:1774: error: cannot compute OBJEXT: cannot compile" >&5 echo "$as_me: error: cannot compute OBJEXT: cannot compile" >&2;} { (exit 1); exit 1; }; } fi rm -f conftest.$ac_cv_objext conftest.$ac_ext fi -echo "$as_me:1780: result: $ac_cv_objext" >&5 +echo "$as_me:1781: result: $ac_cv_objext" >&5 echo "${ECHO_T}$ac_cv_objext" >&6 OBJEXT=$ac_cv_objext ac_objext=$OBJEXT -echo "$as_me:1784: checking whether we are using the GNU C compiler" >&5 +echo "$as_me:1785: 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 1790 "configure" +#line 1791 "configure" #include "confdefs.h" int @@ -1802,16 +1803,16 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:1805: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:1806: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:1808: \$? = $ac_status" >&5 + echo "$as_me:1809: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:1811: \"$ac_try\"") >&5 + { (eval echo "$as_me:1812: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:1814: \$? = $ac_status" >&5 + echo "$as_me:1815: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_compiler_gnu=yes else @@ -1823,19 +1824,19 @@ rm -f conftest.$ac_objext conftest.$ac_ext ac_cv_c_compiler_gnu=$ac_compiler_gnu fi -echo "$as_me:1826: result: $ac_cv_c_compiler_gnu" >&5 +echo "$as_me:1827: 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:1832: checking whether $CC accepts -g" >&5 +echo "$as_me:1833: 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 1838 "configure" +#line 1839 "configure" #include "confdefs.h" int @@ -1847,16 +1848,16 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:1850: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:1851: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:1853: \$? = $ac_status" >&5 + echo "$as_me:1854: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:1856: \"$ac_try\"") >&5 + { (eval echo "$as_me:1857: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:1859: \$? = $ac_status" >&5 + echo "$as_me:1860: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_prog_cc_g=yes else @@ -1866,7 +1867,7 @@ ac_cv_prog_cc_g=no fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:1869: result: $ac_cv_prog_cc_g" >&5 +echo "$as_me:1870: 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 @@ -1893,16 +1894,16 @@ cat >conftest.$ac_ext <<_ACEOF #endif _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:1896: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:1897: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:1899: \$? = $ac_status" >&5 + echo "$as_me:1900: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:1902: \"$ac_try\"") >&5 + { (eval echo "$as_me:1903: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:1905: \$? = $ac_status" >&5 + echo "$as_me:1906: \$? = $ac_status" >&5 (exit $ac_status); }; }; then for ac_declaration in \ ''\ @@ -1914,7 +1915,7 @@ if { (eval echo "$as_me:1896: \"$ac_compile\"") >&5 'void exit (int);' do cat >conftest.$ac_ext <<_ACEOF -#line 1917 "configure" +#line 1918 "configure" #include "confdefs.h" #include <stdlib.h> $ac_declaration @@ -1927,16 +1928,16 @@ exit (42); } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:1930: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:1931: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:1933: \$? = $ac_status" >&5 + echo "$as_me:1934: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:1936: \"$ac_try\"") >&5 + { (eval echo "$as_me:1937: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:1939: \$? = $ac_status" >&5 + echo "$as_me:1940: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -1946,7 +1947,7 @@ continue fi rm -f conftest.$ac_objext conftest.$ac_ext cat >conftest.$ac_ext <<_ACEOF -#line 1949 "configure" +#line 1950 "configure" #include "confdefs.h" $ac_declaration int @@ -1958,16 +1959,16 @@ exit (42); } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:1961: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:1962: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:1964: \$? = $ac_status" >&5 + echo "$as_me:1965: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:1967: \"$ac_try\"") >&5 + { (eval echo "$as_me:1968: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:1970: \$? = $ac_status" >&5 + echo "$as_me:1971: \$? = $ac_status" >&5 (exit $ac_status); }; }; then break else @@ -2001,7 +2002,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 ac_main_return=return -echo "$as_me:2004: checking how to run the C preprocessor" >&5 +echo "$as_me:2005: 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 @@ -2022,18 +2023,18 @@ do # 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 2025 "configure" +#line 2026 "configure" #include "confdefs.h" #include <assert.h> Syntax error _ACEOF -if { (eval echo "$as_me:2030: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:2031: \"$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:2036: \$? = $ac_status" >&5 + echo "$as_me:2037: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -2056,17 +2057,17 @@ rm -f conftest.err conftest.$ac_ext # OK, works on sane cases. Now check whether non-existent headers # can be detected and how. cat >conftest.$ac_ext <<_ACEOF -#line 2059 "configure" +#line 2060 "configure" #include "confdefs.h" #include <ac_nonexistent.h> _ACEOF -if { (eval echo "$as_me:2063: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:2064: \"$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:2069: \$? = $ac_status" >&5 + echo "$as_me:2070: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -2103,7 +2104,7 @@ fi else ac_cv_prog_CPP=$CPP fi -echo "$as_me:2106: result: $CPP" >&5 +echo "$as_me:2107: result: $CPP" >&5 echo "${ECHO_T}$CPP" >&6 ac_preproc_ok=false for ac_c_preproc_warn_flag in '' yes @@ -2113,18 +2114,18 @@ do # 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 2116 "configure" +#line 2117 "configure" #include "confdefs.h" #include <assert.h> Syntax error _ACEOF -if { (eval echo "$as_me:2121: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:2122: \"$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:2127: \$? = $ac_status" >&5 + echo "$as_me:2128: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -2147,17 +2148,17 @@ rm -f conftest.err conftest.$ac_ext # OK, works on sane cases. Now check whether non-existent headers # can be detected and how. cat >conftest.$ac_ext <<_ACEOF -#line 2150 "configure" +#line 2151 "configure" #include "confdefs.h" #include <ac_nonexistent.h> _ACEOF -if { (eval echo "$as_me:2154: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:2155: \"$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:2160: \$? = $ac_status" >&5 + echo "$as_me:2161: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -2185,7 +2186,7 @@ rm -f conftest.err conftest.$ac_ext if $ac_preproc_ok; then : else - { { echo "$as_me:2188: error: C preprocessor \"$CPP\" fails sanity check" >&5 + { { echo "$as_me:2189: error: C preprocessor \"$CPP\" fails sanity check" >&5 echo "$as_me: error: C preprocessor \"$CPP\" fails sanity check" >&2;} { (exit 1); exit 1; }; } fi @@ -2197,27 +2198,27 @@ ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $ ac_compiler_gnu=$ac_cv_c_compiler_gnu ac_main_return=return -echo "$as_me:2200: checking whether ln -s works" >&5 +echo "$as_me:2201: checking whether ln -s works" >&5 echo $ECHO_N "checking whether ln -s works... $ECHO_C" >&6 LN_S=$as_ln_s if test "$LN_S" = "ln -s"; then - echo "$as_me:2204: result: yes" >&5 + echo "$as_me:2205: result: yes" >&5 echo "${ECHO_T}yes" >&6 else - echo "$as_me:2207: result: no, using $LN_S" >&5 + echo "$as_me:2208: result: no, using $LN_S" >&5 echo "${ECHO_T}no, using $LN_S" >&6 fi case $host_os in mingw*) LN_S="cp -p" -echo "$as_me:2214: result: Override: No symbolic links in mingw." >&5 +echo "$as_me:2215: result: Override: No symbolic links in mingw." >&5 echo "${ECHO_T}Override: No symbolic links in mingw." >&6 ;; *) ;; esac -echo "$as_me:2220: checking whether ${MAKE-make} sets \${MAKE}" >&5 +echo "$as_me:2221: 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 @@ -2237,11 +2238,11 @@ fi rm -f conftest.make fi if eval "test \"`echo '$ac_cv_prog_make_'${ac_make}_set`\" = yes"; then - echo "$as_me:2240: result: yes" >&5 + echo "$as_me:2241: result: yes" >&5 echo "${ECHO_T}yes" >&6 SET_MAKE= else - echo "$as_me:2244: result: no" >&5 + echo "$as_me:2245: result: no" >&5 echo "${ECHO_T}no" >&6 SET_MAKE="MAKE=${MAKE-make}" fi @@ -2258,7 +2259,7 @@ fi # AFS /usr/afsws/bin/install, which mishandles nonexistent args # SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff" # ./install, which can be erroneously created by make from ./install.sh. -echo "$as_me:2261: checking for a BSD compatible install" >&5 +echo "$as_me:2262: checking for a BSD compatible install" >&5 echo $ECHO_N "checking for a BSD compatible install... $ECHO_C" >&6 if test -z "$INSTALL"; then if test "${ac_cv_path_install+set}" = set; then @@ -2307,7 +2308,7 @@ fi INSTALL=$ac_install_sh fi fi -echo "$as_me:2310: result: $INSTALL" >&5 +echo "$as_me:2311: result: $INSTALL" >&5 echo "${ECHO_T}$INSTALL" >&6 # Use test -z because SunOS4 sh mishandles braces in ${var-val}. @@ -2322,7 +2323,7 @@ for ac_prog in 'bison -y' byacc 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:2325: checking for $ac_word" >&5 +echo "$as_me:2326: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_prog_YACC+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -2337,7 +2338,7 @@ for ac_dir in $ac_dummy; do test -z "$ac_dir" && ac_dir=. $as_executable_p "$ac_dir/$ac_word" || continue ac_cv_prog_YACC="$ac_prog" -echo "$as_me:2340: found $ac_dir/$ac_word" >&5 +echo "$as_me:2341: found $ac_dir/$ac_word" >&5 break done @@ -2345,10 +2346,10 @@ fi fi YACC=$ac_cv_prog_YACC if test -n "$YACC"; then - echo "$as_me:2348: result: $YACC" >&5 + echo "$as_me:2349: result: $YACC" >&5 echo "${ECHO_T}$YACC" >&6 else - echo "$as_me:2351: result: no" >&5 + echo "$as_me:2352: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -2360,7 +2361,7 @@ for ac_prog in lint alint lclint tdlint 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:2363: checking for $ac_word" >&5 +echo "$as_me:2364: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_prog_LINT+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -2375,7 +2376,7 @@ for ac_dir in $ac_dummy; do test -z "$ac_dir" && ac_dir=. $as_executable_p "$ac_dir/$ac_word" || continue ac_cv_prog_LINT="$ac_prog" -echo "$as_me:2378: found $ac_dir/$ac_word" >&5 +echo "$as_me:2379: found $ac_dir/$ac_word" >&5 break done @@ -2383,20 +2384,20 @@ fi fi LINT=$ac_cv_prog_LINT if test -n "$LINT"; then - echo "$as_me:2386: result: $LINT" >&5 + echo "$as_me:2387: result: $LINT" >&5 echo "${ECHO_T}$LINT" >&6 else - echo "$as_me:2389: result: no" >&5 + echo "$as_me:2390: result: no" >&5 echo "${ECHO_T}no" >&6 fi test -n "$LINT" && break done -echo "$as_me:2396: checking for AIX" >&5 +echo "$as_me:2397: checking for AIX" >&5 echo $ECHO_N "checking for AIX... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF -#line 2399 "configure" +#line 2400 "configure" #include "confdefs.h" #ifdef _AIX yes @@ -2405,24 +2406,24 @@ cat >conftest.$ac_ext <<_ACEOF _ACEOF if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | egrep "yes" >/dev/null 2>&1; then - echo "$as_me:2408: result: yes" >&5 + echo "$as_me:2409: result: yes" >&5 echo "${ECHO_T}yes" >&6 cat >>confdefs.h <<\EOF #define _ALL_SOURCE 1 EOF else - echo "$as_me:2415: result: no" >&5 + echo "$as_me:2416: result: no" >&5 echo "${ECHO_T}no" >&6 fi rm -f conftest* -echo "$as_me:2420: checking for POSIXized ISC" >&5 +echo "$as_me:2421: checking for POSIXized ISC" >&5 echo $ECHO_N "checking for POSIXized ISC... $ECHO_C" >&6 if test -d /etc/conf/kconfig.d && grep _POSIX_VERSION /usr/include/sys/unistd.h >/dev/null 2>&1 then - echo "$as_me:2425: result: yes" >&5 + echo "$as_me:2426: result: yes" >&5 echo "${ECHO_T}yes" >&6 ISC=yes # If later tests want to check for ISC. @@ -2436,7 +2437,7 @@ EOF CC="$CC -Xp" fi else - echo "$as_me:2439: result: no" >&5 + echo "$as_me:2440: result: no" >&5 echo "${ECHO_T}no" >&6 ISC= fi @@ -2477,7 +2478,7 @@ else 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:2480: checking for $ac_word" >&5 +echo "$as_me:2481: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_prog_BUILD_CC+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -2492,7 +2493,7 @@ for ac_dir in $ac_dummy; do test -z "$ac_dir" && ac_dir=. $as_executable_p "$ac_dir/$ac_word" || continue ac_cv_prog_BUILD_CC="$ac_prog" -echo "$as_me:2495: found $ac_dir/$ac_word" >&5 +echo "$as_me:2496: found $ac_dir/$ac_word" >&5 break done @@ -2500,10 +2501,10 @@ fi fi BUILD_CC=$ac_cv_prog_BUILD_CC if test -n "$BUILD_CC"; then - echo "$as_me:2503: result: $BUILD_CC" >&5 + echo "$as_me:2504: result: $BUILD_CC" >&5 echo "${ECHO_T}$BUILD_CC" >&6 else - echo "$as_me:2506: result: no" >&5 + echo "$as_me:2507: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -2511,12 +2512,12 @@ fi done fi; - echo "$as_me:2514: checking for native build C compiler" >&5 + echo "$as_me:2515: checking for native build C compiler" >&5 echo $ECHO_N "checking for native build C compiler... $ECHO_C" >&6 - echo "$as_me:2516: result: $BUILD_CC" >&5 + echo "$as_me:2517: result: $BUILD_CC" >&5 echo "${ECHO_T}$BUILD_CC" >&6 - echo "$as_me:2519: checking for native build C preprocessor" >&5 + echo "$as_me:2520: checking for native build C preprocessor" >&5 echo $ECHO_N "checking for native build C preprocessor... $ECHO_C" >&6 # Check whether --with-build-cpp or --without-build-cpp was given. @@ -2526,10 +2527,10 @@ if test "${with_build_cpp+set}" = set; then else BUILD_CPP='${BUILD_CC} -E' fi; - echo "$as_me:2529: result: $BUILD_CPP" >&5 + echo "$as_me:2530: result: $BUILD_CPP" >&5 echo "${ECHO_T}$BUILD_CPP" >&6 - echo "$as_me:2532: checking for native build C flags" >&5 + echo "$as_me:2533: checking for native build C flags" >&5 echo $ECHO_N "checking for native build C flags... $ECHO_C" >&6 # Check whether --with-build-cflags or --without-build-cflags was given. @@ -2537,10 +2538,10 @@ if test "${with_build_cflags+set}" = set; then withval="$with_build_cflags" BUILD_CFLAGS="$withval" fi; - echo "$as_me:2540: result: $BUILD_CFLAGS" >&5 + echo "$as_me:2541: result: $BUILD_CFLAGS" >&5 echo "${ECHO_T}$BUILD_CFLAGS" >&6 - echo "$as_me:2543: checking for native build C preprocessor-flags" >&5 + echo "$as_me:2544: checking for native build C preprocessor-flags" >&5 echo $ECHO_N "checking for native build C preprocessor-flags... $ECHO_C" >&6 # Check whether --with-build-cppflags or --without-build-cppflags was given. @@ -2548,10 +2549,10 @@ if test "${with_build_cppflags+set}" = set; then withval="$with_build_cppflags" BUILD_CPPFLAGS="$withval" fi; - echo "$as_me:2551: result: $BUILD_CPPFLAGS" >&5 + echo "$as_me:2552: result: $BUILD_CPPFLAGS" >&5 echo "${ECHO_T}$BUILD_CPPFLAGS" >&6 - echo "$as_me:2554: checking for native build linker-flags" >&5 + echo "$as_me:2555: checking for native build linker-flags" >&5 echo $ECHO_N "checking for native build linker-flags... $ECHO_C" >&6 # Check whether --with-build-ldflags or --without-build-ldflags was given. @@ -2559,10 +2560,10 @@ if test "${with_build_ldflags+set}" = set; then withval="$with_build_ldflags" BUILD_LDFLAGS="$withval" fi; - echo "$as_me:2562: result: $BUILD_LDFLAGS" >&5 + echo "$as_me:2563: result: $BUILD_LDFLAGS" >&5 echo "${ECHO_T}$BUILD_LDFLAGS" >&6 - echo "$as_me:2565: checking for native build linker-libraries" >&5 + echo "$as_me:2566: checking for native build linker-libraries" >&5 echo $ECHO_N "checking for native build linker-libraries... $ECHO_C" >&6 # Check whether --with-build-libs or --without-build-libs was given. @@ -2570,7 +2571,7 @@ if test "${with_build_libs+set}" = set; then withval="$with_build_libs" BUILD_LIBS="$withval" fi; - echo "$as_me:2573: result: $BUILD_LIBS" >&5 + echo "$as_me:2574: result: $BUILD_LIBS" >&5 echo "${ECHO_T}$BUILD_LIBS" >&6 # this assumes we're on Unix. @@ -2580,7 +2581,7 @@ echo "${ECHO_T}$BUILD_LIBS" >&6 : ${BUILD_CC:='${CC}'} if ( test "$BUILD_CC" = "$CC" || test "$BUILD_CC" = '${CC}' ) ; then - { { echo "$as_me:2583: error: Cross-build requires two compilers. + { { echo "$as_me:2584: error: Cross-build requires two compilers. Use --with-build-cc to specify the native compiler." >&5 echo "$as_me: error: Cross-build requires two compilers. Use --with-build-cc to specify the native compiler." >&2;} @@ -2601,7 +2602,7 @@ fi 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:2604: checking for $ac_word" >&5 +echo "$as_me:2605: 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 @@ -2616,7 +2617,7 @@ for ac_dir in $ac_dummy; do 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:2619: found $ac_dir/$ac_word" >&5 +echo "$as_me:2620: found $ac_dir/$ac_word" >&5 break done @@ -2624,10 +2625,10 @@ fi fi RANLIB=$ac_cv_prog_RANLIB if test -n "$RANLIB"; then - echo "$as_me:2627: result: $RANLIB" >&5 + echo "$as_me:2628: result: $RANLIB" >&5 echo "${ECHO_T}$RANLIB" >&6 else - echo "$as_me:2630: result: no" >&5 + echo "$as_me:2631: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -2636,7 +2637,7 @@ if test -z "$ac_cv_prog_RANLIB"; then 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:2639: checking for $ac_word" >&5 +echo "$as_me:2640: 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 @@ -2651,7 +2652,7 @@ for ac_dir in $ac_dummy; do test -z "$ac_dir" && ac_dir=. $as_executable_p "$ac_dir/$ac_word" || continue ac_cv_prog_ac_ct_RANLIB="ranlib" -echo "$as_me:2654: found $ac_dir/$ac_word" >&5 +echo "$as_me:2655: found $ac_dir/$ac_word" >&5 break done @@ -2660,10 +2661,10 @@ fi fi ac_ct_RANLIB=$ac_cv_prog_ac_ct_RANLIB if test -n "$ac_ct_RANLIB"; then - echo "$as_me:2663: result: $ac_ct_RANLIB" >&5 + echo "$as_me:2664: result: $ac_ct_RANLIB" >&5 echo "${ECHO_T}$ac_ct_RANLIB" >&6 else - echo "$as_me:2666: result: no" >&5 + echo "$as_me:2667: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -2675,7 +2676,7 @@ fi if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}ar", so it can be a program name with args. set dummy ${ac_tool_prefix}ar; ac_word=$2 -echo "$as_me:2678: checking for $ac_word" >&5 +echo "$as_me:2679: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_prog_AR+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -2690,7 +2691,7 @@ for ac_dir in $ac_dummy; do test -z "$ac_dir" && ac_dir=. $as_executable_p "$ac_dir/$ac_word" || continue ac_cv_prog_AR="${ac_tool_prefix}ar" -echo "$as_me:2693: found $ac_dir/$ac_word" >&5 +echo "$as_me:2694: found $ac_dir/$ac_word" >&5 break done @@ -2698,10 +2699,10 @@ fi fi AR=$ac_cv_prog_AR if test -n "$AR"; then - echo "$as_me:2701: result: $AR" >&5 + echo "$as_me:2702: result: $AR" >&5 echo "${ECHO_T}$AR" >&6 else - echo "$as_me:2704: result: no" >&5 + echo "$as_me:2705: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -2710,7 +2711,7 @@ if test -z "$ac_cv_prog_AR"; then ac_ct_AR=$AR # Extract the first word of "ar", so it can be a program name with args. set dummy ar; ac_word=$2 -echo "$as_me:2713: checking for $ac_word" >&5 +echo "$as_me:2714: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_prog_ac_ct_AR+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -2725,7 +2726,7 @@ for ac_dir in $ac_dummy; do test -z "$ac_dir" && ac_dir=. $as_executable_p "$ac_dir/$ac_word" || continue ac_cv_prog_ac_ct_AR="ar" -echo "$as_me:2728: found $ac_dir/$ac_word" >&5 +echo "$as_me:2729: found $ac_dir/$ac_word" >&5 break done @@ -2734,10 +2735,10 @@ fi fi ac_ct_AR=$ac_cv_prog_ac_ct_AR if test -n "$ac_ct_AR"; then - echo "$as_me:2737: result: $ac_ct_AR" >&5 + echo "$as_me:2738: result: $ac_ct_AR" >&5 echo "${ECHO_T}$ac_ct_AR" >&6 else - echo "$as_me:2740: result: no" >&5 + echo "$as_me:2741: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -2746,7 +2747,7 @@ else AR="$ac_cv_prog_AR" fi -echo "$as_me:2749: checking for options to update archives" >&5 +echo "$as_me:2750: checking for options to update archives" >&5 echo $ECHO_N "checking for options to update archives... $ECHO_C" >&6 if test "${cf_cv_ar_flags+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -2759,13 +2760,13 @@ else rm -f conftest.a cat >conftest.$ac_ext <<EOF -#line 2762 "configure" +#line 2763 "configure" int testdata[3] = { 123, 456, 789 }; EOF - if { (eval echo "$as_me:2765: \"$ac_compile\"") >&5 + if { (eval echo "$as_me:2766: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:2768: \$? = $ac_status" >&5 + echo "$as_me:2769: \$? = $ac_status" >&5 (exit $ac_status); } ; then $AR $cf_ar_flags conftest.a conftest.$ac_cv_objext 2>&5 1>/dev/null if test -f conftest.a ; then @@ -2775,7 +2776,7 @@ EOF else test -n "$verbose" && echo " cannot compile test-program" 1>&6 -echo "${as_me-configure}:2778: testing cannot compile test-program ..." 1>&5 +echo "${as_me-configure}:2779: testing cannot compile test-program ..." 1>&5 break fi @@ -2783,12 +2784,12 @@ echo "${as_me-configure}:2778: testing cannot compile test-program ..." 1>&5 rm -f conftest.a conftest.$ac_ext conftest.$ac_cv_objext fi -echo "$as_me:2786: result: $cf_cv_ar_flags" >&5 +echo "$as_me:2787: result: $cf_cv_ar_flags" >&5 echo "${ECHO_T}$cf_cv_ar_flags" >&6 test -z "$ARFLAGS" && ARFLAGS=$cf_cv_ar_flags ARFLAGS=$cf_cv_ar_flags -echo "$as_me:2791: checking if you want to see long compiling messages" >&5 +echo "$as_me:2792: checking if you want to see long compiling messages" >&5 echo $ECHO_N "checking if you want to see long compiling messages... $ECHO_C" >&6 # Check whether --enable-echo or --disable-echo was given. @@ -2822,7 +2823,7 @@ else ECHO_CC='' fi; -echo "$as_me:2825: result: $enableval" >&5 +echo "$as_me:2826: result: $enableval" >&5 echo "${ECHO_T}$enableval" >&6 # special case for WWW/* @@ -2832,7 +2833,7 @@ else DONT_ECHO_CC='' fi -echo "$as_me:2835: checking if you want to check memory-leaks" >&5 +echo "$as_me:2836: checking if you want to check memory-leaks" >&5 echo $ECHO_N "checking if you want to check memory-leaks... $ECHO_C" >&6 # Check whether --enable-find-leaks or --disable-find-leaks was given. @@ -2849,7 +2850,7 @@ else with_leak_checks=no fi; -echo "$as_me:2852: result: $with_leak_checks" >&5 +echo "$as_me:2853: result: $with_leak_checks" >&5 echo "${ECHO_T}$with_leak_checks" >&6 test "$with_leak_checks" = "yes" && cat >>confdefs.h <<\EOF #define LY_FIND_LEAKS 1 @@ -2858,7 +2859,7 @@ EOF # The comment about adding -g to $CFLAGS is unclear. Autoconf tries to add # a -g flag; we remove it if the user's $CFLAGS was not set and debugging is # disabled. -echo "$as_me:2861: checking if you want to enable debug-code" >&5 +echo "$as_me:2862: checking if you want to enable debug-code" >&5 echo $ECHO_N "checking if you want to enable debug-code... $ECHO_C" >&6 # Check whether --enable-debug or --disable-debug was given. @@ -2875,7 +2876,7 @@ else with_debug=no fi; -echo "$as_me:2878: result: $with_debug" >&5 +echo "$as_me:2879: result: $with_debug" >&5 echo "${ECHO_T}$with_debug" >&6 if test "$with_debug" = "yes" ; then case $host_os in @@ -2900,7 +2901,7 @@ else esac fi -echo "$as_me:2903: checking if you want to enable lynx trace code *recommended* " >&5 +echo "$as_me:2904: checking if you want to enable lynx trace code *recommended* " >&5 echo $ECHO_N "checking if you want to enable lynx trace code *recommended* ... $ECHO_C" >&6 # Check whether --enable-trace or --disable-trace was given. @@ -2917,13 +2918,13 @@ else with_trace=yes fi; -echo "$as_me:2920: result: $with_trace" >&5 +echo "$as_me:2921: result: $with_trace" >&5 echo "${ECHO_T}$with_trace" >&6 test $with_trace = no && cat >>confdefs.h <<\EOF #define NO_LYNX_TRACE 1 EOF -echo "$as_me:2926: checking if you want verbose trace code" >&5 +echo "$as_me:2927: checking if you want verbose trace code" >&5 echo $ECHO_N "checking if you want verbose trace code... $ECHO_C" >&6 # Check whether --enable-vertrace or --disable-vertrace was given. @@ -2940,7 +2941,7 @@ else with_vertrace=no fi; -echo "$as_me:2943: result: $with_vertrace" >&5 +echo "$as_me:2944: result: $with_vertrace" >&5 echo "${ECHO_T}$with_vertrace" >&6 test $with_vertrace = yes && cat >>confdefs.h <<\EOF #define LY_TRACELINE __LINE__ @@ -2948,7 +2949,7 @@ EOF if test -n "$GCC" then -echo "$as_me:2951: checking if you want to turn on gcc warnings" >&5 +echo "$as_me:2952: checking if you want to turn on gcc warnings" >&5 echo $ECHO_N "checking if you want to turn on gcc warnings... $ECHO_C" >&6 # Check whether --enable-warnings or --disable-warnings was given. @@ -2965,7 +2966,7 @@ else with_warnings=no fi; -echo "$as_me:2968: result: $with_warnings" >&5 +echo "$as_me:2969: result: $with_warnings" >&5 echo "${ECHO_T}$with_warnings" >&6 if test "$with_warnings" = "yes" then @@ -2988,10 +2989,10 @@ cat > conftest.i <<EOF EOF if test "$GCC" = yes then - { echo "$as_me:2991: checking for $CC __attribute__ directives..." >&5 + { echo "$as_me:2992: checking for $CC __attribute__ directives..." >&5 echo "$as_me: checking for $CC __attribute__ directives..." >&6;} cat > conftest.$ac_ext <<EOF -#line 2994 "${as_me-configure}" +#line 2995 "${as_me-configure}" #include "confdefs.h" #include "conftest.h" #include "conftest.i" @@ -3040,12 +3041,12 @@ EOF ;; esac - if { (eval echo "$as_me:3043: \"$ac_compile\"") >&5 + if { (eval echo "$as_me:3044: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:3046: \$? = $ac_status" >&5 + echo "$as_me:3047: \$? = $ac_status" >&5 (exit $ac_status); }; then - test -n "$verbose" && echo "$as_me:3048: result: ... $cf_attribute" >&5 + test -n "$verbose" && echo "$as_me:3049: result: ... $cf_attribute" >&5 echo "${ECHO_T}... $cf_attribute" >&6 cat conftest.h >>confdefs.h case $cf_attribute in #(vi @@ -3082,11 +3083,11 @@ fi GCC_VERSION=none if test "$GCC" = yes ; then - echo "$as_me:3085: checking version of $CC" >&5 + echo "$as_me:3086: checking version of $CC" >&5 echo $ECHO_N "checking version of $CC... $ECHO_C" >&6 GCC_VERSION="`${CC} --version| sed -e '2,$d' -e 's/^.*(GCC) //' -e 's/^[^0-9.]*//' -e 's/[^0-9.].*//'`" test -z "$GCC_VERSION" && GCC_VERSION=unknown - echo "$as_me:3089: result: $GCC_VERSION" >&5 + echo "$as_me:3090: result: $GCC_VERSION" >&5 echo "${ECHO_T}$GCC_VERSION" >&6 fi @@ -3095,12 +3096,12 @@ INTEL_COMPILER=no if test "$GCC" = yes ; then case $host_os in linux*|gnu*) - echo "$as_me:3098: checking if this is really Intel C compiler" >&5 + echo "$as_me:3099: checking if this is really Intel C compiler" >&5 echo $ECHO_N "checking if this is really Intel C compiler... $ECHO_C" >&6 cf_save_CFLAGS="$CFLAGS" CFLAGS="$CFLAGS -no-gcc" cat >conftest.$ac_ext <<_ACEOF -#line 3103 "configure" +#line 3104 "configure" #include "confdefs.h" int @@ -3117,16 +3118,16 @@ make an error } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:3120: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:3121: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:3123: \$? = $ac_status" >&5 + echo "$as_me:3124: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:3126: \"$ac_try\"") >&5 + { (eval echo "$as_me:3127: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:3129: \$? = $ac_status" >&5 + echo "$as_me:3130: \$? = $ac_status" >&5 (exit $ac_status); }; }; then INTEL_COMPILER=yes cf_save_CFLAGS="$cf_save_CFLAGS -we147 -no-gcc" @@ -3137,14 +3138,14 @@ cat conftest.$ac_ext >&5 fi rm -f conftest.$ac_objext conftest.$ac_ext CFLAGS="$cf_save_CFLAGS" - echo "$as_me:3140: result: $INTEL_COMPILER" >&5 + echo "$as_me:3141: result: $INTEL_COMPILER" >&5 echo "${ECHO_T}$INTEL_COMPILER" >&6 ;; esac fi cat > conftest.$ac_ext <<EOF -#line 3147 "${as_me-configure}" +#line 3148 "${as_me-configure}" int main(int argc, char *argv[]) { return (argv[argc-1] == 0) ; } EOF @@ -3161,7 +3162,7 @@ then # remark #981: operands are evaluated in unspecified order # warning #279: controlling expression is constant - { echo "$as_me:3164: checking for $CC warning options..." >&5 + { echo "$as_me:3165: checking for $CC warning options..." >&5 echo "$as_me: checking for $CC warning options..." >&6;} cf_save_CFLAGS="$CFLAGS" EXTRA_CFLAGS="-Wall" @@ -3177,12 +3178,12 @@ echo "$as_me: checking for $CC warning options..." >&6;} wd981 do CFLAGS="$cf_save_CFLAGS $EXTRA_CFLAGS -$cf_opt" - if { (eval echo "$as_me:3180: \"$ac_compile\"") >&5 + if { (eval echo "$as_me:3181: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:3183: \$? = $ac_status" >&5 + echo "$as_me:3184: \$? = $ac_status" >&5 (exit $ac_status); }; then - test -n "$verbose" && echo "$as_me:3185: result: ... -$cf_opt" >&5 + test -n "$verbose" && echo "$as_me:3186: result: ... -$cf_opt" >&5 echo "${ECHO_T}... -$cf_opt" >&6 EXTRA_CFLAGS="$EXTRA_CFLAGS -$cf_opt" fi @@ -3191,7 +3192,7 @@ echo "${ECHO_T}... -$cf_opt" >&6 elif test "$GCC" = yes then - { echo "$as_me:3194: checking for $CC warning options..." >&5 + { echo "$as_me:3195: checking for $CC warning options..." >&5 echo "$as_me: checking for $CC warning options..." >&6;} cf_save_CFLAGS="$CFLAGS" EXTRA_CFLAGS="-W -Wall" @@ -3211,12 +3212,12 @@ echo "$as_me: checking for $CC warning options..." >&6;} Wundef $cf_warn_CONST do CFLAGS="$cf_save_CFLAGS $EXTRA_CFLAGS -$cf_opt" - if { (eval echo "$as_me:3214: \"$ac_compile\"") >&5 + if { (eval echo "$as_me:3215: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:3217: \$? = $ac_status" >&5 + echo "$as_me:3218: \$? = $ac_status" >&5 (exit $ac_status); }; then - test -n "$verbose" && echo "$as_me:3219: result: ... -$cf_opt" >&5 + test -n "$verbose" && echo "$as_me:3220: result: ... -$cf_opt" >&5 echo "${ECHO_T}... -$cf_opt" >&6 case $cf_opt in #(vi Wcast-qual) #(vi @@ -3227,7 +3228,7 @@ echo "${ECHO_T}... -$cf_opt" >&6 [34].*) test -n "$verbose" && echo " feature is broken in gcc $GCC_VERSION" 1>&6 -echo "${as_me-configure}:3230: testing feature is broken in gcc $GCC_VERSION ..." 1>&5 +echo "${as_me-configure}:3231: testing feature is broken in gcc $GCC_VERSION ..." 1>&5 continue;; esac @@ -3243,7 +3244,7 @@ rm -f conftest* fi fi -echo "$as_me:3246: checking if you want to use dbmalloc for testing" >&5 +echo "$as_me:3247: checking if you want to use dbmalloc for testing" >&5 echo $ECHO_N "checking if you want to use dbmalloc for testing... $ECHO_C" >&6 # Check whether --with-dbmalloc or --without-dbmalloc was given. @@ -3259,7 +3260,7 @@ EOF else with_dbmalloc= fi; -echo "$as_me:3262: result: ${with_dbmalloc:-no}" >&5 +echo "$as_me:3263: result: ${with_dbmalloc:-no}" >&5 echo "${ECHO_T}${with_dbmalloc:-no}" >&6 case .$with_cflags in #(vi @@ -3353,23 +3354,23 @@ fi esac if test "$with_dbmalloc" = yes ; then - echo "$as_me:3356: checking for dbmalloc.h" >&5 + echo "$as_me:3357: checking for dbmalloc.h" >&5 echo $ECHO_N "checking for dbmalloc.h... $ECHO_C" >&6 if test "${ac_cv_header_dbmalloc_h+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 3362 "configure" +#line 3363 "configure" #include "confdefs.h" #include <dbmalloc.h> _ACEOF -if { (eval echo "$as_me:3366: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:3367: \"$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:3372: \$? = $ac_status" >&5 + echo "$as_me:3373: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -3388,11 +3389,11 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:3391: result: $ac_cv_header_dbmalloc_h" >&5 +echo "$as_me:3392: result: $ac_cv_header_dbmalloc_h" >&5 echo "${ECHO_T}$ac_cv_header_dbmalloc_h" >&6 if test $ac_cv_header_dbmalloc_h = yes; then -echo "$as_me:3395: checking for debug_malloc in -ldbmalloc" >&5 +echo "$as_me:3396: checking for debug_malloc in -ldbmalloc" >&5 echo $ECHO_N "checking for debug_malloc in -ldbmalloc... $ECHO_C" >&6 if test "${ac_cv_lib_dbmalloc_debug_malloc+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -3400,7 +3401,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-ldbmalloc $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 3403 "configure" +#line 3404 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -3419,16 +3420,16 @@ debug_malloc (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:3422: \"$ac_link\"") >&5 +if { (eval echo "$as_me:3423: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:3425: \$? = $ac_status" >&5 + echo "$as_me:3426: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:3428: \"$ac_try\"") >&5 + { (eval echo "$as_me:3429: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:3431: \$? = $ac_status" >&5 + echo "$as_me:3432: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_dbmalloc_debug_malloc=yes else @@ -3439,7 +3440,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:3442: result: $ac_cv_lib_dbmalloc_debug_malloc" >&5 +echo "$as_me:3443: result: $ac_cv_lib_dbmalloc_debug_malloc" >&5 echo "${ECHO_T}$ac_cv_lib_dbmalloc_debug_malloc" >&6 if test $ac_cv_lib_dbmalloc_debug_malloc = yes; then cat >>confdefs.h <<EOF @@ -3454,7 +3455,7 @@ fi fi -echo "$as_me:3457: checking if you want to use dmalloc for testing" >&5 +echo "$as_me:3458: checking if you want to use dmalloc for testing" >&5 echo $ECHO_N "checking if you want to use dmalloc for testing... $ECHO_C" >&6 # Check whether --with-dmalloc or --without-dmalloc was given. @@ -3470,7 +3471,7 @@ EOF else with_dmalloc= fi; -echo "$as_me:3473: result: ${with_dmalloc:-no}" >&5 +echo "$as_me:3474: result: ${with_dmalloc:-no}" >&5 echo "${ECHO_T}${with_dmalloc:-no}" >&6 case .$with_cflags in #(vi @@ -3564,23 +3565,23 @@ fi esac if test "$with_dmalloc" = yes ; then - echo "$as_me:3567: checking for dmalloc.h" >&5 + echo "$as_me:3568: checking for dmalloc.h" >&5 echo $ECHO_N "checking for dmalloc.h... $ECHO_C" >&6 if test "${ac_cv_header_dmalloc_h+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 3573 "configure" +#line 3574 "configure" #include "confdefs.h" #include <dmalloc.h> _ACEOF -if { (eval echo "$as_me:3577: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:3578: \"$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:3583: \$? = $ac_status" >&5 + echo "$as_me:3584: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -3599,11 +3600,11 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:3602: result: $ac_cv_header_dmalloc_h" >&5 +echo "$as_me:3603: result: $ac_cv_header_dmalloc_h" >&5 echo "${ECHO_T}$ac_cv_header_dmalloc_h" >&6 if test $ac_cv_header_dmalloc_h = yes; then -echo "$as_me:3606: checking for dmalloc_debug in -ldmalloc" >&5 +echo "$as_me:3607: checking for dmalloc_debug in -ldmalloc" >&5 echo $ECHO_N "checking for dmalloc_debug in -ldmalloc... $ECHO_C" >&6 if test "${ac_cv_lib_dmalloc_dmalloc_debug+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -3611,7 +3612,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-ldmalloc $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 3614 "configure" +#line 3615 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -3630,16 +3631,16 @@ dmalloc_debug (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:3633: \"$ac_link\"") >&5 +if { (eval echo "$as_me:3634: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:3636: \$? = $ac_status" >&5 + echo "$as_me:3637: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:3639: \"$ac_try\"") >&5 + { (eval echo "$as_me:3640: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:3642: \$? = $ac_status" >&5 + echo "$as_me:3643: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_dmalloc_dmalloc_debug=yes else @@ -3650,7 +3651,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:3653: result: $ac_cv_lib_dmalloc_dmalloc_debug" >&5 +echo "$as_me:3654: result: $ac_cv_lib_dmalloc_dmalloc_debug" >&5 echo "${ECHO_T}$ac_cv_lib_dmalloc_dmalloc_debug" >&6 if test $ac_cv_lib_dmalloc_dmalloc_debug = yes; then cat >>confdefs.h <<EOF @@ -3669,7 +3670,7 @@ cat >>confdefs.h <<\EOF #define UNIX 1 EOF -echo "$as_me:3672: checking for $CC option to accept ANSI C" >&5 +echo "$as_me:3673: 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 @@ -3677,7 +3678,7 @@ else ac_cv_prog_cc_stdc=no ac_save_CC=$CC cat >conftest.$ac_ext <<_ACEOF -#line 3680 "configure" +#line 3681 "configure" #include "confdefs.h" #include <stdarg.h> #include <stdio.h> @@ -3726,16 +3727,16 @@ for ac_arg in "" -qlanglvl=ansi -std1 -Ae "-Aa -D_HPUX_SOURCE" "-Xc -D__EXTENSIO do CC="$ac_save_CC $ac_arg" rm -f conftest.$ac_objext -if { (eval echo "$as_me:3729: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:3730: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:3732: \$? = $ac_status" >&5 + echo "$as_me:3733: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:3735: \"$ac_try\"") >&5 + { (eval echo "$as_me:3736: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:3738: \$? = $ac_status" >&5 + echo "$as_me:3739: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_prog_cc_stdc=$ac_arg break @@ -3752,21 +3753,21 @@ fi case "x$ac_cv_prog_cc_stdc" in x|xno) - echo "$as_me:3755: result: none needed" >&5 + echo "$as_me:3756: result: none needed" >&5 echo "${ECHO_T}none needed" >&6 ;; *) - echo "$as_me:3758: result: $ac_cv_prog_cc_stdc" >&5 + echo "$as_me:3759: 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:3763: checking for an ANSI C-conforming const" >&5 +echo "$as_me:3764: checking for an ANSI C-conforming const" >&5 echo $ECHO_N "checking for an ANSI C-conforming const... $ECHO_C" >&6 if test "${ac_cv_c_const+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 3769 "configure" +#line 3770 "configure" #include "confdefs.h" int @@ -3824,16 +3825,16 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:3827: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:3828: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:3830: \$? = $ac_status" >&5 + echo "$as_me:3831: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:3833: \"$ac_try\"") >&5 + { (eval echo "$as_me:3834: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:3836: \$? = $ac_status" >&5 + echo "$as_me:3837: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_c_const=yes else @@ -3843,7 +3844,7 @@ ac_cv_c_const=no fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:3846: result: $ac_cv_c_const" >&5 +echo "$as_me:3847: result: $ac_cv_c_const" >&5 echo "${ECHO_T}$ac_cv_c_const" >&6 if test $ac_cv_c_const = no; then @@ -3891,7 +3892,7 @@ clix*) # contributed by Alex Matulich (matuli_a@marlin.navsea.navy.mil) also # references -lmalloc and -lbsd. -echo "$as_me:3894: checking for strcmp in -lc_s" >&5 +echo "$as_me:3895: checking for strcmp in -lc_s" >&5 echo $ECHO_N "checking for strcmp in -lc_s... $ECHO_C" >&6 if test "${ac_cv_lib_c_s_strcmp+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -3899,7 +3900,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lc_s $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 3902 "configure" +#line 3903 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -3918,16 +3919,16 @@ strcmp (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:3921: \"$ac_link\"") >&5 +if { (eval echo "$as_me:3922: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:3924: \$? = $ac_status" >&5 + echo "$as_me:3925: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:3927: \"$ac_try\"") >&5 + { (eval echo "$as_me:3928: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:3930: \$? = $ac_status" >&5 + echo "$as_me:3931: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_c_s_strcmp=yes else @@ -3938,7 +3939,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:3941: result: $ac_cv_lib_c_s_strcmp" >&5 +echo "$as_me:3942: result: $ac_cv_lib_c_s_strcmp" >&5 echo "${ECHO_T}$ac_cv_lib_c_s_strcmp" >&6 if test $ac_cv_lib_c_s_strcmp = yes; then cat >>confdefs.h <<EOF @@ -4103,14 +4104,14 @@ sco*) # SCO's cc (which is reported to have broken const/volatile). case "$CC" in #(vi cc|*/cc) - { echo "$as_me:4106: WARNING: You should consider using gcc or rcc if available" >&5 + { echo "$as_me:4107: WARNING: You should consider using gcc or rcc if available" >&5 echo "$as_me: WARNING: You should consider using gcc or rcc if available" >&2;} unset ac_cv_prog_CC for ac_prog in gcc rcc 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:4113: checking for $ac_word" >&5 +echo "$as_me:4114: 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 @@ -4125,7 +4126,7 @@ for ac_dir in $ac_dummy; do test -z "$ac_dir" && ac_dir=. $as_executable_p "$ac_dir/$ac_word" || continue ac_cv_prog_CC="$ac_prog" -echo "$as_me:4128: found $ac_dir/$ac_word" >&5 +echo "$as_me:4129: found $ac_dir/$ac_word" >&5 break done @@ -4133,10 +4134,10 @@ fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then - echo "$as_me:4136: result: $CC" >&5 + echo "$as_me:4137: result: $CC" >&5 echo "${ECHO_T}$CC" >&6 else - echo "$as_me:4139: result: no" >&5 + echo "$as_me:4140: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -4159,23 +4160,23 @@ sony-newsos*) for ac_header in jcurses.h do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` -echo "$as_me:4162: checking for $ac_header" >&5 +echo "$as_me:4163: 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 4168 "configure" +#line 4169 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:4172: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:4173: \"$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:4178: \$? = $ac_status" >&5 + echo "$as_me:4179: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -4194,7 +4195,7 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:4197: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:4198: 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 <<EOF @@ -4222,23 +4223,23 @@ ultrix*) for ac_header in cursesX.h do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` -echo "$as_me:4225: checking for $ac_header" >&5 +echo "$as_me:4226: 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 4231 "configure" +#line 4232 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:4235: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:4236: \"$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:4241: \$? = $ac_status" >&5 + echo "$as_me:4242: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -4257,7 +4258,7 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:4260: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:4261: 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 <<EOF @@ -4280,7 +4281,7 @@ mingw*) ;; esac -echo "$as_me:4283: checking for ${CC-cc} option to accept ANSI C" >&5 +echo "$as_me:4284: checking for ${CC-cc} option to accept ANSI C" >&5 echo $ECHO_N "checking for ${CC-cc} option to accept ANSI C... $ECHO_C" >&6 if test "${cf_cv_ansi_cc+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -4384,7 +4385,7 @@ if test -n "$cf_new_extra_cppflags" ; then fi cat >conftest.$ac_ext <<_ACEOF -#line 4387 "configure" +#line 4388 "configure" #include "confdefs.h" #ifndef CC_HAS_PROTOS @@ -4405,16 +4406,16 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:4408: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:4409: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:4411: \$? = $ac_status" >&5 + echo "$as_me:4412: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:4414: \"$ac_try\"") >&5 + { (eval echo "$as_me:4415: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:4417: \$? = $ac_status" >&5 + echo "$as_me:4418: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_ansi_cc="$cf_arg"; break else @@ -4427,7 +4428,7 @@ CFLAGS="$cf_save_CFLAGS" CPPFLAGS="$cf_save_CPPFLAGS" fi -echo "$as_me:4430: result: $cf_cv_ansi_cc" >&5 +echo "$as_me:4431: result: $cf_cv_ansi_cc" >&5 echo "${ECHO_T}$cf_cv_ansi_cc" >&6 if test "$cf_cv_ansi_cc" != "no"; then @@ -4520,7 +4521,7 @@ fi fi if test "$cf_cv_ansi_cc" = "no"; then - { { echo "$as_me:4523: error: Your compiler does not appear to recognize prototypes. + { { echo "$as_me:4524: error: Your compiler does not appear to recognize prototypes. You have the following choices: a. adjust your compiler options b. get an up-to-date compiler @@ -4540,7 +4541,7 @@ if test "${enable_largefile+set}" = set; then fi; if test "$enable_largefile" != no; then - echo "$as_me:4543: checking for special C compiler options needed for large files" >&5 + echo "$as_me:4544: checking for special C compiler options needed for large files" >&5 echo $ECHO_N "checking for special C compiler options needed for large files... $ECHO_C" >&6 if test "${ac_cv_sys_largefile_CC+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -4552,7 +4553,7 @@ else # IRIX 6.2 and later do not support large files by default, # so use the C compiler's -n32 option if that helps. cat >conftest.$ac_ext <<_ACEOF -#line 4555 "configure" +#line 4556 "configure" #include "confdefs.h" #include <sys/types.h> /* Check that off_t can represent 2**63 - 1 correctly. @@ -4572,16 +4573,16 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:4575: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:4576: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:4578: \$? = $ac_status" >&5 + echo "$as_me:4579: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:4581: \"$ac_try\"") >&5 + { (eval echo "$as_me:4582: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:4584: \$? = $ac_status" >&5 + echo "$as_me:4585: \$? = $ac_status" >&5 (exit $ac_status); }; }; then break else @@ -4591,16 +4592,16 @@ fi rm -f conftest.$ac_objext CC="$CC -n32" rm -f conftest.$ac_objext -if { (eval echo "$as_me:4594: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:4595: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:4597: \$? = $ac_status" >&5 + echo "$as_me:4598: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:4600: \"$ac_try\"") >&5 + { (eval echo "$as_me:4601: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:4603: \$? = $ac_status" >&5 + echo "$as_me:4604: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_sys_largefile_CC=' -n32'; break else @@ -4614,13 +4615,13 @@ rm -f conftest.$ac_objext rm -f conftest.$ac_ext fi fi -echo "$as_me:4617: result: $ac_cv_sys_largefile_CC" >&5 +echo "$as_me:4618: result: $ac_cv_sys_largefile_CC" >&5 echo "${ECHO_T}$ac_cv_sys_largefile_CC" >&6 if test "$ac_cv_sys_largefile_CC" != no; then CC=$CC$ac_cv_sys_largefile_CC fi - echo "$as_me:4623: checking for _FILE_OFFSET_BITS value needed for large files" >&5 + echo "$as_me:4624: checking for _FILE_OFFSET_BITS value needed for large files" >&5 echo $ECHO_N "checking for _FILE_OFFSET_BITS value needed for large files... $ECHO_C" >&6 if test "${ac_cv_sys_file_offset_bits+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -4628,7 +4629,7 @@ else while :; do ac_cv_sys_file_offset_bits=no cat >conftest.$ac_ext <<_ACEOF -#line 4631 "configure" +#line 4632 "configure" #include "confdefs.h" #include <sys/types.h> /* Check that off_t can represent 2**63 - 1 correctly. @@ -4648,16 +4649,16 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:4651: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:4652: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:4654: \$? = $ac_status" >&5 + echo "$as_me:4655: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:4657: \"$ac_try\"") >&5 + { (eval echo "$as_me:4658: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:4660: \$? = $ac_status" >&5 + echo "$as_me:4661: \$? = $ac_status" >&5 (exit $ac_status); }; }; then break else @@ -4666,7 +4667,7 @@ cat conftest.$ac_ext >&5 fi rm -f conftest.$ac_objext conftest.$ac_ext cat >conftest.$ac_ext <<_ACEOF -#line 4669 "configure" +#line 4670 "configure" #include "confdefs.h" #define _FILE_OFFSET_BITS 64 #include <sys/types.h> @@ -4687,16 +4688,16 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:4690: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:4691: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:4693: \$? = $ac_status" >&5 + echo "$as_me:4694: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:4696: \"$ac_try\"") >&5 + { (eval echo "$as_me:4697: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:4699: \$? = $ac_status" >&5 + echo "$as_me:4700: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_sys_file_offset_bits=64; break else @@ -4707,7 +4708,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext break done fi -echo "$as_me:4710: result: $ac_cv_sys_file_offset_bits" >&5 +echo "$as_me:4711: result: $ac_cv_sys_file_offset_bits" >&5 echo "${ECHO_T}$ac_cv_sys_file_offset_bits" >&6 if test "$ac_cv_sys_file_offset_bits" != no; then @@ -4717,7 +4718,7 @@ EOF fi rm -f conftest* - echo "$as_me:4720: checking for _LARGE_FILES value needed for large files" >&5 + echo "$as_me:4721: checking for _LARGE_FILES value needed for large files" >&5 echo $ECHO_N "checking for _LARGE_FILES value needed for large files... $ECHO_C" >&6 if test "${ac_cv_sys_large_files+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -4725,7 +4726,7 @@ else while :; do ac_cv_sys_large_files=no cat >conftest.$ac_ext <<_ACEOF -#line 4728 "configure" +#line 4729 "configure" #include "confdefs.h" #include <sys/types.h> /* Check that off_t can represent 2**63 - 1 correctly. @@ -4745,16 +4746,16 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:4748: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:4749: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:4751: \$? = $ac_status" >&5 + echo "$as_me:4752: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:4754: \"$ac_try\"") >&5 + { (eval echo "$as_me:4755: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:4757: \$? = $ac_status" >&5 + echo "$as_me:4758: \$? = $ac_status" >&5 (exit $ac_status); }; }; then break else @@ -4763,7 +4764,7 @@ cat conftest.$ac_ext >&5 fi rm -f conftest.$ac_objext conftest.$ac_ext cat >conftest.$ac_ext <<_ACEOF -#line 4766 "configure" +#line 4767 "configure" #include "confdefs.h" #define _LARGE_FILES 1 #include <sys/types.h> @@ -4784,16 +4785,16 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:4787: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:4788: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:4790: \$? = $ac_status" >&5 + echo "$as_me:4791: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:4793: \"$ac_try\"") >&5 + { (eval echo "$as_me:4794: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:4796: \$? = $ac_status" >&5 + echo "$as_me:4797: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_sys_large_files=1; break else @@ -4804,7 +4805,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext break done fi -echo "$as_me:4807: result: $ac_cv_sys_large_files" >&5 +echo "$as_me:4808: result: $ac_cv_sys_large_files" >&5 echo "${ECHO_T}$ac_cv_sys_large_files" >&6 if test "$ac_cv_sys_large_files" != no; then @@ -4817,7 +4818,7 @@ rm -f conftest* fi if test "$enable_largefile" != no ; then - echo "$as_me:4820: checking for _LARGEFILE_SOURCE value needed for large files" >&5 + echo "$as_me:4821: checking for _LARGEFILE_SOURCE value needed for large files" >&5 echo $ECHO_N "checking for _LARGEFILE_SOURCE value needed for large files... $ECHO_C" >&6 if test "${ac_cv_sys_largefile_source+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -4825,7 +4826,7 @@ else while :; do ac_cv_sys_largefile_source=no cat >conftest.$ac_ext <<_ACEOF -#line 4828 "configure" +#line 4829 "configure" #include "confdefs.h" #include <stdio.h> int @@ -4837,16 +4838,16 @@ return !fseeko; } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:4840: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:4841: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:4843: \$? = $ac_status" >&5 + echo "$as_me:4844: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:4846: \"$ac_try\"") >&5 + { (eval echo "$as_me:4847: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:4849: \$? = $ac_status" >&5 + echo "$as_me:4850: \$? = $ac_status" >&5 (exit $ac_status); }; }; then break else @@ -4855,7 +4856,7 @@ cat conftest.$ac_ext >&5 fi rm -f conftest.$ac_objext conftest.$ac_ext cat >conftest.$ac_ext <<_ACEOF -#line 4858 "configure" +#line 4859 "configure" #include "confdefs.h" #define _LARGEFILE_SOURCE 1 #include <stdio.h> @@ -4868,16 +4869,16 @@ return !fseeko; } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:4871: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:4872: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:4874: \$? = $ac_status" >&5 + echo "$as_me:4875: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:4877: \"$ac_try\"") >&5 + { (eval echo "$as_me:4878: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:4880: \$? = $ac_status" >&5 + echo "$as_me:4881: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_sys_largefile_source=1; break else @@ -4888,7 +4889,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext break done fi -echo "$as_me:4891: result: $ac_cv_sys_largefile_source" >&5 +echo "$as_me:4892: result: $ac_cv_sys_largefile_source" >&5 echo "${ECHO_T}$ac_cv_sys_largefile_source" >&6 if test "$ac_cv_sys_largefile_source" != no; then @@ -4902,13 +4903,13 @@ rm -f conftest* # We used to try defining _XOPEN_SOURCE=500 too, to work around a bug # in glibc 2.1.3, but that breaks too many other things. # If you want fseeko and ftello with glibc, upgrade to a fixed glibc. -echo "$as_me:4905: checking for fseeko" >&5 +echo "$as_me:4906: checking for fseeko" >&5 echo $ECHO_N "checking for fseeko... $ECHO_C" >&6 if test "${ac_cv_func_fseeko+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 4911 "configure" +#line 4912 "configure" #include "confdefs.h" #include <stdio.h> int @@ -4920,16 +4921,16 @@ return fseeko && fseeko (stdin, 0, 0); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:4923: \"$ac_link\"") >&5 +if { (eval echo "$as_me:4924: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:4926: \$? = $ac_status" >&5 + echo "$as_me:4927: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:4929: \"$ac_try\"") >&5 + { (eval echo "$as_me:4930: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:4932: \$? = $ac_status" >&5 + echo "$as_me:4933: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_fseeko=yes else @@ -4939,7 +4940,7 @@ ac_cv_func_fseeko=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:4942: result: $ac_cv_func_fseeko" >&5 +echo "$as_me:4943: result: $ac_cv_func_fseeko" >&5 echo "${ECHO_T}$ac_cv_func_fseeko" >&6 if test $ac_cv_func_fseeko = yes; then @@ -4960,14 +4961,14 @@ fi test "$ac_cv_sys_largefile_source" != no && CPPFLAGS="$CPPFLAGS -D_LARGEFILE_SOURCE " test "$ac_cv_sys_file_offset_bits" != no && CPPFLAGS="$CPPFLAGS -D_FILE_OFFSET_BITS=$ac_cv_sys_file_offset_bits " - echo "$as_me:4963: checking whether to use struct dirent64" >&5 + echo "$as_me:4964: checking whether to use struct dirent64" >&5 echo $ECHO_N "checking whether to use struct dirent64... $ECHO_C" >&6 if test "${cf_cv_struct_dirent64+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 4970 "configure" +#line 4971 "configure" #include "confdefs.h" #include <sys/types.h> @@ -4988,16 +4989,16 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:4991: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:4992: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:4994: \$? = $ac_status" >&5 + echo "$as_me:4995: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:4997: \"$ac_try\"") >&5 + { (eval echo "$as_me:4998: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:5000: \$? = $ac_status" >&5 + echo "$as_me:5001: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_struct_dirent64=yes else @@ -5008,7 +5009,7 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:5011: result: $cf_cv_struct_dirent64" >&5 +echo "$as_me:5012: result: $cf_cv_struct_dirent64" >&5 echo "${ECHO_T}$cf_cv_struct_dirent64" >&6 test "$cf_cv_struct_dirent64" = yes && cat >>confdefs.h <<\EOF #define HAVE_STRUCT_DIRENT64 1 @@ -5027,7 +5028,7 @@ if test -z "$ALL_LINGUAS" ; then # Extract the first word of "msginit", so it can be a program name with args. set dummy msginit; ac_word=$2 -echo "$as_me:5030: checking for $ac_word" >&5 +echo "$as_me:5031: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_path_MSGINIT+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -5054,17 +5055,17 @@ esac fi MSGINIT="$ac_cv_path_MSGINIT" if test "$MSGINIT" != ":"; then - echo "$as_me:5057: result: $MSGINIT" >&5 + echo "$as_me:5058: result: $MSGINIT" >&5 echo "${ECHO_T}$MSGINIT" >&6 else - echo "$as_me:5060: result: no" >&5 + echo "$as_me:5061: result: no" >&5 echo "${ECHO_T}no" >&6 fi if test "$MSGINIT" != ":" ; then test -n "$verbose" && echo " adding en.po" 1>&6 -echo "${as_me-configure}:5067: testing adding en.po ..." 1>&5 +echo "${as_me-configure}:5068: testing adding en.po ..." 1>&5 ALL_LINGUAS="$ALL_LINGUAS en" fi @@ -5073,7 +5074,7 @@ fi 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:5076: checking for $ac_word" >&5 +echo "$as_me:5077: 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 @@ -5088,7 +5089,7 @@ for ac_dir in $ac_dummy; do 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:5091: found $ac_dir/$ac_word" >&5 +echo "$as_me:5092: found $ac_dir/$ac_word" >&5 break done @@ -5096,10 +5097,10 @@ fi fi RANLIB=$ac_cv_prog_RANLIB if test -n "$RANLIB"; then - echo "$as_me:5099: result: $RANLIB" >&5 + echo "$as_me:5100: result: $RANLIB" >&5 echo "${ECHO_T}$RANLIB" >&6 else - echo "$as_me:5102: result: no" >&5 + echo "$as_me:5103: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -5108,7 +5109,7 @@ if test -z "$ac_cv_prog_RANLIB"; then 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:5111: checking for $ac_word" >&5 +echo "$as_me:5112: 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 @@ -5123,7 +5124,7 @@ for ac_dir in $ac_dummy; do test -z "$ac_dir" && ac_dir=. $as_executable_p "$ac_dir/$ac_word" || continue ac_cv_prog_ac_ct_RANLIB="ranlib" -echo "$as_me:5126: found $ac_dir/$ac_word" >&5 +echo "$as_me:5127: found $ac_dir/$ac_word" >&5 break done @@ -5132,10 +5133,10 @@ fi fi ac_ct_RANLIB=$ac_cv_prog_ac_ct_RANLIB if test -n "$ac_ct_RANLIB"; then - echo "$as_me:5135: result: $ac_ct_RANLIB" >&5 + echo "$as_me:5136: result: $ac_ct_RANLIB" >&5 echo "${ECHO_T}$ac_ct_RANLIB" >&6 else - echo "$as_me:5138: result: no" >&5 + echo "$as_me:5139: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -5144,13 +5145,13 @@ else RANLIB="$ac_cv_prog_RANLIB" fi -echo "$as_me:5147: checking for ANSI C header files" >&5 +echo "$as_me:5148: 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 5153 "configure" +#line 5154 "configure" #include "confdefs.h" #include <stdlib.h> #include <stdarg.h> @@ -5158,13 +5159,13 @@ else #include <float.h> _ACEOF -if { (eval echo "$as_me:5161: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:5162: \"$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:5167: \$? = $ac_status" >&5 + echo "$as_me:5168: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -5186,7 +5187,7 @@ rm -f conftest.err conftest.$ac_ext 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 5189 "configure" +#line 5190 "configure" #include "confdefs.h" #include <string.h> @@ -5204,7 +5205,7 @@ fi 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 5207 "configure" +#line 5208 "configure" #include "confdefs.h" #include <stdlib.h> @@ -5225,7 +5226,7 @@ if test $ac_cv_header_stdc = yes; then : else cat >conftest.$ac_ext <<_ACEOF -#line 5228 "configure" +#line 5229 "configure" #include "confdefs.h" #include <ctype.h> #if ((' ' & 0x0FF) == 0x020) @@ -5251,15 +5252,15 @@ main () } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:5254: \"$ac_link\"") >&5 +if { (eval echo "$as_me:5255: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:5257: \$? = $ac_status" >&5 + echo "$as_me:5258: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:5259: \"$ac_try\"") >&5 + { (eval echo "$as_me:5260: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:5262: \$? = $ac_status" >&5 + echo "$as_me:5263: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -5272,7 +5273,7 @@ rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext fi fi fi -echo "$as_me:5275: result: $ac_cv_header_stdc" >&5 +echo "$as_me:5276: result: $ac_cv_header_stdc" >&5 echo "${ECHO_T}$ac_cv_header_stdc" >&6 if test $ac_cv_header_stdc = yes; then @@ -5282,7 +5283,7 @@ EOF fi -echo "$as_me:5285: checking for inline" >&5 +echo "$as_me:5286: 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 @@ -5290,7 +5291,7 @@ else ac_cv_c_inline=no for ac_kw in inline __inline__ __inline; do cat >conftest.$ac_ext <<_ACEOF -#line 5293 "configure" +#line 5294 "configure" #include "confdefs.h" #ifndef __cplusplus static $ac_kw int static_foo () {return 0; } @@ -5299,16 +5300,16 @@ $ac_kw int foo () {return 0; } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:5302: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:5303: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:5305: \$? = $ac_status" >&5 + echo "$as_me:5306: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:5308: \"$ac_try\"") >&5 + { (eval echo "$as_me:5309: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:5311: \$? = $ac_status" >&5 + echo "$as_me:5312: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_c_inline=$ac_kw; break else @@ -5319,7 +5320,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext done fi -echo "$as_me:5322: result: $ac_cv_c_inline" >&5 +echo "$as_me:5323: result: $ac_cv_c_inline" >&5 echo "${ECHO_T}$ac_cv_c_inline" >&6 case $ac_cv_c_inline in inline | yes) ;; @@ -5340,28 +5341,28 @@ for ac_header in sys/types.h sys/stat.h stdlib.h string.h memory.h strings.h \ inttypes.h stdint.h unistd.h do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` -echo "$as_me:5343: checking for $ac_header" >&5 +echo "$as_me:5344: 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 5349 "configure" +#line 5350 "configure" #include "confdefs.h" $ac_includes_default #include <$ac_header> _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:5355: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:5356: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:5358: \$? = $ac_status" >&5 + echo "$as_me:5359: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:5361: \"$ac_try\"") >&5 + { (eval echo "$as_me:5362: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:5364: \$? = $ac_status" >&5 + echo "$as_me:5365: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_Header=yes" else @@ -5371,7 +5372,7 @@ eval "$as_ac_Header=no" fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:5374: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:5375: 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 <<EOF @@ -5381,13 +5382,13 @@ EOF fi done -echo "$as_me:5384: checking for off_t" >&5 +echo "$as_me:5385: checking for off_t" >&5 echo $ECHO_N "checking for off_t... $ECHO_C" >&6 if test "${ac_cv_type_off_t+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 5390 "configure" +#line 5391 "configure" #include "confdefs.h" $ac_includes_default int @@ -5402,16 +5403,16 @@ if (sizeof (off_t)) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:5405: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:5406: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:5408: \$? = $ac_status" >&5 + echo "$as_me:5409: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:5411: \"$ac_try\"") >&5 + { (eval echo "$as_me:5412: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:5414: \$? = $ac_status" >&5 + echo "$as_me:5415: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_type_off_t=yes else @@ -5421,7 +5422,7 @@ ac_cv_type_off_t=no fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:5424: result: $ac_cv_type_off_t" >&5 +echo "$as_me:5425: result: $ac_cv_type_off_t" >&5 echo "${ECHO_T}$ac_cv_type_off_t" >&6 if test $ac_cv_type_off_t = yes; then : @@ -5433,13 +5434,13 @@ EOF fi -echo "$as_me:5436: checking for size_t" >&5 +echo "$as_me:5437: checking for size_t" >&5 echo $ECHO_N "checking for size_t... $ECHO_C" >&6 if test "${ac_cv_type_size_t+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 5442 "configure" +#line 5443 "configure" #include "confdefs.h" $ac_includes_default int @@ -5454,16 +5455,16 @@ if (sizeof (size_t)) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:5457: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:5458: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:5460: \$? = $ac_status" >&5 + echo "$as_me:5461: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:5463: \"$ac_try\"") >&5 + { (eval echo "$as_me:5464: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:5466: \$? = $ac_status" >&5 + echo "$as_me:5467: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_type_size_t=yes else @@ -5473,7 +5474,7 @@ ac_cv_type_size_t=no fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:5476: result: $ac_cv_type_size_t" >&5 +echo "$as_me:5477: result: $ac_cv_type_size_t" >&5 echo "${ECHO_T}$ac_cv_type_size_t" >&6 if test $ac_cv_type_size_t = yes; then : @@ -5487,13 +5488,13 @@ fi # The Ultrix 4.2 mips builtin alloca declared by alloca.h only works # for constant arguments. Useless! -echo "$as_me:5490: checking for working alloca.h" >&5 +echo "$as_me:5491: checking for working alloca.h" >&5 echo $ECHO_N "checking for working alloca.h... $ECHO_C" >&6 if test "${ac_cv_working_alloca_h+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 5496 "configure" +#line 5497 "configure" #include "confdefs.h" #include <alloca.h> int @@ -5505,16 +5506,16 @@ char *p = (char *) alloca (2 * sizeof (int)); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:5508: \"$ac_link\"") >&5 +if { (eval echo "$as_me:5509: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:5511: \$? = $ac_status" >&5 + echo "$as_me:5512: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:5514: \"$ac_try\"") >&5 + { (eval echo "$as_me:5515: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:5517: \$? = $ac_status" >&5 + echo "$as_me:5518: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_working_alloca_h=yes else @@ -5524,7 +5525,7 @@ ac_cv_working_alloca_h=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:5527: result: $ac_cv_working_alloca_h" >&5 +echo "$as_me:5528: result: $ac_cv_working_alloca_h" >&5 echo "${ECHO_T}$ac_cv_working_alloca_h" >&6 if test $ac_cv_working_alloca_h = yes; then @@ -5534,13 +5535,13 @@ EOF fi -echo "$as_me:5537: checking for alloca" >&5 +echo "$as_me:5538: checking for alloca" >&5 echo $ECHO_N "checking for alloca... $ECHO_C" >&6 if test "${ac_cv_func_alloca_works+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 5543 "configure" +#line 5544 "configure" #include "confdefs.h" #ifdef __GNUC__ # define alloca __builtin_alloca @@ -5572,16 +5573,16 @@ char *p = (char *) alloca (1); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:5575: \"$ac_link\"") >&5 +if { (eval echo "$as_me:5576: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:5578: \$? = $ac_status" >&5 + echo "$as_me:5579: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:5581: \"$ac_try\"") >&5 + { (eval echo "$as_me:5582: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:5584: \$? = $ac_status" >&5 + echo "$as_me:5585: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_alloca_works=yes else @@ -5591,7 +5592,7 @@ ac_cv_func_alloca_works=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:5594: result: $ac_cv_func_alloca_works" >&5 +echo "$as_me:5595: result: $ac_cv_func_alloca_works" >&5 echo "${ECHO_T}$ac_cv_func_alloca_works" >&6 if test $ac_cv_func_alloca_works = yes; then @@ -5612,13 +5613,13 @@ cat >>confdefs.h <<\EOF #define C_ALLOCA 1 EOF -echo "$as_me:5615: checking whether \`alloca.c' needs Cray hooks" >&5 +echo "$as_me:5616: checking whether \`alloca.c' needs Cray hooks" >&5 echo $ECHO_N "checking whether \`alloca.c' needs Cray hooks... $ECHO_C" >&6 if test "${ac_cv_os_cray+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 5621 "configure" +#line 5622 "configure" #include "confdefs.h" #if defined(CRAY) && ! defined(CRAY2) webecray @@ -5636,18 +5637,18 @@ fi rm -f conftest* fi -echo "$as_me:5639: result: $ac_cv_os_cray" >&5 +echo "$as_me:5640: result: $ac_cv_os_cray" >&5 echo "${ECHO_T}$ac_cv_os_cray" >&6 if test $ac_cv_os_cray = yes; then for ac_func in _getb67 GETB67 getb67; do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` -echo "$as_me:5644: checking for $ac_func" >&5 +echo "$as_me:5645: 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 5650 "configure" +#line 5651 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. */ @@ -5678,16 +5679,16 @@ f = $ac_func; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:5681: \"$ac_link\"") >&5 +if { (eval echo "$as_me:5682: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:5684: \$? = $ac_status" >&5 + echo "$as_me:5685: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:5687: \"$ac_try\"") >&5 + { (eval echo "$as_me:5688: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:5690: \$? = $ac_status" >&5 + echo "$as_me:5691: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else @@ -5697,7 +5698,7 @@ eval "$as_ac_var=no" fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:5700: result: `eval echo '${'$as_ac_var'}'`" >&5 +echo "$as_me:5701: 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 @@ -5711,7 +5712,7 @@ fi done fi -echo "$as_me:5714: checking stack direction for C alloca" >&5 +echo "$as_me:5715: checking stack direction for C alloca" >&5 echo $ECHO_N "checking stack direction for C alloca... $ECHO_C" >&6 if test "${ac_cv_c_stack_direction+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -5720,7 +5721,7 @@ else ac_cv_c_stack_direction=0 else cat >conftest.$ac_ext <<_ACEOF -#line 5723 "configure" +#line 5724 "configure" #include "confdefs.h" int find_stack_direction () @@ -5743,15 +5744,15 @@ main () } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:5746: \"$ac_link\"") >&5 +if { (eval echo "$as_me:5747: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:5749: \$? = $ac_status" >&5 + echo "$as_me:5750: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:5751: \"$ac_try\"") >&5 + { (eval echo "$as_me:5752: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:5754: \$? = $ac_status" >&5 + echo "$as_me:5755: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_c_stack_direction=1 else @@ -5763,7 +5764,7 @@ fi rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext fi fi -echo "$as_me:5766: result: $ac_cv_c_stack_direction" >&5 +echo "$as_me:5767: result: $ac_cv_c_stack_direction" >&5 echo "${ECHO_T}$ac_cv_c_stack_direction" >&6 cat >>confdefs.h <<EOF @@ -5775,23 +5776,23 @@ fi for ac_header in stdlib.h unistd.h do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` -echo "$as_me:5778: checking for $ac_header" >&5 +echo "$as_me:5779: 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 5784 "configure" +#line 5785 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:5788: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:5789: \"$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:5794: \$? = $ac_status" >&5 + echo "$as_me:5795: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -5810,7 +5811,7 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:5813: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:5814: 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 <<EOF @@ -5823,13 +5824,13 @@ done for ac_func in getpagesize do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` -echo "$as_me:5826: checking for $ac_func" >&5 +echo "$as_me:5827: 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 5832 "configure" +#line 5833 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. */ @@ -5860,16 +5861,16 @@ f = $ac_func; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:5863: \"$ac_link\"") >&5 +if { (eval echo "$as_me:5864: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:5866: \$? = $ac_status" >&5 + echo "$as_me:5867: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:5869: \"$ac_try\"") >&5 + { (eval echo "$as_me:5870: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:5872: \$? = $ac_status" >&5 + echo "$as_me:5873: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else @@ -5879,7 +5880,7 @@ eval "$as_ac_var=no" fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:5882: result: `eval echo '${'$as_ac_var'}'`" >&5 +echo "$as_me:5883: 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 <<EOF @@ -5889,7 +5890,7 @@ EOF fi done -echo "$as_me:5892: checking for working mmap" >&5 +echo "$as_me:5893: checking for working mmap" >&5 echo $ECHO_N "checking for working mmap... $ECHO_C" >&6 if test "${ac_cv_func_mmap_fixed_mapped+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -5898,7 +5899,7 @@ else ac_cv_func_mmap_fixed_mapped=no else cat >conftest.$ac_ext <<_ACEOF -#line 5901 "configure" +#line 5902 "configure" #include "confdefs.h" $ac_includes_default /* Thanks to Mike Haertel and Jim Avera for this test. @@ -6025,15 +6026,15 @@ main () } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:6028: \"$ac_link\"") >&5 +if { (eval echo "$as_me:6029: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:6031: \$? = $ac_status" >&5 + echo "$as_me:6032: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:6033: \"$ac_try\"") >&5 + { (eval echo "$as_me:6034: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:6036: \$? = $ac_status" >&5 + echo "$as_me:6037: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_mmap_fixed_mapped=yes else @@ -6045,7 +6046,7 @@ fi rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext fi fi -echo "$as_me:6048: result: $ac_cv_func_mmap_fixed_mapped" >&5 +echo "$as_me:6049: result: $ac_cv_func_mmap_fixed_mapped" >&5 echo "${ECHO_T}$ac_cv_func_mmap_fixed_mapped" >&6 if test $ac_cv_func_mmap_fixed_mapped = yes; then @@ -6056,13 +6057,13 @@ EOF fi rm -f conftest.mmap - echo "$as_me:6059: checking whether we are using the GNU C Library 2.1 or newer" >&5 + echo "$as_me:6060: checking whether we are using the GNU C Library 2.1 or newer" >&5 echo $ECHO_N "checking whether we are using the GNU C Library 2.1 or newer... $ECHO_C" >&6 if test "${ac_cv_gnu_library_2_1+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 6065 "configure" +#line 6066 "configure" #include "confdefs.h" #include <features.h> @@ -6082,7 +6083,7 @@ fi rm -f conftest* fi -echo "$as_me:6085: result: $ac_cv_gnu_library_2_1" >&5 +echo "$as_me:6086: result: $ac_cv_gnu_library_2_1" >&5 echo "${ECHO_T}$ac_cv_gnu_library_2_1" >&6 GLIBC21="$ac_cv_gnu_library_2_1" @@ -6106,23 +6107,23 @@ for ac_header in argz.h limits.h locale.h nl_types.h malloc.h stddef.h \ stdlib.h string.h unistd.h sys/param.h do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` -echo "$as_me:6109: checking for $ac_header" >&5 +echo "$as_me:6110: 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 6115 "configure" +#line 6116 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:6119: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:6120: \"$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:6125: \$? = $ac_status" >&5 + echo "$as_me:6126: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -6141,7 +6142,7 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:6144: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:6145: 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 <<EOF @@ -6156,13 +6157,13 @@ getgid getuid mempcpy munmap putenv setenv setlocale stpcpy strchr strcasecmp \ strdup strtoul tsearch __argz_count __argz_stringify __argz_next do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` -echo "$as_me:6159: checking for $ac_func" >&5 +echo "$as_me:6160: 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 6165 "configure" +#line 6166 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. */ @@ -6193,16 +6194,16 @@ f = $ac_func; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:6196: \"$ac_link\"") >&5 +if { (eval echo "$as_me:6197: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:6199: \$? = $ac_status" >&5 + echo "$as_me:6200: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:6202: \"$ac_try\"") >&5 + { (eval echo "$as_me:6203: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:6205: \$? = $ac_status" >&5 + echo "$as_me:6206: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else @@ -6212,7 +6213,7 @@ eval "$as_ac_var=no" fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:6215: result: `eval echo '${'$as_ac_var'}'`" >&5 +echo "$as_me:6216: 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 <<EOF @@ -6260,7 +6261,7 @@ if test -n "$cf_searchpath/include" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 6263 "configure" +#line 6264 "configure" #include "confdefs.h" #include <stdio.h> int @@ -6272,16 +6273,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:6275: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:6276: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:6278: \$? = $ac_status" >&5 + echo "$as_me:6279: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:6281: \"$ac_try\"") >&5 + { (eval echo "$as_me:6282: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:6284: \$? = $ac_status" >&5 + echo "$as_me:6285: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -6298,7 +6299,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "$cf_have_incdir" = no ; then test -n "$verbose" && echo " adding $cf_add_incdir to include-path" 1>&6 -echo "${as_me-configure}:6301: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me-configure}:6302: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -6339,7 +6340,7 @@ if test -n "$cf_searchpath/../include" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 6342 "configure" +#line 6343 "configure" #include "confdefs.h" #include <stdio.h> int @@ -6351,16 +6352,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:6354: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:6355: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:6357: \$? = $ac_status" >&5 + echo "$as_me:6358: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:6360: \"$ac_try\"") >&5 + { (eval echo "$as_me:6361: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:6363: \$? = $ac_status" >&5 + echo "$as_me:6364: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -6377,7 +6378,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "$cf_have_incdir" = no ; then test -n "$verbose" && echo " adding $cf_add_incdir to include-path" 1>&6 -echo "${as_me-configure}:6380: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me-configure}:6381: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -6393,7 +6394,7 @@ echo "${as_me-configure}:6380: testing adding $cf_add_incdir to include-path ... fi else -{ { echo "$as_me:6396: error: cannot find libiconv under $withval" >&5 +{ { echo "$as_me:6397: error: cannot find libiconv under $withval" >&5 echo "$as_me: error: cannot find libiconv under $withval" >&2;} { (exit 1); exit 1; }; } fi @@ -6418,7 +6419,7 @@ if test -n "$cf_searchpath/lib" ; then if test "$cf_have_libdir" = no ; then test -n "$verbose" && echo " adding $cf_add_libdir to library-path" 1>&6 -echo "${as_me-configure}:6421: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me-configure}:6422: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -6447,7 +6448,7 @@ if test -n "$cf_searchpath" ; then if test "$cf_have_libdir" = no ; then test -n "$verbose" && echo " adding $cf_add_libdir to library-path" 1>&6 -echo "${as_me-configure}:6450: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me-configure}:6451: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -6456,7 +6457,7 @@ echo "${as_me-configure}:6450: testing adding $cf_add_libdir to library-path ... fi else -{ { echo "$as_me:6459: error: cannot find libiconv under $withval" >&5 +{ { echo "$as_me:6460: error: cannot find libiconv under $withval" >&5 echo "$as_me: error: cannot find libiconv under $withval" >&2;} { (exit 1); exit 1; }; } fi @@ -6467,7 +6468,7 @@ done fi; - echo "$as_me:6470: checking for iconv" >&5 + echo "$as_me:6471: checking for iconv" >&5 echo $ECHO_N "checking for iconv... $ECHO_C" >&6 if test "${am_cv_func_iconv+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -6478,10 +6479,10 @@ else cf_cv_header_path_iconv= cf_cv_library_path_iconv= -echo "${as_me-configure}:6481: testing Starting FIND_LINKAGE(iconv,) ..." 1>&5 +echo "${as_me-configure}:6482: testing Starting FIND_LINKAGE(iconv,) ..." 1>&5 cat >conftest.$ac_ext <<_ACEOF -#line 6484 "configure" +#line 6485 "configure" #include "confdefs.h" #include <stdlib.h> @@ -6500,16 +6501,16 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:6503: \"$ac_link\"") >&5 +if { (eval echo "$as_me:6504: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:6506: \$? = $ac_status" >&5 + echo "$as_me:6507: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:6509: \"$ac_try\"") >&5 + { (eval echo "$as_me:6510: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:6512: \$? = $ac_status" >&5 + echo "$as_me:6513: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_find_linkage_iconv=yes @@ -6522,7 +6523,7 @@ cf_save_LIBS="$LIBS" LIBS="-liconv $cf_save_LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 6525 "configure" +#line 6526 "configure" #include "confdefs.h" #include <stdlib.h> @@ -6541,16 +6542,16 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:6544: \"$ac_link\"") >&5 +if { (eval echo "$as_me:6545: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:6547: \$? = $ac_status" >&5 + echo "$as_me:6548: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:6550: \"$ac_try\"") >&5 + { (eval echo "$as_me:6551: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:6553: \$? = $ac_status" >&5 + echo "$as_me:6554: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_find_linkage_iconv=yes @@ -6565,9 +6566,9 @@ cat conftest.$ac_ext >&5 test -n "$verbose" && echo " find linkage for iconv library" 1>&6 -echo "${as_me-configure}:6568: testing find linkage for iconv library ..." 1>&5 +echo "${as_me-configure}:6569: testing find linkage for iconv library ..." 1>&5 -echo "${as_me-configure}:6570: testing Searching for headers in FIND_LINKAGE(iconv,) ..." 1>&5 +echo "${as_me-configure}:6571: testing Searching for headers in FIND_LINKAGE(iconv,) ..." 1>&5 cf_save_CPPFLAGS="$CPPFLAGS" cf_test_CPPFLAGS="$CPPFLAGS" @@ -6676,11 +6677,11 @@ cf_search="$cf_header_path_list $cf_search" if test -d $cf_cv_header_path_iconv ; then test -n "$verbose" && echo " ... testing $cf_cv_header_path_iconv" 1>&6 -echo "${as_me-configure}:6679: testing ... testing $cf_cv_header_path_iconv ..." 1>&5 +echo "${as_me-configure}:6680: testing ... testing $cf_cv_header_path_iconv ..." 1>&5 CPPFLAGS="$cf_save_CPPFLAGS -I$cf_cv_header_path_iconv" cat >conftest.$ac_ext <<_ACEOF -#line 6683 "configure" +#line 6684 "configure" #include "confdefs.h" #include <stdlib.h> @@ -6699,21 +6700,21 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:6702: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:6703: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:6705: \$? = $ac_status" >&5 + echo "$as_me:6706: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:6708: \"$ac_try\"") >&5 + { (eval echo "$as_me:6709: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:6711: \$? = $ac_status" >&5 + echo "$as_me:6712: \$? = $ac_status" >&5 (exit $ac_status); }; }; then test -n "$verbose" && echo " ... found iconv headers in $cf_cv_header_path_iconv" 1>&6 -echo "${as_me-configure}:6716: testing ... found iconv headers in $cf_cv_header_path_iconv ..." 1>&5 +echo "${as_me-configure}:6717: testing ... found iconv headers in $cf_cv_header_path_iconv ..." 1>&5 cf_cv_find_linkage_iconv=maybe cf_test_CPPFLAGS="$CPPFLAGS" @@ -6731,7 +6732,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "$cf_cv_find_linkage_iconv" = maybe ; then -echo "${as_me-configure}:6734: testing Searching for iconv library in FIND_LINKAGE(iconv,) ..." 1>&5 +echo "${as_me-configure}:6735: testing Searching for iconv library in FIND_LINKAGE(iconv,) ..." 1>&5 cf_save_LIBS="$LIBS" cf_save_LDFLAGS="$LDFLAGS" @@ -6828,13 +6829,13 @@ cf_search="$cf_library_path_list $cf_search" if test -d $cf_cv_library_path_iconv ; then test -n "$verbose" && echo " ... testing $cf_cv_library_path_iconv" 1>&6 -echo "${as_me-configure}:6831: testing ... testing $cf_cv_library_path_iconv ..." 1>&5 +echo "${as_me-configure}:6832: testing ... testing $cf_cv_library_path_iconv ..." 1>&5 CPPFLAGS="$cf_test_CPPFLAGS" LIBS="-liconv $cf_save_LIBS" LDFLAGS="$cf_save_LDFLAGS -L$cf_cv_library_path_iconv" cat >conftest.$ac_ext <<_ACEOF -#line 6837 "configure" +#line 6838 "configure" #include "confdefs.h" #include <stdlib.h> @@ -6853,21 +6854,21 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:6856: \"$ac_link\"") >&5 +if { (eval echo "$as_me:6857: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:6859: \$? = $ac_status" >&5 + echo "$as_me:6860: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:6862: \"$ac_try\"") >&5 + { (eval echo "$as_me:6863: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:6865: \$? = $ac_status" >&5 + echo "$as_me:6866: \$? = $ac_status" >&5 (exit $ac_status); }; }; then test -n "$verbose" && echo " ... found iconv library in $cf_cv_library_path_iconv" 1>&6 -echo "${as_me-configure}:6870: testing ... found iconv library in $cf_cv_library_path_iconv ..." 1>&5 +echo "${as_me-configure}:6871: testing ... found iconv library in $cf_cv_library_path_iconv ..." 1>&5 cf_cv_find_linkage_iconv=yes cf_cv_library_file_iconv="-liconv" @@ -6906,7 +6907,7 @@ am_cv_func_iconv="no, consider installing GNU libiconv" fi fi -echo "$as_me:6909: result: $am_cv_func_iconv" >&5 +echo "$as_me:6910: result: $am_cv_func_iconv" >&5 echo "${ECHO_T}$am_cv_func_iconv" >&6 if test "$am_cv_func_iconv" = yes; then @@ -6915,14 +6916,14 @@ cat >>confdefs.h <<\EOF #define HAVE_ICONV 1 EOF - echo "$as_me:6918: checking if the declaration of iconv() needs const." >&5 + echo "$as_me:6919: checking if the declaration of iconv() needs const." >&5 echo $ECHO_N "checking if the declaration of iconv() needs const.... $ECHO_C" >&6 if test "${am_cv_proto_iconv_const+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 6925 "configure" +#line 6926 "configure" #include "confdefs.h" #include <stdlib.h> @@ -6947,16 +6948,16 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:6950: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:6951: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:6953: \$? = $ac_status" >&5 + echo "$as_me:6954: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:6956: \"$ac_try\"") >&5 + { (eval echo "$as_me:6957: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:6959: \$? = $ac_status" >&5 + echo "$as_me:6960: \$? = $ac_status" >&5 (exit $ac_status); }; }; then am_cv_proto_iconv_const=no else @@ -6966,7 +6967,7 @@ am_cv_proto_iconv_const=yes fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:6969: result: $am_cv_proto_iconv_const" >&5 +echo "$as_me:6970: result: $am_cv_proto_iconv_const" >&5 echo "${ECHO_T}$am_cv_proto_iconv_const" >&6 if test "$am_cv_proto_iconv_const" = yes ; then @@ -7008,7 +7009,7 @@ if test -n "$cf_cv_header_path_iconv" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 7011 "configure" +#line 7012 "configure" #include "confdefs.h" #include <stdio.h> int @@ -7020,16 +7021,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:7023: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:7024: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:7026: \$? = $ac_status" >&5 + echo "$as_me:7027: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:7029: \"$ac_try\"") >&5 + { (eval echo "$as_me:7030: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:7032: \$? = $ac_status" >&5 + echo "$as_me:7033: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -7046,7 +7047,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "$cf_have_incdir" = no ; then test -n "$verbose" && echo " adding $cf_add_incdir to include-path" 1>&6 -echo "${as_me-configure}:7049: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me-configure}:7050: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -7083,7 +7084,7 @@ if test -n "$cf_cv_library_path_iconv" ; then if test "$cf_have_libdir" = no ; then test -n "$verbose" && echo " adding $cf_add_libdir to library-path" 1>&6 -echo "${as_me-configure}:7086: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me-configure}:7087: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -7094,13 +7095,13 @@ fi fi fi - echo "$as_me:7097: checking for nl_langinfo and CODESET" >&5 + echo "$as_me:7098: checking for nl_langinfo and CODESET" >&5 echo $ECHO_N "checking for nl_langinfo and CODESET... $ECHO_C" >&6 if test "${am_cv_langinfo_codeset+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 7103 "configure" +#line 7104 "configure" #include "confdefs.h" #include <langinfo.h> int @@ -7112,16 +7113,16 @@ char* cs = nl_langinfo(CODESET); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:7115: \"$ac_link\"") >&5 +if { (eval echo "$as_me:7116: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:7118: \$? = $ac_status" >&5 + echo "$as_me:7119: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:7121: \"$ac_try\"") >&5 + { (eval echo "$as_me:7122: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:7124: \$? = $ac_status" >&5 + echo "$as_me:7125: \$? = $ac_status" >&5 (exit $ac_status); }; }; then am_cv_langinfo_codeset=yes else @@ -7132,7 +7133,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:7135: result: $am_cv_langinfo_codeset" >&5 +echo "$as_me:7136: result: $am_cv_langinfo_codeset" >&5 echo "${ECHO_T}$am_cv_langinfo_codeset" >&6 if test $am_cv_langinfo_codeset = yes; then @@ -7143,13 +7144,13 @@ EOF fi if test $ac_cv_header_locale_h = yes; then - echo "$as_me:7146: checking for LC_MESSAGES" >&5 + echo "$as_me:7147: checking for LC_MESSAGES" >&5 echo $ECHO_N "checking for LC_MESSAGES... $ECHO_C" >&6 if test "${am_cv_val_LC_MESSAGES+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 7152 "configure" +#line 7153 "configure" #include "confdefs.h" #include <locale.h> int @@ -7161,16 +7162,16 @@ return LC_MESSAGES } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:7164: \"$ac_link\"") >&5 +if { (eval echo "$as_me:7165: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:7167: \$? = $ac_status" >&5 + echo "$as_me:7168: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:7170: \"$ac_try\"") >&5 + { (eval echo "$as_me:7171: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:7173: \$? = $ac_status" >&5 + echo "$as_me:7174: \$? = $ac_status" >&5 (exit $ac_status); }; }; then am_cv_val_LC_MESSAGES=yes else @@ -7180,7 +7181,7 @@ am_cv_val_LC_MESSAGES=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:7183: result: $am_cv_val_LC_MESSAGES" >&5 +echo "$as_me:7184: result: $am_cv_val_LC_MESSAGES" >&5 echo "${ECHO_T}$am_cv_val_LC_MESSAGES" >&6 if test $am_cv_val_LC_MESSAGES = yes; then @@ -7190,7 +7191,7 @@ EOF fi fi - echo "$as_me:7193: checking whether NLS is requested" >&5 + echo "$as_me:7194: checking whether NLS is requested" >&5 echo $ECHO_N "checking whether NLS is requested... $ECHO_C" >&6 # Check whether --enable-nls or --disable-nls was given. @@ -7200,7 +7201,7 @@ if test "${enable_nls+set}" = set; then else USE_NLS=no fi; - echo "$as_me:7203: result: $USE_NLS" >&5 + echo "$as_me:7204: result: $USE_NLS" >&5 echo "${ECHO_T}$USE_NLS" >&6 BUILD_INCLUDED_LIBINTL=no @@ -7213,7 +7214,7 @@ cat >>confdefs.h <<\EOF #define ENABLE_NLS 1 EOF - echo "$as_me:7216: checking whether included gettext is requested" >&5 + echo "$as_me:7217: checking whether included gettext is requested" >&5 echo $ECHO_N "checking whether included gettext is requested... $ECHO_C" >&6 # Check whether --with-included-gettext or --without-included-gettext was given. @@ -7223,7 +7224,7 @@ if test "${with_included_gettext+set}" = set; then else nls_cv_force_use_gnu_gettext=no fi; - echo "$as_me:7226: result: $nls_cv_force_use_gnu_gettext" >&5 + echo "$as_me:7227: result: $nls_cv_force_use_gnu_gettext" >&5 echo "${ECHO_T}$nls_cv_force_use_gnu_gettext" >&6 nls_cv_use_gnu_gettext="$nls_cv_force_use_gnu_gettext" @@ -7232,7 +7233,7 @@ echo "${ECHO_T}$nls_cv_force_use_gnu_gettext" >&6 cf_save_LIBS_1="$LIBS" LIBS="$LIBICONV $LIBS" - echo "$as_me:7235: checking for libintl.h and gettext()" >&5 + echo "$as_me:7236: checking for libintl.h and gettext()" >&5 echo $ECHO_N "checking for libintl.h and gettext()... $ECHO_C" >&6 if test "${cf_cv_func_gettext+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -7243,10 +7244,10 @@ else cf_cv_header_path_intl= cf_cv_library_path_intl= -echo "${as_me-configure}:7246: testing Starting FIND_LINKAGE(intl,) ..." 1>&5 +echo "${as_me-configure}:7247: testing Starting FIND_LINKAGE(intl,) ..." 1>&5 cat >conftest.$ac_ext <<_ACEOF -#line 7249 "configure" +#line 7250 "configure" #include "confdefs.h" #include <libintl.h> @@ -7266,16 +7267,16 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:7269: \"$ac_link\"") >&5 +if { (eval echo "$as_me:7270: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:7272: \$? = $ac_status" >&5 + echo "$as_me:7273: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:7275: \"$ac_try\"") >&5 + { (eval echo "$as_me:7276: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:7278: \$? = $ac_status" >&5 + echo "$as_me:7279: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_find_linkage_intl=yes @@ -7288,7 +7289,7 @@ cf_save_LIBS="$LIBS" LIBS="-lintl $cf_save_LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 7291 "configure" +#line 7292 "configure" #include "confdefs.h" #include <libintl.h> @@ -7308,16 +7309,16 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:7311: \"$ac_link\"") >&5 +if { (eval echo "$as_me:7312: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:7314: \$? = $ac_status" >&5 + echo "$as_me:7315: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:7317: \"$ac_try\"") >&5 + { (eval echo "$as_me:7318: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:7320: \$? = $ac_status" >&5 + echo "$as_me:7321: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_find_linkage_intl=yes @@ -7332,9 +7333,9 @@ cat conftest.$ac_ext >&5 test -n "$verbose" && echo " find linkage for intl library" 1>&6 -echo "${as_me-configure}:7335: testing find linkage for intl library ..." 1>&5 +echo "${as_me-configure}:7336: testing find linkage for intl library ..." 1>&5 -echo "${as_me-configure}:7337: testing Searching for headers in FIND_LINKAGE(intl,) ..." 1>&5 +echo "${as_me-configure}:7338: testing Searching for headers in FIND_LINKAGE(intl,) ..." 1>&5 cf_save_CPPFLAGS="$CPPFLAGS" cf_test_CPPFLAGS="$CPPFLAGS" @@ -7443,11 +7444,11 @@ cf_search="$cf_header_path_list $cf_search" if test -d $cf_cv_header_path_intl ; then test -n "$verbose" && echo " ... testing $cf_cv_header_path_intl" 1>&6 -echo "${as_me-configure}:7446: testing ... testing $cf_cv_header_path_intl ..." 1>&5 +echo "${as_me-configure}:7447: testing ... testing $cf_cv_header_path_intl ..." 1>&5 CPPFLAGS="$cf_save_CPPFLAGS -I$cf_cv_header_path_intl" cat >conftest.$ac_ext <<_ACEOF -#line 7450 "configure" +#line 7451 "configure" #include "confdefs.h" #include <libintl.h> @@ -7467,21 +7468,21 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:7470: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:7471: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:7473: \$? = $ac_status" >&5 + echo "$as_me:7474: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:7476: \"$ac_try\"") >&5 + { (eval echo "$as_me:7477: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:7479: \$? = $ac_status" >&5 + echo "$as_me:7480: \$? = $ac_status" >&5 (exit $ac_status); }; }; then test -n "$verbose" && echo " ... found intl headers in $cf_cv_header_path_intl" 1>&6 -echo "${as_me-configure}:7484: testing ... found intl headers in $cf_cv_header_path_intl ..." 1>&5 +echo "${as_me-configure}:7485: testing ... found intl headers in $cf_cv_header_path_intl ..." 1>&5 cf_cv_find_linkage_intl=maybe cf_test_CPPFLAGS="$CPPFLAGS" @@ -7499,7 +7500,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "$cf_cv_find_linkage_intl" = maybe ; then -echo "${as_me-configure}:7502: testing Searching for intl library in FIND_LINKAGE(intl,) ..." 1>&5 +echo "${as_me-configure}:7503: testing Searching for intl library in FIND_LINKAGE(intl,) ..." 1>&5 cf_save_LIBS="$LIBS" cf_save_LDFLAGS="$LDFLAGS" @@ -7596,13 +7597,13 @@ cf_search="$cf_library_path_list $cf_search" if test -d $cf_cv_library_path_intl ; then test -n "$verbose" && echo " ... testing $cf_cv_library_path_intl" 1>&6 -echo "${as_me-configure}:7599: testing ... testing $cf_cv_library_path_intl ..." 1>&5 +echo "${as_me-configure}:7600: testing ... testing $cf_cv_library_path_intl ..." 1>&5 CPPFLAGS="$cf_test_CPPFLAGS" LIBS="-lintl $cf_save_LIBS" LDFLAGS="$cf_save_LDFLAGS -L$cf_cv_library_path_intl" cat >conftest.$ac_ext <<_ACEOF -#line 7605 "configure" +#line 7606 "configure" #include "confdefs.h" #include <libintl.h> @@ -7622,21 +7623,21 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:7625: \"$ac_link\"") >&5 +if { (eval echo "$as_me:7626: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:7628: \$? = $ac_status" >&5 + echo "$as_me:7629: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:7631: \"$ac_try\"") >&5 + { (eval echo "$as_me:7632: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:7634: \$? = $ac_status" >&5 + echo "$as_me:7635: \$? = $ac_status" >&5 (exit $ac_status); }; }; then test -n "$verbose" && echo " ... found intl library in $cf_cv_library_path_intl" 1>&6 -echo "${as_me-configure}:7639: testing ... found intl library in $cf_cv_library_path_intl ..." 1>&5 +echo "${as_me-configure}:7640: testing ... found intl library in $cf_cv_library_path_intl ..." 1>&5 cf_cv_find_linkage_intl=yes cf_cv_library_file_intl="-lintl" @@ -7675,7 +7676,7 @@ cf_cv_func_gettext=no fi fi -echo "$as_me:7678: result: $cf_cv_func_gettext" >&5 +echo "$as_me:7679: result: $cf_cv_func_gettext" >&5 echo "${ECHO_T}$cf_cv_func_gettext" >&6 LIBS="$cf_save_LIBS_1" @@ -7714,7 +7715,7 @@ if test -n "$cf_cv_header_path_intl" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 7717 "configure" +#line 7718 "configure" #include "confdefs.h" #include <stdio.h> int @@ -7726,16 +7727,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:7729: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:7730: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:7732: \$? = $ac_status" >&5 + echo "$as_me:7733: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:7735: \"$ac_try\"") >&5 + { (eval echo "$as_me:7736: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:7738: \$? = $ac_status" >&5 + echo "$as_me:7739: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -7752,7 +7753,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "$cf_have_incdir" = no ; then test -n "$verbose" && echo " adding $cf_add_incdir to include-path" 1>&6 -echo "${as_me-configure}:7755: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me-configure}:7756: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -7789,7 +7790,7 @@ if test -n "$cf_cv_library_path_intl" ; then if test "$cf_have_libdir" = no ; then test -n "$verbose" && echo " adding $cf_add_libdir to library-path" 1>&6 -echo "${as_me-configure}:7792: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me-configure}:7793: testing adding $cf_add_libdir to library-path ..." 1>&5 INTLLIBS="-L$cf_add_libdir $INTLLIBS" fi @@ -7805,13 +7806,13 @@ fi for ac_func in dcgettext do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` -echo "$as_me:7808: checking for $ac_func" >&5 +echo "$as_me:7809: 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 7814 "configure" +#line 7815 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. */ @@ -7842,16 +7843,16 @@ f = $ac_func; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:7845: \"$ac_link\"") >&5 +if { (eval echo "$as_me:7846: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:7848: \$? = $ac_status" >&5 + echo "$as_me:7849: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:7851: \"$ac_try\"") >&5 + { (eval echo "$as_me:7852: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:7854: \$? = $ac_status" >&5 + echo "$as_me:7855: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else @@ -7861,7 +7862,7 @@ eval "$as_ac_var=no" fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:7864: result: `eval echo '${'$as_ac_var'}'`" >&5 +echo "$as_me:7865: 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 <<EOF @@ -7876,7 +7877,7 @@ done # Extract the first word of "msgfmt", so it can be a program name with args. set dummy msgfmt; ac_word=$2 -echo "$as_me:7879: checking for $ac_word" >&5 +echo "$as_me:7880: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_path_MSGFMT+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -7903,16 +7904,16 @@ esac fi MSGFMT="$ac_cv_path_MSGFMT" if test "$MSGFMT" != ":"; then - echo "$as_me:7906: result: $MSGFMT" >&5 + echo "$as_me:7907: result: $MSGFMT" >&5 echo "${ECHO_T}$MSGFMT" >&6 else - echo "$as_me:7909: result: no" >&5 + echo "$as_me:7910: result: no" >&5 echo "${ECHO_T}no" >&6 fi # Extract the first word of "gmsgfmt", so it can be a program name with args. set dummy gmsgfmt; ac_word=$2 -echo "$as_me:7915: checking for $ac_word" >&5 +echo "$as_me:7916: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_path_GMSGFMT+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -7929,7 +7930,7 @@ for ac_dir in $ac_dummy; do test -z "$ac_dir" && ac_dir=. if $as_executable_p "$ac_dir/$ac_word"; then ac_cv_path_GMSGFMT="$ac_dir/$ac_word" - echo "$as_me:7932: found $ac_dir/$ac_word" >&5 + echo "$as_me:7933: found $ac_dir/$ac_word" >&5 break fi done @@ -7941,17 +7942,17 @@ fi GMSGFMT=$ac_cv_path_GMSGFMT if test -n "$GMSGFMT"; then - echo "$as_me:7944: result: $GMSGFMT" >&5 + echo "$as_me:7945: result: $GMSGFMT" >&5 echo "${ECHO_T}$GMSGFMT" >&6 else - echo "$as_me:7947: result: no" >&5 + echo "$as_me:7948: result: no" >&5 echo "${ECHO_T}no" >&6 fi # Extract the first word of "xgettext", so it can be a program name with args. set dummy xgettext; ac_word=$2 -echo "$as_me:7954: checking for $ac_word" >&5 +echo "$as_me:7955: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_path_XGETTEXT+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -7978,10 +7979,10 @@ esac fi XGETTEXT="$ac_cv_path_XGETTEXT" if test "$XGETTEXT" != ":"; then - echo "$as_me:7981: result: $XGETTEXT" >&5 + echo "$as_me:7982: result: $XGETTEXT" >&5 echo "${ECHO_T}$XGETTEXT" >&6 else - echo "$as_me:7984: result: no" >&5 + echo "$as_me:7985: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -7996,7 +7997,7 @@ fi if test "$nls_cv_use_gnu_gettext" = "yes"; then if test ! -d $srcdir/intl ; then - { { echo "$as_me:7999: error: no NLS library is packaged with this application" >&5 + { { echo "$as_me:8000: error: no NLS library is packaged with this application" >&5 echo "$as_me: error: no NLS library is packaged with this application" >&2;} { (exit 1); exit 1; }; } fi @@ -8004,7 +8005,7 @@ echo "$as_me: error: no NLS library is packaged with this application" >&2;} # Extract the first word of "msgfmt", so it can be a program name with args. set dummy msgfmt; ac_word=$2 -echo "$as_me:8007: checking for $ac_word" >&5 +echo "$as_me:8008: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_path_MSGFMT+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -8031,16 +8032,16 @@ esac fi MSGFMT="$ac_cv_path_MSGFMT" if test "$MSGFMT" != ":"; then - echo "$as_me:8034: result: $MSGFMT" >&5 + echo "$as_me:8035: result: $MSGFMT" >&5 echo "${ECHO_T}$MSGFMT" >&6 else - echo "$as_me:8037: result: no" >&5 + echo "$as_me:8038: result: no" >&5 echo "${ECHO_T}no" >&6 fi # Extract the first word of "gmsgfmt", so it can be a program name with args. set dummy gmsgfmt; ac_word=$2 -echo "$as_me:8043: checking for $ac_word" >&5 +echo "$as_me:8044: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_path_GMSGFMT+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -8057,7 +8058,7 @@ for ac_dir in $ac_dummy; do test -z "$ac_dir" && ac_dir=. if $as_executable_p "$ac_dir/$ac_word"; then ac_cv_path_GMSGFMT="$ac_dir/$ac_word" - echo "$as_me:8060: found $ac_dir/$ac_word" >&5 + echo "$as_me:8061: found $ac_dir/$ac_word" >&5 break fi done @@ -8069,17 +8070,17 @@ fi GMSGFMT=$ac_cv_path_GMSGFMT if test -n "$GMSGFMT"; then - echo "$as_me:8072: result: $GMSGFMT" >&5 + echo "$as_me:8073: result: $GMSGFMT" >&5 echo "${ECHO_T}$GMSGFMT" >&6 else - echo "$as_me:8075: result: no" >&5 + echo "$as_me:8076: result: no" >&5 echo "${ECHO_T}no" >&6 fi # Extract the first word of "xgettext", so it can be a program name with args. set dummy xgettext; ac_word=$2 -echo "$as_me:8082: checking for $ac_word" >&5 +echo "$as_me:8083: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_path_XGETTEXT+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -8106,10 +8107,10 @@ esac fi XGETTEXT="$ac_cv_path_XGETTEXT" if test "$XGETTEXT" != ":"; then - echo "$as_me:8109: result: $XGETTEXT" >&5 + echo "$as_me:8110: result: $XGETTEXT" >&5 echo "${ECHO_T}$XGETTEXT" >&6 else - echo "$as_me:8112: result: no" >&5 + echo "$as_me:8113: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -8124,7 +8125,7 @@ fi if $GMSGFMT --statistics /dev/null >/dev/null 2>&1; then : ; else - echo "$as_me:8127: result: found msgfmt program is not GNU msgfmt; ignore it" >&5 + echo "$as_me:8128: result: found msgfmt program is not GNU msgfmt; ignore it" >&5 echo "${ECHO_T}found msgfmt program is not GNU msgfmt; ignore it" >&6 GMSGFMT=":" fi @@ -8134,7 +8135,7 @@ echo "${ECHO_T}found msgfmt program is not GNU msgfmt; ignore it" >&6 if $XGETTEXT --omit-header /dev/null >/dev/null 2>&1; then : ; else - echo "$as_me:8137: result: found xgettext program is not GNU xgettext; ignore it" >&5 + echo "$as_me:8138: result: found xgettext program is not GNU xgettext; ignore it" >&5 echo "${ECHO_T}found xgettext program is not GNU xgettext; ignore it" >&6 XGETTEXT=":" fi @@ -8154,7 +8155,7 @@ echo "${ECHO_T}found xgettext program is not GNU xgettext; ignore it" >&6 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:8157: checking for $ac_word" >&5 +echo "$as_me:8158: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_prog_INTLBISON+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -8169,7 +8170,7 @@ for ac_dir in $ac_dummy; do test -z "$ac_dir" && ac_dir=. $as_executable_p "$ac_dir/$ac_word" || continue ac_cv_prog_INTLBISON="$ac_prog" -echo "$as_me:8172: found $ac_dir/$ac_word" >&5 +echo "$as_me:8173: found $ac_dir/$ac_word" >&5 break done @@ -8177,10 +8178,10 @@ fi fi INTLBISON=$ac_cv_prog_INTLBISON if test -n "$INTLBISON"; then - echo "$as_me:8180: result: $INTLBISON" >&5 + echo "$as_me:8181: result: $INTLBISON" >&5 echo "${ECHO_T}$INTLBISON" >&6 else - echo "$as_me:8183: result: no" >&5 + echo "$as_me:8184: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -8190,7 +8191,7 @@ done if test -z "$INTLBISON"; then ac_verc_fail=yes else - echo "$as_me:8193: checking version of bison" >&5 + echo "$as_me:8194: checking version of bison" >&5 echo $ECHO_N "checking version of bison... $ECHO_C" >&6 ac_prog_version=`$INTLBISON --version 2>&1 | sed -n 's/^.*GNU Bison.* \([0-9]*\.[0-9.]*\).*$/\1/p'` case $ac_prog_version in @@ -8199,7 +8200,7 @@ echo $ECHO_N "checking version of bison... $ECHO_C" >&6 ac_prog_version="$ac_prog_version, ok"; ac_verc_fail=no;; *) ac_prog_version="$ac_prog_version, bad"; ac_verc_fail=yes;; esac - echo "$as_me:8202: result: $ac_prog_version" >&5 + echo "$as_me:8203: result: $ac_prog_version" >&5 echo "${ECHO_T}$ac_prog_version" >&6 fi if test $ac_verc_fail = yes; then @@ -8225,7 +8226,7 @@ echo "${ECHO_T}$ac_prog_version" >&6 if test "x$ALL_LINGUAS" = "x"; then LINGUAS= else - echo "$as_me:8228: checking for catalogs to be installed" >&5 + echo "$as_me:8229: checking for catalogs to be installed" >&5 echo $ECHO_N "checking for catalogs to be installed... $ECHO_C" >&6 NEW_LINGUAS= for presentlang in $ALL_LINGUAS; do @@ -8245,7 +8246,7 @@ echo $ECHO_N "checking for catalogs to be installed... $ECHO_C" >&6 fi done LINGUAS=$NEW_LINGUAS - echo "$as_me:8248: result: $LINGUAS" >&5 + echo "$as_me:8249: result: $LINGUAS" >&5 echo "${ECHO_T}$LINGUAS" >&6 fi @@ -8278,7 +8279,7 @@ cf_makefile=makefile use_our_messages=no if test "$USE_NLS" = yes ; then if test -d $srcdir/po ; then -echo "$as_me:8281: checking if we should use included message-library" >&5 +echo "$as_me:8282: checking if we should use included message-library" >&5 echo $ECHO_N "checking if we should use included message-library... $ECHO_C" >&6 # Check whether --enable-included-msgs or --disable-included-msgs was given. @@ -8289,7 +8290,7 @@ else use_our_messages=yes fi; fi -echo "$as_me:8292: result: $use_our_messages" >&5 +echo "$as_me:8293: result: $use_our_messages" >&5 echo "${ECHO_T}$use_our_messages" >&6 fi @@ -8330,23 +8331,23 @@ else for ac_header in libintl.h do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` -echo "$as_me:8333: checking for $ac_header" >&5 +echo "$as_me:8334: 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 8339 "configure" +#line 8340 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:8343: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:8344: \"$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:8349: \$? = $ac_status" >&5 + echo "$as_me:8350: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -8365,7 +8366,7 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:8368: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:8369: 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 <<EOF @@ -8448,7 +8449,7 @@ case ".$withval" in #(vi withval=`echo $withval | sed -e s%NONE%$cf_path_syntax%` ;; *) - { { echo "$as_me:8451: error: expected a pathname, not \"$withval\"" >&5 + { { echo "$as_me:8452: error: expected a pathname, not \"$withval\"" >&5 echo "$as_me: error: expected a pathname, not \"$withval\"" >&2;} { (exit 1); exit 1; }; } ;; @@ -8457,7 +8458,7 @@ esac fi NLS_DATADIR="$withval" -echo "$as_me:8460: checking if you want full utility pathnames" >&5 +echo "$as_me:8461: checking if you want full utility pathnames" >&5 echo $ECHO_N "checking if you want full utility pathnames... $ECHO_C" >&6 # Check whether --enable-full-paths or --disable-full-paths was given. @@ -8474,13 +8475,13 @@ else with_full_paths=yes fi; -echo "$as_me:8477: result: $with_full_paths" >&5 +echo "$as_me:8478: result: $with_full_paths" >&5 echo "${ECHO_T}$with_full_paths" >&6 test $with_full_paths = no && cat >>confdefs.h <<\EOF #define USE_EXECVP 1 EOF -echo "$as_me:8483: checking for system mailer" >&5 +echo "$as_me:8484: checking for system mailer" >&5 echo $ECHO_N "checking for system mailer... $ECHO_C" >&6 if test "${cf_cv_SYSTEM_MAIL+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -8500,13 +8501,13 @@ else fi -echo "$as_me:8503: result: $cf_cv_SYSTEM_MAIL" >&5 +echo "$as_me:8504: result: $cf_cv_SYSTEM_MAIL" >&5 echo "${ECHO_T}$cf_cv_SYSTEM_MAIL" >&6 cat >>confdefs.h <<EOF #define SYSTEM_MAIL "$cf_cv_SYSTEM_MAIL" EOF -echo "$as_me:8509: checking system mail flags" >&5 +echo "$as_me:8510: checking system mail flags" >&5 echo $ECHO_N "checking system mail flags... $ECHO_C" >&6 if test "${cf_cv_system_mail_flags+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -8522,7 +8523,7 @@ else fi -echo "$as_me:8525: result: $cf_cv_system_mail_flags" >&5 +echo "$as_me:8526: result: $cf_cv_system_mail_flags" >&5 echo "${ECHO_T}$cf_cv_system_mail_flags" >&6 cat >>confdefs.h <<EOF #define SYSTEM_MAIL_FLAGS "$cf_cv_system_mail_flags" @@ -8567,14 +8568,14 @@ irix[56].*) #(vi ;; linux*|gnu*|mint*|k*bsd*-gnu) #(vi -echo "$as_me:8570: checking if we must define _GNU_SOURCE" >&5 +echo "$as_me:8571: checking if we must define _GNU_SOURCE" >&5 echo $ECHO_N "checking if we must define _GNU_SOURCE... $ECHO_C" >&6 if test "${cf_cv_gnu_source+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 8577 "configure" +#line 8578 "configure" #include "confdefs.h" #include <sys/types.h> int @@ -8589,16 +8590,16 @@ make an error } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:8592: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:8593: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:8595: \$? = $ac_status" >&5 + echo "$as_me:8596: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:8598: \"$ac_try\"") >&5 + { (eval echo "$as_me:8599: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:8601: \$? = $ac_status" >&5 + echo "$as_me:8602: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_gnu_source=no else @@ -8607,7 +8608,7 @@ cat conftest.$ac_ext >&5 cf_save="$CPPFLAGS" CPPFLAGS="$CPPFLAGS -D_GNU_SOURCE" cat >conftest.$ac_ext <<_ACEOF -#line 8610 "configure" +#line 8611 "configure" #include "confdefs.h" #include <sys/types.h> int @@ -8622,16 +8623,16 @@ make an error } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:8625: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:8626: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:8628: \$? = $ac_status" >&5 + echo "$as_me:8629: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:8631: \"$ac_try\"") >&5 + { (eval echo "$as_me:8632: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:8634: \$? = $ac_status" >&5 + echo "$as_me:8635: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_gnu_source=no else @@ -8646,7 +8647,7 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:8649: result: $cf_cv_gnu_source" >&5 +echo "$as_me:8650: result: $cf_cv_gnu_source" >&5 echo "${ECHO_T}$cf_cv_gnu_source" >&6 test "$cf_cv_gnu_source" = yes && CPPFLAGS="$CPPFLAGS -D_GNU_SOURCE" @@ -8676,14 +8677,14 @@ solaris2.[1-9]) #(vi cf_xopen_source="-D__EXTENSIONS__" ;; *) - echo "$as_me:8679: checking if we should define _XOPEN_SOURCE" >&5 + echo "$as_me:8680: checking if we should define _XOPEN_SOURCE" >&5 echo $ECHO_N "checking if we should define _XOPEN_SOURCE... $ECHO_C" >&6 if test "${cf_cv_xopen_source+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 8686 "configure" +#line 8687 "configure" #include "confdefs.h" #include <sys/types.h> int @@ -8698,16 +8699,16 @@ make an error } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:8701: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:8702: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:8704: \$? = $ac_status" >&5 + echo "$as_me:8705: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:8707: \"$ac_try\"") >&5 + { (eval echo "$as_me:8708: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:8710: \$? = $ac_status" >&5 + echo "$as_me:8711: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_xopen_source=no else @@ -8716,7 +8717,7 @@ cat conftest.$ac_ext >&5 cf_save="$CPPFLAGS" CPPFLAGS="$CPPFLAGS -D_XOPEN_SOURCE=$cf_XOPEN_SOURCE" cat >conftest.$ac_ext <<_ACEOF -#line 8719 "configure" +#line 8720 "configure" #include "confdefs.h" #include <sys/types.h> int @@ -8731,16 +8732,16 @@ make an error } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:8734: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:8735: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:8737: \$? = $ac_status" >&5 + echo "$as_me:8738: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:8740: \"$ac_try\"") >&5 + { (eval echo "$as_me:8741: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:8743: \$? = $ac_status" >&5 + echo "$as_me:8744: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_xopen_source=no else @@ -8755,7 +8756,7 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:8758: result: $cf_cv_xopen_source" >&5 +echo "$as_me:8759: result: $cf_cv_xopen_source" >&5 echo "${ECHO_T}$cf_cv_xopen_source" >&6 if test "$cf_cv_xopen_source" != no ; then @@ -8862,16 +8863,16 @@ cf_trim_CPPFLAGS=`echo "$cf_save_CPPFLAGS" | \ sed -e 's/-[UD]'"_POSIX_C_SOURCE"'\(=[^ ]*\)\?[ ]/ /g' \ -e 's/-[UD]'"_POSIX_C_SOURCE"'\(=[^ ]*\)\?$//g'` -echo "$as_me:8865: checking if we should define _POSIX_C_SOURCE" >&5 +echo "$as_me:8866: checking if we should define _POSIX_C_SOURCE" >&5 echo $ECHO_N "checking if we should define _POSIX_C_SOURCE... $ECHO_C" >&6 if test "${cf_cv_posix_c_source+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else -echo "${as_me-configure}:8871: testing if the symbol is already defined go no further ..." 1>&5 +echo "${as_me-configure}:8872: testing if the symbol is already defined go no further ..." 1>&5 cat >conftest.$ac_ext <<_ACEOF -#line 8874 "configure" +#line 8875 "configure" #include "confdefs.h" #include <sys/types.h> int @@ -8886,16 +8887,16 @@ make an error } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:8889: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:8890: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:8892: \$? = $ac_status" >&5 + echo "$as_me:8893: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:8895: \"$ac_try\"") >&5 + { (eval echo "$as_me:8896: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:8898: \$? = $ac_status" >&5 + echo "$as_me:8899: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_posix_c_source=no else @@ -8916,7 +8917,7 @@ cf_want_posix_source=no esac if test "$cf_want_posix_source" = yes ; then cat >conftest.$ac_ext <<_ACEOF -#line 8919 "configure" +#line 8920 "configure" #include "confdefs.h" #include <sys/types.h> int @@ -8931,16 +8932,16 @@ make an error } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:8934: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:8935: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:8937: \$? = $ac_status" >&5 + echo "$as_me:8938: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:8940: \"$ac_try\"") >&5 + { (eval echo "$as_me:8941: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:8943: \$? = $ac_status" >&5 + echo "$as_me:8944: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -8951,15 +8952,15 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "${as_me-configure}:8954: testing ifdef from value $cf_POSIX_C_SOURCE ..." 1>&5 +echo "${as_me-configure}:8955: testing ifdef from value $cf_POSIX_C_SOURCE ..." 1>&5 CFLAGS="$cf_trim_CFLAGS" CPPFLAGS="$cf_trim_CPPFLAGS $cf_cv_posix_c_source" -echo "${as_me-configure}:8959: testing if the second compile does not leave our definition intact error ..." 1>&5 +echo "${as_me-configure}:8960: testing if the second compile does not leave our definition intact error ..." 1>&5 cat >conftest.$ac_ext <<_ACEOF -#line 8962 "configure" +#line 8963 "configure" #include "confdefs.h" #include <sys/types.h> int @@ -8974,16 +8975,16 @@ make an error } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:8977: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:8978: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:8980: \$? = $ac_status" >&5 + echo "$as_me:8981: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:8983: \"$ac_try\"") >&5 + { (eval echo "$as_me:8984: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:8986: \$? = $ac_status" >&5 + echo "$as_me:8987: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -8999,7 +9000,7 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:9002: result: $cf_cv_posix_c_source" >&5 +echo "$as_me:9003: result: $cf_cv_posix_c_source" >&5 echo "${ECHO_T}$cf_cv_posix_c_source" >&6 if test "$cf_cv_posix_c_source" != no ; then @@ -9171,14 +9172,14 @@ fi fi -echo "$as_me:9174: checking if SIGWINCH is defined" >&5 +echo "$as_me:9175: checking if SIGWINCH is defined" >&5 echo $ECHO_N "checking if SIGWINCH is defined... $ECHO_C" >&6 if test "${cf_cv_define_sigwinch+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 9181 "configure" +#line 9182 "configure" #include "confdefs.h" #include <sys/types.h> @@ -9193,23 +9194,23 @@ int x = SIGWINCH } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:9196: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:9197: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:9199: \$? = $ac_status" >&5 + echo "$as_me:9200: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:9202: \"$ac_try\"") >&5 + { (eval echo "$as_me:9203: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:9205: \$? = $ac_status" >&5 + echo "$as_me:9206: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_define_sigwinch=yes else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 cat >conftest.$ac_ext <<_ACEOF -#line 9212 "configure" +#line 9213 "configure" #include "confdefs.h" #undef _XOPEN_SOURCE @@ -9227,16 +9228,16 @@ int x = SIGWINCH } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:9230: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:9231: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:9233: \$? = $ac_status" >&5 + echo "$as_me:9234: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:9236: \"$ac_try\"") >&5 + { (eval echo "$as_me:9237: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:9239: \$? = $ac_status" >&5 + echo "$as_me:9240: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_define_sigwinch=maybe else @@ -9250,11 +9251,11 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:9253: result: $cf_cv_define_sigwinch" >&5 +echo "$as_me:9254: result: $cf_cv_define_sigwinch" >&5 echo "${ECHO_T}$cf_cv_define_sigwinch" >&6 if test "$cf_cv_define_sigwinch" = maybe ; then -echo "$as_me:9257: checking for actual SIGWINCH definition" >&5 +echo "$as_me:9258: checking for actual SIGWINCH definition" >&5 echo $ECHO_N "checking for actual SIGWINCH definition... $ECHO_C" >&6 if test "${cf_cv_fixup_sigwinch+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -9265,7 +9266,7 @@ cf_sigwinch=32 while test $cf_sigwinch != 1 do cat >conftest.$ac_ext <<_ACEOF -#line 9268 "configure" +#line 9269 "configure" #include "confdefs.h" #undef _XOPEN_SOURCE @@ -9287,16 +9288,16 @@ int x = SIGWINCH } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:9290: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:9291: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:9293: \$? = $ac_status" >&5 + echo "$as_me:9294: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:9296: \"$ac_try\"") >&5 + { (eval echo "$as_me:9297: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:9299: \$? = $ac_status" >&5 + echo "$as_me:9300: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_fixup_sigwinch=$cf_sigwinch break @@ -9310,7 +9311,7 @@ cf_sigwinch=`expr $cf_sigwinch - 1` done fi -echo "$as_me:9313: result: $cf_cv_fixup_sigwinch" >&5 +echo "$as_me:9314: result: $cf_cv_fixup_sigwinch" >&5 echo "${ECHO_T}$cf_cv_fixup_sigwinch" >&6 if test "$cf_cv_fixup_sigwinch" != unknown ; then @@ -9322,7 +9323,7 @@ if test -n "$TRY_CFLAGS" ; then test -n "$verbose" && echo " checking additions to CFLAGS" 1>&6 -echo "${as_me-configure}:9325: testing checking additions to CFLAGS ..." 1>&5 +echo "${as_me-configure}:9326: testing checking additions to CFLAGS ..." 1>&5 cf_check_cflags="$CFLAGS" cf_check_cppflags="$CPPFLAGS" @@ -9393,7 +9394,7 @@ done if test -n "$cf_new_cflags" ; then test -n "$verbose" && echo " add to \$CFLAGS $cf_new_cflags" 1>&6 -echo "${as_me-configure}:9396: testing add to \$CFLAGS $cf_new_cflags ..." 1>&5 +echo "${as_me-configure}:9397: testing add to \$CFLAGS $cf_new_cflags ..." 1>&5 CFLAGS="$CFLAGS $cf_new_cflags" fi @@ -9401,7 +9402,7 @@ fi if test -n "$cf_new_cppflags" ; then test -n "$verbose" && echo " add to \$CPPFLAGS $cf_new_cppflags" 1>&6 -echo "${as_me-configure}:9404: testing add to \$CPPFLAGS $cf_new_cppflags ..." 1>&5 +echo "${as_me-configure}:9405: testing add to \$CPPFLAGS $cf_new_cppflags ..." 1>&5 CPPFLAGS="$CPPFLAGS $cf_new_cppflags" fi @@ -9409,14 +9410,14 @@ fi if test -n "$cf_new_extra_cppflags" ; then test -n "$verbose" && echo " add to \$EXTRA_CPPFLAGS $cf_new_extra_cppflags" 1>&6 -echo "${as_me-configure}:9412: testing add to \$EXTRA_CPPFLAGS $cf_new_extra_cppflags ..." 1>&5 +echo "${as_me-configure}:9413: testing add to \$EXTRA_CPPFLAGS $cf_new_extra_cppflags ..." 1>&5 EXTRA_CPPFLAGS="$cf_new_extra_cppflags $EXTRA_CPPFLAGS" fi if test "$cf_check_cflags" != "$CFLAGS" ; then cat >conftest.$ac_ext <<_ACEOF -#line 9419 "configure" +#line 9420 "configure" #include "confdefs.h" #include <stdio.h> int @@ -9428,16 +9429,16 @@ printf("Hello world"); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:9431: \"$ac_link\"") >&5 +if { (eval echo "$as_me:9432: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:9434: \$? = $ac_status" >&5 + echo "$as_me:9435: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:9437: \"$ac_try\"") >&5 + { (eval echo "$as_me:9438: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:9440: \$? = $ac_status" >&5 + echo "$as_me:9441: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -9445,12 +9446,12 @@ else cat conftest.$ac_ext >&5 test -n "$verbose" && echo " test-compile failed. Undoing change to \$CFLAGS" 1>&6 -echo "${as_me-configure}:9448: testing test-compile failed. Undoing change to \$CFLAGS ..." 1>&5 +echo "${as_me-configure}:9449: testing test-compile failed. Undoing change to \$CFLAGS ..." 1>&5 if test "$cf_check_cppflags" != "$CPPFLAGS" ; then test -n "$verbose" && echo " but keeping change to \$CPPFLAGS" 1>&6 -echo "${as_me-configure}:9453: testing but keeping change to \$CPPFLAGS ..." 1>&5 +echo "${as_me-configure}:9454: testing but keeping change to \$CPPFLAGS ..." 1>&5 fi CFLAGS="$cf_check_flags" @@ -9462,7 +9463,7 @@ fi ### Look for network libraries first, since some functions (such as gethostname) ### are used in a lot of places. -echo "$as_me:9465: checking if you want NSS compatible SSL libraries" >&5 +echo "$as_me:9466: checking if you want NSS compatible SSL libraries" >&5 echo $ECHO_N "checking if you want NSS compatible SSL libraries... $ECHO_C" >&6 if test "${cf_cv_use_libnss_compat+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -9477,10 +9478,10 @@ else fi; fi -echo "$as_me:9480: result: $cf_cv_use_libnss_compat" >&5 +echo "$as_me:9481: result: $cf_cv_use_libnss_compat" >&5 echo "${ECHO_T}$cf_cv_use_libnss_compat" >&6 -echo "$as_me:9483: checking if you want ssl library" >&5 +echo "$as_me:9484: checking if you want ssl library" >&5 echo $ECHO_N "checking if you want ssl library... $ECHO_C" >&6 if test "${cf_cv_use_libssl+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -9495,10 +9496,10 @@ else fi; fi -echo "$as_me:9498: result: $cf_cv_use_libssl" >&5 +echo "$as_me:9499: result: $cf_cv_use_libssl" >&5 echo "${ECHO_T}$cf_cv_use_libssl" >&6 -echo "$as_me:9501: checking if you want gnutls support" >&5 +echo "$as_me:9502: checking if you want gnutls support" >&5 echo $ECHO_N "checking if you want gnutls support... $ECHO_C" >&6 if test "${cf_cv_use_libgnutls+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -9513,11 +9514,11 @@ else fi; fi -echo "$as_me:9516: result: $cf_cv_use_libgnutls" >&5 +echo "$as_me:9517: result: $cf_cv_use_libgnutls" >&5 echo "${ECHO_T}$cf_cv_use_libgnutls" >&6 # this option is mainly for comparing with/without Lynx's wrapper for GNUTLS. -echo "$as_me:9520: checking if you want gnutls-openssl compat" >&5 +echo "$as_me:9521: checking if you want gnutls-openssl compat" >&5 echo $ECHO_N "checking if you want gnutls-openssl compat... $ECHO_C" >&6 if test "${cf_cv_gnutls_compat+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -9532,10 +9533,10 @@ else fi; fi -echo "$as_me:9535: result: $cf_cv_gnutls_compat" >&5 +echo "$as_me:9536: result: $cf_cv_gnutls_compat" >&5 echo "${ECHO_T}$cf_cv_gnutls_compat" >&6 -echo "$as_me:9538: checking if you want socks library" >&5 +echo "$as_me:9539: checking if you want socks library" >&5 echo $ECHO_N "checking if you want socks library... $ECHO_C" >&6 if test "${cf_cv_use_libsocks+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -9550,10 +9551,10 @@ else fi; fi -echo "$as_me:9553: result: $cf_cv_use_libsocks" >&5 +echo "$as_me:9554: result: $cf_cv_use_libsocks" >&5 echo "${ECHO_T}$cf_cv_use_libsocks" >&6 -echo "$as_me:9556: checking if you want socks5 library" >&5 +echo "$as_me:9557: checking if you want socks5 library" >&5 echo $ECHO_N "checking if you want socks5 library... $ECHO_C" >&6 if test "${cf_cv_use_libsocks5+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -9568,7 +9569,7 @@ else fi; fi -echo "$as_me:9571: result: $cf_cv_use_libsocks5" >&5 +echo "$as_me:9572: result: $cf_cv_use_libsocks5" >&5 echo "${ECHO_T}$cf_cv_use_libsocks5" >&6 if test "x$cf_cv_use_libsocks" != xno ; then @@ -9607,7 +9608,7 @@ if test -n "$cf_searchpath/include" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 9610 "configure" +#line 9611 "configure" #include "confdefs.h" #include <stdio.h> int @@ -9619,16 +9620,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:9622: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:9623: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:9625: \$? = $ac_status" >&5 + echo "$as_me:9626: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:9628: \"$ac_try\"") >&5 + { (eval echo "$as_me:9629: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:9631: \$? = $ac_status" >&5 + echo "$as_me:9632: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -9645,7 +9646,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "$cf_have_incdir" = no ; then test -n "$verbose" && echo " adding $cf_add_incdir to include-path" 1>&6 -echo "${as_me-configure}:9648: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me-configure}:9649: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -9686,7 +9687,7 @@ if test -n "$cf_searchpath/../include" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 9689 "configure" +#line 9690 "configure" #include "confdefs.h" #include <stdio.h> int @@ -9698,16 +9699,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:9701: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:9702: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:9704: \$? = $ac_status" >&5 + echo "$as_me:9705: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:9707: \"$ac_try\"") >&5 + { (eval echo "$as_me:9708: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:9710: \$? = $ac_status" >&5 + echo "$as_me:9711: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -9724,7 +9725,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "$cf_have_incdir" = no ; then test -n "$verbose" && echo " adding $cf_add_incdir to include-path" 1>&6 -echo "${as_me-configure}:9727: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me-configure}:9728: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -9740,7 +9741,7 @@ echo "${as_me-configure}:9727: testing adding $cf_add_incdir to include-path ... fi else -{ { echo "$as_me:9743: error: cannot find socks library under $cf_cv_use_libsocks" >&5 +{ { echo "$as_me:9744: error: cannot find socks library under $cf_cv_use_libsocks" >&5 echo "$as_me: error: cannot find socks library under $cf_cv_use_libsocks" >&2;} { (exit 1); exit 1; }; } fi @@ -9765,7 +9766,7 @@ if test -n "$cf_searchpath/lib" ; then if test "$cf_have_libdir" = no ; then test -n "$verbose" && echo " adding $cf_add_libdir to library-path" 1>&6 -echo "${as_me-configure}:9768: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me-configure}:9769: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -9794,7 +9795,7 @@ if test -n "$cf_searchpath" ; then if test "$cf_have_libdir" = no ; then test -n "$verbose" && echo " adding $cf_add_libdir to library-path" 1>&6 -echo "${as_me-configure}:9797: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me-configure}:9798: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -9803,7 +9804,7 @@ echo "${as_me-configure}:9797: testing adding $cf_add_libdir to library-path ... fi else -{ { echo "$as_me:9806: error: cannot find socks library under $cf_cv_use_libsocks" >&5 +{ { echo "$as_me:9807: error: cannot find socks library under $cf_cv_use_libsocks" >&5 echo "$as_me: error: cannot find socks library under $cf_cv_use_libsocks" >&2;} { (exit 1); exit 1; }; } fi @@ -9817,10 +9818,10 @@ done cf_cv_header_path_socks= cf_cv_library_path_socks= -echo "${as_me-configure}:9820: testing Starting FIND_LINKAGE(socks,) ..." 1>&5 +echo "${as_me-configure}:9821: testing Starting FIND_LINKAGE(socks,) ..." 1>&5 cat >conftest.$ac_ext <<_ACEOF -#line 9823 "configure" +#line 9824 "configure" #include "confdefs.h" #include <stdio.h> @@ -9836,16 +9837,16 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:9839: \"$ac_link\"") >&5 +if { (eval echo "$as_me:9840: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:9842: \$? = $ac_status" >&5 + echo "$as_me:9843: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:9845: \"$ac_try\"") >&5 + { (eval echo "$as_me:9846: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:9848: \$? = $ac_status" >&5 + echo "$as_me:9849: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_find_linkage_socks=yes @@ -9858,7 +9859,7 @@ cf_save_LIBS="$LIBS" LIBS="-lsocks $cf_save_LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 9861 "configure" +#line 9862 "configure" #include "confdefs.h" #include <stdio.h> @@ -9874,16 +9875,16 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:9877: \"$ac_link\"") >&5 +if { (eval echo "$as_me:9878: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:9880: \$? = $ac_status" >&5 + echo "$as_me:9881: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:9883: \"$ac_try\"") >&5 + { (eval echo "$as_me:9884: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:9886: \$? = $ac_status" >&5 + echo "$as_me:9887: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_find_linkage_socks=yes @@ -9898,9 +9899,9 @@ cat conftest.$ac_ext >&5 test -n "$verbose" && echo " find linkage for socks library" 1>&6 -echo "${as_me-configure}:9901: testing find linkage for socks library ..." 1>&5 +echo "${as_me-configure}:9902: testing find linkage for socks library ..." 1>&5 -echo "${as_me-configure}:9903: testing Searching for headers in FIND_LINKAGE(socks,) ..." 1>&5 +echo "${as_me-configure}:9904: testing Searching for headers in FIND_LINKAGE(socks,) ..." 1>&5 cf_save_CPPFLAGS="$CPPFLAGS" cf_test_CPPFLAGS="$CPPFLAGS" @@ -10009,11 +10010,11 @@ cf_search="$cf_header_path_list $cf_search" if test -d $cf_cv_header_path_socks ; then test -n "$verbose" && echo " ... testing $cf_cv_header_path_socks" 1>&6 -echo "${as_me-configure}:10012: testing ... testing $cf_cv_header_path_socks ..." 1>&5 +echo "${as_me-configure}:10013: testing ... testing $cf_cv_header_path_socks ..." 1>&5 CPPFLAGS="$cf_save_CPPFLAGS -I$cf_cv_header_path_socks" cat >conftest.$ac_ext <<_ACEOF -#line 10016 "configure" +#line 10017 "configure" #include "confdefs.h" #include <stdio.h> @@ -10029,21 +10030,21 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:10032: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:10033: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:10035: \$? = $ac_status" >&5 + echo "$as_me:10036: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:10038: \"$ac_try\"") >&5 + { (eval echo "$as_me:10039: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:10041: \$? = $ac_status" >&5 + echo "$as_me:10042: \$? = $ac_status" >&5 (exit $ac_status); }; }; then test -n "$verbose" && echo " ... found socks headers in $cf_cv_header_path_socks" 1>&6 -echo "${as_me-configure}:10046: testing ... found socks headers in $cf_cv_header_path_socks ..." 1>&5 +echo "${as_me-configure}:10047: testing ... found socks headers in $cf_cv_header_path_socks ..." 1>&5 cf_cv_find_linkage_socks=maybe cf_test_CPPFLAGS="$CPPFLAGS" @@ -10061,7 +10062,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "$cf_cv_find_linkage_socks" = maybe ; then -echo "${as_me-configure}:10064: testing Searching for socks library in FIND_LINKAGE(socks,) ..." 1>&5 +echo "${as_me-configure}:10065: testing Searching for socks library in FIND_LINKAGE(socks,) ..." 1>&5 cf_save_LIBS="$LIBS" cf_save_LDFLAGS="$LDFLAGS" @@ -10158,13 +10159,13 @@ cf_search="$cf_library_path_list $cf_search" if test -d $cf_cv_library_path_socks ; then test -n "$verbose" && echo " ... testing $cf_cv_library_path_socks" 1>&6 -echo "${as_me-configure}:10161: testing ... testing $cf_cv_library_path_socks ..." 1>&5 +echo "${as_me-configure}:10162: testing ... testing $cf_cv_library_path_socks ..." 1>&5 CPPFLAGS="$cf_test_CPPFLAGS" LIBS="-lsocks $cf_save_LIBS" LDFLAGS="$cf_save_LDFLAGS -L$cf_cv_library_path_socks" cat >conftest.$ac_ext <<_ACEOF -#line 10167 "configure" +#line 10168 "configure" #include "confdefs.h" #include <stdio.h> @@ -10180,21 +10181,21 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:10183: \"$ac_link\"") >&5 +if { (eval echo "$as_me:10184: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:10186: \$? = $ac_status" >&5 + echo "$as_me:10187: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:10189: \"$ac_try\"") >&5 + { (eval echo "$as_me:10190: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:10192: \$? = $ac_status" >&5 + echo "$as_me:10193: \$? = $ac_status" >&5 (exit $ac_status); }; }; then test -n "$verbose" && echo " ... found socks library in $cf_cv_library_path_socks" 1>&6 -echo "${as_me-configure}:10197: testing ... found socks library in $cf_cv_library_path_socks ..." 1>&5 +echo "${as_me-configure}:10198: testing ... found socks library in $cf_cv_library_path_socks ..." 1>&5 cf_cv_find_linkage_socks=yes cf_cv_library_file_socks="-lsocks" @@ -10293,7 +10294,7 @@ if test -n "$cf_cv_header_path_socks" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 10296 "configure" +#line 10297 "configure" #include "confdefs.h" #include <stdio.h> int @@ -10305,16 +10306,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:10308: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:10309: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:10311: \$? = $ac_status" >&5 + echo "$as_me:10312: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:10314: \"$ac_try\"") >&5 + { (eval echo "$as_me:10315: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:10317: \$? = $ac_status" >&5 + echo "$as_me:10318: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -10331,7 +10332,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "$cf_have_incdir" = no ; then test -n "$verbose" && echo " adding $cf_add_incdir to include-path" 1>&6 -echo "${as_me-configure}:10334: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me-configure}:10335: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -10365,7 +10366,7 @@ if test -n "$cf_cv_library_path_socks" ; then if test "$cf_have_libdir" = no ; then test -n "$verbose" && echo " adding $cf_add_libdir to library-path" 1>&6 -echo "${as_me-configure}:10368: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me-configure}:10369: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -10375,7 +10376,7 @@ fi LIBS="$LIBS -lsocks" else - { { echo "$as_me:10378: error: cannot link with socks library" >&5 + { { echo "$as_me:10379: error: cannot link with socks library" >&5 echo "$as_me: error: cannot link with socks library" >&2;} { (exit 1); exit 1; }; } fi @@ -10416,7 +10417,7 @@ if test -n "$cf_searchpath/include" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 10419 "configure" +#line 10420 "configure" #include "confdefs.h" #include <stdio.h> int @@ -10428,16 +10429,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:10431: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:10432: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:10434: \$? = $ac_status" >&5 + echo "$as_me:10435: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:10437: \"$ac_try\"") >&5 + { (eval echo "$as_me:10438: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:10440: \$? = $ac_status" >&5 + echo "$as_me:10441: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -10454,7 +10455,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "$cf_have_incdir" = no ; then test -n "$verbose" && echo " adding $cf_add_incdir to include-path" 1>&6 -echo "${as_me-configure}:10457: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me-configure}:10458: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -10495,7 +10496,7 @@ if test -n "$cf_searchpath/../include" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 10498 "configure" +#line 10499 "configure" #include "confdefs.h" #include <stdio.h> int @@ -10507,16 +10508,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:10510: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:10511: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:10513: \$? = $ac_status" >&5 + echo "$as_me:10514: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:10516: \"$ac_try\"") >&5 + { (eval echo "$as_me:10517: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:10519: \$? = $ac_status" >&5 + echo "$as_me:10520: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -10533,7 +10534,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "$cf_have_incdir" = no ; then test -n "$verbose" && echo " adding $cf_add_incdir to include-path" 1>&6 -echo "${as_me-configure}:10536: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me-configure}:10537: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -10549,7 +10550,7 @@ echo "${as_me-configure}:10536: testing adding $cf_add_incdir to include-path .. fi else -{ { echo "$as_me:10552: error: cannot find socks5 library under $cf_cv_use_libsocks5" >&5 +{ { echo "$as_me:10553: error: cannot find socks5 library under $cf_cv_use_libsocks5" >&5 echo "$as_me: error: cannot find socks5 library under $cf_cv_use_libsocks5" >&2;} { (exit 1); exit 1; }; } fi @@ -10574,7 +10575,7 @@ if test -n "$cf_searchpath/lib" ; then if test "$cf_have_libdir" = no ; then test -n "$verbose" && echo " adding $cf_add_libdir to library-path" 1>&6 -echo "${as_me-configure}:10577: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me-configure}:10578: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -10603,7 +10604,7 @@ if test -n "$cf_searchpath" ; then if test "$cf_have_libdir" = no ; then test -n "$verbose" && echo " adding $cf_add_libdir to library-path" 1>&6 -echo "${as_me-configure}:10606: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me-configure}:10607: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -10612,7 +10613,7 @@ echo "${as_me-configure}:10606: testing adding $cf_add_libdir to library-path .. fi else -{ { echo "$as_me:10615: error: cannot find socks5 library under $cf_cv_use_libsocks5" >&5 +{ { echo "$as_me:10616: error: cannot find socks5 library under $cf_cv_use_libsocks5" >&5 echo "$as_me: error: cannot find socks5 library under $cf_cv_use_libsocks5" >&2;} { (exit 1); exit 1; }; } fi @@ -10631,11 +10632,11 @@ cat >>confdefs.h <<\EOF #define SOCKS 1 EOF -echo "$as_me:10634: checking if the socks library uses socks4 prefix" >&5 +echo "$as_me:10635: checking if the socks library uses socks4 prefix" >&5 echo $ECHO_N "checking if the socks library uses socks4 prefix... $ECHO_C" >&6 cf_use_socks4=error cat >conftest.$ac_ext <<_ACEOF -#line 10638 "configure" +#line 10639 "configure" #include "confdefs.h" #include <socks.h> @@ -10649,16 +10650,16 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:10652: \"$ac_link\"") >&5 +if { (eval echo "$as_me:10653: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:10655: \$? = $ac_status" >&5 + echo "$as_me:10656: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:10658: \"$ac_try\"") >&5 + { (eval echo "$as_me:10659: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:10661: \$? = $ac_status" >&5 + echo "$as_me:10662: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cat >>confdefs.h <<\EOF #define USE_SOCKS4_PREFIX 1 @@ -10669,7 +10670,7 @@ else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 cat >conftest.$ac_ext <<_ACEOF -#line 10672 "configure" +#line 10673 "configure" #include "confdefs.h" #include <socks.h> int @@ -10681,29 +10682,29 @@ SOCKSinit((char *)0) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:10684: \"$ac_link\"") >&5 +if { (eval echo "$as_me:10685: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:10687: \$? = $ac_status" >&5 + echo "$as_me:10688: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:10690: \"$ac_try\"") >&5 + { (eval echo "$as_me:10691: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:10693: \$? = $ac_status" >&5 + echo "$as_me:10694: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_use_socks4=no else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 -{ { echo "$as_me:10699: error: Cannot link with socks5 library" >&5 +{ { echo "$as_me:10700: error: Cannot link with socks5 library" >&5 echo "$as_me: error: Cannot link with socks5 library" >&2;} { (exit 1); exit 1; }; } fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext -echo "$as_me:10706: result: $cf_use_socks4" >&5 +echo "$as_me:10707: result: $cf_use_socks4" >&5 echo "${ECHO_T}$cf_use_socks4" >&6 if test "$cf_use_socks4" = "yes" ; then @@ -10758,10 +10759,10 @@ EOF fi -echo "$as_me:10761: checking if socks5p.h is available" >&5 +echo "$as_me:10762: checking if socks5p.h is available" >&5 echo $ECHO_N "checking if socks5p.h is available... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF -#line 10764 "configure" +#line 10765 "configure" #include "confdefs.h" #define INCLUDE_PROTOTYPES @@ -10776,16 +10777,16 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:10779: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:10780: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:10782: \$? = $ac_status" >&5 + echo "$as_me:10783: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:10785: \"$ac_try\"") >&5 + { (eval echo "$as_me:10786: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:10788: \$? = $ac_status" >&5 + echo "$as_me:10789: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_use_socks5p_h=yes else @@ -10794,7 +10795,7 @@ cat conftest.$ac_ext >&5 cf_use_socks5p_h=no fi rm -f conftest.$ac_objext conftest.$ac_ext -echo "$as_me:10797: result: $cf_use_socks5p_h" >&5 +echo "$as_me:10798: result: $cf_use_socks5p_h" >&5 echo "${ECHO_T}$cf_use_socks5p_h" >&6 test "$cf_use_socks5p_h" = yes && cat >>confdefs.h <<\EOF @@ -10805,14 +10806,14 @@ else cf_test_netlibs=no -echo "$as_me:10808: checking for network libraries" >&5 +echo "$as_me:10809: checking for network libraries" >&5 echo $ECHO_N "checking for network libraries... $ECHO_C" >&6 if test "${cf_cv_netlibs+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else -echo "$as_me:10815: result: working..." >&5 +echo "$as_me:10816: result: working..." >&5 echo "${ECHO_T}working..." >&6 cf_cv_netlibs="" @@ -10824,23 +10825,23 @@ mingw32) # (vi for ac_header in windows.h winsock.h winsock2.h do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` -echo "$as_me:10827: checking for $ac_header" >&5 +echo "$as_me:10828: 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 10833 "configure" +#line 10834 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:10837: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:10838: \"$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:10843: \$? = $ac_status" >&5 + echo "$as_me:10844: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -10859,7 +10860,7 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:10862: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:10863: 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 <<EOF @@ -10879,7 +10880,7 @@ done LIBS="$cf_winsock_lib $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 10882 "configure" +#line 10883 "configure" #include "confdefs.h" #ifdef HAVE_WINDOWS_H @@ -10906,22 +10907,22 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:10909: \"$ac_link\"") >&5 +if { (eval echo "$as_me:10910: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:10912: \$? = $ac_status" >&5 + echo "$as_me:10913: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:10915: \"$ac_try\"") >&5 + { (eval echo "$as_me:10916: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:10918: \$? = $ac_status" >&5 + echo "$as_me:10919: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_netlibs="$cf_winsock_lib $cf_cv_netlibs" else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 -{ { echo "$as_me:10924: error: Cannot link against winsock library" >&5 +{ { echo "$as_me:10925: error: Cannot link against winsock library" >&5 echo "$as_me: error: Cannot link against winsock library" >&2;} { (exit 1); exit 1; }; } fi @@ -10934,13 +10935,13 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext for ac_func in gethostname do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` -echo "$as_me:10937: checking for $ac_func" >&5 +echo "$as_me:10938: 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 10943 "configure" +#line 10944 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. */ @@ -10971,16 +10972,16 @@ f = $ac_func; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:10974: \"$ac_link\"") >&5 +if { (eval echo "$as_me:10975: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:10977: \$? = $ac_status" >&5 + echo "$as_me:10978: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:10980: \"$ac_try\"") >&5 + { (eval echo "$as_me:10981: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:10983: \$? = $ac_status" >&5 + echo "$as_me:10984: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else @@ -10990,7 +10991,7 @@ eval "$as_ac_var=no" fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:10993: result: `eval echo '${'$as_ac_var'}'`" >&5 +echo "$as_me:10994: 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 <<EOF @@ -10999,7 +11000,7 @@ EOF else -echo "$as_me:11002: checking for gethostname in -lnsl" >&5 +echo "$as_me:11003: checking for gethostname in -lnsl" >&5 echo $ECHO_N "checking for gethostname in -lnsl... $ECHO_C" >&6 if test "${ac_cv_lib_nsl_gethostname+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -11007,7 +11008,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lnsl $cf_cv_netlibs $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 11010 "configure" +#line 11011 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -11026,16 +11027,16 @@ gethostname (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:11029: \"$ac_link\"") >&5 +if { (eval echo "$as_me:11030: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:11032: \$? = $ac_status" >&5 + echo "$as_me:11033: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:11035: \"$ac_try\"") >&5 + { (eval echo "$as_me:11036: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:11038: \$? = $ac_status" >&5 + echo "$as_me:11039: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_nsl_gethostname=yes else @@ -11046,7 +11047,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:11049: result: $ac_cv_lib_nsl_gethostname" >&5 +echo "$as_me:11050: result: $ac_cv_lib_nsl_gethostname" >&5 echo "${ECHO_T}$ac_cv_lib_nsl_gethostname" >&6 if test $ac_cv_lib_nsl_gethostname = yes; then @@ -11063,7 +11064,7 @@ else ac_cv_func_gethostname=unknown unset ac_cv_func_gethostname 2>/dev/null -echo "$as_me:11066: checking for gethostname in -lsocket" >&5 +echo "$as_me:11067: checking for gethostname in -lsocket" >&5 echo $ECHO_N "checking for gethostname in -lsocket... $ECHO_C" >&6 if test "${ac_cv_lib_socket_gethostname+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -11071,7 +11072,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lsocket $cf_cv_netlibs $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 11074 "configure" +#line 11075 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -11090,16 +11091,16 @@ gethostname (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:11093: \"$ac_link\"") >&5 +if { (eval echo "$as_me:11094: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:11096: \$? = $ac_status" >&5 + echo "$as_me:11097: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:11099: \"$ac_try\"") >&5 + { (eval echo "$as_me:11100: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:11102: \$? = $ac_status" >&5 + echo "$as_me:11103: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_socket_gethostname=yes else @@ -11110,7 +11111,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:11113: result: $ac_cv_lib_socket_gethostname" >&5 +echo "$as_me:11114: result: $ac_cv_lib_socket_gethostname" >&5 echo "${ECHO_T}$ac_cv_lib_socket_gethostname" >&6 if test $ac_cv_lib_socket_gethostname = yes; then @@ -11134,7 +11135,7 @@ fi fi done - echo "$as_me:11137: checking for main in -linet" >&5 + echo "$as_me:11138: checking for main in -linet" >&5 echo $ECHO_N "checking for main in -linet... $ECHO_C" >&6 if test "${ac_cv_lib_inet_main+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -11142,7 +11143,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-linet $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 11145 "configure" +#line 11146 "configure" #include "confdefs.h" int @@ -11154,16 +11155,16 @@ main (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:11157: \"$ac_link\"") >&5 +if { (eval echo "$as_me:11158: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:11160: \$? = $ac_status" >&5 + echo "$as_me:11161: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:11163: \"$ac_try\"") >&5 + { (eval echo "$as_me:11164: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:11166: \$? = $ac_status" >&5 + echo "$as_me:11167: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_inet_main=yes else @@ -11174,7 +11175,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:11177: result: $ac_cv_lib_inet_main" >&5 +echo "$as_me:11178: result: $ac_cv_lib_inet_main" >&5 echo "${ECHO_T}$ac_cv_lib_inet_main" >&6 if test $ac_cv_lib_inet_main = yes; then cf_cv_netlibs="-linet $cf_cv_netlibs" @@ -11185,13 +11186,13 @@ fi for ac_func in socket do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` -echo "$as_me:11188: checking for $ac_func" >&5 +echo "$as_me:11189: 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 11194 "configure" +#line 11195 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. */ @@ -11222,16 +11223,16 @@ f = $ac_func; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:11225: \"$ac_link\"") >&5 +if { (eval echo "$as_me:11226: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:11228: \$? = $ac_status" >&5 + echo "$as_me:11229: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:11231: \"$ac_try\"") >&5 + { (eval echo "$as_me:11232: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:11234: \$? = $ac_status" >&5 + echo "$as_me:11235: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else @@ -11241,7 +11242,7 @@ eval "$as_ac_var=no" fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:11244: result: `eval echo '${'$as_ac_var'}'`" >&5 +echo "$as_me:11245: 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 <<EOF @@ -11250,7 +11251,7 @@ EOF else -echo "$as_me:11253: checking for socket in -lsocket" >&5 +echo "$as_me:11254: checking for socket in -lsocket" >&5 echo $ECHO_N "checking for socket in -lsocket... $ECHO_C" >&6 if test "${ac_cv_lib_socket_socket+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -11258,7 +11259,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lsocket $cf_cv_netlibs $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 11261 "configure" +#line 11262 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -11277,16 +11278,16 @@ socket (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:11280: \"$ac_link\"") >&5 +if { (eval echo "$as_me:11281: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:11283: \$? = $ac_status" >&5 + echo "$as_me:11284: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:11286: \"$ac_try\"") >&5 + { (eval echo "$as_me:11287: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:11289: \$? = $ac_status" >&5 + echo "$as_me:11290: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_socket_socket=yes else @@ -11297,7 +11298,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:11300: result: $ac_cv_lib_socket_socket" >&5 +echo "$as_me:11301: result: $ac_cv_lib_socket_socket" >&5 echo "${ECHO_T}$ac_cv_lib_socket_socket" >&6 if test $ac_cv_lib_socket_socket = yes; then @@ -11314,7 +11315,7 @@ else ac_cv_func_socket=unknown unset ac_cv_func_socket 2>/dev/null -echo "$as_me:11317: checking for socket in -lbsd" >&5 +echo "$as_me:11318: checking for socket in -lbsd" >&5 echo $ECHO_N "checking for socket in -lbsd... $ECHO_C" >&6 if test "${ac_cv_lib_bsd_socket+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -11322,7 +11323,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lbsd $cf_cv_netlibs $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 11325 "configure" +#line 11326 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -11341,16 +11342,16 @@ socket (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:11344: \"$ac_link\"") >&5 +if { (eval echo "$as_me:11345: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:11347: \$? = $ac_status" >&5 + echo "$as_me:11348: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:11350: \"$ac_try\"") >&5 + { (eval echo "$as_me:11351: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:11353: \$? = $ac_status" >&5 + echo "$as_me:11354: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_bsd_socket=yes else @@ -11361,7 +11362,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:11364: result: $ac_cv_lib_bsd_socket" >&5 +echo "$as_me:11365: result: $ac_cv_lib_bsd_socket" >&5 echo "${ECHO_T}$ac_cv_lib_bsd_socket" >&6 if test $ac_cv_lib_bsd_socket = yes; then @@ -11390,13 +11391,13 @@ done for ac_func in gethostbyname do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` -echo "$as_me:11393: checking for $ac_func" >&5 +echo "$as_me:11394: 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 11399 "configure" +#line 11400 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. */ @@ -11427,16 +11428,16 @@ f = $ac_func; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:11430: \"$ac_link\"") >&5 +if { (eval echo "$as_me:11431: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:11433: \$? = $ac_status" >&5 + echo "$as_me:11434: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:11436: \"$ac_try\"") >&5 + { (eval echo "$as_me:11437: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:11439: \$? = $ac_status" >&5 + echo "$as_me:11440: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else @@ -11446,7 +11447,7 @@ eval "$as_ac_var=no" fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:11449: result: `eval echo '${'$as_ac_var'}'`" >&5 +echo "$as_me:11450: 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 <<EOF @@ -11455,7 +11456,7 @@ EOF else -echo "$as_me:11458: checking for gethostbyname in -lnsl" >&5 +echo "$as_me:11459: 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 @@ -11463,7 +11464,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lnsl $cf_cv_netlibs $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 11466 "configure" +#line 11467 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -11482,16 +11483,16 @@ gethostbyname (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:11485: \"$ac_link\"") >&5 +if { (eval echo "$as_me:11486: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:11488: \$? = $ac_status" >&5 + echo "$as_me:11489: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:11491: \"$ac_try\"") >&5 + { (eval echo "$as_me:11492: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:11494: \$? = $ac_status" >&5 + echo "$as_me:11495: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_nsl_gethostbyname=yes else @@ -11502,7 +11503,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:11505: result: $ac_cv_lib_nsl_gethostbyname" >&5 +echo "$as_me:11506: 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 @@ -11527,13 +11528,13 @@ done for ac_func in gethostbyname do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` -echo "$as_me:11530: checking for $ac_func" >&5 +echo "$as_me:11531: 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 11536 "configure" +#line 11537 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. */ @@ -11564,16 +11565,16 @@ f = $ac_func; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:11567: \"$ac_link\"") >&5 +if { (eval echo "$as_me:11568: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:11570: \$? = $ac_status" >&5 + echo "$as_me:11571: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:11573: \"$ac_try\"") >&5 + { (eval echo "$as_me:11574: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:11576: \$? = $ac_status" >&5 + echo "$as_me:11577: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else @@ -11583,7 +11584,7 @@ eval "$as_ac_var=no" fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:11586: result: `eval echo '${'$as_ac_var'}'`" >&5 +echo "$as_me:11587: 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 <<EOF @@ -11592,7 +11593,7 @@ EOF else -echo "$as_me:11595: checking for gethostbyname in -lnetwork" >&5 +echo "$as_me:11596: checking for gethostbyname in -lnetwork" >&5 echo $ECHO_N "checking for gethostbyname in -lnetwork... $ECHO_C" >&6 if test "${ac_cv_lib_network_gethostbyname+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -11600,7 +11601,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lnetwork $cf_cv_netlibs $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 11603 "configure" +#line 11604 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -11619,16 +11620,16 @@ gethostbyname (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:11622: \"$ac_link\"") >&5 +if { (eval echo "$as_me:11623: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:11625: \$? = $ac_status" >&5 + echo "$as_me:11626: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:11628: \"$ac_try\"") >&5 + { (eval echo "$as_me:11629: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:11631: \$? = $ac_status" >&5 + echo "$as_me:11632: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_network_gethostbyname=yes else @@ -11639,7 +11640,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:11642: result: $ac_cv_lib_network_gethostbyname" >&5 +echo "$as_me:11643: result: $ac_cv_lib_network_gethostbyname" >&5 echo "${ECHO_T}$ac_cv_lib_network_gethostbyname" >&6 if test $ac_cv_lib_network_gethostbyname = yes; then @@ -11664,13 +11665,13 @@ done for ac_func in strcasecmp do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` -echo "$as_me:11667: checking for $ac_func" >&5 +echo "$as_me:11668: 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 11673 "configure" +#line 11674 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. */ @@ -11701,16 +11702,16 @@ f = $ac_func; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:11704: \"$ac_link\"") >&5 +if { (eval echo "$as_me:11705: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:11707: \$? = $ac_status" >&5 + echo "$as_me:11708: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:11710: \"$ac_try\"") >&5 + { (eval echo "$as_me:11711: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:11713: \$? = $ac_status" >&5 + echo "$as_me:11714: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else @@ -11720,7 +11721,7 @@ eval "$as_ac_var=no" fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:11723: result: `eval echo '${'$as_ac_var'}'`" >&5 +echo "$as_me:11724: 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 <<EOF @@ -11729,7 +11730,7 @@ EOF else -echo "$as_me:11732: checking for strcasecmp in -lresolv" >&5 +echo "$as_me:11733: checking for strcasecmp in -lresolv" >&5 echo $ECHO_N "checking for strcasecmp in -lresolv... $ECHO_C" >&6 if test "${ac_cv_lib_resolv_strcasecmp+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -11737,7 +11738,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lresolv $cf_cv_netlibs $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 11740 "configure" +#line 11741 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -11756,16 +11757,16 @@ strcasecmp (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:11759: \"$ac_link\"") >&5 +if { (eval echo "$as_me:11760: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:11762: \$? = $ac_status" >&5 + echo "$as_me:11763: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:11765: \"$ac_try\"") >&5 + { (eval echo "$as_me:11766: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:11768: \$? = $ac_status" >&5 + echo "$as_me:11769: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_resolv_strcasecmp=yes else @@ -11776,7 +11777,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:11779: result: $ac_cv_lib_resolv_strcasecmp" >&5 +echo "$as_me:11780: result: $ac_cv_lib_resolv_strcasecmp" >&5 echo "${ECHO_T}$ac_cv_lib_resolv_strcasecmp" >&6 if test $ac_cv_lib_resolv_strcasecmp = yes; then @@ -11817,14 +11818,14 @@ test $cf_test_netlibs = no && echo "$cf_cv_netlibs" >&6 fi -echo "$as_me:11820: checking for inet_aton function" >&5 +echo "$as_me:11821: checking for inet_aton function" >&5 echo $ECHO_N "checking for inet_aton function... $ECHO_C" >&6 if test "${cf_cv_have_inet_aton+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 11827 "configure" +#line 11828 "configure" #include "confdefs.h" #include <sys/types.h> #include <sys/socket.h> @@ -11840,16 +11841,16 @@ inet_aton(0, (struct in_addr *)0) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:11843: \"$ac_link\"") >&5 +if { (eval echo "$as_me:11844: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:11846: \$? = $ac_status" >&5 + echo "$as_me:11847: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:11849: \"$ac_try\"") >&5 + { (eval echo "$as_me:11850: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:11852: \$? = $ac_status" >&5 + echo "$as_me:11853: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_have_inet_aton=yes else @@ -11859,7 +11860,7 @@ cf_cv_have_inet_aton=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:11862: result: $cf_cv_have_inet_aton" >&5 +echo "$as_me:11863: result: $cf_cv_have_inet_aton" >&5 echo "${ECHO_T}$cf_cv_have_inet_aton" >&6 if test "$cf_cv_have_inet_aton" = yes ; then cat >>confdefs.h <<\EOF @@ -11867,14 +11868,14 @@ if test "$cf_cv_have_inet_aton" = yes ; then EOF else - echo "$as_me:11870: checking for inet_addr function" >&5 + echo "$as_me:11871: checking for inet_addr function" >&5 echo $ECHO_N "checking for inet_addr function... $ECHO_C" >&6 if test "${cf_cv_have_inet_addr+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 11877 "configure" +#line 11878 "configure" #include "confdefs.h" #include <sys/types.h> #include <sys/socket.h> @@ -11890,16 +11891,16 @@ inet_addr(0) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:11893: \"$ac_link\"") >&5 +if { (eval echo "$as_me:11894: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:11896: \$? = $ac_status" >&5 + echo "$as_me:11897: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:11899: \"$ac_try\"") >&5 + { (eval echo "$as_me:11900: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:11902: \$? = $ac_status" >&5 + echo "$as_me:11903: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_have_inet_addr=yes else @@ -11909,10 +11910,10 @@ cf_cv_have_inet_addr=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:11912: result: $cf_cv_have_inet_addr" >&5 +echo "$as_me:11913: result: $cf_cv_have_inet_addr" >&5 echo "${ECHO_T}$cf_cv_have_inet_addr" >&6 if test "$cf_cv_have_inet_addr" = no ; then - echo "$as_me:11915: checking for library with inet_addr" >&5 + echo "$as_me:11916: checking for library with inet_addr" >&5 echo $ECHO_N "checking for library with inet_addr... $ECHO_C" >&6 if test "${cf_cv_lib_inet_addr+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -11923,7 +11924,7 @@ else do LIBS="$cf_save_LIBS $cf_inetlib" cat >conftest.$ac_ext <<_ACEOF -#line 11926 "configure" +#line 11927 "configure" #include "confdefs.h" #include <sys/types.h> #include <sys/socket.h> @@ -11939,16 +11940,16 @@ inet_addr(0) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:11942: \"$ac_link\"") >&5 +if { (eval echo "$as_me:11943: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:11945: \$? = $ac_status" >&5 + echo "$as_me:11946: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:11948: \"$ac_try\"") >&5 + { (eval echo "$as_me:11949: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:11951: \$? = $ac_status" >&5 + echo "$as_me:11952: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_lib_inet_addr=$cf_inetlib else @@ -11962,18 +11963,18 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext done fi -echo "$as_me:11965: result: $cf_cv_lib_inet_addr" >&5 +echo "$as_me:11966: result: $cf_cv_lib_inet_addr" >&5 echo "${ECHO_T}$cf_cv_lib_inet_addr" >&6 if test "$cf_cv_lib_inet_addr" != no ; then LIBS="$LIBS $cf_cv_lib_inet_addr" else - { echo "$as_me:11970: WARNING: Unable to find library for inet_addr function" >&5 + { echo "$as_me:11971: WARNING: Unable to find library for inet_addr function" >&5 echo "$as_me: WARNING: Unable to find library for inet_addr function" >&2;} fi fi fi -echo "$as_me:11976: checking if you want to use pkg-config" >&5 +echo "$as_me:11977: checking if you want to use pkg-config" >&5 echo $ECHO_N "checking if you want to use pkg-config... $ECHO_C" >&6 # Check whether --with-pkg-config or --without-pkg-config was given. @@ -11983,7 +11984,7 @@ if test "${with_pkg_config+set}" = set; then else cf_pkg_config=yes fi; -echo "$as_me:11986: result: $cf_pkg_config" >&5 +echo "$as_me:11987: result: $cf_pkg_config" >&5 echo "${ECHO_T}$cf_pkg_config" >&6 case $cf_pkg_config in #(vi @@ -11993,7 +11994,7 @@ no) #(vi yes) #(vi # Extract the first word of "pkg-config", so it can be a program name with args. set dummy pkg-config; ac_word=$2 -echo "$as_me:11996: checking for $ac_word" >&5 +echo "$as_me:11997: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_path_PKG_CONFIG+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -12010,7 +12011,7 @@ for ac_dir in $ac_dummy; do test -z "$ac_dir" && ac_dir=. if $as_executable_p "$ac_dir/$ac_word"; then ac_cv_path_PKG_CONFIG="$ac_dir/$ac_word" - echo "$as_me:12013: found $ac_dir/$ac_word" >&5 + echo "$as_me:12014: found $ac_dir/$ac_word" >&5 break fi done @@ -12022,10 +12023,10 @@ fi PKG_CONFIG=$ac_cv_path_PKG_CONFIG if test -n "$PKG_CONFIG"; then - echo "$as_me:12025: result: $PKG_CONFIG" >&5 + echo "$as_me:12026: result: $PKG_CONFIG" >&5 echo "${ECHO_T}$PKG_CONFIG" >&6 else - echo "$as_me:12028: result: no" >&5 + echo "$as_me:12029: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -12063,7 +12064,7 @@ case ".$PKG_CONFIG" in #(vi PKG_CONFIG=`echo $PKG_CONFIG | sed -e s%NONE%$cf_path_syntax%` ;; *) - { { echo "$as_me:12066: error: expected a pathname, not \"$PKG_CONFIG\"" >&5 + { { echo "$as_me:12067: error: expected a pathname, not \"$PKG_CONFIG\"" >&5 echo "$as_me: error: expected a pathname, not \"$PKG_CONFIG\"" >&2;} { (exit 1); exit 1; }; } ;; @@ -12111,7 +12112,7 @@ if test -n "$cf_searchpath/include" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 12114 "configure" +#line 12115 "configure" #include "confdefs.h" #include <stdio.h> int @@ -12123,16 +12124,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:12126: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:12127: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:12129: \$? = $ac_status" >&5 + echo "$as_me:12130: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:12132: \"$ac_try\"") >&5 + { (eval echo "$as_me:12133: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:12135: \$? = $ac_status" >&5 + echo "$as_me:12136: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -12149,7 +12150,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "$cf_have_incdir" = no ; then test -n "$verbose" && echo " adding $cf_add_incdir to include-path" 1>&6 -echo "${as_me-configure}:12152: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me-configure}:12153: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -12190,7 +12191,7 @@ if test -n "$cf_searchpath/../include" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 12193 "configure" +#line 12194 "configure" #include "confdefs.h" #include <stdio.h> int @@ -12202,16 +12203,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:12205: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:12206: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:12208: \$? = $ac_status" >&5 + echo "$as_me:12209: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:12211: \"$ac_try\"") >&5 + { (eval echo "$as_me:12212: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:12214: \$? = $ac_status" >&5 + echo "$as_me:12215: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -12228,7 +12229,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "$cf_have_incdir" = no ; then test -n "$verbose" && echo " adding $cf_add_incdir to include-path" 1>&6 -echo "${as_me-configure}:12231: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me-configure}:12232: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -12244,7 +12245,7 @@ echo "${as_me-configure}:12231: testing adding $cf_add_incdir to include-path .. fi else -{ { echo "$as_me:12247: error: cannot find ssl library under $cf_cv_use_libssl" >&5 +{ { echo "$as_me:12248: error: cannot find ssl library under $cf_cv_use_libssl" >&5 echo "$as_me: error: cannot find ssl library under $cf_cv_use_libssl" >&2;} { (exit 1); exit 1; }; } fi @@ -12269,7 +12270,7 @@ if test -n "$cf_searchpath/lib" ; then if test "$cf_have_libdir" = no ; then test -n "$verbose" && echo " adding $cf_add_libdir to library-path" 1>&6 -echo "${as_me-configure}:12272: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me-configure}:12273: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -12298,7 +12299,7 @@ if test -n "$cf_searchpath" ; then if test "$cf_have_libdir" = no ; then test -n "$verbose" && echo " adding $cf_add_libdir to library-path" 1>&6 -echo "${as_me-configure}:12301: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me-configure}:12302: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -12307,7 +12308,7 @@ echo "${as_me-configure}:12301: testing adding $cf_add_libdir to library-path .. fi else -{ { echo "$as_me:12310: error: cannot find ssl library under $cf_cv_use_libssl" >&5 +{ { echo "$as_me:12311: error: cannot find ssl library under $cf_cv_use_libssl" >&5 echo "$as_me: error: cannot find ssl library under $cf_cv_use_libssl" >&2;} { (exit 1); exit 1; }; } fi @@ -12418,6 +12419,12 @@ if test -n "$cf_new_extra_cppflags" ; then EXTRA_CPPFLAGS="$cf_new_extra_cppflags $EXTRA_CPPFLAGS" fi + # workaround for broken openssl package using kerberos + case "$cf_cflags_ssl" in #(vi + *kerberos*) + cf_cv_have_ssl=maybe + ;; + esac fi if test -n "$cf_libs_ssl" ; then @@ -12431,7 +12438,7 @@ fi esac test -n "$verbose" && echo " adding $cf_libs_ssl to LIBS" 1>&6 -echo "${as_me-configure}:12434: testing adding $cf_libs_ssl to LIBS ..." 1>&5 +echo "${as_me-configure}:12441: testing adding $cf_libs_ssl to LIBS ..." 1>&5 LIBS="$cf_libs_ssl $LIBS" fi @@ -12452,7 +12459,7 @@ echo "${as_me-configure}:12434: testing adding $cf_libs_ssl to LIBS ..." 1>&5 *-ldl) #(vi ;; *) - echo "$as_me:12455: checking for dlsym in -ldl" >&5 + echo "$as_me:12462: checking for dlsym in -ldl" >&5 echo $ECHO_N "checking for dlsym in -ldl... $ECHO_C" >&6 if test "${ac_cv_lib_dl_dlsym+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -12460,7 +12467,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-ldl $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 12463 "configure" +#line 12470 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -12479,16 +12486,16 @@ dlsym (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:12482: \"$ac_link\"") >&5 +if { (eval echo "$as_me:12489: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:12485: \$? = $ac_status" >&5 + echo "$as_me:12492: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:12488: \"$ac_try\"") >&5 + { (eval echo "$as_me:12495: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:12491: \$? = $ac_status" >&5 + echo "$as_me:12498: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_dl_dlsym=yes else @@ -12499,7 +12506,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:12502: result: $ac_cv_lib_dl_dlsym" >&5 +echo "$as_me:12509: result: $ac_cv_lib_dl_dlsym" >&5 echo "${ECHO_T}$ac_cv_lib_dl_dlsym" >&6 if test $ac_cv_lib_dl_dlsym = yes; then cf_extra_ssl_libs="$cf_extra_ssl_libs -ldl" @@ -12515,10 +12522,10 @@ fi cf_cv_header_path_ssl= cf_cv_library_path_ssl= -echo "${as_me-configure}:12518: testing Starting FIND_LINKAGE(ssl,openssl) ..." 1>&5 +echo "${as_me-configure}:12525: testing Starting FIND_LINKAGE(ssl,openssl) ..." 1>&5 cat >conftest.$ac_ext <<_ACEOF -#line 12521 "configure" +#line 12528 "configure" #include "confdefs.h" #include <stdio.h> @@ -12547,16 +12554,16 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:12550: \"$ac_link\"") >&5 +if { (eval echo "$as_me:12557: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:12553: \$? = $ac_status" >&5 + echo "$as_me:12560: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:12556: \"$ac_try\"") >&5 + { (eval echo "$as_me:12563: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:12559: \$? = $ac_status" >&5 + echo "$as_me:12566: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_find_linkage_ssl=yes @@ -12569,7 +12576,7 @@ cf_save_LIBS="$LIBS" LIBS="-lssl $cf_extra_ssl_libs $cf_save_LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 12572 "configure" +#line 12579 "configure" #include "confdefs.h" #include <stdio.h> @@ -12598,16 +12605,16 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:12601: \"$ac_link\"") >&5 +if { (eval echo "$as_me:12608: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:12604: \$? = $ac_status" >&5 + echo "$as_me:12611: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:12607: \"$ac_try\"") >&5 + { (eval echo "$as_me:12614: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:12610: \$? = $ac_status" >&5 + echo "$as_me:12617: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_find_linkage_ssl=yes @@ -12622,9 +12629,9 @@ cat conftest.$ac_ext >&5 test -n "$verbose" && echo " find linkage for ssl library" 1>&6 -echo "${as_me-configure}:12625: testing find linkage for ssl library ..." 1>&5 +echo "${as_me-configure}:12632: testing find linkage for ssl library ..." 1>&5 -echo "${as_me-configure}:12627: testing Searching for headers in FIND_LINKAGE(ssl,openssl) ..." 1>&5 +echo "${as_me-configure}:12634: testing Searching for headers in FIND_LINKAGE(ssl,openssl) ..." 1>&5 cf_save_CPPFLAGS="$CPPFLAGS" cf_test_CPPFLAGS="$CPPFLAGS" @@ -12733,11 +12740,11 @@ cf_search="$cf_header_path_list $cf_search" if test -d $cf_cv_header_path_ssl ; then test -n "$verbose" && echo " ... testing $cf_cv_header_path_ssl" 1>&6 -echo "${as_me-configure}:12736: testing ... testing $cf_cv_header_path_ssl ..." 1>&5 +echo "${as_me-configure}:12743: testing ... testing $cf_cv_header_path_ssl ..." 1>&5 CPPFLAGS="$cf_save_CPPFLAGS -I$cf_cv_header_path_ssl" cat >conftest.$ac_ext <<_ACEOF -#line 12740 "configure" +#line 12747 "configure" #include "confdefs.h" #include <stdio.h> @@ -12766,21 +12773,21 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:12769: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:12776: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:12772: \$? = $ac_status" >&5 + echo "$as_me:12779: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:12775: \"$ac_try\"") >&5 + { (eval echo "$as_me:12782: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:12778: \$? = $ac_status" >&5 + echo "$as_me:12785: \$? = $ac_status" >&5 (exit $ac_status); }; }; then test -n "$verbose" && echo " ... found ssl headers in $cf_cv_header_path_ssl" 1>&6 -echo "${as_me-configure}:12783: testing ... found ssl headers in $cf_cv_header_path_ssl ..." 1>&5 +echo "${as_me-configure}:12790: testing ... found ssl headers in $cf_cv_header_path_ssl ..." 1>&5 cf_cv_find_linkage_ssl=maybe cf_test_CPPFLAGS="$CPPFLAGS" @@ -12798,7 +12805,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "$cf_cv_find_linkage_ssl" = maybe ; then -echo "${as_me-configure}:12801: testing Searching for ssl library in FIND_LINKAGE(ssl,openssl) ..." 1>&5 +echo "${as_me-configure}:12808: testing Searching for ssl library in FIND_LINKAGE(ssl,openssl) ..." 1>&5 cf_save_LIBS="$LIBS" cf_save_LDFLAGS="$LDFLAGS" @@ -12806,7 +12813,7 @@ echo "${as_me-configure}:12801: testing Searching for ssl library in FIND_LINKAG CPPFLAGS="$cf_test_CPPFLAGS" LIBS="-lssl $cf_extra_ssl_libs $cf_save_LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 12809 "configure" +#line 12816 "configure" #include "confdefs.h" #include <stdio.h> @@ -12835,21 +12842,21 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:12838: \"$ac_link\"") >&5 +if { (eval echo "$as_me:12845: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:12841: \$? = $ac_status" >&5 + echo "$as_me:12848: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:12844: \"$ac_try\"") >&5 + { (eval echo "$as_me:12851: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:12847: \$? = $ac_status" >&5 + echo "$as_me:12854: \$? = $ac_status" >&5 (exit $ac_status); }; }; then test -n "$verbose" && echo " ... found ssl library in system" 1>&6 -echo "${as_me-configure}:12852: testing ... found ssl library in system ..." 1>&5 +echo "${as_me-configure}:12859: testing ... found ssl library in system ..." 1>&5 cf_cv_find_linkage_ssl=yes else @@ -12952,13 +12959,13 @@ cf_search="$cf_library_path_list $cf_search" if test -d $cf_cv_library_path_ssl ; then test -n "$verbose" && echo " ... testing $cf_cv_library_path_ssl" 1>&6 -echo "${as_me-configure}:12955: testing ... testing $cf_cv_library_path_ssl ..." 1>&5 +echo "${as_me-configure}:12962: testing ... testing $cf_cv_library_path_ssl ..." 1>&5 CPPFLAGS="$cf_test_CPPFLAGS" LIBS="-lssl $cf_extra_ssl_libs $cf_save_LIBS" LDFLAGS="$cf_save_LDFLAGS -L$cf_cv_library_path_ssl" cat >conftest.$ac_ext <<_ACEOF -#line 12961 "configure" +#line 12968 "configure" #include "confdefs.h" #include <stdio.h> @@ -12987,21 +12994,21 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:12990: \"$ac_link\"") >&5 +if { (eval echo "$as_me:12997: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:12993: \$? = $ac_status" >&5 + echo "$as_me:13000: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:12996: \"$ac_try\"") >&5 + { (eval echo "$as_me:13003: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:12999: \$? = $ac_status" >&5 + echo "$as_me:13006: \$? = $ac_status" >&5 (exit $ac_status); }; }; then test -n "$verbose" && echo " ... found ssl library in $cf_cv_library_path_ssl" 1>&6 -echo "${as_me-configure}:13004: testing ... found ssl library in $cf_cv_library_path_ssl ..." 1>&5 +echo "${as_me-configure}:13011: testing ... found ssl library in $cf_cv_library_path_ssl ..." 1>&5 cf_cv_find_linkage_ssl=yes cf_cv_library_file_ssl="-lssl" @@ -13061,7 +13068,7 @@ if test -n "$cf_cv_library_path_ssl" ; then if test "$cf_have_libdir" = no ; then test -n "$verbose" && echo " adding $cf_add_libdir to library-path" 1>&6 -echo "${as_me-configure}:13064: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me-configure}:13071: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -13101,7 +13108,7 @@ if test -n "$cf_cv_header_path_ssl" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 13104 "configure" +#line 13111 "configure" #include "confdefs.h" #include <stdio.h> int @@ -13113,16 +13120,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:13116: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:13123: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:13119: \$? = $ac_status" >&5 + echo "$as_me:13126: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:13122: \"$ac_try\"") >&5 + { (eval echo "$as_me:13129: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:13125: \$? = $ac_status" >&5 + echo "$as_me:13132: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -13139,7 +13146,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "$cf_have_incdir" = no ; then test -n "$verbose" && echo " adding $cf_add_incdir to include-path" 1>&6 -echo "${as_me-configure}:13142: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me-configure}:13149: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -13176,10 +13183,10 @@ EOF esac fi -echo "$as_me:13179: checking for X509 support" >&5 +echo "$as_me:13186: checking for X509 support" >&5 echo $ECHO_N "checking for X509 support... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF -#line 13182 "configure" +#line 13189 "configure" #include "confdefs.h" #include <stdio.h> @@ -13203,16 +13210,16 @@ X509_verify_cert_error_string(X509_STORE_CTX_get_error(NULL)) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:13206: \"$ac_link\"") >&5 +if { (eval echo "$as_me:13213: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:13209: \$? = $ac_status" >&5 + echo "$as_me:13216: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:13212: \"$ac_try\"") >&5 + { (eval echo "$as_me:13219: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:13215: \$? = $ac_status" >&5 + echo "$as_me:13222: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_x509_support=yes else @@ -13221,7 +13228,7 @@ cat conftest.$ac_ext >&5 cf_x509_support=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext -echo "$as_me:13224: result: $cf_x509_support" >&5 +echo "$as_me:13231: result: $cf_x509_support" >&5 echo "${ECHO_T}$cf_x509_support" >&6 if test "$cf_x509_support" = yes ; then @@ -13272,7 +13279,7 @@ if test -n "$cf_searchpath/include" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 13275 "configure" +#line 13282 "configure" #include "confdefs.h" #include <stdio.h> int @@ -13284,16 +13291,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:13287: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:13294: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:13290: \$? = $ac_status" >&5 + echo "$as_me:13297: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:13293: \"$ac_try\"") >&5 + { (eval echo "$as_me:13300: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:13296: \$? = $ac_status" >&5 + echo "$as_me:13303: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -13310,7 +13317,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "$cf_have_incdir" = no ; then test -n "$verbose" && echo " adding $cf_add_incdir to include-path" 1>&6 -echo "${as_me-configure}:13313: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me-configure}:13320: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -13351,7 +13358,7 @@ if test -n "$cf_searchpath/../include" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 13354 "configure" +#line 13361 "configure" #include "confdefs.h" #include <stdio.h> int @@ -13363,16 +13370,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:13366: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:13373: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:13369: \$? = $ac_status" >&5 + echo "$as_me:13376: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:13372: \"$ac_try\"") >&5 + { (eval echo "$as_me:13379: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:13375: \$? = $ac_status" >&5 + echo "$as_me:13382: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -13389,7 +13396,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "$cf_have_incdir" = no ; then test -n "$verbose" && echo " adding $cf_add_incdir to include-path" 1>&6 -echo "${as_me-configure}:13392: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me-configure}:13399: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -13405,7 +13412,7 @@ echo "${as_me-configure}:13392: testing adding $cf_add_incdir to include-path .. fi else -{ { echo "$as_me:13408: error: cannot find ssl library under $cf_cv_use_libgnutls" >&5 +{ { echo "$as_me:13415: error: cannot find ssl library under $cf_cv_use_libgnutls" >&5 echo "$as_me: error: cannot find ssl library under $cf_cv_use_libgnutls" >&2;} { (exit 1); exit 1; }; } fi @@ -13430,7 +13437,7 @@ if test -n "$cf_searchpath/lib" ; then if test "$cf_have_libdir" = no ; then test -n "$verbose" && echo " adding $cf_add_libdir to library-path" 1>&6 -echo "${as_me-configure}:13433: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me-configure}:13440: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -13459,7 +13466,7 @@ if test -n "$cf_searchpath" ; then if test "$cf_have_libdir" = no ; then test -n "$verbose" && echo " adding $cf_add_libdir to library-path" 1>&6 -echo "${as_me-configure}:13462: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me-configure}:13469: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -13468,7 +13475,7 @@ echo "${as_me-configure}:13462: testing adding $cf_add_libdir to library-path .. fi else -{ { echo "$as_me:13471: error: cannot find ssl library under $cf_cv_use_libgnutls" >&5 +{ { echo "$as_me:13478: error: cannot find ssl library under $cf_cv_use_libgnutls" >&5 echo "$as_me: error: cannot find ssl library under $cf_cv_use_libgnutls" >&2;} { (exit 1); exit 1; }; } fi @@ -13486,12 +13493,12 @@ done yes) # if no explicit directory given, try pkg-config test -n "$verbose" && echo " checking pkg-config for $cf_pkg_gnutls" 1>&6 -echo "${as_me-configure}:13489: testing checking pkg-config for $cf_pkg_gnutls ..." 1>&5 +echo "${as_me-configure}:13496: testing checking pkg-config for $cf_pkg_gnutls ..." 1>&5 if "$PKG_CONFIG" --exists $cf_pkg_gnutls ; then test -n "$verbose" && echo " ... found $cf_pkg_gnutls in pkg-config" 1>&6 -echo "${as_me-configure}:13494: testing ... found $cf_pkg_gnutls in pkg-config ..." 1>&5 +echo "${as_me-configure}:13501: testing ... found $cf_pkg_gnutls in pkg-config ..." 1>&5 cf_cv_have_gnutls=yes @@ -13602,14 +13609,14 @@ fi esac test -n "$verbose" && echo " adding $cf_libs_ssl to LIBS" 1>&6 -echo "${as_me-configure}:13605: testing adding $cf_libs_ssl to LIBS ..." 1>&5 +echo "${as_me-configure}:13612: testing adding $cf_libs_ssl to LIBS ..." 1>&5 LIBS="$cf_libs_ssl $LIBS" fi else test -n "$verbose" && echo " ... did not find $cf_pkg_gnutls in pkg-config" 1>&6 -echo "${as_me-configure}:13612: testing ... did not find $cf_pkg_gnutls in pkg-config ..." 1>&5 +echo "${as_me-configure}:13619: testing ... did not find $cf_pkg_gnutls in pkg-config ..." 1>&5 cf_pkg_gnutls=none fi @@ -13629,10 +13636,10 @@ EOF cf_cv_header_path_gnutls= cf_cv_library_path_gnutls= -echo "${as_me-configure}:13632: testing Starting FIND_LINKAGE(gnutls,) ..." 1>&5 +echo "${as_me-configure}:13639: testing Starting FIND_LINKAGE(gnutls,) ..." 1>&5 cat >conftest.$ac_ext <<_ACEOF -#line 13635 "configure" +#line 13642 "configure" #include "confdefs.h" #include <stdio.h> @@ -13661,16 +13668,16 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:13664: \"$ac_link\"") >&5 +if { (eval echo "$as_me:13671: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:13667: \$? = $ac_status" >&5 + echo "$as_me:13674: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:13670: \"$ac_try\"") >&5 + { (eval echo "$as_me:13677: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:13673: \$? = $ac_status" >&5 + echo "$as_me:13680: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_find_linkage_gnutls=yes @@ -13683,7 +13690,7 @@ cf_save_LIBS="$LIBS" LIBS="-lgnutls -lgnutls -lgcrypt $cf_save_LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 13686 "configure" +#line 13693 "configure" #include "confdefs.h" #include <stdio.h> @@ -13712,16 +13719,16 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:13715: \"$ac_link\"") >&5 +if { (eval echo "$as_me:13722: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:13718: \$? = $ac_status" >&5 + echo "$as_me:13725: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:13721: \"$ac_try\"") >&5 + { (eval echo "$as_me:13728: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:13724: \$? = $ac_status" >&5 + echo "$as_me:13731: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_find_linkage_gnutls=yes @@ -13736,9 +13743,9 @@ cat conftest.$ac_ext >&5 test -n "$verbose" && echo " find linkage for gnutls library" 1>&6 -echo "${as_me-configure}:13739: testing find linkage for gnutls library ..." 1>&5 +echo "${as_me-configure}:13746: testing find linkage for gnutls library ..." 1>&5 -echo "${as_me-configure}:13741: testing Searching for headers in FIND_LINKAGE(gnutls,) ..." 1>&5 +echo "${as_me-configure}:13748: testing Searching for headers in FIND_LINKAGE(gnutls,) ..." 1>&5 cf_save_CPPFLAGS="$CPPFLAGS" cf_test_CPPFLAGS="$CPPFLAGS" @@ -13847,11 +13854,11 @@ cf_search="$cf_header_path_list $cf_search" if test -d $cf_cv_header_path_gnutls ; then test -n "$verbose" && echo " ... testing $cf_cv_header_path_gnutls" 1>&6 -echo "${as_me-configure}:13850: testing ... testing $cf_cv_header_path_gnutls ..." 1>&5 +echo "${as_me-configure}:13857: testing ... testing $cf_cv_header_path_gnutls ..." 1>&5 CPPFLAGS="$cf_save_CPPFLAGS -I$cf_cv_header_path_gnutls" cat >conftest.$ac_ext <<_ACEOF -#line 13854 "configure" +#line 13861 "configure" #include "confdefs.h" #include <stdio.h> @@ -13880,21 +13887,21 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:13883: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:13890: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:13886: \$? = $ac_status" >&5 + echo "$as_me:13893: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:13889: \"$ac_try\"") >&5 + { (eval echo "$as_me:13896: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:13892: \$? = $ac_status" >&5 + echo "$as_me:13899: \$? = $ac_status" >&5 (exit $ac_status); }; }; then test -n "$verbose" && echo " ... found gnutls headers in $cf_cv_header_path_gnutls" 1>&6 -echo "${as_me-configure}:13897: testing ... found gnutls headers in $cf_cv_header_path_gnutls ..." 1>&5 +echo "${as_me-configure}:13904: testing ... found gnutls headers in $cf_cv_header_path_gnutls ..." 1>&5 cf_cv_find_linkage_gnutls=maybe cf_test_CPPFLAGS="$CPPFLAGS" @@ -13912,7 +13919,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "$cf_cv_find_linkage_gnutls" = maybe ; then -echo "${as_me-configure}:13915: testing Searching for gnutls library in FIND_LINKAGE(gnutls,) ..." 1>&5 +echo "${as_me-configure}:13922: testing Searching for gnutls library in FIND_LINKAGE(gnutls,) ..." 1>&5 cf_save_LIBS="$LIBS" cf_save_LDFLAGS="$LDFLAGS" @@ -14009,13 +14016,13 @@ cf_search="$cf_library_path_list $cf_search" if test -d $cf_cv_library_path_gnutls ; then test -n "$verbose" && echo " ... testing $cf_cv_library_path_gnutls" 1>&6 -echo "${as_me-configure}:14012: testing ... testing $cf_cv_library_path_gnutls ..." 1>&5 +echo "${as_me-configure}:14019: testing ... testing $cf_cv_library_path_gnutls ..." 1>&5 CPPFLAGS="$cf_test_CPPFLAGS" LIBS="-lgnutls -lgnutls -lgcrypt $cf_save_LIBS" LDFLAGS="$cf_save_LDFLAGS -L$cf_cv_library_path_gnutls" cat >conftest.$ac_ext <<_ACEOF -#line 14018 "configure" +#line 14025 "configure" #include "confdefs.h" #include <stdio.h> @@ -14044,21 +14051,21 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:14047: \"$ac_link\"") >&5 +if { (eval echo "$as_me:14054: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:14050: \$? = $ac_status" >&5 + echo "$as_me:14057: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:14053: \"$ac_try\"") >&5 + { (eval echo "$as_me:14060: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:14056: \$? = $ac_status" >&5 + echo "$as_me:14063: \$? = $ac_status" >&5 (exit $ac_status); }; }; then test -n "$verbose" && echo " ... found gnutls library in $cf_cv_library_path_gnutls" 1>&6 -echo "${as_me-configure}:14061: testing ... found gnutls library in $cf_cv_library_path_gnutls ..." 1>&5 +echo "${as_me-configure}:14068: testing ... found gnutls library in $cf_cv_library_path_gnutls ..." 1>&5 cf_cv_find_linkage_gnutls=yes cf_cv_library_file_gnutls="-lgnutls" @@ -14134,7 +14141,7 @@ if test -n "$cf_cv_header_path_gnutls" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 14137 "configure" +#line 14144 "configure" #include "confdefs.h" #include <stdio.h> int @@ -14146,16 +14153,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:14149: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:14156: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:14152: \$? = $ac_status" >&5 + echo "$as_me:14159: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:14155: \"$ac_try\"") >&5 + { (eval echo "$as_me:14162: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:14158: \$? = $ac_status" >&5 + echo "$as_me:14165: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -14172,7 +14179,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "$cf_have_incdir" = no ; then test -n "$verbose" && echo " adding $cf_add_incdir to include-path" 1>&6 -echo "${as_me-configure}:14175: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me-configure}:14182: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -14211,7 +14218,7 @@ if test -n "$cf_cv_library_path_gnutls" ; then if test "$cf_have_libdir" = no ; then test -n "$verbose" && echo " adding $cf_add_libdir to library-path" 1>&6 -echo "${as_me-configure}:14214: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me-configure}:14221: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -14224,10 +14231,10 @@ fi EXTRA_OBJS="$EXTRA_OBJS tidy_tls\$o" -echo "$as_me:14227: checking for X509 support" >&5 +echo "$as_me:14234: checking for X509 support" >&5 echo $ECHO_N "checking for X509 support... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF -#line 14230 "configure" +#line 14237 "configure" #include "confdefs.h" #include <stdio.h> @@ -14251,16 +14258,16 @@ X509_verify_cert_error_string(X509_STORE_CTX_get_error(NULL)) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:14254: \"$ac_link\"") >&5 +if { (eval echo "$as_me:14261: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:14257: \$? = $ac_status" >&5 + echo "$as_me:14264: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:14260: \"$ac_try\"") >&5 + { (eval echo "$as_me:14267: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:14263: \$? = $ac_status" >&5 + echo "$as_me:14270: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_x509_support=yes else @@ -14269,7 +14276,7 @@ cat conftest.$ac_ext >&5 cf_x509_support=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext -echo "$as_me:14272: result: $cf_x509_support" >&5 +echo "$as_me:14279: result: $cf_x509_support" >&5 echo "${ECHO_T}$cf_x509_support" >&6 if test "$cf_x509_support" = yes ; then @@ -14319,7 +14326,7 @@ if test -n "$cf_searchpath/include" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 14322 "configure" +#line 14329 "configure" #include "confdefs.h" #include <stdio.h> int @@ -14331,16 +14338,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:14334: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:14341: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:14337: \$? = $ac_status" >&5 + echo "$as_me:14344: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:14340: \"$ac_try\"") >&5 + { (eval echo "$as_me:14347: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:14343: \$? = $ac_status" >&5 + echo "$as_me:14350: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -14357,7 +14364,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "$cf_have_incdir" = no ; then test -n "$verbose" && echo " adding $cf_add_incdir to include-path" 1>&6 -echo "${as_me-configure}:14360: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me-configure}:14367: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -14398,7 +14405,7 @@ if test -n "$cf_searchpath/../include" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 14401 "configure" +#line 14408 "configure" #include "confdefs.h" #include <stdio.h> int @@ -14410,16 +14417,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:14413: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:14420: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:14416: \$? = $ac_status" >&5 + echo "$as_me:14423: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:14419: \"$ac_try\"") >&5 + { (eval echo "$as_me:14426: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:14422: \$? = $ac_status" >&5 + echo "$as_me:14429: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -14436,7 +14443,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "$cf_have_incdir" = no ; then test -n "$verbose" && echo " adding $cf_add_incdir to include-path" 1>&6 -echo "${as_me-configure}:14439: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me-configure}:14446: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -14452,7 +14459,7 @@ echo "${as_me-configure}:14439: testing adding $cf_add_incdir to include-path .. fi else -{ { echo "$as_me:14455: error: cannot find ssl library under $cf_cv_use_libgnutls" >&5 +{ { echo "$as_me:14462: error: cannot find ssl library under $cf_cv_use_libgnutls" >&5 echo "$as_me: error: cannot find ssl library under $cf_cv_use_libgnutls" >&2;} { (exit 1); exit 1; }; } fi @@ -14477,7 +14484,7 @@ if test -n "$cf_searchpath/lib" ; then if test "$cf_have_libdir" = no ; then test -n "$verbose" && echo " adding $cf_add_libdir to library-path" 1>&6 -echo "${as_me-configure}:14480: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me-configure}:14487: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -14506,7 +14513,7 @@ if test -n "$cf_searchpath" ; then if test "$cf_have_libdir" = no ; then test -n "$verbose" && echo " adding $cf_add_libdir to library-path" 1>&6 -echo "${as_me-configure}:14509: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me-configure}:14516: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -14515,7 +14522,7 @@ echo "${as_me-configure}:14509: testing adding $cf_add_libdir to library-path .. fi else -{ { echo "$as_me:14518: error: cannot find ssl library under $cf_cv_use_libgnutls" >&5 +{ { echo "$as_me:14525: error: cannot find ssl library under $cf_cv_use_libgnutls" >&5 echo "$as_me: error: cannot find ssl library under $cf_cv_use_libgnutls" >&2;} { (exit 1); exit 1; }; } fi @@ -14533,12 +14540,12 @@ done yes) # if no explicit directory given, try pkg-config test -n "$verbose" && echo " checking pkg-config for $cf_pkg_gnutls" 1>&6 -echo "${as_me-configure}:14536: testing checking pkg-config for $cf_pkg_gnutls ..." 1>&5 +echo "${as_me-configure}:14543: testing checking pkg-config for $cf_pkg_gnutls ..." 1>&5 if "$PKG_CONFIG" --exists $cf_pkg_gnutls ; then test -n "$verbose" && echo " ... found $cf_pkg_gnutls in pkg-config" 1>&6 -echo "${as_me-configure}:14541: testing ... found $cf_pkg_gnutls in pkg-config ..." 1>&5 +echo "${as_me-configure}:14548: testing ... found $cf_pkg_gnutls in pkg-config ..." 1>&5 cf_cv_have_gnutls=yes @@ -14649,14 +14656,14 @@ fi esac test -n "$verbose" && echo " adding $cf_libs_ssl to LIBS" 1>&6 -echo "${as_me-configure}:14652: testing adding $cf_libs_ssl to LIBS ..." 1>&5 +echo "${as_me-configure}:14659: testing adding $cf_libs_ssl to LIBS ..." 1>&5 LIBS="$cf_libs_ssl $LIBS" fi else test -n "$verbose" && echo " ... did not find $cf_pkg_gnutls in pkg-config" 1>&6 -echo "${as_me-configure}:14659: testing ... did not find $cf_pkg_gnutls in pkg-config ..." 1>&5 +echo "${as_me-configure}:14666: testing ... did not find $cf_pkg_gnutls in pkg-config ..." 1>&5 cf_pkg_gnutls=none fi @@ -14676,10 +14683,10 @@ EOF cf_cv_header_path_gnutls= cf_cv_library_path_gnutls= -echo "${as_me-configure}:14679: testing Starting FIND_LINKAGE(gnutls,) ..." 1>&5 +echo "${as_me-configure}:14686: testing Starting FIND_LINKAGE(gnutls,) ..." 1>&5 cat >conftest.$ac_ext <<_ACEOF -#line 14682 "configure" +#line 14689 "configure" #include "confdefs.h" #include <stdio.h> @@ -14708,16 +14715,16 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:14711: \"$ac_link\"") >&5 +if { (eval echo "$as_me:14718: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:14714: \$? = $ac_status" >&5 + echo "$as_me:14721: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:14717: \"$ac_try\"") >&5 + { (eval echo "$as_me:14724: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:14720: \$? = $ac_status" >&5 + echo "$as_me:14727: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_find_linkage_gnutls=yes @@ -14730,7 +14737,7 @@ cf_save_LIBS="$LIBS" LIBS="-lgnutls -lgnutls-openssl -lgnutls-extra -lgnutls -lgcrypt $cf_save_LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 14733 "configure" +#line 14740 "configure" #include "confdefs.h" #include <stdio.h> @@ -14759,16 +14766,16 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:14762: \"$ac_link\"") >&5 +if { (eval echo "$as_me:14769: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:14765: \$? = $ac_status" >&5 + echo "$as_me:14772: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:14768: \"$ac_try\"") >&5 + { (eval echo "$as_me:14775: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:14771: \$? = $ac_status" >&5 + echo "$as_me:14778: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_find_linkage_gnutls=yes @@ -14783,9 +14790,9 @@ cat conftest.$ac_ext >&5 test -n "$verbose" && echo " find linkage for gnutls library" 1>&6 -echo "${as_me-configure}:14786: testing find linkage for gnutls library ..." 1>&5 +echo "${as_me-configure}:14793: testing find linkage for gnutls library ..." 1>&5 -echo "${as_me-configure}:14788: testing Searching for headers in FIND_LINKAGE(gnutls,) ..." 1>&5 +echo "${as_me-configure}:14795: testing Searching for headers in FIND_LINKAGE(gnutls,) ..." 1>&5 cf_save_CPPFLAGS="$CPPFLAGS" cf_test_CPPFLAGS="$CPPFLAGS" @@ -14894,11 +14901,11 @@ cf_search="$cf_header_path_list $cf_search" if test -d $cf_cv_header_path_gnutls ; then test -n "$verbose" && echo " ... testing $cf_cv_header_path_gnutls" 1>&6 -echo "${as_me-configure}:14897: testing ... testing $cf_cv_header_path_gnutls ..." 1>&5 +echo "${as_me-configure}:14904: testing ... testing $cf_cv_header_path_gnutls ..." 1>&5 CPPFLAGS="$cf_save_CPPFLAGS -I$cf_cv_header_path_gnutls" cat >conftest.$ac_ext <<_ACEOF -#line 14901 "configure" +#line 14908 "configure" #include "confdefs.h" #include <stdio.h> @@ -14927,21 +14934,21 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:14930: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:14937: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:14933: \$? = $ac_status" >&5 + echo "$as_me:14940: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:14936: \"$ac_try\"") >&5 + { (eval echo "$as_me:14943: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:14939: \$? = $ac_status" >&5 + echo "$as_me:14946: \$? = $ac_status" >&5 (exit $ac_status); }; }; then test -n "$verbose" && echo " ... found gnutls headers in $cf_cv_header_path_gnutls" 1>&6 -echo "${as_me-configure}:14944: testing ... found gnutls headers in $cf_cv_header_path_gnutls ..." 1>&5 +echo "${as_me-configure}:14951: testing ... found gnutls headers in $cf_cv_header_path_gnutls ..." 1>&5 cf_cv_find_linkage_gnutls=maybe cf_test_CPPFLAGS="$CPPFLAGS" @@ -14959,7 +14966,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "$cf_cv_find_linkage_gnutls" = maybe ; then -echo "${as_me-configure}:14962: testing Searching for gnutls library in FIND_LINKAGE(gnutls,) ..." 1>&5 +echo "${as_me-configure}:14969: testing Searching for gnutls library in FIND_LINKAGE(gnutls,) ..." 1>&5 cf_save_LIBS="$LIBS" cf_save_LDFLAGS="$LDFLAGS" @@ -15056,13 +15063,13 @@ cf_search="$cf_library_path_list $cf_search" if test -d $cf_cv_library_path_gnutls ; then test -n "$verbose" && echo " ... testing $cf_cv_library_path_gnutls" 1>&6 -echo "${as_me-configure}:15059: testing ... testing $cf_cv_library_path_gnutls ..." 1>&5 +echo "${as_me-configure}:15066: testing ... testing $cf_cv_library_path_gnutls ..." 1>&5 CPPFLAGS="$cf_test_CPPFLAGS" LIBS="-lgnutls -lgnutls-openssl -lgnutls-extra -lgnutls -lgcrypt $cf_save_LIBS" LDFLAGS="$cf_save_LDFLAGS -L$cf_cv_library_path_gnutls" cat >conftest.$ac_ext <<_ACEOF -#line 15065 "configure" +#line 15072 "configure" #include "confdefs.h" #include <stdio.h> @@ -15091,21 +15098,21 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:15094: \"$ac_link\"") >&5 +if { (eval echo "$as_me:15101: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:15097: \$? = $ac_status" >&5 + echo "$as_me:15104: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:15100: \"$ac_try\"") >&5 + { (eval echo "$as_me:15107: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:15103: \$? = $ac_status" >&5 + echo "$as_me:15110: \$? = $ac_status" >&5 (exit $ac_status); }; }; then test -n "$verbose" && echo " ... found gnutls library in $cf_cv_library_path_gnutls" 1>&6 -echo "${as_me-configure}:15108: testing ... found gnutls library in $cf_cv_library_path_gnutls ..." 1>&5 +echo "${as_me-configure}:15115: testing ... found gnutls library in $cf_cv_library_path_gnutls ..." 1>&5 cf_cv_find_linkage_gnutls=yes cf_cv_library_file_gnutls="-lgnutls" @@ -15181,7 +15188,7 @@ if test -n "$cf_cv_header_path_gnutls" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 15184 "configure" +#line 15191 "configure" #include "confdefs.h" #include <stdio.h> int @@ -15193,16 +15200,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:15196: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:15203: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:15199: \$? = $ac_status" >&5 + echo "$as_me:15206: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:15202: \"$ac_try\"") >&5 + { (eval echo "$as_me:15209: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:15205: \$? = $ac_status" >&5 + echo "$as_me:15212: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -15219,7 +15226,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "$cf_have_incdir" = no ; then test -n "$verbose" && echo " adding $cf_add_incdir to include-path" 1>&6 -echo "${as_me-configure}:15222: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me-configure}:15229: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -15258,7 +15265,7 @@ if test -n "$cf_cv_library_path_gnutls" ; then if test "$cf_have_libdir" = no ; then test -n "$verbose" && echo " adding $cf_add_libdir to library-path" 1>&6 -echo "${as_me-configure}:15261: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me-configure}:15268: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -15270,7 +15277,7 @@ fi LIBS="-lgnutls -lgcrypt $LIBS" if test "$cf_pkg_gnutls" = none ; then - echo "$as_me:15273: checking for SSL_connect in -lgnutls-openssl" >&5 + echo "$as_me:15280: checking for SSL_connect in -lgnutls-openssl" >&5 echo $ECHO_N "checking for SSL_connect in -lgnutls-openssl... $ECHO_C" >&6 if test "${ac_cv_lib_gnutls_openssl_SSL_connect+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -15278,7 +15285,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lgnutls-openssl $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 15281 "configure" +#line 15288 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -15297,16 +15304,16 @@ SSL_connect (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:15300: \"$ac_link\"") >&5 +if { (eval echo "$as_me:15307: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:15303: \$? = $ac_status" >&5 + echo "$as_me:15310: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:15306: \"$ac_try\"") >&5 + { (eval echo "$as_me:15313: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:15309: \$? = $ac_status" >&5 + echo "$as_me:15316: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_gnutls_openssl_SSL_connect=yes else @@ -15317,12 +15324,12 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:15320: result: $ac_cv_lib_gnutls_openssl_SSL_connect" >&5 +echo "$as_me:15327: result: $ac_cv_lib_gnutls_openssl_SSL_connect" >&5 echo "${ECHO_T}$ac_cv_lib_gnutls_openssl_SSL_connect" >&6 if test $ac_cv_lib_gnutls_openssl_SSL_connect = yes; then LIBS="-lgnutls-openssl $LIBS" else - echo "$as_me:15325: checking for SSL_connect in -lgnutls-extra" >&5 + echo "$as_me:15332: checking for SSL_connect in -lgnutls-extra" >&5 echo $ECHO_N "checking for SSL_connect in -lgnutls-extra... $ECHO_C" >&6 if test "${ac_cv_lib_gnutls_extra_SSL_connect+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -15330,7 +15337,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lgnutls-extra $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 15333 "configure" +#line 15340 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -15349,16 +15356,16 @@ SSL_connect (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:15352: \"$ac_link\"") >&5 +if { (eval echo "$as_me:15359: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:15355: \$? = $ac_status" >&5 + echo "$as_me:15362: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:15358: \"$ac_try\"") >&5 + { (eval echo "$as_me:15365: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:15361: \$? = $ac_status" >&5 + echo "$as_me:15368: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_gnutls_extra_SSL_connect=yes else @@ -15369,12 +15376,12 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:15372: result: $ac_cv_lib_gnutls_extra_SSL_connect" >&5 +echo "$as_me:15379: result: $ac_cv_lib_gnutls_extra_SSL_connect" >&5 echo "${ECHO_T}$ac_cv_lib_gnutls_extra_SSL_connect" >&6 if test $ac_cv_lib_gnutls_extra_SSL_connect = yes; then LIBS="-lgnutls-extra $LIBS" else - { { echo "$as_me:15377: error: cannot find gnutls openssl functions" >&5 + { { echo "$as_me:15384: error: cannot find gnutls openssl functions" >&5 echo "$as_me: error: cannot find gnutls openssl functions" >&2;} { (exit 1); exit 1; }; } fi @@ -15383,10 +15390,10 @@ fi fi -echo "$as_me:15386: checking for X509 support" >&5 +echo "$as_me:15393: checking for X509 support" >&5 echo $ECHO_N "checking for X509 support... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF -#line 15389 "configure" +#line 15396 "configure" #include "confdefs.h" #include <stdio.h> @@ -15410,16 +15417,16 @@ X509_verify_cert_error_string(X509_STORE_CTX_get_error(NULL)) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:15413: \"$ac_link\"") >&5 +if { (eval echo "$as_me:15420: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:15416: \$? = $ac_status" >&5 + echo "$as_me:15423: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:15419: \"$ac_try\"") >&5 + { (eval echo "$as_me:15426: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:15422: \$? = $ac_status" >&5 + echo "$as_me:15429: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_x509_support=yes else @@ -15428,7 +15435,7 @@ cat conftest.$ac_ext >&5 cf_x509_support=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext -echo "$as_me:15431: result: $cf_x509_support" >&5 +echo "$as_me:15438: result: $cf_x509_support" >&5 echo "${ECHO_T}$cf_x509_support" >&6 if test "$cf_x509_support" = yes ; then @@ -15460,7 +15467,7 @@ no) #(vi ;; yes) #(vi -echo "$as_me:15463: checking for SSL_get_version in -lnss_compat_ossl" >&5 +echo "$as_me:15470: checking for SSL_get_version in -lnss_compat_ossl" >&5 echo $ECHO_N "checking for SSL_get_version in -lnss_compat_ossl... $ECHO_C" >&6 if test "${ac_cv_lib_nss_compat_ossl_SSL_get_version+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -15468,7 +15475,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lnss_compat_ossl -lnss_compat_ossl $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 15471 "configure" +#line 15478 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -15487,16 +15494,16 @@ SSL_get_version (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:15490: \"$ac_link\"") >&5 +if { (eval echo "$as_me:15497: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:15493: \$? = $ac_status" >&5 + echo "$as_me:15500: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:15496: \"$ac_try\"") >&5 + { (eval echo "$as_me:15503: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:15499: \$? = $ac_status" >&5 + echo "$as_me:15506: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_nss_compat_ossl_SSL_get_version=yes else @@ -15507,7 +15514,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:15510: result: $ac_cv_lib_nss_compat_ossl_SSL_get_version" >&5 +echo "$as_me:15517: result: $ac_cv_lib_nss_compat_ossl_SSL_get_version" >&5 echo "${ECHO_T}$ac_cv_lib_nss_compat_ossl_SSL_get_version" >&6 if test $ac_cv_lib_nss_compat_ossl_SSL_get_version = yes; then cat >>confdefs.h <<EOF @@ -15522,11 +15529,11 @@ else if test -d $cf_ssl_root ; then test -n "$verbose" && echo " assume it is in $cf_ssl_root" 1>&6 -echo "${as_me-configure}:15525: testing assume it is in $cf_ssl_root ..." 1>&5 +echo "${as_me-configure}:15532: testing assume it is in $cf_ssl_root ..." 1>&5 cf_ssl_library="-L$cf_ssl_root/lib $cf_ssl_library" else - { { echo "$as_me:15529: error: cannot find NSS compilant libraries" >&5 + { { echo "$as_me:15536: error: cannot find NSS compilant libraries" >&5 echo "$as_me: error: cannot find NSS compilant libraries" >&2;} { (exit 1); exit 1; }; } fi @@ -15541,13 +15548,13 @@ fi elif test -d $cf_cv_use_libnss_compat/../include ; then cf_ssl_root=$cf_cv_use_libnss_compat/.. else - { { echo "$as_me:15544: error: cannot find NSS compilant library under $cf_cv_use_libnss_compat" >&5 + { { echo "$as_me:15551: error: cannot find NSS compilant library under $cf_cv_use_libnss_compat" >&5 echo "$as_me: error: cannot find NSS compilant library under $cf_cv_use_libnss_compat" >&2;} { (exit 1); exit 1; }; } fi cf_ssl_library="-L$cf_ssl_root/lib $cf_ssl_library" else - { echo "$as_me:15550: WARNING: expected a directory: $cf_cv_use_libnss_compat" >&5 + { echo "$as_me:15557: WARNING: expected a directory: $cf_cv_use_libnss_compat" >&5 echo "$as_me: WARNING: expected a directory: $cf_cv_use_libnss_compat" >&2;} fi ;; @@ -15641,10 +15648,10 @@ if test -n "$cf_new_extra_cppflags" ; then fi if test "$cf_ssl_subincs" = yes ; then -echo "$as_me:15644: checking for NSS compilant include directory" >&5 +echo "$as_me:15651: checking for NSS compilant include directory" >&5 echo $ECHO_N "checking for NSS compilant include directory... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF -#line 15647 "configure" +#line 15654 "configure" #include "confdefs.h" #include <stdio.h> @@ -15658,16 +15665,16 @@ SSL_shutdown((SSL *)0) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:15661: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:15668: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:15664: \$? = $ac_status" >&5 + echo "$as_me:15671: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:15667: \"$ac_try\"") >&5 + { (eval echo "$as_me:15674: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:15670: \$? = $ac_status" >&5 + echo "$as_me:15677: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_ssl_incl=yes else @@ -15676,7 +15683,7 @@ cat conftest.$ac_ext >&5 cf_ssl_incl=no fi rm -f conftest.$ac_objext conftest.$ac_ext -echo "$as_me:15679: result: $cf_ssl_incl" >&5 +echo "$as_me:15686: result: $cf_ssl_incl" >&5 echo "${ECHO_T}$cf_ssl_incl" >&6 test "$cf_ssl_incl" = yes && cat >>confdefs.h <<\EOF #define USE_NSS_COMPAT_INCL 1 @@ -15684,10 +15691,10 @@ EOF fi -echo "$as_me:15687: checking if we can link to NSS compilant library" >&5 +echo "$as_me:15694: checking if we can link to NSS compilant library" >&5 echo $ECHO_N "checking if we can link to NSS compilant library... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF -#line 15690 "configure" +#line 15697 "configure" #include "confdefs.h" #include <stdio.h> @@ -15706,16 +15713,16 @@ SSL_shutdown((SSL *)0) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:15709: \"$ac_link\"") >&5 +if { (eval echo "$as_me:15716: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:15712: \$? = $ac_status" >&5 + echo "$as_me:15719: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:15715: \"$ac_try\"") >&5 + { (eval echo "$as_me:15722: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:15718: \$? = $ac_status" >&5 + echo "$as_me:15725: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_ssl_library=yes else @@ -15724,7 +15731,7 @@ cat conftest.$ac_ext >&5 cf_ssl_library=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext -echo "$as_me:15727: result: $cf_ssl_library" >&5 +echo "$as_me:15734: result: $cf_ssl_library" >&5 echo "${ECHO_T}$cf_ssl_library" >&6 if test "$cf_ssl_library" = yes ; then cat >>confdefs.h <<\EOF @@ -15736,7 +15743,7 @@ EOF EOF else - { { echo "$as_me:15739: error: Cannot link with NSS compilant libraries" >&5 + { { echo "$as_me:15746: error: Cannot link with NSS compilant libraries" >&5 echo "$as_me: error: Cannot link with NSS compilant libraries" >&2;} { (exit 1); exit 1; }; } fi @@ -15744,7 +15751,7 @@ fi fi ### check for ipv6 support -echo "$as_me:15747: checking whether to enable ipv6" >&5 +echo "$as_me:15754: checking whether to enable ipv6" >&5 echo $ECHO_N "checking whether to enable ipv6... $ECHO_C" >&6 # Check whether --enable-ipv6 or --disable-ipv6 was given. @@ -15760,11 +15767,11 @@ EOF else enableval=no fi; -echo "$as_me:15763: result: $enableval" >&5 +echo "$as_me:15770: result: $enableval" >&5 echo "${ECHO_T}$enableval" >&6 if test "$enableval" = "yes"; then -echo "$as_me:15767: checking ipv6 stack type" >&5 +echo "$as_me:15774: checking ipv6 stack type" >&5 echo $ECHO_N "checking ipv6 stack type... $ECHO_C" >&6 if test "${cf_cv_ipv6type+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -15785,7 +15792,7 @@ do ;; inria) #(vi cat >conftest.$ac_ext <<_ACEOF -#line 15788 "configure" +#line 15795 "configure" #include "confdefs.h" #include <netinet/in.h> @@ -15802,7 +15809,7 @@ rm -f conftest* ;; kame) #(vi cat >conftest.$ac_ext <<_ACEOF -#line 15805 "configure" +#line 15812 "configure" #include "confdefs.h" #include <netinet/in.h> @@ -15819,7 +15826,7 @@ rm -f conftest* ;; linux-glibc) #(vi cat >conftest.$ac_ext <<_ACEOF -#line 15822 "configure" +#line 15829 "configure" #include "confdefs.h" #include <features.h> @@ -15845,7 +15852,7 @@ rm -f conftest* ;; toshiba) #(vi cat >conftest.$ac_ext <<_ACEOF -#line 15848 "configure" +#line 15855 "configure" #include "confdefs.h" #include <sys/param.h> @@ -15862,7 +15869,7 @@ rm -f conftest* ;; v6d) #(vi cat >conftest.$ac_ext <<_ACEOF -#line 15865 "configure" +#line 15872 "configure" #include "confdefs.h" #include </usr/local/v6/include/sys/v6config.h> @@ -15879,7 +15886,7 @@ rm -f conftest* ;; zeta) cat >conftest.$ac_ext <<_ACEOF -#line 15882 "configure" +#line 15889 "configure" #include "confdefs.h" #include <sys/param.h> @@ -15901,13 +15908,13 @@ rm -f conftest* done fi -echo "$as_me:15904: result: $cf_cv_ipv6type" >&5 +echo "$as_me:15911: result: $cf_cv_ipv6type" >&5 echo "${ECHO_T}$cf_cv_ipv6type" >&6 cf_ipv6lib=none cf_ipv6dir=none -echo "$as_me:15910: checking for IPv6 library if required" >&5 +echo "$as_me:15917: checking for IPv6 library if required" >&5 echo $ECHO_N "checking for IPv6 library if required... $ECHO_C" >&6 case $cf_cv_ipv6type in #(vi solaris) #(vi @@ -15937,13 +15944,13 @@ zeta) cf_ipv6dir=v6 ;; esac -echo "$as_me:15940: result: $cf_ipv6lib" >&5 +echo "$as_me:15947: result: $cf_ipv6lib" >&5 echo "${ECHO_T}$cf_ipv6lib" >&6 if test "$cf_ipv6lib" != "none"; then cat >conftest.$ac_ext <<_ACEOF -#line 15946 "configure" +#line 15953 "configure" #include "confdefs.h" #include <sys/types.h> @@ -15959,16 +15966,16 @@ getaddrinfo(0, 0, 0, 0) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:15962: \"$ac_link\"") >&5 +if { (eval echo "$as_me:15969: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:15965: \$? = $ac_status" >&5 + echo "$as_me:15972: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:15968: \"$ac_try\"") >&5 + { (eval echo "$as_me:15975: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:15971: \$? = $ac_status" >&5 + echo "$as_me:15978: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -16104,7 +16111,7 @@ if test -n "$cf_incdir" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 16107 "configure" +#line 16114 "configure" #include "confdefs.h" #include <stdio.h> int @@ -16116,16 +16123,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:16119: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:16126: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:16122: \$? = $ac_status" >&5 + echo "$as_me:16129: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:16125: \"$ac_try\"") >&5 + { (eval echo "$as_me:16132: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:16128: \$? = $ac_status" >&5 + echo "$as_me:16135: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -16142,7 +16149,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "$cf_have_incdir" = no ; then test -n "$verbose" && echo " adding $cf_add_incdir to include-path" 1>&6 -echo "${as_me-configure}:16145: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me-configure}:16152: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -16168,13 +16175,13 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext eval 'cf_cv_have_lib_'$cf_ipv6lib'=no' cf_libdir="" - echo "$as_me:16171: checking for getaddrinfo" >&5 + echo "$as_me:16178: checking for getaddrinfo" >&5 echo $ECHO_N "checking for getaddrinfo... $ECHO_C" >&6 if test "${ac_cv_func_getaddrinfo+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 16177 "configure" +#line 16184 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char getaddrinfo (); below. */ @@ -16205,16 +16212,16 @@ f = getaddrinfo; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:16208: \"$ac_link\"") >&5 +if { (eval echo "$as_me:16215: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:16211: \$? = $ac_status" >&5 + echo "$as_me:16218: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:16214: \"$ac_try\"") >&5 + { (eval echo "$as_me:16221: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:16217: \$? = $ac_status" >&5 + echo "$as_me:16224: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_getaddrinfo=yes else @@ -16224,18 +16231,18 @@ ac_cv_func_getaddrinfo=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:16227: result: $ac_cv_func_getaddrinfo" >&5 +echo "$as_me:16234: result: $ac_cv_func_getaddrinfo" >&5 echo "${ECHO_T}$ac_cv_func_getaddrinfo" >&6 if test $ac_cv_func_getaddrinfo = yes; then eval 'cf_cv_have_lib_'$cf_ipv6lib'=yes' else cf_save_LIBS="$LIBS" - echo "$as_me:16234: checking for getaddrinfo in -l$cf_ipv6lib" >&5 + echo "$as_me:16241: checking for getaddrinfo in -l$cf_ipv6lib" >&5 echo $ECHO_N "checking for getaddrinfo in -l$cf_ipv6lib... $ECHO_C" >&6 LIBS="-l$cf_ipv6lib $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 16238 "configure" +#line 16245 "configure" #include "confdefs.h" #include <sys/types.h> @@ -16251,25 +16258,25 @@ getaddrinfo(0, 0, 0, 0) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:16254: \"$ac_link\"") >&5 +if { (eval echo "$as_me:16261: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:16257: \$? = $ac_status" >&5 + echo "$as_me:16264: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:16260: \"$ac_try\"") >&5 + { (eval echo "$as_me:16267: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:16263: \$? = $ac_status" >&5 + echo "$as_me:16270: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:16265: result: yes" >&5 + echo "$as_me:16272: result: yes" >&5 echo "${ECHO_T}yes" >&6 eval 'cf_cv_have_lib_'$cf_ipv6lib'=yes' else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 -echo "$as_me:16272: result: no" >&5 +echo "$as_me:16279: result: no" >&5 echo "${ECHO_T}no" >&6 cf_search= @@ -16359,11 +16366,11 @@ cf_search="$cf_library_path_list $cf_search" for cf_libdir in $cf_search do - echo "$as_me:16362: checking for -l$cf_ipv6lib in $cf_libdir" >&5 + echo "$as_me:16369: checking for -l$cf_ipv6lib in $cf_libdir" >&5 echo $ECHO_N "checking for -l$cf_ipv6lib in $cf_libdir... $ECHO_C" >&6 LIBS="-L$cf_libdir -l$cf_ipv6lib $cf_save_LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 16366 "configure" +#line 16373 "configure" #include "confdefs.h" #include <sys/types.h> @@ -16379,25 +16386,25 @@ getaddrinfo(0, 0, 0, 0) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:16382: \"$ac_link\"") >&5 +if { (eval echo "$as_me:16389: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:16385: \$? = $ac_status" >&5 + echo "$as_me:16392: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:16388: \"$ac_try\"") >&5 + { (eval echo "$as_me:16395: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:16391: \$? = $ac_status" >&5 + echo "$as_me:16398: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:16393: result: yes" >&5 + echo "$as_me:16400: result: yes" >&5 echo "${ECHO_T}yes" >&6 eval 'cf_cv_have_lib_'$cf_ipv6lib'=yes' break else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 -echo "$as_me:16400: result: no" >&5 +echo "$as_me:16407: result: no" >&5 echo "${ECHO_T}no" >&6 LIBS="$cf_save_LIBS" fi @@ -16412,7 +16419,7 @@ fi eval 'cf_found_library=$cf_cv_have_lib_'$cf_ipv6lib if test $cf_found_library = no ; then - { { echo "$as_me:16415: error: No $cf_ipv6lib library found, cannot continue. You must fetch lib$cf_ipv6lib.a + { { echo "$as_me:16422: error: No $cf_ipv6lib library found, cannot continue. You must fetch lib$cf_ipv6lib.a from an appropriate IPv6 kit and compile beforehand." >&5 echo "$as_me: error: No $cf_ipv6lib library found, cannot continue. You must fetch lib$cf_ipv6lib.a from an appropriate IPv6 kit and compile beforehand." >&2;} @@ -16420,7 +16427,7 @@ from an appropriate IPv6 kit and compile beforehand." >&2;} fi fi -echo "$as_me:16423: checking working getaddrinfo" >&5 +echo "$as_me:16430: checking working getaddrinfo" >&5 echo $ECHO_N "checking working getaddrinfo... $ECHO_C" >&6 if test "${cf_cv_getaddrinfo+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -16430,7 +16437,7 @@ if test "$cross_compiling" = yes; then cf_cv_getaddrinfo=unknown else cat >conftest.$ac_ext <<_ACEOF -#line 16433 "configure" +#line 16440 "configure" #include "confdefs.h" #include <sys/types.h> @@ -16510,15 +16517,15 @@ int main() _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:16513: \"$ac_link\"") >&5 +if { (eval echo "$as_me:16520: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:16516: \$? = $ac_status" >&5 + echo "$as_me:16523: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:16518: \"$ac_try\"") >&5 + { (eval echo "$as_me:16525: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:16521: \$? = $ac_status" >&5 + echo "$as_me:16528: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_getaddrinfo=yes else @@ -16531,7 +16538,7 @@ rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext fi fi -echo "$as_me:16534: result: $cf_cv_getaddrinfo" >&5 +echo "$as_me:16541: result: $cf_cv_getaddrinfo" >&5 echo "${ECHO_T}$cf_cv_getaddrinfo" >&6 if test "$cf_cv_getaddrinfo" = yes ; then cat >>confdefs.h <<\EOF @@ -16546,12 +16553,12 @@ fi if test "$cf_cv_getaddrinfo" != "yes"; then if test "$cf_cv_ipv6type" != "linux"; then - { echo "$as_me:16549: WARNING: You must get working getaddrinfo() function, + { echo "$as_me:16556: WARNING: You must get working getaddrinfo() function, or you can specify \"--disable-ipv6\"" >&5 echo "$as_me: WARNING: You must get working getaddrinfo() function, or you can specify \"--disable-ipv6\"" >&2;} else - { echo "$as_me:16554: WARNING: The getaddrinfo() implementation on your system seems be buggy. + { echo "$as_me:16561: WARNING: The getaddrinfo() implementation on your system seems be buggy. You should upgrade your system library to the newest version of GNU C library (aka glibc)." >&5 echo "$as_me: WARNING: The getaddrinfo() implementation on your system seems be buggy. @@ -16562,7 +16569,7 @@ fi fi -echo "$as_me:16565: checking for screen type" >&5 +echo "$as_me:16572: checking for screen type" >&5 echo $ECHO_N "checking for screen type... $ECHO_C" >&6 if test "${cf_cv_screen+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -16576,7 +16583,7 @@ case $withval in curses|ncurses|ncursesw|pdcurses|slang) cf_cv_screen=$withval ;; -*) { { echo "$as_me:16579: error: Unexpected value" >&5 +*) { { echo "$as_me:16586: error: Unexpected value" >&5 echo "$as_me: error: Unexpected value" >&2;} { (exit 1); exit 1; }; } ;; @@ -16585,7 +16592,7 @@ else cf_cv_screen=curses fi; fi -echo "$as_me:16588: result: $cf_cv_screen" >&5 +echo "$as_me:16595: result: $cf_cv_screen" >&5 echo "${ECHO_T}$cf_cv_screen" >&6 case $cf_cv_screen in @@ -16620,7 +16627,7 @@ case ".$withval" in #(vi withval=`echo $withval | sed -e s%NONE%$cf_path_syntax%` ;; *) - { { echo "$as_me:16623: error: expected a pathname, not \"$withval\"" >&5 + { { echo "$as_me:16630: error: expected a pathname, not \"$withval\"" >&5 echo "$as_me: error: expected a pathname, not \"$withval\"" >&2;} { (exit 1); exit 1; }; } ;; @@ -16639,7 +16646,7 @@ dft_color_style=yes case $cf_cv_screen in curses) -echo "$as_me:16642: checking for extra include directories" >&5 +echo "$as_me:16649: checking for extra include directories" >&5 echo $ECHO_N "checking for extra include directories... $ECHO_C" >&6 if test "${cf_cv_curses_incdir+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -16659,11 +16666,11 @@ sunos3*|sunos4*) esac fi -echo "$as_me:16662: result: $cf_cv_curses_incdir" >&5 +echo "$as_me:16669: result: $cf_cv_curses_incdir" >&5 echo "${ECHO_T}$cf_cv_curses_incdir" >&6 test "$cf_cv_curses_incdir" != no && CPPFLAGS="$CPPFLAGS $cf_cv_curses_incdir" -echo "$as_me:16666: checking if we have identified curses headers" >&5 +echo "$as_me:16673: checking if we have identified curses headers" >&5 echo $ECHO_N "checking if we have identified curses headers... $ECHO_C" >&6 if test "${cf_cv_ncurses_header+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -16677,7 +16684,7 @@ for cf_header in \ ncurses/ncurses.h do cat >conftest.$ac_ext <<_ACEOF -#line 16680 "configure" +#line 16687 "configure" #include "confdefs.h" #include <${cf_header}> int @@ -16689,16 +16696,16 @@ initscr(); tgoto("?", 0,0) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:16692: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:16699: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:16695: \$? = $ac_status" >&5 + echo "$as_me:16702: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:16698: \"$ac_try\"") >&5 + { (eval echo "$as_me:16705: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:16701: \$? = $ac_status" >&5 + echo "$as_me:16708: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_ncurses_header=$cf_header; break else @@ -16709,11 +16716,11 @@ rm -f conftest.$ac_objext conftest.$ac_ext done fi -echo "$as_me:16712: result: $cf_cv_ncurses_header" >&5 +echo "$as_me:16719: result: $cf_cv_ncurses_header" >&5 echo "${ECHO_T}$cf_cv_ncurses_header" >&6 if test "$cf_cv_ncurses_header" = none ; then - { { echo "$as_me:16716: error: No curses header-files found" >&5 + { { echo "$as_me:16723: error: No curses header-files found" >&5 echo "$as_me: error: No curses header-files found" >&2;} { (exit 1); exit 1; }; } fi @@ -16723,23 +16730,23 @@ fi for ac_header in $cf_cv_ncurses_header do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` -echo "$as_me:16726: checking for $ac_header" >&5 +echo "$as_me:16733: 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 16732 "configure" +#line 16739 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:16736: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:16743: \"$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:16742: \$? = $ac_status" >&5 + echo "$as_me:16749: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -16758,7 +16765,7 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:16761: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:16768: 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 <<EOF @@ -16768,7 +16775,7 @@ EOF fi done -echo "$as_me:16771: checking for terminfo header" >&5 +echo "$as_me:16778: checking for terminfo header" >&5 echo $ECHO_N "checking for terminfo header... $ECHO_C" >&6 if test "${cf_cv_term_header+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -16786,7 +16793,7 @@ esac for cf_test in $cf_term_header "ncurses/term.h" "ncursesw/term.h" do cat >conftest.$ac_ext <<_ACEOF -#line 16789 "configure" +#line 16796 "configure" #include "confdefs.h" #include <stdio.h> #include <${cf_cv_ncurses_header-curses.h}> @@ -16801,16 +16808,16 @@ int x = auto_left_margin } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:16804: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:16811: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:16807: \$? = $ac_status" >&5 + echo "$as_me:16814: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:16810: \"$ac_try\"") >&5 + { (eval echo "$as_me:16817: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:16813: \$? = $ac_status" >&5 + echo "$as_me:16820: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_term_header="$cf_test" @@ -16826,7 +16833,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext done fi -echo "$as_me:16829: result: $cf_cv_term_header" >&5 +echo "$as_me:16836: result: $cf_cv_term_header" >&5 echo "${ECHO_T}$cf_cv_term_header" >&6 # Set definitions to allow ifdef'ing to accommodate subdirectories @@ -16855,7 +16862,7 @@ EOF ;; esac -echo "$as_me:16858: checking for ncurses version" >&5 +echo "$as_me:16865: checking for ncurses version" >&5 echo $ECHO_N "checking for ncurses version... $ECHO_C" >&6 if test "${cf_cv_ncurses_version+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -16881,10 +16888,10 @@ Autoconf "old" #endif EOF cf_try="$ac_cpp conftest.$ac_ext 2>&5 | grep '^Autoconf ' >conftest.out" - { (eval echo "$as_me:16884: \"$cf_try\"") >&5 + { (eval echo "$as_me:16891: \"$cf_try\"") >&5 (eval $cf_try) 2>&5 ac_status=$? - echo "$as_me:16887: \$? = $ac_status" >&5 + echo "$as_me:16894: \$? = $ac_status" >&5 (exit $ac_status); } if test -f conftest.out ; then cf_out=`cat conftest.out | sed -e 's%^Autoconf %%' -e 's%^[^"]*"%%' -e 's%".*%%'` @@ -16894,7 +16901,7 @@ EOF else cat >conftest.$ac_ext <<_ACEOF -#line 16897 "configure" +#line 16904 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header-curses.h}> @@ -16919,15 +16926,15 @@ int main() } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:16922: \"$ac_link\"") >&5 +if { (eval echo "$as_me:16929: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:16925: \$? = $ac_status" >&5 + echo "$as_me:16932: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:16927: \"$ac_try\"") >&5 + { (eval echo "$as_me:16934: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:16930: \$? = $ac_status" >&5 + echo "$as_me:16937: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_ncurses_version=`cat $cf_tempfile` @@ -16941,16 +16948,16 @@ fi rm -f $cf_tempfile fi -echo "$as_me:16944: result: $cf_cv_ncurses_version" >&5 +echo "$as_me:16951: result: $cf_cv_ncurses_version" >&5 echo "${ECHO_T}$cf_cv_ncurses_version" >&6 test "$cf_cv_ncurses_version" = no || cat >>confdefs.h <<\EOF #define NCURSES 1 EOF -echo "$as_me:16950: checking if we have identified curses libraries" >&5 +echo "$as_me:16957: checking if we have identified curses libraries" >&5 echo $ECHO_N "checking if we have identified curses libraries... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF -#line 16953 "configure" +#line 16960 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header-curses.h}> int @@ -16962,16 +16969,16 @@ initscr(); tgoto("?", 0,0) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:16965: \"$ac_link\"") >&5 +if { (eval echo "$as_me:16972: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:16968: \$? = $ac_status" >&5 + echo "$as_me:16975: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:16971: \"$ac_try\"") >&5 + { (eval echo "$as_me:16978: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:16974: \$? = $ac_status" >&5 + echo "$as_me:16981: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_result=yes else @@ -16980,13 +16987,13 @@ cat conftest.$ac_ext >&5 cf_result=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext -echo "$as_me:16983: result: $cf_result" >&5 +echo "$as_me:16990: result: $cf_result" >&5 echo "${ECHO_T}$cf_result" >&6 if test "$cf_result" = no ; then case $host_os in #(vi freebsd*) #(vi - echo "$as_me:16989: checking for tgoto in -lmytinfo" >&5 + echo "$as_me:16996: checking for tgoto in -lmytinfo" >&5 echo $ECHO_N "checking for tgoto in -lmytinfo... $ECHO_C" >&6 if test "${ac_cv_lib_mytinfo_tgoto+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -16994,7 +17001,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lmytinfo $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 16997 "configure" +#line 17004 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -17013,16 +17020,16 @@ tgoto (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:17016: \"$ac_link\"") >&5 +if { (eval echo "$as_me:17023: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:17019: \$? = $ac_status" >&5 + echo "$as_me:17026: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:17022: \"$ac_try\"") >&5 + { (eval echo "$as_me:17029: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:17025: \$? = $ac_status" >&5 + echo "$as_me:17032: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_mytinfo_tgoto=yes else @@ -17033,7 +17040,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:17036: result: $ac_cv_lib_mytinfo_tgoto" >&5 +echo "$as_me:17043: result: $ac_cv_lib_mytinfo_tgoto" >&5 echo "${ECHO_T}$ac_cv_lib_mytinfo_tgoto" >&6 if test $ac_cv_lib_mytinfo_tgoto = yes; then LIBS="-lmytinfo $LIBS" @@ -17041,7 +17048,7 @@ fi ;; hpux10.*) #(vi - echo "$as_me:17044: checking for initscr in -lcur_colr" >&5 + echo "$as_me:17051: checking for initscr in -lcur_colr" >&5 echo $ECHO_N "checking for initscr in -lcur_colr... $ECHO_C" >&6 if test "${ac_cv_lib_cur_colr_initscr+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -17049,7 +17056,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lcur_colr $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 17052 "configure" +#line 17059 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -17068,16 +17075,16 @@ initscr (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:17071: \"$ac_link\"") >&5 +if { (eval echo "$as_me:17078: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:17074: \$? = $ac_status" >&5 + echo "$as_me:17081: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:17077: \"$ac_try\"") >&5 + { (eval echo "$as_me:17084: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:17080: \$? = $ac_status" >&5 + echo "$as_me:17087: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_cur_colr_initscr=yes else @@ -17088,7 +17095,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:17091: result: $ac_cv_lib_cur_colr_initscr" >&5 +echo "$as_me:17098: result: $ac_cv_lib_cur_colr_initscr" >&5 echo "${ECHO_T}$ac_cv_lib_cur_colr_initscr" >&6 if test $ac_cv_lib_cur_colr_initscr = yes; then @@ -17097,7 +17104,7 @@ if test $ac_cv_lib_cur_colr_initscr = yes; then else - echo "$as_me:17100: checking for initscr in -lHcurses" >&5 + echo "$as_me:17107: checking for initscr in -lHcurses" >&5 echo $ECHO_N "checking for initscr in -lHcurses... $ECHO_C" >&6 if test "${ac_cv_lib_Hcurses_initscr+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -17105,7 +17112,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lHcurses $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 17108 "configure" +#line 17115 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -17124,16 +17131,16 @@ initscr (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:17127: \"$ac_link\"") >&5 +if { (eval echo "$as_me:17134: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:17130: \$? = $ac_status" >&5 + echo "$as_me:17137: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:17133: \"$ac_try\"") >&5 + { (eval echo "$as_me:17140: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:17136: \$? = $ac_status" >&5 + echo "$as_me:17143: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_Hcurses_initscr=yes else @@ -17144,7 +17151,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:17147: result: $ac_cv_lib_Hcurses_initscr" >&5 +echo "$as_me:17154: result: $ac_cv_lib_Hcurses_initscr" >&5 echo "${ECHO_T}$ac_cv_lib_Hcurses_initscr" >&6 if test $ac_cv_lib_Hcurses_initscr = yes; then @@ -17179,7 +17186,7 @@ if test -n "/lib" ; then if test "$cf_have_libdir" = no ; then test -n "$verbose" && echo " adding $cf_add_libdir to library-path" 1>&6 -echo "${as_me-configure}:17182: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me-configure}:17189: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -17210,7 +17217,7 @@ if test -n "/usr/5lib" ; then if test "$cf_have_libdir" = no ; then test -n "$verbose" && echo " adding $cf_add_libdir to library-path" 1>&6 -echo "${as_me-configure}:17213: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me-configure}:17220: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -17238,13 +17245,13 @@ if test ".$ac_cv_func_initscr" != .yes ; then # Check for library containing tgoto. Do this before curses library # because it may be needed to link the test-case for initscr. - echo "$as_me:17241: checking for tgoto" >&5 + echo "$as_me:17248: checking for tgoto" >&5 echo $ECHO_N "checking for tgoto... $ECHO_C" >&6 if test "${ac_cv_func_tgoto+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 17247 "configure" +#line 17254 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char tgoto (); below. */ @@ -17275,16 +17282,16 @@ f = tgoto; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:17278: \"$ac_link\"") >&5 +if { (eval echo "$as_me:17285: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:17281: \$? = $ac_status" >&5 + echo "$as_me:17288: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:17284: \"$ac_try\"") >&5 + { (eval echo "$as_me:17291: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:17287: \$? = $ac_status" >&5 + echo "$as_me:17294: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_tgoto=yes else @@ -17294,7 +17301,7 @@ ac_cv_func_tgoto=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:17297: result: $ac_cv_func_tgoto" >&5 +echo "$as_me:17304: result: $ac_cv_func_tgoto" >&5 echo "${ECHO_T}$ac_cv_func_tgoto" >&6 if test $ac_cv_func_tgoto = yes; then cf_term_lib=predefined @@ -17303,7 +17310,7 @@ else for cf_term_lib in $cf_check_list termcap termlib unknown do as_ac_Lib=`echo "ac_cv_lib_$cf_term_lib''_tgoto" | $as_tr_sh` -echo "$as_me:17306: checking for tgoto in -l$cf_term_lib" >&5 +echo "$as_me:17313: checking for tgoto in -l$cf_term_lib" >&5 echo $ECHO_N "checking for tgoto in -l$cf_term_lib... $ECHO_C" >&6 if eval "test \"\${$as_ac_Lib+set}\" = set"; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -17311,7 +17318,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-l$cf_term_lib $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 17314 "configure" +#line 17321 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -17330,16 +17337,16 @@ tgoto (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:17333: \"$ac_link\"") >&5 +if { (eval echo "$as_me:17340: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:17336: \$? = $ac_status" >&5 + echo "$as_me:17343: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:17339: \"$ac_try\"") >&5 + { (eval echo "$as_me:17346: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:17342: \$? = $ac_status" >&5 + echo "$as_me:17349: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_Lib=yes" else @@ -17350,7 +17357,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:17353: result: `eval echo '${'$as_ac_Lib'}'`" >&5 +echo "$as_me:17360: result: `eval echo '${'$as_ac_Lib'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_Lib'}'`" >&6 if test `eval echo '${'$as_ac_Lib'}'` = yes; then break @@ -17365,7 +17372,7 @@ fi for cf_curs_lib in $cf_check_list xcurses jcurses pdcurses unknown do as_ac_Lib=`echo "ac_cv_lib_$cf_curs_lib''_initscr" | $as_tr_sh` -echo "$as_me:17368: checking for initscr in -l$cf_curs_lib" >&5 +echo "$as_me:17375: checking for initscr in -l$cf_curs_lib" >&5 echo $ECHO_N "checking for initscr in -l$cf_curs_lib... $ECHO_C" >&6 if eval "test \"\${$as_ac_Lib+set}\" = set"; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -17373,7 +17380,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-l$cf_curs_lib $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 17376 "configure" +#line 17383 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -17392,16 +17399,16 @@ initscr (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:17395: \"$ac_link\"") >&5 +if { (eval echo "$as_me:17402: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:17398: \$? = $ac_status" >&5 + echo "$as_me:17405: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:17401: \"$ac_try\"") >&5 + { (eval echo "$as_me:17408: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:17404: \$? = $ac_status" >&5 + echo "$as_me:17411: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_Lib=yes" else @@ -17412,23 +17419,23 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:17415: result: `eval echo '${'$as_ac_Lib'}'`" >&5 +echo "$as_me:17422: result: `eval echo '${'$as_ac_Lib'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_Lib'}'`" >&6 if test `eval echo '${'$as_ac_Lib'}'` = yes; then break fi done - test $cf_curs_lib = unknown && { { echo "$as_me:17422: error: no curses library found" >&5 + test $cf_curs_lib = unknown && { { echo "$as_me:17429: error: no curses library found" >&5 echo "$as_me: error: no curses library found" >&2;} { (exit 1); exit 1; }; } LIBS="-l$cf_curs_lib $cf_save_LIBS" if test "$cf_term_lib" = unknown ; then - echo "$as_me:17428: checking if we can link with $cf_curs_lib library" >&5 + echo "$as_me:17435: checking if we can link with $cf_curs_lib library" >&5 echo $ECHO_N "checking if we can link with $cf_curs_lib library... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF -#line 17431 "configure" +#line 17438 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header-curses.h}> int @@ -17440,16 +17447,16 @@ initscr() } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:17443: \"$ac_link\"") >&5 +if { (eval echo "$as_me:17450: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:17446: \$? = $ac_status" >&5 + echo "$as_me:17453: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:17449: \"$ac_try\"") >&5 + { (eval echo "$as_me:17456: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:17452: \$? = $ac_status" >&5 + echo "$as_me:17459: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_result=yes else @@ -17458,18 +17465,18 @@ cat conftest.$ac_ext >&5 cf_result=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext - echo "$as_me:17461: result: $cf_result" >&5 + echo "$as_me:17468: result: $cf_result" >&5 echo "${ECHO_T}$cf_result" >&6 - test $cf_result = no && { { echo "$as_me:17463: error: Cannot link curses library" >&5 + test $cf_result = no && { { echo "$as_me:17470: error: Cannot link curses library" >&5 echo "$as_me: error: Cannot link curses library" >&2;} { (exit 1); exit 1; }; } elif test "$cf_curs_lib" = "$cf_term_lib" ; then : elif test "$cf_term_lib" != predefined ; then - echo "$as_me:17469: checking if we need both $cf_curs_lib and $cf_term_lib libraries" >&5 + echo "$as_me:17476: checking if we need both $cf_curs_lib and $cf_term_lib libraries" >&5 echo $ECHO_N "checking if we need both $cf_curs_lib and $cf_term_lib libraries... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF -#line 17472 "configure" +#line 17479 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header-curses.h}> int @@ -17481,16 +17488,16 @@ initscr(); tgoto((char *)0, 0, 0); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:17484: \"$ac_link\"") >&5 +if { (eval echo "$as_me:17491: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:17487: \$? = $ac_status" >&5 + echo "$as_me:17494: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:17490: \"$ac_try\"") >&5 + { (eval echo "$as_me:17497: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:17493: \$? = $ac_status" >&5 + echo "$as_me:17500: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_result=no else @@ -17499,7 +17506,7 @@ cat conftest.$ac_ext >&5 LIBS="-l$cf_curs_lib -l$cf_term_lib $cf_save_LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 17502 "configure" +#line 17509 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header-curses.h}> int @@ -17511,16 +17518,16 @@ initscr() } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:17514: \"$ac_link\"") >&5 +if { (eval echo "$as_me:17521: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:17517: \$? = $ac_status" >&5 + echo "$as_me:17524: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:17520: \"$ac_try\"") >&5 + { (eval echo "$as_me:17527: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:17523: \$? = $ac_status" >&5 + echo "$as_me:17530: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_result=yes else @@ -17532,13 +17539,13 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext - echo "$as_me:17535: result: $cf_result" >&5 + echo "$as_me:17542: result: $cf_result" >&5 echo "${ECHO_T}$cf_result" >&6 fi fi fi -echo "$as_me:17541: checking for curses performance tradeoff" >&5 +echo "$as_me:17548: checking for curses performance tradeoff" >&5 echo $ECHO_N "checking for curses performance tradeoff... $ECHO_C" >&6 if test "${cf_cv_curs_performance+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -17546,7 +17553,7 @@ else cf_cv_curs_performance=no cat >conftest.$ac_ext <<_ACEOF -#line 17549 "configure" +#line 17556 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header-curses.h}> @@ -17565,20 +17572,20 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:17568: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:17575: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:17571: \$? = $ac_status" >&5 + echo "$as_me:17578: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:17574: \"$ac_try\"") >&5 + { (eval echo "$as_me:17581: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:17577: \$? = $ac_status" >&5 + echo "$as_me:17584: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cat >conftest.$ac_ext <<_ACEOF -#line 17581 "configure" +#line 17588 "configure" #include "confdefs.h" #define CURS_PERFORMANCE @@ -17598,16 +17605,16 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:17601: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:17608: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:17604: \$? = $ac_status" >&5 + echo "$as_me:17611: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:17607: \"$ac_try\"") >&5 + { (eval echo "$as_me:17614: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:17610: \$? = $ac_status" >&5 + echo "$as_me:17617: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_curs_performance=yes else @@ -17622,20 +17629,20 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:17625: result: $cf_cv_curs_performance" >&5 +echo "$as_me:17632: result: $cf_cv_curs_performance" >&5 echo "${ECHO_T}$cf_cv_curs_performance" >&6 test $cf_cv_curs_performance = yes && cat >>confdefs.h <<\EOF #define CURS_PERFORMANCE 1 EOF -echo "$as_me:17631: checking for curses touchline function" >&5 +echo "$as_me:17638: checking for curses touchline function" >&5 echo $ECHO_N "checking for curses touchline function... $ECHO_C" >&6 if test "${cf_cv_curs_touchline+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 17638 "configure" +#line 17645 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header-curses.h}> @@ -17648,23 +17655,23 @@ touchline(stdscr, 1,2,3); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:17651: \"$ac_link\"") >&5 +if { (eval echo "$as_me:17658: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:17654: \$? = $ac_status" >&5 + echo "$as_me:17661: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:17657: \"$ac_try\"") >&5 + { (eval echo "$as_me:17664: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:17660: \$? = $ac_status" >&5 + echo "$as_me:17667: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_curs_touchline=bsd else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 cat >conftest.$ac_ext <<_ACEOF -#line 17667 "configure" +#line 17674 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header-curses.h}> @@ -17677,16 +17684,16 @@ touchline(stdscr, 1,2); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:17680: \"$ac_link\"") >&5 +if { (eval echo "$as_me:17687: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:17683: \$? = $ac_status" >&5 + echo "$as_me:17690: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:17686: \"$ac_try\"") >&5 + { (eval echo "$as_me:17693: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:17689: \$? = $ac_status" >&5 + echo "$as_me:17696: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_curs_touchline=sysv else @@ -17698,7 +17705,7 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:17701: result: $cf_cv_curs_touchline" >&5 +echo "$as_me:17708: result: $cf_cv_curs_touchline" >&5 echo "${ECHO_T}$cf_cv_curs_touchline" >&6 case "$cf_cv_curs_touchline" in #(vi bsd) #(vi @@ -17725,7 +17732,7 @@ for ac_prog in ${cf_ncuconfig_root}6-config ${cf_ncuconfig_root}5-config 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:17728: checking for $ac_word" >&5 +echo "$as_me:17735: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_path_NCURSES_CONFIG+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -17742,7 +17749,7 @@ for ac_dir in $ac_dummy; do test -z "$ac_dir" && ac_dir=. if $as_executable_p "$ac_dir/$ac_word"; then ac_cv_path_NCURSES_CONFIG="$ac_dir/$ac_word" - echo "$as_me:17745: found $ac_dir/$ac_word" >&5 + echo "$as_me:17752: found $ac_dir/$ac_word" >&5 break fi done @@ -17753,10 +17760,10 @@ fi NCURSES_CONFIG=$ac_cv_path_NCURSES_CONFIG if test -n "$NCURSES_CONFIG"; then - echo "$as_me:17756: result: $NCURSES_CONFIG" >&5 + echo "$as_me:17763: result: $NCURSES_CONFIG" >&5 echo "${ECHO_T}$NCURSES_CONFIG" >&6 else - echo "$as_me:17759: result: no" >&5 + echo "$as_me:17766: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -17814,7 +17821,7 @@ if test -n "$cf_cv_curses_dir/include $cf_cv_curses_dir/include/$cf_ncuhdr_root" cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 17817 "configure" +#line 17824 "configure" #include "confdefs.h" #include <stdio.h> int @@ -17826,16 +17833,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:17829: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:17836: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:17832: \$? = $ac_status" >&5 + echo "$as_me:17839: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:17835: \"$ac_try\"") >&5 + { (eval echo "$as_me:17842: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:17838: \$? = $ac_status" >&5 + echo "$as_me:17845: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -17852,7 +17859,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "$cf_have_incdir" = no ; then test -n "$verbose" && echo " adding $cf_add_incdir to include-path" 1>&6 -echo "${as_me-configure}:17855: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me-configure}:17862: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -17869,7 +17876,7 @@ fi } -echo "$as_me:17872: checking for $cf_ncuhdr_root header in include-path" >&5 +echo "$as_me:17879: checking for $cf_ncuhdr_root header in include-path" >&5 echo $ECHO_N "checking for $cf_ncuhdr_root header in include-path... $ECHO_C" >&6 if test "${cf_cv_ncurses_h+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -17881,7 +17888,7 @@ else do cat >conftest.$ac_ext <<_ACEOF -#line 17884 "configure" +#line 17891 "configure" #include "confdefs.h" #include <$cf_header> @@ -17905,16 +17912,16 @@ printf("old\n"); } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:17908: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:17915: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:17911: \$? = $ac_status" >&5 + echo "$as_me:17918: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:17914: \"$ac_try\"") >&5 + { (eval echo "$as_me:17921: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:17917: \$? = $ac_status" >&5 + echo "$as_me:17924: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_ncurses_h=$cf_header @@ -17929,14 +17936,14 @@ rm -f conftest.$ac_objext conftest.$ac_ext done fi -echo "$as_me:17932: result: $cf_cv_ncurses_h" >&5 +echo "$as_me:17939: result: $cf_cv_ncurses_h" >&5 echo "${ECHO_T}$cf_cv_ncurses_h" >&6 if test "$cf_cv_ncurses_h" != no ; then cf_cv_ncurses_header=$cf_cv_ncurses_h else -echo "$as_me:17939: checking for $cf_ncuhdr_root include-path" >&5 +echo "$as_me:17946: checking for $cf_ncuhdr_root include-path" >&5 echo $ECHO_N "checking for $cf_ncuhdr_root include-path... $ECHO_C" >&6 if test "${cf_cv_ncurses_h2+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -18072,7 +18079,7 @@ if test -n "$cf_incdir" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 18075 "configure" +#line 18082 "configure" #include "confdefs.h" #include <stdio.h> int @@ -18084,16 +18091,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:18087: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:18094: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:18090: \$? = $ac_status" >&5 + echo "$as_me:18097: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:18093: \"$ac_try\"") >&5 + { (eval echo "$as_me:18100: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:18096: \$? = $ac_status" >&5 + echo "$as_me:18103: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -18110,7 +18117,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "$cf_have_incdir" = no ; then test -n "$verbose" && echo " adding $cf_add_incdir to include-path" 1>&6 -echo "${as_me-configure}:18113: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me-configure}:18120: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -18131,7 +18138,7 @@ fi do cat >conftest.$ac_ext <<_ACEOF -#line 18134 "configure" +#line 18141 "configure" #include "confdefs.h" #include <$cf_header> @@ -18155,16 +18162,16 @@ printf("old\n"); } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:18158: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:18165: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:18161: \$? = $ac_status" >&5 + echo "$as_me:18168: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:18164: \"$ac_try\"") >&5 + { (eval echo "$as_me:18171: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:18167: \$? = $ac_status" >&5 + echo "$as_me:18174: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_ncurses_h2=$cf_header @@ -18185,12 +18192,12 @@ rm -f conftest.$ac_objext conftest.$ac_ext CPPFLAGS="$cf_save2_CPPFLAGS" test "$cf_cv_ncurses_h2" != no && break done - test "$cf_cv_ncurses_h2" = no && { { echo "$as_me:18188: error: not found" >&5 + test "$cf_cv_ncurses_h2" = no && { { echo "$as_me:18195: error: not found" >&5 echo "$as_me: error: not found" >&2;} { (exit 1); exit 1; }; } fi -echo "$as_me:18193: result: $cf_cv_ncurses_h2" >&5 +echo "$as_me:18200: result: $cf_cv_ncurses_h2" >&5 echo "${ECHO_T}$cf_cv_ncurses_h2" >&6 cf_1st_incdir=`echo $cf_cv_ncurses_h2 | sed -e 's%/[^/]*$%%'` @@ -18223,7 +18230,7 @@ if test -n "$cf_1st_incdir" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 18226 "configure" +#line 18233 "configure" #include "confdefs.h" #include <stdio.h> int @@ -18235,16 +18242,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:18238: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:18245: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:18241: \$? = $ac_status" >&5 + echo "$as_me:18248: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:18244: \"$ac_try\"") >&5 + { (eval echo "$as_me:18251: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:18247: \$? = $ac_status" >&5 + echo "$as_me:18254: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -18261,7 +18268,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "$cf_have_incdir" = no ; then test -n "$verbose" && echo " adding $cf_add_incdir to include-path" 1>&6 -echo "${as_me-configure}:18264: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me-configure}:18271: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -18304,7 +18311,7 @@ EOF ;; esac -echo "$as_me:18307: checking for terminfo header" >&5 +echo "$as_me:18314: checking for terminfo header" >&5 echo $ECHO_N "checking for terminfo header... $ECHO_C" >&6 if test "${cf_cv_term_header+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -18322,7 +18329,7 @@ esac for cf_test in $cf_term_header "ncurses/term.h" "ncursesw/term.h" do cat >conftest.$ac_ext <<_ACEOF -#line 18325 "configure" +#line 18332 "configure" #include "confdefs.h" #include <stdio.h> #include <${cf_cv_ncurses_header-curses.h}> @@ -18337,16 +18344,16 @@ int x = auto_left_margin } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:18340: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:18347: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:18343: \$? = $ac_status" >&5 + echo "$as_me:18350: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:18346: \"$ac_try\"") >&5 + { (eval echo "$as_me:18353: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:18349: \$? = $ac_status" >&5 + echo "$as_me:18356: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_term_header="$cf_test" @@ -18362,7 +18369,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext done fi -echo "$as_me:18365: result: $cf_cv_term_header" >&5 +echo "$as_me:18372: result: $cf_cv_term_header" >&5 echo "${ECHO_T}$cf_cv_term_header" >&6 # Set definitions to allow ifdef'ing to accommodate subdirectories @@ -18396,7 +18403,7 @@ cat >>confdefs.h <<\EOF #define NCURSES 1 EOF -echo "$as_me:18399: checking for ncurses version" >&5 +echo "$as_me:18406: checking for ncurses version" >&5 echo $ECHO_N "checking for ncurses version... $ECHO_C" >&6 if test "${cf_cv_ncurses_version+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -18422,10 +18429,10 @@ Autoconf "old" #endif EOF cf_try="$ac_cpp conftest.$ac_ext 2>&5 | grep '^Autoconf ' >conftest.out" - { (eval echo "$as_me:18425: \"$cf_try\"") >&5 + { (eval echo "$as_me:18432: \"$cf_try\"") >&5 (eval $cf_try) 2>&5 ac_status=$? - echo "$as_me:18428: \$? = $ac_status" >&5 + echo "$as_me:18435: \$? = $ac_status" >&5 (exit $ac_status); } if test -f conftest.out ; then cf_out=`cat conftest.out | sed -e 's%^Autoconf %%' -e 's%^[^"]*"%%' -e 's%".*%%'` @@ -18435,7 +18442,7 @@ EOF else cat >conftest.$ac_ext <<_ACEOF -#line 18438 "configure" +#line 18445 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header-curses.h}> @@ -18460,15 +18467,15 @@ int main() } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:18463: \"$ac_link\"") >&5 +if { (eval echo "$as_me:18470: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:18466: \$? = $ac_status" >&5 + echo "$as_me:18473: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:18468: \"$ac_try\"") >&5 + { (eval echo "$as_me:18475: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:18471: \$? = $ac_status" >&5 + echo "$as_me:18478: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_ncurses_version=`cat $cf_tempfile` @@ -18482,7 +18489,7 @@ fi rm -f $cf_tempfile fi -echo "$as_me:18485: result: $cf_cv_ncurses_version" >&5 +echo "$as_me:18492: result: $cf_cv_ncurses_version" >&5 echo "${ECHO_T}$cf_cv_ncurses_version" >&6 test "$cf_cv_ncurses_version" = no || cat >>confdefs.h <<\EOF #define NCURSES 1 @@ -18494,7 +18501,7 @@ cf_nculib_root=ncurses # to link gpm. cf_ncurses_LIBS="" cf_ncurses_SAVE="$LIBS" -echo "$as_me:18497: checking for Gpm_Open in -lgpm" >&5 +echo "$as_me:18504: checking for Gpm_Open in -lgpm" >&5 echo $ECHO_N "checking for Gpm_Open in -lgpm... $ECHO_C" >&6 if test "${ac_cv_lib_gpm_Gpm_Open+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -18502,7 +18509,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lgpm $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 18505 "configure" +#line 18512 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -18521,16 +18528,16 @@ Gpm_Open (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:18524: \"$ac_link\"") >&5 +if { (eval echo "$as_me:18531: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:18527: \$? = $ac_status" >&5 + echo "$as_me:18534: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:18530: \"$ac_try\"") >&5 + { (eval echo "$as_me:18537: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:18533: \$? = $ac_status" >&5 + echo "$as_me:18540: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_gpm_Gpm_Open=yes else @@ -18541,10 +18548,10 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:18544: result: $ac_cv_lib_gpm_Gpm_Open" >&5 +echo "$as_me:18551: result: $ac_cv_lib_gpm_Gpm_Open" >&5 echo "${ECHO_T}$ac_cv_lib_gpm_Gpm_Open" >&6 if test $ac_cv_lib_gpm_Gpm_Open = yes; then - echo "$as_me:18547: checking for initscr in -lgpm" >&5 + echo "$as_me:18554: checking for initscr in -lgpm" >&5 echo $ECHO_N "checking for initscr in -lgpm... $ECHO_C" >&6 if test "${ac_cv_lib_gpm_initscr+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -18552,7 +18559,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lgpm $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 18555 "configure" +#line 18562 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -18571,16 +18578,16 @@ initscr (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:18574: \"$ac_link\"") >&5 +if { (eval echo "$as_me:18581: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:18577: \$? = $ac_status" >&5 + echo "$as_me:18584: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:18580: \"$ac_try\"") >&5 + { (eval echo "$as_me:18587: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:18583: \$? = $ac_status" >&5 + echo "$as_me:18590: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_gpm_initscr=yes else @@ -18591,7 +18598,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:18594: result: $ac_cv_lib_gpm_initscr" >&5 +echo "$as_me:18601: result: $ac_cv_lib_gpm_initscr" >&5 echo "${ECHO_T}$ac_cv_lib_gpm_initscr" >&6 if test $ac_cv_lib_gpm_initscr = yes; then LIBS="$cf_ncurses_SAVE" @@ -18606,7 +18613,7 @@ freebsd*) # This is only necessary if you are linking against an obsolete # version of ncurses (but it should do no harm, since it's static). if test "$cf_nculib_root" = ncurses ; then - echo "$as_me:18609: checking for tgoto in -lmytinfo" >&5 + echo "$as_me:18616: checking for tgoto in -lmytinfo" >&5 echo $ECHO_N "checking for tgoto in -lmytinfo... $ECHO_C" >&6 if test "${ac_cv_lib_mytinfo_tgoto+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -18614,7 +18621,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lmytinfo $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 18617 "configure" +#line 18624 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -18633,16 +18640,16 @@ tgoto (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:18636: \"$ac_link\"") >&5 +if { (eval echo "$as_me:18643: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:18639: \$? = $ac_status" >&5 + echo "$as_me:18646: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:18642: \"$ac_try\"") >&5 + { (eval echo "$as_me:18649: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:18645: \$? = $ac_status" >&5 + echo "$as_me:18652: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_mytinfo_tgoto=yes else @@ -18653,7 +18660,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:18656: result: $ac_cv_lib_mytinfo_tgoto" >&5 +echo "$as_me:18663: result: $ac_cv_lib_mytinfo_tgoto" >&5 echo "${ECHO_T}$ac_cv_lib_mytinfo_tgoto" >&6 if test $ac_cv_lib_mytinfo_tgoto = yes; then cf_ncurses_LIBS="-lmytinfo $cf_ncurses_LIBS" @@ -18687,7 +18694,7 @@ if test -n "$cf_cv_curses_dir/lib" ; then if test "$cf_have_libdir" = no ; then test -n "$verbose" && echo " adding $cf_add_libdir to library-path" 1>&6 -echo "${as_me-configure}:18690: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me-configure}:18697: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -18700,13 +18707,13 @@ else eval 'cf_cv_have_lib_'$cf_nculib_root'=no' cf_libdir="" - echo "$as_me:18703: checking for initscr" >&5 + echo "$as_me:18710: checking for initscr" >&5 echo $ECHO_N "checking for initscr... $ECHO_C" >&6 if test "${ac_cv_func_initscr+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 18709 "configure" +#line 18716 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char initscr (); below. */ @@ -18737,16 +18744,16 @@ f = initscr; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:18740: \"$ac_link\"") >&5 +if { (eval echo "$as_me:18747: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:18743: \$? = $ac_status" >&5 + echo "$as_me:18750: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:18746: \"$ac_try\"") >&5 + { (eval echo "$as_me:18753: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:18749: \$? = $ac_status" >&5 + echo "$as_me:18756: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_initscr=yes else @@ -18756,18 +18763,18 @@ ac_cv_func_initscr=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:18759: result: $ac_cv_func_initscr" >&5 +echo "$as_me:18766: result: $ac_cv_func_initscr" >&5 echo "${ECHO_T}$ac_cv_func_initscr" >&6 if test $ac_cv_func_initscr = yes; then eval 'cf_cv_have_lib_'$cf_nculib_root'=yes' else cf_save_LIBS="$LIBS" - echo "$as_me:18766: checking for initscr in -l$cf_nculib_root" >&5 + echo "$as_me:18773: checking for initscr in -l$cf_nculib_root" >&5 echo $ECHO_N "checking for initscr in -l$cf_nculib_root... $ECHO_C" >&6 LIBS="-l$cf_nculib_root $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 18770 "configure" +#line 18777 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header-curses.h}> int @@ -18779,25 +18786,25 @@ initscr() } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:18782: \"$ac_link\"") >&5 +if { (eval echo "$as_me:18789: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:18785: \$? = $ac_status" >&5 + echo "$as_me:18792: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:18788: \"$ac_try\"") >&5 + { (eval echo "$as_me:18795: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:18791: \$? = $ac_status" >&5 + echo "$as_me:18798: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:18793: result: yes" >&5 + echo "$as_me:18800: result: yes" >&5 echo "${ECHO_T}yes" >&6 eval 'cf_cv_have_lib_'$cf_nculib_root'=yes' else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 -echo "$as_me:18800: result: no" >&5 +echo "$as_me:18807: result: no" >&5 echo "${ECHO_T}no" >&6 cf_search= @@ -18887,11 +18894,11 @@ cf_search="$cf_library_path_list $cf_search" for cf_libdir in $cf_search do - echo "$as_me:18890: checking for -l$cf_nculib_root in $cf_libdir" >&5 + echo "$as_me:18897: checking for -l$cf_nculib_root in $cf_libdir" >&5 echo $ECHO_N "checking for -l$cf_nculib_root in $cf_libdir... $ECHO_C" >&6 LIBS="-L$cf_libdir -l$cf_nculib_root $cf_save_LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 18894 "configure" +#line 18901 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header-curses.h}> int @@ -18903,25 +18910,25 @@ initscr() } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:18906: \"$ac_link\"") >&5 +if { (eval echo "$as_me:18913: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:18909: \$? = $ac_status" >&5 + echo "$as_me:18916: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:18912: \"$ac_try\"") >&5 + { (eval echo "$as_me:18919: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:18915: \$? = $ac_status" >&5 + echo "$as_me:18922: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:18917: result: yes" >&5 + echo "$as_me:18924: result: yes" >&5 echo "${ECHO_T}yes" >&6 eval 'cf_cv_have_lib_'$cf_nculib_root'=yes' break else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 -echo "$as_me:18924: result: no" >&5 +echo "$as_me:18931: result: no" >&5 echo "${ECHO_T}no" >&6 LIBS="$cf_save_LIBS" fi @@ -18936,7 +18943,7 @@ fi eval 'cf_found_library=$cf_cv_have_lib_'$cf_nculib_root if test $cf_found_library = no ; then - { { echo "$as_me:18939: error: Cannot link $cf_nculib_root library" >&5 + { { echo "$as_me:18946: error: Cannot link $cf_nculib_root library" >&5 echo "$as_me: error: Cannot link $cf_nculib_root library" >&2;} { (exit 1); exit 1; }; } fi @@ -18944,7 +18951,7 @@ fi fi if test -n "$cf_ncurses_LIBS" ; then - echo "$as_me:18947: checking if we can link $cf_nculib_root without $cf_ncurses_LIBS" >&5 + echo "$as_me:18954: checking if we can link $cf_nculib_root without $cf_ncurses_LIBS" >&5 echo $ECHO_N "checking if we can link $cf_nculib_root without $cf_ncurses_LIBS... $ECHO_C" >&6 cf_ncurses_SAVE="$LIBS" for p in $cf_ncurses_LIBS ; do @@ -18954,7 +18961,7 @@ echo $ECHO_N "checking if we can link $cf_nculib_root without $cf_ncurses_LIBS.. fi done cat >conftest.$ac_ext <<_ACEOF -#line 18957 "configure" +#line 18964 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header-curses.h}> int @@ -18966,23 +18973,23 @@ initscr(); mousemask(0,0); tgoto((char *)0, 0, 0); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:18969: \"$ac_link\"") >&5 +if { (eval echo "$as_me:18976: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:18972: \$? = $ac_status" >&5 + echo "$as_me:18979: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:18975: \"$ac_try\"") >&5 + { (eval echo "$as_me:18982: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:18978: \$? = $ac_status" >&5 + echo "$as_me:18985: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:18980: result: yes" >&5 + echo "$as_me:18987: result: yes" >&5 echo "${ECHO_T}yes" >&6 else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 -echo "$as_me:18985: result: no" >&5 +echo "$as_me:18992: result: no" >&5 echo "${ECHO_T}no" >&6 LIBS="$cf_ncurses_SAVE" fi @@ -19000,7 +19007,7 @@ fi ;; ncursesw) -echo "$as_me:19003: checking for multibyte character support" >&5 +echo "$as_me:19010: checking for multibyte character support" >&5 echo $ECHO_N "checking for multibyte character support... $ECHO_C" >&6 if test "${cf_cv_utf8_lib+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -19008,7 +19015,7 @@ else cf_save_LIBS="$LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 19011 "configure" +#line 19018 "configure" #include "confdefs.h" #include <stdlib.h> @@ -19021,16 +19028,16 @@ putwc(0,0); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:19024: \"$ac_link\"") >&5 +if { (eval echo "$as_me:19031: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:19027: \$? = $ac_status" >&5 + echo "$as_me:19034: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:19030: \"$ac_try\"") >&5 + { (eval echo "$as_me:19037: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:19033: \$? = $ac_status" >&5 + echo "$as_me:19040: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_utf8_lib=yes else @@ -19042,10 +19049,10 @@ cat conftest.$ac_ext >&5 cf_cv_header_path_utf8= cf_cv_library_path_utf8= -echo "${as_me-configure}:19045: testing Starting FIND_LINKAGE(utf8,) ..." 1>&5 +echo "${as_me-configure}:19052: testing Starting FIND_LINKAGE(utf8,) ..." 1>&5 cat >conftest.$ac_ext <<_ACEOF -#line 19048 "configure" +#line 19055 "configure" #include "confdefs.h" #include <libutf8.h> @@ -19058,16 +19065,16 @@ putwc(0,0); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:19061: \"$ac_link\"") >&5 +if { (eval echo "$as_me:19068: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:19064: \$? = $ac_status" >&5 + echo "$as_me:19071: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:19067: \"$ac_try\"") >&5 + { (eval echo "$as_me:19074: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:19070: \$? = $ac_status" >&5 + echo "$as_me:19077: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_find_linkage_utf8=yes @@ -19080,7 +19087,7 @@ cf_save_LIBS="$LIBS" LIBS="-lutf8 $cf_save_LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 19083 "configure" +#line 19090 "configure" #include "confdefs.h" #include <libutf8.h> @@ -19093,16 +19100,16 @@ putwc(0,0); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:19096: \"$ac_link\"") >&5 +if { (eval echo "$as_me:19103: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:19099: \$? = $ac_status" >&5 + echo "$as_me:19106: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:19102: \"$ac_try\"") >&5 + { (eval echo "$as_me:19109: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:19105: \$? = $ac_status" >&5 + echo "$as_me:19112: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_find_linkage_utf8=yes @@ -19117,9 +19124,9 @@ cat conftest.$ac_ext >&5 test -n "$verbose" && echo " find linkage for utf8 library" 1>&6 -echo "${as_me-configure}:19120: testing find linkage for utf8 library ..." 1>&5 +echo "${as_me-configure}:19127: testing find linkage for utf8 library ..." 1>&5 -echo "${as_me-configure}:19122: testing Searching for headers in FIND_LINKAGE(utf8,) ..." 1>&5 +echo "${as_me-configure}:19129: testing Searching for headers in FIND_LINKAGE(utf8,) ..." 1>&5 cf_save_CPPFLAGS="$CPPFLAGS" cf_test_CPPFLAGS="$CPPFLAGS" @@ -19228,11 +19235,11 @@ cf_search="$cf_header_path_list $cf_search" if test -d $cf_cv_header_path_utf8 ; then test -n "$verbose" && echo " ... testing $cf_cv_header_path_utf8" 1>&6 -echo "${as_me-configure}:19231: testing ... testing $cf_cv_header_path_utf8 ..." 1>&5 +echo "${as_me-configure}:19238: testing ... testing $cf_cv_header_path_utf8 ..." 1>&5 CPPFLAGS="$cf_save_CPPFLAGS -I$cf_cv_header_path_utf8" cat >conftest.$ac_ext <<_ACEOF -#line 19235 "configure" +#line 19242 "configure" #include "confdefs.h" #include <libutf8.h> @@ -19245,21 +19252,21 @@ putwc(0,0); } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:19248: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:19255: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:19251: \$? = $ac_status" >&5 + echo "$as_me:19258: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:19254: \"$ac_try\"") >&5 + { (eval echo "$as_me:19261: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:19257: \$? = $ac_status" >&5 + echo "$as_me:19264: \$? = $ac_status" >&5 (exit $ac_status); }; }; then test -n "$verbose" && echo " ... found utf8 headers in $cf_cv_header_path_utf8" 1>&6 -echo "${as_me-configure}:19262: testing ... found utf8 headers in $cf_cv_header_path_utf8 ..." 1>&5 +echo "${as_me-configure}:19269: testing ... found utf8 headers in $cf_cv_header_path_utf8 ..." 1>&5 cf_cv_find_linkage_utf8=maybe cf_test_CPPFLAGS="$CPPFLAGS" @@ -19277,7 +19284,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "$cf_cv_find_linkage_utf8" = maybe ; then -echo "${as_me-configure}:19280: testing Searching for utf8 library in FIND_LINKAGE(utf8,) ..." 1>&5 +echo "${as_me-configure}:19287: testing Searching for utf8 library in FIND_LINKAGE(utf8,) ..." 1>&5 cf_save_LIBS="$LIBS" cf_save_LDFLAGS="$LDFLAGS" @@ -19374,13 +19381,13 @@ cf_search="$cf_library_path_list $cf_search" if test -d $cf_cv_library_path_utf8 ; then test -n "$verbose" && echo " ... testing $cf_cv_library_path_utf8" 1>&6 -echo "${as_me-configure}:19377: testing ... testing $cf_cv_library_path_utf8 ..." 1>&5 +echo "${as_me-configure}:19384: testing ... testing $cf_cv_library_path_utf8 ..." 1>&5 CPPFLAGS="$cf_test_CPPFLAGS" LIBS="-lutf8 $cf_save_LIBS" LDFLAGS="$cf_save_LDFLAGS -L$cf_cv_library_path_utf8" cat >conftest.$ac_ext <<_ACEOF -#line 19383 "configure" +#line 19390 "configure" #include "confdefs.h" #include <libutf8.h> @@ -19393,21 +19400,21 @@ putwc(0,0); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:19396: \"$ac_link\"") >&5 +if { (eval echo "$as_me:19403: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:19399: \$? = $ac_status" >&5 + echo "$as_me:19406: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:19402: \"$ac_try\"") >&5 + { (eval echo "$as_me:19409: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:19405: \$? = $ac_status" >&5 + echo "$as_me:19412: \$? = $ac_status" >&5 (exit $ac_status); }; }; then test -n "$verbose" && echo " ... found utf8 library in $cf_cv_library_path_utf8" 1>&6 -echo "${as_me-configure}:19410: testing ... found utf8 library in $cf_cv_library_path_utf8 ..." 1>&5 +echo "${as_me-configure}:19417: testing ... found utf8 library in $cf_cv_library_path_utf8 ..." 1>&5 cf_cv_find_linkage_utf8=yes cf_cv_library_file_utf8="-lutf8" @@ -19448,7 +19455,7 @@ fi fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:19451: result: $cf_cv_utf8_lib" >&5 +echo "$as_me:19458: result: $cf_cv_utf8_lib" >&5 echo "${ECHO_T}$cf_cv_utf8_lib" >&6 # HAVE_LIBUTF8_H is used by ncurses if curses.h is shared between @@ -19482,7 +19489,7 @@ if test -n "$cf_cv_header_path_utf8" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 19485 "configure" +#line 19492 "configure" #include "confdefs.h" #include <stdio.h> int @@ -19494,16 +19501,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:19497: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:19504: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:19500: \$? = $ac_status" >&5 + echo "$as_me:19507: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:19503: \"$ac_try\"") >&5 + { (eval echo "$as_me:19510: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:19506: \$? = $ac_status" >&5 + echo "$as_me:19513: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -19520,7 +19527,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "$cf_have_incdir" = no ; then test -n "$verbose" && echo " adding $cf_add_incdir to include-path" 1>&6 -echo "${as_me-configure}:19523: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me-configure}:19530: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -19554,7 +19561,7 @@ if test -n "$cf_cv_library_path_utf8" ; then if test "$cf_have_libdir" = no ; then test -n "$verbose" && echo " adding $cf_add_libdir to library-path" 1>&6 -echo "${as_me-configure}:19557: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me-configure}:19564: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -19572,7 +19579,7 @@ for ac_prog in ${cf_ncuconfig_root}6-config ${cf_ncuconfig_root}5-config 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:19575: checking for $ac_word" >&5 +echo "$as_me:19582: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_path_NCURSES_CONFIG+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -19589,7 +19596,7 @@ for ac_dir in $ac_dummy; do test -z "$ac_dir" && ac_dir=. if $as_executable_p "$ac_dir/$ac_word"; then ac_cv_path_NCURSES_CONFIG="$ac_dir/$ac_word" - echo "$as_me:19592: found $ac_dir/$ac_word" >&5 + echo "$as_me:19599: found $ac_dir/$ac_word" >&5 break fi done @@ -19600,10 +19607,10 @@ fi NCURSES_CONFIG=$ac_cv_path_NCURSES_CONFIG if test -n "$NCURSES_CONFIG"; then - echo "$as_me:19603: result: $NCURSES_CONFIG" >&5 + echo "$as_me:19610: result: $NCURSES_CONFIG" >&5 echo "${ECHO_T}$NCURSES_CONFIG" >&6 else - echo "$as_me:19606: result: no" >&5 + echo "$as_me:19613: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -19661,7 +19668,7 @@ if test -n "$cf_cv_curses_dir/include $cf_cv_curses_dir/include/$cf_ncuhdr_root" cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 19664 "configure" +#line 19671 "configure" #include "confdefs.h" #include <stdio.h> int @@ -19673,16 +19680,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:19676: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:19683: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:19679: \$? = $ac_status" >&5 + echo "$as_me:19686: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:19682: \"$ac_try\"") >&5 + { (eval echo "$as_me:19689: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:19685: \$? = $ac_status" >&5 + echo "$as_me:19692: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -19699,7 +19706,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "$cf_have_incdir" = no ; then test -n "$verbose" && echo " adding $cf_add_incdir to include-path" 1>&6 -echo "${as_me-configure}:19702: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me-configure}:19709: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -19716,7 +19723,7 @@ fi } -echo "$as_me:19719: checking for $cf_ncuhdr_root header in include-path" >&5 +echo "$as_me:19726: checking for $cf_ncuhdr_root header in include-path" >&5 echo $ECHO_N "checking for $cf_ncuhdr_root header in include-path... $ECHO_C" >&6 if test "${cf_cv_ncurses_h+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -19728,7 +19735,7 @@ else do cat >conftest.$ac_ext <<_ACEOF -#line 19731 "configure" +#line 19738 "configure" #include "confdefs.h" #define _XOPEN_SOURCE_EXTENDED @@ -19760,16 +19767,16 @@ printf("old\n"); } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:19763: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:19770: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:19766: \$? = $ac_status" >&5 + echo "$as_me:19773: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:19769: \"$ac_try\"") >&5 + { (eval echo "$as_me:19776: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:19772: \$? = $ac_status" >&5 + echo "$as_me:19779: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_ncurses_h=$cf_header @@ -19784,14 +19791,14 @@ rm -f conftest.$ac_objext conftest.$ac_ext done fi -echo "$as_me:19787: result: $cf_cv_ncurses_h" >&5 +echo "$as_me:19794: result: $cf_cv_ncurses_h" >&5 echo "${ECHO_T}$cf_cv_ncurses_h" >&6 if test "$cf_cv_ncurses_h" != no ; then cf_cv_ncurses_header=$cf_cv_ncurses_h else -echo "$as_me:19794: checking for $cf_ncuhdr_root include-path" >&5 +echo "$as_me:19801: checking for $cf_ncuhdr_root include-path" >&5 echo $ECHO_N "checking for $cf_ncuhdr_root include-path... $ECHO_C" >&6 if test "${cf_cv_ncurses_h2+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -19927,7 +19934,7 @@ if test -n "$cf_incdir" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 19930 "configure" +#line 19937 "configure" #include "confdefs.h" #include <stdio.h> int @@ -19939,16 +19946,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:19942: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:19949: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:19945: \$? = $ac_status" >&5 + echo "$as_me:19952: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:19948: \"$ac_try\"") >&5 + { (eval echo "$as_me:19955: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:19951: \$? = $ac_status" >&5 + echo "$as_me:19958: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -19965,7 +19972,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "$cf_have_incdir" = no ; then test -n "$verbose" && echo " adding $cf_add_incdir to include-path" 1>&6 -echo "${as_me-configure}:19968: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me-configure}:19975: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -19986,7 +19993,7 @@ fi do cat >conftest.$ac_ext <<_ACEOF -#line 19989 "configure" +#line 19996 "configure" #include "confdefs.h" #include <$cf_header> @@ -20010,16 +20017,16 @@ printf("old\n"); } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:20013: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:20020: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:20016: \$? = $ac_status" >&5 + echo "$as_me:20023: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:20019: \"$ac_try\"") >&5 + { (eval echo "$as_me:20026: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:20022: \$? = $ac_status" >&5 + echo "$as_me:20029: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_ncurses_h2=$cf_header @@ -20040,12 +20047,12 @@ rm -f conftest.$ac_objext conftest.$ac_ext CPPFLAGS="$cf_save2_CPPFLAGS" test "$cf_cv_ncurses_h2" != no && break done - test "$cf_cv_ncurses_h2" = no && { { echo "$as_me:20043: error: not found" >&5 + test "$cf_cv_ncurses_h2" = no && { { echo "$as_me:20050: error: not found" >&5 echo "$as_me: error: not found" >&2;} { (exit 1); exit 1; }; } fi -echo "$as_me:20048: result: $cf_cv_ncurses_h2" >&5 +echo "$as_me:20055: result: $cf_cv_ncurses_h2" >&5 echo "${ECHO_T}$cf_cv_ncurses_h2" >&6 cf_1st_incdir=`echo $cf_cv_ncurses_h2 | sed -e 's%/[^/]*$%%'` @@ -20078,7 +20085,7 @@ if test -n "$cf_1st_incdir" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 20081 "configure" +#line 20088 "configure" #include "confdefs.h" #include <stdio.h> int @@ -20090,16 +20097,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:20093: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:20100: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:20096: \$? = $ac_status" >&5 + echo "$as_me:20103: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:20099: \"$ac_try\"") >&5 + { (eval echo "$as_me:20106: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:20102: \$? = $ac_status" >&5 + echo "$as_me:20109: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -20116,7 +20123,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "$cf_have_incdir" = no ; then test -n "$verbose" && echo " adding $cf_add_incdir to include-path" 1>&6 -echo "${as_me-configure}:20119: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me-configure}:20126: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -20159,7 +20166,7 @@ EOF ;; esac -echo "$as_me:20162: checking for terminfo header" >&5 +echo "$as_me:20169: checking for terminfo header" >&5 echo $ECHO_N "checking for terminfo header... $ECHO_C" >&6 if test "${cf_cv_term_header+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -20177,7 +20184,7 @@ esac for cf_test in $cf_term_header "ncurses/term.h" "ncursesw/term.h" do cat >conftest.$ac_ext <<_ACEOF -#line 20180 "configure" +#line 20187 "configure" #include "confdefs.h" #include <stdio.h> #include <${cf_cv_ncurses_header-curses.h}> @@ -20192,16 +20199,16 @@ int x = auto_left_margin } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:20195: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:20202: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:20198: \$? = $ac_status" >&5 + echo "$as_me:20205: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:20201: \"$ac_try\"") >&5 + { (eval echo "$as_me:20208: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:20204: \$? = $ac_status" >&5 + echo "$as_me:20211: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_term_header="$cf_test" @@ -20217,7 +20224,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext done fi -echo "$as_me:20220: result: $cf_cv_term_header" >&5 +echo "$as_me:20227: result: $cf_cv_term_header" >&5 echo "${ECHO_T}$cf_cv_term_header" >&6 # Set definitions to allow ifdef'ing to accommodate subdirectories @@ -20251,7 +20258,7 @@ cat >>confdefs.h <<\EOF #define NCURSES 1 EOF -echo "$as_me:20254: checking for ncurses version" >&5 +echo "$as_me:20261: checking for ncurses version" >&5 echo $ECHO_N "checking for ncurses version... $ECHO_C" >&6 if test "${cf_cv_ncurses_version+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -20277,10 +20284,10 @@ Autoconf "old" #endif EOF cf_try="$ac_cpp conftest.$ac_ext 2>&5 | grep '^Autoconf ' >conftest.out" - { (eval echo "$as_me:20280: \"$cf_try\"") >&5 + { (eval echo "$as_me:20287: \"$cf_try\"") >&5 (eval $cf_try) 2>&5 ac_status=$? - echo "$as_me:20283: \$? = $ac_status" >&5 + echo "$as_me:20290: \$? = $ac_status" >&5 (exit $ac_status); } if test -f conftest.out ; then cf_out=`cat conftest.out | sed -e 's%^Autoconf %%' -e 's%^[^"]*"%%' -e 's%".*%%'` @@ -20290,7 +20297,7 @@ EOF else cat >conftest.$ac_ext <<_ACEOF -#line 20293 "configure" +#line 20300 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header-curses.h}> @@ -20315,15 +20322,15 @@ int main() } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:20318: \"$ac_link\"") >&5 +if { (eval echo "$as_me:20325: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:20321: \$? = $ac_status" >&5 + echo "$as_me:20328: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:20323: \"$ac_try\"") >&5 + { (eval echo "$as_me:20330: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:20326: \$? = $ac_status" >&5 + echo "$as_me:20333: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_ncurses_version=`cat $cf_tempfile` @@ -20337,7 +20344,7 @@ fi rm -f $cf_tempfile fi -echo "$as_me:20340: result: $cf_cv_ncurses_version" >&5 +echo "$as_me:20347: result: $cf_cv_ncurses_version" >&5 echo "${ECHO_T}$cf_cv_ncurses_version" >&6 test "$cf_cv_ncurses_version" = no || cat >>confdefs.h <<\EOF #define NCURSES 1 @@ -20349,7 +20356,7 @@ cf_nculib_root=ncursesw # to link gpm. cf_ncurses_LIBS="" cf_ncurses_SAVE="$LIBS" -echo "$as_me:20352: checking for Gpm_Open in -lgpm" >&5 +echo "$as_me:20359: checking for Gpm_Open in -lgpm" >&5 echo $ECHO_N "checking for Gpm_Open in -lgpm... $ECHO_C" >&6 if test "${ac_cv_lib_gpm_Gpm_Open+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -20357,7 +20364,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lgpm $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 20360 "configure" +#line 20367 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -20376,16 +20383,16 @@ Gpm_Open (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:20379: \"$ac_link\"") >&5 +if { (eval echo "$as_me:20386: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:20382: \$? = $ac_status" >&5 + echo "$as_me:20389: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:20385: \"$ac_try\"") >&5 + { (eval echo "$as_me:20392: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:20388: \$? = $ac_status" >&5 + echo "$as_me:20395: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_gpm_Gpm_Open=yes else @@ -20396,10 +20403,10 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:20399: result: $ac_cv_lib_gpm_Gpm_Open" >&5 +echo "$as_me:20406: result: $ac_cv_lib_gpm_Gpm_Open" >&5 echo "${ECHO_T}$ac_cv_lib_gpm_Gpm_Open" >&6 if test $ac_cv_lib_gpm_Gpm_Open = yes; then - echo "$as_me:20402: checking for initscr in -lgpm" >&5 + echo "$as_me:20409: checking for initscr in -lgpm" >&5 echo $ECHO_N "checking for initscr in -lgpm... $ECHO_C" >&6 if test "${ac_cv_lib_gpm_initscr+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -20407,7 +20414,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lgpm $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 20410 "configure" +#line 20417 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -20426,16 +20433,16 @@ initscr (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:20429: \"$ac_link\"") >&5 +if { (eval echo "$as_me:20436: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:20432: \$? = $ac_status" >&5 + echo "$as_me:20439: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:20435: \"$ac_try\"") >&5 + { (eval echo "$as_me:20442: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:20438: \$? = $ac_status" >&5 + echo "$as_me:20445: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_gpm_initscr=yes else @@ -20446,7 +20453,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:20449: result: $ac_cv_lib_gpm_initscr" >&5 +echo "$as_me:20456: result: $ac_cv_lib_gpm_initscr" >&5 echo "${ECHO_T}$ac_cv_lib_gpm_initscr" >&6 if test $ac_cv_lib_gpm_initscr = yes; then LIBS="$cf_ncurses_SAVE" @@ -20461,7 +20468,7 @@ freebsd*) # This is only necessary if you are linking against an obsolete # version of ncurses (but it should do no harm, since it's static). if test "$cf_nculib_root" = ncurses ; then - echo "$as_me:20464: checking for tgoto in -lmytinfo" >&5 + echo "$as_me:20471: checking for tgoto in -lmytinfo" >&5 echo $ECHO_N "checking for tgoto in -lmytinfo... $ECHO_C" >&6 if test "${ac_cv_lib_mytinfo_tgoto+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -20469,7 +20476,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lmytinfo $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 20472 "configure" +#line 20479 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -20488,16 +20495,16 @@ tgoto (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:20491: \"$ac_link\"") >&5 +if { (eval echo "$as_me:20498: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:20494: \$? = $ac_status" >&5 + echo "$as_me:20501: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:20497: \"$ac_try\"") >&5 + { (eval echo "$as_me:20504: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:20500: \$? = $ac_status" >&5 + echo "$as_me:20507: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_mytinfo_tgoto=yes else @@ -20508,7 +20515,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:20511: result: $ac_cv_lib_mytinfo_tgoto" >&5 +echo "$as_me:20518: result: $ac_cv_lib_mytinfo_tgoto" >&5 echo "${ECHO_T}$ac_cv_lib_mytinfo_tgoto" >&6 if test $ac_cv_lib_mytinfo_tgoto = yes; then cf_ncurses_LIBS="-lmytinfo $cf_ncurses_LIBS" @@ -20542,7 +20549,7 @@ if test -n "$cf_cv_curses_dir/lib" ; then if test "$cf_have_libdir" = no ; then test -n "$verbose" && echo " adding $cf_add_libdir to library-path" 1>&6 -echo "${as_me-configure}:20545: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me-configure}:20552: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -20555,13 +20562,13 @@ else eval 'cf_cv_have_lib_'$cf_nculib_root'=no' cf_libdir="" - echo "$as_me:20558: checking for initscr" >&5 + echo "$as_me:20565: checking for initscr" >&5 echo $ECHO_N "checking for initscr... $ECHO_C" >&6 if test "${ac_cv_func_initscr+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 20564 "configure" +#line 20571 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char initscr (); below. */ @@ -20592,16 +20599,16 @@ f = initscr; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:20595: \"$ac_link\"") >&5 +if { (eval echo "$as_me:20602: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:20598: \$? = $ac_status" >&5 + echo "$as_me:20605: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:20601: \"$ac_try\"") >&5 + { (eval echo "$as_me:20608: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:20604: \$? = $ac_status" >&5 + echo "$as_me:20611: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_initscr=yes else @@ -20611,18 +20618,18 @@ ac_cv_func_initscr=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:20614: result: $ac_cv_func_initscr" >&5 +echo "$as_me:20621: result: $ac_cv_func_initscr" >&5 echo "${ECHO_T}$ac_cv_func_initscr" >&6 if test $ac_cv_func_initscr = yes; then eval 'cf_cv_have_lib_'$cf_nculib_root'=yes' else cf_save_LIBS="$LIBS" - echo "$as_me:20621: checking for initscr in -l$cf_nculib_root" >&5 + echo "$as_me:20628: checking for initscr in -l$cf_nculib_root" >&5 echo $ECHO_N "checking for initscr in -l$cf_nculib_root... $ECHO_C" >&6 LIBS="-l$cf_nculib_root $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 20625 "configure" +#line 20632 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header-curses.h}> int @@ -20634,25 +20641,25 @@ initscr() } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:20637: \"$ac_link\"") >&5 +if { (eval echo "$as_me:20644: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:20640: \$? = $ac_status" >&5 + echo "$as_me:20647: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:20643: \"$ac_try\"") >&5 + { (eval echo "$as_me:20650: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:20646: \$? = $ac_status" >&5 + echo "$as_me:20653: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:20648: result: yes" >&5 + echo "$as_me:20655: result: yes" >&5 echo "${ECHO_T}yes" >&6 eval 'cf_cv_have_lib_'$cf_nculib_root'=yes' else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 -echo "$as_me:20655: result: no" >&5 +echo "$as_me:20662: result: no" >&5 echo "${ECHO_T}no" >&6 cf_search= @@ -20742,11 +20749,11 @@ cf_search="$cf_library_path_list $cf_search" for cf_libdir in $cf_search do - echo "$as_me:20745: checking for -l$cf_nculib_root in $cf_libdir" >&5 + echo "$as_me:20752: checking for -l$cf_nculib_root in $cf_libdir" >&5 echo $ECHO_N "checking for -l$cf_nculib_root in $cf_libdir... $ECHO_C" >&6 LIBS="-L$cf_libdir -l$cf_nculib_root $cf_save_LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 20749 "configure" +#line 20756 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header-curses.h}> int @@ -20758,25 +20765,25 @@ initscr() } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:20761: \"$ac_link\"") >&5 +if { (eval echo "$as_me:20768: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:20764: \$? = $ac_status" >&5 + echo "$as_me:20771: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:20767: \"$ac_try\"") >&5 + { (eval echo "$as_me:20774: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:20770: \$? = $ac_status" >&5 + echo "$as_me:20777: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:20772: result: yes" >&5 + echo "$as_me:20779: result: yes" >&5 echo "${ECHO_T}yes" >&6 eval 'cf_cv_have_lib_'$cf_nculib_root'=yes' break else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 -echo "$as_me:20779: result: no" >&5 +echo "$as_me:20786: result: no" >&5 echo "${ECHO_T}no" >&6 LIBS="$cf_save_LIBS" fi @@ -20791,7 +20798,7 @@ fi eval 'cf_found_library=$cf_cv_have_lib_'$cf_nculib_root if test $cf_found_library = no ; then - { { echo "$as_me:20794: error: Cannot link $cf_nculib_root library" >&5 + { { echo "$as_me:20801: error: Cannot link $cf_nculib_root library" >&5 echo "$as_me: error: Cannot link $cf_nculib_root library" >&2;} { (exit 1); exit 1; }; } fi @@ -20799,7 +20806,7 @@ fi fi if test -n "$cf_ncurses_LIBS" ; then - echo "$as_me:20802: checking if we can link $cf_nculib_root without $cf_ncurses_LIBS" >&5 + echo "$as_me:20809: checking if we can link $cf_nculib_root without $cf_ncurses_LIBS" >&5 echo $ECHO_N "checking if we can link $cf_nculib_root without $cf_ncurses_LIBS... $ECHO_C" >&6 cf_ncurses_SAVE="$LIBS" for p in $cf_ncurses_LIBS ; do @@ -20809,7 +20816,7 @@ echo $ECHO_N "checking if we can link $cf_nculib_root without $cf_ncurses_LIBS.. fi done cat >conftest.$ac_ext <<_ACEOF -#line 20812 "configure" +#line 20819 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header-curses.h}> int @@ -20821,23 +20828,23 @@ initscr(); mousemask(0,0); tgoto((char *)0, 0, 0); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:20824: \"$ac_link\"") >&5 +if { (eval echo "$as_me:20831: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:20827: \$? = $ac_status" >&5 + echo "$as_me:20834: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:20830: \"$ac_try\"") >&5 + { (eval echo "$as_me:20837: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:20833: \$? = $ac_status" >&5 + echo "$as_me:20840: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:20835: result: yes" >&5 + echo "$as_me:20842: result: yes" >&5 echo "${ECHO_T}yes" >&6 else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 -echo "$as_me:20840: result: no" >&5 +echo "$as_me:20847: result: no" >&5 echo "${ECHO_T}no" >&6 LIBS="$cf_ncurses_SAVE" fi @@ -20860,7 +20867,7 @@ pdcurses) ;; slang) -echo "$as_me:20863: checking for slang header file" >&5 +echo "$as_me:20870: checking for slang header file" >&5 echo $ECHO_N "checking for slang header file... $ECHO_C" >&6 if test "${cf_cv_slang_header+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -20868,7 +20875,7 @@ else cf_cv_slang_header=no cat >conftest.$ac_ext <<_ACEOF -#line 20871 "configure" +#line 20878 "configure" #include "confdefs.h" #include <slang.h> int @@ -20880,16 +20887,16 @@ printf("%s\n", SLANG_VERSION) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:20883: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:20890: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:20886: \$? = $ac_status" >&5 + echo "$as_me:20893: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:20889: \"$ac_try\"") >&5 + { (eval echo "$as_me:20896: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:20892: \$? = $ac_status" >&5 + echo "$as_me:20899: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_slang_header=predefined else @@ -21012,7 +21019,7 @@ cf_search="$cf_header_path_list $cf_search" fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:21015: result: $cf_cv_slang_header" >&5 +echo "$as_me:21022: result: $cf_cv_slang_header" >&5 echo "${ECHO_T}$cf_cv_slang_header" >&6 if test "x$cf_cv_slang_header" != xno @@ -21052,7 +21059,7 @@ if test -n "$cf_incdir" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 21055 "configure" +#line 21062 "configure" #include "confdefs.h" #include <stdio.h> int @@ -21064,16 +21071,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:21067: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:21074: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:21070: \$? = $ac_status" >&5 + echo "$as_me:21077: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:21073: \"$ac_try\"") >&5 + { (eval echo "$as_me:21080: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:21076: \$? = $ac_status" >&5 + echo "$as_me:21083: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -21090,7 +21097,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "$cf_have_incdir" = no ; then test -n "$verbose" && echo " adding $cf_add_incdir to include-path" 1>&6 -echo "${as_me-configure}:21093: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me-configure}:21100: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -21120,7 +21127,7 @@ else cf_cv_termlib=none cat >conftest.$ac_ext <<_ACEOF -#line 21123 "configure" +#line 21130 "configure" #include "confdefs.h" int @@ -21132,19 +21139,19 @@ char *x=(char*)tgoto("",0,0) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:21135: \"$ac_link\"") >&5 +if { (eval echo "$as_me:21142: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:21138: \$? = $ac_status" >&5 + echo "$as_me:21145: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:21141: \"$ac_try\"") >&5 + { (eval echo "$as_me:21148: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:21144: \$? = $ac_status" >&5 + echo "$as_me:21151: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cat >conftest.$ac_ext <<_ACEOF -#line 21147 "configure" +#line 21154 "configure" #include "confdefs.h" int @@ -21156,16 +21163,16 @@ int x=tigetstr("") } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:21159: \"$ac_link\"") >&5 +if { (eval echo "$as_me:21166: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:21162: \$? = $ac_status" >&5 + echo "$as_me:21169: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:21165: \"$ac_try\"") >&5 + { (eval echo "$as_me:21172: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:21168: \$? = $ac_status" >&5 + echo "$as_me:21175: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_termlib=terminfo else @@ -21176,7 +21183,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext test -n "$verbose" && echo " using functions in predefined $cf_cv_termlib LIBS" 1>&6 -echo "${as_me-configure}:21179: testing using functions in predefined $cf_cv_termlib LIBS ..." 1>&5 +echo "${as_me-configure}:21186: testing using functions in predefined $cf_cv_termlib LIBS ..." 1>&5 else echo "$as_me: failed program was:" >&5 @@ -21191,10 +21198,10 @@ if test "$cf_cv_termlib" = none; then LIBS="-l$cf_lib $cf_save_LIBS" for cf_func in tigetstr tgetstr do - echo "$as_me:21194: checking for $cf_func in -l$cf_lib" >&5 + echo "$as_me:21201: checking for $cf_func in -l$cf_lib" >&5 echo $ECHO_N "checking for $cf_func in -l$cf_lib... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF -#line 21197 "configure" +#line 21204 "configure" #include "confdefs.h" int @@ -21206,16 +21213,16 @@ int x=$cf_func("") } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:21209: \"$ac_link\"") >&5 +if { (eval echo "$as_me:21216: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:21212: \$? = $ac_status" >&5 + echo "$as_me:21219: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:21215: \"$ac_try\"") >&5 + { (eval echo "$as_me:21222: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:21218: \$? = $ac_status" >&5 + echo "$as_me:21225: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_result=yes else @@ -21224,7 +21231,7 @@ cat conftest.$ac_ext >&5 cf_result=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext - echo "$as_me:21227: result: $cf_result" >&5 + echo "$as_me:21234: result: $cf_result" >&5 echo "${ECHO_T}$cf_result" >&6 if test "$cf_result" = yes ; then if test "$cf_func" = tigetstr ; then @@ -21241,7 +21248,7 @@ echo "${ECHO_T}$cf_result" >&6 fi if test "$cf_cv_termlib" = none; then # allow curses library for broken AIX system. - echo "$as_me:21244: checking for initscr in -lcurses" >&5 + echo "$as_me:21251: checking for initscr in -lcurses" >&5 echo $ECHO_N "checking for initscr in -lcurses... $ECHO_C" >&6 if test "${ac_cv_lib_curses_initscr+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -21249,7 +21256,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lcurses $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 21252 "configure" +#line 21259 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -21268,16 +21275,16 @@ initscr (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:21271: \"$ac_link\"") >&5 +if { (eval echo "$as_me:21278: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:21274: \$? = $ac_status" >&5 + echo "$as_me:21281: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:21277: \"$ac_try\"") >&5 + { (eval echo "$as_me:21284: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:21280: \$? = $ac_status" >&5 + echo "$as_me:21287: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_curses_initscr=yes else @@ -21288,13 +21295,13 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:21291: result: $ac_cv_lib_curses_initscr" >&5 +echo "$as_me:21298: result: $ac_cv_lib_curses_initscr" >&5 echo "${ECHO_T}$ac_cv_lib_curses_initscr" >&6 if test $ac_cv_lib_curses_initscr = yes; then LIBS="$LIBS -lcurses" cf_cv_termlib=termcap fi - echo "$as_me:21297: checking for tgoto in -ltermcap" >&5 + echo "$as_me:21304: checking for tgoto in -ltermcap" >&5 echo $ECHO_N "checking for tgoto in -ltermcap... $ECHO_C" >&6 if test "${ac_cv_lib_termcap_tgoto+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -21302,7 +21309,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-ltermcap $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 21305 "configure" +#line 21312 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -21321,16 +21328,16 @@ tgoto (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:21324: \"$ac_link\"") >&5 +if { (eval echo "$as_me:21331: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:21327: \$? = $ac_status" >&5 + echo "$as_me:21334: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:21330: \"$ac_try\"") >&5 + { (eval echo "$as_me:21337: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:21333: \$? = $ac_status" >&5 + echo "$as_me:21340: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_termcap_tgoto=yes else @@ -21341,7 +21348,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:21344: result: $ac_cv_lib_termcap_tgoto" >&5 +echo "$as_me:21351: result: $ac_cv_lib_termcap_tgoto" >&5 echo "${ECHO_T}$ac_cv_lib_termcap_tgoto" >&6 if test $ac_cv_lib_termcap_tgoto = yes; then LIBS="$LIBS -ltermcap" cf_cv_termlib=termcap @@ -21352,20 +21359,20 @@ fi fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext if test "$cf_cv_termlib" = none; then - { echo "$as_me:21355: WARNING: Cannot find -ltermlib, -lcurses, or -ltermcap" >&5 + { echo "$as_me:21362: WARNING: Cannot find -ltermlib, -lcurses, or -ltermcap" >&5 echo "$as_me: WARNING: Cannot find -ltermlib, -lcurses, or -ltermcap" >&2;} fi fi cf_slang_LIBS2="$LIBS" -echo "$as_me:21362: checking for acos" >&5 +echo "$as_me:21369: checking for acos" >&5 echo $ECHO_N "checking for acos... $ECHO_C" >&6 if test "${ac_cv_func_acos+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 21368 "configure" +#line 21375 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char acos (); below. */ @@ -21396,16 +21403,16 @@ f = acos; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:21399: \"$ac_link\"") >&5 +if { (eval echo "$as_me:21406: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:21402: \$? = $ac_status" >&5 + echo "$as_me:21409: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:21405: \"$ac_try\"") >&5 + { (eval echo "$as_me:21412: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:21408: \$? = $ac_status" >&5 + echo "$as_me:21415: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_acos=yes else @@ -21415,13 +21422,13 @@ ac_cv_func_acos=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:21418: result: $ac_cv_func_acos" >&5 +echo "$as_me:21425: result: $ac_cv_func_acos" >&5 echo "${ECHO_T}$ac_cv_func_acos" >&6 if test $ac_cv_func_acos = yes; then : else -echo "$as_me:21424: checking for acos in -lm" >&5 +echo "$as_me:21431: checking for acos in -lm" >&5 echo $ECHO_N "checking for acos in -lm... $ECHO_C" >&6 if test "${ac_cv_lib_m_acos+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -21429,7 +21436,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lm $LIBS $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 21432 "configure" +#line 21439 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -21448,16 +21455,16 @@ acos (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:21451: \"$ac_link\"") >&5 +if { (eval echo "$as_me:21458: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:21454: \$? = $ac_status" >&5 + echo "$as_me:21461: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:21457: \"$ac_try\"") >&5 + { (eval echo "$as_me:21464: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:21460: \$? = $ac_status" >&5 + echo "$as_me:21467: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_m_acos=yes else @@ -21468,7 +21475,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:21471: result: $ac_cv_lib_m_acos" >&5 +echo "$as_me:21478: result: $ac_cv_lib_m_acos" >&5 echo "${ECHO_T}$ac_cv_lib_m_acos" >&6 if test $ac_cv_lib_m_acos = yes; then @@ -21494,13 +21501,13 @@ os2*) eval 'cf_cv_have_lib_'video'=no' cf_libdir="" - echo "$as_me:21497: checking for v_init" >&5 + echo "$as_me:21504: checking for v_init" >&5 echo $ECHO_N "checking for v_init... $ECHO_C" >&6 if test "${ac_cv_func_v_init+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 21503 "configure" +#line 21510 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char v_init (); below. */ @@ -21531,16 +21538,16 @@ f = v_init; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:21534: \"$ac_link\"") >&5 +if { (eval echo "$as_me:21541: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:21537: \$? = $ac_status" >&5 + echo "$as_me:21544: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:21540: \"$ac_try\"") >&5 + { (eval echo "$as_me:21547: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:21543: \$? = $ac_status" >&5 + echo "$as_me:21550: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_v_init=yes else @@ -21550,18 +21557,18 @@ ac_cv_func_v_init=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:21553: result: $ac_cv_func_v_init" >&5 +echo "$as_me:21560: result: $ac_cv_func_v_init" >&5 echo "${ECHO_T}$ac_cv_func_v_init" >&6 if test $ac_cv_func_v_init = yes; then eval 'cf_cv_have_lib_'video'=yes' else cf_save_LIBS="$LIBS" - echo "$as_me:21560: checking for v_init in -lvideo" >&5 + echo "$as_me:21567: checking for v_init in -lvideo" >&5 echo $ECHO_N "checking for v_init in -lvideo... $ECHO_C" >&6 LIBS="-lvideo $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 21564 "configure" +#line 21571 "configure" #include "confdefs.h" #include <sys/video.h> int @@ -21573,25 +21580,25 @@ v_init() } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:21576: \"$ac_link\"") >&5 +if { (eval echo "$as_me:21583: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:21579: \$? = $ac_status" >&5 + echo "$as_me:21586: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:21582: \"$ac_try\"") >&5 + { (eval echo "$as_me:21589: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:21585: \$? = $ac_status" >&5 + echo "$as_me:21592: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:21587: result: yes" >&5 + echo "$as_me:21594: result: yes" >&5 echo "${ECHO_T}yes" >&6 eval 'cf_cv_have_lib_'video'=yes' else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 -echo "$as_me:21594: result: no" >&5 +echo "$as_me:21601: result: no" >&5 echo "${ECHO_T}no" >&6 cf_search= @@ -21681,11 +21688,11 @@ cf_search="$cf_library_path_list $cf_search" for cf_libdir in $cf_search do - echo "$as_me:21684: checking for -lvideo in $cf_libdir" >&5 + echo "$as_me:21691: checking for -lvideo in $cf_libdir" >&5 echo $ECHO_N "checking for -lvideo in $cf_libdir... $ECHO_C" >&6 LIBS="-L$cf_libdir -lvideo $cf_save_LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 21688 "configure" +#line 21695 "configure" #include "confdefs.h" #include <sys/video.h> int @@ -21697,25 +21704,25 @@ v_init() } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:21700: \"$ac_link\"") >&5 +if { (eval echo "$as_me:21707: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:21703: \$? = $ac_status" >&5 + echo "$as_me:21710: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:21706: \"$ac_try\"") >&5 + { (eval echo "$as_me:21713: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:21709: \$? = $ac_status" >&5 + echo "$as_me:21716: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:21711: result: yes" >&5 + echo "$as_me:21718: result: yes" >&5 echo "${ECHO_T}yes" >&6 eval 'cf_cv_have_lib_'video'=yes' break else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 -echo "$as_me:21718: result: no" >&5 +echo "$as_me:21725: result: no" >&5 echo "${ECHO_T}no" >&6 LIBS="$cf_save_LIBS" fi @@ -21730,7 +21737,7 @@ fi eval 'cf_found_library=$cf_cv_have_lib_'video if test $cf_found_library = no ; then - { { echo "$as_me:21733: error: Cannot link video library" >&5 + { { echo "$as_me:21740: error: Cannot link video library" >&5 echo "$as_me: error: Cannot link video library" >&2;} { (exit 1); exit 1; }; } fi @@ -21740,13 +21747,13 @@ esac eval 'cf_cv_have_lib_'slang'=no' cf_libdir="" - echo "$as_me:21743: checking for SLtt_get_screen_size" >&5 + echo "$as_me:21750: checking for SLtt_get_screen_size" >&5 echo $ECHO_N "checking for SLtt_get_screen_size... $ECHO_C" >&6 if test "${ac_cv_func_SLtt_get_screen_size+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 21749 "configure" +#line 21756 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char SLtt_get_screen_size (); below. */ @@ -21777,16 +21784,16 @@ f = SLtt_get_screen_size; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:21780: \"$ac_link\"") >&5 +if { (eval echo "$as_me:21787: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:21783: \$? = $ac_status" >&5 + echo "$as_me:21790: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:21786: \"$ac_try\"") >&5 + { (eval echo "$as_me:21793: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:21789: \$? = $ac_status" >&5 + echo "$as_me:21796: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_SLtt_get_screen_size=yes else @@ -21796,18 +21803,18 @@ ac_cv_func_SLtt_get_screen_size=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:21799: result: $ac_cv_func_SLtt_get_screen_size" >&5 +echo "$as_me:21806: result: $ac_cv_func_SLtt_get_screen_size" >&5 echo "${ECHO_T}$ac_cv_func_SLtt_get_screen_size" >&6 if test $ac_cv_func_SLtt_get_screen_size = yes; then eval 'cf_cv_have_lib_'slang'=yes' else cf_save_LIBS="$LIBS" - echo "$as_me:21806: checking for SLtt_get_screen_size in -lslang" >&5 + echo "$as_me:21813: checking for SLtt_get_screen_size in -lslang" >&5 echo $ECHO_N "checking for SLtt_get_screen_size in -lslang... $ECHO_C" >&6 LIBS="-lslang $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 21810 "configure" +#line 21817 "configure" #include "confdefs.h" #include <slang.h> int @@ -21819,25 +21826,25 @@ SLtt_get_screen_size() } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:21822: \"$ac_link\"") >&5 +if { (eval echo "$as_me:21829: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:21825: \$? = $ac_status" >&5 + echo "$as_me:21832: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:21828: \"$ac_try\"") >&5 + { (eval echo "$as_me:21835: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:21831: \$? = $ac_status" >&5 + echo "$as_me:21838: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:21833: result: yes" >&5 + echo "$as_me:21840: result: yes" >&5 echo "${ECHO_T}yes" >&6 eval 'cf_cv_have_lib_'slang'=yes' else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 -echo "$as_me:21840: result: no" >&5 +echo "$as_me:21847: result: no" >&5 echo "${ECHO_T}no" >&6 cf_search= @@ -21927,11 +21934,11 @@ cf_search="$cf_library_path_list $cf_search" for cf_libdir in $cf_search do - echo "$as_me:21930: checking for -lslang in $cf_libdir" >&5 + echo "$as_me:21937: checking for -lslang in $cf_libdir" >&5 echo $ECHO_N "checking for -lslang in $cf_libdir... $ECHO_C" >&6 LIBS="-L$cf_libdir -lslang $cf_save_LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 21934 "configure" +#line 21941 "configure" #include "confdefs.h" #include <slang.h> int @@ -21943,25 +21950,25 @@ SLtt_get_screen_size() } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:21946: \"$ac_link\"") >&5 +if { (eval echo "$as_me:21953: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:21949: \$? = $ac_status" >&5 + echo "$as_me:21956: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:21952: \"$ac_try\"") >&5 + { (eval echo "$as_me:21959: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:21955: \$? = $ac_status" >&5 + echo "$as_me:21962: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:21957: result: yes" >&5 + echo "$as_me:21964: result: yes" >&5 echo "${ECHO_T}yes" >&6 eval 'cf_cv_have_lib_'slang'=yes' break else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 -echo "$as_me:21964: result: no" >&5 +echo "$as_me:21971: result: no" >&5 echo "${ECHO_T}no" >&6 LIBS="$cf_save_LIBS" fi @@ -21976,13 +21983,13 @@ fi eval 'cf_found_library=$cf_cv_have_lib_'slang if test $cf_found_library = no ; then - { { echo "$as_me:21979: error: Cannot link slang library" >&5 + { { echo "$as_me:21986: error: Cannot link slang library" >&5 echo "$as_me: error: Cannot link slang library" >&2;} { (exit 1); exit 1; }; } fi cf_slang_LIBS3="$LIBS" -echo "$as_me:21985: checking if we can link slang without termcap" >&5 +echo "$as_me:21992: checking if we can link slang without termcap" >&5 echo $ECHO_N "checking if we can link slang without termcap... $ECHO_C" >&6 if test -n "`echo $cf_slang_LIBS1 | sed -e 's/ //g'`" ; then cf_exclude=`echo ".$cf_slang_LIBS2" | sed -e "s%$cf_slang_LIBS1%%" -e 's%^.%%'` @@ -21991,7 +21998,7 @@ else fi LIBS=`echo ".$cf_slang_LIBS3" | sed -e "s%$cf_exclude%%" -e 's%^.%%'` cat >conftest.$ac_ext <<_ACEOF -#line 21994 "configure" +#line 22001 "configure" #include "confdefs.h" #include <slang.h> int @@ -22003,16 +22010,16 @@ SLtt_get_screen_size() } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:22006: \"$ac_link\"") >&5 +if { (eval echo "$as_me:22013: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:22009: \$? = $ac_status" >&5 + echo "$as_me:22016: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:22012: \"$ac_try\"") >&5 + { (eval echo "$as_me:22019: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:22015: \$? = $ac_status" >&5 + echo "$as_me:22022: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_result=yes else @@ -22021,13 +22028,13 @@ cat conftest.$ac_ext >&5 cf_result=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext -echo "$as_me:22024: result: $cf_result" >&5 +echo "$as_me:22031: result: $cf_result" >&5 echo "${ECHO_T}$cf_result" >&6 test $cf_result = no && LIBS="$cf_slang_LIBS3" else -echo "$as_me:22030: checking for slang2 header file" >&5 +echo "$as_me:22037: checking for slang2 header file" >&5 echo $ECHO_N "checking for slang2 header file... $ECHO_C" >&6 if test "${cf_cv_slang2_header+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -22035,7 +22042,7 @@ else cf_cv_slang2_header=no cat >conftest.$ac_ext <<_ACEOF -#line 22038 "configure" +#line 22045 "configure" #include "confdefs.h" #include <slang.h> int @@ -22047,16 +22054,16 @@ printf("%s\n", SLANG_VERSION) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:22050: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:22057: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:22053: \$? = $ac_status" >&5 + echo "$as_me:22060: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:22056: \"$ac_try\"") >&5 + { (eval echo "$as_me:22063: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:22059: \$? = $ac_status" >&5 + echo "$as_me:22066: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_slang2_header=predefined else @@ -22179,7 +22186,7 @@ cf_search="$cf_header_path_list $cf_search" fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:22182: result: $cf_cv_slang2_header" >&5 +echo "$as_me:22189: result: $cf_cv_slang2_header" >&5 echo "${ECHO_T}$cf_cv_slang2_header" >&6 if test "x$cf_cv_slang2_header" != xno @@ -22219,7 +22226,7 @@ if test -n "$cf_incdir" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 22222 "configure" +#line 22229 "configure" #include "confdefs.h" #include <stdio.h> int @@ -22231,16 +22238,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:22234: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:22241: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:22237: \$? = $ac_status" >&5 + echo "$as_me:22244: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:22240: \"$ac_try\"") >&5 + { (eval echo "$as_me:22247: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:22243: \$? = $ac_status" >&5 + echo "$as_me:22250: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -22257,7 +22264,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "$cf_have_incdir" = no ; then test -n "$verbose" && echo " adding $cf_add_incdir to include-path" 1>&6 -echo "${as_me-configure}:22260: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me-configure}:22267: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -22287,7 +22294,7 @@ else cf_cv_termlib=none cat >conftest.$ac_ext <<_ACEOF -#line 22290 "configure" +#line 22297 "configure" #include "confdefs.h" int @@ -22299,19 +22306,19 @@ char *x=(char*)tgoto("",0,0) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:22302: \"$ac_link\"") >&5 +if { (eval echo "$as_me:22309: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:22305: \$? = $ac_status" >&5 + echo "$as_me:22312: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:22308: \"$ac_try\"") >&5 + { (eval echo "$as_me:22315: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:22311: \$? = $ac_status" >&5 + echo "$as_me:22318: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cat >conftest.$ac_ext <<_ACEOF -#line 22314 "configure" +#line 22321 "configure" #include "confdefs.h" int @@ -22323,16 +22330,16 @@ int x=tigetstr("") } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:22326: \"$ac_link\"") >&5 +if { (eval echo "$as_me:22333: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:22329: \$? = $ac_status" >&5 + echo "$as_me:22336: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:22332: \"$ac_try\"") >&5 + { (eval echo "$as_me:22339: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:22335: \$? = $ac_status" >&5 + echo "$as_me:22342: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_termlib=terminfo else @@ -22343,7 +22350,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext test -n "$verbose" && echo " using functions in predefined $cf_cv_termlib LIBS" 1>&6 -echo "${as_me-configure}:22346: testing using functions in predefined $cf_cv_termlib LIBS ..." 1>&5 +echo "${as_me-configure}:22353: testing using functions in predefined $cf_cv_termlib LIBS ..." 1>&5 else echo "$as_me: failed program was:" >&5 @@ -22358,10 +22365,10 @@ if test "$cf_cv_termlib" = none; then LIBS="-l$cf_lib $cf_save_LIBS" for cf_func in tigetstr tgetstr do - echo "$as_me:22361: checking for $cf_func in -l$cf_lib" >&5 + echo "$as_me:22368: checking for $cf_func in -l$cf_lib" >&5 echo $ECHO_N "checking for $cf_func in -l$cf_lib... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF -#line 22364 "configure" +#line 22371 "configure" #include "confdefs.h" int @@ -22373,16 +22380,16 @@ int x=$cf_func("") } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:22376: \"$ac_link\"") >&5 +if { (eval echo "$as_me:22383: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:22379: \$? = $ac_status" >&5 + echo "$as_me:22386: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:22382: \"$ac_try\"") >&5 + { (eval echo "$as_me:22389: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:22385: \$? = $ac_status" >&5 + echo "$as_me:22392: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_result=yes else @@ -22391,7 +22398,7 @@ cat conftest.$ac_ext >&5 cf_result=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext - echo "$as_me:22394: result: $cf_result" >&5 + echo "$as_me:22401: result: $cf_result" >&5 echo "${ECHO_T}$cf_result" >&6 if test "$cf_result" = yes ; then if test "$cf_func" = tigetstr ; then @@ -22408,7 +22415,7 @@ echo "${ECHO_T}$cf_result" >&6 fi if test "$cf_cv_termlib" = none; then # allow curses library for broken AIX system. - echo "$as_me:22411: checking for initscr in -lcurses" >&5 + echo "$as_me:22418: checking for initscr in -lcurses" >&5 echo $ECHO_N "checking for initscr in -lcurses... $ECHO_C" >&6 if test "${ac_cv_lib_curses_initscr+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -22416,7 +22423,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lcurses $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 22419 "configure" +#line 22426 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -22435,16 +22442,16 @@ initscr (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:22438: \"$ac_link\"") >&5 +if { (eval echo "$as_me:22445: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:22441: \$? = $ac_status" >&5 + echo "$as_me:22448: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:22444: \"$ac_try\"") >&5 + { (eval echo "$as_me:22451: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:22447: \$? = $ac_status" >&5 + echo "$as_me:22454: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_curses_initscr=yes else @@ -22455,13 +22462,13 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:22458: result: $ac_cv_lib_curses_initscr" >&5 +echo "$as_me:22465: result: $ac_cv_lib_curses_initscr" >&5 echo "${ECHO_T}$ac_cv_lib_curses_initscr" >&6 if test $ac_cv_lib_curses_initscr = yes; then LIBS="$LIBS -lcurses" cf_cv_termlib=termcap fi - echo "$as_me:22464: checking for tgoto in -ltermcap" >&5 + echo "$as_me:22471: checking for tgoto in -ltermcap" >&5 echo $ECHO_N "checking for tgoto in -ltermcap... $ECHO_C" >&6 if test "${ac_cv_lib_termcap_tgoto+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -22469,7 +22476,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-ltermcap $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 22472 "configure" +#line 22479 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -22488,16 +22495,16 @@ tgoto (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:22491: \"$ac_link\"") >&5 +if { (eval echo "$as_me:22498: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:22494: \$? = $ac_status" >&5 + echo "$as_me:22501: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:22497: \"$ac_try\"") >&5 + { (eval echo "$as_me:22504: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:22500: \$? = $ac_status" >&5 + echo "$as_me:22507: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_termcap_tgoto=yes else @@ -22508,7 +22515,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:22511: result: $ac_cv_lib_termcap_tgoto" >&5 +echo "$as_me:22518: result: $ac_cv_lib_termcap_tgoto" >&5 echo "${ECHO_T}$ac_cv_lib_termcap_tgoto" >&6 if test $ac_cv_lib_termcap_tgoto = yes; then LIBS="$LIBS -ltermcap" cf_cv_termlib=termcap @@ -22519,20 +22526,20 @@ fi fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext if test "$cf_cv_termlib" = none; then - { echo "$as_me:22522: WARNING: Cannot find -ltermlib, -lcurses, or -ltermcap" >&5 + { echo "$as_me:22529: WARNING: Cannot find -ltermlib, -lcurses, or -ltermcap" >&5 echo "$as_me: WARNING: Cannot find -ltermlib, -lcurses, or -ltermcap" >&2;} fi fi cf_slang_LIBS2="$LIBS" -echo "$as_me:22529: checking for acos" >&5 +echo "$as_me:22536: checking for acos" >&5 echo $ECHO_N "checking for acos... $ECHO_C" >&6 if test "${ac_cv_func_acos+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 22535 "configure" +#line 22542 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char acos (); below. */ @@ -22563,16 +22570,16 @@ f = acos; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:22566: \"$ac_link\"") >&5 +if { (eval echo "$as_me:22573: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:22569: \$? = $ac_status" >&5 + echo "$as_me:22576: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:22572: \"$ac_try\"") >&5 + { (eval echo "$as_me:22579: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:22575: \$? = $ac_status" >&5 + echo "$as_me:22582: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_acos=yes else @@ -22582,13 +22589,13 @@ ac_cv_func_acos=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:22585: result: $ac_cv_func_acos" >&5 +echo "$as_me:22592: result: $ac_cv_func_acos" >&5 echo "${ECHO_T}$ac_cv_func_acos" >&6 if test $ac_cv_func_acos = yes; then : else -echo "$as_me:22591: checking for acos in -lm" >&5 +echo "$as_me:22598: checking for acos in -lm" >&5 echo $ECHO_N "checking for acos in -lm... $ECHO_C" >&6 if test "${ac_cv_lib_m_acos+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -22596,7 +22603,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lm $LIBS $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 22599 "configure" +#line 22606 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -22615,16 +22622,16 @@ acos (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:22618: \"$ac_link\"") >&5 +if { (eval echo "$as_me:22625: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:22621: \$? = $ac_status" >&5 + echo "$as_me:22628: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:22624: \"$ac_try\"") >&5 + { (eval echo "$as_me:22631: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:22627: \$? = $ac_status" >&5 + echo "$as_me:22634: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_m_acos=yes else @@ -22635,7 +22642,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:22638: result: $ac_cv_lib_m_acos" >&5 +echo "$as_me:22645: result: $ac_cv_lib_m_acos" >&5 echo "${ECHO_T}$ac_cv_lib_m_acos" >&6 if test $ac_cv_lib_m_acos = yes; then @@ -22661,13 +22668,13 @@ os2*) eval 'cf_cv_have_lib_'video'=no' cf_libdir="" - echo "$as_me:22664: checking for v_init" >&5 + echo "$as_me:22671: checking for v_init" >&5 echo $ECHO_N "checking for v_init... $ECHO_C" >&6 if test "${ac_cv_func_v_init+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 22670 "configure" +#line 22677 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char v_init (); below. */ @@ -22698,16 +22705,16 @@ f = v_init; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:22701: \"$ac_link\"") >&5 +if { (eval echo "$as_me:22708: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:22704: \$? = $ac_status" >&5 + echo "$as_me:22711: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:22707: \"$ac_try\"") >&5 + { (eval echo "$as_me:22714: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:22710: \$? = $ac_status" >&5 + echo "$as_me:22717: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_v_init=yes else @@ -22717,18 +22724,18 @@ ac_cv_func_v_init=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:22720: result: $ac_cv_func_v_init" >&5 +echo "$as_me:22727: result: $ac_cv_func_v_init" >&5 echo "${ECHO_T}$ac_cv_func_v_init" >&6 if test $ac_cv_func_v_init = yes; then eval 'cf_cv_have_lib_'video'=yes' else cf_save_LIBS="$LIBS" - echo "$as_me:22727: checking for v_init in -lvideo" >&5 + echo "$as_me:22734: checking for v_init in -lvideo" >&5 echo $ECHO_N "checking for v_init in -lvideo... $ECHO_C" >&6 LIBS="-lvideo $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 22731 "configure" +#line 22738 "configure" #include "confdefs.h" #include <sys/video.h> int @@ -22740,25 +22747,25 @@ v_init() } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:22743: \"$ac_link\"") >&5 +if { (eval echo "$as_me:22750: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:22746: \$? = $ac_status" >&5 + echo "$as_me:22753: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:22749: \"$ac_try\"") >&5 + { (eval echo "$as_me:22756: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:22752: \$? = $ac_status" >&5 + echo "$as_me:22759: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:22754: result: yes" >&5 + echo "$as_me:22761: result: yes" >&5 echo "${ECHO_T}yes" >&6 eval 'cf_cv_have_lib_'video'=yes' else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 -echo "$as_me:22761: result: no" >&5 +echo "$as_me:22768: result: no" >&5 echo "${ECHO_T}no" >&6 cf_search= @@ -22848,11 +22855,11 @@ cf_search="$cf_library_path_list $cf_search" for cf_libdir in $cf_search do - echo "$as_me:22851: checking for -lvideo in $cf_libdir" >&5 + echo "$as_me:22858: checking for -lvideo in $cf_libdir" >&5 echo $ECHO_N "checking for -lvideo in $cf_libdir... $ECHO_C" >&6 LIBS="-L$cf_libdir -lvideo $cf_save_LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 22855 "configure" +#line 22862 "configure" #include "confdefs.h" #include <sys/video.h> int @@ -22864,25 +22871,25 @@ v_init() } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:22867: \"$ac_link\"") >&5 +if { (eval echo "$as_me:22874: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:22870: \$? = $ac_status" >&5 + echo "$as_me:22877: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:22873: \"$ac_try\"") >&5 + { (eval echo "$as_me:22880: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:22876: \$? = $ac_status" >&5 + echo "$as_me:22883: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:22878: result: yes" >&5 + echo "$as_me:22885: result: yes" >&5 echo "${ECHO_T}yes" >&6 eval 'cf_cv_have_lib_'video'=yes' break else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 -echo "$as_me:22885: result: no" >&5 +echo "$as_me:22892: result: no" >&5 echo "${ECHO_T}no" >&6 LIBS="$cf_save_LIBS" fi @@ -22897,7 +22904,7 @@ fi eval 'cf_found_library=$cf_cv_have_lib_'video if test $cf_found_library = no ; then - { { echo "$as_me:22900: error: Cannot link video library" >&5 + { { echo "$as_me:22907: error: Cannot link video library" >&5 echo "$as_me: error: Cannot link video library" >&2;} { (exit 1); exit 1; }; } fi @@ -22907,13 +22914,13 @@ esac eval 'cf_cv_have_lib_'slang2'=no' cf_libdir="" - echo "$as_me:22910: checking for SLtt_get_screen_size" >&5 + echo "$as_me:22917: checking for SLtt_get_screen_size" >&5 echo $ECHO_N "checking for SLtt_get_screen_size... $ECHO_C" >&6 if test "${ac_cv_func_SLtt_get_screen_size+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 22916 "configure" +#line 22923 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char SLtt_get_screen_size (); below. */ @@ -22944,16 +22951,16 @@ f = SLtt_get_screen_size; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:22947: \"$ac_link\"") >&5 +if { (eval echo "$as_me:22954: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:22950: \$? = $ac_status" >&5 + echo "$as_me:22957: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:22953: \"$ac_try\"") >&5 + { (eval echo "$as_me:22960: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:22956: \$? = $ac_status" >&5 + echo "$as_me:22963: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_SLtt_get_screen_size=yes else @@ -22963,18 +22970,18 @@ ac_cv_func_SLtt_get_screen_size=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:22966: result: $ac_cv_func_SLtt_get_screen_size" >&5 +echo "$as_me:22973: result: $ac_cv_func_SLtt_get_screen_size" >&5 echo "${ECHO_T}$ac_cv_func_SLtt_get_screen_size" >&6 if test $ac_cv_func_SLtt_get_screen_size = yes; then eval 'cf_cv_have_lib_'slang2'=yes' else cf_save_LIBS="$LIBS" - echo "$as_me:22973: checking for SLtt_get_screen_size in -lslang2" >&5 + echo "$as_me:22980: checking for SLtt_get_screen_size in -lslang2" >&5 echo $ECHO_N "checking for SLtt_get_screen_size in -lslang2... $ECHO_C" >&6 LIBS="-lslang2 $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 22977 "configure" +#line 22984 "configure" #include "confdefs.h" #include <slang.h> int @@ -22986,25 +22993,25 @@ SLtt_get_screen_size() } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:22989: \"$ac_link\"") >&5 +if { (eval echo "$as_me:22996: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:22992: \$? = $ac_status" >&5 + echo "$as_me:22999: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:22995: \"$ac_try\"") >&5 + { (eval echo "$as_me:23002: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:22998: \$? = $ac_status" >&5 + echo "$as_me:23005: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:23000: result: yes" >&5 + echo "$as_me:23007: result: yes" >&5 echo "${ECHO_T}yes" >&6 eval 'cf_cv_have_lib_'slang2'=yes' else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 -echo "$as_me:23007: result: no" >&5 +echo "$as_me:23014: result: no" >&5 echo "${ECHO_T}no" >&6 cf_search= @@ -23094,11 +23101,11 @@ cf_search="$cf_library_path_list $cf_search" for cf_libdir in $cf_search do - echo "$as_me:23097: checking for -lslang2 in $cf_libdir" >&5 + echo "$as_me:23104: checking for -lslang2 in $cf_libdir" >&5 echo $ECHO_N "checking for -lslang2 in $cf_libdir... $ECHO_C" >&6 LIBS="-L$cf_libdir -lslang2 $cf_save_LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 23101 "configure" +#line 23108 "configure" #include "confdefs.h" #include <slang.h> int @@ -23110,25 +23117,25 @@ SLtt_get_screen_size() } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:23113: \"$ac_link\"") >&5 +if { (eval echo "$as_me:23120: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:23116: \$? = $ac_status" >&5 + echo "$as_me:23123: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:23119: \"$ac_try\"") >&5 + { (eval echo "$as_me:23126: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23122: \$? = $ac_status" >&5 + echo "$as_me:23129: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:23124: result: yes" >&5 + echo "$as_me:23131: result: yes" >&5 echo "${ECHO_T}yes" >&6 eval 'cf_cv_have_lib_'slang2'=yes' break else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 -echo "$as_me:23131: result: no" >&5 +echo "$as_me:23138: result: no" >&5 echo "${ECHO_T}no" >&6 LIBS="$cf_save_LIBS" fi @@ -23143,13 +23150,13 @@ fi eval 'cf_found_library=$cf_cv_have_lib_'slang2 if test $cf_found_library = no ; then - { { echo "$as_me:23146: error: Cannot link slang2 library" >&5 + { { echo "$as_me:23153: error: Cannot link slang2 library" >&5 echo "$as_me: error: Cannot link slang2 library" >&2;} { (exit 1); exit 1; }; } fi cf_slang_LIBS3="$LIBS" -echo "$as_me:23152: checking if we can link slang2 without termcap" >&5 +echo "$as_me:23159: checking if we can link slang2 without termcap" >&5 echo $ECHO_N "checking if we can link slang2 without termcap... $ECHO_C" >&6 if test -n "`echo $cf_slang_LIBS1 | sed -e 's/ //g'`" ; then cf_exclude=`echo ".$cf_slang_LIBS2" | sed -e "s%$cf_slang_LIBS1%%" -e 's%^.%%'` @@ -23158,7 +23165,7 @@ else fi LIBS=`echo ".$cf_slang_LIBS3" | sed -e "s%$cf_exclude%%" -e 's%^.%%'` cat >conftest.$ac_ext <<_ACEOF -#line 23161 "configure" +#line 23168 "configure" #include "confdefs.h" #include <slang.h> int @@ -23170,16 +23177,16 @@ SLtt_get_screen_size() } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:23173: \"$ac_link\"") >&5 +if { (eval echo "$as_me:23180: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:23176: \$? = $ac_status" >&5 + echo "$as_me:23183: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:23179: \"$ac_try\"") >&5 + { (eval echo "$as_me:23186: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23182: \$? = $ac_status" >&5 + echo "$as_me:23189: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_result=yes else @@ -23188,12 +23195,12 @@ cat conftest.$ac_ext >&5 cf_result=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext -echo "$as_me:23191: result: $cf_result" >&5 +echo "$as_me:23198: result: $cf_result" >&5 echo "${ECHO_T}$cf_result" >&6 test $cf_result = no && LIBS="$cf_slang_LIBS3" else - { { echo "$as_me:23196: error: cannot find slang headers" >&5 + { { echo "$as_me:23203: error: cannot find slang headers" >&5 echo "$as_me: error: cannot find slang headers" >&2;} { (exit 1); exit 1; }; } fi @@ -23201,14 +23208,14 @@ fi # There's an unofficial set of patches for slang that gives it some limited # UTF8 capability. Unfortunately it won't compile unless one defines UTF8. -echo "$as_me:23204: checking if we must define UTF8" >&5 +echo "$as_me:23211: checking if we must define UTF8" >&5 echo $ECHO_N "checking if we must define UTF8... $ECHO_C" >&6 if test "${cf_cv_slang_utf8+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 23211 "configure" +#line 23218 "configure" #include "confdefs.h" #include <slang.h> int @@ -23220,16 +23227,16 @@ SLtt_get_screen_size() } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:23223: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:23230: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:23226: \$? = $ac_status" >&5 + echo "$as_me:23233: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:23229: \"$ac_try\"") >&5 + { (eval echo "$as_me:23236: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23232: \$? = $ac_status" >&5 + echo "$as_me:23239: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_slang_utf8=no else @@ -23237,7 +23244,7 @@ else cat conftest.$ac_ext >&5 cat >conftest.$ac_ext <<_ACEOF -#line 23240 "configure" +#line 23247 "configure" #include "confdefs.h" #define UTF8 @@ -23251,16 +23258,16 @@ SLtt_get_screen_size() } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:23254: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:23261: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:23257: \$? = $ac_status" >&5 + echo "$as_me:23264: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:23260: \"$ac_try\"") >&5 + { (eval echo "$as_me:23267: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23263: \$? = $ac_status" >&5 + echo "$as_me:23270: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_slang_utf8=yes else @@ -23273,7 +23280,7 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:23276: result: $cf_cv_slang_utf8" >&5 +echo "$as_me:23283: result: $cf_cv_slang_utf8" >&5 echo "${ECHO_T}$cf_cv_slang_utf8" >&6 if test "$cf_cv_slang_utf8" = yes ; then @@ -23283,14 +23290,14 @@ EOF fi -echo "$as_me:23286: checking if we must tell slang this is UNIX" >&5 +echo "$as_me:23293: checking if we must tell slang this is UNIX" >&5 echo $ECHO_N "checking if we must tell slang this is UNIX... $ECHO_C" >&6 if test "${cf_cv_slang_unix+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 23293 "configure" +#line 23300 "configure" #include "confdefs.h" #include <slang.h> int @@ -23309,16 +23316,16 @@ SLang_TT_Baud_Rate = 1 } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:23312: \"$ac_link\"") >&5 +if { (eval echo "$as_me:23319: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:23315: \$? = $ac_status" >&5 + echo "$as_me:23322: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:23318: \"$ac_try\"") >&5 + { (eval echo "$as_me:23325: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23321: \$? = $ac_status" >&5 + echo "$as_me:23328: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_slang_unix=yes else @@ -23329,7 +23336,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:23332: result: $cf_cv_slang_unix" >&5 +echo "$as_me:23339: result: $cf_cv_slang_unix" >&5 echo "${ECHO_T}$cf_cv_slang_unix" >&6 test $cf_cv_slang_unix = yes && cat >>confdefs.h <<\EOF #define REAL_UNIX_SYSTEM 1 @@ -23339,14 +23346,14 @@ EOF ;; esac -echo "$as_me:23342: checking for chtype typedef" >&5 +echo "$as_me:23349: checking for chtype typedef" >&5 echo $ECHO_N "checking for chtype typedef... $ECHO_C" >&6 if test "${cf_cv_chtype_decl+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 23349 "configure" +#line 23356 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header-curses.h}> int @@ -23358,16 +23365,16 @@ chtype foo } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:23361: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:23368: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:23364: \$? = $ac_status" >&5 + echo "$as_me:23371: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:23367: \"$ac_try\"") >&5 + { (eval echo "$as_me:23374: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23370: \$? = $ac_status" >&5 + echo "$as_me:23377: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_chtype_decl=yes else @@ -23377,21 +23384,21 @@ cf_cv_chtype_decl=no fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:23380: result: $cf_cv_chtype_decl" >&5 +echo "$as_me:23387: result: $cf_cv_chtype_decl" >&5 echo "${ECHO_T}$cf_cv_chtype_decl" >&6 if test $cf_cv_chtype_decl = yes ; then cat >>confdefs.h <<\EOF #define HAVE_TYPE_CHTYPE 1 EOF - echo "$as_me:23387: checking if chtype is scalar or struct" >&5 + echo "$as_me:23394: checking if chtype is scalar or struct" >&5 echo $ECHO_N "checking if chtype is scalar or struct... $ECHO_C" >&6 if test "${cf_cv_chtype_type+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 23394 "configure" +#line 23401 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header-curses.h}> int @@ -23403,16 +23410,16 @@ chtype foo; long x = foo } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:23406: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:23413: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:23409: \$? = $ac_status" >&5 + echo "$as_me:23416: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:23412: \"$ac_try\"") >&5 + { (eval echo "$as_me:23419: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23415: \$? = $ac_status" >&5 + echo "$as_me:23422: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_chtype_type=scalar else @@ -23422,7 +23429,7 @@ cf_cv_chtype_type=struct fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:23425: result: $cf_cv_chtype_type" >&5 +echo "$as_me:23432: result: $cf_cv_chtype_type" >&5 echo "${ECHO_T}$cf_cv_chtype_type" >&6 if test $cf_cv_chtype_type = scalar ; then cat >>confdefs.h <<\EOF @@ -23432,7 +23439,7 @@ EOF fi fi -echo "$as_me:23435: checking if you want the wide-curses features" >&5 +echo "$as_me:23442: checking if you want the wide-curses features" >&5 echo $ECHO_N "checking if you want the wide-curses features... $ECHO_C" >&6 # Check whether --enable-widec or --disable-widec was given. @@ -23449,10 +23456,10 @@ else use_wide_curses=$cf_wide_curses fi; -echo "$as_me:23452: result: $use_wide_curses" >&5 +echo "$as_me:23459: result: $use_wide_curses" >&5 echo "${ECHO_T}$use_wide_curses" >&6 -echo "$as_me:23455: checking if color-style code should be used" >&5 +echo "$as_me:23462: checking if color-style code should be used" >&5 echo $ECHO_N "checking if color-style code should be used... $ECHO_C" >&6 # Check whether --enable-color-style or --disable-color-style was given. @@ -23472,7 +23479,7 @@ fi; case $use_color_style in no) - echo "$as_me:23475: result: no" >&5 + echo "$as_me:23482: result: no" >&5 echo "${ECHO_T}no" >&6 INSTALL_LSS= ;; @@ -23481,10 +23488,10 @@ echo "${ECHO_T}no" >&6 #define USE_COLOR_STYLE 1 EOF - echo "$as_me:23484: result: yes" >&5 + echo "$as_me:23491: result: yes" >&5 echo "${ECHO_T}yes" >&6 - echo "$as_me:23487: checking for location of style-sheet file" >&5 + echo "$as_me:23494: checking for location of style-sheet file" >&5 echo $ECHO_N "checking for location of style-sheet file... $ECHO_C" >&6 # Check whether --with-lss-file or --without-lss-file was given. @@ -23520,7 +23527,7 @@ case ".$withval" in #(vi withval=`echo $withval | sed -e s%NONE%$cf_path_syntax%` ;; *) - { { echo "$as_me:23523: error: expected a pathname, not \"$withval\"" >&5 + { { echo "$as_me:23530: error: expected a pathname, not \"$withval\"" >&5 echo "$as_me: error: expected a pathname, not \"$withval\"" >&2;} { (exit 1); exit 1; }; } ;; @@ -23529,7 +23536,7 @@ esac fi LYNX_LSS_FILE="$withval" - echo "$as_me:23532: result: $LYNX_LSS_FILE" >&5 + echo "$as_me:23539: result: $LYNX_LSS_FILE" >&5 echo "${ECHO_T}$LYNX_LSS_FILE" >&6 test "$LYNX_LSS_FILE" = no && LYNX_LSS_FILE= @@ -23541,7 +23548,7 @@ EOF ;; esac -echo "$as_me:23544: checking for the default configuration-file" >&5 +echo "$as_me:23551: checking for the default configuration-file" >&5 echo $ECHO_N "checking for the default configuration-file... $ECHO_C" >&6 # Check whether --with-cfg-file or --without-cfg-file was given. @@ -23577,7 +23584,7 @@ case ".$withval" in #(vi withval=`echo $withval | sed -e s%NONE%$cf_path_syntax%` ;; *) - { { echo "$as_me:23580: error: expected a pathname, not \"$withval\"" >&5 + { { echo "$as_me:23587: error: expected a pathname, not \"$withval\"" >&5 echo "$as_me: error: expected a pathname, not \"$withval\"" >&2;} { (exit 1); exit 1; }; } ;; @@ -23586,7 +23593,7 @@ esac fi LYNX_CFG_FILE="$withval" -echo "$as_me:23589: result: $LYNX_CFG_FILE" >&5 +echo "$as_me:23596: result: $LYNX_CFG_FILE" >&5 echo "${ECHO_T}$LYNX_CFG_FILE" >&6 test "$LYNX_CFG_FILE" = no && LYNX_CFG_FILE= @@ -23594,7 +23601,7 @@ cat >>confdefs.h <<EOF #define LYNX_CFG_FILE "$LYNX_CFG_FILE" EOF -echo "$as_me:23597: checking if htmlized lynx.cfg should be built" >&5 +echo "$as_me:23604: checking if htmlized lynx.cfg should be built" >&5 echo $ECHO_N "checking if htmlized lynx.cfg should be built... $ECHO_C" >&6 # Check whether --enable-htmlized-cfg or --disable-htmlized-cfg was given. @@ -23611,7 +23618,7 @@ else use_htmlized_cfg=no fi; -echo "$as_me:23614: result: $use_htmlized_cfg" >&5 +echo "$as_me:23621: result: $use_htmlized_cfg" >&5 echo "${ECHO_T}$use_htmlized_cfg" >&6 LYNXCFG_MAKE='' @@ -23619,7 +23626,7 @@ if test $use_htmlized_cfg = no ; then LYNXCFG_MAKE='#' fi -echo "$as_me:23622: checking if local doc directory should be linked to help page" >&5 +echo "$as_me:23629: checking if local doc directory should be linked to help page" >&5 echo $ECHO_N "checking if local doc directory should be linked to help page... $ECHO_C" >&6 # Check whether --enable-local-docs or --disable-local-docs was given. @@ -23636,7 +23643,7 @@ else use_local_docs=no fi; -echo "$as_me:23639: result: $use_local_docs" >&5 +echo "$as_me:23646: result: $use_local_docs" >&5 echo "${ECHO_T}$use_local_docs" >&6 LYNXDOC_MAKE='' @@ -23644,7 +23651,7 @@ if test $use_local_docs = no ; then LYNXDOC_MAKE='#' fi -echo "$as_me:23647: checking for MIME library directory" >&5 +echo "$as_me:23654: checking for MIME library directory" >&5 echo $ECHO_N "checking for MIME library directory... $ECHO_C" >&6 # Check whether --with-mime-libdir or --without-mime-libdir was given. @@ -23680,7 +23687,7 @@ case ".$withval" in #(vi withval=`echo $withval | sed -e s%NONE%$cf_path_syntax%` ;; *) - { { echo "$as_me:23683: error: expected a pathname, not \"$withval\"" >&5 + { { echo "$as_me:23690: error: expected a pathname, not \"$withval\"" >&5 echo "$as_me: error: expected a pathname, not \"$withval\"" >&2;} { (exit 1); exit 1; }; } ;; @@ -23689,14 +23696,14 @@ esac fi MIME_LIBDIR="$withval" -echo "$as_me:23692: result: $MIME_LIBDIR" >&5 +echo "$as_me:23699: result: $MIME_LIBDIR" >&5 echo "${ECHO_T}$MIME_LIBDIR" >&6 MIME_LIBDIR=`echo "$MIME_LIBDIR" | sed -e 's,/$,,' -e 's,$,/,'` cat >>confdefs.h <<EOF #define MIME_LIBDIR "$MIME_LIBDIR" EOF -echo "$as_me:23699: checking if locale-charset selection logic should be used" >&5 +echo "$as_me:23706: checking if locale-charset selection logic should be used" >&5 echo $ECHO_N "checking if locale-charset selection logic should be used... $ECHO_C" >&6 # Check whether --enable-locale-charset or --disable-locale-charset was given. @@ -23713,7 +23720,7 @@ else use_locale_charset=yes fi; -echo "$as_me:23716: result: $use_locale_charset" >&5 +echo "$as_me:23723: result: $use_locale_charset" >&5 echo "${ECHO_T}$use_locale_charset" >&6 test $use_locale_charset != no && cat >>confdefs.h <<\EOF #define USE_LOCALE_CHARSET 1 @@ -23721,7 +23728,7 @@ EOF CHARSET_DEFS= -echo "$as_me:23724: checking if you want only a few charsets" >&5 +echo "$as_me:23731: checking if you want only a few charsets" >&5 echo $ECHO_N "checking if you want only a few charsets... $ECHO_C" >&6 # Check whether --with-charsets or --without-charsets was given. @@ -23733,7 +23740,7 @@ else fi; if test -n "$cf_charsets" ; then - echo "$as_me:23736: result: yes" >&5 + echo "$as_me:23743: result: yes" >&5 echo "${ECHO_T}yes" >&6 cat >>confdefs.h <<\EOF #define ALL_CHARSETS 0 @@ -23746,7 +23753,7 @@ EOF if test "$cf_charsets" = "minimal" ; then test -n "$verbose" && echo " using minimal list of charsets: $cf_min_charsets" 1>&6 -echo "${as_me-configure}:23749: testing using minimal list of charsets: $cf_min_charsets ..." 1>&5 +echo "${as_me-configure}:23756: testing using minimal list of charsets: $cf_min_charsets ..." 1>&5 fi cf_charsets=`echo $cf_charsets | sed -e "s/minimal/$cf_min_charsets/g" -e 's/,/ /g'` @@ -23773,28 +23780,28 @@ echo "${as_me-configure}:23749: testing using minimal list of charsets: $cf_min_ then test -n "$verbose" && echo " found $cf_charset" 1>&6 -echo "${as_me-configure}:23776: testing found $cf_charset ..." 1>&5 +echo "${as_me-configure}:23783: testing found $cf_charset ..." 1>&5 CHARSET_DEFS="-DNO_CHARSET_${cf_def_charset}=0 $CHARSET_DEFS" else test -n "$verbose" && echo " not found $cf_charset" 1>&6 -echo "${as_me-configure}:23782: testing not found $cf_charset ..." 1>&5 +echo "${as_me-configure}:23789: testing not found $cf_charset ..." 1>&5 fi done else - echo "$as_me:23787: result: no" >&5 + echo "$as_me:23794: result: no" >&5 echo "${ECHO_T}no" >&6 fi -echo "$as_me:23791: checking for ANSI C header files" >&5 +echo "$as_me:23798: 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 23797 "configure" +#line 23804 "configure" #include "confdefs.h" #include <stdlib.h> #include <stdarg.h> @@ -23802,13 +23809,13 @@ else #include <float.h> _ACEOF -if { (eval echo "$as_me:23805: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:23812: \"$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:23811: \$? = $ac_status" >&5 + echo "$as_me:23818: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -23830,7 +23837,7 @@ rm -f conftest.err conftest.$ac_ext 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 23833 "configure" +#line 23840 "configure" #include "confdefs.h" #include <string.h> @@ -23848,7 +23855,7 @@ fi 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 23851 "configure" +#line 23858 "configure" #include "confdefs.h" #include <stdlib.h> @@ -23869,7 +23876,7 @@ if test $ac_cv_header_stdc = yes; then : else cat >conftest.$ac_ext <<_ACEOF -#line 23872 "configure" +#line 23879 "configure" #include "confdefs.h" #include <ctype.h> #if ((' ' & 0x0FF) == 0x020) @@ -23895,15 +23902,15 @@ main () } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:23898: \"$ac_link\"") >&5 +if { (eval echo "$as_me:23905: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:23901: \$? = $ac_status" >&5 + echo "$as_me:23908: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:23903: \"$ac_try\"") >&5 + { (eval echo "$as_me:23910: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23906: \$? = $ac_status" >&5 + echo "$as_me:23913: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -23916,7 +23923,7 @@ rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext fi fi fi -echo "$as_me:23919: result: $ac_cv_header_stdc" >&5 +echo "$as_me:23926: result: $ac_cv_header_stdc" >&5 echo "${ECHO_T}$ac_cv_header_stdc" >&6 if test $ac_cv_header_stdc = yes; then @@ -23926,13 +23933,13 @@ EOF fi -echo "$as_me:23929: checking whether time.h and sys/time.h may both be included" >&5 +echo "$as_me:23936: checking whether time.h and sys/time.h may both be included" >&5 echo $ECHO_N "checking whether time.h and sys/time.h may both be included... $ECHO_C" >&6 if test "${ac_cv_header_time+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 23935 "configure" +#line 23942 "configure" #include "confdefs.h" #include <sys/types.h> #include <sys/time.h> @@ -23948,16 +23955,16 @@ return 0; } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:23951: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:23958: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:23954: \$? = $ac_status" >&5 + echo "$as_me:23961: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:23957: \"$ac_try\"") >&5 + { (eval echo "$as_me:23964: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23960: \$? = $ac_status" >&5 + echo "$as_me:23967: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_header_time=yes else @@ -23967,7 +23974,7 @@ ac_cv_header_time=no fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:23970: result: $ac_cv_header_time" >&5 +echo "$as_me:23977: result: $ac_cv_header_time" >&5 echo "${ECHO_T}$ac_cv_header_time" >&6 if test $ac_cv_header_time = yes; then @@ -23980,13 +23987,13 @@ fi ac_header_dirent=no for ac_hdr in dirent.h sys/ndir.h sys/dir.h ndir.h; do as_ac_Header=`echo "ac_cv_header_dirent_$ac_hdr" | $as_tr_sh` -echo "$as_me:23983: checking for $ac_hdr that defines DIR" >&5 +echo "$as_me:23990: checking for $ac_hdr that defines DIR" >&5 echo $ECHO_N "checking for $ac_hdr that defines DIR... $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 23989 "configure" +#line 23996 "configure" #include "confdefs.h" #include <sys/types.h> #include <$ac_hdr> @@ -24001,16 +24008,16 @@ return 0; } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:24004: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:24011: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:24007: \$? = $ac_status" >&5 + echo "$as_me:24014: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:24010: \"$ac_try\"") >&5 + { (eval echo "$as_me:24017: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:24013: \$? = $ac_status" >&5 + echo "$as_me:24020: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_Header=yes" else @@ -24020,7 +24027,7 @@ eval "$as_ac_Header=no" fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:24023: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:24030: 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 <<EOF @@ -24033,7 +24040,7 @@ fi done # Two versions of opendir et al. are in -ldir and -lx on SCO Xenix. if test $ac_header_dirent = dirent.h; then - echo "$as_me:24036: checking for opendir in -ldir" >&5 + echo "$as_me:24043: checking for opendir in -ldir" >&5 echo $ECHO_N "checking for opendir in -ldir... $ECHO_C" >&6 if test "${ac_cv_lib_dir_opendir+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -24041,7 +24048,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-ldir $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 24044 "configure" +#line 24051 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -24060,16 +24067,16 @@ opendir (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:24063: \"$ac_link\"") >&5 +if { (eval echo "$as_me:24070: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:24066: \$? = $ac_status" >&5 + echo "$as_me:24073: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:24069: \"$ac_try\"") >&5 + { (eval echo "$as_me:24076: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:24072: \$? = $ac_status" >&5 + echo "$as_me:24079: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_dir_opendir=yes else @@ -24080,14 +24087,14 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:24083: result: $ac_cv_lib_dir_opendir" >&5 +echo "$as_me:24090: result: $ac_cv_lib_dir_opendir" >&5 echo "${ECHO_T}$ac_cv_lib_dir_opendir" >&6 if test $ac_cv_lib_dir_opendir = yes; then LIBS="$LIBS -ldir" fi else - echo "$as_me:24090: checking for opendir in -lx" >&5 + echo "$as_me:24097: checking for opendir in -lx" >&5 echo $ECHO_N "checking for opendir in -lx... $ECHO_C" >&6 if test "${ac_cv_lib_x_opendir+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -24095,7 +24102,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lx $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 24098 "configure" +#line 24105 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -24114,16 +24121,16 @@ opendir (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:24117: \"$ac_link\"") >&5 +if { (eval echo "$as_me:24124: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:24120: \$? = $ac_status" >&5 + echo "$as_me:24127: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:24123: \"$ac_try\"") >&5 + { (eval echo "$as_me:24130: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:24126: \$? = $ac_status" >&5 + echo "$as_me:24133: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_x_opendir=yes else @@ -24134,7 +24141,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:24137: result: $ac_cv_lib_x_opendir" >&5 +echo "$as_me:24144: result: $ac_cv_lib_x_opendir" >&5 echo "${ECHO_T}$ac_cv_lib_x_opendir" >&6 if test $ac_cv_lib_x_opendir = yes; then LIBS="$LIBS -lx" @@ -24162,23 +24169,23 @@ for ac_header in \ do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` -echo "$as_me:24165: checking for $ac_header" >&5 +echo "$as_me:24172: 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 24171 "configure" +#line 24178 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:24175: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:24182: \"$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:24181: \$? = $ac_status" >&5 + echo "$as_me:24188: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -24197,7 +24204,7 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:24200: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:24207: 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 <<EOF @@ -24207,14 +24214,14 @@ EOF fi done -echo "$as_me:24210: checking termio.h and termios.h" >&5 +echo "$as_me:24217: checking termio.h and termios.h" >&5 echo $ECHO_N "checking termio.h and termios.h... $ECHO_C" >&6 if test "${cf_cv_termio_and_termios+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 24217 "configure" +#line 24224 "configure" #include "confdefs.h" #if HAVE_TERMIO_H @@ -24232,16 +24239,16 @@ putchar (0x0a) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:24235: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:24242: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:24238: \$? = $ac_status" >&5 + echo "$as_me:24245: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:24241: \"$ac_try\"") >&5 + { (eval echo "$as_me:24248: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:24244: \$? = $ac_status" >&5 + echo "$as_me:24251: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_termio_and_termios=yes else @@ -24252,20 +24259,20 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:24255: result: $cf_cv_termio_and_termios" >&5 +echo "$as_me:24262: result: $cf_cv_termio_and_termios" >&5 echo "${ECHO_T}$cf_cv_termio_and_termios" >&6 test $cf_cv_termio_and_termios = no && cat >>confdefs.h <<\EOF #define TERMIO_AND_TERMIOS 1 EOF -echo "$as_me:24261: checking for sigaction and structs" >&5 +echo "$as_me:24268: checking for sigaction and structs" >&5 echo $ECHO_N "checking for sigaction and structs... $ECHO_C" >&6 if test "${cf_cv_func_sigaction+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 24268 "configure" +#line 24275 "configure" #include "confdefs.h" #include <sys/types.h> @@ -24285,16 +24292,16 @@ struct sigaction act; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:24288: \"$ac_link\"") >&5 +if { (eval echo "$as_me:24295: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:24291: \$? = $ac_status" >&5 + echo "$as_me:24298: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:24294: \"$ac_try\"") >&5 + { (eval echo "$as_me:24301: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:24297: \$? = $ac_status" >&5 + echo "$as_me:24304: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_func_sigaction=yes else @@ -24305,7 +24312,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:24308: result: $cf_cv_func_sigaction" >&5 +echo "$as_me:24315: result: $cf_cv_func_sigaction" >&5 echo "${ECHO_T}$cf_cv_func_sigaction" >&6 test "$cf_cv_func_sigaction" = yes && cat >>confdefs.h <<\EOF #define HAVE_SIGACTION 1 @@ -24314,23 +24321,23 @@ EOF for ac_header in sys/wait.h do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` -echo "$as_me:24317: checking for $ac_header" >&5 +echo "$as_me:24324: 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 24323 "configure" +#line 24330 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:24327: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:24334: \"$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:24333: \$? = $ac_status" >&5 + echo "$as_me:24340: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -24349,7 +24356,7 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:24352: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:24359: 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 <<EOF @@ -24370,23 +24377,23 @@ else for ac_header in wait.h do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` -echo "$as_me:24373: checking for $ac_header" >&5 +echo "$as_me:24380: 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 24379 "configure" +#line 24386 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:24383: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:24390: \"$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:24389: \$? = $ac_status" >&5 + echo "$as_me:24396: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -24405,7 +24412,7 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:24408: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:24415: 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 <<EOF @@ -24418,23 +24425,23 @@ done for ac_header in waitstatus.h do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` -echo "$as_me:24421: checking for $ac_header" >&5 +echo "$as_me:24428: 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 24427 "configure" +#line 24434 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:24431: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:24438: \"$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:24437: \$? = $ac_status" >&5 + echo "$as_me:24444: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -24453,7 +24460,7 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:24456: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:24463: 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 <<EOF @@ -24475,14 +24482,14 @@ cf_wait_headers="$cf_wait_headers fi fi -echo "$as_me:24478: checking for union wait" >&5 +echo "$as_me:24485: checking for union wait" >&5 echo $ECHO_N "checking for union wait... $ECHO_C" >&6 if test "${cf_cv_type_unionwait+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 24485 "configure" +#line 24492 "configure" #include "confdefs.h" $cf_wait_headers int @@ -24498,16 +24505,16 @@ int x; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:24501: \"$ac_link\"") >&5 +if { (eval echo "$as_me:24508: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:24504: \$? = $ac_status" >&5 + echo "$as_me:24511: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:24507: \"$ac_try\"") >&5 + { (eval echo "$as_me:24514: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:24510: \$? = $ac_status" >&5 + echo "$as_me:24517: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_type_unionwait=no echo compiles ok w/o union wait 1>&5 @@ -24517,7 +24524,7 @@ else cat conftest.$ac_ext >&5 cat >conftest.$ac_ext <<_ACEOF -#line 24520 "configure" +#line 24527 "configure" #include "confdefs.h" $cf_wait_headers int @@ -24537,16 +24544,16 @@ union wait x; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:24540: \"$ac_link\"") >&5 +if { (eval echo "$as_me:24547: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:24543: \$? = $ac_status" >&5 + echo "$as_me:24550: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:24546: \"$ac_try\"") >&5 + { (eval echo "$as_me:24553: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:24549: \$? = $ac_status" >&5 + echo "$as_me:24556: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_type_unionwait=yes echo compiles ok with union wait and possibly macros too 1>&5 @@ -24561,7 +24568,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:24564: result: $cf_cv_type_unionwait" >&5 +echo "$as_me:24571: result: $cf_cv_type_unionwait" >&5 echo "${ECHO_T}$cf_cv_type_unionwait" >&6 test $cf_cv_type_unionwait = yes && cat >>confdefs.h <<\EOF #define HAVE_TYPE_UNIONWAIT 1 @@ -24569,14 +24576,14 @@ EOF if test $cf_cv_type_unionwait = yes; then - echo "$as_me:24572: checking if union wait can be used as wait-arg" >&5 + echo "$as_me:24579: checking if union wait can be used as wait-arg" >&5 echo $ECHO_N "checking if union wait can be used as wait-arg... $ECHO_C" >&6 if test "${cf_cv_arg_union_wait+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 24579 "configure" +#line 24586 "configure" #include "confdefs.h" $cf_wait_headers int @@ -24588,16 +24595,16 @@ union wait x; wait(&x) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:24591: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:24598: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:24594: \$? = $ac_status" >&5 + echo "$as_me:24601: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:24597: \"$ac_try\"") >&5 + { (eval echo "$as_me:24604: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:24600: \$? = $ac_status" >&5 + echo "$as_me:24607: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_arg_union_wait=yes else @@ -24609,20 +24616,20 @@ rm -f conftest.$ac_objext conftest.$ac_ext fi - echo "$as_me:24612: result: $cf_cv_arg_union_wait" >&5 + echo "$as_me:24619: result: $cf_cv_arg_union_wait" >&5 echo "${ECHO_T}$cf_cv_arg_union_wait" >&6 test $cf_cv_arg_union_wait = yes && cat >>confdefs.h <<\EOF #define WAIT_USES_UNION 1 EOF - echo "$as_me:24618: checking if union wait can be used as waitpid-arg" >&5 + echo "$as_me:24625: checking if union wait can be used as waitpid-arg" >&5 echo $ECHO_N "checking if union wait can be used as waitpid-arg... $ECHO_C" >&6 if test "${cf_cv_arg_union_waitpid+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 24625 "configure" +#line 24632 "configure" #include "confdefs.h" $cf_wait_headers int @@ -24634,16 +24641,16 @@ union wait x; waitpid(0, &x, 0) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:24637: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:24644: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:24640: \$? = $ac_status" >&5 + echo "$as_me:24647: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:24643: \"$ac_try\"") >&5 + { (eval echo "$as_me:24650: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:24646: \$? = $ac_status" >&5 + echo "$as_me:24653: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_arg_union_waitpid=yes else @@ -24655,7 +24662,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext fi - echo "$as_me:24658: result: $cf_cv_arg_union_waitpid" >&5 + echo "$as_me:24665: result: $cf_cv_arg_union_waitpid" >&5 echo "${ECHO_T}$cf_cv_arg_union_waitpid" >&6 test $cf_cv_arg_union_waitpid = yes && cat >>confdefs.h <<\EOF #define WAITPID_USES_UNION 1 @@ -24663,13 +24670,13 @@ EOF fi -echo "$as_me:24666: checking for uid_t in sys/types.h" >&5 +echo "$as_me:24673: checking for uid_t in sys/types.h" >&5 echo $ECHO_N "checking for uid_t in sys/types.h... $ECHO_C" >&6 if test "${ac_cv_type_uid_t+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 24672 "configure" +#line 24679 "configure" #include "confdefs.h" #include <sys/types.h> @@ -24683,7 +24690,7 @@ fi rm -f conftest* fi -echo "$as_me:24686: result: $ac_cv_type_uid_t" >&5 +echo "$as_me:24693: result: $ac_cv_type_uid_t" >&5 echo "${ECHO_T}$ac_cv_type_uid_t" >&6 if test $ac_cv_type_uid_t = no; then @@ -24697,7 +24704,7 @@ EOF fi -echo "$as_me:24700: checking type of array argument to getgroups" >&5 +echo "$as_me:24707: checking type of array argument to getgroups" >&5 echo $ECHO_N "checking type of array argument to getgroups... $ECHO_C" >&6 if test "${ac_cv_type_getgroups+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -24706,7 +24713,7 @@ else ac_cv_type_getgroups=cross else cat >conftest.$ac_ext <<_ACEOF -#line 24709 "configure" +#line 24716 "configure" #include "confdefs.h" /* Thanks to Mike Rendell for this test. */ #include <sys/types.h> @@ -24732,15 +24739,15 @@ main () } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:24735: \"$ac_link\"") >&5 +if { (eval echo "$as_me:24742: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:24738: \$? = $ac_status" >&5 + echo "$as_me:24745: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:24740: \"$ac_try\"") >&5 + { (eval echo "$as_me:24747: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:24743: \$? = $ac_status" >&5 + echo "$as_me:24750: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_type_getgroups=gid_t else @@ -24753,7 +24760,7 @@ rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext fi if test $ac_cv_type_getgroups = cross; then cat >conftest.$ac_ext <<_ACEOF -#line 24756 "configure" +#line 24763 "configure" #include "confdefs.h" #include <unistd.h> @@ -24768,20 +24775,20 @@ rm -f conftest* fi fi -echo "$as_me:24771: result: $ac_cv_type_getgroups" >&5 +echo "$as_me:24778: result: $ac_cv_type_getgroups" >&5 echo "${ECHO_T}$ac_cv_type_getgroups" >&6 cat >>confdefs.h <<EOF #define GETGROUPS_T $ac_cv_type_getgroups EOF -echo "$as_me:24778: checking for off_t" >&5 +echo "$as_me:24785: checking for off_t" >&5 echo $ECHO_N "checking for off_t... $ECHO_C" >&6 if test "${ac_cv_type_off_t+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 24784 "configure" +#line 24791 "configure" #include "confdefs.h" $ac_includes_default int @@ -24796,16 +24803,16 @@ if (sizeof (off_t)) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:24799: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:24806: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:24802: \$? = $ac_status" >&5 + echo "$as_me:24809: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:24805: \"$ac_try\"") >&5 + { (eval echo "$as_me:24812: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:24808: \$? = $ac_status" >&5 + echo "$as_me:24815: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_type_off_t=yes else @@ -24815,7 +24822,7 @@ ac_cv_type_off_t=no fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:24818: result: $ac_cv_type_off_t" >&5 +echo "$as_me:24825: result: $ac_cv_type_off_t" >&5 echo "${ECHO_T}$ac_cv_type_off_t" >&6 if test $ac_cv_type_off_t = yes; then : @@ -24827,13 +24834,13 @@ EOF fi -echo "$as_me:24830: checking for pid_t" >&5 +echo "$as_me:24837: checking for pid_t" >&5 echo $ECHO_N "checking for pid_t... $ECHO_C" >&6 if test "${ac_cv_type_pid_t+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 24836 "configure" +#line 24843 "configure" #include "confdefs.h" $ac_includes_default int @@ -24848,16 +24855,16 @@ if (sizeof (pid_t)) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:24851: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:24858: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:24854: \$? = $ac_status" >&5 + echo "$as_me:24861: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:24857: \"$ac_try\"") >&5 + { (eval echo "$as_me:24864: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:24860: \$? = $ac_status" >&5 + echo "$as_me:24867: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_type_pid_t=yes else @@ -24867,7 +24874,7 @@ ac_cv_type_pid_t=no fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:24870: result: $ac_cv_type_pid_t" >&5 +echo "$as_me:24877: result: $ac_cv_type_pid_t" >&5 echo "${ECHO_T}$ac_cv_type_pid_t" >&6 if test $ac_cv_type_pid_t = yes; then : @@ -24879,13 +24886,13 @@ EOF fi -echo "$as_me:24882: checking for uid_t in sys/types.h" >&5 +echo "$as_me:24889: checking for uid_t in sys/types.h" >&5 echo $ECHO_N "checking for uid_t in sys/types.h... $ECHO_C" >&6 if test "${ac_cv_type_uid_t+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 24888 "configure" +#line 24895 "configure" #include "confdefs.h" #include <sys/types.h> @@ -24899,7 +24906,7 @@ fi rm -f conftest* fi -echo "$as_me:24902: result: $ac_cv_type_uid_t" >&5 +echo "$as_me:24909: result: $ac_cv_type_uid_t" >&5 echo "${ECHO_T}$ac_cv_type_uid_t" >&6 if test $ac_cv_type_uid_t = no; then @@ -24913,13 +24920,13 @@ EOF fi -echo "$as_me:24916: checking for mode_t" >&5 +echo "$as_me:24923: checking for mode_t" >&5 echo $ECHO_N "checking for mode_t... $ECHO_C" >&6 if test "${ac_cv_type_mode_t+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 24922 "configure" +#line 24929 "configure" #include "confdefs.h" $ac_includes_default int @@ -24934,16 +24941,16 @@ if (sizeof (mode_t)) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:24937: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:24944: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:24940: \$? = $ac_status" >&5 + echo "$as_me:24947: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:24943: \"$ac_try\"") >&5 + { (eval echo "$as_me:24950: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:24946: \$? = $ac_status" >&5 + echo "$as_me:24953: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_type_mode_t=yes else @@ -24953,7 +24960,7 @@ ac_cv_type_mode_t=no fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:24956: result: $ac_cv_type_mode_t" >&5 +echo "$as_me:24963: result: $ac_cv_type_mode_t" >&5 echo "${ECHO_T}$ac_cv_type_mode_t" >&6 if test $ac_cv_type_mode_t = yes; then : @@ -24965,13 +24972,13 @@ EOF fi - echo "$as_me:24968: checking for socklen_t" >&5 + echo "$as_me:24975: checking for socklen_t" >&5 echo $ECHO_N "checking for socklen_t... $ECHO_C" >&6 if test "${ac_cv_type_socklen_t+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 24974 "configure" +#line 24981 "configure" #include "confdefs.h" #include <sys/types.h> @@ -24989,16 +24996,16 @@ if (sizeof (socklen_t)) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:24992: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:24999: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:24995: \$? = $ac_status" >&5 + echo "$as_me:25002: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:24998: \"$ac_try\"") >&5 + { (eval echo "$as_me:25005: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25001: \$? = $ac_status" >&5 + echo "$as_me:25008: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_type_socklen_t=yes else @@ -25008,7 +25015,7 @@ ac_cv_type_socklen_t=no fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:25011: result: $ac_cv_type_socklen_t" >&5 +echo "$as_me:25018: result: $ac_cv_type_socklen_t" >&5 echo "${ECHO_T}$ac_cv_type_socklen_t" >&6 if test $ac_cv_type_socklen_t = yes; then ac_cv_type_socklen_t=yes @@ -25023,14 +25030,63 @@ EOF fi -echo "$as_me:25026: checking for tm.tm_gmtoff" >&5 +echo "$as_me:25033: checking for long long type" >&5 +echo $ECHO_N "checking for long long type... $ECHO_C" >&6 +if test "${cf_cv_type_long_long+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + + cat >conftest.$ac_ext <<_ACEOF +#line 25040 "configure" +#include "confdefs.h" + +int +main () +{ +long long foo = 123456789123456789LL + ; + return 0; +} +_ACEOF +rm -f conftest.$ac_objext +if { (eval echo "$as_me:25052: \"$ac_compile\"") >&5 + (eval $ac_compile) 2>&5 + ac_status=$? + echo "$as_me:25055: \$? = $ac_status" >&5 + (exit $ac_status); } && + { ac_try='test -s conftest.$ac_objext' + { (eval echo "$as_me:25058: \"$ac_try\"") >&5 + (eval $ac_try) 2>&5 + ac_status=$? + echo "$as_me:25061: \$? = $ac_status" >&5 + (exit $ac_status); }; }; then + cf_cv_type_long_long=yes +else + echo "$as_me: failed program was:" >&5 +cat conftest.$ac_ext >&5 +cf_cv_type_long_long=no +fi +rm -f conftest.$ac_objext conftest.$ac_ext + +fi +echo "$as_me:25072: result: $cf_cv_type_long_long" >&5 +echo "${ECHO_T}$cf_cv_type_long_long" >&6 + +if test "$cf_cv_type_long_long" = yes ; then + cat >>confdefs.h <<\EOF +#define HAVE_LONG_LONG 1 +EOF + +fi + +echo "$as_me:25082: checking for tm.tm_gmtoff" >&5 echo $ECHO_N "checking for tm.tm_gmtoff... $ECHO_C" >&6 if test "${cf_cv_tm_gmtoff+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 25033 "configure" +#line 25089 "configure" #include "confdefs.h" #ifdef TIME_WITH_SYS_TIME @@ -25055,16 +25111,16 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:25058: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:25114: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:25061: \$? = $ac_status" >&5 + echo "$as_me:25117: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:25064: \"$ac_try\"") >&5 + { (eval echo "$as_me:25120: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25067: \$? = $ac_status" >&5 + echo "$as_me:25123: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_tm_gmtoff=yes else @@ -25075,19 +25131,19 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:25078: result: $cf_cv_tm_gmtoff" >&5 +echo "$as_me:25134: result: $cf_cv_tm_gmtoff" >&5 echo "${ECHO_T}$cf_cv_tm_gmtoff" >&6 test $cf_cv_tm_gmtoff = no && cat >>confdefs.h <<\EOF #define DONT_HAVE_TM_GMTOFF 1 EOF -echo "$as_me:25084: checking for int" >&5 +echo "$as_me:25140: checking for int" >&5 echo $ECHO_N "checking for int... $ECHO_C" >&6 if test "${ac_cv_type_int+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 25090 "configure" +#line 25146 "configure" #include "confdefs.h" $ac_includes_default int @@ -25102,16 +25158,16 @@ if (sizeof (int)) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:25105: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:25161: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:25108: \$? = $ac_status" >&5 + echo "$as_me:25164: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:25111: \"$ac_try\"") >&5 + { (eval echo "$as_me:25167: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25114: \$? = $ac_status" >&5 + echo "$as_me:25170: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_type_int=yes else @@ -25121,10 +25177,10 @@ ac_cv_type_int=no fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:25124: result: $ac_cv_type_int" >&5 +echo "$as_me:25180: result: $ac_cv_type_int" >&5 echo "${ECHO_T}$ac_cv_type_int" >&6 -echo "$as_me:25127: checking size of int" >&5 +echo "$as_me:25183: checking size of int" >&5 echo $ECHO_N "checking size of int... $ECHO_C" >&6 if test "${ac_cv_sizeof_int+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -25133,7 +25189,7 @@ else if test "$cross_compiling" = yes; then # Depending upon the size, compute the lo and hi bounds. cat >conftest.$ac_ext <<_ACEOF -#line 25136 "configure" +#line 25192 "configure" #include "confdefs.h" $ac_includes_default int @@ -25145,21 +25201,21 @@ int _array_ [1 - 2 * !((sizeof (int)) >= 0)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:25148: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:25204: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:25151: \$? = $ac_status" >&5 + echo "$as_me:25207: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:25154: \"$ac_try\"") >&5 + { (eval echo "$as_me:25210: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25157: \$? = $ac_status" >&5 + echo "$as_me:25213: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_lo=0 ac_mid=0 while :; do cat >conftest.$ac_ext <<_ACEOF -#line 25162 "configure" +#line 25218 "configure" #include "confdefs.h" $ac_includes_default int @@ -25171,16 +25227,16 @@ int _array_ [1 - 2 * !((sizeof (int)) <= $ac_mid)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:25174: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:25230: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:25177: \$? = $ac_status" >&5 + echo "$as_me:25233: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:25180: \"$ac_try\"") >&5 + { (eval echo "$as_me:25236: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25183: \$? = $ac_status" >&5 + echo "$as_me:25239: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_hi=$ac_mid; break else @@ -25196,7 +25252,7 @@ cat conftest.$ac_ext >&5 ac_hi=-1 ac_mid=-1 while :; do cat >conftest.$ac_ext <<_ACEOF -#line 25199 "configure" +#line 25255 "configure" #include "confdefs.h" $ac_includes_default int @@ -25208,16 +25264,16 @@ int _array_ [1 - 2 * !((sizeof (int)) >= $ac_mid)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:25211: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:25267: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:25214: \$? = $ac_status" >&5 + echo "$as_me:25270: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:25217: \"$ac_try\"") >&5 + { (eval echo "$as_me:25273: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25220: \$? = $ac_status" >&5 + echo "$as_me:25276: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_lo=$ac_mid; break else @@ -25233,7 +25289,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext 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 25236 "configure" +#line 25292 "configure" #include "confdefs.h" $ac_includes_default int @@ -25245,16 +25301,16 @@ int _array_ [1 - 2 * !((sizeof (int)) <= $ac_mid)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:25248: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:25304: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:25251: \$? = $ac_status" >&5 + echo "$as_me:25307: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:25254: \"$ac_try\"") >&5 + { (eval echo "$as_me:25310: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25257: \$? = $ac_status" >&5 + echo "$as_me:25313: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_hi=$ac_mid else @@ -25267,12 +25323,12 @@ done ac_cv_sizeof_int=$ac_lo else if test "$cross_compiling" = yes; then - { { echo "$as_me:25270: error: cannot run test program while cross compiling" >&5 + { { echo "$as_me:25326: 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 25275 "configure" +#line 25331 "configure" #include "confdefs.h" $ac_includes_default int @@ -25288,15 +25344,15 @@ fclose (f); } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:25291: \"$ac_link\"") >&5 +if { (eval echo "$as_me:25347: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:25294: \$? = $ac_status" >&5 + echo "$as_me:25350: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:25296: \"$ac_try\"") >&5 + { (eval echo "$as_me:25352: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25299: \$? = $ac_status" >&5 + echo "$as_me:25355: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_sizeof_int=`cat conftest.val` else @@ -25312,19 +25368,19 @@ else ac_cv_sizeof_int=0 fi fi -echo "$as_me:25315: result: $ac_cv_sizeof_int" >&5 +echo "$as_me:25371: result: $ac_cv_sizeof_int" >&5 echo "${ECHO_T}$ac_cv_sizeof_int" >&6 cat >>confdefs.h <<EOF #define SIZEOF_INT $ac_cv_sizeof_int EOF -echo "$as_me:25321: checking for long" >&5 +echo "$as_me:25377: checking for long" >&5 echo $ECHO_N "checking for long... $ECHO_C" >&6 if test "${ac_cv_type_long+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 25327 "configure" +#line 25383 "configure" #include "confdefs.h" $ac_includes_default int @@ -25339,16 +25395,16 @@ if (sizeof (long)) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:25342: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:25398: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:25345: \$? = $ac_status" >&5 + echo "$as_me:25401: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:25348: \"$ac_try\"") >&5 + { (eval echo "$as_me:25404: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25351: \$? = $ac_status" >&5 + echo "$as_me:25407: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_type_long=yes else @@ -25358,10 +25414,10 @@ ac_cv_type_long=no fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:25361: result: $ac_cv_type_long" >&5 +echo "$as_me:25417: result: $ac_cv_type_long" >&5 echo "${ECHO_T}$ac_cv_type_long" >&6 -echo "$as_me:25364: checking size of long" >&5 +echo "$as_me:25420: checking size of long" >&5 echo $ECHO_N "checking size of long... $ECHO_C" >&6 if test "${ac_cv_sizeof_long+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -25370,7 +25426,7 @@ else if test "$cross_compiling" = yes; then # Depending upon the size, compute the lo and hi bounds. cat >conftest.$ac_ext <<_ACEOF -#line 25373 "configure" +#line 25429 "configure" #include "confdefs.h" $ac_includes_default int @@ -25382,21 +25438,21 @@ int _array_ [1 - 2 * !((sizeof (long)) >= 0)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:25385: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:25441: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:25388: \$? = $ac_status" >&5 + echo "$as_me:25444: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:25391: \"$ac_try\"") >&5 + { (eval echo "$as_me:25447: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25394: \$? = $ac_status" >&5 + echo "$as_me:25450: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_lo=0 ac_mid=0 while :; do cat >conftest.$ac_ext <<_ACEOF -#line 25399 "configure" +#line 25455 "configure" #include "confdefs.h" $ac_includes_default int @@ -25408,16 +25464,16 @@ int _array_ [1 - 2 * !((sizeof (long)) <= $ac_mid)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:25411: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:25467: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:25414: \$? = $ac_status" >&5 + echo "$as_me:25470: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:25417: \"$ac_try\"") >&5 + { (eval echo "$as_me:25473: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25420: \$? = $ac_status" >&5 + echo "$as_me:25476: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_hi=$ac_mid; break else @@ -25433,7 +25489,7 @@ cat conftest.$ac_ext >&5 ac_hi=-1 ac_mid=-1 while :; do cat >conftest.$ac_ext <<_ACEOF -#line 25436 "configure" +#line 25492 "configure" #include "confdefs.h" $ac_includes_default int @@ -25445,16 +25501,16 @@ int _array_ [1 - 2 * !((sizeof (long)) >= $ac_mid)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:25448: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:25504: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:25451: \$? = $ac_status" >&5 + echo "$as_me:25507: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:25454: \"$ac_try\"") >&5 + { (eval echo "$as_me:25510: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25457: \$? = $ac_status" >&5 + echo "$as_me:25513: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_lo=$ac_mid; break else @@ -25470,7 +25526,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext 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 25473 "configure" +#line 25529 "configure" #include "confdefs.h" $ac_includes_default int @@ -25482,16 +25538,16 @@ int _array_ [1 - 2 * !((sizeof (long)) <= $ac_mid)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:25485: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:25541: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:25488: \$? = $ac_status" >&5 + echo "$as_me:25544: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:25491: \"$ac_try\"") >&5 + { (eval echo "$as_me:25547: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25494: \$? = $ac_status" >&5 + echo "$as_me:25550: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_hi=$ac_mid else @@ -25504,12 +25560,12 @@ done ac_cv_sizeof_long=$ac_lo else if test "$cross_compiling" = yes; then - { { echo "$as_me:25507: error: cannot run test program while cross compiling" >&5 + { { echo "$as_me:25563: 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 25512 "configure" +#line 25568 "configure" #include "confdefs.h" $ac_includes_default int @@ -25525,15 +25581,15 @@ fclose (f); } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:25528: \"$ac_link\"") >&5 +if { (eval echo "$as_me:25584: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:25531: \$? = $ac_status" >&5 + echo "$as_me:25587: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:25533: \"$ac_try\"") >&5 + { (eval echo "$as_me:25589: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25536: \$? = $ac_status" >&5 + echo "$as_me:25592: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_sizeof_long=`cat conftest.val` else @@ -25549,19 +25605,19 @@ else ac_cv_sizeof_long=0 fi fi -echo "$as_me:25552: result: $ac_cv_sizeof_long" >&5 +echo "$as_me:25608: result: $ac_cv_sizeof_long" >&5 echo "${ECHO_T}$ac_cv_sizeof_long" >&6 cat >>confdefs.h <<EOF #define SIZEOF_LONG $ac_cv_sizeof_long EOF -echo "$as_me:25558: checking for off_t" >&5 +echo "$as_me:25614: checking for off_t" >&5 echo $ECHO_N "checking for off_t... $ECHO_C" >&6 if test "${ac_cv_type_off_t+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 25564 "configure" +#line 25620 "configure" #include "confdefs.h" $ac_includes_default int @@ -25576,16 +25632,16 @@ if (sizeof (off_t)) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:25579: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:25635: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:25582: \$? = $ac_status" >&5 + echo "$as_me:25638: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:25585: \"$ac_try\"") >&5 + { (eval echo "$as_me:25641: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25588: \$? = $ac_status" >&5 + echo "$as_me:25644: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_type_off_t=yes else @@ -25595,10 +25651,10 @@ ac_cv_type_off_t=no fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:25598: result: $ac_cv_type_off_t" >&5 +echo "$as_me:25654: result: $ac_cv_type_off_t" >&5 echo "${ECHO_T}$ac_cv_type_off_t" >&6 -echo "$as_me:25601: checking size of off_t" >&5 +echo "$as_me:25657: checking size of off_t" >&5 echo $ECHO_N "checking size of off_t... $ECHO_C" >&6 if test "${ac_cv_sizeof_off_t+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -25607,7 +25663,7 @@ else if test "$cross_compiling" = yes; then # Depending upon the size, compute the lo and hi bounds. cat >conftest.$ac_ext <<_ACEOF -#line 25610 "configure" +#line 25666 "configure" #include "confdefs.h" $ac_includes_default int @@ -25619,21 +25675,21 @@ int _array_ [1 - 2 * !((sizeof (off_t)) >= 0)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:25622: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:25678: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:25625: \$? = $ac_status" >&5 + echo "$as_me:25681: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:25628: \"$ac_try\"") >&5 + { (eval echo "$as_me:25684: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25631: \$? = $ac_status" >&5 + echo "$as_me:25687: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_lo=0 ac_mid=0 while :; do cat >conftest.$ac_ext <<_ACEOF -#line 25636 "configure" +#line 25692 "configure" #include "confdefs.h" $ac_includes_default int @@ -25645,16 +25701,16 @@ int _array_ [1 - 2 * !((sizeof (off_t)) <= $ac_mid)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:25648: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:25704: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:25651: \$? = $ac_status" >&5 + echo "$as_me:25707: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:25654: \"$ac_try\"") >&5 + { (eval echo "$as_me:25710: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25657: \$? = $ac_status" >&5 + echo "$as_me:25713: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_hi=$ac_mid; break else @@ -25670,7 +25726,7 @@ cat conftest.$ac_ext >&5 ac_hi=-1 ac_mid=-1 while :; do cat >conftest.$ac_ext <<_ACEOF -#line 25673 "configure" +#line 25729 "configure" #include "confdefs.h" $ac_includes_default int @@ -25682,16 +25738,16 @@ int _array_ [1 - 2 * !((sizeof (off_t)) >= $ac_mid)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:25685: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:25741: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:25688: \$? = $ac_status" >&5 + echo "$as_me:25744: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:25691: \"$ac_try\"") >&5 + { (eval echo "$as_me:25747: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25694: \$? = $ac_status" >&5 + echo "$as_me:25750: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_lo=$ac_mid; break else @@ -25707,7 +25763,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext 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 25710 "configure" +#line 25766 "configure" #include "confdefs.h" $ac_includes_default int @@ -25719,16 +25775,16 @@ int _array_ [1 - 2 * !((sizeof (off_t)) <= $ac_mid)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:25722: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:25778: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:25725: \$? = $ac_status" >&5 + echo "$as_me:25781: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:25728: \"$ac_try\"") >&5 + { (eval echo "$as_me:25784: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25731: \$? = $ac_status" >&5 + echo "$as_me:25787: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_hi=$ac_mid else @@ -25741,12 +25797,12 @@ done ac_cv_sizeof_off_t=$ac_lo else if test "$cross_compiling" = yes; then - { { echo "$as_me:25744: error: cannot run test program while cross compiling" >&5 + { { echo "$as_me:25800: 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 25749 "configure" +#line 25805 "configure" #include "confdefs.h" $ac_includes_default int @@ -25762,15 +25818,15 @@ fclose (f); } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:25765: \"$ac_link\"") >&5 +if { (eval echo "$as_me:25821: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:25768: \$? = $ac_status" >&5 + echo "$as_me:25824: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:25770: \"$ac_try\"") >&5 + { (eval echo "$as_me:25826: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25773: \$? = $ac_status" >&5 + echo "$as_me:25829: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_sizeof_off_t=`cat conftest.val` else @@ -25786,19 +25842,19 @@ else ac_cv_sizeof_off_t=0 fi fi -echo "$as_me:25789: result: $ac_cv_sizeof_off_t" >&5 +echo "$as_me:25845: result: $ac_cv_sizeof_off_t" >&5 echo "${ECHO_T}$ac_cv_sizeof_off_t" >&6 cat >>confdefs.h <<EOF #define SIZEOF_OFF_T $ac_cv_sizeof_off_t EOF -echo "$as_me:25795: checking for time_t" >&5 +echo "$as_me:25851: checking for time_t" >&5 echo $ECHO_N "checking for time_t... $ECHO_C" >&6 if test "${ac_cv_type_time_t+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 25801 "configure" +#line 25857 "configure" #include "confdefs.h" $ac_includes_default int @@ -25813,16 +25869,16 @@ if (sizeof (time_t)) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:25816: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:25872: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:25819: \$? = $ac_status" >&5 + echo "$as_me:25875: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:25822: \"$ac_try\"") >&5 + { (eval echo "$as_me:25878: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25825: \$? = $ac_status" >&5 + echo "$as_me:25881: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_type_time_t=yes else @@ -25832,10 +25888,10 @@ ac_cv_type_time_t=no fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:25835: result: $ac_cv_type_time_t" >&5 +echo "$as_me:25891: result: $ac_cv_type_time_t" >&5 echo "${ECHO_T}$ac_cv_type_time_t" >&6 -echo "$as_me:25838: checking size of time_t" >&5 +echo "$as_me:25894: checking size of time_t" >&5 echo $ECHO_N "checking size of time_t... $ECHO_C" >&6 if test "${ac_cv_sizeof_time_t+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -25844,7 +25900,7 @@ else if test "$cross_compiling" = yes; then # Depending upon the size, compute the lo and hi bounds. cat >conftest.$ac_ext <<_ACEOF -#line 25847 "configure" +#line 25903 "configure" #include "confdefs.h" $ac_includes_default int @@ -25856,21 +25912,21 @@ int _array_ [1 - 2 * !((sizeof (time_t)) >= 0)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:25859: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:25915: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:25862: \$? = $ac_status" >&5 + echo "$as_me:25918: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:25865: \"$ac_try\"") >&5 + { (eval echo "$as_me:25921: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25868: \$? = $ac_status" >&5 + echo "$as_me:25924: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_lo=0 ac_mid=0 while :; do cat >conftest.$ac_ext <<_ACEOF -#line 25873 "configure" +#line 25929 "configure" #include "confdefs.h" $ac_includes_default int @@ -25882,16 +25938,16 @@ int _array_ [1 - 2 * !((sizeof (time_t)) <= $ac_mid)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:25885: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:25941: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:25888: \$? = $ac_status" >&5 + echo "$as_me:25944: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:25891: \"$ac_try\"") >&5 + { (eval echo "$as_me:25947: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25894: \$? = $ac_status" >&5 + echo "$as_me:25950: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_hi=$ac_mid; break else @@ -25907,7 +25963,7 @@ cat conftest.$ac_ext >&5 ac_hi=-1 ac_mid=-1 while :; do cat >conftest.$ac_ext <<_ACEOF -#line 25910 "configure" +#line 25966 "configure" #include "confdefs.h" $ac_includes_default int @@ -25919,16 +25975,16 @@ int _array_ [1 - 2 * !((sizeof (time_t)) >= $ac_mid)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:25922: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:25978: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:25925: \$? = $ac_status" >&5 + echo "$as_me:25981: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:25928: \"$ac_try\"") >&5 + { (eval echo "$as_me:25984: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25931: \$? = $ac_status" >&5 + echo "$as_me:25987: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_lo=$ac_mid; break else @@ -25944,7 +26000,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext 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 25947 "configure" +#line 26003 "configure" #include "confdefs.h" $ac_includes_default int @@ -25956,16 +26012,16 @@ int _array_ [1 - 2 * !((sizeof (time_t)) <= $ac_mid)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:25959: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:26015: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:25962: \$? = $ac_status" >&5 + echo "$as_me:26018: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:25965: \"$ac_try\"") >&5 + { (eval echo "$as_me:26021: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25968: \$? = $ac_status" >&5 + echo "$as_me:26024: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_hi=$ac_mid else @@ -25978,12 +26034,12 @@ done ac_cv_sizeof_time_t=$ac_lo else if test "$cross_compiling" = yes; then - { { echo "$as_me:25981: error: cannot run test program while cross compiling" >&5 + { { echo "$as_me:26037: 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 25986 "configure" +#line 26042 "configure" #include "confdefs.h" $ac_includes_default int @@ -25999,15 +26055,15 @@ fclose (f); } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:26002: \"$ac_link\"") >&5 +if { (eval echo "$as_me:26058: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:26005: \$? = $ac_status" >&5 + echo "$as_me:26061: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:26007: \"$ac_try\"") >&5 + { (eval echo "$as_me:26063: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:26010: \$? = $ac_status" >&5 + echo "$as_me:26066: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_sizeof_time_t=`cat conftest.val` else @@ -26023,7 +26079,7 @@ else ac_cv_sizeof_time_t=0 fi fi -echo "$as_me:26026: result: $ac_cv_sizeof_time_t" >&5 +echo "$as_me:26082: result: $ac_cv_sizeof_time_t" >&5 echo "${ECHO_T}$ac_cv_sizeof_time_t" >&6 cat >>confdefs.h <<EOF #define SIZEOF_TIME_T $ac_cv_sizeof_time_t @@ -26031,13 +26087,13 @@ EOF # The Ultrix 4.2 mips builtin alloca declared by alloca.h only works # for constant arguments. Useless! -echo "$as_me:26034: checking for working alloca.h" >&5 +echo "$as_me:26090: checking for working alloca.h" >&5 echo $ECHO_N "checking for working alloca.h... $ECHO_C" >&6 if test "${ac_cv_working_alloca_h+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 26040 "configure" +#line 26096 "configure" #include "confdefs.h" #include <alloca.h> int @@ -26049,16 +26105,16 @@ char *p = (char *) alloca (2 * sizeof (int)); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:26052: \"$ac_link\"") >&5 +if { (eval echo "$as_me:26108: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:26055: \$? = $ac_status" >&5 + echo "$as_me:26111: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:26058: \"$ac_try\"") >&5 + { (eval echo "$as_me:26114: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:26061: \$? = $ac_status" >&5 + echo "$as_me:26117: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_working_alloca_h=yes else @@ -26068,7 +26124,7 @@ ac_cv_working_alloca_h=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:26071: result: $ac_cv_working_alloca_h" >&5 +echo "$as_me:26127: result: $ac_cv_working_alloca_h" >&5 echo "${ECHO_T}$ac_cv_working_alloca_h" >&6 if test $ac_cv_working_alloca_h = yes; then @@ -26078,13 +26134,13 @@ EOF fi -echo "$as_me:26081: checking for alloca" >&5 +echo "$as_me:26137: checking for alloca" >&5 echo $ECHO_N "checking for alloca... $ECHO_C" >&6 if test "${ac_cv_func_alloca_works+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 26087 "configure" +#line 26143 "configure" #include "confdefs.h" #ifdef __GNUC__ # define alloca __builtin_alloca @@ -26116,16 +26172,16 @@ char *p = (char *) alloca (1); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:26119: \"$ac_link\"") >&5 +if { (eval echo "$as_me:26175: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:26122: \$? = $ac_status" >&5 + echo "$as_me:26178: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:26125: \"$ac_try\"") >&5 + { (eval echo "$as_me:26181: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:26128: \$? = $ac_status" >&5 + echo "$as_me:26184: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_alloca_works=yes else @@ -26135,7 +26191,7 @@ ac_cv_func_alloca_works=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:26138: result: $ac_cv_func_alloca_works" >&5 +echo "$as_me:26194: result: $ac_cv_func_alloca_works" >&5 echo "${ECHO_T}$ac_cv_func_alloca_works" >&6 if test $ac_cv_func_alloca_works = yes; then @@ -26156,13 +26212,13 @@ cat >>confdefs.h <<\EOF #define C_ALLOCA 1 EOF -echo "$as_me:26159: checking whether \`alloca.c' needs Cray hooks" >&5 +echo "$as_me:26215: checking whether \`alloca.c' needs Cray hooks" >&5 echo $ECHO_N "checking whether \`alloca.c' needs Cray hooks... $ECHO_C" >&6 if test "${ac_cv_os_cray+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 26165 "configure" +#line 26221 "configure" #include "confdefs.h" #if defined(CRAY) && ! defined(CRAY2) webecray @@ -26180,18 +26236,18 @@ fi rm -f conftest* fi -echo "$as_me:26183: result: $ac_cv_os_cray" >&5 +echo "$as_me:26239: result: $ac_cv_os_cray" >&5 echo "${ECHO_T}$ac_cv_os_cray" >&6 if test $ac_cv_os_cray = yes; then for ac_func in _getb67 GETB67 getb67; do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` -echo "$as_me:26188: checking for $ac_func" >&5 +echo "$as_me:26244: 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 26194 "configure" +#line 26250 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. */ @@ -26222,16 +26278,16 @@ f = $ac_func; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:26225: \"$ac_link\"") >&5 +if { (eval echo "$as_me:26281: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:26228: \$? = $ac_status" >&5 + echo "$as_me:26284: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:26231: \"$ac_try\"") >&5 + { (eval echo "$as_me:26287: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:26234: \$? = $ac_status" >&5 + echo "$as_me:26290: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else @@ -26241,7 +26297,7 @@ eval "$as_ac_var=no" fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:26244: result: `eval echo '${'$as_ac_var'}'`" >&5 +echo "$as_me:26300: 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 @@ -26255,7 +26311,7 @@ fi done fi -echo "$as_me:26258: checking stack direction for C alloca" >&5 +echo "$as_me:26314: checking stack direction for C alloca" >&5 echo $ECHO_N "checking stack direction for C alloca... $ECHO_C" >&6 if test "${ac_cv_c_stack_direction+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -26264,7 +26320,7 @@ else ac_cv_c_stack_direction=0 else cat >conftest.$ac_ext <<_ACEOF -#line 26267 "configure" +#line 26323 "configure" #include "confdefs.h" int find_stack_direction () @@ -26287,15 +26343,15 @@ main () } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:26290: \"$ac_link\"") >&5 +if { (eval echo "$as_me:26346: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:26293: \$? = $ac_status" >&5 + echo "$as_me:26349: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:26295: \"$ac_try\"") >&5 + { (eval echo "$as_me:26351: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:26298: \$? = $ac_status" >&5 + echo "$as_me:26354: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_c_stack_direction=1 else @@ -26307,7 +26363,7 @@ fi rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext fi fi -echo "$as_me:26310: result: $ac_cv_c_stack_direction" >&5 +echo "$as_me:26366: result: $ac_cv_c_stack_direction" >&5 echo "${ECHO_T}$ac_cv_c_stack_direction" >&6 cat >>confdefs.h <<EOF @@ -26319,23 +26375,23 @@ fi for ac_header in unistd.h vfork.h do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` -echo "$as_me:26322: checking for $ac_header" >&5 +echo "$as_me:26378: 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 26328 "configure" +#line 26384 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:26332: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:26388: \"$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:26338: \$? = $ac_status" >&5 + echo "$as_me:26394: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -26354,7 +26410,7 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:26357: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:26413: 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 <<EOF @@ -26367,13 +26423,13 @@ done for ac_func in fork vfork do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` -echo "$as_me:26370: checking for $ac_func" >&5 +echo "$as_me:26426: 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 26376 "configure" +#line 26432 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. */ @@ -26404,16 +26460,16 @@ f = $ac_func; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:26407: \"$ac_link\"") >&5 +if { (eval echo "$as_me:26463: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:26410: \$? = $ac_status" >&5 + echo "$as_me:26466: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:26413: \"$ac_try\"") >&5 + { (eval echo "$as_me:26469: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:26416: \$? = $ac_status" >&5 + echo "$as_me:26472: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else @@ -26423,7 +26479,7 @@ eval "$as_ac_var=no" fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:26426: result: `eval echo '${'$as_ac_var'}'`" >&5 +echo "$as_me:26482: 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 <<EOF @@ -26435,7 +26491,7 @@ done ac_cv_func_fork_works=$ac_cv_func_fork if test "x$ac_cv_func_fork" = xyes; then - echo "$as_me:26438: checking for working fork" >&5 + echo "$as_me:26494: checking for working fork" >&5 echo $ECHO_N "checking for working fork... $ECHO_C" >&6 if test "${ac_cv_func_fork_works+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -26458,15 +26514,15 @@ else } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:26461: \"$ac_link\"") >&5 +if { (eval echo "$as_me:26517: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:26464: \$? = $ac_status" >&5 + echo "$as_me:26520: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:26466: \"$ac_try\"") >&5 + { (eval echo "$as_me:26522: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:26469: \$? = $ac_status" >&5 + echo "$as_me:26525: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_fork_works=yes else @@ -26478,7 +26534,7 @@ fi rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext fi fi -echo "$as_me:26481: result: $ac_cv_func_fork_works" >&5 +echo "$as_me:26537: result: $ac_cv_func_fork_works" >&5 echo "${ECHO_T}$ac_cv_func_fork_works" >&6 fi @@ -26492,12 +26548,12 @@ if test "x$ac_cv_func_fork_works" = xcross; then ac_cv_func_fork_works=yes ;; esac - { echo "$as_me:26495: WARNING: CROSS: Result $ac_cv_func_fork_works guessed due to cross-compiling." >&5 + { echo "$as_me:26551: WARNING: CROSS: Result $ac_cv_func_fork_works guessed due to cross-compiling." >&5 echo "$as_me: WARNING: CROSS: Result $ac_cv_func_fork_works guessed due to cross-compiling." >&2;} fi ac_cv_func_vfork_works=$ac_cv_func_vfork if test "x$ac_cv_func_vfork" = xyes; then - echo "$as_me:26500: checking for working vfork" >&5 + echo "$as_me:26556: checking for working vfork" >&5 echo $ECHO_N "checking for working vfork... $ECHO_C" >&6 if test "${ac_cv_func_vfork_works+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -26506,7 +26562,7 @@ else ac_cv_func_vfork_works=cross else cat >conftest.$ac_ext <<_ACEOF -#line 26509 "configure" +#line 26565 "configure" #include "confdefs.h" /* Thanks to Paul Eggert for this test. */ #include <stdio.h> @@ -26603,15 +26659,15 @@ main () } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:26606: \"$ac_link\"") >&5 +if { (eval echo "$as_me:26662: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:26609: \$? = $ac_status" >&5 + echo "$as_me:26665: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:26611: \"$ac_try\"") >&5 + { (eval echo "$as_me:26667: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:26614: \$? = $ac_status" >&5 + echo "$as_me:26670: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_vfork_works=yes else @@ -26623,13 +26679,13 @@ fi rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext fi fi -echo "$as_me:26626: result: $ac_cv_func_vfork_works" >&5 +echo "$as_me:26682: result: $ac_cv_func_vfork_works" >&5 echo "${ECHO_T}$ac_cv_func_vfork_works" >&6 fi; if test "x$ac_cv_func_fork_works" = xcross; then ac_cv_func_vfork_works=ac_cv_func_vfork - { echo "$as_me:26632: WARNING: CROSS: Result $ac_cv_func_vfork_works guessed due to cross-compiling." >&5 + { echo "$as_me:26688: WARNING: CROSS: Result $ac_cv_func_vfork_works guessed due to cross-compiling." >&5 echo "$as_me: WARNING: CROSS: Result $ac_cv_func_vfork_works guessed due to cross-compiling." >&2;} fi @@ -26654,14 +26710,14 @@ EOF fi -echo "$as_me:26657: checking if we should use fcntl or ioctl" >&5 +echo "$as_me:26713: checking if we should use fcntl or ioctl" >&5 echo $ECHO_N "checking if we should use fcntl or ioctl... $ECHO_C" >&6 if test "${cf_cv_fionbio+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 26664 "configure" +#line 26720 "configure" #include "confdefs.h" #include <sys/types.h> @@ -26678,16 +26734,16 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:26681: \"$ac_link\"") >&5 +if { (eval echo "$as_me:26737: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:26684: \$? = $ac_status" >&5 + echo "$as_me:26740: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:26687: \"$ac_try\"") >&5 + { (eval echo "$as_me:26743: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:26690: \$? = $ac_status" >&5 + echo "$as_me:26746: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_fionbio=ioctl else @@ -26695,7 +26751,7 @@ else cat conftest.$ac_ext >&5 cat >conftest.$ac_ext <<_ACEOF -#line 26698 "configure" +#line 26754 "configure" #include "confdefs.h" #include <sys/types.h> @@ -26717,16 +26773,16 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:26720: \"$ac_link\"") >&5 +if { (eval echo "$as_me:26776: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:26723: \$? = $ac_status" >&5 + echo "$as_me:26779: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:26726: \"$ac_try\"") >&5 + { (eval echo "$as_me:26782: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:26729: \$? = $ac_status" >&5 + echo "$as_me:26785: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_fionbio=fcntl else @@ -26739,20 +26795,20 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:26742: result: $cf_cv_fionbio" >&5 +echo "$as_me:26798: result: $cf_cv_fionbio" >&5 echo "${ECHO_T}$cf_cv_fionbio" >&6 test "$cf_cv_fionbio" = "fcntl" && cat >>confdefs.h <<\EOF #define USE_FCNTL 1 EOF -echo "$as_me:26748: checking for broken/missing definition of remove" >&5 +echo "$as_me:26804: checking for broken/missing definition of remove" >&5 echo $ECHO_N "checking for broken/missing definition of remove... $ECHO_C" >&6 if test "${cf_cv_baddef_remove+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 26755 "configure" +#line 26811 "configure" #include "confdefs.h" #include <stdio.h> int @@ -26764,23 +26820,23 @@ remove("dummy") } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:26767: \"$ac_link\"") >&5 +if { (eval echo "$as_me:26823: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:26770: \$? = $ac_status" >&5 + echo "$as_me:26826: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:26773: \"$ac_try\"") >&5 + { (eval echo "$as_me:26829: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:26776: \$? = $ac_status" >&5 + echo "$as_me:26832: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_baddef_remove=no else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 cat >conftest.$ac_ext <<_ACEOF -#line 26783 "configure" +#line 26839 "configure" #include "confdefs.h" #include <stdio.h> int __unlink(name) { return unlink(name); } @@ -26793,16 +26849,16 @@ remove("dummy") } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:26796: \"$ac_link\"") >&5 +if { (eval echo "$as_me:26852: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:26799: \$? = $ac_status" >&5 + echo "$as_me:26855: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:26802: \"$ac_try\"") >&5 + { (eval echo "$as_me:26858: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:26805: \$? = $ac_status" >&5 + echo "$as_me:26861: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_baddef_remove=yes else @@ -26817,20 +26873,20 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:26820: result: $cf_cv_baddef_remove" >&5 +echo "$as_me:26876: result: $cf_cv_baddef_remove" >&5 echo "${ECHO_T}$cf_cv_baddef_remove" >&6 test "$cf_cv_baddef_remove" != no && cat >>confdefs.h <<\EOF #define NEED_REMOVE 1 EOF -echo "$as_me:26826: checking for lstat" >&5 +echo "$as_me:26882: checking for lstat" >&5 echo $ECHO_N "checking for lstat... $ECHO_C" >&6 if test "${ac_cv_func_lstat+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 26833 "configure" +#line 26889 "configure" #include "confdefs.h" #include <sys/types.h> @@ -26844,16 +26900,16 @@ lstat(".", (struct stat *)0) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:26847: \"$ac_link\"") >&5 +if { (eval echo "$as_me:26903: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:26850: \$? = $ac_status" >&5 + echo "$as_me:26906: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:26853: \"$ac_try\"") >&5 + { (eval echo "$as_me:26909: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:26856: \$? = $ac_status" >&5 + echo "$as_me:26912: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_lstat=yes else @@ -26865,7 +26921,7 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:26868: result: $ac_cv_func_lstat " >&5 +echo "$as_me:26924: result: $ac_cv_func_lstat " >&5 echo "${ECHO_T}$ac_cv_func_lstat " >&6 if test $ac_cv_func_lstat = yes; then cat >>confdefs.h <<\EOF @@ -26899,13 +26955,13 @@ for ac_func in \ do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` -echo "$as_me:26902: checking for $ac_func" >&5 +echo "$as_me:26958: 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 26908 "configure" +#line 26964 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. */ @@ -26936,16 +26992,16 @@ f = $ac_func; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:26939: \"$ac_link\"") >&5 +if { (eval echo "$as_me:26995: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:26942: \$? = $ac_status" >&5 + echo "$as_me:26998: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:26945: \"$ac_try\"") >&5 + { (eval echo "$as_me:27001: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:26948: \$? = $ac_status" >&5 + echo "$as_me:27004: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else @@ -26955,7 +27011,7 @@ eval "$as_ac_var=no" fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:26958: result: `eval echo '${'$as_ac_var'}'`" >&5 +echo "$as_me:27014: 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 <<EOF @@ -26971,13 +27027,13 @@ for ac_func in \ do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` -echo "$as_me:26974: checking for $ac_func" >&5 +echo "$as_me:27030: 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 26980 "configure" +#line 27036 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. */ @@ -27008,16 +27064,16 @@ f = $ac_func; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:27011: \"$ac_link\"") >&5 +if { (eval echo "$as_me:27067: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:27014: \$? = $ac_status" >&5 + echo "$as_me:27070: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:27017: \"$ac_try\"") >&5 + { (eval echo "$as_me:27073: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27020: \$? = $ac_status" >&5 + echo "$as_me:27076: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else @@ -27027,7 +27083,7 @@ eval "$as_ac_var=no" fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:27030: result: `eval echo '${'$as_ac_var'}'`" >&5 +echo "$as_me:27086: 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 <<EOF @@ -27039,7 +27095,7 @@ else fi done -echo "$as_me:27042: checking for random-integer functions" >&5 +echo "$as_me:27098: checking for random-integer functions" >&5 echo $ECHO_N "checking for random-integer functions... $ECHO_C" >&6 if test "${cf_cv_srand_func+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -27059,7 +27115,7 @@ do esac cat >conftest.$ac_ext <<_ACEOF -#line 27062 "configure" +#line 27118 "configure" #include "confdefs.h" #ifdef HAVE_STDLIB_H @@ -27078,16 +27134,16 @@ long seed = 1; $cf_srand_func(seed); seed = $cf_rand_func() } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:27081: \"$ac_link\"") >&5 +if { (eval echo "$as_me:27137: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:27084: \$? = $ac_status" >&5 + echo "$as_me:27140: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:27087: \"$ac_try\"") >&5 + { (eval echo "$as_me:27143: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27090: \$? = $ac_status" >&5 + echo "$as_me:27146: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_srand_func=$cf_func break @@ -27099,10 +27155,10 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext done fi -echo "$as_me:27102: result: $cf_cv_srand_func" >&5 +echo "$as_me:27158: result: $cf_cv_srand_func" >&5 echo "${ECHO_T}$cf_cv_srand_func" >&6 if test "$cf_cv_srand_func" != unknown ; then - echo "$as_me:27105: checking for range of random-integers" >&5 + echo "$as_me:27161: checking for range of random-integers" >&5 echo $ECHO_N "checking for range of random-integers... $ECHO_C" >&6 if test "${cf_cv_rand_max+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -27123,7 +27179,7 @@ else ;; esac cat >conftest.$ac_ext <<_ACEOF -#line 27126 "configure" +#line 27182 "configure" #include "confdefs.h" #ifdef HAVE_STDLIB_H @@ -27142,16 +27198,16 @@ long x = $cf_cv_rand_max } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:27145: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:27201: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:27148: \$? = $ac_status" >&5 + echo "$as_me:27204: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:27151: \"$ac_try\"") >&5 + { (eval echo "$as_me:27207: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27154: \$? = $ac_status" >&5 + echo "$as_me:27210: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -27162,7 +27218,7 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:27165: result: $cf_cv_rand_max" >&5 +echo "$as_me:27221: result: $cf_cv_rand_max" >&5 echo "${ECHO_T}$cf_cv_rand_max" >&6 cf_srand_func=`echo $cf_func | sed -e 's%/.*%%'` @@ -27193,13 +27249,13 @@ fi for ac_func in strstr do -echo "$as_me:27196: checking for $ac_func declaration" >&5 +echo "$as_me:27252: checking for $ac_func declaration" >&5 echo $ECHO_N "checking for $ac_func declaration... $ECHO_C" >&6 if eval "test \"\${ac_cv_func_decl_$ac_func+set}\" = set"; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 27202 "configure" +#line 27258 "configure" #include "confdefs.h" #include <string.h> int @@ -27213,20 +27269,20 @@ extern int $ac_func(); } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:27216: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:27272: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:27219: \$? = $ac_status" >&5 + echo "$as_me:27275: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:27222: \"$ac_try\"") >&5 + { (eval echo "$as_me:27278: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27225: \$? = $ac_status" >&5 + echo "$as_me:27281: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cat >conftest.$ac_ext <<_ACEOF -#line 27229 "configure" +#line 27285 "configure" #include "confdefs.h" #include <string.h> int @@ -27240,16 +27296,16 @@ int (*p)() = $ac_func; } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:27243: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:27299: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:27246: \$? = $ac_status" >&5 + echo "$as_me:27302: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:27249: \"$ac_try\"") >&5 + { (eval echo "$as_me:27305: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27252: \$? = $ac_status" >&5 + echo "$as_me:27308: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "ac_cv_func_decl_$ac_func=yes" @@ -27270,11 +27326,11 @@ rm -f conftest.$ac_objext conftest.$ac_ext fi if eval "test \"`echo '$ac_cv_func_'decl_$ac_func`\" = yes"; then - echo "$as_me:27273: result: yes" >&5 + echo "$as_me:27329: result: yes" >&5 echo "${ECHO_T}yes" >&6 : else - echo "$as_me:27277: result: no" >&5 + echo "$as_me:27333: result: no" >&5 echo "${ECHO_T}no" >&6 ac_tr_func=`echo "DECL_$ac_func" | sed y%abcdefghijklmnopqrstuvwxyz./-%ABCDEFGHIJKLMNOPQRSTUVWXYZ___%` @@ -27289,13 +27345,13 @@ done for ac_func in getgrgid getgrnam do -echo "$as_me:27292: checking for $ac_func declaration" >&5 +echo "$as_me:27348: checking for $ac_func declaration" >&5 echo $ECHO_N "checking for $ac_func declaration... $ECHO_C" >&6 if eval "test \"\${ac_cv_func_decl_$ac_func+set}\" = set"; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 27298 "configure" +#line 27354 "configure" #include "confdefs.h" #include <stdio.h> @@ -27311,20 +27367,20 @@ extern int $ac_func(); } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:27314: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:27370: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:27317: \$? = $ac_status" >&5 + echo "$as_me:27373: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:27320: \"$ac_try\"") >&5 + { (eval echo "$as_me:27376: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27323: \$? = $ac_status" >&5 + echo "$as_me:27379: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cat >conftest.$ac_ext <<_ACEOF -#line 27327 "configure" +#line 27383 "configure" #include "confdefs.h" #include <stdio.h> @@ -27340,16 +27396,16 @@ int (*p)() = $ac_func; } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:27343: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:27399: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:27346: \$? = $ac_status" >&5 + echo "$as_me:27402: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:27349: \"$ac_try\"") >&5 + { (eval echo "$as_me:27405: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27352: \$? = $ac_status" >&5 + echo "$as_me:27408: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "ac_cv_func_decl_$ac_func=yes" @@ -27370,11 +27426,11 @@ rm -f conftest.$ac_objext conftest.$ac_ext fi if eval "test \"`echo '$ac_cv_func_'decl_$ac_func`\" = yes"; then - echo "$as_me:27373: result: yes" >&5 + echo "$as_me:27429: result: yes" >&5 echo "${ECHO_T}yes" >&6 : else - echo "$as_me:27377: result: no" >&5 + echo "$as_me:27433: result: no" >&5 echo "${ECHO_T}no" >&6 ac_tr_func=`echo "DECL_$ac_func" | sed y%abcdefghijklmnopqrstuvwxyz./-%ABCDEFGHIJKLMNOPQRSTUVWXYZ___%` @@ -27386,14 +27442,14 @@ EOF fi done -echo "$as_me:27389: checking if TRUE/FALSE are defined" >&5 +echo "$as_me:27445: checking if TRUE/FALSE are defined" >&5 echo $ECHO_N "checking if TRUE/FALSE are defined... $ECHO_C" >&6 if test "${cf_cv_bool_defs+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 27396 "configure" +#line 27452 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header-curses.h}> @@ -27407,16 +27463,16 @@ int x = TRUE, y = FALSE } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:27410: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:27466: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:27413: \$? = $ac_status" >&5 + echo "$as_me:27469: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:27416: \"$ac_try\"") >&5 + { (eval echo "$as_me:27472: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27419: \$? = $ac_status" >&5 + echo "$as_me:27475: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_bool_defs=yes else @@ -27427,7 +27483,7 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:27430: result: $cf_cv_bool_defs" >&5 +echo "$as_me:27486: result: $cf_cv_bool_defs" >&5 echo "${ECHO_T}$cf_cv_bool_defs" >&6 if test "$cf_cv_bool_defs" = no ; then cat >>confdefs.h <<\EOF @@ -27440,14 +27496,14 @@ EOF fi -echo "$as_me:27443: checking if external errno is declared" >&5 +echo "$as_me:27499: checking if external errno is declared" >&5 echo $ECHO_N "checking if external errno is declared... $ECHO_C" >&6 if test "${cf_cv_dcl_errno+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 27450 "configure" +#line 27506 "configure" #include "confdefs.h" #ifdef HAVE_STDLIB_H @@ -27465,16 +27521,16 @@ int x = (int) errno } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:27468: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:27524: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:27471: \$? = $ac_status" >&5 + echo "$as_me:27527: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:27474: \"$ac_try\"") >&5 + { (eval echo "$as_me:27530: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27477: \$? = $ac_status" >&5 + echo "$as_me:27533: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_dcl_errno=yes else @@ -27485,7 +27541,7 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:27488: result: $cf_cv_dcl_errno" >&5 +echo "$as_me:27544: result: $cf_cv_dcl_errno" >&5 echo "${ECHO_T}$cf_cv_dcl_errno" >&6 if test "$cf_cv_dcl_errno" = no ; then @@ -27500,14 +27556,14 @@ fi # It's possible (for near-UNIX clones) that the data doesn't exist -echo "$as_me:27503: checking if external errno exists" >&5 +echo "$as_me:27559: checking if external errno exists" >&5 echo $ECHO_N "checking if external errno exists... $ECHO_C" >&6 if test "${cf_cv_have_errno+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 27510 "configure" +#line 27566 "configure" #include "confdefs.h" #undef errno @@ -27522,16 +27578,16 @@ errno = 2 } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:27525: \"$ac_link\"") >&5 +if { (eval echo "$as_me:27581: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:27528: \$? = $ac_status" >&5 + echo "$as_me:27584: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:27531: \"$ac_try\"") >&5 + { (eval echo "$as_me:27587: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27534: \$? = $ac_status" >&5 + echo "$as_me:27590: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_have_errno=yes else @@ -27542,7 +27598,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:27545: result: $cf_cv_have_errno" >&5 +echo "$as_me:27601: result: $cf_cv_have_errno" >&5 echo "${ECHO_T}$cf_cv_have_errno" >&6 if test "$cf_cv_have_errno" = yes ; then @@ -27555,7 +27611,7 @@ EOF fi -echo "$as_me:27558: checking if we can set errno" >&5 +echo "$as_me:27614: checking if we can set errno" >&5 echo $ECHO_N "checking if we can set errno... $ECHO_C" >&6 if test "${cf_cv_set_errno+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -27563,7 +27619,7 @@ else if test "$cross_compiling" = yes; then cat >conftest.$ac_ext <<_ACEOF -#line 27566 "configure" +#line 27622 "configure" #include "confdefs.h" #include <errno.h> int @@ -27575,16 +27631,16 @@ errno = 255 } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:27578: \"$ac_link\"") >&5 +if { (eval echo "$as_me:27634: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:27581: \$? = $ac_status" >&5 + echo "$as_me:27637: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:27584: \"$ac_try\"") >&5 + { (eval echo "$as_me:27640: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27587: \$? = $ac_status" >&5 + echo "$as_me:27643: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_set_errno=maybe else @@ -27595,7 +27651,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext else cat >conftest.$ac_ext <<_ACEOF -#line 27598 "configure" +#line 27654 "configure" #include "confdefs.h" #include <errno.h> @@ -27606,15 +27662,15 @@ int main() } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:27609: \"$ac_link\"") >&5 +if { (eval echo "$as_me:27665: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:27612: \$? = $ac_status" >&5 + echo "$as_me:27668: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:27614: \"$ac_try\"") >&5 + { (eval echo "$as_me:27670: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27617: \$? = $ac_status" >&5 + echo "$as_me:27673: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_set_errno=yes else @@ -27627,20 +27683,20 @@ rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext fi fi -echo "$as_me:27630: result: $cf_cv_set_errno" >&5 +echo "$as_me:27686: result: $cf_cv_set_errno" >&5 echo "${ECHO_T}$cf_cv_set_errno" >&6 test "$cf_cv_set_errno" != no && cat >>confdefs.h <<\EOF #define CAN_SET_ERRNO 1 EOF -echo "$as_me:27636: checking for setlocale()" >&5 +echo "$as_me:27692: checking for setlocale()" >&5 echo $ECHO_N "checking for setlocale()... $ECHO_C" >&6 if test "${cf_cv_locale+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 27643 "configure" +#line 27699 "configure" #include "confdefs.h" #include <locale.h> int @@ -27652,16 +27708,16 @@ setlocale(LC_ALL, "") } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:27655: \"$ac_link\"") >&5 +if { (eval echo "$as_me:27711: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:27658: \$? = $ac_status" >&5 + echo "$as_me:27714: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:27661: \"$ac_try\"") >&5 + { (eval echo "$as_me:27717: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27664: \$? = $ac_status" >&5 + echo "$as_me:27720: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_locale=yes else @@ -27673,21 +27729,21 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:27676: result: $cf_cv_locale" >&5 +echo "$as_me:27732: result: $cf_cv_locale" >&5 echo "${ECHO_T}$cf_cv_locale" >&6 test $cf_cv_locale = yes && { cat >>confdefs.h <<\EOF #define LOCALE 1 EOF } -echo "$as_me:27683: checking if NGROUPS is defined" >&5 +echo "$as_me:27739: checking if NGROUPS is defined" >&5 echo $ECHO_N "checking if NGROUPS is defined... $ECHO_C" >&6 if test "${cf_cv_ngroups+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 27690 "configure" +#line 27746 "configure" #include "confdefs.h" #if HAVE_SYS_PARAM_H @@ -27706,23 +27762,23 @@ int x = NGROUPS } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:27709: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:27765: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:27712: \$? = $ac_status" >&5 + echo "$as_me:27768: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:27715: \"$ac_try\"") >&5 + { (eval echo "$as_me:27771: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27718: \$? = $ac_status" >&5 + echo "$as_me:27774: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_ngroups=yes else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 cat >conftest.$ac_ext <<_ACEOF -#line 27725 "configure" +#line 27781 "configure" #include "confdefs.h" #if HAVE_SYS_PARAM_H @@ -27741,16 +27797,16 @@ int x = NGROUPS_MAX } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:27744: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:27800: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:27747: \$? = $ac_status" >&5 + echo "$as_me:27803: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:27750: \"$ac_try\"") >&5 + { (eval echo "$as_me:27806: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27753: \$? = $ac_status" >&5 + echo "$as_me:27809: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_ngroups=NGROUPS_MAX else @@ -27762,7 +27818,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext fi rm -f conftest.$ac_objext conftest.$ac_ext -echo "$as_me:27765: result: $cf_cv_ngroups" >&5 +echo "$as_me:27821: result: $cf_cv_ngroups" >&5 echo "${ECHO_T}$cf_cv_ngroups" >&6 fi @@ -27779,14 +27835,14 @@ EOF fi -echo "$as_me:27782: checking if external sys_nerr is declared" >&5 +echo "$as_me:27838: checking if external sys_nerr is declared" >&5 echo $ECHO_N "checking if external sys_nerr is declared... $ECHO_C" >&6 if test "${cf_cv_dcl_sys_nerr+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 27789 "configure" +#line 27845 "configure" #include "confdefs.h" #ifdef HAVE_STDLIB_H @@ -27804,16 +27860,16 @@ int x = (int) sys_nerr } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:27807: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:27863: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:27810: \$? = $ac_status" >&5 + echo "$as_me:27866: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:27813: \"$ac_try\"") >&5 + { (eval echo "$as_me:27869: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27816: \$? = $ac_status" >&5 + echo "$as_me:27872: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_dcl_sys_nerr=yes else @@ -27824,7 +27880,7 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:27827: result: $cf_cv_dcl_sys_nerr" >&5 +echo "$as_me:27883: result: $cf_cv_dcl_sys_nerr" >&5 echo "${ECHO_T}$cf_cv_dcl_sys_nerr" >&6 if test "$cf_cv_dcl_sys_nerr" = no ; then @@ -27839,14 +27895,14 @@ fi # It's possible (for near-UNIX clones) that the data doesn't exist -echo "$as_me:27842: checking if external sys_nerr exists" >&5 +echo "$as_me:27898: checking if external sys_nerr exists" >&5 echo $ECHO_N "checking if external sys_nerr exists... $ECHO_C" >&6 if test "${cf_cv_have_sys_nerr+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 27849 "configure" +#line 27905 "configure" #include "confdefs.h" #undef sys_nerr @@ -27861,16 +27917,16 @@ sys_nerr = 2 } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:27864: \"$ac_link\"") >&5 +if { (eval echo "$as_me:27920: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:27867: \$? = $ac_status" >&5 + echo "$as_me:27923: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:27870: \"$ac_try\"") >&5 + { (eval echo "$as_me:27926: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27873: \$? = $ac_status" >&5 + echo "$as_me:27929: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_have_sys_nerr=yes else @@ -27881,7 +27937,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:27884: result: $cf_cv_have_sys_nerr" >&5 +echo "$as_me:27940: result: $cf_cv_have_sys_nerr" >&5 echo "${ECHO_T}$cf_cv_have_sys_nerr" >&6 if test "$cf_cv_have_sys_nerr" = yes ; then @@ -27894,14 +27950,14 @@ EOF fi -echo "$as_me:27897: checking if external sys_errlist is declared" >&5 +echo "$as_me:27953: checking if external sys_errlist is declared" >&5 echo $ECHO_N "checking if external sys_errlist is declared... $ECHO_C" >&6 if test "${cf_cv_dcl_sys_errlist+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 27904 "configure" +#line 27960 "configure" #include "confdefs.h" #ifdef HAVE_STDLIB_H @@ -27919,16 +27975,16 @@ int x = (int) sys_errlist } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:27922: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:27978: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:27925: \$? = $ac_status" >&5 + echo "$as_me:27981: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:27928: \"$ac_try\"") >&5 + { (eval echo "$as_me:27984: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27931: \$? = $ac_status" >&5 + echo "$as_me:27987: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_dcl_sys_errlist=yes else @@ -27939,7 +27995,7 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:27942: result: $cf_cv_dcl_sys_errlist" >&5 +echo "$as_me:27998: result: $cf_cv_dcl_sys_errlist" >&5 echo "${ECHO_T}$cf_cv_dcl_sys_errlist" >&6 if test "$cf_cv_dcl_sys_errlist" = no ; then @@ -27954,14 +28010,14 @@ fi # It's possible (for near-UNIX clones) that the data doesn't exist -echo "$as_me:27957: checking if external sys_errlist exists" >&5 +echo "$as_me:28013: checking if external sys_errlist exists" >&5 echo $ECHO_N "checking if external sys_errlist exists... $ECHO_C" >&6 if test "${cf_cv_have_sys_errlist+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 27964 "configure" +#line 28020 "configure" #include "confdefs.h" #undef sys_errlist @@ -27976,16 +28032,16 @@ sys_errlist = 2 } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:27979: \"$ac_link\"") >&5 +if { (eval echo "$as_me:28035: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:27982: \$? = $ac_status" >&5 + echo "$as_me:28038: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:27985: \"$ac_try\"") >&5 + { (eval echo "$as_me:28041: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27988: \$? = $ac_status" >&5 + echo "$as_me:28044: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_have_sys_errlist=yes else @@ -27996,7 +28052,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:27999: result: $cf_cv_have_sys_errlist" >&5 +echo "$as_me:28055: result: $cf_cv_have_sys_errlist" >&5 echo "${ECHO_T}$cf_cv_have_sys_errlist" >&6 if test "$cf_cv_have_sys_errlist" = yes ; then @@ -28012,23 +28068,23 @@ fi for ac_header in lastlog.h paths.h do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` -echo "$as_me:28015: checking for $ac_header" >&5 +echo "$as_me:28071: 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 28021 "configure" +#line 28077 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:28025: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:28081: \"$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:28031: \$? = $ac_status" >&5 + echo "$as_me:28087: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -28047,7 +28103,7 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:28050: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:28106: 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 <<EOF @@ -28057,14 +28113,14 @@ EOF fi done -echo "$as_me:28060: checking for lastlog path" >&5 +echo "$as_me:28116: checking for lastlog path" >&5 echo $ECHO_N "checking for lastlog path... $ECHO_C" >&6 if test "${cf_cv_path_lastlog+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 28067 "configure" +#line 28123 "configure" #include "confdefs.h" #include <sys/types.h> @@ -28084,16 +28140,16 @@ char *path = _PATH_LASTLOG } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:28087: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:28143: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:28090: \$? = $ac_status" >&5 + echo "$as_me:28146: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:28093: \"$ac_try\"") >&5 + { (eval echo "$as_me:28149: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28096: \$? = $ac_status" >&5 + echo "$as_me:28152: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_path_lastlog="_PATH_LASTLOG" else @@ -28108,13 +28164,13 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:28111: result: $cf_cv_path_lastlog" >&5 +echo "$as_me:28167: result: $cf_cv_path_lastlog" >&5 echo "${ECHO_T}$cf_cv_path_lastlog" >&6 test $cf_cv_path_lastlog != no && cat >>confdefs.h <<\EOF #define USE_LASTLOG 1 EOF -echo "$as_me:28117: checking for utmp implementation" >&5 +echo "$as_me:28173: checking for utmp implementation" >&5 echo $ECHO_N "checking for utmp implementation... $ECHO_C" >&6 if test "${cf_cv_have_utmp+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -28131,7 +28187,7 @@ cf_utmp_includes=" #endif " cat >conftest.$ac_ext <<_ACEOF -#line 28134 "configure" +#line 28190 "configure" #include "confdefs.h" $cf_utmp_includes int @@ -28145,16 +28201,16 @@ struct $cf_header x; } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:28148: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:28204: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:28151: \$? = $ac_status" >&5 + echo "$as_me:28207: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:28154: \"$ac_try\"") >&5 + { (eval echo "$as_me:28210: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28157: \$? = $ac_status" >&5 + echo "$as_me:28213: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_have_utmp=$cf_header break @@ -28163,7 +28219,7 @@ else cat conftest.$ac_ext >&5 cat >conftest.$ac_ext <<_ACEOF -#line 28166 "configure" +#line 28222 "configure" #include "confdefs.h" $cf_utmp_includes int @@ -28177,16 +28233,16 @@ struct $cf_header x; } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:28180: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:28236: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:28183: \$? = $ac_status" >&5 + echo "$as_me:28239: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:28186: \"$ac_try\"") >&5 + { (eval echo "$as_me:28242: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28189: \$? = $ac_status" >&5 + echo "$as_me:28245: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_have_utmp=$cf_header break @@ -28201,7 +28257,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext done fi -echo "$as_me:28204: result: $cf_cv_have_utmp" >&5 +echo "$as_me:28260: result: $cf_cv_have_utmp" >&5 echo "${ECHO_T}$cf_cv_have_utmp" >&6 if test $cf_cv_have_utmp != no ; then @@ -28214,14 +28270,14 @@ EOF EOF if test $cf_cv_have_utmp != no ; then -echo "$as_me:28217: checking if ${cf_cv_have_utmp}.ut_host is declared" >&5 +echo "$as_me:28273: checking if ${cf_cv_have_utmp}.ut_host is declared" >&5 echo $ECHO_N "checking if ${cf_cv_have_utmp}.ut_host is declared... $ECHO_C" >&6 if test "${cf_cv_have_utmp_ut_host+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 28224 "configure" +#line 28280 "configure" #include "confdefs.h" #include <sys/types.h> @@ -28235,16 +28291,16 @@ struct $cf_cv_have_utmp x; char *y = &x.ut_host[0] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:28238: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:28294: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:28241: \$? = $ac_status" >&5 + echo "$as_me:28297: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:28244: \"$ac_try\"") >&5 + { (eval echo "$as_me:28300: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28247: \$? = $ac_status" >&5 + echo "$as_me:28303: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_have_utmp_ut_host=yes else @@ -28256,7 +28312,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:28259: result: $cf_cv_have_utmp_ut_host" >&5 +echo "$as_me:28315: result: $cf_cv_have_utmp_ut_host" >&5 echo "${ECHO_T}$cf_cv_have_utmp_ut_host" >&6 test $cf_cv_have_utmp_ut_host != no && cat >>confdefs.h <<\EOF #define HAVE_UTMP_UT_HOST 1 @@ -28265,14 +28321,14 @@ EOF fi if test $cf_cv_have_utmp != no ; then -echo "$as_me:28268: checking if ${cf_cv_have_utmp}.ut_syslen is declared" >&5 +echo "$as_me:28324: checking if ${cf_cv_have_utmp}.ut_syslen is declared" >&5 echo $ECHO_N "checking if ${cf_cv_have_utmp}.ut_syslen is declared... $ECHO_C" >&6 if test "${cf_cv_have_utmp_ut_syslen+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 28275 "configure" +#line 28331 "configure" #include "confdefs.h" #include <sys/types.h> @@ -28286,16 +28342,16 @@ struct $cf_cv_have_utmp x; int y = x.ut_syslen } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:28289: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:28345: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:28292: \$? = $ac_status" >&5 + echo "$as_me:28348: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:28295: \"$ac_try\"") >&5 + { (eval echo "$as_me:28351: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28298: \$? = $ac_status" >&5 + echo "$as_me:28354: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_have_utmp_ut_syslen=yes else @@ -28307,7 +28363,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:28310: result: $cf_cv_have_utmp_ut_syslen" >&5 +echo "$as_me:28366: result: $cf_cv_have_utmp_ut_syslen" >&5 echo "${ECHO_T}$cf_cv_have_utmp_ut_syslen" >&6 test $cf_cv_have_utmp_ut_syslen != no && cat >>confdefs.h <<\EOF #define HAVE_UTMP_UT_SYSLEN 1 @@ -28316,7 +28372,7 @@ EOF fi if test $cf_cv_have_utmp != no ; then -echo "$as_me:28319: checking if ${cf_cv_have_utmp}.ut_name is declared" >&5 +echo "$as_me:28375: checking if ${cf_cv_have_utmp}.ut_name is declared" >&5 echo $ECHO_N "checking if ${cf_cv_have_utmp}.ut_name is declared... $ECHO_C" >&6 if test "${cf_cv_have_utmp_ut_name+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -28333,7 +28389,7 @@ cf_utmp_includes=" " for cf_header in ut_name ut_user ; do cat >conftest.$ac_ext <<_ACEOF -#line 28336 "configure" +#line 28392 "configure" #include "confdefs.h" $cf_utmp_includes int @@ -28347,16 +28403,16 @@ struct $cf_cv_have_utmp x; } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:28350: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:28406: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:28353: \$? = $ac_status" >&5 + echo "$as_me:28409: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:28356: \"$ac_try\"") >&5 + { (eval echo "$as_me:28412: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28359: \$? = $ac_status" >&5 + echo "$as_me:28415: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_have_utmp_ut_name=$cf_header break @@ -28368,12 +28424,12 @@ rm -f conftest.$ac_objext conftest.$ac_ext done fi -echo "$as_me:28371: result: $cf_cv_have_utmp_ut_name" >&5 +echo "$as_me:28427: result: $cf_cv_have_utmp_ut_name" >&5 echo "${ECHO_T}$cf_cv_have_utmp_ut_name" >&6 case $cf_cv_have_utmp_ut_name in #(vi no) #(vi - { { echo "$as_me:28376: error: Cannot find declaration for ut.ut_name" >&5 + { { echo "$as_me:28432: error: Cannot find declaration for ut.ut_name" >&5 echo "$as_me: error: Cannot find declaration for ut.ut_name" >&2;} { (exit 1); exit 1; }; } ;; @@ -28387,7 +28443,7 @@ esac fi if test $cf_cv_have_utmp != no ; then -echo "$as_me:28390: checking for exit-status in $cf_cv_have_utmp" >&5 +echo "$as_me:28446: checking for exit-status in $cf_cv_have_utmp" >&5 echo $ECHO_N "checking for exit-status in $cf_cv_have_utmp... $ECHO_C" >&6 if test "${cf_cv_have_utmp_ut_xstatus+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -28400,7 +28456,7 @@ for cf_result in \ ut_exit.ut_exit do cat >conftest.$ac_ext <<_ACEOF -#line 28403 "configure" +#line 28459 "configure" #include "confdefs.h" #include <sys/types.h> @@ -28414,16 +28470,16 @@ struct $cf_cv_have_utmp x; long y = x.$cf_result = 0 } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:28417: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:28473: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:28420: \$? = $ac_status" >&5 + echo "$as_me:28476: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:28423: \"$ac_try\"") >&5 + { (eval echo "$as_me:28479: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28426: \$? = $ac_status" >&5 + echo "$as_me:28482: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_have_utmp_ut_xstatus=$cf_result break @@ -28436,7 +28492,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext done fi -echo "$as_me:28439: result: $cf_cv_have_utmp_ut_xstatus" >&5 +echo "$as_me:28495: result: $cf_cv_have_utmp_ut_xstatus" >&5 echo "${ECHO_T}$cf_cv_have_utmp_ut_xstatus" >&6 if test $cf_cv_have_utmp_ut_xstatus != no ; then cat >>confdefs.h <<\EOF @@ -28451,14 +28507,14 @@ fi fi if test $cf_cv_have_utmp != no ; then -echo "$as_me:28454: checking if ${cf_cv_have_utmp}.ut_xtime is declared" >&5 +echo "$as_me:28510: checking if ${cf_cv_have_utmp}.ut_xtime is declared" >&5 echo $ECHO_N "checking if ${cf_cv_have_utmp}.ut_xtime is declared... $ECHO_C" >&6 if test "${cf_cv_have_utmp_ut_xtime+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 28461 "configure" +#line 28517 "configure" #include "confdefs.h" #include <sys/types.h> @@ -28472,23 +28528,23 @@ struct $cf_cv_have_utmp x; long y = x.ut_xtime = 0 } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:28475: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:28531: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:28478: \$? = $ac_status" >&5 + echo "$as_me:28534: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:28481: \"$ac_try\"") >&5 + { (eval echo "$as_me:28537: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28484: \$? = $ac_status" >&5 + echo "$as_me:28540: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_have_utmp_ut_xtime=yes else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 cat >conftest.$ac_ext <<_ACEOF -#line 28491 "configure" +#line 28547 "configure" #include "confdefs.h" #include <sys/types.h> @@ -28502,16 +28558,16 @@ struct $cf_cv_have_utmp x; long y = x.ut_tv.tv_sec } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:28505: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:28561: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:28508: \$? = $ac_status" >&5 + echo "$as_me:28564: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:28511: \"$ac_try\"") >&5 + { (eval echo "$as_me:28567: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28514: \$? = $ac_status" >&5 + echo "$as_me:28570: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_have_utmp_ut_xtime=define else @@ -28525,7 +28581,7 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:28528: result: $cf_cv_have_utmp_ut_xtime" >&5 +echo "$as_me:28584: result: $cf_cv_have_utmp_ut_xtime" >&5 echo "${ECHO_T}$cf_cv_have_utmp_ut_xtime" >&6 if test $cf_cv_have_utmp_ut_xtime != no ; then cat >>confdefs.h <<\EOF @@ -28542,14 +28598,14 @@ fi fi if test $cf_cv_have_utmp != no ; then -echo "$as_me:28545: checking if ${cf_cv_have_utmp}.ut_session is declared" >&5 +echo "$as_me:28601: checking if ${cf_cv_have_utmp}.ut_session is declared" >&5 echo $ECHO_N "checking if ${cf_cv_have_utmp}.ut_session is declared... $ECHO_C" >&6 if test "${cf_cv_have_utmp_ut_session+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 28552 "configure" +#line 28608 "configure" #include "confdefs.h" #include <sys/types.h> @@ -28563,16 +28619,16 @@ struct $cf_cv_have_utmp x; long y = x.ut_session } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:28566: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:28622: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:28569: \$? = $ac_status" >&5 + echo "$as_me:28625: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:28572: \"$ac_try\"") >&5 + { (eval echo "$as_me:28628: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28575: \$? = $ac_status" >&5 + echo "$as_me:28631: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_have_utmp_ut_session=yes else @@ -28583,7 +28639,7 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:28586: result: $cf_cv_have_utmp_ut_session" >&5 +echo "$as_me:28642: result: $cf_cv_have_utmp_ut_session" >&5 echo "${ECHO_T}$cf_cv_have_utmp_ut_session" >&6 if test $cf_cv_have_utmp_ut_session != no ; then cat >>confdefs.h <<\EOF @@ -28593,7 +28649,7 @@ EOF fi fi -echo "$as_me:28596: checking if $cf_cv_have_utmp is SYSV flavor" >&5 +echo "$as_me:28652: checking if $cf_cv_have_utmp is SYSV flavor" >&5 echo $ECHO_N "checking if $cf_cv_have_utmp is SYSV flavor... $ECHO_C" >&6 if test "${cf_cv_sysv_utmp+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -28601,7 +28657,7 @@ else test "$cf_cv_have_utmp" = "utmp" && cf_prefix="ut" || cf_prefix="utx" cat >conftest.$ac_ext <<_ACEOF -#line 28604 "configure" +#line 28660 "configure" #include "confdefs.h" #include <sys/types.h> @@ -28620,16 +28676,16 @@ struct $cf_cv_have_utmp x; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:28623: \"$ac_link\"") >&5 +if { (eval echo "$as_me:28679: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:28626: \$? = $ac_status" >&5 + echo "$as_me:28682: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:28629: \"$ac_try\"") >&5 + { (eval echo "$as_me:28685: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28632: \$? = $ac_status" >&5 + echo "$as_me:28688: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_sysv_utmp=yes else @@ -28640,7 +28696,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:28643: result: $cf_cv_sysv_utmp" >&5 +echo "$as_me:28699: result: $cf_cv_sysv_utmp" >&5 echo "${ECHO_T}$cf_cv_sysv_utmp" >&6 test $cf_cv_sysv_utmp = yes && cat >>confdefs.h <<\EOF #define USE_SYSV_UTMP 1 @@ -28648,14 +28704,14 @@ EOF fi -echo "$as_me:28651: checking if external h_errno exists" >&5 +echo "$as_me:28707: checking if external h_errno exists" >&5 echo $ECHO_N "checking if external h_errno exists... $ECHO_C" >&6 if test "${cf_cv_have_h_errno+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 28658 "configure" +#line 28714 "configure" #include "confdefs.h" #undef h_errno @@ -28670,16 +28726,16 @@ h_errno = 2 } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:28673: \"$ac_link\"") >&5 +if { (eval echo "$as_me:28729: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:28676: \$? = $ac_status" >&5 + echo "$as_me:28732: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:28679: \"$ac_try\"") >&5 + { (eval echo "$as_me:28735: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28682: \$? = $ac_status" >&5 + echo "$as_me:28738: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_have_h_errno=yes else @@ -28690,7 +28746,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:28693: result: $cf_cv_have_h_errno" >&5 +echo "$as_me:28749: result: $cf_cv_have_h_errno" >&5 echo "${ECHO_T}$cf_cv_have_h_errno" >&6 if test "$cf_cv_have_h_errno" = yes ; then @@ -28703,7 +28759,7 @@ EOF fi -echo "$as_me:28706: checking if bibp: URLs should be supported" >&5 +echo "$as_me:28762: checking if bibp: URLs should be supported" >&5 echo $ECHO_N "checking if bibp: URLs should be supported... $ECHO_C" >&6 # Check whether --enable-bibp-urls or --disable-bibp-urls was given. @@ -28720,13 +28776,13 @@ else use_bibp_urls=yes fi; -echo "$as_me:28723: result: $use_bibp_urls" >&5 +echo "$as_me:28779: result: $use_bibp_urls" >&5 echo "${ECHO_T}$use_bibp_urls" >&6 test $use_bibp_urls = no && cat >>confdefs.h <<\EOF #define DISABLE_BIBP 1 EOF -echo "$as_me:28729: checking if configuration info should be browsable" >&5 +echo "$as_me:28785: checking if configuration info should be browsable" >&5 echo $ECHO_N "checking if configuration info should be browsable... $ECHO_C" >&6 # Check whether --enable-config-info or --disable-config-info was given. @@ -28743,13 +28799,13 @@ else use_config_info=yes fi; -echo "$as_me:28746: result: $use_config_info" >&5 +echo "$as_me:28802: result: $use_config_info" >&5 echo "${ECHO_T}$use_config_info" >&6 test $use_config_info = no && cat >>confdefs.h <<\EOF #define NO_CONFIG_INFO 1 EOF -echo "$as_me:28752: checking if new-style forms-based options screen should be used" >&5 +echo "$as_me:28808: checking if new-style forms-based options screen should be used" >&5 echo $ECHO_N "checking if new-style forms-based options screen should be used... $ECHO_C" >&6 # Check whether --enable-forms-options or --disable-forms-options was given. @@ -28766,13 +28822,13 @@ else use_forms_options=yes fi; -echo "$as_me:28769: result: $use_forms_options" >&5 +echo "$as_me:28825: result: $use_forms_options" >&5 echo "${ECHO_T}$use_forms_options" >&6 test $use_forms_options = no && cat >>confdefs.h <<\EOF #define NO_OPTION_FORMS 1 EOF -echo "$as_me:28775: checking if old-style options menu should be used" >&5 +echo "$as_me:28831: checking if old-style options menu should be used" >&5 echo $ECHO_N "checking if old-style options menu should be used... $ECHO_C" >&6 # Check whether --enable-menu-options or --disable-menu-options was given. @@ -28789,13 +28845,13 @@ else use_menu_options=yes fi; -echo "$as_me:28792: result: $use_menu_options" >&5 +echo "$as_me:28848: result: $use_menu_options" >&5 echo "${ECHO_T}$use_menu_options" >&6 test $use_menu_options = no && cat >>confdefs.h <<\EOF #define NO_OPTION_MENU 1 EOF -echo "$as_me:28798: checking if sessions code should be used" >&5 +echo "$as_me:28854: checking if sessions code should be used" >&5 echo $ECHO_N "checking if sessions code should be used... $ECHO_C" >&6 # Check whether --enable-sessions or --disable-sessions was given. @@ -28812,7 +28868,7 @@ else use_sessions=yes fi; -echo "$as_me:28815: result: $use_sessions" >&5 +echo "$as_me:28871: result: $use_sessions" >&5 echo "${ECHO_T}$use_sessions" >&6 if test $use_sessions != no ; then cat >>confdefs.h <<\EOF @@ -28822,7 +28878,7 @@ EOF EXTRA_OBJS="$EXTRA_OBJS LYSession\$o" fi -echo "$as_me:28825: checking if session-caching code should be used" >&5 +echo "$as_me:28881: checking if session-caching code should be used" >&5 echo $ECHO_N "checking if session-caching code should be used... $ECHO_C" >&6 # Check whether --enable-session-cache or --disable-session-cache was given. @@ -28839,7 +28895,7 @@ else use_session_cache=yes fi; -echo "$as_me:28842: result: $use_session_cache" >&5 +echo "$as_me:28898: result: $use_session_cache" >&5 echo "${ECHO_T}$use_session_cache" >&6 if test $use_session_cache != no ; then cat >>confdefs.h <<\EOF @@ -28848,7 +28904,7 @@ EOF fi -echo "$as_me:28851: checking if experimental address-list page should be used" >&5 +echo "$as_me:28907: checking if experimental address-list page should be used" >&5 echo $ECHO_N "checking if experimental address-list page should be used... $ECHO_C" >&6 # Check whether --enable-addrlist-page or --disable-addrlist-page was given. @@ -28865,13 +28921,13 @@ else use_addrlist_page=no fi; -echo "$as_me:28868: result: $use_addrlist_page" >&5 +echo "$as_me:28924: result: $use_addrlist_page" >&5 echo "${ECHO_T}$use_addrlist_page" >&6 test $use_addrlist_page != no && cat >>confdefs.h <<\EOF #define EXP_ADDRLIST_PAGE 1 EOF -echo "$as_me:28874: checking if experimental CJK logic should be used" >&5 +echo "$as_me:28930: checking if experimental CJK logic should be used" >&5 echo $ECHO_N "checking if experimental CJK logic should be used... $ECHO_C" >&6 # Check whether --enable-cjk or --disable-cjk was given. @@ -28888,13 +28944,13 @@ else use_cjk=no fi; -echo "$as_me:28891: result: $use_cjk" >&5 +echo "$as_me:28947: result: $use_cjk" >&5 echo "${ECHO_T}$use_cjk" >&6 test $use_cjk != no && cat >>confdefs.h <<\EOF #define CJK_EX 1 EOF -echo "$as_me:28897: checking if experimental Japanese UTF-8 logic should be used" >&5 +echo "$as_me:28953: checking if experimental Japanese UTF-8 logic should be used" >&5 echo $ECHO_N "checking if experimental Japanese UTF-8 logic should be used... $ECHO_C" >&6 # Check whether --enable-japanese-utf8 or --disable-japanese-utf8 was given. @@ -28911,7 +28967,7 @@ else use_ja_utf8=no fi; -echo "$as_me:28914: result: $use_ja_utf8" >&5 +echo "$as_me:28970: result: $use_ja_utf8" >&5 echo "${ECHO_T}$use_ja_utf8" >&6 if test $use_ja_utf8 != no ; then cat >>confdefs.h <<\EOF @@ -28956,7 +29012,7 @@ if test -n "$cf_searchpath/include" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 28959 "configure" +#line 29015 "configure" #include "confdefs.h" #include <stdio.h> int @@ -28968,16 +29024,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:28971: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:29027: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:28974: \$? = $ac_status" >&5 + echo "$as_me:29030: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:28977: \"$ac_try\"") >&5 + { (eval echo "$as_me:29033: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28980: \$? = $ac_status" >&5 + echo "$as_me:29036: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -28994,7 +29050,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "$cf_have_incdir" = no ; then test -n "$verbose" && echo " adding $cf_add_incdir to include-path" 1>&6 -echo "${as_me-configure}:28997: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me-configure}:29053: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -29035,7 +29091,7 @@ if test -n "$cf_searchpath/../include" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 29038 "configure" +#line 29094 "configure" #include "confdefs.h" #include <stdio.h> int @@ -29047,16 +29103,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:29050: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:29106: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:29053: \$? = $ac_status" >&5 + echo "$as_me:29109: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:29056: \"$ac_try\"") >&5 + { (eval echo "$as_me:29112: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:29059: \$? = $ac_status" >&5 + echo "$as_me:29115: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -29073,7 +29129,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "$cf_have_incdir" = no ; then test -n "$verbose" && echo " adding $cf_add_incdir to include-path" 1>&6 -echo "${as_me-configure}:29076: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me-configure}:29132: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -29089,7 +29145,7 @@ echo "${as_me-configure}:29076: testing adding $cf_add_incdir to include-path .. fi else -{ { echo "$as_me:29092: error: cannot find libiconv under $withval" >&5 +{ { echo "$as_me:29148: error: cannot find libiconv under $withval" >&5 echo "$as_me: error: cannot find libiconv under $withval" >&2;} { (exit 1); exit 1; }; } fi @@ -29114,7 +29170,7 @@ if test -n "$cf_searchpath/lib" ; then if test "$cf_have_libdir" = no ; then test -n "$verbose" && echo " adding $cf_add_libdir to library-path" 1>&6 -echo "${as_me-configure}:29117: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me-configure}:29173: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -29143,7 +29199,7 @@ if test -n "$cf_searchpath" ; then if test "$cf_have_libdir" = no ; then test -n "$verbose" && echo " adding $cf_add_libdir to library-path" 1>&6 -echo "${as_me-configure}:29146: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me-configure}:29202: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -29152,7 +29208,7 @@ echo "${as_me-configure}:29146: testing adding $cf_add_libdir to library-path .. fi else -{ { echo "$as_me:29155: error: cannot find libiconv under $withval" >&5 +{ { echo "$as_me:29211: error: cannot find libiconv under $withval" >&5 echo "$as_me: error: cannot find libiconv under $withval" >&2;} { (exit 1); exit 1; }; } fi @@ -29163,7 +29219,7 @@ done fi; - echo "$as_me:29166: checking for iconv" >&5 + echo "$as_me:29222: checking for iconv" >&5 echo $ECHO_N "checking for iconv... $ECHO_C" >&6 if test "${am_cv_func_iconv+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -29174,10 +29230,10 @@ else cf_cv_header_path_iconv= cf_cv_library_path_iconv= -echo "${as_me-configure}:29177: testing Starting FIND_LINKAGE(iconv,) ..." 1>&5 +echo "${as_me-configure}:29233: testing Starting FIND_LINKAGE(iconv,) ..." 1>&5 cat >conftest.$ac_ext <<_ACEOF -#line 29180 "configure" +#line 29236 "configure" #include "confdefs.h" #include <stdlib.h> @@ -29196,16 +29252,16 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:29199: \"$ac_link\"") >&5 +if { (eval echo "$as_me:29255: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:29202: \$? = $ac_status" >&5 + echo "$as_me:29258: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:29205: \"$ac_try\"") >&5 + { (eval echo "$as_me:29261: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:29208: \$? = $ac_status" >&5 + echo "$as_me:29264: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_find_linkage_iconv=yes @@ -29218,7 +29274,7 @@ cf_save_LIBS="$LIBS" LIBS="-liconv $cf_save_LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 29221 "configure" +#line 29277 "configure" #include "confdefs.h" #include <stdlib.h> @@ -29237,16 +29293,16 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:29240: \"$ac_link\"") >&5 +if { (eval echo "$as_me:29296: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:29243: \$? = $ac_status" >&5 + echo "$as_me:29299: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:29246: \"$ac_try\"") >&5 + { (eval echo "$as_me:29302: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:29249: \$? = $ac_status" >&5 + echo "$as_me:29305: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_find_linkage_iconv=yes @@ -29261,9 +29317,9 @@ cat conftest.$ac_ext >&5 test -n "$verbose" && echo " find linkage for iconv library" 1>&6 -echo "${as_me-configure}:29264: testing find linkage for iconv library ..." 1>&5 +echo "${as_me-configure}:29320: testing find linkage for iconv library ..." 1>&5 -echo "${as_me-configure}:29266: testing Searching for headers in FIND_LINKAGE(iconv,) ..." 1>&5 +echo "${as_me-configure}:29322: testing Searching for headers in FIND_LINKAGE(iconv,) ..." 1>&5 cf_save_CPPFLAGS="$CPPFLAGS" cf_test_CPPFLAGS="$CPPFLAGS" @@ -29372,11 +29428,11 @@ cf_search="$cf_header_path_list $cf_search" if test -d $cf_cv_header_path_iconv ; then test -n "$verbose" && echo " ... testing $cf_cv_header_path_iconv" 1>&6 -echo "${as_me-configure}:29375: testing ... testing $cf_cv_header_path_iconv ..." 1>&5 +echo "${as_me-configure}:29431: testing ... testing $cf_cv_header_path_iconv ..." 1>&5 CPPFLAGS="$cf_save_CPPFLAGS -I$cf_cv_header_path_iconv" cat >conftest.$ac_ext <<_ACEOF -#line 29379 "configure" +#line 29435 "configure" #include "confdefs.h" #include <stdlib.h> @@ -29395,21 +29451,21 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:29398: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:29454: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:29401: \$? = $ac_status" >&5 + echo "$as_me:29457: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:29404: \"$ac_try\"") >&5 + { (eval echo "$as_me:29460: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:29407: \$? = $ac_status" >&5 + echo "$as_me:29463: \$? = $ac_status" >&5 (exit $ac_status); }; }; then test -n "$verbose" && echo " ... found iconv headers in $cf_cv_header_path_iconv" 1>&6 -echo "${as_me-configure}:29412: testing ... found iconv headers in $cf_cv_header_path_iconv ..." 1>&5 +echo "${as_me-configure}:29468: testing ... found iconv headers in $cf_cv_header_path_iconv ..." 1>&5 cf_cv_find_linkage_iconv=maybe cf_test_CPPFLAGS="$CPPFLAGS" @@ -29427,7 +29483,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "$cf_cv_find_linkage_iconv" = maybe ; then -echo "${as_me-configure}:29430: testing Searching for iconv library in FIND_LINKAGE(iconv,) ..." 1>&5 +echo "${as_me-configure}:29486: testing Searching for iconv library in FIND_LINKAGE(iconv,) ..." 1>&5 cf_save_LIBS="$LIBS" cf_save_LDFLAGS="$LDFLAGS" @@ -29524,13 +29580,13 @@ cf_search="$cf_library_path_list $cf_search" if test -d $cf_cv_library_path_iconv ; then test -n "$verbose" && echo " ... testing $cf_cv_library_path_iconv" 1>&6 -echo "${as_me-configure}:29527: testing ... testing $cf_cv_library_path_iconv ..." 1>&5 +echo "${as_me-configure}:29583: testing ... testing $cf_cv_library_path_iconv ..." 1>&5 CPPFLAGS="$cf_test_CPPFLAGS" LIBS="-liconv $cf_save_LIBS" LDFLAGS="$cf_save_LDFLAGS -L$cf_cv_library_path_iconv" cat >conftest.$ac_ext <<_ACEOF -#line 29533 "configure" +#line 29589 "configure" #include "confdefs.h" #include <stdlib.h> @@ -29549,21 +29605,21 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:29552: \"$ac_link\"") >&5 +if { (eval echo "$as_me:29608: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:29555: \$? = $ac_status" >&5 + echo "$as_me:29611: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:29558: \"$ac_try\"") >&5 + { (eval echo "$as_me:29614: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:29561: \$? = $ac_status" >&5 + echo "$as_me:29617: \$? = $ac_status" >&5 (exit $ac_status); }; }; then test -n "$verbose" && echo " ... found iconv library in $cf_cv_library_path_iconv" 1>&6 -echo "${as_me-configure}:29566: testing ... found iconv library in $cf_cv_library_path_iconv ..." 1>&5 +echo "${as_me-configure}:29622: testing ... found iconv library in $cf_cv_library_path_iconv ..." 1>&5 cf_cv_find_linkage_iconv=yes cf_cv_library_file_iconv="-liconv" @@ -29602,7 +29658,7 @@ am_cv_func_iconv="no, consider installing GNU libiconv" fi fi -echo "$as_me:29605: result: $am_cv_func_iconv" >&5 +echo "$as_me:29661: result: $am_cv_func_iconv" >&5 echo "${ECHO_T}$am_cv_func_iconv" >&6 if test "$am_cv_func_iconv" = yes; then @@ -29611,14 +29667,14 @@ cat >>confdefs.h <<\EOF #define HAVE_ICONV 1 EOF - echo "$as_me:29614: checking if the declaration of iconv() needs const." >&5 + echo "$as_me:29670: checking if the declaration of iconv() needs const." >&5 echo $ECHO_N "checking if the declaration of iconv() needs const.... $ECHO_C" >&6 if test "${am_cv_proto_iconv_const+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 29621 "configure" +#line 29677 "configure" #include "confdefs.h" #include <stdlib.h> @@ -29643,16 +29699,16 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:29646: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:29702: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:29649: \$? = $ac_status" >&5 + echo "$as_me:29705: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:29652: \"$ac_try\"") >&5 + { (eval echo "$as_me:29708: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:29655: \$? = $ac_status" >&5 + echo "$as_me:29711: \$? = $ac_status" >&5 (exit $ac_status); }; }; then am_cv_proto_iconv_const=no else @@ -29662,7 +29718,7 @@ am_cv_proto_iconv_const=yes fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:29665: result: $am_cv_proto_iconv_const" >&5 +echo "$as_me:29721: result: $am_cv_proto_iconv_const" >&5 echo "${ECHO_T}$am_cv_proto_iconv_const" >&6 if test "$am_cv_proto_iconv_const" = yes ; then @@ -29704,7 +29760,7 @@ if test -n "$cf_cv_header_path_iconv" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 29707 "configure" +#line 29763 "configure" #include "confdefs.h" #include <stdio.h> int @@ -29716,16 +29772,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:29719: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:29775: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:29722: \$? = $ac_status" >&5 + echo "$as_me:29778: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:29725: \"$ac_try\"") >&5 + { (eval echo "$as_me:29781: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:29728: \$? = $ac_status" >&5 + echo "$as_me:29784: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -29742,7 +29798,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "$cf_have_incdir" = no ; then test -n "$verbose" && echo " adding $cf_add_incdir to include-path" 1>&6 -echo "${as_me-configure}:29745: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me-configure}:29801: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -29779,7 +29835,7 @@ if test -n "$cf_cv_library_path_iconv" ; then if test "$cf_have_libdir" = no ; then test -n "$verbose" && echo " adding $cf_add_libdir to library-path" 1>&6 -echo "${as_me-configure}:29782: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me-configure}:29838: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -29803,7 +29859,7 @@ curses|slang|ncurses*) esac if test "$use_dft_colors" != no ; then -echo "$as_me:29806: checking if you want to use default-colors" >&5 +echo "$as_me:29862: checking if you want to use default-colors" >&5 echo $ECHO_N "checking if you want to use default-colors... $ECHO_C" >&6 # Check whether --enable-default-colors or --disable-default-colors was given. @@ -29820,7 +29876,7 @@ else use_dft_colors=no fi; -echo "$as_me:29823: result: $use_dft_colors" >&5 +echo "$as_me:29879: result: $use_dft_colors" >&5 echo "${ECHO_T}$use_dft_colors" >&6 test $use_dft_colors = "yes" && cat >>confdefs.h <<\EOF #define USE_DEFAULT_COLORS 1 @@ -29828,7 +29884,7 @@ EOF fi -echo "$as_me:29831: checking if experimental keyboard-layout logic should be used" >&5 +echo "$as_me:29887: checking if experimental keyboard-layout logic should be used" >&5 echo $ECHO_N "checking if experimental keyboard-layout logic should be used... $ECHO_C" >&6 # Check whether --enable-kbd-layout or --disable-kbd-layout was given. @@ -29845,13 +29901,13 @@ else use_kbd_layout=no fi; -echo "$as_me:29848: result: $use_kbd_layout" >&5 +echo "$as_me:29904: result: $use_kbd_layout" >&5 echo "${ECHO_T}$use_kbd_layout" >&6 test $use_kbd_layout != no && cat >>confdefs.h <<\EOF #define EXP_KEYBOARD_LAYOUT 1 EOF -echo "$as_me:29854: checking if experimental nested-table logic should be used" >&5 +echo "$as_me:29910: checking if experimental nested-table logic should be used" >&5 echo $ECHO_N "checking if experimental nested-table logic should be used... $ECHO_C" >&6 # Check whether --enable-nested-tables or --disable-nested-tables was given. @@ -29868,13 +29924,13 @@ else use_nested_tables=no fi; -echo "$as_me:29871: result: $use_nested_tables" >&5 +echo "$as_me:29927: result: $use_nested_tables" >&5 echo "${ECHO_T}$use_nested_tables" >&6 test $use_nested_tables != no && cat >>confdefs.h <<\EOF #define EXP_NESTED_TABLES 1 EOF -echo "$as_me:29877: checking if alternative line-edit bindings should be used" >&5 +echo "$as_me:29933: checking if alternative line-edit bindings should be used" >&5 echo $ECHO_N "checking if alternative line-edit bindings should be used... $ECHO_C" >&6 # Check whether --enable-alt-bindings or --disable-alt-bindings was given. @@ -29891,13 +29947,13 @@ else use_alt_bindings=yes fi; -echo "$as_me:29894: result: $use_alt_bindings" >&5 +echo "$as_me:29950: result: $use_alt_bindings" >&5 echo "${ECHO_T}$use_alt_bindings" >&6 test $use_alt_bindings != no && cat >>confdefs.h <<\EOF #define EXP_ALT_BINDINGS 1 EOF -echo "$as_me:29900: checking if ascii case-conversion should be used" >&5 +echo "$as_me:29956: checking if ascii case-conversion should be used" >&5 echo $ECHO_N "checking if ascii case-conversion should be used... $ECHO_C" >&6 # Check whether --enable-ascii-ctypes or --disable-ascii-ctypes was given. @@ -29914,13 +29970,13 @@ else use_ascii_ctypes=yes fi; -echo "$as_me:29917: result: $use_ascii_ctypes" >&5 +echo "$as_me:29973: result: $use_ascii_ctypes" >&5 echo "${ECHO_T}$use_ascii_ctypes" >&6 test $use_ascii_ctypes != no && cat >>confdefs.h <<\EOF #define USE_ASCII_CTYPES 1 EOF -echo "$as_me:29923: checking if you want to use extended HTML DTD logic" >&5 +echo "$as_me:29979: checking if you want to use extended HTML DTD logic" >&5 echo $ECHO_N "checking if you want to use extended HTML DTD logic... $ECHO_C" >&6 # Check whether --enable-extended-dtd or --disable-extended-dtd was given. @@ -29937,13 +29993,13 @@ else use_ext_htmldtd=yes fi; -echo "$as_me:29940: result: $use_ext_htmldtd" >&5 +echo "$as_me:29996: result: $use_ext_htmldtd" >&5 echo "${ECHO_T}$use_ext_htmldtd" >&6 test $use_ext_htmldtd = "no" && cat >>confdefs.h <<\EOF #define NO_EXTENDED_HTMLDTD 1 EOF -echo "$as_me:29946: checking if file-upload logic should be used" >&5 +echo "$as_me:30002: checking if file-upload logic should be used" >&5 echo $ECHO_N "checking if file-upload logic should be used... $ECHO_C" >&6 # Check whether --enable-file-upload or --disable-file-upload was given. @@ -29960,13 +30016,13 @@ else use_file_upload=yes fi; -echo "$as_me:29963: result: $use_file_upload" >&5 +echo "$as_me:30019: result: $use_file_upload" >&5 echo "${ECHO_T}$use_file_upload" >&6 test $use_file_upload != no && cat >>confdefs.h <<\EOF #define USE_FILE_UPLOAD 1 EOF -echo "$as_me:29969: checking if IDNA support should be used" >&5 +echo "$as_me:30025: checking if IDNA support should be used" >&5 echo $ECHO_N "checking if IDNA support should be used... $ECHO_C" >&6 # Check whether --enable-idna or --disable-idna was given. @@ -29983,7 +30039,7 @@ else use_idna=yes fi; -echo "$as_me:29986: result: $use_idna" >&5 +echo "$as_me:30042: result: $use_idna" >&5 echo "${ECHO_T}$use_idna" >&6 if test "$use_idna" = yes ; then @@ -30022,7 +30078,7 @@ if test -n "$cf_searchpath/include" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 30025 "configure" +#line 30081 "configure" #include "confdefs.h" #include <stdio.h> int @@ -30034,16 +30090,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:30037: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:30093: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:30040: \$? = $ac_status" >&5 + echo "$as_me:30096: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:30043: \"$ac_try\"") >&5 + { (eval echo "$as_me:30099: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:30046: \$? = $ac_status" >&5 + echo "$as_me:30102: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -30060,7 +30116,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "$cf_have_incdir" = no ; then test -n "$verbose" && echo " adding $cf_add_incdir to include-path" 1>&6 -echo "${as_me-configure}:30063: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me-configure}:30119: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -30101,7 +30157,7 @@ if test -n "$cf_searchpath/../include" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 30104 "configure" +#line 30160 "configure" #include "confdefs.h" #include <stdio.h> int @@ -30113,16 +30169,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:30116: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:30172: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:30119: \$? = $ac_status" >&5 + echo "$as_me:30175: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:30122: \"$ac_try\"") >&5 + { (eval echo "$as_me:30178: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:30125: \$? = $ac_status" >&5 + echo "$as_me:30181: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -30139,7 +30195,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "$cf_have_incdir" = no ; then test -n "$verbose" && echo " adding $cf_add_incdir to include-path" 1>&6 -echo "${as_me-configure}:30142: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me-configure}:30198: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -30155,7 +30211,7 @@ echo "${as_me-configure}:30142: testing adding $cf_add_incdir to include-path .. fi else -{ { echo "$as_me:30158: error: cannot find under $use_idna" >&5 +{ { echo "$as_me:30214: error: cannot find under $use_idna" >&5 echo "$as_me: error: cannot find under $use_idna" >&2;} { (exit 1); exit 1; }; } fi @@ -30180,7 +30236,7 @@ if test -n "$cf_searchpath/lib" ; then if test "$cf_have_libdir" = no ; then test -n "$verbose" && echo " adding $cf_add_libdir to library-path" 1>&6 -echo "${as_me-configure}:30183: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me-configure}:30239: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -30209,7 +30265,7 @@ if test -n "$cf_searchpath" ; then if test "$cf_have_libdir" = no ; then test -n "$verbose" && echo " adding $cf_add_libdir to library-path" 1>&6 -echo "${as_me-configure}:30212: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me-configure}:30268: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -30218,7 +30274,7 @@ echo "${as_me-configure}:30212: testing adding $cf_add_libdir to library-path .. fi else -{ { echo "$as_me:30221: error: cannot find under $use_idna" >&5 +{ { echo "$as_me:30277: error: cannot find under $use_idna" >&5 echo "$as_me: error: cannot find under $use_idna" >&2;} { (exit 1); exit 1; }; } fi @@ -30232,10 +30288,10 @@ done cf_cv_header_path_idn= cf_cv_library_path_idn= -echo "${as_me-configure}:30235: testing Starting FIND_LINKAGE(idn,) ..." 1>&5 +echo "${as_me-configure}:30291: testing Starting FIND_LINKAGE(idn,) ..." 1>&5 cat >conftest.$ac_ext <<_ACEOF -#line 30238 "configure" +#line 30294 "configure" #include "confdefs.h" #include <stdio.h> @@ -30253,16 +30309,16 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:30256: \"$ac_link\"") >&5 +if { (eval echo "$as_me:30312: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:30259: \$? = $ac_status" >&5 + echo "$as_me:30315: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:30262: \"$ac_try\"") >&5 + { (eval echo "$as_me:30318: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:30265: \$? = $ac_status" >&5 + echo "$as_me:30321: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_find_linkage_idn=yes @@ -30275,7 +30331,7 @@ cf_save_LIBS="$LIBS" LIBS="-lidn $cf_save_LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 30278 "configure" +#line 30334 "configure" #include "confdefs.h" #include <stdio.h> @@ -30293,16 +30349,16 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:30296: \"$ac_link\"") >&5 +if { (eval echo "$as_me:30352: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:30299: \$? = $ac_status" >&5 + echo "$as_me:30355: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:30302: \"$ac_try\"") >&5 + { (eval echo "$as_me:30358: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:30305: \$? = $ac_status" >&5 + echo "$as_me:30361: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_find_linkage_idn=yes @@ -30317,9 +30373,9 @@ cat conftest.$ac_ext >&5 test -n "$verbose" && echo " find linkage for idn library" 1>&6 -echo "${as_me-configure}:30320: testing find linkage for idn library ..." 1>&5 +echo "${as_me-configure}:30376: testing find linkage for idn library ..." 1>&5 -echo "${as_me-configure}:30322: testing Searching for headers in FIND_LINKAGE(idn,) ..." 1>&5 +echo "${as_me-configure}:30378: testing Searching for headers in FIND_LINKAGE(idn,) ..." 1>&5 cf_save_CPPFLAGS="$CPPFLAGS" cf_test_CPPFLAGS="$CPPFLAGS" @@ -30428,11 +30484,11 @@ cf_search="$cf_header_path_list $cf_search" if test -d $cf_cv_header_path_idn ; then test -n "$verbose" && echo " ... testing $cf_cv_header_path_idn" 1>&6 -echo "${as_me-configure}:30431: testing ... testing $cf_cv_header_path_idn ..." 1>&5 +echo "${as_me-configure}:30487: testing ... testing $cf_cv_header_path_idn ..." 1>&5 CPPFLAGS="$cf_save_CPPFLAGS -I$cf_cv_header_path_idn" cat >conftest.$ac_ext <<_ACEOF -#line 30435 "configure" +#line 30491 "configure" #include "confdefs.h" #include <stdio.h> @@ -30450,21 +30506,21 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:30453: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:30509: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:30456: \$? = $ac_status" >&5 + echo "$as_me:30512: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:30459: \"$ac_try\"") >&5 + { (eval echo "$as_me:30515: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:30462: \$? = $ac_status" >&5 + echo "$as_me:30518: \$? = $ac_status" >&5 (exit $ac_status); }; }; then test -n "$verbose" && echo " ... found idn headers in $cf_cv_header_path_idn" 1>&6 -echo "${as_me-configure}:30467: testing ... found idn headers in $cf_cv_header_path_idn ..." 1>&5 +echo "${as_me-configure}:30523: testing ... found idn headers in $cf_cv_header_path_idn ..." 1>&5 cf_cv_find_linkage_idn=maybe cf_test_CPPFLAGS="$CPPFLAGS" @@ -30482,7 +30538,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "$cf_cv_find_linkage_idn" = maybe ; then -echo "${as_me-configure}:30485: testing Searching for idn library in FIND_LINKAGE(idn,) ..." 1>&5 +echo "${as_me-configure}:30541: testing Searching for idn library in FIND_LINKAGE(idn,) ..." 1>&5 cf_save_LIBS="$LIBS" cf_save_LDFLAGS="$LDFLAGS" @@ -30579,13 +30635,13 @@ cf_search="$cf_library_path_list $cf_search" if test -d $cf_cv_library_path_idn ; then test -n "$verbose" && echo " ... testing $cf_cv_library_path_idn" 1>&6 -echo "${as_me-configure}:30582: testing ... testing $cf_cv_library_path_idn ..." 1>&5 +echo "${as_me-configure}:30638: testing ... testing $cf_cv_library_path_idn ..." 1>&5 CPPFLAGS="$cf_test_CPPFLAGS" LIBS="-lidn $cf_save_LIBS" LDFLAGS="$cf_save_LDFLAGS -L$cf_cv_library_path_idn" cat >conftest.$ac_ext <<_ACEOF -#line 30588 "configure" +#line 30644 "configure" #include "confdefs.h" #include <stdio.h> @@ -30603,21 +30659,21 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:30606: \"$ac_link\"") >&5 +if { (eval echo "$as_me:30662: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:30609: \$? = $ac_status" >&5 + echo "$as_me:30665: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:30612: \"$ac_try\"") >&5 + { (eval echo "$as_me:30668: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:30615: \$? = $ac_status" >&5 + echo "$as_me:30671: \$? = $ac_status" >&5 (exit $ac_status); }; }; then test -n "$verbose" && echo " ... found idn library in $cf_cv_library_path_idn" 1>&6 -echo "${as_me-configure}:30620: testing ... found idn library in $cf_cv_library_path_idn ..." 1>&5 +echo "${as_me-configure}:30676: testing ... found idn library in $cf_cv_library_path_idn ..." 1>&5 cf_cv_find_linkage_idn=yes cf_cv_library_file_idn="-lidn" @@ -30679,7 +30735,7 @@ if test -n "$cf_cv_header_path_idn" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 30682 "configure" +#line 30738 "configure" #include "confdefs.h" #include <stdio.h> int @@ -30691,16 +30747,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:30694: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:30750: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:30697: \$? = $ac_status" >&5 + echo "$as_me:30753: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:30700: \"$ac_try\"") >&5 + { (eval echo "$as_me:30756: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:30703: \$? = $ac_status" >&5 + echo "$as_me:30759: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -30717,7 +30773,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "$cf_have_incdir" = no ; then test -n "$verbose" && echo " adding $cf_add_incdir to include-path" 1>&6 -echo "${as_me-configure}:30720: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me-configure}:30776: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -30751,7 +30807,7 @@ if test -n "$cf_cv_library_path_idn" ; then if test "$cf_have_libdir" = no ; then test -n "$verbose" && echo " adding $cf_add_libdir to library-path" 1>&6 -echo "${as_me-configure}:30754: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me-configure}:30810: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -30760,13 +30816,13 @@ echo "${as_me-configure}:30754: testing adding $cf_add_libdir to library-path .. fi else -{ echo "$as_me:30763: WARNING: Cannot find idn library" >&5 +{ echo "$as_me:30819: WARNING: Cannot find idn library" >&5 echo "$as_me: WARNING: Cannot find idn library" >&2;} fi fi -echo "$as_me:30769: checking if element-justification logic should be used" >&5 +echo "$as_me:30825: checking if element-justification logic should be used" >&5 echo $ECHO_N "checking if element-justification logic should be used... $ECHO_C" >&6 # Check whether --enable-justify-elts or --disable-justify-elts was given. @@ -30783,13 +30839,13 @@ else use_justify_elts=yes fi; -echo "$as_me:30786: result: $use_justify_elts" >&5 +echo "$as_me:30842: result: $use_justify_elts" >&5 echo "${ECHO_T}$use_justify_elts" >&6 test $use_justify_elts != no && cat >>confdefs.h <<\EOF #define USE_JUSTIFY_ELTS 1 EOF -echo "$as_me:30792: checking if partial-display should be used" >&5 +echo "$as_me:30848: checking if partial-display should be used" >&5 echo $ECHO_N "checking if partial-display should be used... $ECHO_C" >&6 # Check whether --enable-partial or --disable-partial was given. @@ -30806,13 +30862,13 @@ else use_partial_display=yes fi; -echo "$as_me:30809: result: $use_partial_display" >&5 +echo "$as_me:30865: result: $use_partial_display" >&5 echo "${ECHO_T}$use_partial_display" >&6 test $use_partial_display != no && cat >>confdefs.h <<\EOF #define DISP_PARTIAL 1 EOF -echo "$as_me:30815: checking if persistent-cookie logic should be used" >&5 +echo "$as_me:30871: checking if persistent-cookie logic should be used" >&5 echo $ECHO_N "checking if persistent-cookie logic should be used... $ECHO_C" >&6 # Check whether --enable-persistent-cookies or --disable-persistent-cookies was given. @@ -30829,13 +30885,13 @@ else use_filed_cookies=yes fi; -echo "$as_me:30832: result: $use_filed_cookies" >&5 +echo "$as_me:30888: result: $use_filed_cookies" >&5 echo "${ECHO_T}$use_filed_cookies" >&6 test $use_filed_cookies != no && cat >>confdefs.h <<\EOF #define USE_PERSISTENT_COOKIES 1 EOF -echo "$as_me:30838: checking if html source should be colorized" >&5 +echo "$as_me:30894: checking if html source should be colorized" >&5 echo $ECHO_N "checking if html source should be colorized... $ECHO_C" >&6 # Check whether --enable-prettysrc or --disable-prettysrc was given. @@ -30852,13 +30908,13 @@ else use_prettysrc=yes fi; -echo "$as_me:30855: result: $use_prettysrc" >&5 +echo "$as_me:30911: result: $use_prettysrc" >&5 echo "${ECHO_T}$use_prettysrc" >&6 test $use_prettysrc != no && cat >>confdefs.h <<\EOF #define USE_PRETTYSRC 1 EOF -echo "$as_me:30861: checking if progress-bar code should be used" >&5 +echo "$as_me:30917: checking if progress-bar code should be used" >&5 echo $ECHO_N "checking if progress-bar code should be used... $ECHO_C" >&6 # Check whether --enable-progressbar or --disable-progressbar was given. @@ -30875,13 +30931,13 @@ else use_progressbar=yes fi; -echo "$as_me:30878: result: $use_progressbar" >&5 +echo "$as_me:30934: result: $use_progressbar" >&5 echo "${ECHO_T}$use_progressbar" >&6 test $use_progressbar != no && cat >>confdefs.h <<\EOF #define USE_PROGRESSBAR 1 EOF -echo "$as_me:30884: checking if read-progress message should show ETA" >&5 +echo "$as_me:30940: checking if read-progress message should show ETA" >&5 echo $ECHO_N "checking if read-progress message should show ETA... $ECHO_C" >&6 # Check whether --enable-read-eta or --disable-read-eta was given. @@ -30898,13 +30954,13 @@ else use_read_eta=yes fi; -echo "$as_me:30901: result: $use_read_eta" >&5 +echo "$as_me:30957: result: $use_read_eta" >&5 echo "${ECHO_T}$use_read_eta" >&6 test $use_read_eta != no && cat >>confdefs.h <<\EOF #define USE_READPROGRESS 1 EOF -echo "$as_me:30907: checking if source caching should be used" >&5 +echo "$as_me:30963: checking if source caching should be used" >&5 echo $ECHO_N "checking if source caching should be used... $ECHO_C" >&6 # Check whether --enable-source-cache or --disable-source-cache was given. @@ -30921,13 +30977,13 @@ else use_source_cache=yes fi; -echo "$as_me:30924: result: $use_source_cache" >&5 +echo "$as_me:30980: result: $use_source_cache" >&5 echo "${ECHO_T}$use_source_cache" >&6 test $use_source_cache != no && cat >>confdefs.h <<\EOF #define USE_SOURCE_CACHE 1 EOF -echo "$as_me:30930: checking if scrollbar code should be used" >&5 +echo "$as_me:30986: checking if scrollbar code should be used" >&5 echo $ECHO_N "checking if scrollbar code should be used... $ECHO_C" >&6 # Check whether --enable-scrollbar or --disable-scrollbar was given. @@ -30944,10 +31000,10 @@ else use_scrollbar=yes fi; -echo "$as_me:30947: result: $use_scrollbar" >&5 +echo "$as_me:31003: result: $use_scrollbar" >&5 echo "${ECHO_T}$use_scrollbar" >&6 -echo "$as_me:30950: checking if charset-selection logic should be used" >&5 +echo "$as_me:31006: checking if charset-selection logic should be used" >&5 echo $ECHO_N "checking if charset-selection logic should be used... $ECHO_C" >&6 # Check whether --enable-charset-choice or --disable-charset-choice was given. @@ -30964,13 +31020,13 @@ else use_charset_choice=no fi; -echo "$as_me:30967: result: $use_charset_choice" >&5 +echo "$as_me:31023: result: $use_charset_choice" >&5 echo "${ECHO_T}$use_charset_choice" >&6 test $use_charset_choice != no && cat >>confdefs.h <<\EOF #define USE_CHARSET_CHOICE 1 EOF -echo "$as_me:30973: checking if you want to use external commands" >&5 +echo "$as_me:31029: checking if you want to use external commands" >&5 echo $ECHO_N "checking if you want to use external commands... $ECHO_C" >&6 # Check whether --enable-externs or --disable-externs was given. @@ -30987,7 +31043,7 @@ else use_externs=no fi; -echo "$as_me:30990: result: $use_externs" >&5 +echo "$as_me:31046: result: $use_externs" >&5 echo "${ECHO_T}$use_externs" >&6 if test $use_externs != "no" ; then cat >>confdefs.h <<\EOF @@ -30997,7 +31053,7 @@ EOF EXTRA_OBJS="$EXTRA_OBJS LYExtern\$o" fi -echo "$as_me:31000: checking if you want to use setfont support" >&5 +echo "$as_me:31056: checking if you want to use setfont support" >&5 echo $ECHO_N "checking if you want to use setfont support... $ECHO_C" >&6 # Check whether --enable-font-switch or --disable-font-switch was given. @@ -31014,7 +31070,7 @@ else use_setfont=no fi; -echo "$as_me:31017: result: $use_setfont" >&5 +echo "$as_me:31073: result: $use_setfont" >&5 echo "${ECHO_T}$use_setfont" >&6 if test $use_setfont = yes ; then case $host_os in @@ -31025,7 +31081,7 @@ for ac_prog in $SETFONT consolechars setfont 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:31028: checking for $ac_word" >&5 +echo "$as_me:31084: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_path_SETFONT+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -31042,7 +31098,7 @@ for ac_dir in $ac_dummy; do test -z "$ac_dir" && ac_dir=. if $as_executable_p "$ac_dir/$ac_word"; then ac_cv_path_SETFONT="$ac_dir/$ac_word" - echo "$as_me:31045: found $ac_dir/$ac_word" >&5 + echo "$as_me:31101: found $ac_dir/$ac_word" >&5 break fi done @@ -31053,10 +31109,10 @@ fi SETFONT=$ac_cv_path_SETFONT if test -n "$SETFONT"; then - echo "$as_me:31056: result: $SETFONT" >&5 + echo "$as_me:31112: result: $SETFONT" >&5 echo "${ECHO_T}$SETFONT" >&6 else - echo "$as_me:31059: result: no" >&5 + echo "$as_me:31115: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -31115,7 +31171,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me-configure}:31118: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me-configure}:31174: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define SETFONT_PATH "$cf_path_prog" @@ -31132,19 +31188,19 @@ fi SETFONT=built-in test -n "$verbose" && echo " Assume $host_os has font-switching" 1>&6 -echo "${as_me-configure}:31135: testing Assume $host_os has font-switching ..." 1>&5 +echo "${as_me-configure}:31191: testing Assume $host_os has font-switching ..." 1>&5 ;; *) SETFONT=unknown test -n "$verbose" && echo " Assume $host_os has no font-switching" 1>&6 -echo "${as_me-configure}:31142: testing Assume $host_os has no font-switching ..." 1>&5 +echo "${as_me-configure}:31198: testing Assume $host_os has no font-switching ..." 1>&5 ;; esac if test -z "$SETFONT" ; then - { echo "$as_me:31147: WARNING: Cannot find a font-setting program" >&5 + { echo "$as_me:31203: WARNING: Cannot find a font-setting program" >&5 echo "$as_me: WARNING: Cannot find a font-setting program" >&2;} elif test "$SETFONT" != unknown ; then cat >>confdefs.h <<\EOF @@ -31154,7 +31210,7 @@ EOF fi fi -echo "$as_me:31157: checking if you want cgi-link support" >&5 +echo "$as_me:31213: checking if you want cgi-link support" >&5 echo $ECHO_N "checking if you want cgi-link support... $ECHO_C" >&6 # Check whether --enable-cgi-links or --disable-cgi-links was given. @@ -31170,10 +31226,10 @@ EOF else enableval=no fi; -echo "$as_me:31173: result: $enableval" >&5 +echo "$as_me:31229: result: $enableval" >&5 echo "${ECHO_T}$enableval" >&6 -echo "$as_me:31176: checking if you want change-exec support" >&5 +echo "$as_me:31232: checking if you want change-exec support" >&5 echo $ECHO_N "checking if you want change-exec support... $ECHO_C" >&6 # Check whether --enable-change-exec or --disable-change-exec was given. @@ -31190,13 +31246,13 @@ else use_change_exec=no fi; -echo "$as_me:31193: result: $use_change_exec" >&5 +echo "$as_me:31249: result: $use_change_exec" >&5 echo "${ECHO_T}$use_change_exec" >&6 test $use_change_exec = yes && cat >>confdefs.h <<\EOF #define ENABLE_OPTS_CHANGE_EXEC 1 EOF -echo "$as_me:31199: checking if you want exec-links support" >&5 +echo "$as_me:31255: checking if you want exec-links support" >&5 echo $ECHO_N "checking if you want exec-links support... $ECHO_C" >&6 # Check whether --enable-exec-links or --disable-exec-links was given. @@ -31213,13 +31269,13 @@ else use_exec_links=$enableval fi; -echo "$as_me:31216: result: $use_exec_links" >&5 +echo "$as_me:31272: result: $use_exec_links" >&5 echo "${ECHO_T}$use_exec_links" >&6 test $use_exec_links = yes && cat >>confdefs.h <<\EOF #define EXEC_LINKS 1 EOF -echo "$as_me:31222: checking if you want exec-scripts support" >&5 +echo "$as_me:31278: checking if you want exec-scripts support" >&5 echo $ECHO_N "checking if you want exec-scripts support... $ECHO_C" >&6 # Check whether --enable-exec-scripts or --disable-exec-scripts was given. @@ -31236,13 +31292,13 @@ else use_exec_scripts=$enableval fi; -echo "$as_me:31239: result: $use_exec_scripts" >&5 +echo "$as_me:31295: result: $use_exec_scripts" >&5 echo "${ECHO_T}$use_exec_scripts" >&6 test $use_exec_scripts = yes && cat >>confdefs.h <<\EOF #define EXEC_SCRIPTS 1 EOF -echo "$as_me:31245: checking if you want internal-links feature" >&5 +echo "$as_me:31301: checking if you want internal-links feature" >&5 echo $ECHO_N "checking if you want internal-links feature... $ECHO_C" >&6 # Check whether --enable-internal-links or --disable-internal-links was given. @@ -31259,13 +31315,13 @@ else use_internal_links=no fi; -echo "$as_me:31262: result: $use_internal_links" >&5 +echo "$as_me:31318: result: $use_internal_links" >&5 echo "${ECHO_T}$use_internal_links" >&6 test $use_internal_links = no && cat >>confdefs.h <<\EOF #define DONT_TRACK_INTERNAL_LINKS 1 EOF -echo "$as_me:31268: checking if you want to fork NSL requests" >&5 +echo "$as_me:31324: checking if you want to fork NSL requests" >&5 echo $ECHO_N "checking if you want to fork NSL requests... $ECHO_C" >&6 # Check whether --enable-nsl-fork or --disable-nsl-fork was given. @@ -31282,7 +31338,7 @@ else use_nsl_fork=no fi; -echo "$as_me:31285: result: $use_nsl_fork" >&5 +echo "$as_me:31341: result: $use_nsl_fork" >&5 echo "${ECHO_T}$use_nsl_fork" >&6 if test $use_nsl_fork = yes ; then case $host_os in @@ -31301,7 +31357,7 @@ EOF esac fi -echo "$as_me:31304: checking if you want to log URL requests via syslog" >&5 +echo "$as_me:31360: checking if you want to log URL requests via syslog" >&5 echo $ECHO_N "checking if you want to log URL requests via syslog... $ECHO_C" >&6 # Check whether --enable-syslog or --disable-syslog was given. @@ -31318,13 +31374,13 @@ else use_syslog=no fi; -echo "$as_me:31321: result: $use_syslog" >&5 +echo "$as_me:31377: result: $use_syslog" >&5 echo "${ECHO_T}$use_syslog" >&6 test $use_syslog = yes && cat >>confdefs.h <<\EOF #define SYSLOG_REQUESTED_URLS 1 EOF -echo "$as_me:31327: checking if you want to underline links" >&5 +echo "$as_me:31383: checking if you want to underline links" >&5 echo $ECHO_N "checking if you want to underline links... $ECHO_C" >&6 # Check whether --enable-underlines or --disable-underlines was given. @@ -31341,7 +31397,7 @@ else use_underline=no fi; -echo "$as_me:31344: result: $use_underline" >&5 +echo "$as_me:31400: result: $use_underline" >&5 echo "${ECHO_T}$use_underline" >&6 test $use_underline = yes && cat >>confdefs.h <<\EOF #define UNDERLINE_LINKS 1 @@ -31351,7 +31407,7 @@ test $use_underline = no && cat >>confdefs.h <<\EOF #define UNDERLINE_LINKS 0 EOF -echo "$as_me:31354: checking if help files should be gzip'ed" >&5 +echo "$as_me:31410: checking if help files should be gzip'ed" >&5 echo $ECHO_N "checking if help files should be gzip'ed... $ECHO_C" >&6 # Check whether --enable-gzip-help or --disable-gzip-help was given. @@ -31368,10 +31424,10 @@ else use_gzip_help=no fi; -echo "$as_me:31371: result: $use_gzip_help" >&5 +echo "$as_me:31427: result: $use_gzip_help" >&5 echo "${ECHO_T}$use_gzip_help" >&6 -echo "$as_me:31374: checking if you want to use libbz2 for decompression of some bzip2 files" >&5 +echo "$as_me:31430: checking if you want to use libbz2 for decompression of some bzip2 files" >&5 echo $ECHO_N "checking if you want to use libbz2 for decompression of some bzip2 files... $ECHO_C" >&6 # Check whether --with-bzlib or --without-bzlib was given. @@ -31381,7 +31437,7 @@ if test "${with_bzlib+set}" = set; then else use_bzlib=no fi; -echo "$as_me:31384: result: $use_bzlib" >&5 +echo "$as_me:31440: result: $use_bzlib" >&5 echo "${ECHO_T}$use_bzlib" >&6 if test ".$use_bzlib" != ".no" ; then @@ -31420,7 +31476,7 @@ if test -n "$cf_searchpath/include" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 31423 "configure" +#line 31479 "configure" #include "confdefs.h" #include <stdio.h> int @@ -31432,16 +31488,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:31435: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:31491: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:31438: \$? = $ac_status" >&5 + echo "$as_me:31494: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:31441: \"$ac_try\"") >&5 + { (eval echo "$as_me:31497: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:31444: \$? = $ac_status" >&5 + echo "$as_me:31500: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -31458,7 +31514,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "$cf_have_incdir" = no ; then test -n "$verbose" && echo " adding $cf_add_incdir to include-path" 1>&6 -echo "${as_me-configure}:31461: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me-configure}:31517: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -31499,7 +31555,7 @@ if test -n "$cf_searchpath/../include" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 31502 "configure" +#line 31558 "configure" #include "confdefs.h" #include <stdio.h> int @@ -31511,16 +31567,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:31514: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:31570: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:31517: \$? = $ac_status" >&5 + echo "$as_me:31573: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:31520: \"$ac_try\"") >&5 + { (eval echo "$as_me:31576: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:31523: \$? = $ac_status" >&5 + echo "$as_me:31579: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -31537,7 +31593,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "$cf_have_incdir" = no ; then test -n "$verbose" && echo " adding $cf_add_incdir to include-path" 1>&6 -echo "${as_me-configure}:31540: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me-configure}:31596: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -31553,7 +31609,7 @@ echo "${as_me-configure}:31540: testing adding $cf_add_incdir to include-path .. fi else -{ { echo "$as_me:31556: error: cannot find under $use_bzlib" >&5 +{ { echo "$as_me:31612: error: cannot find under $use_bzlib" >&5 echo "$as_me: error: cannot find under $use_bzlib" >&2;} { (exit 1); exit 1; }; } fi @@ -31578,7 +31634,7 @@ if test -n "$cf_searchpath/lib" ; then if test "$cf_have_libdir" = no ; then test -n "$verbose" && echo " adding $cf_add_libdir to library-path" 1>&6 -echo "${as_me-configure}:31581: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me-configure}:31637: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -31607,7 +31663,7 @@ if test -n "$cf_searchpath" ; then if test "$cf_have_libdir" = no ; then test -n "$verbose" && echo " adding $cf_add_libdir to library-path" 1>&6 -echo "${as_me-configure}:31610: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me-configure}:31666: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -31616,7 +31672,7 @@ echo "${as_me-configure}:31610: testing adding $cf_add_libdir to library-path .. fi else -{ { echo "$as_me:31619: error: cannot find under $use_bzlib" >&5 +{ { echo "$as_me:31675: error: cannot find under $use_bzlib" >&5 echo "$as_me: error: cannot find under $use_bzlib" >&2;} { (exit 1); exit 1; }; } fi @@ -31630,10 +31686,10 @@ done cf_cv_header_path_bz2= cf_cv_library_path_bz2= -echo "${as_me-configure}:31633: testing Starting FIND_LINKAGE(bz2,bzlib) ..." 1>&5 +echo "${as_me-configure}:31689: testing Starting FIND_LINKAGE(bz2,bzlib) ..." 1>&5 cat >conftest.$ac_ext <<_ACEOF -#line 31636 "configure" +#line 31692 "configure" #include "confdefs.h" #include <stdio.h> @@ -31650,16 +31706,16 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:31653: \"$ac_link\"") >&5 +if { (eval echo "$as_me:31709: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:31656: \$? = $ac_status" >&5 + echo "$as_me:31712: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:31659: \"$ac_try\"") >&5 + { (eval echo "$as_me:31715: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:31662: \$? = $ac_status" >&5 + echo "$as_me:31718: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_find_linkage_bz2=yes @@ -31672,7 +31728,7 @@ cf_save_LIBS="$LIBS" LIBS="-lbz2 $cf_save_LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 31675 "configure" +#line 31731 "configure" #include "confdefs.h" #include <stdio.h> @@ -31689,16 +31745,16 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:31692: \"$ac_link\"") >&5 +if { (eval echo "$as_me:31748: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:31695: \$? = $ac_status" >&5 + echo "$as_me:31751: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:31698: \"$ac_try\"") >&5 + { (eval echo "$as_me:31754: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:31701: \$? = $ac_status" >&5 + echo "$as_me:31757: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_find_linkage_bz2=yes @@ -31713,9 +31769,9 @@ cat conftest.$ac_ext >&5 test -n "$verbose" && echo " find linkage for bz2 library" 1>&6 -echo "${as_me-configure}:31716: testing find linkage for bz2 library ..." 1>&5 +echo "${as_me-configure}:31772: testing find linkage for bz2 library ..." 1>&5 -echo "${as_me-configure}:31718: testing Searching for headers in FIND_LINKAGE(bz2,bzlib) ..." 1>&5 +echo "${as_me-configure}:31774: testing Searching for headers in FIND_LINKAGE(bz2,bzlib) ..." 1>&5 cf_save_CPPFLAGS="$CPPFLAGS" cf_test_CPPFLAGS="$CPPFLAGS" @@ -31824,11 +31880,11 @@ cf_search="$cf_header_path_list $cf_search" if test -d $cf_cv_header_path_bz2 ; then test -n "$verbose" && echo " ... testing $cf_cv_header_path_bz2" 1>&6 -echo "${as_me-configure}:31827: testing ... testing $cf_cv_header_path_bz2 ..." 1>&5 +echo "${as_me-configure}:31883: testing ... testing $cf_cv_header_path_bz2 ..." 1>&5 CPPFLAGS="$cf_save_CPPFLAGS -I$cf_cv_header_path_bz2" cat >conftest.$ac_ext <<_ACEOF -#line 31831 "configure" +#line 31887 "configure" #include "confdefs.h" #include <stdio.h> @@ -31845,21 +31901,21 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:31848: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:31904: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:31851: \$? = $ac_status" >&5 + echo "$as_me:31907: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:31854: \"$ac_try\"") >&5 + { (eval echo "$as_me:31910: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:31857: \$? = $ac_status" >&5 + echo "$as_me:31913: \$? = $ac_status" >&5 (exit $ac_status); }; }; then test -n "$verbose" && echo " ... found bz2 headers in $cf_cv_header_path_bz2" 1>&6 -echo "${as_me-configure}:31862: testing ... found bz2 headers in $cf_cv_header_path_bz2 ..." 1>&5 +echo "${as_me-configure}:31918: testing ... found bz2 headers in $cf_cv_header_path_bz2 ..." 1>&5 cf_cv_find_linkage_bz2=maybe cf_test_CPPFLAGS="$CPPFLAGS" @@ -31877,7 +31933,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "$cf_cv_find_linkage_bz2" = maybe ; then -echo "${as_me-configure}:31880: testing Searching for bz2 library in FIND_LINKAGE(bz2,bzlib) ..." 1>&5 +echo "${as_me-configure}:31936: testing Searching for bz2 library in FIND_LINKAGE(bz2,bzlib) ..." 1>&5 cf_save_LIBS="$LIBS" cf_save_LDFLAGS="$LDFLAGS" @@ -31885,7 +31941,7 @@ echo "${as_me-configure}:31880: testing Searching for bz2 library in FIND_LINKAG CPPFLAGS="$cf_test_CPPFLAGS" LIBS="-lbz2 $cf_save_LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 31888 "configure" +#line 31944 "configure" #include "confdefs.h" #include <stdio.h> @@ -31902,21 +31958,21 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:31905: \"$ac_link\"") >&5 +if { (eval echo "$as_me:31961: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:31908: \$? = $ac_status" >&5 + echo "$as_me:31964: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:31911: \"$ac_try\"") >&5 + { (eval echo "$as_me:31967: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:31914: \$? = $ac_status" >&5 + echo "$as_me:31970: \$? = $ac_status" >&5 (exit $ac_status); }; }; then test -n "$verbose" && echo " ... found bz2 library in system" 1>&6 -echo "${as_me-configure}:31919: testing ... found bz2 library in system ..." 1>&5 +echo "${as_me-configure}:31975: testing ... found bz2 library in system ..." 1>&5 cf_cv_find_linkage_bz2=yes else @@ -32019,13 +32075,13 @@ cf_search="$cf_library_path_list $cf_search" if test -d $cf_cv_library_path_bz2 ; then test -n "$verbose" && echo " ... testing $cf_cv_library_path_bz2" 1>&6 -echo "${as_me-configure}:32022: testing ... testing $cf_cv_library_path_bz2 ..." 1>&5 +echo "${as_me-configure}:32078: testing ... testing $cf_cv_library_path_bz2 ..." 1>&5 CPPFLAGS="$cf_test_CPPFLAGS" LIBS="-lbz2 $cf_save_LIBS" LDFLAGS="$cf_save_LDFLAGS -L$cf_cv_library_path_bz2" cat >conftest.$ac_ext <<_ACEOF -#line 32028 "configure" +#line 32084 "configure" #include "confdefs.h" #include <stdio.h> @@ -32042,21 +32098,21 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:32045: \"$ac_link\"") >&5 +if { (eval echo "$as_me:32101: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:32048: \$? = $ac_status" >&5 + echo "$as_me:32104: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:32051: \"$ac_try\"") >&5 + { (eval echo "$as_me:32107: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:32054: \$? = $ac_status" >&5 + echo "$as_me:32110: \$? = $ac_status" >&5 (exit $ac_status); }; }; then test -n "$verbose" && echo " ... found bz2 library in $cf_cv_library_path_bz2" 1>&6 -echo "${as_me-configure}:32059: testing ... found bz2 library in $cf_cv_library_path_bz2 ..." 1>&5 +echo "${as_me-configure}:32115: testing ... found bz2 library in $cf_cv_library_path_bz2 ..." 1>&5 cf_cv_find_linkage_bz2=yes cf_cv_library_file_bz2="-lbz2" @@ -32114,7 +32170,7 @@ if test -n "$cf_cv_header_path_bz2" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 32117 "configure" +#line 32173 "configure" #include "confdefs.h" #include <stdio.h> int @@ -32126,16 +32182,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:32129: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:32185: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:32132: \$? = $ac_status" >&5 + echo "$as_me:32188: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:32135: \"$ac_try\"") >&5 + { (eval echo "$as_me:32191: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:32138: \$? = $ac_status" >&5 + echo "$as_me:32194: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -32152,7 +32208,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "$cf_have_incdir" = no ; then test -n "$verbose" && echo " adding $cf_add_incdir to include-path" 1>&6 -echo "${as_me-configure}:32155: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me-configure}:32211: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -32186,7 +32242,7 @@ if test -n "$cf_cv_library_path_bz2" ; then if test "$cf_have_libdir" = no ; then test -n "$verbose" && echo " adding $cf_add_libdir to library-path" 1>&6 -echo "${as_me-configure}:32189: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me-configure}:32245: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -32197,7 +32253,7 @@ fi LIBS="-lbz2 $LIBS" else -{ echo "$as_me:32200: WARNING: Cannot find bz2 library" >&5 +{ echo "$as_me:32256: WARNING: Cannot find bz2 library" >&5 echo "$as_me: WARNING: Cannot find bz2 library" >&2;} fi @@ -32207,7 +32263,7 @@ EOF fi -echo "$as_me:32210: checking if you want to use zlib for decompression of some gzip files" >&5 +echo "$as_me:32266: checking if you want to use zlib for decompression of some gzip files" >&5 echo $ECHO_N "checking if you want to use zlib for decompression of some gzip files... $ECHO_C" >&6 # Check whether --with-zlib or --without-zlib was given. @@ -32217,7 +32273,7 @@ if test "${with_zlib+set}" = set; then else use_zlib=no fi; -echo "$as_me:32220: result: $use_zlib" >&5 +echo "$as_me:32276: result: $use_zlib" >&5 echo "${ECHO_T}$use_zlib" >&6 if test ".$use_zlib" != ".no" ; then @@ -32256,7 +32312,7 @@ if test -n "$cf_searchpath/include" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 32259 "configure" +#line 32315 "configure" #include "confdefs.h" #include <stdio.h> int @@ -32268,16 +32324,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:32271: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:32327: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:32274: \$? = $ac_status" >&5 + echo "$as_me:32330: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:32277: \"$ac_try\"") >&5 + { (eval echo "$as_me:32333: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:32280: \$? = $ac_status" >&5 + echo "$as_me:32336: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -32294,7 +32350,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "$cf_have_incdir" = no ; then test -n "$verbose" && echo " adding $cf_add_incdir to include-path" 1>&6 -echo "${as_me-configure}:32297: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me-configure}:32353: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -32335,7 +32391,7 @@ if test -n "$cf_searchpath/../include" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 32338 "configure" +#line 32394 "configure" #include "confdefs.h" #include <stdio.h> int @@ -32347,16 +32403,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:32350: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:32406: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:32353: \$? = $ac_status" >&5 + echo "$as_me:32409: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:32356: \"$ac_try\"") >&5 + { (eval echo "$as_me:32412: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:32359: \$? = $ac_status" >&5 + echo "$as_me:32415: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -32373,7 +32429,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "$cf_have_incdir" = no ; then test -n "$verbose" && echo " adding $cf_add_incdir to include-path" 1>&6 -echo "${as_me-configure}:32376: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me-configure}:32432: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -32389,7 +32445,7 @@ echo "${as_me-configure}:32376: testing adding $cf_add_incdir to include-path .. fi else -{ { echo "$as_me:32392: error: cannot find under $use_zlib" >&5 +{ { echo "$as_me:32448: error: cannot find under $use_zlib" >&5 echo "$as_me: error: cannot find under $use_zlib" >&2;} { (exit 1); exit 1; }; } fi @@ -32414,7 +32470,7 @@ if test -n "$cf_searchpath/lib" ; then if test "$cf_have_libdir" = no ; then test -n "$verbose" && echo " adding $cf_add_libdir to library-path" 1>&6 -echo "${as_me-configure}:32417: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me-configure}:32473: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -32443,7 +32499,7 @@ if test -n "$cf_searchpath" ; then if test "$cf_have_libdir" = no ; then test -n "$verbose" && echo " adding $cf_add_libdir to library-path" 1>&6 -echo "${as_me-configure}:32446: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me-configure}:32502: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -32452,7 +32508,7 @@ echo "${as_me-configure}:32446: testing adding $cf_add_libdir to library-path .. fi else -{ { echo "$as_me:32455: error: cannot find under $use_zlib" >&5 +{ { echo "$as_me:32511: error: cannot find under $use_zlib" >&5 echo "$as_me: error: cannot find under $use_zlib" >&2;} { (exit 1); exit 1; }; } fi @@ -32466,10 +32522,10 @@ done cf_cv_header_path_z= cf_cv_library_path_z= -echo "${as_me-configure}:32469: testing Starting FIND_LINKAGE(z,zlib) ..." 1>&5 +echo "${as_me-configure}:32525: testing Starting FIND_LINKAGE(z,zlib) ..." 1>&5 cat >conftest.$ac_ext <<_ACEOF -#line 32472 "configure" +#line 32528 "configure" #include "confdefs.h" #include <zlib.h> @@ -32485,16 +32541,16 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:32488: \"$ac_link\"") >&5 +if { (eval echo "$as_me:32544: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:32491: \$? = $ac_status" >&5 + echo "$as_me:32547: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:32494: \"$ac_try\"") >&5 + { (eval echo "$as_me:32550: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:32497: \$? = $ac_status" >&5 + echo "$as_me:32553: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_find_linkage_z=yes @@ -32507,7 +32563,7 @@ cf_save_LIBS="$LIBS" LIBS="-lz $cf_save_LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 32510 "configure" +#line 32566 "configure" #include "confdefs.h" #include <zlib.h> @@ -32523,16 +32579,16 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:32526: \"$ac_link\"") >&5 +if { (eval echo "$as_me:32582: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:32529: \$? = $ac_status" >&5 + echo "$as_me:32585: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:32532: \"$ac_try\"") >&5 + { (eval echo "$as_me:32588: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:32535: \$? = $ac_status" >&5 + echo "$as_me:32591: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_find_linkage_z=yes @@ -32547,9 +32603,9 @@ cat conftest.$ac_ext >&5 test -n "$verbose" && echo " find linkage for z library" 1>&6 -echo "${as_me-configure}:32550: testing find linkage for z library ..." 1>&5 +echo "${as_me-configure}:32606: testing find linkage for z library ..." 1>&5 -echo "${as_me-configure}:32552: testing Searching for headers in FIND_LINKAGE(z,zlib) ..." 1>&5 +echo "${as_me-configure}:32608: testing Searching for headers in FIND_LINKAGE(z,zlib) ..." 1>&5 cf_save_CPPFLAGS="$CPPFLAGS" cf_test_CPPFLAGS="$CPPFLAGS" @@ -32658,11 +32714,11 @@ cf_search="$cf_header_path_list $cf_search" if test -d $cf_cv_header_path_z ; then test -n "$verbose" && echo " ... testing $cf_cv_header_path_z" 1>&6 -echo "${as_me-configure}:32661: testing ... testing $cf_cv_header_path_z ..." 1>&5 +echo "${as_me-configure}:32717: testing ... testing $cf_cv_header_path_z ..." 1>&5 CPPFLAGS="$cf_save_CPPFLAGS -I$cf_cv_header_path_z" cat >conftest.$ac_ext <<_ACEOF -#line 32665 "configure" +#line 32721 "configure" #include "confdefs.h" #include <zlib.h> @@ -32678,21 +32734,21 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:32681: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:32737: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:32684: \$? = $ac_status" >&5 + echo "$as_me:32740: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:32687: \"$ac_try\"") >&5 + { (eval echo "$as_me:32743: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:32690: \$? = $ac_status" >&5 + echo "$as_me:32746: \$? = $ac_status" >&5 (exit $ac_status); }; }; then test -n "$verbose" && echo " ... found z headers in $cf_cv_header_path_z" 1>&6 -echo "${as_me-configure}:32695: testing ... found z headers in $cf_cv_header_path_z ..." 1>&5 +echo "${as_me-configure}:32751: testing ... found z headers in $cf_cv_header_path_z ..." 1>&5 cf_cv_find_linkage_z=maybe cf_test_CPPFLAGS="$CPPFLAGS" @@ -32710,7 +32766,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "$cf_cv_find_linkage_z" = maybe ; then -echo "${as_me-configure}:32713: testing Searching for z library in FIND_LINKAGE(z,zlib) ..." 1>&5 +echo "${as_me-configure}:32769: testing Searching for z library in FIND_LINKAGE(z,zlib) ..." 1>&5 cf_save_LIBS="$LIBS" cf_save_LDFLAGS="$LDFLAGS" @@ -32718,7 +32774,7 @@ echo "${as_me-configure}:32713: testing Searching for z library in FIND_LINKAGE( CPPFLAGS="$cf_test_CPPFLAGS" LIBS="-lz $cf_save_LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 32721 "configure" +#line 32777 "configure" #include "confdefs.h" #include <zlib.h> @@ -32734,21 +32790,21 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:32737: \"$ac_link\"") >&5 +if { (eval echo "$as_me:32793: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:32740: \$? = $ac_status" >&5 + echo "$as_me:32796: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:32743: \"$ac_try\"") >&5 + { (eval echo "$as_me:32799: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:32746: \$? = $ac_status" >&5 + echo "$as_me:32802: \$? = $ac_status" >&5 (exit $ac_status); }; }; then test -n "$verbose" && echo " ... found z library in system" 1>&6 -echo "${as_me-configure}:32751: testing ... found z library in system ..." 1>&5 +echo "${as_me-configure}:32807: testing ... found z library in system ..." 1>&5 cf_cv_find_linkage_z=yes else @@ -32851,13 +32907,13 @@ cf_search="$cf_library_path_list $cf_search" if test -d $cf_cv_library_path_z ; then test -n "$verbose" && echo " ... testing $cf_cv_library_path_z" 1>&6 -echo "${as_me-configure}:32854: testing ... testing $cf_cv_library_path_z ..." 1>&5 +echo "${as_me-configure}:32910: testing ... testing $cf_cv_library_path_z ..." 1>&5 CPPFLAGS="$cf_test_CPPFLAGS" LIBS="-lz $cf_save_LIBS" LDFLAGS="$cf_save_LDFLAGS -L$cf_cv_library_path_z" cat >conftest.$ac_ext <<_ACEOF -#line 32860 "configure" +#line 32916 "configure" #include "confdefs.h" #include <zlib.h> @@ -32873,21 +32929,21 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:32876: \"$ac_link\"") >&5 +if { (eval echo "$as_me:32932: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:32879: \$? = $ac_status" >&5 + echo "$as_me:32935: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:32882: \"$ac_try\"") >&5 + { (eval echo "$as_me:32938: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:32885: \$? = $ac_status" >&5 + echo "$as_me:32941: \$? = $ac_status" >&5 (exit $ac_status); }; }; then test -n "$verbose" && echo " ... found z library in $cf_cv_library_path_z" 1>&6 -echo "${as_me-configure}:32890: testing ... found z library in $cf_cv_library_path_z ..." 1>&5 +echo "${as_me-configure}:32946: testing ... found z library in $cf_cv_library_path_z ..." 1>&5 cf_cv_find_linkage_z=yes cf_cv_library_file_z="-lz" @@ -32945,7 +33001,7 @@ if test -n "$cf_cv_header_path_z" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 32948 "configure" +#line 33004 "configure" #include "confdefs.h" #include <stdio.h> int @@ -32957,16 +33013,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:32960: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:33016: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:32963: \$? = $ac_status" >&5 + echo "$as_me:33019: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:32966: \"$ac_try\"") >&5 + { (eval echo "$as_me:33022: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:32969: \$? = $ac_status" >&5 + echo "$as_me:33025: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -32983,7 +33039,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "$cf_have_incdir" = no ; then test -n "$verbose" && echo " adding $cf_add_incdir to include-path" 1>&6 -echo "${as_me-configure}:32986: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me-configure}:33042: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -33017,7 +33073,7 @@ if test -n "$cf_cv_library_path_z" ; then if test "$cf_have_libdir" = no ; then test -n "$verbose" && echo " adding $cf_add_libdir to library-path" 1>&6 -echo "${as_me-configure}:33020: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me-configure}:33076: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -33028,7 +33084,7 @@ fi LIBS="-lz $LIBS" else -{ echo "$as_me:33031: WARNING: Cannot find z library" >&5 +{ echo "$as_me:33087: WARNING: Cannot find z library" >&5 echo "$as_me: WARNING: Cannot find z library" >&2;} fi @@ -33038,7 +33094,7 @@ EOF fi -echo "$as_me:33041: checking if you want to exclude FINGER code" >&5 +echo "$as_me:33097: checking if you want to exclude FINGER code" >&5 echo $ECHO_N "checking if you want to exclude FINGER code... $ECHO_C" >&6 # Check whether --enable-finger or --disable-finger was given. @@ -33055,13 +33111,13 @@ else use_finger=no fi; -echo "$as_me:33058: result: $use_finger" >&5 +echo "$as_me:33114: result: $use_finger" >&5 echo "${ECHO_T}$use_finger" >&6 test $use_finger != "no" && cat >>confdefs.h <<\EOF #define DISABLE_FINGER 1 EOF -echo "$as_me:33064: checking if you want to exclude GOPHER code" >&5 +echo "$as_me:33120: checking if you want to exclude GOPHER code" >&5 echo $ECHO_N "checking if you want to exclude GOPHER code... $ECHO_C" >&6 # Check whether --enable-gopher or --disable-gopher was given. @@ -33078,13 +33134,13 @@ else use_gopher=no fi; -echo "$as_me:33081: result: $use_gopher" >&5 +echo "$as_me:33137: result: $use_gopher" >&5 echo "${ECHO_T}$use_gopher" >&6 test $use_gopher != "no" && cat >>confdefs.h <<\EOF #define DISABLE_GOPHER 1 EOF -echo "$as_me:33087: checking if you want to exclude NEWS code" >&5 +echo "$as_me:33143: checking if you want to exclude NEWS code" >&5 echo $ECHO_N "checking if you want to exclude NEWS code... $ECHO_C" >&6 # Check whether --enable-news or --disable-news was given. @@ -33101,13 +33157,13 @@ else use_news=no fi; -echo "$as_me:33104: result: $use_news" >&5 +echo "$as_me:33160: result: $use_news" >&5 echo "${ECHO_T}$use_news" >&6 test $use_news != "no" && cat >>confdefs.h <<\EOF #define DISABLE_NEWS 1 EOF -echo "$as_me:33110: checking if you want to exclude FTP code" >&5 +echo "$as_me:33166: checking if you want to exclude FTP code" >&5 echo $ECHO_N "checking if you want to exclude FTP code... $ECHO_C" >&6 # Check whether --enable-ftp or --disable-ftp was given. @@ -33124,7 +33180,7 @@ else use_ftp=no fi; -echo "$as_me:33127: result: $use_ftp" >&5 +echo "$as_me:33183: result: $use_ftp" >&5 echo "${ECHO_T}$use_ftp" >&6 test $use_ftp != "no" && cat >>confdefs.h <<\EOF #define DISABLE_FTP 1 @@ -33132,7 +33188,7 @@ EOF # All DirEd functions that were enabled on compilation can be disabled # or modified at run time via DIRED_MENU symbols in lynx.cfg. -echo "$as_me:33135: checking if directory-editor code should be used" >&5 +echo "$as_me:33191: checking if directory-editor code should be used" >&5 echo $ECHO_N "checking if directory-editor code should be used... $ECHO_C" >&6 # Check whether --enable-dired or --disable-dired was given. @@ -33149,7 +33205,7 @@ else use_dired=yes fi; -echo "$as_me:33152: result: $use_dired" >&5 +echo "$as_me:33208: result: $use_dired" >&5 echo "${ECHO_T}$use_dired" >&6 if test ".$use_dired" != ".no" ; then @@ -33158,7 +33214,7 @@ if test ".$use_dired" != ".no" ; then #define DIRED_SUPPORT 1 EOF - echo "$as_me:33161: checking if you wish to allow extracting from archives via DirEd" >&5 + echo "$as_me:33217: checking if you wish to allow extracting from archives via DirEd" >&5 echo $ECHO_N "checking if you wish to allow extracting from archives via DirEd... $ECHO_C" >&6 # Check whether --enable-dired-dearchive or --disable-dired-dearchive was given. @@ -33174,10 +33230,10 @@ EOF else enableval=yes fi; - echo "$as_me:33177: result: $enableval" >&5 + echo "$as_me:33233: result: $enableval" >&5 echo "${ECHO_T}$enableval" >&6 - echo "$as_me:33180: checking if DirEd mode should override keys" >&5 + echo "$as_me:33236: checking if DirEd mode should override keys" >&5 echo $ECHO_N "checking if DirEd mode should override keys... $ECHO_C" >&6 # Check whether --enable-dired-override or --disable-dired-override was given. @@ -33199,10 +33255,10 @@ else EOF fi; - echo "$as_me:33202: result: $enableval" >&5 + echo "$as_me:33258: result: $enableval" >&5 echo "${ECHO_T}$enableval" >&6 - echo "$as_me:33205: checking if you wish to allow permissions commands via DirEd" >&5 + echo "$as_me:33261: checking if you wish to allow permissions commands via DirEd" >&5 echo $ECHO_N "checking if you wish to allow permissions commands via DirEd... $ECHO_C" >&6 # Check whether --enable-dired-permit or --disable-dired-permit was given. @@ -33224,10 +33280,10 @@ else EOF fi; - echo "$as_me:33227: result: $enableval" >&5 + echo "$as_me:33283: result: $enableval" >&5 echo "${ECHO_T}$enableval" >&6 - echo "$as_me:33230: checking if you wish to allow executable-permission commands via DirEd" >&5 + echo "$as_me:33286: checking if you wish to allow executable-permission commands via DirEd" >&5 echo $ECHO_N "checking if you wish to allow executable-permission commands via DirEd... $ECHO_C" >&6 # Check whether --enable-dired-xpermit or --disable-dired-xpermit was given. @@ -33243,10 +33299,10 @@ EOF else enableval=yes fi; - echo "$as_me:33246: result: $enableval" >&5 + echo "$as_me:33302: result: $enableval" >&5 echo "${ECHO_T}$enableval" >&6 - echo "$as_me:33249: checking if you wish to allow \"tar\" commands from DirEd" >&5 + echo "$as_me:33305: checking if you wish to allow \"tar\" commands from DirEd" >&5 echo $ECHO_N "checking if you wish to allow \"tar\" commands from DirEd... $ECHO_C" >&6 # Check whether --enable-dired-tar or --disable-dired-tar was given. @@ -33268,10 +33324,10 @@ else EOF fi; - echo "$as_me:33271: result: $enableval" >&5 + echo "$as_me:33327: result: $enableval" >&5 echo "${ECHO_T}$enableval" >&6 - echo "$as_me:33274: checking if you wish to allow \"uudecode\" commands from DirEd" >&5 + echo "$as_me:33330: checking if you wish to allow \"uudecode\" commands from DirEd" >&5 echo $ECHO_N "checking if you wish to allow \"uudecode\" commands from DirEd... $ECHO_C" >&6 # Check whether --enable-dired-uudecode or --disable-dired-uudecode was given. @@ -33293,10 +33349,10 @@ else EOF fi; - echo "$as_me:33296: result: $enableval" >&5 + echo "$as_me:33352: result: $enableval" >&5 echo "${ECHO_T}$enableval" >&6 - echo "$as_me:33299: checking if you wish to allow \"zip\" and \"unzip\" commands from DirEd" >&5 + echo "$as_me:33355: checking if you wish to allow \"zip\" and \"unzip\" commands from DirEd" >&5 echo $ECHO_N "checking if you wish to allow \"zip\" and \"unzip\" commands from DirEd... $ECHO_C" >&6 # Check whether --enable-dired-zip or --disable-dired-zip was given. @@ -33318,10 +33374,10 @@ else EOF fi; - echo "$as_me:33321: result: $enableval" >&5 + echo "$as_me:33377: result: $enableval" >&5 echo "${ECHO_T}$enableval" >&6 - echo "$as_me:33324: checking if you wish to allow \"gzip\" and \"gunzip\" commands from DirEd" >&5 + echo "$as_me:33380: checking if you wish to allow \"gzip\" and \"gunzip\" commands from DirEd" >&5 echo $ECHO_N "checking if you wish to allow \"gzip\" and \"gunzip\" commands from DirEd... $ECHO_C" >&6 # Check whether --enable-dired-gzip or --disable-dired-gzip was given. @@ -33343,11 +33399,11 @@ else EOF fi; - echo "$as_me:33346: result: $enableval" >&5 + echo "$as_me:33402: result: $enableval" >&5 echo "${ECHO_T}$enableval" >&6 fi -echo "$as_me:33350: checking if you want long-directory listings" >&5 +echo "$as_me:33406: checking if you want long-directory listings" >&5 echo $ECHO_N "checking if you want long-directory listings... $ECHO_C" >&6 # Check whether --enable-long-list or --disable-long-list was given. @@ -33369,10 +33425,10 @@ else EOF fi; -echo "$as_me:33372: result: $enableval" >&5 +echo "$as_me:33428: result: $enableval" >&5 echo "${ECHO_T}$enableval" >&6 -echo "$as_me:33375: checking if parent-directory references are permitted" >&5 +echo "$as_me:33431: checking if parent-directory references are permitted" >&5 echo $ECHO_N "checking if parent-directory references are permitted... $ECHO_C" >&6 # Check whether --enable-parent-dir-refs or --disable-parent-dir-refs was given. @@ -33388,7 +33444,7 @@ EOF else enableval=yes fi; -echo "$as_me:33391: result: $enableval" >&5 +echo "$as_me:33447: result: $enableval" >&5 echo "${ECHO_T}$enableval" >&6 test -z "$TELNET" && TELNET=telnet @@ -33396,7 +33452,7 @@ for ac_prog in $TELNET telnet 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:33399: checking for $ac_word" >&5 +echo "$as_me:33455: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_path_TELNET+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -33413,7 +33469,7 @@ for ac_dir in $ac_dummy; do test -z "$ac_dir" && ac_dir=. if $as_executable_p "$ac_dir/$ac_word"; then ac_cv_path_TELNET="$ac_dir/$ac_word" - echo "$as_me:33416: found $ac_dir/$ac_word" >&5 + echo "$as_me:33472: found $ac_dir/$ac_word" >&5 break fi done @@ -33424,10 +33480,10 @@ fi TELNET=$ac_cv_path_TELNET if test -n "$TELNET"; then - echo "$as_me:33427: result: $TELNET" >&5 + echo "$as_me:33483: result: $TELNET" >&5 echo "${ECHO_T}$TELNET" >&6 else - echo "$as_me:33430: result: no" >&5 + echo "$as_me:33486: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -33486,7 +33542,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me-configure}:33489: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me-configure}:33545: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define TELNET_PATH "$cf_path_prog" @@ -33503,7 +33559,7 @@ for ac_prog in $TN3270 tn3270 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:33506: checking for $ac_word" >&5 +echo "$as_me:33562: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_path_TN3270+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -33520,7 +33576,7 @@ for ac_dir in $ac_dummy; do test -z "$ac_dir" && ac_dir=. if $as_executable_p "$ac_dir/$ac_word"; then ac_cv_path_TN3270="$ac_dir/$ac_word" - echo "$as_me:33523: found $ac_dir/$ac_word" >&5 + echo "$as_me:33579: found $ac_dir/$ac_word" >&5 break fi done @@ -33531,10 +33587,10 @@ fi TN3270=$ac_cv_path_TN3270 if test -n "$TN3270"; then - echo "$as_me:33534: result: $TN3270" >&5 + echo "$as_me:33590: result: $TN3270" >&5 echo "${ECHO_T}$TN3270" >&6 else - echo "$as_me:33537: result: no" >&5 + echo "$as_me:33593: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -33593,7 +33649,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me-configure}:33596: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me-configure}:33652: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define TN3270_PATH "$cf_path_prog" @@ -33610,7 +33666,7 @@ for ac_prog in $RLOGIN rlogin 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:33613: checking for $ac_word" >&5 +echo "$as_me:33669: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_path_RLOGIN+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -33627,7 +33683,7 @@ for ac_dir in $ac_dummy; do test -z "$ac_dir" && ac_dir=. if $as_executable_p "$ac_dir/$ac_word"; then ac_cv_path_RLOGIN="$ac_dir/$ac_word" - echo "$as_me:33630: found $ac_dir/$ac_word" >&5 + echo "$as_me:33686: found $ac_dir/$ac_word" >&5 break fi done @@ -33638,10 +33694,10 @@ fi RLOGIN=$ac_cv_path_RLOGIN if test -n "$RLOGIN"; then - echo "$as_me:33641: result: $RLOGIN" >&5 + echo "$as_me:33697: result: $RLOGIN" >&5 echo "${ECHO_T}$RLOGIN" >&6 else - echo "$as_me:33644: result: no" >&5 + echo "$as_me:33700: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -33700,7 +33756,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me-configure}:33703: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me-configure}:33759: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define RLOGIN_PATH "$cf_path_prog" @@ -33717,7 +33773,7 @@ for ac_prog in $MV mv 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:33720: checking for $ac_word" >&5 +echo "$as_me:33776: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_path_MV+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -33734,7 +33790,7 @@ for ac_dir in $ac_dummy; do test -z "$ac_dir" && ac_dir=. if $as_executable_p "$ac_dir/$ac_word"; then ac_cv_path_MV="$ac_dir/$ac_word" - echo "$as_me:33737: found $ac_dir/$ac_word" >&5 + echo "$as_me:33793: found $ac_dir/$ac_word" >&5 break fi done @@ -33745,10 +33801,10 @@ fi MV=$ac_cv_path_MV if test -n "$MV"; then - echo "$as_me:33748: result: $MV" >&5 + echo "$as_me:33804: result: $MV" >&5 echo "${ECHO_T}$MV" >&6 else - echo "$as_me:33751: result: no" >&5 + echo "$as_me:33807: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -33807,7 +33863,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me-configure}:33810: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me-configure}:33866: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define MV_PATH "$cf_path_prog" @@ -33824,7 +33880,7 @@ for ac_prog in $GZIP gzip 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:33827: checking for $ac_word" >&5 +echo "$as_me:33883: 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 @@ -33841,7 +33897,7 @@ for ac_dir in $ac_dummy; do 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:33844: found $ac_dir/$ac_word" >&5 + echo "$as_me:33900: found $ac_dir/$ac_word" >&5 break fi done @@ -33852,10 +33908,10 @@ fi GZIP=$ac_cv_path_GZIP if test -n "$GZIP"; then - echo "$as_me:33855: result: $GZIP" >&5 + echo "$as_me:33911: result: $GZIP" >&5 echo "${ECHO_T}$GZIP" >&6 else - echo "$as_me:33858: result: no" >&5 + echo "$as_me:33914: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -33914,7 +33970,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me-configure}:33917: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me-configure}:33973: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define GZIP_PATH "$cf_path_prog" @@ -33931,7 +33987,7 @@ for ac_prog in $UNCOMPRESS gunzip 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:33934: checking for $ac_word" >&5 +echo "$as_me:33990: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_path_UNCOMPRESS+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -33948,7 +34004,7 @@ for ac_dir in $ac_dummy; do test -z "$ac_dir" && ac_dir=. if $as_executable_p "$ac_dir/$ac_word"; then ac_cv_path_UNCOMPRESS="$ac_dir/$ac_word" - echo "$as_me:33951: found $ac_dir/$ac_word" >&5 + echo "$as_me:34007: found $ac_dir/$ac_word" >&5 break fi done @@ -33959,10 +34015,10 @@ fi UNCOMPRESS=$ac_cv_path_UNCOMPRESS if test -n "$UNCOMPRESS"; then - echo "$as_me:33962: result: $UNCOMPRESS" >&5 + echo "$as_me:34018: result: $UNCOMPRESS" >&5 echo "${ECHO_T}$UNCOMPRESS" >&6 else - echo "$as_me:33965: result: no" >&5 + echo "$as_me:34021: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -34021,7 +34077,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me-configure}:34024: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me-configure}:34080: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define UNCOMPRESS_PATH "$cf_path_prog" @@ -34038,7 +34094,7 @@ for ac_prog in $UNZIP unzip 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:34041: checking for $ac_word" >&5 +echo "$as_me:34097: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_path_UNZIP+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -34055,7 +34111,7 @@ for ac_dir in $ac_dummy; do test -z "$ac_dir" && ac_dir=. if $as_executable_p "$ac_dir/$ac_word"; then ac_cv_path_UNZIP="$ac_dir/$ac_word" - echo "$as_me:34058: found $ac_dir/$ac_word" >&5 + echo "$as_me:34114: found $ac_dir/$ac_word" >&5 break fi done @@ -34066,10 +34122,10 @@ fi UNZIP=$ac_cv_path_UNZIP if test -n "$UNZIP"; then - echo "$as_me:34069: result: $UNZIP" >&5 + echo "$as_me:34125: result: $UNZIP" >&5 echo "${ECHO_T}$UNZIP" >&6 else - echo "$as_me:34072: result: no" >&5 + echo "$as_me:34128: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -34128,7 +34184,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me-configure}:34131: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me-configure}:34187: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define UNZIP_PATH "$cf_path_prog" @@ -34145,7 +34201,7 @@ for ac_prog in $BZIP2 bzip2 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:34148: checking for $ac_word" >&5 +echo "$as_me:34204: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_path_BZIP2+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -34162,7 +34218,7 @@ for ac_dir in $ac_dummy; do test -z "$ac_dir" && ac_dir=. if $as_executable_p "$ac_dir/$ac_word"; then ac_cv_path_BZIP2="$ac_dir/$ac_word" - echo "$as_me:34165: found $ac_dir/$ac_word" >&5 + echo "$as_me:34221: found $ac_dir/$ac_word" >&5 break fi done @@ -34173,10 +34229,10 @@ fi BZIP2=$ac_cv_path_BZIP2 if test -n "$BZIP2"; then - echo "$as_me:34176: result: $BZIP2" >&5 + echo "$as_me:34232: result: $BZIP2" >&5 echo "${ECHO_T}$BZIP2" >&6 else - echo "$as_me:34179: result: no" >&5 + echo "$as_me:34235: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -34235,7 +34291,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me-configure}:34238: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me-configure}:34294: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define BZIP2_PATH "$cf_path_prog" @@ -34252,7 +34308,7 @@ for ac_prog in $TAR tar pax gtar gnutar bsdtar star 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:34255: checking for $ac_word" >&5 +echo "$as_me:34311: 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 @@ -34269,7 +34325,7 @@ for ac_dir in $ac_dummy; do 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:34272: found $ac_dir/$ac_word" >&5 + echo "$as_me:34328: found $ac_dir/$ac_word" >&5 break fi done @@ -34280,10 +34336,10 @@ fi TAR=$ac_cv_path_TAR if test -n "$TAR"; then - echo "$as_me:34283: result: $TAR" >&5 + echo "$as_me:34339: result: $TAR" >&5 echo "${ECHO_T}$TAR" >&6 else - echo "$as_me:34286: result: no" >&5 + echo "$as_me:34342: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -34342,7 +34398,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me-configure}:34345: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me-configure}:34401: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define TAR_PATH "$cf_path_prog" @@ -34399,7 +34455,7 @@ for ac_prog in $COMPRESS compress 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:34402: checking for $ac_word" >&5 +echo "$as_me:34458: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_path_COMPRESS+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -34416,7 +34472,7 @@ for ac_dir in $ac_dummy; do test -z "$ac_dir" && ac_dir=. if $as_executable_p "$ac_dir/$ac_word"; then ac_cv_path_COMPRESS="$ac_dir/$ac_word" - echo "$as_me:34419: found $ac_dir/$ac_word" >&5 + echo "$as_me:34475: found $ac_dir/$ac_word" >&5 break fi done @@ -34427,10 +34483,10 @@ fi COMPRESS=$ac_cv_path_COMPRESS if test -n "$COMPRESS"; then - echo "$as_me:34430: result: $COMPRESS" >&5 + echo "$as_me:34486: result: $COMPRESS" >&5 echo "${ECHO_T}$COMPRESS" >&6 else - echo "$as_me:34433: result: no" >&5 + echo "$as_me:34489: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -34489,7 +34545,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me-configure}:34492: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me-configure}:34548: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define COMPRESS_PATH "$cf_path_prog" @@ -34506,7 +34562,7 @@ for ac_prog in $RM rm 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:34509: checking for $ac_word" >&5 +echo "$as_me:34565: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_path_RM+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -34523,7 +34579,7 @@ for ac_dir in $ac_dummy; do test -z "$ac_dir" && ac_dir=. if $as_executable_p "$ac_dir/$ac_word"; then ac_cv_path_RM="$ac_dir/$ac_word" - echo "$as_me:34526: found $ac_dir/$ac_word" >&5 + echo "$as_me:34582: found $ac_dir/$ac_word" >&5 break fi done @@ -34534,10 +34590,10 @@ fi RM=$ac_cv_path_RM if test -n "$RM"; then - echo "$as_me:34537: result: $RM" >&5 + echo "$as_me:34593: result: $RM" >&5 echo "${ECHO_T}$RM" >&6 else - echo "$as_me:34540: result: no" >&5 + echo "$as_me:34596: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -34596,7 +34652,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me-configure}:34599: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me-configure}:34655: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define RM_PATH "$cf_path_prog" @@ -34613,7 +34669,7 @@ for ac_prog in $UUDECODE uudecode 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:34616: checking for $ac_word" >&5 +echo "$as_me:34672: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_path_UUDECODE+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -34630,7 +34686,7 @@ for ac_dir in $ac_dummy; do test -z "$ac_dir" && ac_dir=. if $as_executable_p "$ac_dir/$ac_word"; then ac_cv_path_UUDECODE="$ac_dir/$ac_word" - echo "$as_me:34633: found $ac_dir/$ac_word" >&5 + echo "$as_me:34689: found $ac_dir/$ac_word" >&5 break fi done @@ -34641,10 +34697,10 @@ fi UUDECODE=$ac_cv_path_UUDECODE if test -n "$UUDECODE"; then - echo "$as_me:34644: result: $UUDECODE" >&5 + echo "$as_me:34700: result: $UUDECODE" >&5 echo "${ECHO_T}$UUDECODE" >&6 else - echo "$as_me:34647: result: no" >&5 + echo "$as_me:34703: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -34703,7 +34759,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me-configure}:34706: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me-configure}:34762: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define UUDECODE_PATH "$cf_path_prog" @@ -34720,7 +34776,7 @@ for ac_prog in $ZCAT zcat 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:34723: checking for $ac_word" >&5 +echo "$as_me:34779: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_path_ZCAT+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -34737,7 +34793,7 @@ for ac_dir in $ac_dummy; do test -z "$ac_dir" && ac_dir=. if $as_executable_p "$ac_dir/$ac_word"; then ac_cv_path_ZCAT="$ac_dir/$ac_word" - echo "$as_me:34740: found $ac_dir/$ac_word" >&5 + echo "$as_me:34796: found $ac_dir/$ac_word" >&5 break fi done @@ -34748,10 +34804,10 @@ fi ZCAT=$ac_cv_path_ZCAT if test -n "$ZCAT"; then - echo "$as_me:34751: result: $ZCAT" >&5 + echo "$as_me:34807: result: $ZCAT" >&5 echo "${ECHO_T}$ZCAT" >&6 else - echo "$as_me:34754: result: no" >&5 + echo "$as_me:34810: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -34810,7 +34866,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me-configure}:34813: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me-configure}:34869: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define ZCAT_PATH "$cf_path_prog" @@ -34827,7 +34883,7 @@ for ac_prog in $ZIP zip 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:34830: checking for $ac_word" >&5 +echo "$as_me:34886: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_path_ZIP+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -34844,7 +34900,7 @@ for ac_dir in $ac_dummy; do test -z "$ac_dir" && ac_dir=. if $as_executable_p "$ac_dir/$ac_word"; then ac_cv_path_ZIP="$ac_dir/$ac_word" - echo "$as_me:34847: found $ac_dir/$ac_word" >&5 + echo "$as_me:34903: found $ac_dir/$ac_word" >&5 break fi done @@ -34855,10 +34911,10 @@ fi ZIP=$ac_cv_path_ZIP if test -n "$ZIP"; then - echo "$as_me:34858: result: $ZIP" >&5 + echo "$as_me:34914: result: $ZIP" >&5 echo "${ECHO_T}$ZIP" >&6 else - echo "$as_me:34861: result: no" >&5 + echo "$as_me:34917: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -34917,7 +34973,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me-configure}:34920: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me-configure}:34976: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define ZIP_PATH "$cf_path_prog" @@ -34944,7 +35000,7 @@ for ac_prog in $INSTALL install 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:34947: checking for $ac_word" >&5 +echo "$as_me:35003: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_path_INSTALL+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -34961,7 +35017,7 @@ for ac_dir in $ac_dummy; do test -z "$ac_dir" && ac_dir=. if $as_executable_p "$ac_dir/$ac_word"; then ac_cv_path_INSTALL="$ac_dir/$ac_word" - echo "$as_me:34964: found $ac_dir/$ac_word" >&5 + echo "$as_me:35020: found $ac_dir/$ac_word" >&5 break fi done @@ -34972,10 +35028,10 @@ fi INSTALL=$ac_cv_path_INSTALL if test -n "$INSTALL"; then - echo "$as_me:34975: result: $INSTALL" >&5 + echo "$as_me:35031: result: $INSTALL" >&5 echo "${ECHO_T}$INSTALL" >&6 else - echo "$as_me:34978: result: no" >&5 + echo "$as_me:35034: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -35034,7 +35090,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me-configure}:35037: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me-configure}:35093: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define INSTALL_PATH "$cf_path_prog" @@ -35060,7 +35116,7 @@ fi if test $cf_cv_screen = pdcurses ; then - echo "$as_me:35063: checking for X" >&5 + echo "$as_me:35119: checking for X" >&5 echo $ECHO_N "checking for X... $ECHO_C" >&6 # Check whether --with-x or --without-x was given. @@ -35157,17 +35213,17 @@ if test "$ac_x_includes" = no; then # 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 35160 "configure" +#line 35216 "configure" #include "confdefs.h" #include <X11/Intrinsic.h> _ACEOF -if { (eval echo "$as_me:35164: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:35220: \"$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:35170: \$? = $ac_status" >&5 + echo "$as_me:35226: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -35200,7 +35256,7 @@ if test "$ac_x_libraries" = no; then ac_save_LIBS=$LIBS LIBS="-lXt $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 35203 "configure" +#line 35259 "configure" #include "confdefs.h" #include <X11/Intrinsic.h> int @@ -35212,16 +35268,16 @@ XtMalloc (0) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:35215: \"$ac_link\"") >&5 +if { (eval echo "$as_me:35271: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:35218: \$? = $ac_status" >&5 + echo "$as_me:35274: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:35221: \"$ac_try\"") >&5 + { (eval echo "$as_me:35277: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:35224: \$? = $ac_status" >&5 + echo "$as_me:35280: \$? = $ac_status" >&5 (exit $ac_status); }; }; then LIBS=$ac_save_LIBS # We can link X programs with no special library path. @@ -35259,7 +35315,7 @@ fi fi # $with_x != no if test "$have_x" != yes; then - echo "$as_me:35262: result: $have_x" >&5 + echo "$as_me:35318: result: $have_x" >&5 echo "${ECHO_T}$have_x" >&6 no_x=yes else @@ -35269,7 +35325,7 @@ else # 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:35272: result: libraries $x_libraries, headers $x_includes" >&5 + echo "$as_me:35328: result: libraries $x_libraries, headers $x_includes" >&5 echo "${ECHO_T}libraries $x_libraries, headers $x_includes" >&6 fi @@ -35293,11 +35349,11 @@ else # others require no space. Words are not sufficient . . . . case `(uname -sr) 2>/dev/null` in "SunOS 5"*) - echo "$as_me:35296: checking whether -R must be followed by a space" >&5 + echo "$as_me:35352: 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 35300 "configure" +#line 35356 "configure" #include "confdefs.h" int @@ -35309,16 +35365,16 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:35312: \"$ac_link\"") >&5 +if { (eval echo "$as_me:35368: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:35315: \$? = $ac_status" >&5 + echo "$as_me:35371: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:35318: \"$ac_try\"") >&5 + { (eval echo "$as_me:35374: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:35321: \$? = $ac_status" >&5 + echo "$as_me:35377: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_R_nospace=yes else @@ -35328,13 +35384,13 @@ ac_R_nospace=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext if test $ac_R_nospace = yes; then - echo "$as_me:35331: result: no" >&5 + echo "$as_me:35387: 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 35337 "configure" +#line 35393 "configure" #include "confdefs.h" int @@ -35346,16 +35402,16 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:35349: \"$ac_link\"") >&5 +if { (eval echo "$as_me:35405: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:35352: \$? = $ac_status" >&5 + echo "$as_me:35408: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:35355: \"$ac_try\"") >&5 + { (eval echo "$as_me:35411: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:35358: \$? = $ac_status" >&5 + echo "$as_me:35414: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_R_space=yes else @@ -35365,11 +35421,11 @@ ac_R_space=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext if test $ac_R_space = yes; then - echo "$as_me:35368: result: yes" >&5 + echo "$as_me:35424: result: yes" >&5 echo "${ECHO_T}yes" >&6 X_LIBS="$X_LIBS -R $x_libraries" else - echo "$as_me:35372: result: neither works" >&5 + echo "$as_me:35428: result: neither works" >&5 echo "${ECHO_T}neither works" >&6 fi fi @@ -35389,7 +35445,7 @@ echo "${ECHO_T}neither works" >&6 # the Alpha needs dnet_stub (dnet does not exist). ac_xsave_LIBS="$LIBS"; LIBS="$LIBS $X_LIBS -lX11" cat >conftest.$ac_ext <<_ACEOF -#line 35392 "configure" +#line 35448 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -35408,22 +35464,22 @@ XOpenDisplay (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:35411: \"$ac_link\"") >&5 +if { (eval echo "$as_me:35467: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:35414: \$? = $ac_status" >&5 + echo "$as_me:35470: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:35417: \"$ac_try\"") >&5 + { (eval echo "$as_me:35473: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:35420: \$? = $ac_status" >&5 + echo "$as_me:35476: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 -echo "$as_me:35426: checking for dnet_ntoa in -ldnet" >&5 +echo "$as_me:35482: 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 @@ -35431,7 +35487,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-ldnet $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 35434 "configure" +#line 35490 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -35450,16 +35506,16 @@ dnet_ntoa (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:35453: \"$ac_link\"") >&5 +if { (eval echo "$as_me:35509: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:35456: \$? = $ac_status" >&5 + echo "$as_me:35512: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:35459: \"$ac_try\"") >&5 + { (eval echo "$as_me:35515: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:35462: \$? = $ac_status" >&5 + echo "$as_me:35518: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_dnet_dnet_ntoa=yes else @@ -35470,14 +35526,14 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:35473: result: $ac_cv_lib_dnet_dnet_ntoa" >&5 +echo "$as_me:35529: 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" fi if test $ac_cv_lib_dnet_dnet_ntoa = no; then - echo "$as_me:35480: checking for dnet_ntoa in -ldnet_stub" >&5 + echo "$as_me:35536: 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 @@ -35485,7 +35541,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-ldnet_stub $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 35488 "configure" +#line 35544 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -35504,16 +35560,16 @@ dnet_ntoa (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:35507: \"$ac_link\"") >&5 +if { (eval echo "$as_me:35563: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:35510: \$? = $ac_status" >&5 + echo "$as_me:35566: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:35513: \"$ac_try\"") >&5 + { (eval echo "$as_me:35569: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:35516: \$? = $ac_status" >&5 + echo "$as_me:35572: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_dnet_stub_dnet_ntoa=yes else @@ -35524,7 +35580,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:35527: result: $ac_cv_lib_dnet_stub_dnet_ntoa" >&5 +echo "$as_me:35583: 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" @@ -35543,13 +35599,13 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext # 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:35546: checking for gethostbyname" >&5 + echo "$as_me:35602: 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 35552 "configure" +#line 35608 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char gethostbyname (); below. */ @@ -35580,16 +35636,16 @@ f = gethostbyname; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:35583: \"$ac_link\"") >&5 +if { (eval echo "$as_me:35639: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:35586: \$? = $ac_status" >&5 + echo "$as_me:35642: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:35589: \"$ac_try\"") >&5 + { (eval echo "$as_me:35645: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:35592: \$? = $ac_status" >&5 + echo "$as_me:35648: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_gethostbyname=yes else @@ -35599,11 +35655,11 @@ ac_cv_func_gethostbyname=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:35602: result: $ac_cv_func_gethostbyname" >&5 +echo "$as_me:35658: 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:35606: checking for gethostbyname in -lnsl" >&5 + echo "$as_me:35662: 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 @@ -35611,7 +35667,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lnsl $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 35614 "configure" +#line 35670 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -35630,16 +35686,16 @@ gethostbyname (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:35633: \"$ac_link\"") >&5 +if { (eval echo "$as_me:35689: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:35636: \$? = $ac_status" >&5 + echo "$as_me:35692: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:35639: \"$ac_try\"") >&5 + { (eval echo "$as_me:35695: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:35642: \$? = $ac_status" >&5 + echo "$as_me:35698: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_nsl_gethostbyname=yes else @@ -35650,14 +35706,14 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:35653: result: $ac_cv_lib_nsl_gethostbyname" >&5 +echo "$as_me:35709: 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" fi if test $ac_cv_lib_nsl_gethostbyname = no; then - echo "$as_me:35660: checking for gethostbyname in -lbsd" >&5 + echo "$as_me:35716: 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 @@ -35665,7 +35721,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lbsd $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 35668 "configure" +#line 35724 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -35684,16 +35740,16 @@ gethostbyname (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:35687: \"$ac_link\"") >&5 +if { (eval echo "$as_me:35743: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:35690: \$? = $ac_status" >&5 + echo "$as_me:35746: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:35693: \"$ac_try\"") >&5 + { (eval echo "$as_me:35749: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:35696: \$? = $ac_status" >&5 + echo "$as_me:35752: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_bsd_gethostbyname=yes else @@ -35704,7 +35760,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:35707: result: $ac_cv_lib_bsd_gethostbyname" >&5 +echo "$as_me:35763: 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" @@ -35720,13 +35776,13 @@ fi # 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:35723: checking for connect" >&5 + echo "$as_me:35779: 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 35729 "configure" +#line 35785 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char connect (); below. */ @@ -35757,16 +35813,16 @@ f = connect; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:35760: \"$ac_link\"") >&5 +if { (eval echo "$as_me:35816: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:35763: \$? = $ac_status" >&5 + echo "$as_me:35819: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:35766: \"$ac_try\"") >&5 + { (eval echo "$as_me:35822: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:35769: \$? = $ac_status" >&5 + echo "$as_me:35825: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_connect=yes else @@ -35776,11 +35832,11 @@ ac_cv_func_connect=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:35779: result: $ac_cv_func_connect" >&5 +echo "$as_me:35835: 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:35783: checking for connect in -lsocket" >&5 + echo "$as_me:35839: 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 @@ -35788,7 +35844,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lsocket $X_EXTRA_LIBS $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 35791 "configure" +#line 35847 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -35807,16 +35863,16 @@ connect (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:35810: \"$ac_link\"") >&5 +if { (eval echo "$as_me:35866: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:35813: \$? = $ac_status" >&5 + echo "$as_me:35869: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:35816: \"$ac_try\"") >&5 + { (eval echo "$as_me:35872: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:35819: \$? = $ac_status" >&5 + echo "$as_me:35875: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_socket_connect=yes else @@ -35827,7 +35883,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:35830: result: $ac_cv_lib_socket_connect" >&5 +echo "$as_me:35886: 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" @@ -35836,13 +35892,13 @@ fi fi # Guillermo Gomez says -lposix is necessary on A/UX. - echo "$as_me:35839: checking for remove" >&5 + echo "$as_me:35895: 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 35845 "configure" +#line 35901 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char remove (); below. */ @@ -35873,16 +35929,16 @@ f = remove; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:35876: \"$ac_link\"") >&5 +if { (eval echo "$as_me:35932: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:35879: \$? = $ac_status" >&5 + echo "$as_me:35935: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:35882: \"$ac_try\"") >&5 + { (eval echo "$as_me:35938: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:35885: \$? = $ac_status" >&5 + echo "$as_me:35941: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_remove=yes else @@ -35892,11 +35948,11 @@ ac_cv_func_remove=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:35895: result: $ac_cv_func_remove" >&5 +echo "$as_me:35951: 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:35899: checking for remove in -lposix" >&5 + echo "$as_me:35955: 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 @@ -35904,7 +35960,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lposix $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 35907 "configure" +#line 35963 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -35923,16 +35979,16 @@ remove (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:35926: \"$ac_link\"") >&5 +if { (eval echo "$as_me:35982: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:35929: \$? = $ac_status" >&5 + echo "$as_me:35985: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:35932: \"$ac_try\"") >&5 + { (eval echo "$as_me:35988: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:35935: \$? = $ac_status" >&5 + echo "$as_me:35991: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_posix_remove=yes else @@ -35943,7 +35999,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:35946: result: $ac_cv_lib_posix_remove" >&5 +echo "$as_me:36002: 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" @@ -35952,13 +36008,13 @@ fi fi # BSDI BSD/OS 2.1 needs -lipc for XOpenDisplay. - echo "$as_me:35955: checking for shmat" >&5 + echo "$as_me:36011: 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 35961 "configure" +#line 36017 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char shmat (); below. */ @@ -35989,16 +36045,16 @@ f = shmat; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:35992: \"$ac_link\"") >&5 +if { (eval echo "$as_me:36048: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:35995: \$? = $ac_status" >&5 + echo "$as_me:36051: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:35998: \"$ac_try\"") >&5 + { (eval echo "$as_me:36054: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:36001: \$? = $ac_status" >&5 + echo "$as_me:36057: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_shmat=yes else @@ -36008,11 +36064,11 @@ ac_cv_func_shmat=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:36011: result: $ac_cv_func_shmat" >&5 +echo "$as_me:36067: 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:36015: checking for shmat in -lipc" >&5 + echo "$as_me:36071: 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 @@ -36020,7 +36076,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lipc $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 36023 "configure" +#line 36079 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -36039,16 +36095,16 @@ shmat (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:36042: \"$ac_link\"") >&5 +if { (eval echo "$as_me:36098: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:36045: \$? = $ac_status" >&5 + echo "$as_me:36101: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:36048: \"$ac_try\"") >&5 + { (eval echo "$as_me:36104: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:36051: \$? = $ac_status" >&5 + echo "$as_me:36107: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_ipc_shmat=yes else @@ -36059,7 +36115,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:36062: result: $ac_cv_lib_ipc_shmat" >&5 +echo "$as_me:36118: 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" @@ -36077,7 +36133,7 @@ fi # 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:36080: checking for IceConnectionNumber in -lICE" >&5 + echo "$as_me:36136: 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 @@ -36085,7 +36141,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lICE $X_EXTRA_LIBS $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 36088 "configure" +#line 36144 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -36104,16 +36160,16 @@ IceConnectionNumber (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:36107: \"$ac_link\"") >&5 +if { (eval echo "$as_me:36163: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:36110: \$? = $ac_status" >&5 + echo "$as_me:36166: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:36113: \"$ac_try\"") >&5 + { (eval echo "$as_me:36169: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:36116: \$? = $ac_status" >&5 + echo "$as_me:36172: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_ICE_IceConnectionNumber=yes else @@ -36124,7 +36180,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:36127: result: $ac_cv_lib_ICE_IceConnectionNumber" >&5 +echo "$as_me:36183: 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" @@ -36142,7 +36198,7 @@ LDFLAGS="$X_LIBS $LDFLAGS" test -n "$verbose" && echo " checking additions to CFLAGS" 1>&6 -echo "${as_me-configure}:36145: testing checking additions to CFLAGS ..." 1>&5 +echo "${as_me-configure}:36201: testing checking additions to CFLAGS ..." 1>&5 cf_check_cflags="$CFLAGS" cf_check_cppflags="$CPPFLAGS" @@ -36213,7 +36269,7 @@ done if test -n "$cf_new_cflags" ; then test -n "$verbose" && echo " add to \$CFLAGS $cf_new_cflags" 1>&6 -echo "${as_me-configure}:36216: testing add to \$CFLAGS $cf_new_cflags ..." 1>&5 +echo "${as_me-configure}:36272: testing add to \$CFLAGS $cf_new_cflags ..." 1>&5 CFLAGS="$CFLAGS $cf_new_cflags" fi @@ -36221,7 +36277,7 @@ fi if test -n "$cf_new_cppflags" ; then test -n "$verbose" && echo " add to \$CPPFLAGS $cf_new_cppflags" 1>&6 -echo "${as_me-configure}:36224: testing add to \$CPPFLAGS $cf_new_cppflags ..." 1>&5 +echo "${as_me-configure}:36280: testing add to \$CPPFLAGS $cf_new_cppflags ..." 1>&5 CPPFLAGS="$CPPFLAGS $cf_new_cppflags" fi @@ -36229,14 +36285,14 @@ fi if test -n "$cf_new_extra_cppflags" ; then test -n "$verbose" && echo " add to \$EXTRA_CPPFLAGS $cf_new_extra_cppflags" 1>&6 -echo "${as_me-configure}:36232: testing add to \$EXTRA_CPPFLAGS $cf_new_extra_cppflags ..." 1>&5 +echo "${as_me-configure}:36288: testing add to \$EXTRA_CPPFLAGS $cf_new_extra_cppflags ..." 1>&5 EXTRA_CPPFLAGS="$cf_new_extra_cppflags $EXTRA_CPPFLAGS" fi if test "$cf_check_cflags" != "$CFLAGS" ; then cat >conftest.$ac_ext <<_ACEOF -#line 36239 "configure" +#line 36295 "configure" #include "confdefs.h" #include <stdio.h> int @@ -36248,16 +36304,16 @@ printf("Hello world"); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:36251: \"$ac_link\"") >&5 +if { (eval echo "$as_me:36307: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:36254: \$? = $ac_status" >&5 + echo "$as_me:36310: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:36257: \"$ac_try\"") >&5 + { (eval echo "$as_me:36313: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:36260: \$? = $ac_status" >&5 + echo "$as_me:36316: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -36265,12 +36321,12 @@ else cat conftest.$ac_ext >&5 test -n "$verbose" && echo " test-compile failed. Undoing change to \$CFLAGS" 1>&6 -echo "${as_me-configure}:36268: testing test-compile failed. Undoing change to \$CFLAGS ..." 1>&5 +echo "${as_me-configure}:36324: testing test-compile failed. Undoing change to \$CFLAGS ..." 1>&5 if test "$cf_check_cppflags" != "$CPPFLAGS" ; then test -n "$verbose" && echo " but keeping change to \$CPPFLAGS" 1>&6 -echo "${as_me-configure}:36273: testing but keeping change to \$CPPFLAGS ..." 1>&5 +echo "${as_me-configure}:36329: testing but keeping change to \$CPPFLAGS ..." 1>&5 fi CFLAGS="$cf_check_flags" @@ -36278,13 +36334,13 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:36281: checking for XOpenDisplay" >&5 +echo "$as_me:36337: checking for XOpenDisplay" >&5 echo $ECHO_N "checking for XOpenDisplay... $ECHO_C" >&6 if test "${ac_cv_func_XOpenDisplay+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 36287 "configure" +#line 36343 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char XOpenDisplay (); below. */ @@ -36315,16 +36371,16 @@ f = XOpenDisplay; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:36318: \"$ac_link\"") >&5 +if { (eval echo "$as_me:36374: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:36321: \$? = $ac_status" >&5 + echo "$as_me:36377: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:36324: \"$ac_try\"") >&5 + { (eval echo "$as_me:36380: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:36327: \$? = $ac_status" >&5 + echo "$as_me:36383: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_XOpenDisplay=yes else @@ -36334,13 +36390,13 @@ ac_cv_func_XOpenDisplay=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:36337: result: $ac_cv_func_XOpenDisplay" >&5 +echo "$as_me:36393: result: $ac_cv_func_XOpenDisplay" >&5 echo "${ECHO_T}$ac_cv_func_XOpenDisplay" >&6 if test $ac_cv_func_XOpenDisplay = yes; then : else -echo "$as_me:36343: checking for XOpenDisplay in -lX11" >&5 +echo "$as_me:36399: checking for XOpenDisplay in -lX11" >&5 echo $ECHO_N "checking for XOpenDisplay in -lX11... $ECHO_C" >&6 if test "${ac_cv_lib_X11_XOpenDisplay+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -36348,7 +36404,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lX11 $X_PRE_LIBS $LIBS $X_EXTRA_LIBS $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 36351 "configure" +#line 36407 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -36367,16 +36423,16 @@ XOpenDisplay (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:36370: \"$ac_link\"") >&5 +if { (eval echo "$as_me:36426: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:36373: \$? = $ac_status" >&5 + echo "$as_me:36429: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:36376: \"$ac_try\"") >&5 + { (eval echo "$as_me:36432: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:36379: \$? = $ac_status" >&5 + echo "$as_me:36435: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_X11_XOpenDisplay=yes else @@ -36387,7 +36443,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:36390: result: $ac_cv_lib_X11_XOpenDisplay" >&5 +echo "$as_me:36446: result: $ac_cv_lib_X11_XOpenDisplay" >&5 echo "${ECHO_T}$ac_cv_lib_X11_XOpenDisplay" >&6 if test $ac_cv_lib_X11_XOpenDisplay = yes; then LIBS="-lX11 $LIBS" @@ -36395,13 +36451,13 @@ fi fi -echo "$as_me:36398: checking for XtAppInitialize" >&5 +echo "$as_me:36454: checking for XtAppInitialize" >&5 echo $ECHO_N "checking for XtAppInitialize... $ECHO_C" >&6 if test "${ac_cv_func_XtAppInitialize+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 36404 "configure" +#line 36460 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char XtAppInitialize (); below. */ @@ -36432,16 +36488,16 @@ f = XtAppInitialize; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:36435: \"$ac_link\"") >&5 +if { (eval echo "$as_me:36491: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:36438: \$? = $ac_status" >&5 + echo "$as_me:36494: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:36441: \"$ac_try\"") >&5 + { (eval echo "$as_me:36497: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:36444: \$? = $ac_status" >&5 + echo "$as_me:36500: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_XtAppInitialize=yes else @@ -36451,13 +36507,13 @@ ac_cv_func_XtAppInitialize=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:36454: result: $ac_cv_func_XtAppInitialize" >&5 +echo "$as_me:36510: result: $ac_cv_func_XtAppInitialize" >&5 echo "${ECHO_T}$ac_cv_func_XtAppInitialize" >&6 if test $ac_cv_func_XtAppInitialize = yes; then : else -echo "$as_me:36460: checking for XtAppInitialize in -lXt" >&5 +echo "$as_me:36516: checking for XtAppInitialize in -lXt" >&5 echo $ECHO_N "checking for XtAppInitialize in -lXt... $ECHO_C" >&6 if test "${ac_cv_lib_Xt_XtAppInitialize+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -36465,7 +36521,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lXt $X_PRE_LIBS $LIBS $X_EXTRA_LIBS $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 36468 "configure" +#line 36524 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -36484,16 +36540,16 @@ XtAppInitialize (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:36487: \"$ac_link\"") >&5 +if { (eval echo "$as_me:36543: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:36490: \$? = $ac_status" >&5 + echo "$as_me:36546: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:36493: \"$ac_try\"") >&5 + { (eval echo "$as_me:36549: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:36496: \$? = $ac_status" >&5 + echo "$as_me:36552: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_Xt_XtAppInitialize=yes else @@ -36504,7 +36560,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:36507: result: $ac_cv_lib_Xt_XtAppInitialize" >&5 +echo "$as_me:36563: result: $ac_cv_lib_Xt_XtAppInitialize" >&5 echo "${ECHO_T}$ac_cv_lib_Xt_XtAppInitialize" >&6 if test $ac_cv_lib_Xt_XtAppInitialize = yes; then cat >>confdefs.h <<\EOF @@ -36518,7 +36574,7 @@ fi fi if test $cf_have_X_LIBS = no ; then - { echo "$as_me:36521: WARNING: Unable to successfully link X Toolkit library (-lXt) with + { echo "$as_me:36577: WARNING: Unable to successfully link X Toolkit library (-lXt) with test program. You will have to check and add the proper libraries by hand to makefile." >&5 echo "$as_me: WARNING: Unable to successfully link X Toolkit library (-lXt) with @@ -36528,7 +36584,7 @@ fi cf_x_athena=${cf_x_athena-Xaw} -echo "$as_me:36531: checking if you want to link with Xaw 3d library" >&5 +echo "$as_me:36587: checking if you want to link with Xaw 3d library" >&5 echo $ECHO_N "checking if you want to link with Xaw 3d library... $ECHO_C" >&6 withval= @@ -36539,14 +36595,14 @@ if test "${with_Xaw3d+set}" = set; then fi; if test "$withval" = yes ; then cf_x_athena=Xaw3d - echo "$as_me:36542: result: yes" >&5 + echo "$as_me:36598: result: yes" >&5 echo "${ECHO_T}yes" >&6 else - echo "$as_me:36545: result: no" >&5 + echo "$as_me:36601: result: no" >&5 echo "${ECHO_T}no" >&6 fi -echo "$as_me:36549: checking if you want to link with neXT Athena library" >&5 +echo "$as_me:36605: checking if you want to link with neXT Athena library" >&5 echo $ECHO_N "checking if you want to link with neXT Athena library... $ECHO_C" >&6 withval= @@ -36557,14 +36613,14 @@ if test "${with_neXtaw+set}" = set; then fi; if test "$withval" = yes ; then cf_x_athena=neXtaw - echo "$as_me:36560: result: yes" >&5 + echo "$as_me:36616: result: yes" >&5 echo "${ECHO_T}yes" >&6 else - echo "$as_me:36563: result: no" >&5 + echo "$as_me:36619: result: no" >&5 echo "${ECHO_T}no" >&6 fi -echo "$as_me:36567: checking if you want to link with Athena-Plus library" >&5 +echo "$as_me:36623: checking if you want to link with Athena-Plus library" >&5 echo $ECHO_N "checking if you want to link with Athena-Plus library... $ECHO_C" >&6 withval= @@ -36575,14 +36631,14 @@ if test "${with_XawPlus+set}" = set; then fi; if test "$withval" = yes ; then cf_x_athena=XawPlus - echo "$as_me:36578: result: yes" >&5 + echo "$as_me:36634: result: yes" >&5 echo "${ECHO_T}yes" >&6 else - echo "$as_me:36581: result: no" >&5 + echo "$as_me:36637: result: no" >&5 echo "${ECHO_T}no" >&6 fi -echo "$as_me:36585: checking for XextCreateExtension in -lXext" >&5 +echo "$as_me:36641: checking for XextCreateExtension in -lXext" >&5 echo $ECHO_N "checking for XextCreateExtension in -lXext... $ECHO_C" >&6 if test "${ac_cv_lib_Xext_XextCreateExtension+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -36590,7 +36646,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lXext $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 36593 "configure" +#line 36649 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -36609,16 +36665,16 @@ XextCreateExtension (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:36612: \"$ac_link\"") >&5 +if { (eval echo "$as_me:36668: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:36615: \$? = $ac_status" >&5 + echo "$as_me:36671: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:36618: \"$ac_try\"") >&5 + { (eval echo "$as_me:36674: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:36621: \$? = $ac_status" >&5 + echo "$as_me:36677: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_Xext_XextCreateExtension=yes else @@ -36629,7 +36685,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:36632: result: $ac_cv_lib_Xext_XextCreateExtension" >&5 +echo "$as_me:36688: result: $ac_cv_lib_Xext_XextCreateExtension" >&5 echo "${ECHO_T}$ac_cv_lib_Xext_XextCreateExtension" >&6 if test $ac_cv_lib_Xext_XextCreateExtension = yes; then LIBS="-lXext $LIBS" @@ -36651,14 +36707,14 @@ do cf_test=X11/$cf_x_athena_root/SimpleMenu.h if test $cf_path != default ; then CPPFLAGS="$cf_save -I$cf_path/include" - echo "$as_me:36654: checking for $cf_test in $cf_path" >&5 + echo "$as_me:36710: checking for $cf_test in $cf_path" >&5 echo $ECHO_N "checking for $cf_test in $cf_path... $ECHO_C" >&6 else - echo "$as_me:36657: checking for $cf_test" >&5 + echo "$as_me:36713: checking for $cf_test" >&5 echo $ECHO_N "checking for $cf_test... $ECHO_C" >&6 fi cat >conftest.$ac_ext <<_ACEOF -#line 36661 "configure" +#line 36717 "configure" #include "confdefs.h" #include <X11/Intrinsic.h> @@ -36672,16 +36728,16 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:36675: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:36731: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:36678: \$? = $ac_status" >&5 + echo "$as_me:36734: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:36681: \"$ac_try\"") >&5 + { (eval echo "$as_me:36737: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:36684: \$? = $ac_status" >&5 + echo "$as_me:36740: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_result=yes else @@ -36690,7 +36746,7 @@ cat conftest.$ac_ext >&5 cf_result=no fi rm -f conftest.$ac_objext conftest.$ac_ext - echo "$as_me:36693: result: $cf_result" >&5 + echo "$as_me:36749: result: $cf_result" >&5 echo "${ECHO_T}$cf_result" >&6 if test "$cf_result" = yes ; then cf_x_athena_include=$cf_path @@ -36702,7 +36758,7 @@ echo "${ECHO_T}$cf_result" >&6 done if test -z "$cf_x_athena_include" ; then - { echo "$as_me:36705: WARNING: Unable to successfully find Athena header files with test program" >&5 + { echo "$as_me:36761: WARNING: Unable to successfully find Athena header files with test program" >&5 echo "$as_me: WARNING: Unable to successfully find Athena header files with test program" >&2;} elif test "$cf_x_athena_include" != default ; then CPPFLAGS="$CPPFLAGS -I$cf_x_athena_include" @@ -36727,15 +36783,15 @@ do cf_test=XawSimpleMenuAddGlobalActions if test $cf_path != default ; then LIBS="-L$cf_path/lib $cf_lib $LIBS" - echo "$as_me:36730: checking for $cf_lib in $cf_path" >&5 + echo "$as_me:36786: checking for $cf_lib in $cf_path" >&5 echo $ECHO_N "checking for $cf_lib in $cf_path... $ECHO_C" >&6 else LIBS="$cf_lib $LIBS" - echo "$as_me:36734: checking for $cf_test in $cf_lib" >&5 + echo "$as_me:36790: checking for $cf_test in $cf_lib" >&5 echo $ECHO_N "checking for $cf_test in $cf_lib... $ECHO_C" >&6 fi cat >conftest.$ac_ext <<_ACEOF -#line 36738 "configure" +#line 36794 "configure" #include "confdefs.h" int @@ -36747,16 +36803,16 @@ $cf_test() } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:36750: \"$ac_link\"") >&5 +if { (eval echo "$as_me:36806: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:36753: \$? = $ac_status" >&5 + echo "$as_me:36809: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:36756: \"$ac_try\"") >&5 + { (eval echo "$as_me:36812: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:36759: \$? = $ac_status" >&5 + echo "$as_me:36815: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_result=yes else @@ -36765,7 +36821,7 @@ cat conftest.$ac_ext >&5 cf_result=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext - echo "$as_me:36768: result: $cf_result" >&5 + echo "$as_me:36824: result: $cf_result" >&5 echo "${ECHO_T}$cf_result" >&6 if test "$cf_result" = yes ; then cf_x_athena_lib="$cf_lib" @@ -36777,7 +36833,7 @@ echo "${ECHO_T}$cf_result" >&6 done if test -z "$cf_x_athena_lib" ; then - { { echo "$as_me:36780: error: Unable to successfully link Athena library (-l$cf_x_athena_root) with test program" >&5 + { { echo "$as_me:36836: error: Unable to successfully link Athena library (-l$cf_x_athena_root) with test program" >&5 echo "$as_me: error: Unable to successfully link Athena library (-l$cf_x_athena_root) with test program" >&2;} { (exit 1); exit 1; }; } fi @@ -36792,7 +36848,7 @@ for ac_prog in xcurses-config 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:36795: checking for $ac_word" >&5 +echo "$as_me:36851: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_path_XCURSES_CONFIG+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -36809,7 +36865,7 @@ for ac_dir in $ac_dummy; do test -z "$ac_dir" && ac_dir=. if $as_executable_p "$ac_dir/$ac_word"; then ac_cv_path_XCURSES_CONFIG="$ac_dir/$ac_word" - echo "$as_me:36812: found $ac_dir/$ac_word" >&5 + echo "$as_me:36868: found $ac_dir/$ac_word" >&5 break fi done @@ -36820,10 +36876,10 @@ fi XCURSES_CONFIG=$ac_cv_path_XCURSES_CONFIG if test -n "$XCURSES_CONFIG"; then - echo "$as_me:36823: result: $XCURSES_CONFIG" >&5 + echo "$as_me:36879: result: $XCURSES_CONFIG" >&5 echo "${ECHO_T}$XCURSES_CONFIG" >&6 else - echo "$as_me:36826: result: no" >&5 + echo "$as_me:36882: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -36844,7 +36900,7 @@ LDFLAGS="$LDFLAGS $X_LIBS" test -n "$verbose" && echo " checking additions to CFLAGS" 1>&6 -echo "${as_me-configure}:36847: testing checking additions to CFLAGS ..." 1>&5 +echo "${as_me-configure}:36903: testing checking additions to CFLAGS ..." 1>&5 cf_check_cflags="$CFLAGS" cf_check_cppflags="$CPPFLAGS" @@ -36915,7 +36971,7 @@ done if test -n "$cf_new_cflags" ; then test -n "$verbose" && echo " add to \$CFLAGS $cf_new_cflags" 1>&6 -echo "${as_me-configure}:36918: testing add to \$CFLAGS $cf_new_cflags ..." 1>&5 +echo "${as_me-configure}:36974: testing add to \$CFLAGS $cf_new_cflags ..." 1>&5 CFLAGS="$CFLAGS $cf_new_cflags" fi @@ -36923,7 +36979,7 @@ fi if test -n "$cf_new_cppflags" ; then test -n "$verbose" && echo " add to \$CPPFLAGS $cf_new_cppflags" 1>&6 -echo "${as_me-configure}:36926: testing add to \$CPPFLAGS $cf_new_cppflags ..." 1>&5 +echo "${as_me-configure}:36982: testing add to \$CPPFLAGS $cf_new_cppflags ..." 1>&5 CPPFLAGS="$CPPFLAGS $cf_new_cppflags" fi @@ -36931,14 +36987,14 @@ fi if test -n "$cf_new_extra_cppflags" ; then test -n "$verbose" && echo " add to \$EXTRA_CPPFLAGS $cf_new_extra_cppflags" 1>&6 -echo "${as_me-configure}:36934: testing add to \$EXTRA_CPPFLAGS $cf_new_extra_cppflags ..." 1>&5 +echo "${as_me-configure}:36990: testing add to \$EXTRA_CPPFLAGS $cf_new_extra_cppflags ..." 1>&5 EXTRA_CPPFLAGS="$cf_new_extra_cppflags $EXTRA_CPPFLAGS" fi if test "$cf_check_cflags" != "$CFLAGS" ; then cat >conftest.$ac_ext <<_ACEOF -#line 36941 "configure" +#line 36997 "configure" #include "confdefs.h" #include <stdio.h> int @@ -36950,16 +37006,16 @@ printf("Hello world"); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:36953: \"$ac_link\"") >&5 +if { (eval echo "$as_me:37009: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:36956: \$? = $ac_status" >&5 + echo "$as_me:37012: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:36959: \"$ac_try\"") >&5 + { (eval echo "$as_me:37015: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:36962: \$? = $ac_status" >&5 + echo "$as_me:37018: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -36967,12 +37023,12 @@ else cat conftest.$ac_ext >&5 test -n "$verbose" && echo " test-compile failed. Undoing change to \$CFLAGS" 1>&6 -echo "${as_me-configure}:36970: testing test-compile failed. Undoing change to \$CFLAGS ..." 1>&5 +echo "${as_me-configure}:37026: testing test-compile failed. Undoing change to \$CFLAGS ..." 1>&5 if test "$cf_check_cppflags" != "$CPPFLAGS" ; then test -n "$verbose" && echo " but keeping change to \$CPPFLAGS" 1>&6 -echo "${as_me-configure}:36975: testing but keeping change to \$CPPFLAGS ..." 1>&5 +echo "${as_me-configure}:37031: testing but keeping change to \$CPPFLAGS ..." 1>&5 fi CFLAGS="$cf_check_flags" @@ -36980,7 +37036,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:36983: checking for XOpenDisplay in -lX11" >&5 +echo "$as_me:37039: checking for XOpenDisplay in -lX11" >&5 echo $ECHO_N "checking for XOpenDisplay in -lX11... $ECHO_C" >&6 if test "${ac_cv_lib_X11_XOpenDisplay+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -36988,7 +37044,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lX11 $X_PRE_LIBS $LIBS $X_EXTRA_LIBS $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 36991 "configure" +#line 37047 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -37007,16 +37063,16 @@ XOpenDisplay (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:37010: \"$ac_link\"") >&5 +if { (eval echo "$as_me:37066: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:37013: \$? = $ac_status" >&5 + echo "$as_me:37069: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:37016: \"$ac_try\"") >&5 + { (eval echo "$as_me:37072: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:37019: \$? = $ac_status" >&5 + echo "$as_me:37075: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_X11_XOpenDisplay=yes else @@ -37027,13 +37083,13 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:37030: result: $ac_cv_lib_X11_XOpenDisplay" >&5 +echo "$as_me:37086: result: $ac_cv_lib_X11_XOpenDisplay" >&5 echo "${ECHO_T}$ac_cv_lib_X11_XOpenDisplay" >&6 if test $ac_cv_lib_X11_XOpenDisplay = yes; then LIBS="-lX11 $LIBS" fi -echo "$as_me:37036: checking for XCurses library" >&5 +echo "$as_me:37092: checking for XCurses library" >&5 echo $ECHO_N "checking for XCurses library... $ECHO_C" >&6 if test "${cf_cv_lib_XCurses+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -37041,7 +37097,7 @@ else LIBS="-lXCurses $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 37044 "configure" +#line 37100 "configure" #include "confdefs.h" #include <xcurses.h> @@ -37056,16 +37112,16 @@ XCursesExit(); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:37059: \"$ac_link\"") >&5 +if { (eval echo "$as_me:37115: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:37062: \$? = $ac_status" >&5 + echo "$as_me:37118: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:37065: \"$ac_try\"") >&5 + { (eval echo "$as_me:37121: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:37068: \$? = $ac_status" >&5 + echo "$as_me:37124: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_lib_XCurses=yes else @@ -37076,7 +37132,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:37079: result: $cf_cv_lib_XCurses" >&5 +echo "$as_me:37135: result: $cf_cv_lib_XCurses" >&5 echo "${ECHO_T}$cf_cv_lib_XCurses" >&6 fi @@ -37095,14 +37151,14 @@ EOF EOF else - { { echo "$as_me:37098: error: Cannot link with XCurses" >&5 + { { echo "$as_me:37154: error: Cannot link with XCurses" >&5 echo "$as_me: error: Cannot link with XCurses" >&2;} { (exit 1); exit 1; }; } fi else -echo "$as_me:37105: checking if we can include termio.h with curses" >&5 +echo "$as_me:37161: checking if we can include termio.h with curses" >&5 echo $ECHO_N "checking if we can include termio.h with curses... $ECHO_C" >&6 if test "${cf_cv_termio_and_curses+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -37112,7 +37168,7 @@ else CPPFLAGS="$CPPFLAGS -DHAVE_CONFIG_H -I. -I${srcdir-.} -I${srcdir-.}/src -I${srcdir-.}/WWW/Library/Implementation" touch lynx_cfg.h cat >conftest.$ac_ext <<_ACEOF -#line 37115 "configure" +#line 37171 "configure" #include "confdefs.h" #include <LYCurses.h> @@ -37126,16 +37182,16 @@ putchar(0x0a) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:37129: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:37185: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:37132: \$? = $ac_status" >&5 + echo "$as_me:37188: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:37135: \"$ac_try\"") >&5 + { (eval echo "$as_me:37191: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:37138: \$? = $ac_status" >&5 + echo "$as_me:37194: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_termio_and_curses=yes else @@ -37148,7 +37204,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext rm -f lynx_cfg.h fi -echo "$as_me:37151: result: $cf_cv_termio_and_curses" >&5 +echo "$as_me:37207: result: $cf_cv_termio_and_curses" >&5 echo "${ECHO_T}$cf_cv_termio_and_curses" >&6 test $cf_cv_termio_and_curses = yes && cat >>confdefs.h <<\EOF @@ -37163,23 +37219,23 @@ if test $cf_cv_screen != slang ; then for ac_header in $cf_cv_screen/term.h term.h do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` -echo "$as_me:37166: checking for $ac_header" >&5 +echo "$as_me:37222: 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 37172 "configure" +#line 37228 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:37176: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:37232: \"$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:37182: \$? = $ac_status" >&5 + echo "$as_me:37238: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -37198,7 +37254,7 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:37201: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:37257: 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 <<EOF @@ -37208,7 +37264,7 @@ EOF fi done -echo "$as_me:37211: checking if curses supports alternate-character set" >&5 +echo "$as_me:37267: checking if curses supports alternate-character set" >&5 echo $ECHO_N "checking if curses supports alternate-character set... $ECHO_C" >&6 if test "${cf_cv_alt_char_set+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -37217,7 +37273,7 @@ else for mapname in acs_map _acs_map do cat >conftest.$ac_ext <<_ACEOF -#line 37220 "configure" +#line 37276 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header-curses.h}> @@ -37231,16 +37287,16 @@ chtype x = $mapname['l']; $mapname['m'] = 0 } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:37234: \"$ac_link\"") >&5 +if { (eval echo "$as_me:37290: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:37237: \$? = $ac_status" >&5 + echo "$as_me:37293: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:37240: \"$ac_try\"") >&5 + { (eval echo "$as_me:37296: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:37243: \$? = $ac_status" >&5 + echo "$as_me:37299: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_alt_char_set=$mapname break @@ -37254,20 +37310,20 @@ done fi -echo "$as_me:37257: result: $cf_cv_alt_char_set" >&5 +echo "$as_me:37313: result: $cf_cv_alt_char_set" >&5 echo "${ECHO_T}$cf_cv_alt_char_set" >&6 test $cf_cv_alt_char_set != no && cat >>confdefs.h <<EOF #define ALT_CHAR_SET $cf_cv_alt_char_set EOF -echo "$as_me:37263: checking if curses supports fancy attributes" >&5 +echo "$as_me:37319: checking if curses supports fancy attributes" >&5 echo $ECHO_N "checking if curses supports fancy attributes... $ECHO_C" >&6 if test "${cf_cv_fancy_curses+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 37270 "configure" +#line 37326 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header-curses.h}> @@ -37285,16 +37341,16 @@ attrset(A_UNDERLINE|A_BOLD|A_REVERSE); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:37288: \"$ac_link\"") >&5 +if { (eval echo "$as_me:37344: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:37291: \$? = $ac_status" >&5 + echo "$as_me:37347: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:37294: \"$ac_try\"") >&5 + { (eval echo "$as_me:37350: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:37297: \$? = $ac_status" >&5 + echo "$as_me:37353: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_fancy_curses=yes else @@ -37306,13 +37362,13 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:37309: result: $cf_cv_fancy_curses" >&5 +echo "$as_me:37365: result: $cf_cv_fancy_curses" >&5 echo "${ECHO_T}$cf_cv_fancy_curses" >&6 test $cf_cv_fancy_curses = yes && cat >>confdefs.h <<\EOF #define FANCY_CURSES 1 EOF -echo "$as_me:37315: checking for function curses_version" >&5 +echo "$as_me:37371: checking for function curses_version" >&5 echo $ECHO_N "checking for function curses_version... $ECHO_C" >&6 if test "${cf_cv_func_curses_version+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -37322,7 +37378,7 @@ if test "$cross_compiling" = yes; then cf_cv_func_curses_version=unknown else cat >conftest.$ac_ext <<_ACEOF -#line 37325 "configure" +#line 37381 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header-curses.h}> @@ -37335,15 +37391,15 @@ int main() _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:37338: \"$ac_link\"") >&5 +if { (eval echo "$as_me:37394: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:37341: \$? = $ac_status" >&5 + echo "$as_me:37397: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:37343: \"$ac_try\"") >&5 + { (eval echo "$as_me:37399: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:37346: \$? = $ac_status" >&5 + echo "$as_me:37402: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_func_curses_version=yes @@ -37358,21 +37414,21 @@ rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext fi rm -f core fi -echo "$as_me:37361: result: $cf_cv_func_curses_version" >&5 +echo "$as_me:37417: result: $cf_cv_func_curses_version" >&5 echo "${ECHO_T}$cf_cv_func_curses_version" >&6 test "$cf_cv_func_curses_version" = yes && cat >>confdefs.h <<\EOF #define HAVE_CURSES_VERSION 1 EOF if test "$cf_cv_ncurses_version" != no ; then -echo "$as_me:37368: checking for obsolete/broken version of ncurses" >&5 +echo "$as_me:37424: checking for obsolete/broken version of ncurses" >&5 echo $ECHO_N "checking for obsolete/broken version of ncurses... $ECHO_C" >&6 if test "${cf_cv_ncurses_broken+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 37375 "configure" +#line 37431 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header-curses.h}> @@ -37391,16 +37447,16 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:37394: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:37450: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:37397: \$? = $ac_status" >&5 + echo "$as_me:37453: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:37400: \"$ac_try\"") >&5 + { (eval echo "$as_me:37456: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:37403: \$? = $ac_status" >&5 + echo "$as_me:37459: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_ncurses_broken=no else @@ -37412,10 +37468,10 @@ rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:37415: result: $cf_cv_ncurses_broken" >&5 +echo "$as_me:37471: result: $cf_cv_ncurses_broken" >&5 echo "${ECHO_T}$cf_cv_ncurses_broken" >&6 if test "$cf_cv_ncurses_broken" = yes ; then - { echo "$as_me:37418: WARNING: hmm... you should get an up-to-date version of ncurses" >&5 + { echo "$as_me:37474: WARNING: hmm... you should get an up-to-date version of ncurses" >&5 echo "$as_me: WARNING: hmm... you should get an up-to-date version of ncurses" >&2;} cat >>confdefs.h <<\EOF #define NCURSES_BROKEN 1 @@ -37424,14 +37480,14 @@ EOF fi fi -echo "$as_me:37427: checking if curses supports color attributes" >&5 +echo "$as_me:37483: checking if curses supports color attributes" >&5 echo $ECHO_N "checking if curses supports color attributes... $ECHO_C" >&6 if test "${cf_cv_color_curses+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 37434 "configure" +#line 37490 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header-curses.h}> @@ -37451,16 +37507,16 @@ chtype x = COLOR_BLUE; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:37454: \"$ac_link\"") >&5 +if { (eval echo "$as_me:37510: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:37457: \$? = $ac_status" >&5 + echo "$as_me:37513: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:37460: \"$ac_try\"") >&5 + { (eval echo "$as_me:37516: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:37463: \$? = $ac_status" >&5 + echo "$as_me:37519: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_color_curses=yes else @@ -37472,7 +37528,7 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:37475: result: $cf_cv_color_curses" >&5 +echo "$as_me:37531: result: $cf_cv_color_curses" >&5 echo "${ECHO_T}$cf_cv_color_curses" >&6 if test $cf_cv_color_curses = yes ; then cat >>confdefs.h <<\EOF @@ -37492,23 +37548,23 @@ unistd.h \ do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` -echo "$as_me:37495: checking for $ac_header" >&5 +echo "$as_me:37551: 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 37501 "configure" +#line 37557 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:37505: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:37561: \"$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:37511: \$? = $ac_status" >&5 + echo "$as_me:37567: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -37527,7 +37583,7 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:37530: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:37586: 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 <<EOF @@ -37542,23 +37598,23 @@ if test "$ISC" = yes ; then for ac_header in sys/termio.h do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` -echo "$as_me:37545: checking for $ac_header" >&5 +echo "$as_me:37601: 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 37551 "configure" +#line 37607 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:37555: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:37611: \"$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:37561: \$? = $ac_status" >&5 + echo "$as_me:37617: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -37577,7 +37633,7 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:37580: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:37636: 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 <<EOF @@ -37595,10 +37651,10 @@ if test "$ac_cv_header_termios_h" = yes ; then *) termios_bad=maybe ;; esac if test "$termios_bad" = maybe ; then - echo "$as_me:37598: checking whether termios.h needs _POSIX_SOURCE" >&5 + echo "$as_me:37654: checking whether termios.h needs _POSIX_SOURCE" >&5 echo $ECHO_N "checking whether termios.h needs _POSIX_SOURCE... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF -#line 37601 "configure" +#line 37657 "configure" #include "confdefs.h" #include <termios.h> int @@ -37610,16 +37666,16 @@ struct termios foo; int x = foo.c_iflag } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:37613: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:37669: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:37616: \$? = $ac_status" >&5 + echo "$as_me:37672: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:37619: \"$ac_try\"") >&5 + { (eval echo "$as_me:37675: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:37622: \$? = $ac_status" >&5 + echo "$as_me:37678: \$? = $ac_status" >&5 (exit $ac_status); }; }; then termios_bad=no else @@ -37627,7 +37683,7 @@ else cat conftest.$ac_ext >&5 cat >conftest.$ac_ext <<_ACEOF -#line 37630 "configure" +#line 37686 "configure" #include "confdefs.h" #define _POSIX_SOURCE @@ -37641,16 +37697,16 @@ struct termios foo; int x = foo.c_iflag } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:37644: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:37700: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:37647: \$? = $ac_status" >&5 + echo "$as_me:37703: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:37650: \"$ac_try\"") >&5 + { (eval echo "$as_me:37706: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:37653: \$? = $ac_status" >&5 + echo "$as_me:37709: \$? = $ac_status" >&5 (exit $ac_status); }; }; then termios_bad=unknown else @@ -37665,12 +37721,12 @@ rm -f conftest.$ac_objext conftest.$ac_ext fi rm -f conftest.$ac_objext conftest.$ac_ext - echo "$as_me:37668: result: $termios_bad" >&5 + echo "$as_me:37724: result: $termios_bad" >&5 echo "${ECHO_T}$termios_bad" >&6 fi fi -echo "$as_me:37673: checking declaration of size-change" >&5 +echo "$as_me:37729: checking declaration of size-change" >&5 echo $ECHO_N "checking declaration of size-change... $ECHO_C" >&6 if test "${cf_cv_sizechange+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -37685,7 +37741,7 @@ do CPPFLAGS="$cf_save_CPPFLAGS" test -n "$cf_opts" && CPPFLAGS="$CPPFLAGS -D$cf_opts" cat >conftest.$ac_ext <<_ACEOF -#line 37688 "configure" +#line 37744 "configure" #include "confdefs.h" #include <sys/types.h> #ifdef HAVE_TERMIOS_H @@ -37729,16 +37785,16 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:37732: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:37788: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:37735: \$? = $ac_status" >&5 + echo "$as_me:37791: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:37738: \"$ac_try\"") >&5 + { (eval echo "$as_me:37794: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:37741: \$? = $ac_status" >&5 + echo "$as_me:37797: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_sizechange=yes else @@ -37757,7 +37813,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext done fi -echo "$as_me:37760: result: $cf_cv_sizechange" >&5 +echo "$as_me:37816: result: $cf_cv_sizechange" >&5 echo "${ECHO_T}$cf_cv_sizechange" >&6 if test "$cf_cv_sizechange" != no ; then cat >>confdefs.h <<\EOF @@ -37774,14 +37830,14 @@ EOF esac fi -echo "$as_me:37777: checking if ttytype is declared in curses library" >&5 +echo "$as_me:37833: checking if ttytype is declared in curses library" >&5 echo $ECHO_N "checking if ttytype is declared in curses library... $ECHO_C" >&6 if test "${cf_cv_have_ttytype+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 37784 "configure" +#line 37840 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header-curses.h}> int @@ -37793,16 +37849,16 @@ char *x = &ttytype[1]; *x = 1 } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:37796: \"$ac_link\"") >&5 +if { (eval echo "$as_me:37852: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:37799: \$? = $ac_status" >&5 + echo "$as_me:37855: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:37802: \"$ac_try\"") >&5 + { (eval echo "$as_me:37858: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:37805: \$? = $ac_status" >&5 + echo "$as_me:37861: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_have_ttytype=yes else @@ -37814,7 +37870,7 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:37817: result: $cf_cv_have_ttytype" >&5 +echo "$as_me:37873: result: $cf_cv_have_ttytype" >&5 echo "${ECHO_T}$cf_cv_have_ttytype" >&6 test $cf_cv_have_ttytype = yes && cat >>confdefs.h <<\EOF #define HAVE_TTYTYPE 1 @@ -37822,14 +37878,14 @@ EOF if test "$use_wide_curses" = yes ; then -echo "$as_me:37825: checking if curses supports wide characters" >&5 +echo "$as_me:37881: checking if curses supports wide characters" >&5 echo $ECHO_N "checking if curses supports wide characters... $ECHO_C" >&6 if test "${cf_cv_widec_curses+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 37832 "configure" +#line 37888 "configure" #include "confdefs.h" #include <stdlib.h> @@ -37848,16 +37904,16 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:37851: \"$ac_link\"") >&5 +if { (eval echo "$as_me:37907: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:37854: \$? = $ac_status" >&5 + echo "$as_me:37910: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:37857: \"$ac_try\"") >&5 + { (eval echo "$as_me:37913: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:37860: \$? = $ac_status" >&5 + echo "$as_me:37916: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_widec_curses=yes else @@ -37868,7 +37924,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:37871: result: $cf_cv_widec_curses" >&5 +echo "$as_me:37927: result: $cf_cv_widec_curses" >&5 echo "${ECHO_T}$cf_cv_widec_curses" >&6 if test "$cf_cv_widec_curses" = yes ; then @@ -37877,14 +37933,14 @@ if test "$cf_cv_widec_curses" = yes ; then EOF # This is needed on Tru64 5.0 to declare mbstate_t - echo "$as_me:37880: checking if we must include wchar.h to declare mbstate_t" >&5 + echo "$as_me:37936: checking if we must include wchar.h to declare mbstate_t" >&5 echo $ECHO_N "checking if we must include wchar.h to declare mbstate_t... $ECHO_C" >&6 if test "${cf_cv_widec_mbstate+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 37887 "configure" +#line 37943 "configure" #include "confdefs.h" #include <stdlib.h> @@ -37898,23 +37954,23 @@ mbstate_t state } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:37901: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:37957: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:37904: \$? = $ac_status" >&5 + echo "$as_me:37960: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:37907: \"$ac_try\"") >&5 + { (eval echo "$as_me:37963: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:37910: \$? = $ac_status" >&5 + echo "$as_me:37966: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_widec_mbstate=no else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 cat >conftest.$ac_ext <<_ACEOF -#line 37917 "configure" +#line 37973 "configure" #include "confdefs.h" #include <stdlib.h> @@ -37929,16 +37985,16 @@ mbstate_t state } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:37932: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:37988: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:37935: \$? = $ac_status" >&5 + echo "$as_me:37991: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:37938: \"$ac_try\"") >&5 + { (eval echo "$as_me:37994: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:37941: \$? = $ac_status" >&5 + echo "$as_me:37997: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_widec_mbstate=yes else @@ -37950,7 +38006,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:37953: result: $cf_cv_widec_mbstate" >&5 +echo "$as_me:38009: result: $cf_cv_widec_mbstate" >&5 echo "${ECHO_T}$cf_cv_widec_mbstate" >&6 if test "$cf_cv_widec_mbstate" = yes ; then @@ -37971,14 +38027,14 @@ fi fi -echo "$as_me:37974: checking if we must define _XOPEN_SOURCE_EXTENDED" >&5 +echo "$as_me:38030: checking if we must define _XOPEN_SOURCE_EXTENDED" >&5 echo $ECHO_N "checking if we must define _XOPEN_SOURCE_EXTENDED... $ECHO_C" >&6 if test "${cf_cv_need_xopen_extension+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 37981 "configure" +#line 38037 "configure" #include "confdefs.h" #include <stdlib.h> @@ -37995,23 +38051,23 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:37998: \"$ac_link\"") >&5 +if { (eval echo "$as_me:38054: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:38001: \$? = $ac_status" >&5 + echo "$as_me:38057: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:38004: \"$ac_try\"") >&5 + { (eval echo "$as_me:38060: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:38007: \$? = $ac_status" >&5 + echo "$as_me:38063: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_need_xopen_extension=no else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 cat >conftest.$ac_ext <<_ACEOF -#line 38014 "configure" +#line 38070 "configure" #include "confdefs.h" #define _XOPEN_SOURCE_EXTENDED @@ -38029,16 +38085,16 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:38032: \"$ac_link\"") >&5 +if { (eval echo "$as_me:38088: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:38035: \$? = $ac_status" >&5 + echo "$as_me:38091: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:38038: \"$ac_try\"") >&5 + { (eval echo "$as_me:38094: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:38041: \$? = $ac_status" >&5 + echo "$as_me:38097: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_need_xopen_extension=yes else @@ -38050,11 +38106,11 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:38053: result: $cf_cv_need_xopen_extension" >&5 +echo "$as_me:38109: result: $cf_cv_need_xopen_extension" >&5 echo "${ECHO_T}$cf_cv_need_xopen_extension" >&6 test $cf_cv_need_xopen_extension = yes && CPPFLAGS="$CPPFLAGS -D_XOPEN_SOURCE_EXTENDED" -echo "$as_me:38057: checking for term.h" >&5 +echo "$as_me:38113: checking for term.h" >&5 echo $ECHO_N "checking for term.h... $ECHO_C" >&6 if test "${cf_cv_term_header+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -38067,7 +38123,7 @@ for cf_header in \ term.h do cat >conftest.$ac_ext <<_ACEOF -#line 38070 "configure" +#line 38126 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header-curses.h}> @@ -38081,16 +38137,16 @@ WINDOW *x } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:38084: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:38140: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:38087: \$? = $ac_status" >&5 + echo "$as_me:38143: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:38090: \"$ac_try\"") >&5 + { (eval echo "$as_me:38146: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:38093: \$? = $ac_status" >&5 + echo "$as_me:38149: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_term_header=$cf_header break @@ -38109,7 +38165,7 @@ no) for cf_header in ncurses/term.h ncursesw/term.h do cat >conftest.$ac_ext <<_ACEOF -#line 38112 "configure" +#line 38168 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header-curses.h}> @@ -38127,16 +38183,16 @@ WINDOW *x } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:38130: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:38186: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:38133: \$? = $ac_status" >&5 + echo "$as_me:38189: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:38136: \"$ac_try\"") >&5 + { (eval echo "$as_me:38192: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:38139: \$? = $ac_status" >&5 + echo "$as_me:38195: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_term_header=$cf_header break @@ -38151,7 +38207,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext esac fi -echo "$as_me:38154: result: $cf_cv_term_header" >&5 +echo "$as_me:38210: result: $cf_cv_term_header" >&5 echo "${ECHO_T}$cf_cv_term_header" >&6 case $cf_cv_term_header in #(vi @@ -38202,10 +38258,10 @@ do cf_tr_func=`echo "$cf_func" | sed y%abcdefghijklmnopqrstuvwxyz./-%ABCDEFGHIJKLMNOPQRSTUVWXYZ___%` - echo "$as_me:38205: checking for ${cf_func}" >&5 + echo "$as_me:38261: checking for ${cf_func}" >&5 echo $ECHO_N "checking for ${cf_func}... $ECHO_C" >&6 -echo "${as_me-configure}:38208: testing ${cf_func} ..." 1>&5 +echo "${as_me-configure}:38264: testing ${cf_func} ..." 1>&5 if eval "test \"\${cf_cv_func_$cf_func+set}\" = set"; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -38214,7 +38270,7 @@ else eval cf_result='$ac_cv_func_'$cf_func if test ".$cf_result" != ".no"; then cat >conftest.$ac_ext <<_ACEOF -#line 38217 "configure" +#line 38273 "configure" #include "confdefs.h" #ifdef HAVE_XCURSES @@ -38245,16 +38301,16 @@ ${cf_cv_main_return-return}(foo == 0); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:38248: \"$ac_link\"") >&5 +if { (eval echo "$as_me:38304: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:38251: \$? = $ac_status" >&5 + echo "$as_me:38307: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:38254: \"$ac_try\"") >&5 + { (eval echo "$as_me:38310: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:38257: \$? = $ac_status" >&5 + echo "$as_me:38313: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_result=yes else @@ -38270,7 +38326,7 @@ fi # use the computed/retrieved cache-value: eval 'cf_result=$cf_cv_func_'$cf_func - echo "$as_me:38273: result: $cf_result" >&5 + echo "$as_me:38329: result: $cf_result" >&5 echo "${ECHO_T}$cf_result" >&6 if test $cf_result != no; then cat >>confdefs.h <<EOF @@ -38286,13 +38342,13 @@ for ac_func in \ do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` -echo "$as_me:38289: checking for $ac_func" >&5 +echo "$as_me:38345: 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 38295 "configure" +#line 38351 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. */ @@ -38323,16 +38379,16 @@ f = $ac_func; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:38326: \"$ac_link\"") >&5 +if { (eval echo "$as_me:38382: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:38329: \$? = $ac_status" >&5 + echo "$as_me:38385: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:38332: \"$ac_try\"") >&5 + { (eval echo "$as_me:38388: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:38335: \$? = $ac_status" >&5 + echo "$as_me:38391: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else @@ -38342,7 +38398,7 @@ eval "$as_ac_var=no" fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:38345: result: `eval echo '${'$as_ac_var'}'`" >&5 +echo "$as_me:38401: 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 <<EOF @@ -38356,12 +38412,12 @@ fi if test $use_color_style != no ; then if test .$cf_cv_color_curses != .yes ; then - { { echo "$as_me:38359: error: Configuration does not support color-styles" >&5 + { { echo "$as_me:38415: error: Configuration does not support color-styles" >&5 echo "$as_me: error: Configuration does not support color-styles" >&2;} { (exit 1); exit 1; }; } fi if test $cf_cv_screen = slang ; then - { { echo "$as_me:38364: error: Configuration does not support color-styles" >&5 + { { echo "$as_me:38420: error: Configuration does not support color-styles" >&5 echo "$as_me: error: Configuration does not support color-styles" >&2;} { (exit 1); exit 1; }; } fi @@ -38369,7 +38425,7 @@ fi if test $use_scrollbar != no ; then if test .$cf_cv_fancy_curses != .yes ; then - { echo "$as_me:38372: WARNING: Configuration does not support ACS_xxx definitions" >&5 + { echo "$as_me:38428: WARNING: Configuration does not support ACS_xxx definitions" >&5 echo "$as_me: WARNING: Configuration does not support ACS_xxx definitions" >&2;} else cat >>confdefs.h <<\EOF @@ -38382,7 +38438,7 @@ fi # use rpath for libraries in unusual places LD_RPATH_OPT= -echo "$as_me:38385: checking for an rpath option" >&5 +echo "$as_me:38441: checking for an rpath option" >&5 echo $ECHO_N "checking for an rpath option... $ECHO_C" >&6 case $cf_cv_system_name in #(vi irix*) #(vi @@ -38413,17 +38469,17 @@ solaris2*) #(vi *) ;; esac -echo "$as_me:38416: result: $LD_RPATH_OPT" >&5 +echo "$as_me:38472: result: $LD_RPATH_OPT" >&5 echo "${ECHO_T}$LD_RPATH_OPT" >&6 case "x$LD_RPATH_OPT" in #(vi x-R*) - echo "$as_me:38421: checking if we need a space after rpath option" >&5 + echo "$as_me:38477: checking if we need a space after rpath option" >&5 echo $ECHO_N "checking if we need a space after rpath option... $ECHO_C" >&6 cf_save_LIBS="$LIBS" LIBS="${LD_RPATH_OPT}$libdir $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 38426 "configure" +#line 38482 "configure" #include "confdefs.h" int @@ -38435,16 +38491,16 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:38438: \"$ac_link\"") >&5 +if { (eval echo "$as_me:38494: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:38441: \$? = $ac_status" >&5 + echo "$as_me:38497: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:38444: \"$ac_try\"") >&5 + { (eval echo "$as_me:38500: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:38447: \$? = $ac_status" >&5 + echo "$as_me:38503: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_rpath_space=no else @@ -38454,41 +38510,160 @@ cf_rpath_space=yes fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS="$cf_save_LIBS" - echo "$as_me:38457: result: $cf_rpath_space" >&5 + echo "$as_me:38513: result: $cf_rpath_space" >&5 echo "${ECHO_T}$cf_rpath_space" >&6 test "$cf_rpath_space" = yes && LD_RPATH_OPT="$LD_RPATH_OPT " ;; esac -echo "$as_me:38463: checking for updated LDFLAGS" >&5 +echo "$as_me:38519: checking if rpath should be not be set" >&5 +echo $ECHO_N "checking if rpath should be not be set... $ECHO_C" >&6 + +# Check whether --enable-rpath-hack or --disable-rpath-hack was given. +if test "${enable_rpath_hack+set}" = set; then + enableval="$enable_rpath_hack" + test "$enableval" != no && enableval=yes + if test "$enableval" != "yes" ; then + cf_disable_rpath_hack=yes + else + cf_disable_rpath_hack=no + fi +else + enableval=yes + cf_disable_rpath_hack=no + +fi; +echo "$as_me:38536: result: $cf_disable_rpath_hack" >&5 +echo "${ECHO_T}$cf_disable_rpath_hack" >&6 +if test "$cf_disable_rpath_hack" = no ; then + +echo "$as_me:38540: checking for updated LDFLAGS" >&5 echo $ECHO_N "checking for updated LDFLAGS... $ECHO_C" >&6 if test -n "$LD_RPATH_OPT" ; then - echo "$as_me:38466: result: maybe" >&5 + echo "$as_me:38543: result: maybe" >&5 echo "${ECHO_T}maybe" >&6 + for ac_prog in ldd +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:38550: checking for $ac_word" >&5 +echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 +if test "${ac_cv_prog_cf_ldd_prog+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + if test -n "$cf_ldd_prog"; then + ac_cv_prog_cf_ldd_prog="$cf_ldd_prog" # Let the user override the test. +else + ac_save_IFS=$IFS; IFS=$ac_path_separator +ac_dummy="$PATH" +for ac_dir in $ac_dummy; do + IFS=$ac_save_IFS + test -z "$ac_dir" && ac_dir=. + $as_executable_p "$ac_dir/$ac_word" || continue +ac_cv_prog_cf_ldd_prog="$ac_prog" +echo "$as_me:38565: found $ac_dir/$ac_word" >&5 +break +done + +fi +fi +cf_ldd_prog=$ac_cv_prog_cf_ldd_prog +if test -n "$cf_ldd_prog"; then + echo "$as_me:38573: result: $cf_ldd_prog" >&5 +echo "${ECHO_T}$cf_ldd_prog" >&6 +else + echo "$as_me:38576: result: no" >&5 +echo "${ECHO_T}no" >&6 +fi + + test -n "$cf_ldd_prog" && break +done +test -n "$cf_ldd_prog" || cf_ldd_prog="no" + + cf_rpath_list="/usr/lib /lib" + if test "$cf_ldd_prog" != no + then +cat >conftest.$ac_ext <<_ACEOF +#line 38588 "configure" +#include "confdefs.h" +#include <stdio.h> +int +main () +{ +printf("Hello"); + ; + return 0; +} +_ACEOF +rm -f conftest.$ac_objext conftest$ac_exeext +if { (eval echo "$as_me:38600: \"$ac_link\"") >&5 + (eval $ac_link) 2>&5 + ac_status=$? + echo "$as_me:38603: \$? = $ac_status" >&5 + (exit $ac_status); } && + { ac_try='test -s conftest$ac_exeext' + { (eval echo "$as_me:38606: \"$ac_try\"") >&5 + (eval $ac_try) 2>&5 + ac_status=$? + echo "$as_me:38609: \$? = $ac_status" >&5 + (exit $ac_status); }; }; then + cf_rpath_list=`$cf_ldd_prog conftest$ac_exeext | fgrep / | sed -e 's%^.*[ ]/%/%' -e 's%/[^/][^/]*$%%' |sort -u` +else + echo "$as_me: failed program was:" >&5 +cat conftest.$ac_ext >&5 +fi +rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext + fi + test -n "$verbose" && echo " ...checking EXTRA_LDFLAGS $EXTRA_LDFLAGS" 1>&6 -echo "${as_me-configure}:38471: testing ...checking EXTRA_LDFLAGS $EXTRA_LDFLAGS ..." 1>&5 +echo "${as_me-configure}:38621: testing ...checking EXTRA_LDFLAGS $EXTRA_LDFLAGS ..." 1>&5 test -n "$verbose" && echo " ...checking LDFLAGS $LDFLAGS" 1>&6 -echo "${as_me-configure}:38475: testing ...checking LDFLAGS $LDFLAGS ..." 1>&5 +echo "${as_me-configure}:38625: testing ...checking LDFLAGS $LDFLAGS ..." 1>&5 cf_rpath_dst= for cf_rpath_src in $LDFLAGS do case $cf_rpath_src in #(vi -L*) #(vi - if test "$LD_RPATH_OPT" = "-R " ; then - cf_rpath_tmp=`echo "$cf_rpath_src" |sed -e 's%-L%-R %'` - else - cf_rpath_tmp=`echo "$cf_rpath_src" |sed -e s%-L%$LD_RPATH_OPT%` + + # check if this refers to a directory which we will ignore + cf_rpath_skip=no + if test -n "$cf_rpath_list" + then + for cf_rpath_item in $cf_rpath_list + do + if test "x$cf_rpath_src" = "x-L$cf_rpath_item" + then + cf_rpath_skip=yes + break + fi + done fi - test -n "$verbose" && echo " ...Filter $cf_rpath_src ->$cf_rpath_tmp" 1>&6 -echo "${as_me-configure}:38489: testing ...Filter $cf_rpath_src ->$cf_rpath_tmp ..." 1>&5 + if test "$cf_rpath_skip" = no + then + # transform the option + if test "$LD_RPATH_OPT" = "-R " ; then + cf_rpath_tmp=`echo "$cf_rpath_src" |sed -e "s%-L%-R %"` + else + cf_rpath_tmp=`echo "$cf_rpath_src" |sed -e "s%-L%$LD_RPATH_OPT%"` + fi + + # if we have not already added this, add it now + cf_rpath_tst=`echo "$EXTRA_LDFLAGS" | sed -e "s%$cf_rpath_tmp %%"` + if test "x$cf_rpath_tst" = "x$EXTRA_LDFLAGS" + then + test -n "$verbose" && echo " ...Filter $cf_rpath_src ->$cf_rpath_tmp" 1>&6 + +echo "${as_me-configure}:38662: testing ...Filter $cf_rpath_src ->$cf_rpath_tmp ..." 1>&5 - EXTRA_LDFLAGS="$cf_rpath_tmp $EXTRA_LDFLAGS" + EXTRA_LDFLAGS="$cf_rpath_tmp $EXTRA_LDFLAGS" + fi + fi ;; esac cf_rpath_dst="$cf_rpath_dst $cf_rpath_src" @@ -38497,27 +38672,52 @@ LDFLAGS=$cf_rpath_dst test -n "$verbose" && echo " ...checked LDFLAGS $LDFLAGS" 1>&6 -echo "${as_me-configure}:38500: testing ...checked LDFLAGS $LDFLAGS ..." 1>&5 +echo "${as_me-configure}:38675: testing ...checked LDFLAGS $LDFLAGS ..." 1>&5 test -n "$verbose" && echo " ...checking LIBS $LIBS" 1>&6 -echo "${as_me-configure}:38504: testing ...checking LIBS $LIBS ..." 1>&5 +echo "${as_me-configure}:38679: testing ...checking LIBS $LIBS ..." 1>&5 cf_rpath_dst= for cf_rpath_src in $LIBS do case $cf_rpath_src in #(vi -L*) #(vi - if test "$LD_RPATH_OPT" = "-R " ; then - cf_rpath_tmp=`echo "$cf_rpath_src" |sed -e 's%-L%-R %'` - else - cf_rpath_tmp=`echo "$cf_rpath_src" |sed -e s%-L%$LD_RPATH_OPT%` + + # check if this refers to a directory which we will ignore + cf_rpath_skip=no + if test -n "$cf_rpath_list" + then + for cf_rpath_item in $cf_rpath_list + do + if test "x$cf_rpath_src" = "x-L$cf_rpath_item" + then + cf_rpath_skip=yes + break + fi + done fi - test -n "$verbose" && echo " ...Filter $cf_rpath_src ->$cf_rpath_tmp" 1>&6 -echo "${as_me-configure}:38518: testing ...Filter $cf_rpath_src ->$cf_rpath_tmp ..." 1>&5 + if test "$cf_rpath_skip" = no + then + # transform the option + if test "$LD_RPATH_OPT" = "-R " ; then + cf_rpath_tmp=`echo "$cf_rpath_src" |sed -e "s%-L%-R %"` + else + cf_rpath_tmp=`echo "$cf_rpath_src" |sed -e "s%-L%$LD_RPATH_OPT%"` + fi + + # if we have not already added this, add it now + cf_rpath_tst=`echo "$EXTRA_LDFLAGS" | sed -e "s%$cf_rpath_tmp %%"` + if test "x$cf_rpath_tst" = "x$EXTRA_LDFLAGS" + then + test -n "$verbose" && echo " ...Filter $cf_rpath_src ->$cf_rpath_tmp" 1>&6 - EXTRA_LDFLAGS="$cf_rpath_tmp $EXTRA_LDFLAGS" +echo "${as_me-configure}:38716: testing ...Filter $cf_rpath_src ->$cf_rpath_tmp ..." 1>&5 + + EXTRA_LDFLAGS="$cf_rpath_tmp $EXTRA_LDFLAGS" + fi + fi ;; esac cf_rpath_dst="$cf_rpath_dst $cf_rpath_src" @@ -38526,11 +38726,13 @@ LIBS=$cf_rpath_dst test -n "$verbose" && echo " ...checked LIBS $LIBS" 1>&6 -echo "${as_me-configure}:38529: testing ...checked LIBS $LIBS ..." 1>&5 +echo "${as_me-configure}:38729: testing ...checked LIBS $LIBS ..." 1>&5 test -n "$verbose" && echo " ...checked EXTRA_LDFLAGS $EXTRA_LDFLAGS" 1>&6 -echo "${as_me-configure}:38533: testing ...checked EXTRA_LDFLAGS $EXTRA_LDFLAGS ..." 1>&5 +echo "${as_me-configure}:38733: testing ...checked EXTRA_LDFLAGS $EXTRA_LDFLAGS ..." 1>&5 + +fi fi @@ -38629,7 +38831,7 @@ DEFS=-DHAVE_CONFIG_H : ${CONFIG_STATUS=./config.status} ac_clean_files_save=$ac_clean_files ac_clean_files="$ac_clean_files $CONFIG_STATUS" -{ echo "$as_me:38632: creating $CONFIG_STATUS" >&5 +{ echo "$as_me:38834: creating $CONFIG_STATUS" >&5 echo "$as_me: creating $CONFIG_STATUS" >&6;} cat >$CONFIG_STATUS <<_ACEOF #! $SHELL @@ -38805,7 +39007,7 @@ cat >>$CONFIG_STATUS <<\EOF echo "$ac_cs_version"; exit 0 ;; --he | --h) # Conflict between --help and --header - { { echo "$as_me:38808: error: ambiguous option: $1 + { { echo "$as_me:39010: 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;} @@ -38824,7 +39026,7 @@ Try \`$0 --help' for more information." >&2;} ac_need_defaults=false;; # This is an error. - -*) { { echo "$as_me:38827: error: unrecognized option: $1 + -*) { { echo "$as_me:39029: 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;} @@ -38877,7 +39079,7 @@ do "default-1" ) CONFIG_COMMANDS="$CONFIG_COMMANDS default-1" ;; "default" ) CONFIG_COMMANDS="$CONFIG_COMMANDS default" ;; "$CONFIG_H" ) CONFIG_HEADERS="$CONFIG_HEADERS $CONFIG_H:config.hin" ;; - *) { { echo "$as_me:38880: error: invalid argument: $ac_config_target" >&5 + *) { { echo "$as_me:39082: error: invalid argument: $ac_config_target" >&5 echo "$as_me: error: invalid argument: $ac_config_target" >&2;} { (exit 1); exit 1; }; };; esac @@ -39080,6 +39282,7 @@ s,@X_PRE_LIBS@,$X_PRE_LIBS,;t t s,@X_LIBS@,$X_LIBS,;t t s,@X_EXTRA_LIBS@,$X_EXTRA_LIBS,;t t s,@XCURSES_CONFIG@,$XCURSES_CONFIG,;t t +s,@cf_ldd_prog@,$cf_ldd_prog,;t t s,@EXTRA_LDFLAGS@,$EXTRA_LDFLAGS,;t t s,@CONFIG_SHELL@,$CONFIG_SHELL,;t t s,@SRCDIR_CLEAN@,$SRCDIR_CLEAN,;t t @@ -39197,7 +39400,7 @@ done; } esac if test x"$ac_file" != x-; then - { echo "$as_me:39200: creating $ac_file" >&5 + { echo "$as_me:39403: creating $ac_file" >&5 echo "$as_me: creating $ac_file" >&6;} rm -f "$ac_file" fi @@ -39215,7 +39418,7 @@ echo "$as_me: creating $ac_file" >&6;} -) echo $tmp/stdin ;; [\\/$]*) # Absolute (can't be DOS-style, as IFS=:) - test -f "$f" || { { echo "$as_me:39218: error: cannot find input file: $f" >&5 + test -f "$f" || { { echo "$as_me:39421: error: cannot find input file: $f" >&5 echo "$as_me: error: cannot find input file: $f" >&2;} { (exit 1); exit 1; }; } echo $f;; @@ -39228,7 +39431,7 @@ echo "$as_me: error: cannot find input file: $f" >&2;} echo $srcdir/$f else # /dev/null tree - { { echo "$as_me:39231: error: cannot find input file: $f" >&5 + { { echo "$as_me:39434: error: cannot find input file: $f" >&5 echo "$as_me: error: cannot find input file: $f" >&2;} { (exit 1); exit 1; }; } fi;; @@ -39294,7 +39497,7 @@ for ac_file in : $CONFIG_HEADERS; do test "x$ac_file" = x: && continue * ) ac_file_in=$ac_file.in ;; esac - test x"$ac_file" != x- && { echo "$as_me:39297: creating $ac_file" >&5 + test x"$ac_file" != x- && { echo "$as_me:39500: creating $ac_file" >&5 echo "$as_me: creating $ac_file" >&6;} # First look for the input files in the build tree, otherwise in the @@ -39305,7 +39508,7 @@ echo "$as_me: creating $ac_file" >&6;} -) echo $tmp/stdin ;; [\\/$]*) # Absolute (can't be DOS-style, as IFS=:) - test -f "$f" || { { echo "$as_me:39308: error: cannot find input file: $f" >&5 + test -f "$f" || { { echo "$as_me:39511: error: cannot find input file: $f" >&5 echo "$as_me: error: cannot find input file: $f" >&2;} { (exit 1); exit 1; }; } echo $f;; @@ -39318,7 +39521,7 @@ echo "$as_me: error: cannot find input file: $f" >&2;} echo $srcdir/$f else # /dev/null tree - { { echo "$as_me:39321: error: cannot find input file: $f" >&5 + { { echo "$as_me:39524: error: cannot find input file: $f" >&5 echo "$as_me: error: cannot find input file: $f" >&2;} { (exit 1); exit 1; }; } fi;; @@ -39436,7 +39639,7 @@ cat >>$CONFIG_STATUS <<\EOF 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:39439: $ac_file is unchanged" >&5 + { echo "$as_me:39642: $ac_file is unchanged" >&5 echo "$as_me: $ac_file is unchanged" >&6;} else ac_dir=`$as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ diff --git a/configure.in b/configure.in index 1c56934f..b62967a9 100644 --- a/configure.in +++ b/configure.in @@ -1,4 +1,4 @@ -dnl $LynxId: configure.in,v 1.209 2010/03/28 20:57:56 tom Exp $ +dnl $LynxId: configure.in,v 1.211 2010/04/20 22:46:04 tom Exp $ dnl dnl Process this file with autoconf to produce a configure script. dnl @@ -7,7 +7,7 @@ dnl by T.E.Dickey <dickey@invisible-island.net> dnl and Jim Spath <jspath@mail.bcpl.lib.md.us> dnl dnl --------------------------------------------------------------------------- -dnl Copyright 1997-2008,2009 by Thomas E. Dickey +dnl Copyright 1997-2009,2010 by Thomas E. Dickey dnl dnl Permission to use, copy, modify, and distribute this software and its dnl documentation for any purpose and without fee is hereby granted, @@ -756,6 +756,7 @@ CF_CHECK_TYPE(socklen_t, int, [ #include <sys/types.h> #include <sys/socket.h> ]) +CF_TYPE_LONG_LONG CF_TM_GMTOFF AC_CHECK_SIZEOF(int,4) @@ -1483,7 +1484,7 @@ if test $use_scrollbar != no ; then fi # use rpath for libraries in unusual places -CF_RPATH_HACK +CF_DISABLE_RPATH_HACK ### Finally, build config.h and the makefiles test -z "$CONFIG_SHELL" && CONFIG_SHELL=/bin/sh |