diff options
-rw-r--r-- | CHANGES | 6 | ||||
-rw-r--r-- | INSTALLATION | 6 | ||||
-rw-r--r-- | WWW/Library/Implementation/HTUtils.h | 8 | ||||
-rw-r--r-- | WWW/Library/Implementation/LYexit.h | 6 | ||||
-rw-r--r-- | aclocal.m4 | 59 | ||||
-rw-r--r-- | config.hin | 4 | ||||
-rwxr-xr-x | configure | 8048 | ||||
-rw-r--r-- | src/LYMain.c | 4 | ||||
-rw-r--r-- | src/chrtrans/makeuctb.c | 4 |
9 files changed, 4142 insertions, 4003 deletions
diff --git a/CHANGES b/CHANGES index b89ab8c9..df21a190 100644 --- a/CHANGES +++ b/CHANGES @@ -1,9 +1,11 @@ --- $LynxId: CHANGES,v 1.1066 2021/03/14 20:45:45 tom Exp $ +-- $LynxId: CHANGES,v 1.1067 2021/03/22 23:06:34 tom Exp $ =============================================================================== Changes since Lynx 2.8 release =============================================================================== -2021-03-14 (2.9.0dev.7) +2021-03-22 (2.9.0dev.7) +* update configure script to work with _Noreturn changes in ncurses 20210320 + development snapshot -TD * document the NO_TABLE_CENTER setting and explain the corresponding -center option in the manual page (report by Dan Jacobson) -TD * add Latin 10 aka ISO-8859-16 (patch by emil@vajn.icu) diff --git a/INSTALLATION b/INSTALLATION index 7705f805..1c34683e 100644 --- a/INSTALLATION +++ b/INSTALLATION @@ -524,6 +524,10 @@ II. Compile instructions -- UNIX Disabled by default, this allows interruption of NSL requests, so that `z' will stop the `look-up' phase of a connection. + --enable-stdnoreturn (define HAVE_STDNORETURN_H) + Check for C11 _Noreturn feature, using that rather than gcc-specific + __attribute__((noreturn)), to improve compiler diagnostics. + --enable-syslog (define SYSLOG_REQUESTED_URLS) Use this option to log NSL requests via syslog(). @@ -1487,4 +1491,4 @@ VIII. Acknowledgment -- 1999/04/24 - H. Nelson <lynx-admin@irm.nara.kindai.ac.jp> -- vile:txtmode --- $LynxId: INSTALLATION,v 1.131 2018/12/28 21:40:38 tom Exp $ +-- $LynxId: INSTALLATION,v 1.132 2021/03/23 00:37:21 tom Exp $ diff --git a/WWW/Library/Implementation/HTUtils.h b/WWW/Library/Implementation/HTUtils.h index e285e3d1..57aa64e7 100644 --- a/WWW/Library/Implementation/HTUtils.h +++ b/WWW/Library/Implementation/HTUtils.h @@ -1,5 +1,5 @@ /* - * $LynxId: HTUtils.h,v 1.131 2020/01/21 22:08:40 tom Exp $ + * $LynxId: HTUtils.h,v 1.132 2021/03/22 23:03:56 tom Exp $ * * Utility macros for the W3 code library * MACROS FOR GENERAL USE @@ -17,6 +17,12 @@ #ifdef HAVE_CONFIG_H #include <lynx_cfg.h> /* generated by autoconf 'configure' script */ +#ifdef HAVE_STDNORETURN_H +#include <stdnoreturn.h> +#undef GCC_NORETURN +#define GCC_NORETURN _Noreturn +#endif + /* see AC_FUNC_ALLOCA macro */ #ifdef __GNUC__ # define alloca(size) __builtin_alloca(size) diff --git a/WWW/Library/Implementation/LYexit.h b/WWW/Library/Implementation/LYexit.h index 60e6910d..dd4b0e64 100644 --- a/WWW/Library/Implementation/LYexit.h +++ b/WWW/Library/Implementation/LYexit.h @@ -55,10 +55,10 @@ extern "C" { /* * Function declarations */ - extern void outofmem(const char *fname, const char *func) GCC_NORETURN; + extern GCC_NORETURN void outofmem(const char *fname, const char *func); extern void reset_signals(void); - extern void exit_immediately(int status) GCC_NORETURN; - extern void LYexit(int status) GCC_NORETURN; + extern GCC_NORETURN void exit_immediately(int status); + extern GCC_NORETURN void LYexit(int status); extern int LYatexit(void (*function) (void)); #ifdef __cplusplus diff --git a/aclocal.m4 b/aclocal.m4 index 71db8767..189c5f9a 100644 --- a/aclocal.m4 +++ b/aclocal.m4 @@ -1,4 +1,4 @@ -dnl $LynxId: aclocal.m4,v 1.294 2021/02/28 13:52:25 tom Exp $ +dnl $LynxId: aclocal.m4,v 1.296 2021/03/23 00:37:21 tom Exp $ dnl Macros for auto-configure script. dnl by Thomas E. Dickey <dickey@invisible-island.net> dnl and Jim Spath <jspath@mail.bcpl.lib.md.us> @@ -1404,6 +1404,44 @@ if test "$USE_INCLUDED_LIBINTL" = yes ; then fi ])dnl dnl --------------------------------------------------------------------------- +dnl CF_C11_NORETURN version: 2 updated: 2021/03/22 20:37:21 +dnl --------------- +AC_DEFUN([CF_C11_NORETURN], +[ +AC_MSG_CHECKING(if you want to use C11 _Noreturn feature) +CF_ARG_ENABLE(stdnoreturn, + [ --enable-stdnoreturn enable C11 _Noreturn feature for diagnostics], + [enable_stdnoreturn=yes], + [enable_stdnoreturn=no]) +AC_MSG_RESULT($enable_stdnoreturn) + +if test $enable_stdnoreturn = yes; then +AC_CACHE_CHECK([for C11 _Noreturn feature], cf_cv_c11_noreturn, + [AC_TRY_COMPILE([ +#include <stdio.h> +#include <stdlib.h> +#include <stdnoreturn.h> +static void giveup(void) { exit(0); } + ], + [if (feof(stdin)) giveup()], + cf_cv_c11_noreturn=yes, + cf_cv_c11_noreturn=no) + ]) +else + cf_cv_c11_noreturn=no, +fi + +if test "$cf_cv_c11_noreturn" = yes; then + AC_DEFINE(HAVE_STDNORETURN_H, 1) + AC_DEFINE_UNQUOTED(STDC_NORETURN,_Noreturn,[Define if C11 _Noreturn keyword is supported]) + HAVE_STDNORETURN_H=1 +else + HAVE_STDNORETURN_H=0 +fi + +AC_SUBST(HAVE_STDNORETURN_H) +])dnl +dnl --------------------------------------------------------------------------- dnl CF_CC_ENV_FLAGS version: 10 updated: 2020/12/31 18:40:20 dnl --------------- dnl Check for user's environment-breakage by stuffing CFLAGS/CPPFLAGS content @@ -3129,13 +3167,14 @@ if test "$cf_cv_type_unionwait" = yes; then fi ])dnl dnl --------------------------------------------------------------------------- -dnl CF_GCC_ATTRIBUTES version: 23 updated: 2021/01/03 18:30:50 +dnl CF_GCC_ATTRIBUTES version: 24 updated: 2021/03/20 12:00:25 dnl ----------------- dnl Test for availability of useful gcc __attribute__ directives to quiet dnl compiler warnings. Though useful, not all are supported -- and contrary dnl to documentation, unrecognized directives cause older compilers to barf. AC_DEFUN([CF_GCC_ATTRIBUTES], [AC_REQUIRE([AC_PROG_FGREP])dnl +AC_REQUIRE([CF_C11_NORETURN])dnl if test "$GCC" = yes || test "$GXX" = yes then @@ -3172,8 +3211,8 @@ cat > "conftest.$ac_ext" <<EOF #define GCC_SCANFLIKE(fmt,var) /*nothing*/ #endif extern void wow(char *,...) GCC_SCANFLIKE(1,2); -extern void oops(char *,...) GCC_PRINTFLIKE(1,2) GCC_NORETURN; -extern void foo(void) GCC_NORETURN; +extern GCC_NORETURN void oops(char *,...) GCC_PRINTFLIKE(1,2); +extern GCC_NORETURN void foo(void); int main(int argc GCC_UNUSED, char *argv[[]] GCC_UNUSED) { (void)argc; (void)argv; return 0; } EOF cf_printf_attribute=no @@ -7880,6 +7919,12 @@ define([CF__INTL_HEAD],[ extern int _nl_msg_cat_cntr; ])dnl dnl --------------------------------------------------------------------------- +dnl CF__SED_TRIMBLANKS version: 1 updated: 2021/01/02 09:31:20 +dnl ------------------ +dnl Trim something using sed, then trim extra whitespace +dnl $1 = extra parameters, e.g., in CF_STRIP_G_OPT +define([CF__SED_TRIMBLANKS],[sed ifelse($1,,,[$1] )-e 's%[[ ]]% %g' -e 's% [[ ]]*% %g' -e 's%^ %%' -e 's% [$]%%'])dnl +dnl --------------------------------------------------------------------------- dnl CF__SSL_BODY version: 2 updated: 2008/04/13 10:56:06 dnl ------------ dnl Body for test-compile of SSL code. @@ -7907,12 +7952,6 @@ define([CF__SSL_HEAD],[ #endif ])dnl dnl --------------------------------------------------------------------------- -dnl CF__SED_TRIMBLANKS version: 1 updated: 2021/01/02 09:31:20 -dnl ------------------ -dnl Trim something using sed, then trim extra whitespace -dnl $1 = extra parameters, e.g., in CF_STRIP_G_OPT -define([CF__SED_TRIMBLANKS],[sed ifelse($1,,,[$1] )-e 's%[[ ]]% %g' -e 's% [[ ]]*% %g' -e 's%^ %%' -e 's% [$]%%'])dnl -dnl --------------------------------------------------------------------------- dnl jm_GLIBC21 version: 4 updated: 2015/05/10 19:52:14 dnl ---------- dnl Inserted as requested by gettext 0.10.40 diff --git a/config.hin b/config.hin index e8379f9e..b53b5cf4 100644 --- a/config.hin +++ b/config.hin @@ -1,5 +1,5 @@ /* - * $LynxId: config.hin,v 1.147 2020/02/25 10:15:54 tom Exp $ + * $LynxId: config.hin,v 1.148 2021/03/22 22:54:43 tom Exp $ * vile:cmode * * The configure script translates "config.hin" into "lynx_cfg.h" @@ -133,6 +133,7 @@ #undef HAVE_SLEEP #undef HAVE_STDARG_H /* CF_VARARGS */ #undef HAVE_STDLIB_H +#undef HAVE_STDNORETURN_H /* CF_C11_NORETURN */ #undef HAVE_STPCPY /* AM_GNU_GETTEXT */ #undef HAVE_STRCASECMP /* AM_GNU_GETTEXT */ #undef HAVE_STRCHR /* AM_GNU_GETTEXT */ @@ -243,6 +244,7 @@ #undef SLtt_Char_Type /* CF_SLANG_UNIX_DEFS */ #undef SOCKS /* CF_SOCKS, CF_SOCKS5 */ #undef STDC_HEADERS +#undef STDC_NORETURN /* CF_C11_NORETURN */ #undef SYSTEM_MAIL /* CF_DEFINE_PROG */ #undef SYSTEM_MAIL_FLAGS /* CF_SYSTEM_MAIL_FLAGS */ #undef SYSTEM_NAME /* CF_CHECK_CACHE */ diff --git a/configure b/configure index c241b366..c8d17673 100755 --- a/configure +++ b/configure @@ -722,6 +722,7 @@ Development Options: --enable-vertrace verbose trace code --with-x use the X Window System --enable-warnings test: turn on gcc compiler warnings + --enable-stdnoreturn enable C11 _Noreturn feature for diagnostics --with-dbmalloc test: use Conor Cahill's dbmalloc library --with-dmalloc test: use Gray Watson's dmalloc library Basic Configuration Options: @@ -1019,7 +1020,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:1022: loading site script $ac_site_file" >&5 + { echo "$as_me:1023: 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" @@ -1030,7 +1031,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:1033: loading cache $cache_file" >&5 + { echo "$as_me:1034: loading cache $cache_file" >&5 echo "$as_me: loading cache $cache_file" >&6;} case $cache_file in [\\/]* | ?:[\\/]* ) . $cache_file;; @@ -1038,7 +1039,7 @@ echo "$as_me: loading cache $cache_file" >&6;} esac fi else - { echo "$as_me:1041: creating cache $cache_file" >&5 + { echo "$as_me:1042: creating cache $cache_file" >&5 echo "$as_me: creating cache $cache_file" >&6;} >$cache_file fi @@ -1054,21 +1055,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:1057: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&5 + { echo "$as_me:1058: 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:1061: error: \`$ac_var' was not set in the previous run" >&5 + { echo "$as_me:1062: 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:1067: error: \`$ac_var' has changed since the previous run:" >&5 + { echo "$as_me:1068: 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:1069: former value: $ac_old_val" >&5 + { echo "$as_me:1070: former value: $ac_old_val" >&5 echo "$as_me: former value: $ac_old_val" >&2;} - { echo "$as_me:1071: current value: $ac_new_val" >&5 + { echo "$as_me:1072: current value: $ac_new_val" >&5 echo "$as_me: current value: $ac_new_val" >&2;} ac_cache_corrupted=: fi;; @@ -1087,9 +1088,9 @@ echo "$as_me: current value: $ac_new_val" >&2;} fi done if "$ac_cache_corrupted"; then - { echo "$as_me:1090: error: changes in the environment can compromise the build" >&5 + { echo "$as_me:1091: 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:1092: error: run \`make distclean' and/or \`rm $cache_file' and start over" >&5 + { { echo "$as_me:1093: 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 @@ -1118,10 +1119,10 @@ esac echo "#! $SHELL" >conftest.sh echo "exit 0" >>conftest.sh chmod +x conftest.sh -if { (echo "$as_me:1121: PATH=\".;.\"; conftest.sh") >&5 +if { (echo "$as_me:1122: PATH=\".;.\"; conftest.sh") >&5 (PATH=".;."; conftest.sh) 2>&5 ac_status=$? - echo "$as_me:1124: \$? = $ac_status" >&5 + echo "$as_me:1125: \$? = $ac_status" >&5 (exit "$ac_status"); }; then ac_path_separator=';' else @@ -1156,7 +1157,7 @@ for ac_dir in $srcdir $srcdir/.. $srcdir/../..; do fi done if test -z "$ac_aux_dir"; then - { { echo "$as_me:1159: error: cannot find install-sh or install.sh in $srcdir $srcdir/.. $srcdir/../.." >&5 + { { echo "$as_me:1160: 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 @@ -1166,11 +1167,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:1169: error: cannot run $ac_config_sub" >&5 + { { echo "$as_me:1170: error: cannot run $ac_config_sub" >&5 echo "$as_me: error: cannot run $ac_config_sub" >&2;} { (exit 1); exit 1; }; } -echo "$as_me:1173: checking build system type" >&5 +echo "$as_me:1174: 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 @@ -1179,23 +1180,23 @@ else test -z "$ac_cv_build_alias" && ac_cv_build_alias=`$ac_config_guess` test -z "$ac_cv_build_alias" && - { { echo "$as_me:1182: error: cannot guess build type; you must specify one" >&5 + { { echo "$as_me:1183: 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:1186: error: $ac_config_sub $ac_cv_build_alias failed." >&5 + { { echo "$as_me:1187: 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:1191: result: $ac_cv_build" >&5 +echo "$as_me:1192: 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:1198: checking host system type" >&5 +echo "$as_me:1199: 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 @@ -1204,12 +1205,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:1207: error: $ac_config_sub $ac_cv_host_alias failed" >&5 + { { echo "$as_me:1208: 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:1212: result: $ac_cv_host" >&5 +echo "$as_me:1213: 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/'` @@ -1217,7 +1218,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:1220: checking target system type" >&5 + echo "$as_me:1221: 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 @@ -1226,12 +1227,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:1229: error: $ac_config_sub $ac_cv_target_alias failed" >&5 + { { echo "$as_me:1230: 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:1234: result: $ac_cv_target" >&5 +echo "$as_me:1235: 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/'` @@ -1263,13 +1264,13 @@ else fi test -z "$system_name" && system_name="$cf_cv_system_name" -test -n "$cf_cv_system_name" && echo "$as_me:1266: result: Configuring for $cf_cv_system_name" >&5 +test -n "$cf_cv_system_name" && echo "$as_me:1267: 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:1270: result: Cached system name ($system_name) does not agree with actual ($cf_cv_system_name)" >&5 + echo "$as_me:1271: 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:1272: error: \"Please remove config.cache and try again.\"" >&5 + { { echo "$as_me:1273: 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 @@ -1277,7 +1278,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:1280: WARNING: overriding system type $host_os to $withval" >&5 + { echo "$as_me:1281: 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; @@ -1299,7 +1300,7 @@ PACKAGE=lynx # $Format: "VERSION=$ProjectVersion$"$ VERSION=2.9.0dev.7 -echo "$as_me:1302: checking for DESTDIR" >&5 +echo "$as_me:1303: checking for DESTDIR" >&5 echo $ECHO_N "checking for DESTDIR... $ECHO_C" >&6 # Check whether --with-destdir or --without-destdir was given. @@ -1335,7 +1336,7 @@ case ".$withval" in withval=`echo "$withval" | sed -e s%NONE%$cf_path_syntax%` ;; (*) - { { echo "$as_me:1338: error: expected a pathname, not \"$withval\"" >&5 + { { echo "$as_me:1339: error: expected a pathname, not \"$withval\"" >&5 echo "$as_me: error: expected a pathname, not \"$withval\"" >&2;} { (exit 1); exit 1; }; } ;; @@ -1344,7 +1345,7 @@ esac fi eval DESTDIR="$withval" -echo "$as_me:1347: result: $DESTDIR" >&5 +echo "$as_me:1348: result: $DESTDIR" >&5 echo "${ECHO_T}$DESTDIR" >&6 case "$host_os" in @@ -1363,7 +1364,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:1366: checking for $ac_word" >&5 +echo "$as_me:1367: 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 @@ -1378,7 +1379,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:1381: found $ac_dir/$ac_word" >&5 +echo "$as_me:1382: found $ac_dir/$ac_word" >&5 break done @@ -1386,10 +1387,10 @@ fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then - echo "$as_me:1389: result: $CC" >&5 + echo "$as_me:1390: result: $CC" >&5 echo "${ECHO_T}$CC" >&6 else - echo "$as_me:1392: result: no" >&5 + echo "$as_me:1393: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -1398,7 +1399,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:1401: checking for $ac_word" >&5 +echo "$as_me:1402: 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 @@ -1413,7 +1414,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:1416: found $ac_dir/$ac_word" >&5 +echo "$as_me:1417: found $ac_dir/$ac_word" >&5 break done @@ -1421,10 +1422,10 @@ fi fi ac_ct_CC=$ac_cv_prog_ac_ct_CC if test -n "$ac_ct_CC"; then - echo "$as_me:1424: result: $ac_ct_CC" >&5 + echo "$as_me:1425: result: $ac_ct_CC" >&5 echo "${ECHO_T}$ac_ct_CC" >&6 else - echo "$as_me:1427: result: no" >&5 + echo "$as_me:1428: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -1437,7 +1438,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:1440: checking for $ac_word" >&5 +echo "$as_me:1441: 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 @@ -1452,7 +1453,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:1455: found $ac_dir/$ac_word" >&5 +echo "$as_me:1456: found $ac_dir/$ac_word" >&5 break done @@ -1460,10 +1461,10 @@ fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then - echo "$as_me:1463: result: $CC" >&5 + echo "$as_me:1464: result: $CC" >&5 echo "${ECHO_T}$CC" >&6 else - echo "$as_me:1466: result: no" >&5 + echo "$as_me:1467: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -1472,7 +1473,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:1475: checking for $ac_word" >&5 +echo "$as_me:1476: 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 @@ -1487,7 +1488,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:1490: found $ac_dir/$ac_word" >&5 +echo "$as_me:1491: found $ac_dir/$ac_word" >&5 break done @@ -1495,10 +1496,10 @@ fi fi ac_ct_CC=$ac_cv_prog_ac_ct_CC if test -n "$ac_ct_CC"; then - echo "$as_me:1498: result: $ac_ct_CC" >&5 + echo "$as_me:1499: result: $ac_ct_CC" >&5 echo "${ECHO_T}$ac_ct_CC" >&6 else - echo "$as_me:1501: result: no" >&5 + echo "$as_me:1502: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -1511,7 +1512,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:1514: checking for $ac_word" >&5 +echo "$as_me:1515: 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 @@ -1531,7 +1532,7 @@ if test "$ac_dir/$ac_word" = "/usr/ucb/cc"; then continue fi ac_cv_prog_CC="cc" -echo "$as_me:1534: found $ac_dir/$ac_word" >&5 +echo "$as_me:1535: found $ac_dir/$ac_word" >&5 break done @@ -1553,10 +1554,10 @@ fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then - echo "$as_me:1556: result: $CC" >&5 + echo "$as_me:1557: result: $CC" >&5 echo "${ECHO_T}$CC" >&6 else - echo "$as_me:1559: result: no" >&5 + echo "$as_me:1560: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -1567,7 +1568,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:1570: checking for $ac_word" >&5 +echo "$as_me:1571: 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 @@ -1582,7 +1583,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:1585: found $ac_dir/$ac_word" >&5 +echo "$as_me:1586: found $ac_dir/$ac_word" >&5 break done @@ -1590,10 +1591,10 @@ fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then - echo "$as_me:1593: result: $CC" >&5 + echo "$as_me:1594: result: $CC" >&5 echo "${ECHO_T}$CC" >&6 else - echo "$as_me:1596: result: no" >&5 + echo "$as_me:1597: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -1606,7 +1607,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:1609: checking for $ac_word" >&5 +echo "$as_me:1610: 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 @@ -1621,7 +1622,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:1624: found $ac_dir/$ac_word" >&5 +echo "$as_me:1625: found $ac_dir/$ac_word" >&5 break done @@ -1629,10 +1630,10 @@ fi fi ac_ct_CC=$ac_cv_prog_ac_ct_CC if test -n "$ac_ct_CC"; then - echo "$as_me:1632: result: $ac_ct_CC" >&5 + echo "$as_me:1633: result: $ac_ct_CC" >&5 echo "${ECHO_T}$ac_ct_CC" >&6 else - echo "$as_me:1635: result: no" >&5 + echo "$as_me:1636: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -1644,32 +1645,32 @@ fi fi -test -z "$CC" && { { echo "$as_me:1647: error: no acceptable cc found in \$PATH" >&5 +test -z "$CC" && { { echo "$as_me:1648: 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:1652:" \ +echo "$as_me:1653:" \ "checking for C compiler version" >&5 ac_compiler=`set X $ac_compile; echo "$2"` -{ (eval echo "$as_me:1655: \"$ac_compiler --version </dev/null >&5\"") >&5 +{ (eval echo "$as_me:1656: \"$ac_compiler --version </dev/null >&5\"") >&5 (eval $ac_compiler --version </dev/null >&5) 2>&5 ac_status=$? - echo "$as_me:1658: \$? = $ac_status" >&5 + echo "$as_me:1659: \$? = $ac_status" >&5 (exit "$ac_status"); } -{ (eval echo "$as_me:1660: \"$ac_compiler -v </dev/null >&5\"") >&5 +{ (eval echo "$as_me:1661: \"$ac_compiler -v </dev/null >&5\"") >&5 (eval $ac_compiler -v </dev/null >&5) 2>&5 ac_status=$? - echo "$as_me:1663: \$? = $ac_status" >&5 + echo "$as_me:1664: \$? = $ac_status" >&5 (exit "$ac_status"); } -{ (eval echo "$as_me:1665: \"$ac_compiler -V </dev/null >&5\"") >&5 +{ (eval echo "$as_me:1666: \"$ac_compiler -V </dev/null >&5\"") >&5 (eval $ac_compiler -V </dev/null >&5) 2>&5 ac_status=$? - echo "$as_me:1668: \$? = $ac_status" >&5 + echo "$as_me:1669: \$? = $ac_status" >&5 (exit "$ac_status"); } cat >"conftest.$ac_ext" <<_ACEOF -#line 1672 "configure" +#line 1673 "configure" #include "confdefs.h" int @@ -1685,13 +1686,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:1688: checking for C compiler default output" >&5 +echo "$as_me:1689: 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:1691: \"$ac_link_default\"") >&5 +if { (eval echo "$as_me:1692: \"$ac_link_default\"") >&5 (eval $ac_link_default) 2>&5 ac_status=$? - echo "$as_me:1694: \$? = $ac_status" >&5 + echo "$as_me:1695: \$? = $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 @@ -1714,34 +1715,34 @@ done else echo "$as_me: failed program was:" >&5 cat "conftest.$ac_ext" >&5 -{ { echo "$as_me:1717: error: C compiler cannot create executables" >&5 +{ { echo "$as_me:1718: 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:1723: result: $ac_file" >&5 +echo "$as_me:1724: 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:1728: checking whether the C compiler works" >&5 +echo "$as_me:1729: 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:1734: \"$ac_try\"") >&5 + { (eval echo "$as_me:1735: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:1737: \$? = $ac_status" >&5 + echo "$as_me:1738: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cross_compiling=no else if test "$cross_compiling" = maybe; then cross_compiling=yes else - { { echo "$as_me:1744: error: cannot run C compiled programs. + { { echo "$as_me:1745: 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;} @@ -1749,24 +1750,24 @@ If you meant to cross compile, use \`--host'." >&2;} fi fi fi -echo "$as_me:1752: result: yes" >&5 +echo "$as_me:1753: 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:1759: checking whether we are cross compiling" >&5 +echo "$as_me:1760: checking whether we are cross compiling" >&5 echo $ECHO_N "checking whether we are cross compiling... $ECHO_C" >&6 -echo "$as_me:1761: result: $cross_compiling" >&5 +echo "$as_me:1762: result: $cross_compiling" >&5 echo "${ECHO_T}$cross_compiling" >&6 -echo "$as_me:1764: checking for executable suffix" >&5 +echo "$as_me:1765: checking for executable suffix" >&5 echo $ECHO_N "checking for executable suffix... $ECHO_C" >&6 -if { (eval echo "$as_me:1766: \"$ac_link\"") >&5 +if { (eval echo "$as_me:1767: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:1769: \$? = $ac_status" >&5 + echo "$as_me:1770: \$? = $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 @@ -1782,25 +1783,25 @@ for ac_file in `(ls conftest.exe; ls conftest; ls conftest.*) 2>/dev/null`; do esac done else - { { echo "$as_me:1785: error: cannot compute EXEEXT: cannot compile and link" >&5 + { { echo "$as_me:1786: 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:1791: result: $ac_cv_exeext" >&5 +echo "$as_me:1792: 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:1797: checking for object suffix" >&5 +echo "$as_me:1798: 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 1803 "configure" +#line 1804 "configure" #include "confdefs.h" int @@ -1812,10 +1813,10 @@ main (void) } _ACEOF rm -f conftest.o conftest.obj -if { (eval echo "$as_me:1815: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:1816: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:1818: \$? = $ac_status" >&5 + echo "$as_me:1819: \$? = $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 @@ -1827,24 +1828,24 @@ done else echo "$as_me: failed program was:" >&5 cat "conftest.$ac_ext" >&5 -{ { echo "$as_me:1830: error: cannot compute OBJEXT: cannot compile" >&5 +{ { echo "$as_me:1831: 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:1837: result: $ac_cv_objext" >&5 +echo "$as_me:1838: result: $ac_cv_objext" >&5 echo "${ECHO_T}$ac_cv_objext" >&6 OBJEXT=$ac_cv_objext ac_objext=$OBJEXT -echo "$as_me:1841: checking whether we are using the GNU C compiler" >&5 +echo "$as_me:1842: 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 1847 "configure" +#line 1848 "configure" #include "confdefs.h" int @@ -1859,16 +1860,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:1862: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:1863: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:1865: \$? = $ac_status" >&5 + echo "$as_me:1866: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:1868: \"$ac_try\"") >&5 + { (eval echo "$as_me:1869: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:1871: \$? = $ac_status" >&5 + echo "$as_me:1872: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_compiler_gnu=yes else @@ -1880,19 +1881,19 @@ rm -f "conftest.$ac_objext" "conftest.$ac_ext" ac_cv_c_compiler_gnu=$ac_compiler_gnu fi -echo "$as_me:1883: result: $ac_cv_c_compiler_gnu" >&5 +echo "$as_me:1884: 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:1889: checking whether $CC accepts -g" >&5 +echo "$as_me:1890: 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 1895 "configure" +#line 1896 "configure" #include "confdefs.h" int @@ -1904,16 +1905,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:1907: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:1908: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:1910: \$? = $ac_status" >&5 + echo "$as_me:1911: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:1913: \"$ac_try\"") >&5 + { (eval echo "$as_me:1914: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:1916: \$? = $ac_status" >&5 + echo "$as_me:1917: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_prog_cc_g=yes else @@ -1923,7 +1924,7 @@ ac_cv_prog_cc_g=no fi rm -f "conftest.$ac_objext" "conftest.$ac_ext" fi -echo "$as_me:1926: result: $ac_cv_prog_cc_g" >&5 +echo "$as_me:1927: 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 @@ -1950,16 +1951,16 @@ cat >"conftest.$ac_ext" <<_ACEOF #endif _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:1953: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:1954: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:1956: \$? = $ac_status" >&5 + echo "$as_me:1957: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:1959: \"$ac_try\"") >&5 + { (eval echo "$as_me:1960: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:1962: \$? = $ac_status" >&5 + echo "$as_me:1963: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then for ac_declaration in \ ''\ @@ -1971,7 +1972,7 @@ if { (eval echo "$as_me:1953: \"$ac_compile\"") >&5 'void exit (int);' do cat >"conftest.$ac_ext" <<_ACEOF -#line 1974 "configure" +#line 1975 "configure" #include "confdefs.h" #include <stdlib.h> $ac_declaration @@ -1984,16 +1985,16 @@ exit (42); } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:1987: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:1988: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:1990: \$? = $ac_status" >&5 + echo "$as_me:1991: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:1993: \"$ac_try\"") >&5 + { (eval echo "$as_me:1994: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:1996: \$? = $ac_status" >&5 + echo "$as_me:1997: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then : else @@ -2003,7 +2004,7 @@ continue fi rm -f "conftest.$ac_objext" "conftest.$ac_ext" cat >"conftest.$ac_ext" <<_ACEOF -#line 2006 "configure" +#line 2007 "configure" #include "confdefs.h" $ac_declaration int @@ -2015,16 +2016,16 @@ exit (42); } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:2018: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:2019: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:2021: \$? = $ac_status" >&5 + echo "$as_me:2022: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:2024: \"$ac_try\"") >&5 + { (eval echo "$as_me:2025: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:2027: \$? = $ac_status" >&5 + echo "$as_me:2028: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then break else @@ -2054,11 +2055,11 @@ ac_main_return="return" GCC_VERSION=none if test "$GCC" = yes ; then - echo "$as_me:2057: checking version of $CC" >&5 + echo "$as_me:2058: checking version of $CC" >&5 echo $ECHO_N "checking version of $CC... $ECHO_C" >&6 GCC_VERSION="`${CC} --version 2>/dev/null | sed -e '2,$d' -e 's/^.*(GCC[^)]*) //' -e 's/^.*(Debian[^)]*) //' -e 's/^[^0-9.]*//' -e 's/[^0-9.].*//'`" test -z "$GCC_VERSION" && GCC_VERSION=unknown - echo "$as_me:2061: result: $GCC_VERSION" >&5 + echo "$as_me:2062: result: $GCC_VERSION" >&5 echo "${ECHO_T}$GCC_VERSION" >&6 fi @@ -2067,12 +2068,12 @@ INTEL_COMPILER=no if test "$GCC" = yes ; then case "$host_os" in (linux*|gnu*) - echo "$as_me:2070: checking if this is really Intel C compiler" >&5 + echo "$as_me:2071: 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 2075 "configure" +#line 2076 "configure" #include "confdefs.h" int @@ -2089,16 +2090,16 @@ make an error } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:2092: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:2093: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:2095: \$? = $ac_status" >&5 + echo "$as_me:2096: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:2098: \"$ac_try\"") >&5 + { (eval echo "$as_me:2099: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:2101: \$? = $ac_status" >&5 + echo "$as_me:2102: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then INTEL_COMPILER=yes cf_save_CFLAGS="$cf_save_CFLAGS -we147" @@ -2109,7 +2110,7 @@ cat "conftest.$ac_ext" >&5 fi rm -f "conftest.$ac_objext" "conftest.$ac_ext" CFLAGS="$cf_save_CFLAGS" - echo "$as_me:2112: result: $INTEL_COMPILER" >&5 + echo "$as_me:2113: result: $INTEL_COMPILER" >&5 echo "${ECHO_T}$INTEL_COMPILER" >&6 ;; esac @@ -2118,11 +2119,11 @@ fi CLANG_COMPILER=no if test "$GCC" = yes ; then - echo "$as_me:2121: checking if this is really Clang C compiler" >&5 + echo "$as_me:2122: checking if this is really Clang C compiler" >&5 echo $ECHO_N "checking if this is really Clang C compiler... $ECHO_C" >&6 cf_save_CFLAGS="$CFLAGS" cat >"conftest.$ac_ext" <<_ACEOF -#line 2125 "configure" +#line 2126 "configure" #include "confdefs.h" int @@ -2139,16 +2140,16 @@ make an error } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:2142: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:2143: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:2145: \$? = $ac_status" >&5 + echo "$as_me:2146: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:2148: \"$ac_try\"") >&5 + { (eval echo "$as_me:2149: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:2151: \$? = $ac_status" >&5 + echo "$as_me:2152: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then CLANG_COMPILER=yes @@ -2158,7 +2159,7 @@ cat "conftest.$ac_ext" >&5 fi rm -f "conftest.$ac_objext" "conftest.$ac_ext" CFLAGS="$cf_save_CFLAGS" - echo "$as_me:2161: result: $CLANG_COMPILER" >&5 + echo "$as_me:2162: result: $CLANG_COMPILER" >&5 echo "${ECHO_T}$CLANG_COMPILER" >&6 fi @@ -2167,30 +2168,30 @@ CLANG_VERSION=none if test "x$CLANG_COMPILER" = "xyes" ; then case "$CC" in (c[1-9][0-9]|*/c[1-9][0-9]) - { echo "$as_me:2170: WARNING: replacing broken compiler alias $CC" >&5 + { echo "$as_me:2171: WARNING: replacing broken compiler alias $CC" >&5 echo "$as_me: WARNING: replacing broken compiler alias $CC" >&2;} CFLAGS="$CFLAGS -std=`echo "$CC" | sed -e 's%.*/%%'`" CC=clang ;; esac - echo "$as_me:2177: checking version of $CC" >&5 + echo "$as_me:2178: checking version of $CC" >&5 echo $ECHO_N "checking version of $CC... $ECHO_C" >&6 CLANG_VERSION="`$CC --version 2>/dev/null | sed -e '2,$d' -e 's/^.*(CLANG[^)]*) //' -e 's/^.*(Debian[^)]*) //' -e 's/^[^0-9.]*//' -e 's/[^0-9.].*//'`" test -z "$CLANG_VERSION" && CLANG_VERSION=unknown - echo "$as_me:2181: result: $CLANG_VERSION" >&5 + echo "$as_me:2182: result: $CLANG_VERSION" >&5 echo "${ECHO_T}$CLANG_VERSION" >&6 for cf_clang_opt in \ -Qunused-arguments \ -Wno-error=implicit-function-declaration do - echo "$as_me:2188: checking if option $cf_clang_opt works" >&5 + echo "$as_me:2189: checking if option $cf_clang_opt works" >&5 echo $ECHO_N "checking if option $cf_clang_opt works... $ECHO_C" >&6 cf_save_CFLAGS="$CFLAGS" CFLAGS="$CFLAGS $cf_clang_opt" cat >"conftest.$ac_ext" <<_ACEOF -#line 2193 "configure" +#line 2194 "configure" #include "confdefs.h" #include <stdio.h> @@ -2204,16 +2205,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:2207: \"$ac_link\"") >&5 +if { (eval echo "$as_me:2208: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:2210: \$? = $ac_status" >&5 + echo "$as_me:2211: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:2213: \"$ac_try\"") >&5 + { (eval echo "$as_me:2214: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:2216: \$? = $ac_status" >&5 + echo "$as_me:2217: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_clang_optok=yes @@ -2224,13 +2225,13 @@ cat "conftest.$ac_ext" >&5 cf_clang_optok=no fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" - echo "$as_me:2227: result: $cf_clang_optok" >&5 + echo "$as_me:2228: result: $cf_clang_optok" >&5 echo "${ECHO_T}$cf_clang_optok" >&6 CFLAGS="$cf_save_CFLAGS" if test "$cf_clang_optok" = yes; then test -n "$verbose" && echo " adding option $cf_clang_opt" 1>&6 -echo "${as_me:-configure}:2233: testing adding option $cf_clang_opt ..." 1>&5 +echo "${as_me:-configure}:2234: testing adding option $cf_clang_opt ..." 1>&5 test -n "$CFLAGS" && CFLAGS="$CFLAGS " CFLAGS="${CFLAGS}$cf_clang_opt" @@ -2239,7 +2240,7 @@ echo "${as_me:-configure}:2233: testing adding option $cf_clang_opt ..." 1>&5 done fi -echo "$as_me:2242: checking for $CC option to accept ANSI C" >&5 +echo "$as_me:2243: 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 @@ -2247,7 +2248,7 @@ else ac_cv_prog_cc_stdc=no ac_save_CC=$CC cat >"conftest.$ac_ext" <<_ACEOF -#line 2250 "configure" +#line 2251 "configure" #include "confdefs.h" #include <stdarg.h> #include <stdio.h> @@ -2296,16 +2297,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:2299: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:2300: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:2302: \$? = $ac_status" >&5 + echo "$as_me:2303: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:2305: \"$ac_try\"") >&5 + { (eval echo "$as_me:2306: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:2308: \$? = $ac_status" >&5 + echo "$as_me:2309: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_prog_cc_stdc=$ac_arg break @@ -2322,10 +2323,10 @@ fi case "x$ac_cv_prog_cc_stdc" in x|xno) - echo "$as_me:2325: result: none needed" >&5 + echo "$as_me:2326: result: none needed" >&5 echo "${ECHO_T}none needed" >&6 ;; *) - echo "$as_me:2328: result: $ac_cv_prog_cc_stdc" >&5 + echo "$as_me:2329: result: $ac_cv_prog_cc_stdc" >&5 echo "${ECHO_T}$ac_cv_prog_cc_stdc" >&6 CC="$CC $ac_cv_prog_cc_stdc" ;; esac @@ -2333,13 +2334,13 @@ esac # This should have been defined by AC_PROG_CC : "${CC:=cc}" -echo "$as_me:2336: checking \$CFLAGS variable" >&5 +echo "$as_me:2337: checking \$CFLAGS variable" >&5 echo $ECHO_N "checking \$CFLAGS variable... $ECHO_C" >&6 case "x$CFLAGS" in (*-[IUD]*) - echo "$as_me:2340: result: broken" >&5 + echo "$as_me:2341: result: broken" >&5 echo "${ECHO_T}broken" >&6 - { echo "$as_me:2342: WARNING: your environment uses the CFLAGS variable to hold CPPFLAGS options" >&5 + { echo "$as_me:2343: WARNING: your environment uses the CFLAGS variable to hold CPPFLAGS options" >&5 echo "$as_me: WARNING: your environment uses the CFLAGS variable to hold CPPFLAGS options" >&2;} cf_flags="$CFLAGS" CFLAGS= @@ -2447,18 +2448,18 @@ fi done ;; (*) - echo "$as_me:2450: result: ok" >&5 + echo "$as_me:2451: result: ok" >&5 echo "${ECHO_T}ok" >&6 ;; esac -echo "$as_me:2455: checking \$CC variable" >&5 +echo "$as_me:2456: checking \$CC variable" >&5 echo $ECHO_N "checking \$CC variable... $ECHO_C" >&6 case "$CC" in (*[\ \ ]-*) - echo "$as_me:2459: result: broken" >&5 + echo "$as_me:2460: result: broken" >&5 echo "${ECHO_T}broken" >&6 - { echo "$as_me:2461: WARNING: your environment uses the CC variable to hold CFLAGS/CPPFLAGS options" >&5 + { echo "$as_me:2462: WARNING: your environment uses the CC variable to hold CFLAGS/CPPFLAGS options" >&5 echo "$as_me: WARNING: your environment uses the CC variable to hold CFLAGS/CPPFLAGS options" >&2;} # humor him... cf_prog=`echo "$CC" | sed -e 's/ / /g' -e 's/[ ]* / /g' -e 's/[ ]*[ ]-[^ ].*//'` @@ -2575,19 +2576,19 @@ fi done test -n "$verbose" && echo " resulting CC: '$CC'" 1>&6 -echo "${as_me:-configure}:2578: testing resulting CC: '$CC' ..." 1>&5 +echo "${as_me:-configure}:2579: testing resulting CC: '$CC' ..." 1>&5 test -n "$verbose" && echo " resulting CFLAGS: '$CFLAGS'" 1>&6 -echo "${as_me:-configure}:2582: testing resulting CFLAGS: '$CFLAGS' ..." 1>&5 +echo "${as_me:-configure}:2583: testing resulting CFLAGS: '$CFLAGS' ..." 1>&5 test -n "$verbose" && echo " resulting CPPFLAGS: '$CPPFLAGS'" 1>&6 -echo "${as_me:-configure}:2586: testing resulting CPPFLAGS: '$CPPFLAGS' ..." 1>&5 +echo "${as_me:-configure}:2587: testing resulting CPPFLAGS: '$CPPFLAGS' ..." 1>&5 ;; (*) - echo "$as_me:2590: result: ok" >&5 + echo "$as_me:2591: result: ok" >&5 echo "${ECHO_T}ok" >&6 ;; esac @@ -2596,7 +2597,7 @@ for ac_prog in ggrep grep 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:2599: checking for $ac_word" >&5 +echo "$as_me:2600: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_prog_GREP+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -2611,7 +2612,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_GREP="$ac_prog" -echo "$as_me:2614: found $ac_dir/$ac_word" >&5 +echo "$as_me:2615: found $ac_dir/$ac_word" >&5 break done @@ -2619,10 +2620,10 @@ fi fi GREP=$ac_cv_prog_GREP if test -n "$GREP"; then - echo "$as_me:2622: result: $GREP" >&5 + echo "$as_me:2623: result: $GREP" >&5 echo "${ECHO_T}$GREP" >&6 else - echo "$as_me:2625: result: no" >&5 + echo "$as_me:2626: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -2630,7 +2631,7 @@ fi done test -n "$GREP" || GREP=": " -echo "$as_me:2633: checking for egrep" >&5 +echo "$as_me:2634: checking for egrep" >&5 echo $ECHO_N "checking for egrep... $ECHO_C" >&6 if test "${ac_cv_path_EGREP+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -2642,7 +2643,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:2645: checking for $ac_word" >&5 +echo "$as_me:2646: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_path_EGREP+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -2659,7 +2660,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_EGREP="$ac_dir/$ac_word" - echo "$as_me:2662: found $ac_dir/$ac_word" >&5 + echo "$as_me:2663: found $ac_dir/$ac_word" >&5 break fi done @@ -2670,10 +2671,10 @@ fi EGREP=$ac_cv_path_EGREP if test -n "$EGREP"; then - echo "$as_me:2673: result: $EGREP" >&5 + echo "$as_me:2674: result: $EGREP" >&5 echo "${ECHO_T}$EGREP" >&6 else - echo "$as_me:2676: result: no" >&5 + echo "$as_me:2677: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -2681,12 +2682,12 @@ fi done test -n "$EGREP" || EGREP=": " - test "x$ac_cv_path_EGREP" = "x:" && { { echo "$as_me:2684: error: cannot find workable egrep" >&5 + test "x$ac_cv_path_EGREP" = "x:" && { { echo "$as_me:2685: error: cannot find workable egrep" >&5 echo "$as_me: error: cannot find workable egrep" >&2;} { (exit 1); exit 1; }; } fi fi -echo "$as_me:2689: result: $ac_cv_path_EGREP" >&5 +echo "$as_me:2690: result: $ac_cv_path_EGREP" >&5 echo "${ECHO_T}$ac_cv_path_EGREP" >&6 EGREP="$ac_cv_path_EGREP" @@ -2696,7 +2697,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:2699: checking how to run the C preprocessor" >&5 +echo "$as_me:2700: 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 @@ -2717,18 +2718,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 2720 "configure" +#line 2721 "configure" #include "confdefs.h" #include <assert.h> Syntax error _ACEOF -if { (eval echo "$as_me:2725: \"$ac_cpp "conftest.$ac_ext"\"") >&5 +if { (eval echo "$as_me:2726: \"$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:2731: \$? = $ac_status" >&5 + echo "$as_me:2732: \$? = $ac_status" >&5 (exit "$ac_status"); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -2751,17 +2752,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 2754 "configure" +#line 2755 "configure" #include "confdefs.h" #include <ac_nonexistent.h> _ACEOF -if { (eval echo "$as_me:2758: \"$ac_cpp "conftest.$ac_ext"\"") >&5 +if { (eval echo "$as_me:2759: \"$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:2764: \$? = $ac_status" >&5 + echo "$as_me:2765: \$? = $ac_status" >&5 (exit "$ac_status"); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -2798,7 +2799,7 @@ fi else ac_cv_prog_CPP=$CPP fi -echo "$as_me:2801: result: $CPP" >&5 +echo "$as_me:2802: result: $CPP" >&5 echo "${ECHO_T}$CPP" >&6 ac_preproc_ok=false for ac_c_preproc_warn_flag in '' yes @@ -2808,18 +2809,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 2811 "configure" +#line 2812 "configure" #include "confdefs.h" #include <assert.h> Syntax error _ACEOF -if { (eval echo "$as_me:2816: \"$ac_cpp "conftest.$ac_ext"\"") >&5 +if { (eval echo "$as_me:2817: \"$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:2822: \$? = $ac_status" >&5 + echo "$as_me:2823: \$? = $ac_status" >&5 (exit "$ac_status"); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -2842,17 +2843,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 2845 "configure" +#line 2846 "configure" #include "confdefs.h" #include <ac_nonexistent.h> _ACEOF -if { (eval echo "$as_me:2849: \"$ac_cpp "conftest.$ac_ext"\"") >&5 +if { (eval echo "$as_me:2850: \"$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:2855: \$? = $ac_status" >&5 + echo "$as_me:2856: \$? = $ac_status" >&5 (exit "$ac_status"); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -2880,7 +2881,7 @@ rm -f conftest.err "conftest.$ac_ext" if $ac_preproc_ok; then : else - { { echo "$as_me:2883: error: C preprocessor \"$CPP\" fails sanity check" >&5 + { { echo "$as_me:2884: error: C preprocessor \"$CPP\" fails sanity check" >&5 echo "$as_me: error: C preprocessor \"$CPP\" fails sanity check" >&2;} { (exit 1); exit 1; }; } fi @@ -2892,7 +2893,7 @@ ac_link='$CC -o "conftest$ac_exeext" $CFLAGS $CPPFLAGS $LDFLAGS "conftest.$ac_ex ac_compiler_gnu=$ac_cv_c_compiler_gnu ac_main_return="return" -echo "$as_me:2895: checking if preprocessor -C option works" >&5 +echo "$as_me:2896: checking if preprocessor -C option works" >&5 echo $ECHO_N "checking if preprocessor -C option works... $ECHO_C" >&6 if test "${cf_cv_prog_cpp_comments+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -2917,34 +2918,34 @@ rm -f conftest.[ci] fi -echo "$as_me:2920: result: $cf_cv_prog_cpp_comments" >&5 +echo "$as_me:2921: result: $cf_cv_prog_cpp_comments" >&5 echo "${ECHO_T}$cf_cv_prog_cpp_comments" >&6 if test x$cf_cv_prog_cpp_comments = xyes then CPP="$CPP -C" fi -echo "$as_me:2927: checking whether ln -s works" >&5 +echo "$as_me:2928: 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:2931: result: yes" >&5 + echo "$as_me:2932: result: yes" >&5 echo "${ECHO_T}yes" >&6 else - echo "$as_me:2934: result: no, using $LN_S" >&5 + echo "$as_me:2935: 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:2941: result: Override: No symbolic links in mingw." >&5 +echo "$as_me:2942: result: Override: No symbolic links in mingw." >&5 echo "${ECHO_T}Override: No symbolic links in mingw." >&6 ;; (*) ;; esac -echo "$as_me:2947: checking whether ${MAKE-make} sets \${MAKE}" >&5 +echo "$as_me:2948: 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 @@ -2964,11 +2965,11 @@ fi rm -f conftest.make fi if eval "test \"`echo '$ac_cv_prog_make_'${ac_make}_set`\" = yes"; then - echo "$as_me:2967: result: yes" >&5 + echo "$as_me:2968: result: yes" >&5 echo "${ECHO_T}yes" >&6 SET_MAKE= else - echo "$as_me:2971: result: no" >&5 + echo "$as_me:2972: result: no" >&5 echo "${ECHO_T}no" >&6 SET_MAKE="MAKE=${MAKE-make}" fi @@ -2985,7 +2986,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:2988: checking for a BSD compatible install" >&5 +echo "$as_me:2989: 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 @@ -3034,7 +3035,7 @@ fi INSTALL=$ac_install_sh fi fi -echo "$as_me:3037: result: $INSTALL" >&5 +echo "$as_me:3038: result: $INSTALL" >&5 echo "${ECHO_T}$INSTALL" >&6 # Use test -z because SunOS4 sh mishandles braces in ${var-val}. @@ -3049,7 +3050,7 @@ for ac_prog in byacc 'bison -y' 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:3052: checking for $ac_word" >&5 +echo "$as_me:3053: 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 @@ -3064,7 +3065,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:3067: found $ac_dir/$ac_word" >&5 +echo "$as_me:3068: found $ac_dir/$ac_word" >&5 break done @@ -3072,10 +3073,10 @@ fi fi YACC=$ac_cv_prog_YACC if test -n "$YACC"; then - echo "$as_me:3075: result: $YACC" >&5 + echo "$as_me:3076: result: $YACC" >&5 echo "${ECHO_T}$YACC" >&6 else - echo "$as_me:3078: result: no" >&5 + echo "$as_me:3079: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -3083,7 +3084,7 @@ fi done test -n "$YACC" || YACC="yacc" -echo "$as_me:3086: checking for egrep" >&5 +echo "$as_me:3087: checking for egrep" >&5 echo $ECHO_N "checking for egrep... $ECHO_C" >&6 if test "${ac_cv_path_EGREP+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -3095,7 +3096,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:3098: checking for $ac_word" >&5 +echo "$as_me:3099: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_path_EGREP+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -3112,7 +3113,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_EGREP="$ac_dir/$ac_word" - echo "$as_me:3115: found $ac_dir/$ac_word" >&5 + echo "$as_me:3116: found $ac_dir/$ac_word" >&5 break fi done @@ -3123,10 +3124,10 @@ fi EGREP=$ac_cv_path_EGREP if test -n "$EGREP"; then - echo "$as_me:3126: result: $EGREP" >&5 + echo "$as_me:3127: result: $EGREP" >&5 echo "${ECHO_T}$EGREP" >&6 else - echo "$as_me:3129: result: no" >&5 + echo "$as_me:3130: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -3134,12 +3135,12 @@ fi done test -n "$EGREP" || EGREP=": " - test "x$ac_cv_path_EGREP" = "x:" && { { echo "$as_me:3137: error: cannot find workable egrep" >&5 + test "x$ac_cv_path_EGREP" = "x:" && { { echo "$as_me:3138: error: cannot find workable egrep" >&5 echo "$as_me: error: cannot find workable egrep" >&2;} { (exit 1); exit 1; }; } fi fi -echo "$as_me:3142: result: $ac_cv_path_EGREP" >&5 +echo "$as_me:3143: result: $ac_cv_path_EGREP" >&5 echo "${ECHO_T}$ac_cv_path_EGREP" >&6 EGREP="$ac_cv_path_EGREP" @@ -3147,7 +3148,7 @@ for ac_prog in lint cppcheck splint 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:3150: checking for $ac_word" >&5 +echo "$as_me:3151: 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 @@ -3162,7 +3163,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:3165: found $ac_dir/$ac_word" >&5 +echo "$as_me:3166: found $ac_dir/$ac_word" >&5 break done @@ -3170,10 +3171,10 @@ fi fi LINT=$ac_cv_prog_LINT if test -n "$LINT"; then - echo "$as_me:3173: result: $LINT" >&5 + echo "$as_me:3174: result: $LINT" >&5 echo "${ECHO_T}$LINT" >&6 else - echo "$as_me:3176: result: no" >&5 + echo "$as_me:3177: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -3186,7 +3187,7 @@ case "x$LINT" in ;; esac -echo "$as_me:3189: checking for fgrep" >&5 +echo "$as_me:3190: checking for fgrep" >&5 echo $ECHO_N "checking for fgrep... $ECHO_C" >&6 if test "${ac_cv_path_FGREP+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -3198,7 +3199,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:3201: checking for $ac_word" >&5 +echo "$as_me:3202: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_path_FGREP+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -3215,7 +3216,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_FGREP="$ac_dir/$ac_word" - echo "$as_me:3218: found $ac_dir/$ac_word" >&5 + echo "$as_me:3219: found $ac_dir/$ac_word" >&5 break fi done @@ -3226,10 +3227,10 @@ fi FGREP=$ac_cv_path_FGREP if test -n "$FGREP"; then - echo "$as_me:3229: result: $FGREP" >&5 + echo "$as_me:3230: result: $FGREP" >&5 echo "${ECHO_T}$FGREP" >&6 else - echo "$as_me:3232: result: no" >&5 + echo "$as_me:3233: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -3237,16 +3238,16 @@ fi done test -n "$FGREP" || FGREP=": " - test "x$ac_cv_path_FGREP" = "x:" && { { echo "$as_me:3240: error: cannot find workable fgrep" >&5 + test "x$ac_cv_path_FGREP" = "x:" && { { echo "$as_me:3241: error: cannot find workable fgrep" >&5 echo "$as_me: error: cannot find workable fgrep" >&2;} { (exit 1); exit 1; }; } fi fi -echo "$as_me:3245: result: $ac_cv_path_FGREP" >&5 +echo "$as_me:3246: result: $ac_cv_path_FGREP" >&5 echo "${ECHO_T}$ac_cv_path_FGREP" >&6 FGREP="$ac_cv_path_FGREP" -echo "$as_me:3249: checking for makeflags variable" >&5 +echo "$as_me:3250: checking for makeflags variable" >&5 echo $ECHO_N "checking for makeflags variable... $ECHO_C" >&6 if test "${cf_cv_makeflags+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -3276,7 +3277,7 @@ CF_EOF ;; (*) -echo "${as_me:-configure}:3279: testing given option \"$cf_option\",no match \"$cf_result\" ..." 1>&5 +echo "${as_me:-configure}:3280: testing given option \"$cf_option\",no match \"$cf_result\" ..." 1>&5 ;; esac @@ -3284,10 +3285,10 @@ echo "${as_me:-configure}:3279: testing given option \"$cf_option\",no match \"$ rm -f cf_makeflags.tmp fi -echo "$as_me:3287: result: $cf_cv_makeflags" >&5 +echo "$as_me:3288: result: $cf_cv_makeflags" >&5 echo "${ECHO_T}$cf_cv_makeflags" >&6 -echo "$as_me:3290: checking for \".PHONY\" make-support" >&5 +echo "$as_me:3291: checking for \".PHONY\" make-support" >&5 echo $ECHO_N "checking for \".PHONY\" make-support... $ECHO_C" >&6 if test "${cf_cv_make_PHONY+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -3342,14 +3343,14 @@ CF_EOF rm -rf conftest* fi -echo "$as_me:3345: result: $cf_cv_make_PHONY" >&5 +echo "$as_me:3346: result: $cf_cv_make_PHONY" >&5 echo "${ECHO_T}$cf_cv_make_PHONY" >&6 MAKE_NO_PHONY="#" MAKE_PHONY="#" test "x$cf_cv_make_PHONY" = xyes && MAKE_PHONY= test "x$cf_cv_make_PHONY" != xyes && MAKE_NO_PHONY= -echo "$as_me:3352: checking if filesystem supports mixed-case filenames" >&5 +echo "$as_me:3353: checking if filesystem supports mixed-case filenames" >&5 echo $ECHO_N "checking if filesystem supports mixed-case filenames... $ECHO_C" >&6 if test "${cf_cv_mixedcase+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -3376,7 +3377,7 @@ else fi fi -echo "$as_me:3379: result: $cf_cv_mixedcase" >&5 +echo "$as_me:3380: result: $cf_cv_mixedcase" >&5 echo "${ECHO_T}$cf_cv_mixedcase" >&6 test "$cf_cv_mixedcase" = yes && cat >>confdefs.h <<\EOF @@ -3387,7 +3388,7 @@ for ac_prog in exctags ctags 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:3390: checking for $ac_word" >&5 +echo "$as_me:3391: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_prog_CTAGS+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -3402,7 +3403,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_CTAGS="$ac_prog" -echo "$as_me:3405: found $ac_dir/$ac_word" >&5 +echo "$as_me:3406: found $ac_dir/$ac_word" >&5 break done @@ -3410,10 +3411,10 @@ fi fi CTAGS=$ac_cv_prog_CTAGS if test -n "$CTAGS"; then - echo "$as_me:3413: result: $CTAGS" >&5 + echo "$as_me:3414: result: $CTAGS" >&5 echo "${ECHO_T}$CTAGS" >&6 else - echo "$as_me:3416: result: no" >&5 + echo "$as_me:3417: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -3424,7 +3425,7 @@ for ac_prog in exetags etags 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:3427: checking for $ac_word" >&5 +echo "$as_me:3428: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_prog_ETAGS+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -3439,7 +3440,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_ETAGS="$ac_prog" -echo "$as_me:3442: found $ac_dir/$ac_word" >&5 +echo "$as_me:3443: found $ac_dir/$ac_word" >&5 break done @@ -3447,10 +3448,10 @@ fi fi ETAGS=$ac_cv_prog_ETAGS if test -n "$ETAGS"; then - echo "$as_me:3450: result: $ETAGS" >&5 + echo "$as_me:3451: result: $ETAGS" >&5 echo "${ECHO_T}$ETAGS" >&6 else - echo "$as_me:3453: result: no" >&5 + echo "$as_me:3454: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -3459,7 +3460,7 @@ done # Extract the first word of "${CTAGS:-ctags}", so it can be a program name with args. set dummy ${CTAGS:-ctags}; ac_word=$2 -echo "$as_me:3462: checking for $ac_word" >&5 +echo "$as_me:3463: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_prog_MAKE_LOWER_TAGS+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -3474,7 +3475,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_MAKE_LOWER_TAGS="yes" -echo "$as_me:3477: found $ac_dir/$ac_word" >&5 +echo "$as_me:3478: found $ac_dir/$ac_word" >&5 break done @@ -3483,17 +3484,17 @@ fi fi MAKE_LOWER_TAGS=$ac_cv_prog_MAKE_LOWER_TAGS if test -n "$MAKE_LOWER_TAGS"; then - echo "$as_me:3486: result: $MAKE_LOWER_TAGS" >&5 + echo "$as_me:3487: result: $MAKE_LOWER_TAGS" >&5 echo "${ECHO_T}$MAKE_LOWER_TAGS" >&6 else - echo "$as_me:3489: result: no" >&5 + echo "$as_me:3490: result: no" >&5 echo "${ECHO_T}no" >&6 fi if test "$cf_cv_mixedcase" = yes ; then # Extract the first word of "${ETAGS:-etags}", so it can be a program name with args. set dummy ${ETAGS:-etags}; ac_word=$2 -echo "$as_me:3496: checking for $ac_word" >&5 +echo "$as_me:3497: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_prog_MAKE_UPPER_TAGS+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -3508,7 +3509,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_MAKE_UPPER_TAGS="yes" -echo "$as_me:3511: found $ac_dir/$ac_word" >&5 +echo "$as_me:3512: found $ac_dir/$ac_word" >&5 break done @@ -3517,10 +3518,10 @@ fi fi MAKE_UPPER_TAGS=$ac_cv_prog_MAKE_UPPER_TAGS if test -n "$MAKE_UPPER_TAGS"; then - echo "$as_me:3520: result: $MAKE_UPPER_TAGS" >&5 + echo "$as_me:3521: result: $MAKE_UPPER_TAGS" >&5 echo "${ECHO_T}$MAKE_UPPER_TAGS" >&6 else - echo "$as_me:3523: result: no" >&5 + echo "$as_me:3524: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -3543,7 +3544,7 @@ fi if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}windres", so it can be a program name with args. set dummy ${ac_tool_prefix}windres; ac_word=$2 -echo "$as_me:3546: checking for $ac_word" >&5 +echo "$as_me:3547: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_path_WINDRES+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -3560,7 +3561,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_WINDRES="$ac_dir/$ac_word" - echo "$as_me:3563: found $ac_dir/$ac_word" >&5 + echo "$as_me:3564: found $ac_dir/$ac_word" >&5 break fi done @@ -3571,10 +3572,10 @@ fi WINDRES=$ac_cv_path_WINDRES if test -n "$WINDRES"; then - echo "$as_me:3574: result: $WINDRES" >&5 + echo "$as_me:3575: result: $WINDRES" >&5 echo "${ECHO_T}$WINDRES" >&6 else - echo "$as_me:3577: result: no" >&5 + echo "$as_me:3578: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -3583,7 +3584,7 @@ if test -z "$ac_cv_path_WINDRES"; then ac_pt_WINDRES=$WINDRES # Extract the first word of "windres", so it can be a program name with args. set dummy windres; ac_word=$2 -echo "$as_me:3586: checking for $ac_word" >&5 +echo "$as_me:3587: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_path_ac_pt_WINDRES+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -3600,7 +3601,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_ac_pt_WINDRES="$ac_dir/$ac_word" - echo "$as_me:3603: found $ac_dir/$ac_word" >&5 + echo "$as_me:3604: found $ac_dir/$ac_word" >&5 break fi done @@ -3612,10 +3613,10 @@ fi ac_pt_WINDRES=$ac_cv_path_ac_pt_WINDRES if test -n "$ac_pt_WINDRES"; then - echo "$as_me:3615: result: $ac_pt_WINDRES" >&5 + echo "$as_me:3616: result: $ac_pt_WINDRES" >&5 echo "${ECHO_T}$ac_pt_WINDRES" >&6 else - echo "$as_me:3618: result: no" >&5 + echo "$as_me:3619: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -3643,7 +3644,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:3646: checking for $ac_word" >&5 +echo "$as_me:3647: 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 @@ -3658,7 +3659,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:3661: found $ac_dir/$ac_word" >&5 +echo "$as_me:3662: found $ac_dir/$ac_word" >&5 break done @@ -3666,10 +3667,10 @@ fi fi BUILD_CC=$ac_cv_prog_BUILD_CC if test -n "$BUILD_CC"; then - echo "$as_me:3669: result: $BUILD_CC" >&5 + echo "$as_me:3670: result: $BUILD_CC" >&5 echo "${ECHO_T}$BUILD_CC" >&6 else - echo "$as_me:3672: result: no" >&5 + echo "$as_me:3673: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -3678,12 +3679,12 @@ done test -n "$BUILD_CC" || BUILD_CC="none" fi; - echo "$as_me:3681: checking for native build C compiler" >&5 + echo "$as_me:3682: checking for native build C compiler" >&5 echo $ECHO_N "checking for native build C compiler... $ECHO_C" >&6 - echo "$as_me:3683: result: $BUILD_CC" >&5 + echo "$as_me:3684: result: $BUILD_CC" >&5 echo "${ECHO_T}$BUILD_CC" >&6 - echo "$as_me:3686: checking for native build C preprocessor" >&5 + echo "$as_me:3687: 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. @@ -3693,10 +3694,10 @@ if test "${with_build_cpp+set}" = set; then else BUILD_CPP='${BUILD_CC} -E' fi; - echo "$as_me:3696: result: $BUILD_CPP" >&5 + echo "$as_me:3697: result: $BUILD_CPP" >&5 echo "${ECHO_T}$BUILD_CPP" >&6 - echo "$as_me:3699: checking for native build C flags" >&5 + echo "$as_me:3700: 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. @@ -3704,10 +3705,10 @@ if test "${with_build_cflags+set}" = set; then withval="$with_build_cflags" BUILD_CFLAGS="$withval" fi; - echo "$as_me:3707: result: $BUILD_CFLAGS" >&5 + echo "$as_me:3708: result: $BUILD_CFLAGS" >&5 echo "${ECHO_T}$BUILD_CFLAGS" >&6 - echo "$as_me:3710: checking for native build C preprocessor-flags" >&5 + echo "$as_me:3711: 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. @@ -3715,10 +3716,10 @@ if test "${with_build_cppflags+set}" = set; then withval="$with_build_cppflags" BUILD_CPPFLAGS="$withval" fi; - echo "$as_me:3718: result: $BUILD_CPPFLAGS" >&5 + echo "$as_me:3719: result: $BUILD_CPPFLAGS" >&5 echo "${ECHO_T}$BUILD_CPPFLAGS" >&6 - echo "$as_me:3721: checking for native build linker-flags" >&5 + echo "$as_me:3722: 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. @@ -3726,10 +3727,10 @@ if test "${with_build_ldflags+set}" = set; then withval="$with_build_ldflags" BUILD_LDFLAGS="$withval" fi; - echo "$as_me:3729: result: $BUILD_LDFLAGS" >&5 + echo "$as_me:3730: result: $BUILD_LDFLAGS" >&5 echo "${ECHO_T}$BUILD_LDFLAGS" >&6 - echo "$as_me:3732: checking for native build linker-libraries" >&5 + echo "$as_me:3733: 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. @@ -3737,7 +3738,7 @@ if test "${with_build_libs+set}" = set; then withval="$with_build_libs" BUILD_LIBS="$withval" fi; - echo "$as_me:3740: result: $BUILD_LIBS" >&5 + echo "$as_me:3741: result: $BUILD_LIBS" >&5 echo "${ECHO_T}$BUILD_LIBS" >&6 # this assumes we're on Unix. @@ -3747,7 +3748,7 @@ echo "${ECHO_T}$BUILD_LIBS" >&6 : ${BUILD_CC:='${CC}'} if { test "$BUILD_CC" = "$CC" || test "$BUILD_CC" = '${CC}'; } ; then - { { echo "$as_me:3750: error: Cross-build requires two compilers. + { { echo "$as_me:3751: 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;} @@ -3768,7 +3769,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:3771: checking for $ac_word" >&5 +echo "$as_me:3772: 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 @@ -3783,7 +3784,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:3786: found $ac_dir/$ac_word" >&5 +echo "$as_me:3787: found $ac_dir/$ac_word" >&5 break done @@ -3791,10 +3792,10 @@ fi fi RANLIB=$ac_cv_prog_RANLIB if test -n "$RANLIB"; then - echo "$as_me:3794: result: $RANLIB" >&5 + echo "$as_me:3795: result: $RANLIB" >&5 echo "${ECHO_T}$RANLIB" >&6 else - echo "$as_me:3797: result: no" >&5 + echo "$as_me:3798: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -3803,7 +3804,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:3806: checking for $ac_word" >&5 +echo "$as_me:3807: 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 @@ -3818,7 +3819,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:3821: found $ac_dir/$ac_word" >&5 +echo "$as_me:3822: found $ac_dir/$ac_word" >&5 break done @@ -3827,10 +3828,10 @@ fi fi ac_ct_RANLIB=$ac_cv_prog_ac_ct_RANLIB if test -n "$ac_ct_RANLIB"; then - echo "$as_me:3830: result: $ac_ct_RANLIB" >&5 + echo "$as_me:3831: result: $ac_ct_RANLIB" >&5 echo "${ECHO_T}$ac_ct_RANLIB" >&6 else - echo "$as_me:3833: result: no" >&5 + echo "$as_me:3834: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -3842,7 +3843,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:3845: checking for $ac_word" >&5 +echo "$as_me:3846: 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 @@ -3857,7 +3858,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:3860: found $ac_dir/$ac_word" >&5 +echo "$as_me:3861: found $ac_dir/$ac_word" >&5 break done @@ -3865,10 +3866,10 @@ fi fi AR=$ac_cv_prog_AR if test -n "$AR"; then - echo "$as_me:3868: result: $AR" >&5 + echo "$as_me:3869: result: $AR" >&5 echo "${ECHO_T}$AR" >&6 else - echo "$as_me:3871: result: no" >&5 + echo "$as_me:3872: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -3877,7 +3878,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:3880: checking for $ac_word" >&5 +echo "$as_me:3881: 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 @@ -3892,7 +3893,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:3895: found $ac_dir/$ac_word" >&5 +echo "$as_me:3896: found $ac_dir/$ac_word" >&5 break done @@ -3901,10 +3902,10 @@ fi fi ac_ct_AR=$ac_cv_prog_ac_ct_AR if test -n "$ac_ct_AR"; then - echo "$as_me:3904: result: $ac_ct_AR" >&5 + echo "$as_me:3905: result: $ac_ct_AR" >&5 echo "${ECHO_T}$ac_ct_AR" >&6 else - echo "$as_me:3907: result: no" >&5 + echo "$as_me:3908: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -3913,7 +3914,7 @@ else AR="$ac_cv_prog_AR" fi -echo "$as_me:3916: checking for options to update archives" >&5 +echo "$as_me:3917: 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 @@ -3950,13 +3951,13 @@ else rm -f conftest.a cat >"conftest.$ac_ext" <<EOF -#line 3953 "configure" +#line 3954 "configure" int testdata[3] = { 123, 456, 789 }; EOF - if { (eval echo "$as_me:3956: \"$ac_compile\"") >&5 + if { (eval echo "$as_me:3957: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:3959: \$? = $ac_status" >&5 + echo "$as_me:3960: \$? = $ac_status" >&5 (exit "$ac_status"); } ; then echo "$AR $ARFLAGS $cf_ar_flags conftest.a conftest.$ac_cv_objext" >&5 $AR $ARFLAGS "$cf_ar_flags" conftest.a "conftest.$ac_cv_objext" 2>&5 1>/dev/null @@ -3967,7 +3968,7 @@ EOF else test -n "$verbose" && echo " cannot compile test-program" 1>&6 -echo "${as_me:-configure}:3970: testing cannot compile test-program ..." 1>&5 +echo "${as_me:-configure}:3971: testing cannot compile test-program ..." 1>&5 break fi @@ -3977,7 +3978,7 @@ echo "${as_me:-configure}:3970: testing cannot compile test-program ..." 1>&5 esac fi -echo "$as_me:3980: result: $cf_cv_ar_flags" >&5 +echo "$as_me:3981: result: $cf_cv_ar_flags" >&5 echo "${ECHO_T}$cf_cv_ar_flags" >&6 if test -n "$ARFLAGS" ; then @@ -3988,7 +3989,7 @@ else ARFLAGS=$cf_cv_ar_flags fi -echo "$as_me:3991: checking if you want to see long compiling messages" >&5 +echo "$as_me:3992: 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. @@ -4022,7 +4023,7 @@ else ECHO_CC='' fi; -echo "$as_me:4025: result: $enableval" >&5 +echo "$as_me:4026: result: $enableval" >&5 echo "${ECHO_T}$enableval" >&6 # special case for WWW/* @@ -4032,7 +4033,7 @@ else DONT_ECHO_CC='' fi -echo "$as_me:4035: checking if you want to check memory-leaks" >&5 +echo "$as_me:4036: 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. @@ -4049,7 +4050,7 @@ else with_leak_checks=no fi; -echo "$as_me:4052: result: $with_leak_checks" >&5 +echo "$as_me:4053: result: $with_leak_checks" >&5 echo "${ECHO_T}$with_leak_checks" >&6 test "$with_leak_checks" = "yes" && cat >>confdefs.h <<\EOF @@ -4059,7 +4060,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:4062: checking if you want to enable debug-code" >&5 +echo "$as_me:4063: 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. @@ -4076,7 +4077,7 @@ else with_debug=no fi; -echo "$as_me:4079: result: $with_debug" >&5 +echo "$as_me:4080: result: $with_debug" >&5 echo "${ECHO_T}$with_debug" >&6 if test "$with_debug" = "yes" ; then case "$host_os" in @@ -4101,7 +4102,7 @@ else esac fi -echo "$as_me:4104: checking if you want to enable lynx trace code *recommended* " >&5 +echo "$as_me:4105: 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. @@ -4118,14 +4119,14 @@ else with_trace=yes fi; -echo "$as_me:4121: result: $with_trace" >&5 +echo "$as_me:4122: 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:4128: checking if you want verbose trace code" >&5 +echo "$as_me:4129: 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. @@ -4142,7 +4143,7 @@ else with_vertrace=no fi; -echo "$as_me:4145: result: $with_vertrace" >&5 +echo "$as_me:4146: result: $with_vertrace" >&5 echo "${ECHO_T}$with_vertrace" >&6 test "$with_vertrace" = yes && cat >>confdefs.h <<\EOF @@ -4151,7 +4152,7 @@ EOF if test -n "$with_screen" && test "x$with_screen" = "xpdcurses" then - echo "$as_me:4154: checking for X" >&5 + echo "$as_me:4155: checking for X" >&5 echo $ECHO_N "checking for X... $ECHO_C" >&6 # Check whether --with-x or --without-x was given. @@ -4255,17 +4256,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 4258 "configure" +#line 4259 "configure" #include "confdefs.h" #include <X11/Intrinsic.h> _ACEOF -if { (eval echo "$as_me:4262: \"$ac_cpp "conftest.$ac_ext"\"") >&5 +if { (eval echo "$as_me:4263: \"$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:4268: \$? = $ac_status" >&5 + echo "$as_me:4269: \$? = $ac_status" >&5 (exit "$ac_status"); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -4298,7 +4299,7 @@ if test "$ac_x_libraries" = no; then ac_save_LIBS=$LIBS LIBS="-lXt $LIBS" cat >"conftest.$ac_ext" <<_ACEOF -#line 4301 "configure" +#line 4302 "configure" #include "confdefs.h" #include <X11/Intrinsic.h> int @@ -4310,16 +4311,16 @@ XtMalloc (0) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:4313: \"$ac_link\"") >&5 +if { (eval echo "$as_me:4314: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:4316: \$? = $ac_status" >&5 + echo "$as_me:4317: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:4319: \"$ac_try\"") >&5 + { (eval echo "$as_me:4320: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:4322: \$? = $ac_status" >&5 + echo "$as_me:4323: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then LIBS=$ac_save_LIBS # We can link X programs with no special library path. @@ -4357,7 +4358,7 @@ fi fi # $with_x != no if test "$have_x" != yes; then - echo "$as_me:4360: result: $have_x" >&5 + echo "$as_me:4361: result: $have_x" >&5 echo "${ECHO_T}$have_x" >&6 no_x=yes else @@ -4367,7 +4368,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:4370: result: libraries $x_libraries, headers $x_includes" >&5 + echo "$as_me:4371: result: libraries $x_libraries, headers $x_includes" >&5 echo "${ECHO_T}libraries $x_libraries, headers $x_includes" >&6 fi @@ -4394,11 +4395,11 @@ else # others require no space. Words are not sufficient . . . . case `(uname -sr) 2>/dev/null` in "SunOS 5"*) - echo "$as_me:4397: checking whether -R must be followed by a space" >&5 + echo "$as_me:4398: 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 4401 "configure" +#line 4402 "configure" #include "confdefs.h" int @@ -4410,16 +4411,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:4413: \"$ac_link\"") >&5 +if { (eval echo "$as_me:4414: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:4416: \$? = $ac_status" >&5 + echo "$as_me:4417: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:4419: \"$ac_try\"") >&5 + { (eval echo "$as_me:4420: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:4422: \$? = $ac_status" >&5 + echo "$as_me:4423: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_R_nospace=yes else @@ -4429,13 +4430,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:4432: result: no" >&5 + echo "$as_me:4433: 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 4438 "configure" +#line 4439 "configure" #include "confdefs.h" int @@ -4447,16 +4448,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:4450: \"$ac_link\"") >&5 +if { (eval echo "$as_me:4451: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:4453: \$? = $ac_status" >&5 + echo "$as_me:4454: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:4456: \"$ac_try\"") >&5 + { (eval echo "$as_me:4457: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:4459: \$? = $ac_status" >&5 + echo "$as_me:4460: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_R_space=yes else @@ -4466,11 +4467,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:4469: result: yes" >&5 + echo "$as_me:4470: result: yes" >&5 echo "${ECHO_T}yes" >&6 X_LIBS="$X_LIBS -R $x_libraries" else - echo "$as_me:4473: result: neither works" >&5 + echo "$as_me:4474: result: neither works" >&5 echo "${ECHO_T}neither works" >&6 fi fi @@ -4490,7 +4491,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 4493 "configure" +#line 4494 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -4509,22 +4510,22 @@ XOpenDisplay (); } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:4512: \"$ac_link\"") >&5 +if { (eval echo "$as_me:4513: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:4515: \$? = $ac_status" >&5 + echo "$as_me:4516: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:4518: \"$ac_try\"") >&5 + { (eval echo "$as_me:4519: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:4521: \$? = $ac_status" >&5 + echo "$as_me:4522: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then : else echo "$as_me: failed program was:" >&5 cat "conftest.$ac_ext" >&5 -echo "$as_me:4527: checking for dnet_ntoa in -ldnet" >&5 +echo "$as_me:4528: 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 @@ -4532,7 +4533,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-ldnet $LIBS" cat >"conftest.$ac_ext" <<_ACEOF -#line 4535 "configure" +#line 4536 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -4551,16 +4552,16 @@ dnet_ntoa (); } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:4554: \"$ac_link\"") >&5 +if { (eval echo "$as_me:4555: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:4557: \$? = $ac_status" >&5 + echo "$as_me:4558: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:4560: \"$ac_try\"") >&5 + { (eval echo "$as_me:4561: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:4563: \$? = $ac_status" >&5 + echo "$as_me:4564: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_lib_dnet_dnet_ntoa=yes else @@ -4571,14 +4572,14 @@ fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:4574: result: $ac_cv_lib_dnet_dnet_ntoa" >&5 +echo "$as_me:4575: 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:4581: checking for dnet_ntoa in -ldnet_stub" >&5 + echo "$as_me:4582: 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 @@ -4586,7 +4587,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-ldnet_stub $LIBS" cat >"conftest.$ac_ext" <<_ACEOF -#line 4589 "configure" +#line 4590 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -4605,16 +4606,16 @@ dnet_ntoa (); } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:4608: \"$ac_link\"") >&5 +if { (eval echo "$as_me:4609: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:4611: \$? = $ac_status" >&5 + echo "$as_me:4612: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:4614: \"$ac_try\"") >&5 + { (eval echo "$as_me:4615: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:4617: \$? = $ac_status" >&5 + echo "$as_me:4618: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_lib_dnet_stub_dnet_ntoa=yes else @@ -4625,7 +4626,7 @@ fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:4628: result: $ac_cv_lib_dnet_stub_dnet_ntoa" >&5 +echo "$as_me:4629: 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" @@ -4644,13 +4645,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:4647: checking for gethostbyname" >&5 + echo "$as_me:4648: 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 4653 "configure" +#line 4654 "configure" #include "confdefs.h" #define gethostbyname autoconf_temporary #include <limits.h> /* least-intrusive standard header which defines gcc2 __stub macros */ @@ -4681,16 +4682,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:4684: \"$ac_link\"") >&5 +if { (eval echo "$as_me:4685: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:4687: \$? = $ac_status" >&5 + echo "$as_me:4688: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:4690: \"$ac_try\"") >&5 + { (eval echo "$as_me:4691: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:4693: \$? = $ac_status" >&5 + echo "$as_me:4694: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_func_gethostbyname=yes else @@ -4700,11 +4701,11 @@ ac_cv_func_gethostbyname=no fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:4703: result: $ac_cv_func_gethostbyname" >&5 +echo "$as_me:4704: 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:4707: checking for gethostbyname in -lnsl" >&5 + echo "$as_me:4708: 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 @@ -4712,7 +4713,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lnsl $LIBS" cat >"conftest.$ac_ext" <<_ACEOF -#line 4715 "configure" +#line 4716 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -4731,16 +4732,16 @@ gethostbyname (); } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:4734: \"$ac_link\"") >&5 +if { (eval echo "$as_me:4735: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:4737: \$? = $ac_status" >&5 + echo "$as_me:4738: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:4740: \"$ac_try\"") >&5 + { (eval echo "$as_me:4741: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:4743: \$? = $ac_status" >&5 + echo "$as_me:4744: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_lib_nsl_gethostbyname=yes else @@ -4751,14 +4752,14 @@ fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:4754: result: $ac_cv_lib_nsl_gethostbyname" >&5 +echo "$as_me:4755: 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:4761: checking for gethostbyname in -lbsd" >&5 + echo "$as_me:4762: 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 @@ -4766,7 +4767,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lbsd $LIBS" cat >"conftest.$ac_ext" <<_ACEOF -#line 4769 "configure" +#line 4770 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -4785,16 +4786,16 @@ gethostbyname (); } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:4788: \"$ac_link\"") >&5 +if { (eval echo "$as_me:4789: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:4791: \$? = $ac_status" >&5 + echo "$as_me:4792: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:4794: \"$ac_try\"") >&5 + { (eval echo "$as_me:4795: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:4797: \$? = $ac_status" >&5 + echo "$as_me:4798: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_lib_bsd_gethostbyname=yes else @@ -4805,7 +4806,7 @@ fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:4808: result: $ac_cv_lib_bsd_gethostbyname" >&5 +echo "$as_me:4809: 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" @@ -4821,13 +4822,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:4824: checking for connect" >&5 + echo "$as_me:4825: 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 4830 "configure" +#line 4831 "configure" #include "confdefs.h" #define connect autoconf_temporary #include <limits.h> /* least-intrusive standard header which defines gcc2 __stub macros */ @@ -4858,16 +4859,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:4861: \"$ac_link\"") >&5 +if { (eval echo "$as_me:4862: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:4864: \$? = $ac_status" >&5 + echo "$as_me:4865: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:4867: \"$ac_try\"") >&5 + { (eval echo "$as_me:4868: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:4870: \$? = $ac_status" >&5 + echo "$as_me:4871: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_func_connect=yes else @@ -4877,11 +4878,11 @@ ac_cv_func_connect=no fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:4880: result: $ac_cv_func_connect" >&5 +echo "$as_me:4881: 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:4884: checking for connect in -lsocket" >&5 + echo "$as_me:4885: 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 @@ -4889,7 +4890,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lsocket $X_EXTRA_LIBS $LIBS" cat >"conftest.$ac_ext" <<_ACEOF -#line 4892 "configure" +#line 4893 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -4908,16 +4909,16 @@ connect (); } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:4911: \"$ac_link\"") >&5 +if { (eval echo "$as_me:4912: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:4914: \$? = $ac_status" >&5 + echo "$as_me:4915: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:4917: \"$ac_try\"") >&5 + { (eval echo "$as_me:4918: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:4920: \$? = $ac_status" >&5 + echo "$as_me:4921: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_lib_socket_connect=yes else @@ -4928,7 +4929,7 @@ fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:4931: result: $ac_cv_lib_socket_connect" >&5 +echo "$as_me:4932: 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" @@ -4937,13 +4938,13 @@ fi fi # Guillermo Gomez says -lposix is necessary on A/UX. - echo "$as_me:4940: checking for remove" >&5 + echo "$as_me:4941: 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 4946 "configure" +#line 4947 "configure" #include "confdefs.h" #define remove autoconf_temporary #include <limits.h> /* least-intrusive standard header which defines gcc2 __stub macros */ @@ -4974,16 +4975,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:4977: \"$ac_link\"") >&5 +if { (eval echo "$as_me:4978: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:4980: \$? = $ac_status" >&5 + echo "$as_me:4981: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:4983: \"$ac_try\"") >&5 + { (eval echo "$as_me:4984: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:4986: \$? = $ac_status" >&5 + echo "$as_me:4987: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_func_remove=yes else @@ -4993,11 +4994,11 @@ ac_cv_func_remove=no fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:4996: result: $ac_cv_func_remove" >&5 +echo "$as_me:4997: 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:5000: checking for remove in -lposix" >&5 + echo "$as_me:5001: 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 @@ -5005,7 +5006,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lposix $LIBS" cat >"conftest.$ac_ext" <<_ACEOF -#line 5008 "configure" +#line 5009 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -5024,16 +5025,16 @@ remove (); } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:5027: \"$ac_link\"") >&5 +if { (eval echo "$as_me:5028: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:5030: \$? = $ac_status" >&5 + echo "$as_me:5031: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:5033: \"$ac_try\"") >&5 + { (eval echo "$as_me:5034: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:5036: \$? = $ac_status" >&5 + echo "$as_me:5037: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_lib_posix_remove=yes else @@ -5044,7 +5045,7 @@ fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:5047: result: $ac_cv_lib_posix_remove" >&5 +echo "$as_me:5048: 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" @@ -5053,13 +5054,13 @@ fi fi # BSDI BSD/OS 2.1 needs -lipc for XOpenDisplay. - echo "$as_me:5056: checking for shmat" >&5 + echo "$as_me:5057: 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 5062 "configure" +#line 5063 "configure" #include "confdefs.h" #define shmat autoconf_temporary #include <limits.h> /* least-intrusive standard header which defines gcc2 __stub macros */ @@ -5090,16 +5091,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:5093: \"$ac_link\"") >&5 +if { (eval echo "$as_me:5094: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:5096: \$? = $ac_status" >&5 + echo "$as_me:5097: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:5099: \"$ac_try\"") >&5 + { (eval echo "$as_me:5100: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:5102: \$? = $ac_status" >&5 + echo "$as_me:5103: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_func_shmat=yes else @@ -5109,11 +5110,11 @@ ac_cv_func_shmat=no fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:5112: result: $ac_cv_func_shmat" >&5 +echo "$as_me:5113: 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:5116: checking for shmat in -lipc" >&5 + echo "$as_me:5117: 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 @@ -5121,7 +5122,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lipc $LIBS" cat >"conftest.$ac_ext" <<_ACEOF -#line 5124 "configure" +#line 5125 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -5140,16 +5141,16 @@ shmat (); } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:5143: \"$ac_link\"") >&5 +if { (eval echo "$as_me:5144: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:5146: \$? = $ac_status" >&5 + echo "$as_me:5147: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:5149: \"$ac_try\"") >&5 + { (eval echo "$as_me:5150: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:5152: \$? = $ac_status" >&5 + echo "$as_me:5153: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_lib_ipc_shmat=yes else @@ -5160,7 +5161,7 @@ fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:5163: result: $ac_cv_lib_ipc_shmat" >&5 +echo "$as_me:5164: 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" @@ -5178,7 +5179,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:5181: checking for IceConnectionNumber in -lICE" >&5 + echo "$as_me:5182: 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 @@ -5186,7 +5187,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lICE $X_EXTRA_LIBS $LIBS" cat >"conftest.$ac_ext" <<_ACEOF -#line 5189 "configure" +#line 5190 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -5205,16 +5206,16 @@ IceConnectionNumber (); } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:5208: \"$ac_link\"") >&5 +if { (eval echo "$as_me:5209: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:5211: \$? = $ac_status" >&5 + echo "$as_me:5212: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:5214: \"$ac_try\"") >&5 + { (eval echo "$as_me:5215: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:5217: \$? = $ac_status" >&5 + echo "$as_me:5218: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_lib_ICE_IceConnectionNumber=yes else @@ -5225,7 +5226,7 @@ fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:5228: result: $ac_cv_lib_ICE_IceConnectionNumber" >&5 +echo "$as_me:5229: 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" @@ -5237,6 +5238,90 @@ fi fi +echo "$as_me:5241: checking if you want to use C11 _Noreturn feature" >&5 +echo $ECHO_N "checking if you want to use C11 _Noreturn feature... $ECHO_C" >&6 + +# Check whether --enable-stdnoreturn or --disable-stdnoreturn was given. +if test "${enable_stdnoreturn+set}" = set; then + enableval="$enable_stdnoreturn" + test "$enableval" != yes && enableval=no + if test "$enableval" != "no" ; then + enable_stdnoreturn=yes + else + enable_stdnoreturn=no + fi +else + enableval=no + enable_stdnoreturn=no + +fi; +echo "$as_me:5258: result: $enable_stdnoreturn" >&5 +echo "${ECHO_T}$enable_stdnoreturn" >&6 + +if test $enable_stdnoreturn = yes; then +echo "$as_me:5262: checking for C11 _Noreturn feature" >&5 +echo $ECHO_N "checking for C11 _Noreturn feature... $ECHO_C" >&6 +if test "${cf_cv_c11_noreturn+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + cat >"conftest.$ac_ext" <<_ACEOF +#line 5268 "configure" +#include "confdefs.h" + +#include <stdio.h> +#include <stdlib.h> +#include <stdnoreturn.h> +static void giveup(void) { exit(0); } + +int +main (void) +{ +if (feof(stdin)) giveup() + ; + return 0; +} +_ACEOF +rm -f "conftest.$ac_objext" +if { (eval echo "$as_me:5285: \"$ac_compile\"") >&5 + (eval $ac_compile) 2>&5 + ac_status=$? + echo "$as_me:5288: \$? = $ac_status" >&5 + (exit "$ac_status"); } && + { ac_try='test -s "conftest.$ac_objext"' + { (eval echo "$as_me:5291: \"$ac_try\"") >&5 + (eval $ac_try) 2>&5 + ac_status=$? + echo "$as_me:5294: \$? = $ac_status" >&5 + (exit "$ac_status"); }; }; then + cf_cv_c11_noreturn=yes +else + echo "$as_me: failed program was:" >&5 +cat "conftest.$ac_ext" >&5 +cf_cv_c11_noreturn=no +fi +rm -f "conftest.$ac_objext" "conftest.$ac_ext" + +fi +echo "$as_me:5305: result: $cf_cv_c11_noreturn" >&5 +echo "${ECHO_T}$cf_cv_c11_noreturn" >&6 +else + cf_cv_c11_noreturn=no, +fi + +if test "$cf_cv_c11_noreturn" = yes; then + cat >>confdefs.h <<\EOF +#define HAVE_STDNORETURN_H 1 +EOF + +cat >>confdefs.h <<EOF +#define STDC_NORETURN _Noreturn +EOF + + HAVE_STDNORETURN_H=1 +else + HAVE_STDNORETURN_H=0 +fi + if test "$GCC" = yes || test "$GXX" = yes then @@ -5246,7 +5331,7 @@ then (*-Werror=*) test -n "$verbose" && echo " repairing CFLAGS: $CFLAGS" 1>&6 -echo "${as_me:-configure}:5249: testing repairing CFLAGS: $CFLAGS ..." 1>&5 +echo "${as_me:-configure}:5334: testing repairing CFLAGS: $CFLAGS ..." 1>&5 cf_temp_flags= for cf_temp_scan in $CFLAGS @@ -5269,11 +5354,11 @@ echo "${as_me:-configure}:5249: testing repairing CFLAGS: $CFLAGS ..." 1>&5 CFLAGS="$cf_temp_flags" test -n "$verbose" && echo " ... fixed $CFLAGS" 1>&6 -echo "${as_me:-configure}:5272: testing ... fixed $CFLAGS ..." 1>&5 +echo "${as_me:-configure}:5357: testing ... fixed $CFLAGS ..." 1>&5 test -n "$verbose" && echo " ... extra $EXTRA_CFLAGS" 1>&6 -echo "${as_me:-configure}:5276: testing ... extra $EXTRA_CFLAGS ..." 1>&5 +echo "${as_me:-configure}:5361: testing ... extra $EXTRA_CFLAGS ..." 1>&5 ;; esac @@ -5285,7 +5370,7 @@ then (*-Werror=*) test -n "$verbose" && echo " repairing CPPFLAGS: $CPPFLAGS" 1>&6 -echo "${as_me:-configure}:5288: testing repairing CPPFLAGS: $CPPFLAGS ..." 1>&5 +echo "${as_me:-configure}:5373: testing repairing CPPFLAGS: $CPPFLAGS ..." 1>&5 cf_temp_flags= for cf_temp_scan in $CPPFLAGS @@ -5308,11 +5393,11 @@ echo "${as_me:-configure}:5288: testing repairing CPPFLAGS: $CPPFLAGS ..." 1>&5 CPPFLAGS="$cf_temp_flags" test -n "$verbose" && echo " ... fixed $CPPFLAGS" 1>&6 -echo "${as_me:-configure}:5311: testing ... fixed $CPPFLAGS ..." 1>&5 +echo "${as_me:-configure}:5396: testing ... fixed $CPPFLAGS ..." 1>&5 test -n "$verbose" && echo " ... extra $EXTRA_CFLAGS" 1>&6 -echo "${as_me:-configure}:5315: testing ... extra $EXTRA_CFLAGS ..." 1>&5 +echo "${as_me:-configure}:5400: testing ... extra $EXTRA_CFLAGS ..." 1>&5 ;; esac @@ -5324,7 +5409,7 @@ then (*-Werror=*) test -n "$verbose" && echo " repairing LDFLAGS: $LDFLAGS" 1>&6 -echo "${as_me:-configure}:5327: testing repairing LDFLAGS: $LDFLAGS ..." 1>&5 +echo "${as_me:-configure}:5412: testing repairing LDFLAGS: $LDFLAGS ..." 1>&5 cf_temp_flags= for cf_temp_scan in $LDFLAGS @@ -5347,17 +5432,17 @@ echo "${as_me:-configure}:5327: testing repairing LDFLAGS: $LDFLAGS ..." 1>&5 LDFLAGS="$cf_temp_flags" test -n "$verbose" && echo " ... fixed $LDFLAGS" 1>&6 -echo "${as_me:-configure}:5350: testing ... fixed $LDFLAGS ..." 1>&5 +echo "${as_me:-configure}:5435: testing ... fixed $LDFLAGS ..." 1>&5 test -n "$verbose" && echo " ... extra $EXTRA_CFLAGS" 1>&6 -echo "${as_me:-configure}:5354: testing ... extra $EXTRA_CFLAGS ..." 1>&5 +echo "${as_me:-configure}:5439: testing ... extra $EXTRA_CFLAGS ..." 1>&5 ;; esac fi -echo "$as_me:5360: checking if you want to turn on gcc warnings" >&5 +echo "$as_me:5445: 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. @@ -5374,7 +5459,7 @@ else enable_warnings=no fi; -echo "$as_me:5377: result: $enable_warnings" >&5 +echo "$as_me:5462: result: $enable_warnings" >&5 echo "${ECHO_T}$enable_warnings" >&6 if test "$enable_warnings" = "yes" then @@ -5397,10 +5482,10 @@ cat > conftest.i <<EOF EOF if test "$GCC" = yes then - { echo "$as_me:5400: checking for $CC __attribute__ directives..." >&5 + { echo "$as_me:5485: checking for $CC __attribute__ directives..." >&5 echo "$as_me: checking for $CC __attribute__ directives..." >&6;} cat > "conftest.$ac_ext" <<EOF -#line 5403 "${as_me:-configure}" +#line 5488 "${as_me:-configure}" #include "confdefs.h" #include "conftest.h" #include "conftest.i" @@ -5415,8 +5500,8 @@ cat > "conftest.$ac_ext" <<EOF #define GCC_SCANFLIKE(fmt,var) /*nothing*/ #endif extern void wow(char *,...) GCC_SCANFLIKE(1,2); -extern void oops(char *,...) GCC_PRINTFLIKE(1,2) GCC_NORETURN; -extern void foo(void) GCC_NORETURN; +extern GCC_NORETURN void oops(char *,...) GCC_PRINTFLIKE(1,2); +extern GCC_NORETURN void foo(void); int main(int argc GCC_UNUSED, char *argv[] GCC_UNUSED) { (void)argc; (void)argv; return 0; } EOF cf_printf_attribute=no @@ -5449,12 +5534,12 @@ EOF ;; esac - if { (eval echo "$as_me:5452: \"$ac_compile\"") >&5 + if { (eval echo "$as_me:5537: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:5455: \$? = $ac_status" >&5 + echo "$as_me:5540: \$? = $ac_status" >&5 (exit "$ac_status"); }; then - test -n "$verbose" && echo "$as_me:5457: result: ... $cf_attribute" >&5 + test -n "$verbose" && echo "$as_me:5542: result: ... $cf_attribute" >&5 echo "${ECHO_T}... $cf_attribute" >&6 cat conftest.h >>confdefs.h case "$cf_attribute" in @@ -5532,7 +5617,7 @@ do done cat >"conftest.$ac_ext" <<_ACEOF -#line 5535 "configure" +#line 5620 "configure" #include "confdefs.h" #include <stdlib.h> @@ -5547,26 +5632,26 @@ String foo = malloc(1); (void)foo } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:5550: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:5635: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:5553: \$? = $ac_status" >&5 + echo "$as_me:5638: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:5556: \"$ac_try\"") >&5 + { (eval echo "$as_me:5641: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:5559: \$? = $ac_status" >&5 + echo "$as_me:5644: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then -echo "$as_me:5562: checking for X11/Xt const-feature" >&5 +echo "$as_me:5647: checking for X11/Xt const-feature" >&5 echo $ECHO_N "checking for X11/Xt const-feature... $ECHO_C" >&6 if test "${cf_cv_const_x_string+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >"conftest.$ac_ext" <<_ACEOF -#line 5569 "configure" +#line 5654 "configure" #include "confdefs.h" #define _CONST_X_STRING /* X11R7.8 (perhaps) */ @@ -5583,16 +5668,16 @@ String foo = malloc(1); *foo = 0 } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:5586: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:5671: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:5589: \$? = $ac_status" >&5 + echo "$as_me:5674: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:5592: \"$ac_try\"") >&5 + { (eval echo "$as_me:5677: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:5595: \$? = $ac_status" >&5 + echo "$as_me:5680: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_const_x_string=no @@ -5607,7 +5692,7 @@ fi rm -f "conftest.$ac_objext" "conftest.$ac_ext" fi -echo "$as_me:5610: result: $cf_cv_const_x_string" >&5 +echo "$as_me:5695: result: $cf_cv_const_x_string" >&5 echo "${ECHO_T}$cf_cv_const_x_string" >&6 LIBS="$cf_save_LIBS_CF_CONST_X_STRING" @@ -5636,7 +5721,7 @@ fi rm -f "conftest.$ac_objext" "conftest.$ac_ext" fi cat > "conftest.$ac_ext" <<EOF -#line 5639 "${as_me:-configure}" +#line 5724 "${as_me:-configure}" int main(int argc, char *argv[]) { return (argv[argc-1] == 0) ; } EOF if test "$INTEL_COMPILER" = yes @@ -5652,7 +5737,7 @@ then # remark #981: operands are evaluated in unspecified order # warning #279: controlling expression is constant - { echo "$as_me:5655: checking for $CC warning options..." >&5 + { echo "$as_me:5740: checking for $CC warning options..." >&5 echo "$as_me: checking for $CC warning options..." >&6;} cf_save_CFLAGS="$CFLAGS" EXTRA_CFLAGS="$EXTRA_CFLAGS -Wall" @@ -5668,12 +5753,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:5671: \"$ac_compile\"") >&5 + if { (eval echo "$as_me:5756: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:5674: \$? = $ac_status" >&5 + echo "$as_me:5759: \$? = $ac_status" >&5 (exit "$ac_status"); }; then - test -n "$verbose" && echo "$as_me:5676: result: ... -$cf_opt" >&5 + test -n "$verbose" && echo "$as_me:5761: result: ... -$cf_opt" >&5 echo "${ECHO_T}... -$cf_opt" >&6 EXTRA_CFLAGS="$EXTRA_CFLAGS -$cf_opt" fi @@ -5681,7 +5766,7 @@ echo "${ECHO_T}... -$cf_opt" >&6 CFLAGS="$cf_save_CFLAGS" elif test "$GCC" = yes && test "$GCC_VERSION" != "unknown" then - { echo "$as_me:5684: checking for $CC warning options..." >&5 + { echo "$as_me:5769: checking for $CC warning options..." >&5 echo "$as_me: checking for $CC warning options..." >&6;} cf_save_CFLAGS="$CFLAGS" cf_warn_CONST="" @@ -5704,12 +5789,12 @@ echo "$as_me: checking for $CC warning options..." >&6;} Wundef Wno-inline $cf_gcc_warnings $cf_warn_CONST do CFLAGS="$cf_save_CFLAGS $EXTRA_CFLAGS -$cf_opt" - if { (eval echo "$as_me:5707: \"$ac_compile\"") >&5 + if { (eval echo "$as_me:5792: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:5710: \$? = $ac_status" >&5 + echo "$as_me:5795: \$? = $ac_status" >&5 (exit "$ac_status"); }; then - test -n "$verbose" && echo "$as_me:5712: result: ... -$cf_opt" >&5 + test -n "$verbose" && echo "$as_me:5797: result: ... -$cf_opt" >&5 echo "${ECHO_T}... -$cf_opt" >&6 case "$cf_opt" in (Winline) @@ -5717,7 +5802,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}:5720: testing feature is broken in gcc $GCC_VERSION ..." 1>&5 +echo "${as_me:-configure}:5805: testing feature is broken in gcc $GCC_VERSION ..." 1>&5 continue;; esac @@ -5727,7 +5812,7 @@ echo "${as_me:-configure}:5720: testing feature is broken in gcc $GCC_VERSION .. ([12].*) test -n "$verbose" && echo " feature is broken in gcc $GCC_VERSION" 1>&6 -echo "${as_me:-configure}:5730: testing feature is broken in gcc $GCC_VERSION ..." 1>&5 +echo "${as_me:-configure}:5815: testing feature is broken in gcc $GCC_VERSION ..." 1>&5 continue;; esac @@ -5744,7 +5829,7 @@ fi fi -echo "$as_me:5747: checking if you want to use dbmalloc for testing" >&5 +echo "$as_me:5832: 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. @@ -5761,7 +5846,7 @@ EOF else with_dbmalloc= fi; -echo "$as_me:5764: result: ${with_dbmalloc:-no}" >&5 +echo "$as_me:5849: result: ${with_dbmalloc:-no}" >&5 echo "${ECHO_T}${with_dbmalloc:-no}" >&6 case ".$with_cflags" in @@ -5875,23 +5960,23 @@ fi esac if test "$with_dbmalloc" = yes ; then - echo "$as_me:5878: checking for dbmalloc.h" >&5 + echo "$as_me:5963: 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 5884 "configure" +#line 5969 "configure" #include "confdefs.h" #include <dbmalloc.h> _ACEOF -if { (eval echo "$as_me:5888: \"$ac_cpp "conftest.$ac_ext"\"") >&5 +if { (eval echo "$as_me:5973: \"$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:5894: \$? = $ac_status" >&5 + echo "$as_me:5979: \$? = $ac_status" >&5 (exit "$ac_status"); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -5910,11 +5995,11 @@ else fi rm -f conftest.err "conftest.$ac_ext" fi -echo "$as_me:5913: result: $ac_cv_header_dbmalloc_h" >&5 +echo "$as_me:5998: 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:5917: checking for debug_malloc in -ldbmalloc" >&5 +echo "$as_me:6002: 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 @@ -5922,7 +6007,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-ldbmalloc $LIBS" cat >"conftest.$ac_ext" <<_ACEOF -#line 5925 "configure" +#line 6010 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -5941,16 +6026,16 @@ debug_malloc (); } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:5944: \"$ac_link\"") >&5 +if { (eval echo "$as_me:6029: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:5947: \$? = $ac_status" >&5 + echo "$as_me:6032: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:5950: \"$ac_try\"") >&5 + { (eval echo "$as_me:6035: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:5953: \$? = $ac_status" >&5 + echo "$as_me:6038: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_lib_dbmalloc_debug_malloc=yes else @@ -5961,7 +6046,7 @@ fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:5964: result: $ac_cv_lib_dbmalloc_debug_malloc" >&5 +echo "$as_me:6049: 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 @@ -5976,7 +6061,7 @@ fi fi -echo "$as_me:5979: checking if you want to use dmalloc for testing" >&5 +echo "$as_me:6064: 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. @@ -5993,7 +6078,7 @@ EOF else with_dmalloc= fi; -echo "$as_me:5996: result: ${with_dmalloc:-no}" >&5 +echo "$as_me:6081: result: ${with_dmalloc:-no}" >&5 echo "${ECHO_T}${with_dmalloc:-no}" >&6 case ".$with_cflags" in @@ -6107,23 +6192,23 @@ fi esac if test "$with_dmalloc" = yes ; then - echo "$as_me:6110: checking for dmalloc.h" >&5 + echo "$as_me:6195: 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 6116 "configure" +#line 6201 "configure" #include "confdefs.h" #include <dmalloc.h> _ACEOF -if { (eval echo "$as_me:6120: \"$ac_cpp "conftest.$ac_ext"\"") >&5 +if { (eval echo "$as_me:6205: \"$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:6126: \$? = $ac_status" >&5 + echo "$as_me:6211: \$? = $ac_status" >&5 (exit "$ac_status"); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -6142,11 +6227,11 @@ else fi rm -f conftest.err "conftest.$ac_ext" fi -echo "$as_me:6145: result: $ac_cv_header_dmalloc_h" >&5 +echo "$as_me:6230: 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:6149: checking for dmalloc_debug in -ldmalloc" >&5 +echo "$as_me:6234: 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 @@ -6154,7 +6239,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-ldmalloc $LIBS" cat >"conftest.$ac_ext" <<_ACEOF -#line 6157 "configure" +#line 6242 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -6173,16 +6258,16 @@ dmalloc_debug (); } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:6176: \"$ac_link\"") >&5 +if { (eval echo "$as_me:6261: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:6179: \$? = $ac_status" >&5 + echo "$as_me:6264: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:6182: \"$ac_try\"") >&5 + { (eval echo "$as_me:6267: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:6185: \$? = $ac_status" >&5 + echo "$as_me:6270: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_lib_dmalloc_dmalloc_debug=yes else @@ -6193,7 +6278,7 @@ fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:6196: result: $ac_cv_lib_dmalloc_dmalloc_debug" >&5 +echo "$as_me:6281: 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 @@ -6233,7 +6318,7 @@ case "$host_os" in # contributed by Alex Matulich (matuli_a@marlin.navsea.navy.mil) also # references -lmalloc and -lbsd. -echo "$as_me:6236: checking for strcmp in -lc_s" >&5 +echo "$as_me:6321: 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 @@ -6241,7 +6326,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lc_s $LIBS" cat >"conftest.$ac_ext" <<_ACEOF -#line 6244 "configure" +#line 6329 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -6260,16 +6345,16 @@ strcmp (); } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:6263: \"$ac_link\"") >&5 +if { (eval echo "$as_me:6348: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:6266: \$? = $ac_status" >&5 + echo "$as_me:6351: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:6269: \"$ac_try\"") >&5 + { (eval echo "$as_me:6354: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:6272: \$? = $ac_status" >&5 + echo "$as_me:6357: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_lib_c_s_strcmp=yes else @@ -6280,7 +6365,7 @@ fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:6283: result: $ac_cv_lib_c_s_strcmp" >&5 +echo "$as_me:6368: 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 @@ -6460,14 +6545,14 @@ fi # SCO's cc (which is reported to have broken const/volatile). case "$CC" in (cc|*/cc) - { echo "$as_me:6463: WARNING: You should consider using gcc or rcc if available" >&5 + { echo "$as_me:6548: 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:6470: checking for $ac_word" >&5 +echo "$as_me:6555: 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 @@ -6482,7 +6567,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:6485: found $ac_dir/$ac_word" >&5 +echo "$as_me:6570: found $ac_dir/$ac_word" >&5 break done @@ -6490,10 +6575,10 @@ fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then - echo "$as_me:6493: result: $CC" >&5 + echo "$as_me:6578: result: $CC" >&5 echo "${ECHO_T}$CC" >&6 else - echo "$as_me:6496: result: no" >&5 + echo "$as_me:6581: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -6516,23 +6601,23 @@ test -n "$CC" || CC="$CC" for ac_header in jcurses.h do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` -echo "$as_me:6519: checking for $ac_header" >&5 +echo "$as_me:6604: 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 6525 "configure" +#line 6610 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:6529: \"$ac_cpp "conftest.$ac_ext"\"") >&5 +if { (eval echo "$as_me:6614: \"$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:6535: \$? = $ac_status" >&5 + echo "$as_me:6620: \$? = $ac_status" >&5 (exit "$ac_status"); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -6551,7 +6636,7 @@ else fi rm -f conftest.err "conftest.$ac_ext" fi -echo "$as_me:6554: result: `eval echo '${'"$as_ac_Header"'}'`" >&5 +echo "$as_me:6639: 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 @@ -6579,23 +6664,23 @@ done for ac_header in cursesX.h do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` -echo "$as_me:6582: checking for $ac_header" >&5 +echo "$as_me:6667: 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 6588 "configure" +#line 6673 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:6592: \"$ac_cpp "conftest.$ac_ext"\"") >&5 +if { (eval echo "$as_me:6677: \"$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:6598: \$? = $ac_status" >&5 + echo "$as_me:6683: \$? = $ac_status" >&5 (exit "$ac_status"); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -6614,7 +6699,7 @@ else fi rm -f conftest.err "conftest.$ac_ext" fi -echo "$as_me:6617: result: `eval echo '${'"$as_ac_Header"'}'`" >&5 +echo "$as_me:6702: 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 @@ -6641,13 +6726,13 @@ esac # This should have been defined by AC_PROG_CC : "${CC:=cc}" -echo "$as_me:6644: checking \$CFLAGS variable" >&5 +echo "$as_me:6729: checking \$CFLAGS variable" >&5 echo $ECHO_N "checking \$CFLAGS variable... $ECHO_C" >&6 case "x$CFLAGS" in (*-[IUD]*) - echo "$as_me:6648: result: broken" >&5 + echo "$as_me:6733: result: broken" >&5 echo "${ECHO_T}broken" >&6 - { echo "$as_me:6650: WARNING: your environment uses the CFLAGS variable to hold CPPFLAGS options" >&5 + { echo "$as_me:6735: WARNING: your environment uses the CFLAGS variable to hold CPPFLAGS options" >&5 echo "$as_me: WARNING: your environment uses the CFLAGS variable to hold CPPFLAGS options" >&2;} cf_flags="$CFLAGS" CFLAGS= @@ -6755,18 +6840,18 @@ fi done ;; (*) - echo "$as_me:6758: result: ok" >&5 + echo "$as_me:6843: result: ok" >&5 echo "${ECHO_T}ok" >&6 ;; esac -echo "$as_me:6763: checking \$CC variable" >&5 +echo "$as_me:6848: checking \$CC variable" >&5 echo $ECHO_N "checking \$CC variable... $ECHO_C" >&6 case "$CC" in (*[\ \ ]-*) - echo "$as_me:6767: result: broken" >&5 + echo "$as_me:6852: result: broken" >&5 echo "${ECHO_T}broken" >&6 - { echo "$as_me:6769: WARNING: your environment uses the CC variable to hold CFLAGS/CPPFLAGS options" >&5 + { echo "$as_me:6854: WARNING: your environment uses the CC variable to hold CFLAGS/CPPFLAGS options" >&5 echo "$as_me: WARNING: your environment uses the CC variable to hold CFLAGS/CPPFLAGS options" >&2;} # humor him... cf_prog=`echo "$CC" | sed -e 's/ / /g' -e 's/[ ]* / /g' -e 's/[ ]*[ ]-[^ ].*//'` @@ -6883,24 +6968,24 @@ fi done test -n "$verbose" && echo " resulting CC: '$CC'" 1>&6 -echo "${as_me:-configure}:6886: testing resulting CC: '$CC' ..." 1>&5 +echo "${as_me:-configure}:6971: testing resulting CC: '$CC' ..." 1>&5 test -n "$verbose" && echo " resulting CFLAGS: '$CFLAGS'" 1>&6 -echo "${as_me:-configure}:6890: testing resulting CFLAGS: '$CFLAGS' ..." 1>&5 +echo "${as_me:-configure}:6975: testing resulting CFLAGS: '$CFLAGS' ..." 1>&5 test -n "$verbose" && echo " resulting CPPFLAGS: '$CPPFLAGS'" 1>&6 -echo "${as_me:-configure}:6894: testing resulting CPPFLAGS: '$CPPFLAGS' ..." 1>&5 +echo "${as_me:-configure}:6979: testing resulting CPPFLAGS: '$CPPFLAGS' ..." 1>&5 ;; (*) - echo "$as_me:6898: result: ok" >&5 + echo "$as_me:6983: result: ok" >&5 echo "${ECHO_T}ok" >&6 ;; esac -echo "$as_me:6903: checking for ${CC:-cc} option to accept ANSI C" >&5 +echo "$as_me:6988: 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 @@ -7024,7 +7109,7 @@ if test -n "$cf_new_extra_cppflags" ; then fi cat >"conftest.$ac_ext" <<_ACEOF -#line 7027 "configure" +#line 7112 "configure" #include "confdefs.h" #ifndef CC_HAS_PROTOS @@ -7045,16 +7130,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:7048: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:7133: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:7051: \$? = $ac_status" >&5 + echo "$as_me:7136: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:7054: \"$ac_try\"") >&5 + { (eval echo "$as_me:7139: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:7057: \$? = $ac_status" >&5 + echo "$as_me:7142: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_ansi_cc="$cf_arg"; break else @@ -7067,7 +7152,7 @@ CFLAGS="$cf_save_CFLAGS" CPPFLAGS="$cf_save_CPPFLAGS" fi -echo "$as_me:7070: result: $cf_cv_ansi_cc" >&5 +echo "$as_me:7155: result: $cf_cv_ansi_cc" >&5 echo "${ECHO_T}$cf_cv_ansi_cc" >&6 if test "$cf_cv_ansi_cc" != "no"; then @@ -7181,7 +7266,7 @@ fi fi if test "$cf_cv_ansi_cc" = "no"; then - { { echo "$as_me:7184: error: Your compiler does not appear to recognize prototypes. + { { echo "$as_me:7269: 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 @@ -7201,7 +7286,7 @@ if test "${enable_largefile+set}" = set; then fi; if test "$enable_largefile" != no; then - echo "$as_me:7204: checking for special C compiler options needed for large files" >&5 + echo "$as_me:7289: 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 @@ -7213,7 +7298,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 7216 "configure" +#line 7301 "configure" #include "confdefs.h" #include <sys/types.h> /* Check that off_t can represent 2**63 - 1 correctly. @@ -7233,16 +7318,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:7236: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:7321: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:7239: \$? = $ac_status" >&5 + echo "$as_me:7324: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:7242: \"$ac_try\"") >&5 + { (eval echo "$as_me:7327: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:7245: \$? = $ac_status" >&5 + echo "$as_me:7330: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then break else @@ -7252,16 +7337,16 @@ fi rm -f "conftest.$ac_objext" CC="$CC -n32" rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:7255: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:7340: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:7258: \$? = $ac_status" >&5 + echo "$as_me:7343: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:7261: \"$ac_try\"") >&5 + { (eval echo "$as_me:7346: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:7264: \$? = $ac_status" >&5 + echo "$as_me:7349: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_sys_largefile_CC=' -n32'; break else @@ -7275,13 +7360,13 @@ rm -f "conftest.$ac_objext" rm -f "conftest.$ac_ext" fi fi -echo "$as_me:7278: result: $ac_cv_sys_largefile_CC" >&5 +echo "$as_me:7363: 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:7284: checking for _FILE_OFFSET_BITS value needed for large files" >&5 + echo "$as_me:7369: 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 @@ -7289,7 +7374,7 @@ else while :; do ac_cv_sys_file_offset_bits=no cat >"conftest.$ac_ext" <<_ACEOF -#line 7292 "configure" +#line 7377 "configure" #include "confdefs.h" #include <sys/types.h> /* Check that off_t can represent 2**63 - 1 correctly. @@ -7309,16 +7394,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:7312: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:7397: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:7315: \$? = $ac_status" >&5 + echo "$as_me:7400: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:7318: \"$ac_try\"") >&5 + { (eval echo "$as_me:7403: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:7321: \$? = $ac_status" >&5 + echo "$as_me:7406: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then break else @@ -7327,7 +7412,7 @@ cat "conftest.$ac_ext" >&5 fi rm -f "conftest.$ac_objext" "conftest.$ac_ext" cat >"conftest.$ac_ext" <<_ACEOF -#line 7330 "configure" +#line 7415 "configure" #include "confdefs.h" #define _FILE_OFFSET_BITS 64 #include <sys/types.h> @@ -7348,16 +7433,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:7351: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:7436: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:7354: \$? = $ac_status" >&5 + echo "$as_me:7439: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:7357: \"$ac_try\"") >&5 + { (eval echo "$as_me:7442: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:7360: \$? = $ac_status" >&5 + echo "$as_me:7445: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_sys_file_offset_bits=64; break else @@ -7368,7 +7453,7 @@ rm -f "conftest.$ac_objext" "conftest.$ac_ext" break done fi -echo "$as_me:7371: result: $ac_cv_sys_file_offset_bits" >&5 +echo "$as_me:7456: 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 @@ -7378,7 +7463,7 @@ EOF fi rm -rf conftest* - echo "$as_me:7381: checking for _LARGE_FILES value needed for large files" >&5 + echo "$as_me:7466: 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 @@ -7386,7 +7471,7 @@ else while :; do ac_cv_sys_large_files=no cat >"conftest.$ac_ext" <<_ACEOF -#line 7389 "configure" +#line 7474 "configure" #include "confdefs.h" #include <sys/types.h> /* Check that off_t can represent 2**63 - 1 correctly. @@ -7406,16 +7491,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:7409: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:7494: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:7412: \$? = $ac_status" >&5 + echo "$as_me:7497: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:7415: \"$ac_try\"") >&5 + { (eval echo "$as_me:7500: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:7418: \$? = $ac_status" >&5 + echo "$as_me:7503: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then break else @@ -7424,7 +7509,7 @@ cat "conftest.$ac_ext" >&5 fi rm -f "conftest.$ac_objext" "conftest.$ac_ext" cat >"conftest.$ac_ext" <<_ACEOF -#line 7427 "configure" +#line 7512 "configure" #include "confdefs.h" #define _LARGE_FILES 1 #include <sys/types.h> @@ -7445,16 +7530,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:7448: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:7533: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:7451: \$? = $ac_status" >&5 + echo "$as_me:7536: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:7454: \"$ac_try\"") >&5 + { (eval echo "$as_me:7539: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:7457: \$? = $ac_status" >&5 + echo "$as_me:7542: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_sys_large_files=1; break else @@ -7465,7 +7550,7 @@ rm -f "conftest.$ac_objext" "conftest.$ac_ext" break done fi -echo "$as_me:7468: result: $ac_cv_sys_large_files" >&5 +echo "$as_me:7553: 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 @@ -7478,7 +7563,7 @@ rm -rf conftest* fi if test "$enable_largefile" != no ; then - echo "$as_me:7481: checking for _LARGEFILE_SOURCE value needed for large files" >&5 + echo "$as_me:7566: 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 @@ -7486,7 +7571,7 @@ else while :; do ac_cv_sys_largefile_source=no cat >"conftest.$ac_ext" <<_ACEOF -#line 7489 "configure" +#line 7574 "configure" #include "confdefs.h" #include <stdio.h> int @@ -7498,16 +7583,16 @@ return !fseeko; } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:7501: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:7586: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:7504: \$? = $ac_status" >&5 + echo "$as_me:7589: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:7507: \"$ac_try\"") >&5 + { (eval echo "$as_me:7592: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:7510: \$? = $ac_status" >&5 + echo "$as_me:7595: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then break else @@ -7516,7 +7601,7 @@ cat "conftest.$ac_ext" >&5 fi rm -f "conftest.$ac_objext" "conftest.$ac_ext" cat >"conftest.$ac_ext" <<_ACEOF -#line 7519 "configure" +#line 7604 "configure" #include "confdefs.h" #define _LARGEFILE_SOURCE 1 #include <stdio.h> @@ -7529,16 +7614,16 @@ return !fseeko; } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:7532: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:7617: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:7535: \$? = $ac_status" >&5 + echo "$as_me:7620: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:7538: \"$ac_try\"") >&5 + { (eval echo "$as_me:7623: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:7541: \$? = $ac_status" >&5 + echo "$as_me:7626: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_sys_largefile_source=1; break else @@ -7549,7 +7634,7 @@ rm -f "conftest.$ac_objext" "conftest.$ac_ext" break done fi -echo "$as_me:7552: result: $ac_cv_sys_largefile_source" >&5 +echo "$as_me:7637: 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 @@ -7563,13 +7648,13 @@ rm -rf 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:7566: checking for fseeko" >&5 +echo "$as_me:7651: 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 7572 "configure" +#line 7657 "configure" #include "confdefs.h" #include <stdio.h> int @@ -7581,16 +7666,16 @@ return fseeko && fseeko (stdin, 0, 0); } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:7584: \"$ac_link\"") >&5 +if { (eval echo "$as_me:7669: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:7587: \$? = $ac_status" >&5 + echo "$as_me:7672: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:7590: \"$ac_try\"") >&5 + { (eval echo "$as_me:7675: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:7593: \$? = $ac_status" >&5 + echo "$as_me:7678: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_func_fseeko=yes else @@ -7600,7 +7685,7 @@ ac_cv_func_fseeko=no fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:7603: result: $ac_cv_func_fseeko" >&5 +echo "$as_me:7688: result: $ac_cv_func_fseeko" >&5 echo "${ECHO_T}$ac_cv_func_fseeko" >&6 if test $ac_cv_func_fseeko = yes; then @@ -7639,14 +7724,14 @@ fi fi - echo "$as_me:7642: checking whether to use struct dirent64" >&5 + echo "$as_me:7727: 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 7649 "configure" +#line 7734 "configure" #include "confdefs.h" #pragma GCC diagnostic error "-Wincompatible-pointer-types" @@ -7669,16 +7754,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:7672: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:7757: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:7675: \$? = $ac_status" >&5 + echo "$as_me:7760: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:7678: \"$ac_try\"") >&5 + { (eval echo "$as_me:7763: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:7681: \$? = $ac_status" >&5 + echo "$as_me:7766: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_struct_dirent64=yes else @@ -7689,7 +7774,7 @@ fi rm -f "conftest.$ac_objext" "conftest.$ac_ext" fi -echo "$as_me:7692: result: $cf_cv_struct_dirent64" >&5 +echo "$as_me:7777: result: $cf_cv_struct_dirent64" >&5 echo "${ECHO_T}$cf_cv_struct_dirent64" >&6 test "$cf_cv_struct_dirent64" = yes && cat >>confdefs.h <<\EOF @@ -7701,20 +7786,20 @@ EOF if test -z "$ALL_LINGUAS" ; then ALL_LINGUAS=`test -d "$srcdir/po" && cd "$srcdir/po" && echo *.po|sed -e 's/\.po//g' -e 's/*//'` - echo "$as_me:7704: checking for PATH separator" >&5 + echo "$as_me:7789: checking for PATH separator" >&5 echo $ECHO_N "checking for PATH separator... $ECHO_C" >&6 case "$cf_cv_system_name" in (os2*) PATH_SEPARATOR=';' ;; (*) ${PATH_SEPARATOR:=':'} ;; esac - echo "$as_me:7711: result: $PATH_SEPARATOR" >&5 + echo "$as_me:7796: result: $PATH_SEPARATOR" >&5 echo "${ECHO_T}$PATH_SEPARATOR" >&6 # Extract the first word of "msginit", so it can be a program name with args. set dummy msginit; ac_word=$2 -echo "$as_me:7717: checking for $ac_word" >&5 +echo "$as_me:7802: 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 @@ -7741,17 +7826,17 @@ esac fi MSGINIT="$ac_cv_path_MSGINIT" if test "$MSGINIT" != ":"; then - echo "$as_me:7744: result: $MSGINIT" >&5 + echo "$as_me:7829: result: $MSGINIT" >&5 echo "${ECHO_T}$MSGINIT" >&6 else - echo "$as_me:7747: result: no" >&5 + echo "$as_me:7832: 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}:7754: testing adding en.po ..." 1>&5 +echo "${as_me:-configure}:7839: testing adding en.po ..." 1>&5 ALL_LINGUAS="$ALL_LINGUAS en" fi @@ -7760,7 +7845,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:7763: checking for $ac_word" >&5 +echo "$as_me:7848: 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 @@ -7775,7 +7860,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:7778: found $ac_dir/$ac_word" >&5 +echo "$as_me:7863: found $ac_dir/$ac_word" >&5 break done @@ -7783,10 +7868,10 @@ fi fi RANLIB=$ac_cv_prog_RANLIB if test -n "$RANLIB"; then - echo "$as_me:7786: result: $RANLIB" >&5 + echo "$as_me:7871: result: $RANLIB" >&5 echo "${ECHO_T}$RANLIB" >&6 else - echo "$as_me:7789: result: no" >&5 + echo "$as_me:7874: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -7795,7 +7880,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:7798: checking for $ac_word" >&5 +echo "$as_me:7883: 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 @@ -7810,7 +7895,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:7813: found $ac_dir/$ac_word" >&5 +echo "$as_me:7898: found $ac_dir/$ac_word" >&5 break done @@ -7819,10 +7904,10 @@ fi fi ac_ct_RANLIB=$ac_cv_prog_ac_ct_RANLIB if test -n "$ac_ct_RANLIB"; then - echo "$as_me:7822: result: $ac_ct_RANLIB" >&5 + echo "$as_me:7907: result: $ac_ct_RANLIB" >&5 echo "${ECHO_T}$ac_ct_RANLIB" >&6 else - echo "$as_me:7825: result: no" >&5 + echo "$as_me:7910: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -7831,13 +7916,13 @@ else RANLIB="$ac_cv_prog_RANLIB" fi -echo "$as_me:7834: checking for ANSI C header files" >&5 +echo "$as_me:7919: 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 7840 "configure" +#line 7925 "configure" #include "confdefs.h" #include <stdlib.h> #include <stdarg.h> @@ -7845,13 +7930,13 @@ else #include <float.h> _ACEOF -if { (eval echo "$as_me:7848: \"$ac_cpp "conftest.$ac_ext"\"") >&5 +if { (eval echo "$as_me:7933: \"$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:7854: \$? = $ac_status" >&5 + echo "$as_me:7939: \$? = $ac_status" >&5 (exit "$ac_status"); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -7873,7 +7958,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 7876 "configure" +#line 7961 "configure" #include "confdefs.h" #include <string.h> @@ -7891,7 +7976,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 7894 "configure" +#line 7979 "configure" #include "confdefs.h" #include <stdlib.h> @@ -7912,7 +7997,7 @@ if test $ac_cv_header_stdc = yes; then : else cat >"conftest.$ac_ext" <<_ACEOF -#line 7915 "configure" +#line 8000 "configure" #include "confdefs.h" #include <ctype.h> #if ((' ' & 0x0FF) == 0x020) @@ -7938,15 +8023,15 @@ main (void) } _ACEOF rm -f "conftest$ac_exeext" -if { (eval echo "$as_me:7941: \"$ac_link\"") >&5 +if { (eval echo "$as_me:8026: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:7944: \$? = $ac_status" >&5 + echo "$as_me:8029: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='"./conftest$ac_exeext"' - { (eval echo "$as_me:7946: \"$ac_try\"") >&5 + { (eval echo "$as_me:8031: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:7949: \$? = $ac_status" >&5 + echo "$as_me:8034: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then : else @@ -7959,7 +8044,7 @@ rm -f core ./core.* ./*.core "conftest$ac_exeext" "conftest.$ac_objext" "conftes fi fi fi -echo "$as_me:7962: result: $ac_cv_header_stdc" >&5 +echo "$as_me:8047: result: $ac_cv_header_stdc" >&5 echo "${ECHO_T}$ac_cv_header_stdc" >&6 if test $ac_cv_header_stdc = yes; then @@ -7969,7 +8054,7 @@ EOF fi -echo "$as_me:7972: checking for inline" >&5 +echo "$as_me:8057: 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 @@ -7977,7 +8062,7 @@ else ac_cv_c_inline=no for ac_kw in inline __inline__ __inline; do cat >"conftest.$ac_ext" <<_ACEOF -#line 7980 "configure" +#line 8065 "configure" #include "confdefs.h" #ifndef __cplusplus static $ac_kw int static_foo () {return 0; } @@ -7986,16 +8071,16 @@ $ac_kw int foo () {return 0; } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:7989: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:8074: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:7992: \$? = $ac_status" >&5 + echo "$as_me:8077: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:7995: \"$ac_try\"") >&5 + { (eval echo "$as_me:8080: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:7998: \$? = $ac_status" >&5 + echo "$as_me:8083: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_c_inline=$ac_kw; break else @@ -8006,7 +8091,7 @@ rm -f "conftest.$ac_objext" "conftest.$ac_ext" done fi -echo "$as_me:8009: result: $ac_cv_c_inline" >&5 +echo "$as_me:8094: result: $ac_cv_c_inline" >&5 echo "${ECHO_T}$ac_cv_c_inline" >&6 case $ac_cv_c_inline in inline | yes) ;; @@ -8027,28 +8112,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:8030: checking for $ac_header" >&5 +echo "$as_me:8115: 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 8036 "configure" +#line 8121 "configure" #include "confdefs.h" $ac_includes_default #include <$ac_header> _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:8042: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:8127: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:8045: \$? = $ac_status" >&5 + echo "$as_me:8130: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:8048: \"$ac_try\"") >&5 + { (eval echo "$as_me:8133: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:8051: \$? = $ac_status" >&5 + echo "$as_me:8136: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then eval "$as_ac_Header=yes" else @@ -8058,7 +8143,7 @@ eval "$as_ac_Header=no" fi rm -f "conftest.$ac_objext" "conftest.$ac_ext" fi -echo "$as_me:8061: result: `eval echo '${'"$as_ac_Header"'}'`" >&5 +echo "$as_me:8146: 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 @@ -8068,13 +8153,13 @@ EOF fi done -echo "$as_me:8071: checking for off_t" >&5 +echo "$as_me:8156: 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 8077 "configure" +#line 8162 "configure" #include "confdefs.h" $ac_includes_default int @@ -8089,16 +8174,16 @@ if (sizeof (off_t)) } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:8092: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:8177: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:8095: \$? = $ac_status" >&5 + echo "$as_me:8180: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:8098: \"$ac_try\"") >&5 + { (eval echo "$as_me:8183: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:8101: \$? = $ac_status" >&5 + echo "$as_me:8186: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_type_off_t=yes else @@ -8108,7 +8193,7 @@ ac_cv_type_off_t=no fi rm -f "conftest.$ac_objext" "conftest.$ac_ext" fi -echo "$as_me:8111: result: $ac_cv_type_off_t" >&5 +echo "$as_me:8196: 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 : @@ -8120,13 +8205,13 @@ EOF fi -echo "$as_me:8123: checking for size_t" >&5 +echo "$as_me:8208: 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 8129 "configure" +#line 8214 "configure" #include "confdefs.h" $ac_includes_default int @@ -8141,16 +8226,16 @@ if (sizeof (size_t)) } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:8144: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:8229: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:8147: \$? = $ac_status" >&5 + echo "$as_me:8232: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:8150: \"$ac_try\"") >&5 + { (eval echo "$as_me:8235: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:8153: \$? = $ac_status" >&5 + echo "$as_me:8238: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_type_size_t=yes else @@ -8160,7 +8245,7 @@ ac_cv_type_size_t=no fi rm -f "conftest.$ac_objext" "conftest.$ac_ext" fi -echo "$as_me:8163: result: $ac_cv_type_size_t" >&5 +echo "$as_me:8248: 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 : @@ -8174,13 +8259,13 @@ fi # The Ultrix 4.2 mips builtin alloca declared by alloca.h only works # for constant arguments. Useless! -echo "$as_me:8177: checking for working alloca.h" >&5 +echo "$as_me:8262: 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 8183 "configure" +#line 8268 "configure" #include "confdefs.h" #include <alloca.h> int @@ -8192,16 +8277,16 @@ char *p = (char *) alloca (2 * sizeof (int)); } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:8195: \"$ac_link\"") >&5 +if { (eval echo "$as_me:8280: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:8198: \$? = $ac_status" >&5 + echo "$as_me:8283: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:8201: \"$ac_try\"") >&5 + { (eval echo "$as_me:8286: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:8204: \$? = $ac_status" >&5 + echo "$as_me:8289: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_working_alloca_h=yes else @@ -8211,7 +8296,7 @@ ac_cv_working_alloca_h=no fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:8214: result: $ac_cv_working_alloca_h" >&5 +echo "$as_me:8299: 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 @@ -8221,13 +8306,13 @@ EOF fi -echo "$as_me:8224: checking for alloca" >&5 +echo "$as_me:8309: 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 8230 "configure" +#line 8315 "configure" #include "confdefs.h" #ifdef __GNUC__ # define alloca __builtin_alloca @@ -8259,16 +8344,16 @@ char *p = (char *) alloca (1); } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:8262: \"$ac_link\"") >&5 +if { (eval echo "$as_me:8347: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:8265: \$? = $ac_status" >&5 + echo "$as_me:8350: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:8268: \"$ac_try\"") >&5 + { (eval echo "$as_me:8353: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:8271: \$? = $ac_status" >&5 + echo "$as_me:8356: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_func_alloca_works=yes else @@ -8278,7 +8363,7 @@ ac_cv_func_alloca_works=no fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:8281: result: $ac_cv_func_alloca_works" >&5 +echo "$as_me:8366: 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 @@ -8299,13 +8384,13 @@ cat >>confdefs.h <<\EOF #define C_ALLOCA 1 EOF -echo "$as_me:8302: checking whether \`alloca.c' needs Cray hooks" >&5 +echo "$as_me:8387: 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 8308 "configure" +#line 8393 "configure" #include "confdefs.h" #if defined(CRAY) && ! defined(CRAY2) webecray @@ -8323,18 +8408,18 @@ fi rm -rf conftest* fi -echo "$as_me:8326: result: $ac_cv_os_cray" >&5 +echo "$as_me:8411: 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:8331: checking for $ac_func" >&5 +echo "$as_me:8416: 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 8337 "configure" +#line 8422 "configure" #include "confdefs.h" #define $ac_func autoconf_temporary #include <limits.h> /* least-intrusive standard header which defines gcc2 __stub macros */ @@ -8365,16 +8450,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:8368: \"$ac_link\"") >&5 +if { (eval echo "$as_me:8453: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:8371: \$? = $ac_status" >&5 + echo "$as_me:8456: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:8374: \"$ac_try\"") >&5 + { (eval echo "$as_me:8459: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:8377: \$? = $ac_status" >&5 + echo "$as_me:8462: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then eval "$as_ac_var=yes" else @@ -8384,7 +8469,7 @@ eval "$as_ac_var=no" fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:8387: result: `eval echo '${'"$as_ac_var"'}'`" >&5 +echo "$as_me:8472: 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 @@ -8398,7 +8483,7 @@ fi done fi -echo "$as_me:8401: checking stack direction for C alloca" >&5 +echo "$as_me:8486: 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 @@ -8407,7 +8492,7 @@ else ac_cv_c_stack_direction=0 else cat >"conftest.$ac_ext" <<_ACEOF -#line 8410 "configure" +#line 8495 "configure" #include "confdefs.h" int find_stack_direction (void) @@ -8430,15 +8515,15 @@ main (void) } _ACEOF rm -f "conftest$ac_exeext" -if { (eval echo "$as_me:8433: \"$ac_link\"") >&5 +if { (eval echo "$as_me:8518: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:8436: \$? = $ac_status" >&5 + echo "$as_me:8521: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='"./conftest$ac_exeext"' - { (eval echo "$as_me:8438: \"$ac_try\"") >&5 + { (eval echo "$as_me:8523: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:8441: \$? = $ac_status" >&5 + echo "$as_me:8526: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_c_stack_direction=1 else @@ -8450,7 +8535,7 @@ fi rm -f core ./core.* ./*.core "conftest$ac_exeext" "conftest.$ac_objext" "conftest.$ac_ext" fi fi -echo "$as_me:8453: result: $ac_cv_c_stack_direction" >&5 +echo "$as_me:8538: result: $ac_cv_c_stack_direction" >&5 echo "${ECHO_T}$ac_cv_c_stack_direction" >&6 cat >>confdefs.h <<EOF @@ -8462,23 +8547,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:8465: checking for $ac_header" >&5 +echo "$as_me:8550: 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 8471 "configure" +#line 8556 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:8475: \"$ac_cpp "conftest.$ac_ext"\"") >&5 +if { (eval echo "$as_me:8560: \"$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:8481: \$? = $ac_status" >&5 + echo "$as_me:8566: \$? = $ac_status" >&5 (exit "$ac_status"); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -8497,7 +8582,7 @@ else fi rm -f conftest.err "conftest.$ac_ext" fi -echo "$as_me:8500: result: `eval echo '${'"$as_ac_Header"'}'`" >&5 +echo "$as_me:8585: 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 @@ -8510,13 +8595,13 @@ done for ac_func in getpagesize do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` -echo "$as_me:8513: checking for $ac_func" >&5 +echo "$as_me:8598: 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 8519 "configure" +#line 8604 "configure" #include "confdefs.h" #define $ac_func autoconf_temporary #include <limits.h> /* least-intrusive standard header which defines gcc2 __stub macros */ @@ -8547,16 +8632,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:8550: \"$ac_link\"") >&5 +if { (eval echo "$as_me:8635: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:8553: \$? = $ac_status" >&5 + echo "$as_me:8638: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:8556: \"$ac_try\"") >&5 + { (eval echo "$as_me:8641: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:8559: \$? = $ac_status" >&5 + echo "$as_me:8644: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then eval "$as_ac_var=yes" else @@ -8566,7 +8651,7 @@ eval "$as_ac_var=no" fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:8569: result: `eval echo '${'"$as_ac_var"'}'`" >&5 +echo "$as_me:8654: 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 @@ -8576,7 +8661,7 @@ EOF fi done -echo "$as_me:8579: checking for working mmap" >&5 +echo "$as_me:8664: 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 @@ -8585,7 +8670,7 @@ else ac_cv_func_mmap_fixed_mapped=no else cat >"conftest.$ac_ext" <<_ACEOF -#line 8588 "configure" +#line 8673 "configure" #include "confdefs.h" $ac_includes_default /* Thanks to Mike Haertel and Jim Avera for this test. @@ -8712,15 +8797,15 @@ main (void) } _ACEOF rm -f "conftest$ac_exeext" -if { (eval echo "$as_me:8715: \"$ac_link\"") >&5 +if { (eval echo "$as_me:8800: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:8718: \$? = $ac_status" >&5 + echo "$as_me:8803: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='"./conftest$ac_exeext"' - { (eval echo "$as_me:8720: \"$ac_try\"") >&5 + { (eval echo "$as_me:8805: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:8723: \$? = $ac_status" >&5 + echo "$as_me:8808: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_func_mmap_fixed_mapped=yes else @@ -8732,7 +8817,7 @@ fi rm -f core ./core.* ./*.core "conftest$ac_exeext" "conftest.$ac_objext" "conftest.$ac_ext" fi fi -echo "$as_me:8735: result: $ac_cv_func_mmap_fixed_mapped" >&5 +echo "$as_me:8820: 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 @@ -8743,13 +8828,13 @@ EOF fi rm -f conftest.mmap -echo "$as_me:8746: checking whether we are using the GNU C Library 2.1 or newer" >&5 +echo "$as_me:8831: 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 8752 "configure" +#line 8837 "configure" #include "confdefs.h" #include <features.h> @@ -8769,7 +8854,7 @@ fi rm -rf conftest* fi -echo "$as_me:8772: result: $ac_cv_gnu_library_2_1" >&5 +echo "$as_me:8857: 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" @@ -8782,7 +8867,7 @@ test -z "$ALL_LINGUAS" && ALL_LINGUAS=`test -d "$srcdir/po" && cd "$srcdir/po" & : ${CONFIG_H:=config.h} if test -z "$PACKAGE" ; then - { { echo "$as_me:8785: error: CF_BUNDLED_INTL used without setting PACKAGE variable" >&5 + { { echo "$as_me:8870: error: CF_BUNDLED_INTL used without setting PACKAGE variable" >&5 echo "$as_me: error: CF_BUNDLED_INTL used without setting PACKAGE variable" >&2;} { (exit 1); exit 1; }; } fi @@ -8799,23 +8884,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:8802: checking for $ac_header" >&5 +echo "$as_me:8887: 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 8808 "configure" +#line 8893 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:8812: \"$ac_cpp "conftest.$ac_ext"\"") >&5 +if { (eval echo "$as_me:8897: \"$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:8818: \$? = $ac_status" >&5 + echo "$as_me:8903: \$? = $ac_status" >&5 (exit "$ac_status"); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -8834,7 +8919,7 @@ else fi rm -f conftest.err "conftest.$ac_ext" fi -echo "$as_me:8837: result: `eval echo '${'"$as_ac_Header"'}'`" >&5 +echo "$as_me:8922: 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 @@ -8849,13 +8934,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:8852: checking for $ac_func" >&5 +echo "$as_me:8937: 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 8858 "configure" +#line 8943 "configure" #include "confdefs.h" #define $ac_func autoconf_temporary #include <limits.h> /* least-intrusive standard header which defines gcc2 __stub macros */ @@ -8886,16 +8971,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:8889: \"$ac_link\"") >&5 +if { (eval echo "$as_me:8974: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:8892: \$? = $ac_status" >&5 + echo "$as_me:8977: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:8895: \"$ac_try\"") >&5 + { (eval echo "$as_me:8980: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:8898: \$? = $ac_status" >&5 + echo "$as_me:8983: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then eval "$as_ac_var=yes" else @@ -8905,7 +8990,7 @@ eval "$as_ac_var=no" fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:8908: result: `eval echo '${'"$as_ac_var"'}'`" >&5 +echo "$as_me:8993: 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 @@ -8956,7 +9041,7 @@ if test -n "$cf_searchpath/include" ; then CPPFLAGS="${CPPFLAGS}-I$cf_add_incdir" cat >"conftest.$ac_ext" <<_ACEOF -#line 8959 "configure" +#line 9044 "configure" #include "confdefs.h" #include <stdio.h> int @@ -8968,16 +9053,16 @@ printf("Hello") } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:8971: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:9056: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:8974: \$? = $ac_status" >&5 + echo "$as_me:9059: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:8977: \"$ac_try\"") >&5 + { (eval echo "$as_me:9062: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:8980: \$? = $ac_status" >&5 + echo "$as_me:9065: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then : else @@ -8994,7 +9079,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}:8997: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:9082: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -9040,7 +9125,7 @@ if test -n "$cf_searchpath/../include" ; then CPPFLAGS="${CPPFLAGS}-I$cf_add_incdir" cat >"conftest.$ac_ext" <<_ACEOF -#line 9043 "configure" +#line 9128 "configure" #include "confdefs.h" #include <stdio.h> int @@ -9052,16 +9137,16 @@ printf("Hello") } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:9055: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:9140: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:9058: \$? = $ac_status" >&5 + echo "$as_me:9143: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:9061: \"$ac_try\"") >&5 + { (eval echo "$as_me:9146: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:9064: \$? = $ac_status" >&5 + echo "$as_me:9149: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then : else @@ -9078,7 +9163,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}:9081: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:9166: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -9096,7 +9181,7 @@ echo "${as_me:-configure}:9081: testing adding $cf_add_incdir to include-path .. fi else -{ { echo "$as_me:9099: error: cannot find libiconv under $withval" >&5 +{ { echo "$as_me:9184: error: cannot find libiconv under $withval" >&5 echo "$as_me: error: cannot find libiconv under $withval" >&2;} { (exit 1); exit 1; }; } fi @@ -9121,7 +9206,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}:9124: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:9209: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -9150,7 +9235,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}:9153: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:9238: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -9159,7 +9244,7 @@ echo "${as_me:-configure}:9153: testing adding $cf_add_libdir to library-path .. fi else -{ { echo "$as_me:9162: error: cannot find libiconv under $withval" >&5 +{ { echo "$as_me:9247: error: cannot find libiconv under $withval" >&5 echo "$as_me: error: cannot find libiconv under $withval" >&2;} { (exit 1); exit 1; }; } fi @@ -9170,7 +9255,7 @@ esac fi; - echo "$as_me:9173: checking for iconv" >&5 + echo "$as_me:9258: 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 @@ -9181,12 +9266,12 @@ else cf_cv_header_path_iconv= cf_cv_library_path_iconv= -echo "${as_me:-configure}:9184: testing Starting FIND_LINKAGE(iconv,) ..." 1>&5 +echo "${as_me:-configure}:9269: testing Starting FIND_LINKAGE(iconv,) ..." 1>&5 cf_save_LIBS="$LIBS" cat >"conftest.$ac_ext" <<_ACEOF -#line 9189 "configure" +#line 9274 "configure" #include "confdefs.h" #include <stdlib.h> @@ -9205,16 +9290,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:9208: \"$ac_link\"") >&5 +if { (eval echo "$as_me:9293: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:9211: \$? = $ac_status" >&5 + echo "$as_me:9296: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:9214: \"$ac_try\"") >&5 + { (eval echo "$as_me:9299: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:9217: \$? = $ac_status" >&5 + echo "$as_me:9302: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_find_linkage_iconv=yes @@ -9228,7 +9313,7 @@ cat "conftest.$ac_ext" >&5 LIBS="-liconv $cf_save_LIBS" cat >"conftest.$ac_ext" <<_ACEOF -#line 9231 "configure" +#line 9316 "configure" #include "confdefs.h" #include <stdlib.h> @@ -9247,16 +9332,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:9250: \"$ac_link\"") >&5 +if { (eval echo "$as_me:9335: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:9253: \$? = $ac_status" >&5 + echo "$as_me:9338: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:9256: \"$ac_try\"") >&5 + { (eval echo "$as_me:9341: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:9259: \$? = $ac_status" >&5 + echo "$as_me:9344: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_find_linkage_iconv=yes @@ -9273,9 +9358,9 @@ cat "conftest.$ac_ext" >&5 test -n "$verbose" && echo " find linkage for iconv library" 1>&6 -echo "${as_me:-configure}:9276: testing find linkage for iconv library ..." 1>&5 +echo "${as_me:-configure}:9361: testing find linkage for iconv library ..." 1>&5 -echo "${as_me:-configure}:9278: testing Searching for headers in FIND_LINKAGE(iconv,) ..." 1>&5 +echo "${as_me:-configure}:9363: testing Searching for headers in FIND_LINKAGE(iconv,) ..." 1>&5 cf_save_CPPFLAGS="$CPPFLAGS" cf_test_CPPFLAGS="$CPPFLAGS" @@ -9366,7 +9451,7 @@ cf_search="$cf_search $cf_header_path_list" 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}:9369: testing ... testing $cf_cv_header_path_iconv ..." 1>&5 +echo "${as_me:-configure}:9454: testing ... testing $cf_cv_header_path_iconv ..." 1>&5 CPPFLAGS="$cf_save_CPPFLAGS" @@ -9374,7 +9459,7 @@ echo "${as_me:-configure}:9369: testing ... testing $cf_cv_header_path_iconv ... CPPFLAGS="${CPPFLAGS}-I$cf_cv_header_path_iconv" cat >"conftest.$ac_ext" <<_ACEOF -#line 9377 "configure" +#line 9462 "configure" #include "confdefs.h" #include <stdlib.h> @@ -9393,21 +9478,21 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:9396: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:9481: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:9399: \$? = $ac_status" >&5 + echo "$as_me:9484: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:9402: \"$ac_try\"") >&5 + { (eval echo "$as_me:9487: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:9405: \$? = $ac_status" >&5 + echo "$as_me:9490: \$? = $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}:9410: testing ... found iconv headers in $cf_cv_header_path_iconv ..." 1>&5 +echo "${as_me:-configure}:9495: testing ... found iconv headers in $cf_cv_header_path_iconv ..." 1>&5 cf_cv_find_linkage_iconv=maybe cf_test_CPPFLAGS="$CPPFLAGS" @@ -9425,7 +9510,7 @@ rm -f "conftest.$ac_objext" "conftest.$ac_ext" if test "$cf_cv_find_linkage_iconv" = maybe ; then -echo "${as_me:-configure}:9428: testing Searching for iconv library in FIND_LINKAGE(iconv,) ..." 1>&5 +echo "${as_me:-configure}:9513: testing Searching for iconv library in FIND_LINKAGE(iconv,) ..." 1>&5 cf_save_LIBS="$LIBS" cf_save_LDFLAGS="$LDFLAGS" @@ -9500,13 +9585,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}:9503: testing ... testing $cf_cv_library_path_iconv ..." 1>&5 +echo "${as_me:-configure}:9588: 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 9509 "configure" +#line 9594 "configure" #include "confdefs.h" #include <stdlib.h> @@ -9525,21 +9610,21 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:9528: \"$ac_link\"") >&5 +if { (eval echo "$as_me:9613: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:9531: \$? = $ac_status" >&5 + echo "$as_me:9616: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:9534: \"$ac_try\"") >&5 + { (eval echo "$as_me:9619: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:9537: \$? = $ac_status" >&5 + echo "$as_me:9622: \$? = $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}:9542: testing ... found iconv library in $cf_cv_library_path_iconv ..." 1>&5 +echo "${as_me:-configure}:9627: testing ... found iconv library in $cf_cv_library_path_iconv ..." 1>&5 cf_cv_find_linkage_iconv=yes cf_cv_library_file_iconv="-liconv" @@ -9579,7 +9664,7 @@ am_cv_func_iconv="no, consider installing GNU libiconv" fi fi -echo "$as_me:9582: result: $am_cv_func_iconv" >&5 +echo "$as_me:9667: result: $am_cv_func_iconv" >&5 echo "${ECHO_T}$am_cv_func_iconv" >&6 if test "$am_cv_func_iconv" = yes; then @@ -9588,14 +9673,14 @@ cat >>confdefs.h <<\EOF #define HAVE_ICONV 1 EOF - echo "$as_me:9591: checking if the declaration of iconv() needs const." >&5 + echo "$as_me:9676: 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 9598 "configure" +#line 9683 "configure" #include "confdefs.h" #include <stdlib.h> @@ -9620,16 +9705,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:9623: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:9708: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:9626: \$? = $ac_status" >&5 + echo "$as_me:9711: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:9629: \"$ac_try\"") >&5 + { (eval echo "$as_me:9714: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:9632: \$? = $ac_status" >&5 + echo "$as_me:9717: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then am_cv_proto_iconv_const=no else @@ -9639,7 +9724,7 @@ am_cv_proto_iconv_const=yes fi rm -f "conftest.$ac_objext" "conftest.$ac_ext" fi -echo "$as_me:9642: result: $am_cv_proto_iconv_const" >&5 +echo "$as_me:9727: 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 @@ -9684,7 +9769,7 @@ if test -n "$cf_cv_header_path_iconv" ; then CPPFLAGS="${CPPFLAGS}-I$cf_add_incdir" cat >"conftest.$ac_ext" <<_ACEOF -#line 9687 "configure" +#line 9772 "configure" #include "confdefs.h" #include <stdio.h> int @@ -9696,16 +9781,16 @@ printf("Hello") } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:9699: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:9784: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:9702: \$? = $ac_status" >&5 + echo "$as_me:9787: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:9705: \"$ac_try\"") >&5 + { (eval echo "$as_me:9790: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:9708: \$? = $ac_status" >&5 + echo "$as_me:9793: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then : else @@ -9722,7 +9807,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}:9725: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:9810: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -9761,7 +9846,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}:9764: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:9849: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -9772,13 +9857,13 @@ fi fi fi -echo "$as_me:9775: checking for nl_langinfo and CODESET" >&5 +echo "$as_me:9860: 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 9781 "configure" +#line 9866 "configure" #include "confdefs.h" #include <langinfo.h> int @@ -9790,16 +9875,16 @@ char* cs = nl_langinfo(CODESET); (void)cs } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:9793: \"$ac_link\"") >&5 +if { (eval echo "$as_me:9878: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:9796: \$? = $ac_status" >&5 + echo "$as_me:9881: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:9799: \"$ac_try\"") >&5 + { (eval echo "$as_me:9884: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:9802: \$? = $ac_status" >&5 + echo "$as_me:9887: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then am_cv_langinfo_codeset=yes else @@ -9810,7 +9895,7 @@ fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:9813: result: $am_cv_langinfo_codeset" >&5 +echo "$as_me:9898: result: $am_cv_langinfo_codeset" >&5 echo "${ECHO_T}$am_cv_langinfo_codeset" >&6 if test "$am_cv_langinfo_codeset" = yes; then @@ -9821,13 +9906,13 @@ EOF fi if test "$ac_cv_header_locale_h" = yes; then - echo "$as_me:9824: checking for LC_MESSAGES" >&5 + echo "$as_me:9909: 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 9830 "configure" +#line 9915 "configure" #include "confdefs.h" #include <locale.h> int @@ -9839,16 +9924,16 @@ return LC_MESSAGES } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:9842: \"$ac_link\"") >&5 +if { (eval echo "$as_me:9927: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:9845: \$? = $ac_status" >&5 + echo "$as_me:9930: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:9848: \"$ac_try\"") >&5 + { (eval echo "$as_me:9933: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:9851: \$? = $ac_status" >&5 + echo "$as_me:9936: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then am_cv_val_LC_MESSAGES=yes else @@ -9858,7 +9943,7 @@ am_cv_val_LC_MESSAGES=no fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:9861: result: $am_cv_val_LC_MESSAGES" >&5 +echo "$as_me:9946: 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 @@ -9868,7 +9953,7 @@ EOF fi fi - echo "$as_me:9871: checking whether NLS is requested" >&5 + echo "$as_me:9956: 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. @@ -9878,7 +9963,7 @@ if test "${enable_nls+set}" = set; then else USE_NLS=no fi; - echo "$as_me:9881: result: $USE_NLS" >&5 + echo "$as_me:9966: result: $USE_NLS" >&5 echo "${ECHO_T}$USE_NLS" >&6 BUILD_INCLUDED_LIBINTL=no @@ -9892,7 +9977,7 @@ cat >>confdefs.h <<\EOF #define ENABLE_NLS 1 EOF - echo "$as_me:9895: checking whether included gettext is requested" >&5 + echo "$as_me:9980: 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. @@ -9902,7 +9987,7 @@ if test "${with_included_gettext+set}" = set; then else nls_cv_force_use_gnu_gettext=no fi; - echo "$as_me:9905: result: $nls_cv_force_use_gnu_gettext" >&5 + echo "$as_me:9990: 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" @@ -9915,7 +10000,7 @@ echo "${ECHO_T}$nls_cv_force_use_gnu_gettext" >&6 # Extract the first word of "msgfmt", so it can be a program name with args. set dummy msgfmt; ac_word=$2 -echo "$as_me:9918: checking for $ac_word" >&5 +echo "$as_me:10003: 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 @@ -9942,16 +10027,16 @@ esac fi MSGFMT="$ac_cv_path_MSGFMT" if test "$MSGFMT" != ":"; then - echo "$as_me:9945: result: $MSGFMT" >&5 + echo "$as_me:10030: result: $MSGFMT" >&5 echo "${ECHO_T}$MSGFMT" >&6 else - echo "$as_me:9948: result: no" >&5 + echo "$as_me:10033: 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:9954: checking for $ac_word" >&5 +echo "$as_me:10039: 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 @@ -9968,7 +10053,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:9971: found $ac_dir/$ac_word" >&5 + echo "$as_me:10056: found $ac_dir/$ac_word" >&5 break fi done @@ -9980,17 +10065,17 @@ fi GMSGFMT=$ac_cv_path_GMSGFMT if test -n "$GMSGFMT"; then - echo "$as_me:9983: result: $GMSGFMT" >&5 + echo "$as_me:10068: result: $GMSGFMT" >&5 echo "${ECHO_T}$GMSGFMT" >&6 else - echo "$as_me:9986: result: no" >&5 + echo "$as_me:10071: 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:9993: checking for $ac_word" >&5 +echo "$as_me:10078: 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 @@ -10017,10 +10102,10 @@ esac fi XGETTEXT="$ac_cv_path_XGETTEXT" if test "$XGETTEXT" != ":"; then - echo "$as_me:10020: result: $XGETTEXT" >&5 + echo "$as_me:10105: result: $XGETTEXT" >&5 echo "${ECHO_T}$XGETTEXT" >&6 else - echo "$as_me:10023: result: no" >&5 + echo "$as_me:10108: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -10151,12 +10236,12 @@ LIBS="$cf_add_libs" cf_cv_header_path_intl= cf_cv_library_path_intl= -echo "${as_me:-configure}:10154: testing Starting FIND_LINKAGE(intl,) ..." 1>&5 +echo "${as_me:-configure}:10239: testing Starting FIND_LINKAGE(intl,) ..." 1>&5 cf_save_LIBS="$LIBS" cat >"conftest.$ac_ext" <<_ACEOF -#line 10159 "configure" +#line 10244 "configure" #include "confdefs.h" #include <libintl.h> @@ -10178,16 +10263,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:10181: \"$ac_link\"") >&5 +if { (eval echo "$as_me:10266: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:10184: \$? = $ac_status" >&5 + echo "$as_me:10269: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:10187: \"$ac_try\"") >&5 + { (eval echo "$as_me:10272: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:10190: \$? = $ac_status" >&5 + echo "$as_me:10275: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_find_linkage_intl=yes @@ -10201,7 +10286,7 @@ cat "conftest.$ac_ext" >&5 LIBS="-lintl $cf_save_LIBS" cat >"conftest.$ac_ext" <<_ACEOF -#line 10204 "configure" +#line 10289 "configure" #include "confdefs.h" #include <libintl.h> @@ -10223,16 +10308,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:10226: \"$ac_link\"") >&5 +if { (eval echo "$as_me:10311: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:10229: \$? = $ac_status" >&5 + echo "$as_me:10314: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:10232: \"$ac_try\"") >&5 + { (eval echo "$as_me:10317: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:10235: \$? = $ac_status" >&5 + echo "$as_me:10320: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_find_linkage_intl=yes @@ -10249,9 +10334,9 @@ cat "conftest.$ac_ext" >&5 test -n "$verbose" && echo " find linkage for intl library" 1>&6 -echo "${as_me:-configure}:10252: testing find linkage for intl library ..." 1>&5 +echo "${as_me:-configure}:10337: testing find linkage for intl library ..." 1>&5 -echo "${as_me:-configure}:10254: testing Searching for headers in FIND_LINKAGE(intl,) ..." 1>&5 +echo "${as_me:-configure}:10339: testing Searching for headers in FIND_LINKAGE(intl,) ..." 1>&5 cf_save_CPPFLAGS="$CPPFLAGS" cf_test_CPPFLAGS="$CPPFLAGS" @@ -10342,7 +10427,7 @@ cf_search="$cf_search $cf_header_path_list" 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}:10345: testing ... testing $cf_cv_header_path_intl ..." 1>&5 +echo "${as_me:-configure}:10430: testing ... testing $cf_cv_header_path_intl ..." 1>&5 CPPFLAGS="$cf_save_CPPFLAGS" @@ -10350,7 +10435,7 @@ echo "${as_me:-configure}:10345: testing ... testing $cf_cv_header_path_intl ... CPPFLAGS="${CPPFLAGS}-I$cf_cv_header_path_intl" cat >"conftest.$ac_ext" <<_ACEOF -#line 10353 "configure" +#line 10438 "configure" #include "confdefs.h" #include <libintl.h> @@ -10372,21 +10457,21 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:10375: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:10460: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:10378: \$? = $ac_status" >&5 + echo "$as_me:10463: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:10381: \"$ac_try\"") >&5 + { (eval echo "$as_me:10466: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:10384: \$? = $ac_status" >&5 + echo "$as_me:10469: \$? = $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}:10389: testing ... found intl headers in $cf_cv_header_path_intl ..." 1>&5 +echo "${as_me:-configure}:10474: testing ... found intl headers in $cf_cv_header_path_intl ..." 1>&5 cf_cv_find_linkage_intl=maybe cf_test_CPPFLAGS="$CPPFLAGS" @@ -10404,7 +10489,7 @@ rm -f "conftest.$ac_objext" "conftest.$ac_ext" if test "$cf_cv_find_linkage_intl" = maybe ; then -echo "${as_me:-configure}:10407: testing Searching for intl library in FIND_LINKAGE(intl,) ..." 1>&5 +echo "${as_me:-configure}:10492: testing Searching for intl library in FIND_LINKAGE(intl,) ..." 1>&5 cf_save_LIBS="$LIBS" cf_save_LDFLAGS="$LDFLAGS" @@ -10479,13 +10564,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}:10482: testing ... testing $cf_cv_library_path_intl ..." 1>&5 +echo "${as_me:-configure}:10567: 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 10488 "configure" +#line 10573 "configure" #include "confdefs.h" #include <libintl.h> @@ -10507,21 +10592,21 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:10510: \"$ac_link\"") >&5 +if { (eval echo "$as_me:10595: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:10513: \$? = $ac_status" >&5 + echo "$as_me:10598: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:10516: \"$ac_try\"") >&5 + { (eval echo "$as_me:10601: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:10519: \$? = $ac_status" >&5 + echo "$as_me:10604: \$? = $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}:10524: testing ... found intl library in $cf_cv_library_path_intl ..." 1>&5 +echo "${as_me:-configure}:10609: testing ... found intl library in $cf_cv_library_path_intl ..." 1>&5 cf_cv_find_linkage_intl=yes cf_cv_library_file_intl="-lintl" @@ -10560,9 +10645,9 @@ else cf_cv_func_gettext=no fi - echo "$as_me:10563: checking for libintl.h and gettext()" >&5 + echo "$as_me:10648: checking for libintl.h and gettext()" >&5 echo $ECHO_N "checking for libintl.h and gettext()... $ECHO_C" >&6 - echo "$as_me:10565: result: $cf_cv_func_gettext" >&5 + echo "$as_me:10650: result: $cf_cv_func_gettext" >&5 echo "${ECHO_T}$cf_cv_func_gettext" >&6 LIBS="$cf_save_LIBS_1" @@ -10607,7 +10692,7 @@ if test -n "$cf_cv_header_path_intl" ; then CPPFLAGS="${CPPFLAGS}-I$cf_add_incdir" cat >"conftest.$ac_ext" <<_ACEOF -#line 10610 "configure" +#line 10695 "configure" #include "confdefs.h" #include <stdio.h> int @@ -10619,16 +10704,16 @@ printf("Hello") } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:10622: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:10707: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:10625: \$? = $ac_status" >&5 + echo "$as_me:10710: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:10628: \"$ac_try\"") >&5 + { (eval echo "$as_me:10713: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:10631: \$? = $ac_status" >&5 + echo "$as_me:10716: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then : else @@ -10645,7 +10730,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}:10648: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:10733: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -10684,7 +10769,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}:10687: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:10772: testing adding $cf_add_libdir to library-path ..." 1>&5 INTLLIBS="-L$cf_add_libdir $INTLLIBS" fi @@ -10700,13 +10785,13 @@ fi for ac_func in dcgettext do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` -echo "$as_me:10703: checking for $ac_func" >&5 +echo "$as_me:10788: 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 10709 "configure" +#line 10794 "configure" #include "confdefs.h" #define $ac_func autoconf_temporary #include <limits.h> /* least-intrusive standard header which defines gcc2 __stub macros */ @@ -10737,16 +10822,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:10740: \"$ac_link\"") >&5 +if { (eval echo "$as_me:10825: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:10743: \$? = $ac_status" >&5 + echo "$as_me:10828: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:10746: \"$ac_try\"") >&5 + { (eval echo "$as_me:10831: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:10749: \$? = $ac_status" >&5 + echo "$as_me:10834: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then eval "$as_ac_var=yes" else @@ -10756,7 +10841,7 @@ eval "$as_ac_var=no" fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:10759: result: `eval echo '${'"$as_ac_var"'}'`" >&5 +echo "$as_me:10844: 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 @@ -10771,7 +10856,7 @@ done CATOBJEXT=.gmo fi elif test -z "$MSGFMT" || test -z "$XGETTEXT" ; then - { echo "$as_me:10774: WARNING: disabling NLS feature" >&5 + { echo "$as_me:10859: WARNING: disabling NLS feature" >&5 echo "$as_me: WARNING: disabling NLS feature" >&2;} sed -e /ENABLE_NLS/d confdefs.h >confdefs.tmp mv confdefs.tmp confdefs.h @@ -10802,7 +10887,7 @@ echo "$as_me: WARNING: disabling NLS feature" >&2;} LIBS=`echo " $LIBS " | sed -e 's/ -lintl / /' -e 's/^ //' -e 's/ $//'` elif test "$nls_cv_use_gnu_gettext" = "yes"; then nls_cv_use_gnu_gettext=no - { echo "$as_me:10805: WARNING: no NLS library is packaged with this application" >&5 + { echo "$as_me:10890: WARNING: no NLS library is packaged with this application" >&5 echo "$as_me: WARNING: no NLS library is packaged with this application" >&2;} fi fi @@ -10811,7 +10896,7 @@ echo "$as_me: WARNING: no NLS library is packaged with this application" >&2;} if $GMSGFMT --statistics /dev/null >/dev/null 2>&1; then : ; else - { echo "$as_me:10814: WARNING: found msgfmt program is not GNU msgfmt" >&5 + { echo "$as_me:10899: WARNING: found msgfmt program is not GNU msgfmt" >&5 echo "$as_me: WARNING: found msgfmt program is not GNU msgfmt" >&2;} fi fi @@ -10820,7 +10905,7 @@ echo "$as_me: WARNING: found msgfmt program is not GNU msgfmt" >&2;} if $XGETTEXT --omit-header /dev/null >/dev/null 2>&1; then : ; else - { echo "$as_me:10823: WARNING: found xgettext program is not GNU xgettext" >&5 + { echo "$as_me:10908: WARNING: found xgettext program is not GNU xgettext" >&5 echo "$as_me: WARNING: found xgettext program is not GNU xgettext" >&2;} fi fi @@ -10838,7 +10923,7 @@ echo "$as_me: WARNING: found xgettext program is not GNU xgettext" >&2;} 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:10841: checking for $ac_word" >&5 +echo "$as_me:10926: 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 @@ -10853,7 +10938,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:10856: found $ac_dir/$ac_word" >&5 +echo "$as_me:10941: found $ac_dir/$ac_word" >&5 break done @@ -10861,10 +10946,10 @@ fi fi INTLBISON=$ac_cv_prog_INTLBISON if test -n "$INTLBISON"; then - echo "$as_me:10864: result: $INTLBISON" >&5 + echo "$as_me:10949: result: $INTLBISON" >&5 echo "${ECHO_T}$INTLBISON" >&6 else - echo "$as_me:10867: result: no" >&5 + echo "$as_me:10952: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -10874,7 +10959,7 @@ done if test -z "$INTLBISON"; then ac_verc_fail=yes else - echo "$as_me:10877: checking version of bison" >&5 + echo "$as_me:10962: 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 @@ -10883,7 +10968,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:10886: result: $ac_prog_version" >&5 + echo "$as_me:10971: result: $ac_prog_version" >&5 echo "${ECHO_T}$ac_prog_version" >&6 fi if test "$ac_verc_fail" = yes; then @@ -10910,7 +10995,7 @@ echo "${ECHO_T}$ac_prog_version" >&6 if test "x$ALL_LINGUAS" = "x"; then LINGUAS= else - echo "$as_me:10913: checking for catalogs to be installed" >&5 + echo "$as_me:10998: 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 @@ -10930,7 +11015,7 @@ echo $ECHO_N "checking for catalogs to be installed... $ECHO_C" >&6 fi done LINGUAS=$NEW_LINGUAS - echo "$as_me:10933: result: $LINGUAS" >&5 + echo "$as_me:11018: result: $LINGUAS" >&5 echo "${ECHO_T}$LINGUAS" >&6 fi @@ -10966,7 +11051,7 @@ cf_makefile=makefile use_our_messages=no if test "$USE_NLS" = yes ; then if test -d "$srcdir/po" ; then -echo "$as_me:10969: checking if we should use included message-library" >&5 +echo "$as_me:11054: 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. @@ -10977,7 +11062,7 @@ else use_our_messages=yes fi; fi -echo "$as_me:10980: result: $use_our_messages" >&5 +echo "$as_me:11065: result: $use_our_messages" >&5 echo "${ECHO_T}$use_our_messages" >&6 fi @@ -11019,23 +11104,23 @@ else for ac_header in libintl.h do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` -echo "$as_me:11022: checking for $ac_header" >&5 +echo "$as_me:11107: 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 11028 "configure" +#line 11113 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:11032: \"$ac_cpp "conftest.$ac_ext"\"") >&5 +if { (eval echo "$as_me:11117: \"$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:11038: \$? = $ac_status" >&5 + echo "$as_me:11123: \$? = $ac_status" >&5 (exit "$ac_status"); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -11054,7 +11139,7 @@ else fi rm -f conftest.err "conftest.$ac_ext" fi -echo "$as_me:11057: result: `eval echo '${'"$as_ac_Header"'}'`" >&5 +echo "$as_me:11142: 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 @@ -11143,7 +11228,7 @@ case ".$withval" in withval=`echo "$withval" | sed -e s%NONE%$cf_path_syntax%` ;; (*) - { { echo "$as_me:11146: error: expected a pathname, not \"$withval\"" >&5 + { { echo "$as_me:11231: error: expected a pathname, not \"$withval\"" >&5 echo "$as_me: error: expected a pathname, not \"$withval\"" >&2;} { (exit 1); exit 1; }; } ;; @@ -11152,7 +11237,7 @@ esac fi eval NLS_DATADIR="$withval" -echo "$as_me:11155: checking if you want full utility pathnames" >&5 +echo "$as_me:11240: 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. @@ -11169,14 +11254,14 @@ else with_full_paths=yes fi; -echo "$as_me:11172: result: $with_full_paths" >&5 +echo "$as_me:11257: 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:11179: checking for system mailer" >&5 +echo "$as_me:11264: 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 @@ -11196,14 +11281,14 @@ else fi -echo "$as_me:11199: result: $cf_cv_SYSTEM_MAIL" >&5 +echo "$as_me:11284: 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:11206: checking system mail flags" >&5 +echo "$as_me:11291: 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 @@ -11219,7 +11304,7 @@ else fi -echo "$as_me:11222: result: $cf_cv_system_mail_flags" >&5 +echo "$as_me:11307: result: $cf_cv_system_mail_flags" >&5 echo "${ECHO_T}$cf_cv_system_mail_flags" >&6 cat >>confdefs.h <<EOF @@ -11232,14 +11317,14 @@ if test "$with_full_paths" = no ; then fi fi -echo "$as_me:11235: checking if the POSIX test-macros are already defined" >&5 +echo "$as_me:11320: checking if the POSIX test-macros are already defined" >&5 echo $ECHO_N "checking if the POSIX test-macros are already defined... $ECHO_C" >&6 if test "${cf_cv_posix_visible+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >"conftest.$ac_ext" <<_ACEOF -#line 11242 "configure" +#line 11327 "configure" #include "confdefs.h" #include <stdio.h> int @@ -11258,16 +11343,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:11261: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:11346: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:11264: \$? = $ac_status" >&5 + echo "$as_me:11349: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:11267: \"$ac_try\"") >&5 + { (eval echo "$as_me:11352: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:11270: \$? = $ac_status" >&5 + echo "$as_me:11355: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_posix_visible=no else @@ -11278,7 +11363,7 @@ fi rm -f "conftest.$ac_objext" "conftest.$ac_ext" fi -echo "$as_me:11281: result: $cf_cv_posix_visible" >&5 +echo "$as_me:11366: result: $cf_cv_posix_visible" >&5 echo "${ECHO_T}$cf_cv_posix_visible" >&6 if test "$cf_cv_posix_visible" = no; then @@ -11323,14 +11408,14 @@ case "$host_os" in cf_gnu_xopen_source=$cf_XOPEN_SOURCE -echo "$as_me:11326: checking if this is the GNU C library" >&5 +echo "$as_me:11411: checking if this is the GNU C library" >&5 echo $ECHO_N "checking if this is the GNU C library... $ECHO_C" >&6 if test "${cf_cv_gnu_library+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >"conftest.$ac_ext" <<_ACEOF -#line 11333 "configure" +#line 11418 "configure" #include "confdefs.h" #include <sys/types.h> int @@ -11349,16 +11434,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:11352: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:11437: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:11355: \$? = $ac_status" >&5 + echo "$as_me:11440: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:11358: \"$ac_try\"") >&5 + { (eval echo "$as_me:11443: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:11361: \$? = $ac_status" >&5 + echo "$as_me:11446: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_gnu_library=yes else @@ -11369,7 +11454,7 @@ fi rm -f "conftest.$ac_objext" "conftest.$ac_ext" fi -echo "$as_me:11372: result: $cf_cv_gnu_library" >&5 +echo "$as_me:11457: result: $cf_cv_gnu_library" >&5 echo "${ECHO_T}$cf_cv_gnu_library" >&6 if test x$cf_cv_gnu_library = xyes; then @@ -11377,7 +11462,7 @@ if test x$cf_cv_gnu_library = xyes; then # With glibc 2.19 (13 years after this check was begun), _DEFAULT_SOURCE # was changed to help a little. newlib incorporated the change about 4 # years later. - echo "$as_me:11380: checking if _DEFAULT_SOURCE can be used as a basis" >&5 + echo "$as_me:11465: checking if _DEFAULT_SOURCE can be used as a basis" >&5 echo $ECHO_N "checking if _DEFAULT_SOURCE can be used as a basis... $ECHO_C" >&6 if test "${cf_cv_gnu_library_219+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -11389,7 +11474,7 @@ else CPPFLAGS="${CPPFLAGS}-D_DEFAULT_SOURCE" cat >"conftest.$ac_ext" <<_ACEOF -#line 11392 "configure" +#line 11477 "configure" #include "confdefs.h" #include <sys/types.h> int @@ -11408,16 +11493,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:11411: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:11496: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:11414: \$? = $ac_status" >&5 + echo "$as_me:11499: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:11417: \"$ac_try\"") >&5 + { (eval echo "$as_me:11502: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:11420: \$? = $ac_status" >&5 + echo "$as_me:11505: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_gnu_library_219=yes else @@ -11429,12 +11514,12 @@ rm -f "conftest.$ac_objext" "conftest.$ac_ext" CPPFLAGS="$cf_save" fi -echo "$as_me:11432: result: $cf_cv_gnu_library_219" >&5 +echo "$as_me:11517: result: $cf_cv_gnu_library_219" >&5 echo "${ECHO_T}$cf_cv_gnu_library_219" >&6 if test "x$cf_cv_gnu_library_219" = xyes; then cf_save="$CPPFLAGS" - echo "$as_me:11437: checking if _XOPEN_SOURCE=$cf_gnu_xopen_source works with _DEFAULT_SOURCE" >&5 + echo "$as_me:11522: checking if _XOPEN_SOURCE=$cf_gnu_xopen_source works with _DEFAULT_SOURCE" >&5 echo $ECHO_N "checking if _XOPEN_SOURCE=$cf_gnu_xopen_source works with _DEFAULT_SOURCE... $ECHO_C" >&6 if test "${cf_cv_gnu_dftsrc_219+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -11539,7 +11624,7 @@ if test -n "$cf_new_extra_cppflags" ; then fi cat >"conftest.$ac_ext" <<_ACEOF -#line 11542 "configure" +#line 11627 "configure" #include "confdefs.h" #include <limits.h> @@ -11559,16 +11644,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:11562: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:11647: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:11565: \$? = $ac_status" >&5 + echo "$as_me:11650: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:11568: \"$ac_try\"") >&5 + { (eval echo "$as_me:11653: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:11571: \$? = $ac_status" >&5 + echo "$as_me:11656: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_gnu_dftsrc_219=yes else @@ -11579,7 +11664,7 @@ fi rm -f "conftest.$ac_objext" "conftest.$ac_ext" fi -echo "$as_me:11582: result: $cf_cv_gnu_dftsrc_219" >&5 +echo "$as_me:11667: result: $cf_cv_gnu_dftsrc_219" >&5 echo "${ECHO_T}$cf_cv_gnu_dftsrc_219" >&6 test "x$cf_cv_gnu_dftsrc_219" = "xyes" || CPPFLAGS="$cf_save" else @@ -11588,14 +11673,14 @@ echo "${ECHO_T}$cf_cv_gnu_dftsrc_219" >&6 if test "x$cf_cv_gnu_dftsrc_219" != xyes; then - echo "$as_me:11591: checking if we must define _GNU_SOURCE" >&5 + echo "$as_me:11676: 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 11598 "configure" +#line 11683 "configure" #include "confdefs.h" #include <sys/types.h> int @@ -11610,16 +11695,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:11613: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:11698: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:11616: \$? = $ac_status" >&5 + echo "$as_me:11701: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:11619: \"$ac_try\"") >&5 + { (eval echo "$as_me:11704: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:11622: \$? = $ac_status" >&5 + echo "$as_me:11707: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_gnu_source=no else @@ -11726,7 +11811,7 @@ if test -n "$cf_new_extra_cppflags" ; then fi cat >"conftest.$ac_ext" <<_ACEOF -#line 11729 "configure" +#line 11814 "configure" #include "confdefs.h" #include <sys/types.h> int @@ -11741,16 +11826,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:11744: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:11829: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:11747: \$? = $ac_status" >&5 + echo "$as_me:11832: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:11750: \"$ac_try\"") >&5 + { (eval echo "$as_me:11835: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:11753: \$? = $ac_status" >&5 + echo "$as_me:11838: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_gnu_source=no else @@ -11765,12 +11850,12 @@ fi rm -f "conftest.$ac_objext" "conftest.$ac_ext" fi -echo "$as_me:11768: result: $cf_cv_gnu_source" >&5 +echo "$as_me:11853: result: $cf_cv_gnu_source" >&5 echo "${ECHO_T}$cf_cv_gnu_source" >&6 if test "$cf_cv_gnu_source" = yes then - echo "$as_me:11773: checking if we should also define _DEFAULT_SOURCE" >&5 + echo "$as_me:11858: checking if we should also define _DEFAULT_SOURCE" >&5 echo $ECHO_N "checking if we should also define _DEFAULT_SOURCE... $ECHO_C" >&6 if test "${cf_cv_default_source+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -11780,7 +11865,7 @@ else CPPFLAGS="${CPPFLAGS}-D_GNU_SOURCE" cat >"conftest.$ac_ext" <<_ACEOF -#line 11783 "configure" +#line 11868 "configure" #include "confdefs.h" #include <sys/types.h> int @@ -11795,16 +11880,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:11798: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:11883: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:11801: \$? = $ac_status" >&5 + echo "$as_me:11886: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:11804: \"$ac_try\"") >&5 + { (eval echo "$as_me:11889: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:11807: \$? = $ac_status" >&5 + echo "$as_me:11892: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_default_source=no else @@ -11815,7 +11900,7 @@ fi rm -f "conftest.$ac_objext" "conftest.$ac_ext" fi -echo "$as_me:11818: result: $cf_cv_default_source" >&5 +echo "$as_me:11903: result: $cf_cv_default_source" >&5 echo "${ECHO_T}$cf_cv_default_source" >&6 if test "$cf_cv_default_source" = yes then @@ -11852,16 +11937,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:11855: checking if we should define _POSIX_C_SOURCE" >&5 +echo "$as_me:11940: 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}:11861: testing if the symbol is already defined go no further ..." 1>&5 +echo "${as_me:-configure}:11946: testing if the symbol is already defined go no further ..." 1>&5 cat >"conftest.$ac_ext" <<_ACEOF -#line 11864 "configure" +#line 11949 "configure" #include "confdefs.h" #include <sys/types.h> int @@ -11876,16 +11961,16 @@ make an error } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:11879: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:11964: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:11882: \$? = $ac_status" >&5 + echo "$as_me:11967: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:11885: \"$ac_try\"") >&5 + { (eval echo "$as_me:11970: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:11888: \$? = $ac_status" >&5 + echo "$as_me:11973: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_posix_c_source=no else @@ -11906,7 +11991,7 @@ cf_want_posix_source=no esac if test "$cf_want_posix_source" = yes ; then cat >"conftest.$ac_ext" <<_ACEOF -#line 11909 "configure" +#line 11994 "configure" #include "confdefs.h" #include <sys/types.h> int @@ -11921,16 +12006,16 @@ make an error } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:11924: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:12009: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:11927: \$? = $ac_status" >&5 + echo "$as_me:12012: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:11930: \"$ac_try\"") >&5 + { (eval echo "$as_me:12015: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:11933: \$? = $ac_status" >&5 + echo "$as_me:12018: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then : else @@ -11941,7 +12026,7 @@ fi rm -f "conftest.$ac_objext" "conftest.$ac_ext" fi -echo "${as_me:-configure}:11944: testing ifdef from value $cf_POSIX_C_SOURCE ..." 1>&5 +echo "${as_me:-configure}:12029: testing ifdef from value $cf_POSIX_C_SOURCE ..." 1>&5 CFLAGS="$cf_trim_CFLAGS" CPPFLAGS="$cf_trim_CPPFLAGS" @@ -11949,10 +12034,10 @@ echo "${as_me:-configure}:11944: testing ifdef from value $cf_POSIX_C_SOURCE ... test -n "$CPPFLAGS" && CPPFLAGS="$CPPFLAGS " CPPFLAGS="${CPPFLAGS}$cf_cv_posix_c_source" -echo "${as_me:-configure}:11952: testing if the second compile does not leave our definition intact error ..." 1>&5 +echo "${as_me:-configure}:12037: testing if the second compile does not leave our definition intact error ..." 1>&5 cat >"conftest.$ac_ext" <<_ACEOF -#line 11955 "configure" +#line 12040 "configure" #include "confdefs.h" #include <sys/types.h> int @@ -11967,16 +12052,16 @@ make an error } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:11970: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:12055: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:11973: \$? = $ac_status" >&5 + echo "$as_me:12058: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:11976: \"$ac_try\"") >&5 + { (eval echo "$as_me:12061: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:11979: \$? = $ac_status" >&5 + echo "$as_me:12064: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then : else @@ -11992,7 +12077,7 @@ fi rm -f "conftest.$ac_objext" "conftest.$ac_ext" fi -echo "$as_me:11995: result: $cf_cv_posix_c_source" >&5 +echo "$as_me:12080: 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 @@ -12132,14 +12217,14 @@ fi # cf_cv_posix_visible ;; (*) -echo "$as_me:12135: checking if we should define _XOPEN_SOURCE" >&5 +echo "$as_me:12220: 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 12142 "configure" +#line 12227 "configure" #include "confdefs.h" #include <stdlib.h> @@ -12158,16 +12243,16 @@ make an error } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:12161: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:12246: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:12164: \$? = $ac_status" >&5 + echo "$as_me:12249: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:12167: \"$ac_try\"") >&5 + { (eval echo "$as_me:12252: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:12170: \$? = $ac_status" >&5 + echo "$as_me:12255: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_xopen_source=no else @@ -12179,7 +12264,7 @@ cf_save="$CPPFLAGS" CPPFLAGS="${CPPFLAGS}-D_XOPEN_SOURCE=$cf_XOPEN_SOURCE" cat >"conftest.$ac_ext" <<_ACEOF -#line 12182 "configure" +#line 12267 "configure" #include "confdefs.h" #include <stdlib.h> @@ -12198,16 +12283,16 @@ make an error } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:12201: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:12286: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:12204: \$? = $ac_status" >&5 + echo "$as_me:12289: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:12207: \"$ac_try\"") >&5 + { (eval echo "$as_me:12292: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:12210: \$? = $ac_status" >&5 + echo "$as_me:12295: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_xopen_source=no else @@ -12222,7 +12307,7 @@ fi rm -f "conftest.$ac_objext" "conftest.$ac_ext" fi -echo "$as_me:12225: result: $cf_cv_xopen_source" >&5 +echo "$as_me:12310: result: $cf_cv_xopen_source" >&5 echo "${ECHO_T}$cf_cv_xopen_source" >&6 if test "$cf_cv_xopen_source" != no ; then @@ -12352,16 +12437,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:12355: checking if we should define _POSIX_C_SOURCE" >&5 +echo "$as_me:12440: 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}:12361: testing if the symbol is already defined go no further ..." 1>&5 +echo "${as_me:-configure}:12446: testing if the symbol is already defined go no further ..." 1>&5 cat >"conftest.$ac_ext" <<_ACEOF -#line 12364 "configure" +#line 12449 "configure" #include "confdefs.h" #include <sys/types.h> int @@ -12376,16 +12461,16 @@ make an error } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:12379: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:12464: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:12382: \$? = $ac_status" >&5 + echo "$as_me:12467: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:12385: \"$ac_try\"") >&5 + { (eval echo "$as_me:12470: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:12388: \$? = $ac_status" >&5 + echo "$as_me:12473: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_posix_c_source=no else @@ -12406,7 +12491,7 @@ cf_want_posix_source=no esac if test "$cf_want_posix_source" = yes ; then cat >"conftest.$ac_ext" <<_ACEOF -#line 12409 "configure" +#line 12494 "configure" #include "confdefs.h" #include <sys/types.h> int @@ -12421,16 +12506,16 @@ make an error } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:12424: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:12509: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:12427: \$? = $ac_status" >&5 + echo "$as_me:12512: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:12430: \"$ac_try\"") >&5 + { (eval echo "$as_me:12515: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:12433: \$? = $ac_status" >&5 + echo "$as_me:12518: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then : else @@ -12441,7 +12526,7 @@ fi rm -f "conftest.$ac_objext" "conftest.$ac_ext" fi -echo "${as_me:-configure}:12444: testing ifdef from value $cf_POSIX_C_SOURCE ..." 1>&5 +echo "${as_me:-configure}:12529: testing ifdef from value $cf_POSIX_C_SOURCE ..." 1>&5 CFLAGS="$cf_trim_CFLAGS" CPPFLAGS="$cf_trim_CPPFLAGS" @@ -12449,10 +12534,10 @@ echo "${as_me:-configure}:12444: testing ifdef from value $cf_POSIX_C_SOURCE ... test -n "$CPPFLAGS" && CPPFLAGS="$CPPFLAGS " CPPFLAGS="${CPPFLAGS}$cf_cv_posix_c_source" -echo "${as_me:-configure}:12452: testing if the second compile does not leave our definition intact error ..." 1>&5 +echo "${as_me:-configure}:12537: testing if the second compile does not leave our definition intact error ..." 1>&5 cat >"conftest.$ac_ext" <<_ACEOF -#line 12455 "configure" +#line 12540 "configure" #include "confdefs.h" #include <sys/types.h> int @@ -12467,16 +12552,16 @@ make an error } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:12470: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:12555: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:12473: \$? = $ac_status" >&5 + echo "$as_me:12558: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:12476: \"$ac_try\"") >&5 + { (eval echo "$as_me:12561: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:12479: \$? = $ac_status" >&5 + echo "$as_me:12564: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then : else @@ -12492,7 +12577,7 @@ fi rm -f "conftest.$ac_objext" "conftest.$ac_ext" fi -echo "$as_me:12495: result: $cf_cv_posix_c_source" >&5 +echo "$as_me:12580: 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 @@ -12686,7 +12771,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}:12689: testing add to \$CFLAGS $cf_new_cflags ..." 1>&5 +echo "${as_me:-configure}:12774: testing add to \$CFLAGS $cf_new_cflags ..." 1>&5 test -n "$CFLAGS" && CFLAGS="$CFLAGS " CFLAGS="${CFLAGS}$cf_new_cflags" @@ -12696,7 +12781,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}:12699: testing add to \$CPPFLAGS $cf_new_cppflags ..." 1>&5 +echo "${as_me:-configure}:12784: testing add to \$CPPFLAGS $cf_new_cppflags ..." 1>&5 test -n "$CPPFLAGS" && CPPFLAGS="$CPPFLAGS " CPPFLAGS="${CPPFLAGS}$cf_new_cppflags" @@ -12706,7 +12791,7 @@ 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}:12709: testing add to \$EXTRA_CPPFLAGS $cf_new_extra_cppflags ..." 1>&5 +echo "${as_me:-configure}:12794: testing add to \$EXTRA_CPPFLAGS $cf_new_extra_cppflags ..." 1>&5 test -n "$EXTRA_CPPFLAGS" && EXTRA_CPPFLAGS="$EXTRA_CPPFLAGS " EXTRA_CPPFLAGS="${EXTRA_CPPFLAGS}$cf_new_extra_cppflags" @@ -12716,10 +12801,10 @@ fi fi if test -n "$cf_XOPEN_SOURCE" && test -z "$cf_cv_xopen_source" ; then - echo "$as_me:12719: checking if _XOPEN_SOURCE really is set" >&5 + echo "$as_me:12804: checking if _XOPEN_SOURCE really is set" >&5 echo $ECHO_N "checking if _XOPEN_SOURCE really is set... $ECHO_C" >&6 cat >"conftest.$ac_ext" <<_ACEOF -#line 12722 "configure" +#line 12807 "configure" #include "confdefs.h" #include <stdlib.h> int @@ -12734,16 +12819,16 @@ make an error } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:12737: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:12822: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:12740: \$? = $ac_status" >&5 + echo "$as_me:12825: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:12743: \"$ac_try\"") >&5 + { (eval echo "$as_me:12828: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:12746: \$? = $ac_status" >&5 + echo "$as_me:12831: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_XOPEN_SOURCE_set=yes else @@ -12752,12 +12837,12 @@ cat "conftest.$ac_ext" >&5 cf_XOPEN_SOURCE_set=no fi rm -f "conftest.$ac_objext" "conftest.$ac_ext" - echo "$as_me:12755: result: $cf_XOPEN_SOURCE_set" >&5 + echo "$as_me:12840: result: $cf_XOPEN_SOURCE_set" >&5 echo "${ECHO_T}$cf_XOPEN_SOURCE_set" >&6 if test "$cf_XOPEN_SOURCE_set" = yes then cat >"conftest.$ac_ext" <<_ACEOF -#line 12760 "configure" +#line 12845 "configure" #include "confdefs.h" #include <stdlib.h> int @@ -12772,16 +12857,16 @@ make an error } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:12775: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:12860: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:12778: \$? = $ac_status" >&5 + echo "$as_me:12863: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:12781: \"$ac_try\"") >&5 + { (eval echo "$as_me:12866: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:12784: \$? = $ac_status" >&5 + echo "$as_me:12869: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_XOPEN_SOURCE_set_ok=yes else @@ -12792,19 +12877,19 @@ fi rm -f "conftest.$ac_objext" "conftest.$ac_ext" if test "$cf_XOPEN_SOURCE_set_ok" = no then - { echo "$as_me:12795: WARNING: _XOPEN_SOURCE is lower than requested" >&5 + { echo "$as_me:12880: WARNING: _XOPEN_SOURCE is lower than requested" >&5 echo "$as_me: WARNING: _XOPEN_SOURCE is lower than requested" >&2;} fi else -echo "$as_me:12800: checking if we should define _XOPEN_SOURCE" >&5 +echo "$as_me:12885: 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 12807 "configure" +#line 12892 "configure" #include "confdefs.h" #include <stdlib.h> @@ -12823,16 +12908,16 @@ make an error } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:12826: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:12911: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:12829: \$? = $ac_status" >&5 + echo "$as_me:12914: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:12832: \"$ac_try\"") >&5 + { (eval echo "$as_me:12917: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:12835: \$? = $ac_status" >&5 + echo "$as_me:12920: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_xopen_source=no else @@ -12844,7 +12929,7 @@ cf_save="$CPPFLAGS" CPPFLAGS="${CPPFLAGS}-D_XOPEN_SOURCE=$cf_XOPEN_SOURCE" cat >"conftest.$ac_ext" <<_ACEOF -#line 12847 "configure" +#line 12932 "configure" #include "confdefs.h" #include <stdlib.h> @@ -12863,16 +12948,16 @@ make an error } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:12866: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:12951: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:12869: \$? = $ac_status" >&5 + echo "$as_me:12954: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:12872: \"$ac_try\"") >&5 + { (eval echo "$as_me:12957: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:12875: \$? = $ac_status" >&5 + echo "$as_me:12960: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_xopen_source=no else @@ -12887,7 +12972,7 @@ fi rm -f "conftest.$ac_objext" "conftest.$ac_ext" fi -echo "$as_me:12890: result: $cf_cv_xopen_source" >&5 +echo "$as_me:12975: result: $cf_cv_xopen_source" >&5 echo "${ECHO_T}$cf_cv_xopen_source" >&6 if test "$cf_cv_xopen_source" != no ; then @@ -13006,14 +13091,14 @@ fi fi fi # cf_cv_posix_visible -echo "$as_me:13009: checking if SIGWINCH is defined" >&5 +echo "$as_me:13094: 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 13016 "configure" +#line 13101 "configure" #include "confdefs.h" #include <sys/types.h> @@ -13028,23 +13113,23 @@ int x = SIGWINCH; (void)x } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:13031: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:13116: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:13034: \$? = $ac_status" >&5 + echo "$as_me:13119: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:13037: \"$ac_try\"") >&5 + { (eval echo "$as_me:13122: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:13040: \$? = $ac_status" >&5 + echo "$as_me:13125: \$? = $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 13047 "configure" +#line 13132 "configure" #include "confdefs.h" #undef _XOPEN_SOURCE @@ -13062,16 +13147,16 @@ int x = SIGWINCH; (void)x } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:13065: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:13150: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:13068: \$? = $ac_status" >&5 + echo "$as_me:13153: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:13071: \"$ac_try\"") >&5 + { (eval echo "$as_me:13156: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:13074: \$? = $ac_status" >&5 + echo "$as_me:13159: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_define_sigwinch=maybe else @@ -13085,11 +13170,11 @@ fi rm -f "conftest.$ac_objext" "conftest.$ac_ext" fi -echo "$as_me:13088: result: $cf_cv_define_sigwinch" >&5 +echo "$as_me:13173: 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:13092: checking for actual SIGWINCH definition" >&5 +echo "$as_me:13177: 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 @@ -13100,7 +13185,7 @@ cf_sigwinch=32 while test "$cf_sigwinch" != 1 do cat >"conftest.$ac_ext" <<_ACEOF -#line 13103 "configure" +#line 13188 "configure" #include "confdefs.h" #undef _XOPEN_SOURCE @@ -13122,16 +13207,16 @@ int x = SIGWINCH; (void)x } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:13125: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:13210: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:13128: \$? = $ac_status" >&5 + echo "$as_me:13213: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:13131: \"$ac_try\"") >&5 + { (eval echo "$as_me:13216: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:13134: \$? = $ac_status" >&5 + echo "$as_me:13219: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_fixup_sigwinch=$cf_sigwinch break @@ -13145,7 +13230,7 @@ cf_sigwinch="`expr "$cf_sigwinch" - 1`" done fi -echo "$as_me:13148: result: $cf_cv_fixup_sigwinch" >&5 +echo "$as_me:13233: result: $cf_cv_fixup_sigwinch" >&5 echo "${ECHO_T}$cf_cv_fixup_sigwinch" >&6 if test "$cf_cv_fixup_sigwinch" != unknown ; then @@ -13157,7 +13242,7 @@ if test -n "$TRY_CFLAGS" ; then test -n "$verbose" && echo " checking additions to CFLAGS" 1>&6 -echo "${as_me:-configure}:13160: testing checking additions to CFLAGS ..." 1>&5 +echo "${as_me:-configure}:13245: testing checking additions to CFLAGS ..." 1>&5 cf_check_cflags="$CFLAGS" cf_check_cppflags="$CPPFLAGS" @@ -13242,7 +13327,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}:13245: testing add to \$CFLAGS $cf_new_cflags ..." 1>&5 +echo "${as_me:-configure}:13330: testing add to \$CFLAGS $cf_new_cflags ..." 1>&5 test -n "$CFLAGS" && CFLAGS="$CFLAGS " CFLAGS="${CFLAGS}$cf_new_cflags" @@ -13252,7 +13337,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}:13255: testing add to \$CPPFLAGS $cf_new_cppflags ..." 1>&5 +echo "${as_me:-configure}:13340: testing add to \$CPPFLAGS $cf_new_cppflags ..." 1>&5 test -n "$CPPFLAGS" && CPPFLAGS="$CPPFLAGS " CPPFLAGS="${CPPFLAGS}$cf_new_cppflags" @@ -13262,7 +13347,7 @@ 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}:13265: testing add to \$EXTRA_CPPFLAGS $cf_new_extra_cppflags ..." 1>&5 +echo "${as_me:-configure}:13350: testing add to \$EXTRA_CPPFLAGS $cf_new_extra_cppflags ..." 1>&5 test -n "$EXTRA_CPPFLAGS" && EXTRA_CPPFLAGS="$EXTRA_CPPFLAGS " EXTRA_CPPFLAGS="${EXTRA_CPPFLAGS}$cf_new_extra_cppflags" @@ -13271,7 +13356,7 @@ fi if test "x$cf_check_cflags" != "x$CFLAGS" ; then cat >"conftest.$ac_ext" <<_ACEOF -#line 13274 "configure" +#line 13359 "configure" #include "confdefs.h" #include <stdio.h> int @@ -13283,16 +13368,16 @@ printf("Hello world"); } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:13286: \"$ac_link\"") >&5 +if { (eval echo "$as_me:13371: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:13289: \$? = $ac_status" >&5 + echo "$as_me:13374: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:13292: \"$ac_try\"") >&5 + { (eval echo "$as_me:13377: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:13295: \$? = $ac_status" >&5 + echo "$as_me:13380: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then : else @@ -13300,12 +13385,12 @@ else cat "conftest.$ac_ext" >&5 test -n "$verbose" && echo " test-compile failed. Undoing change to \$CFLAGS" 1>&6 -echo "${as_me:-configure}:13303: testing test-compile failed. Undoing change to \$CFLAGS ..." 1>&5 +echo "${as_me:-configure}:13388: testing test-compile failed. Undoing change to \$CFLAGS ..." 1>&5 if test "x$cf_check_cppflags" != "x$CPPFLAGS" ; then test -n "$verbose" && echo " but keeping change to \$CPPFLAGS" 1>&6 -echo "${as_me:-configure}:13308: testing but keeping change to \$CPPFLAGS ..." 1>&5 +echo "${as_me:-configure}:13393: testing but keeping change to \$CPPFLAGS ..." 1>&5 fi CFLAGS="$cf_check_cflags" @@ -13317,7 +13402,7 @@ fi ### Look for network libraries first, since some functions (such as gethostname) ### are used in a lot of places. -echo "$as_me:13320: checking if you want NSS compatible SSL libraries" >&5 +echo "$as_me:13405: 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 @@ -13332,10 +13417,10 @@ else fi; fi -echo "$as_me:13335: result: $cf_cv_use_libnss_compat" >&5 +echo "$as_me:13420: result: $cf_cv_use_libnss_compat" >&5 echo "${ECHO_T}$cf_cv_use_libnss_compat" >&6 -echo "$as_me:13338: checking if you want ssl library" >&5 +echo "$as_me:13423: 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 @@ -13350,10 +13435,10 @@ else fi; fi -echo "$as_me:13353: result: $cf_cv_use_libssl" >&5 +echo "$as_me:13438: result: $cf_cv_use_libssl" >&5 echo "${ECHO_T}$cf_cv_use_libssl" >&6 -echo "$as_me:13356: checking if you want gnutls support" >&5 +echo "$as_me:13441: 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 @@ -13368,11 +13453,11 @@ else fi; fi -echo "$as_me:13371: result: $cf_cv_use_libgnutls" >&5 +echo "$as_me:13456: 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:13375: checking if you want gnutls-openssl compat" >&5 +echo "$as_me:13460: 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 @@ -13387,10 +13472,10 @@ else fi; fi -echo "$as_me:13390: result: $cf_cv_gnutls_compat" >&5 +echo "$as_me:13475: result: $cf_cv_gnutls_compat" >&5 echo "${ECHO_T}$cf_cv_gnutls_compat" >&6 -echo "$as_me:13393: checking if you want socks library" >&5 +echo "$as_me:13478: 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 @@ -13405,10 +13490,10 @@ else fi; fi -echo "$as_me:13408: result: $cf_cv_use_libsocks" >&5 +echo "$as_me:13493: result: $cf_cv_use_libsocks" >&5 echo "${ECHO_T}$cf_cv_use_libsocks" >&6 -echo "$as_me:13411: checking if you want socks5 library" >&5 +echo "$as_me:13496: 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 @@ -13423,7 +13508,7 @@ else fi; fi -echo "$as_me:13426: result: $cf_cv_use_libsocks5" >&5 +echo "$as_me:13511: result: $cf_cv_use_libsocks5" >&5 echo "${ECHO_T}$cf_cv_use_libsocks5" >&6 if test "x$cf_cv_use_libsocks" != xno ; then @@ -13465,7 +13550,7 @@ if test -n "$cf_searchpath/include" ; then CPPFLAGS="${CPPFLAGS}-I$cf_add_incdir" cat >"conftest.$ac_ext" <<_ACEOF -#line 13468 "configure" +#line 13553 "configure" #include "confdefs.h" #include <stdio.h> int @@ -13477,16 +13562,16 @@ printf("Hello") } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:13480: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:13565: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:13483: \$? = $ac_status" >&5 + echo "$as_me:13568: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:13486: \"$ac_try\"") >&5 + { (eval echo "$as_me:13571: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:13489: \$? = $ac_status" >&5 + echo "$as_me:13574: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then : else @@ -13503,7 +13588,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}:13506: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:13591: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -13549,7 +13634,7 @@ if test -n "$cf_searchpath/../include" ; then CPPFLAGS="${CPPFLAGS}-I$cf_add_incdir" cat >"conftest.$ac_ext" <<_ACEOF -#line 13552 "configure" +#line 13637 "configure" #include "confdefs.h" #include <stdio.h> int @@ -13561,16 +13646,16 @@ printf("Hello") } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:13564: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:13649: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:13567: \$? = $ac_status" >&5 + echo "$as_me:13652: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:13570: \"$ac_try\"") >&5 + { (eval echo "$as_me:13655: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:13573: \$? = $ac_status" >&5 + echo "$as_me:13658: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then : else @@ -13587,7 +13672,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}:13590: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:13675: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -13605,7 +13690,7 @@ echo "${as_me:-configure}:13590: testing adding $cf_add_incdir to include-path . fi else -{ { echo "$as_me:13608: error: cannot find socks library under $cf_cv_use_libsocks" >&5 +{ { echo "$as_me:13693: 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 @@ -13630,7 +13715,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}:13633: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:13718: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -13659,7 +13744,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}:13662: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:13747: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -13668,7 +13753,7 @@ echo "${as_me:-configure}:13662: testing adding $cf_add_libdir to library-path . fi else -{ { echo "$as_me:13671: error: cannot find socks library under $cf_cv_use_libsocks" >&5 +{ { echo "$as_me:13756: 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 @@ -13682,12 +13767,12 @@ esac cf_cv_header_path_socks= cf_cv_library_path_socks= -echo "${as_me:-configure}:13685: testing Starting FIND_LINKAGE(socks,) ..." 1>&5 +echo "${as_me:-configure}:13770: testing Starting FIND_LINKAGE(socks,) ..." 1>&5 cf_save_LIBS="$LIBS" cat >"conftest.$ac_ext" <<_ACEOF -#line 13690 "configure" +#line 13775 "configure" #include "confdefs.h" #include <stdio.h> @@ -13703,16 +13788,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:13706: \"$ac_link\"") >&5 +if { (eval echo "$as_me:13791: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:13709: \$? = $ac_status" >&5 + echo "$as_me:13794: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:13712: \"$ac_try\"") >&5 + { (eval echo "$as_me:13797: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:13715: \$? = $ac_status" >&5 + echo "$as_me:13800: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_find_linkage_socks=yes @@ -13726,7 +13811,7 @@ cat "conftest.$ac_ext" >&5 LIBS="-lsocks $cf_save_LIBS" cat >"conftest.$ac_ext" <<_ACEOF -#line 13729 "configure" +#line 13814 "configure" #include "confdefs.h" #include <stdio.h> @@ -13742,16 +13827,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:13745: \"$ac_link\"") >&5 +if { (eval echo "$as_me:13830: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:13748: \$? = $ac_status" >&5 + echo "$as_me:13833: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:13751: \"$ac_try\"") >&5 + { (eval echo "$as_me:13836: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:13754: \$? = $ac_status" >&5 + echo "$as_me:13839: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_find_linkage_socks=yes @@ -13768,9 +13853,9 @@ cat "conftest.$ac_ext" >&5 test -n "$verbose" && echo " find linkage for socks library" 1>&6 -echo "${as_me:-configure}:13771: testing find linkage for socks library ..." 1>&5 +echo "${as_me:-configure}:13856: testing find linkage for socks library ..." 1>&5 -echo "${as_me:-configure}:13773: testing Searching for headers in FIND_LINKAGE(socks,) ..." 1>&5 +echo "${as_me:-configure}:13858: testing Searching for headers in FIND_LINKAGE(socks,) ..." 1>&5 cf_save_CPPFLAGS="$CPPFLAGS" cf_test_CPPFLAGS="$CPPFLAGS" @@ -13861,7 +13946,7 @@ cf_search="$cf_search $cf_header_path_list" 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}:13864: testing ... testing $cf_cv_header_path_socks ..." 1>&5 +echo "${as_me:-configure}:13949: testing ... testing $cf_cv_header_path_socks ..." 1>&5 CPPFLAGS="$cf_save_CPPFLAGS" @@ -13869,7 +13954,7 @@ echo "${as_me:-configure}:13864: testing ... testing $cf_cv_header_path_socks .. CPPFLAGS="${CPPFLAGS}-I$cf_cv_header_path_socks" cat >"conftest.$ac_ext" <<_ACEOF -#line 13872 "configure" +#line 13957 "configure" #include "confdefs.h" #include <stdio.h> @@ -13885,21 +13970,21 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:13888: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:13973: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:13891: \$? = $ac_status" >&5 + echo "$as_me:13976: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:13894: \"$ac_try\"") >&5 + { (eval echo "$as_me:13979: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:13897: \$? = $ac_status" >&5 + echo "$as_me:13982: \$? = $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}:13902: testing ... found socks headers in $cf_cv_header_path_socks ..." 1>&5 +echo "${as_me:-configure}:13987: testing ... found socks headers in $cf_cv_header_path_socks ..." 1>&5 cf_cv_find_linkage_socks=maybe cf_test_CPPFLAGS="$CPPFLAGS" @@ -13917,7 +14002,7 @@ rm -f "conftest.$ac_objext" "conftest.$ac_ext" if test "$cf_cv_find_linkage_socks" = maybe ; then -echo "${as_me:-configure}:13920: testing Searching for socks library in FIND_LINKAGE(socks,) ..." 1>&5 +echo "${as_me:-configure}:14005: testing Searching for socks library in FIND_LINKAGE(socks,) ..." 1>&5 cf_save_LIBS="$LIBS" cf_save_LDFLAGS="$LDFLAGS" @@ -13992,13 +14077,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}:13995: testing ... testing $cf_cv_library_path_socks ..." 1>&5 +echo "${as_me:-configure}:14080: 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 14001 "configure" +#line 14086 "configure" #include "confdefs.h" #include <stdio.h> @@ -14014,21 +14099,21 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:14017: \"$ac_link\"") >&5 +if { (eval echo "$as_me:14102: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:14020: \$? = $ac_status" >&5 + echo "$as_me:14105: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:14023: \"$ac_try\"") >&5 + { (eval echo "$as_me:14108: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:14026: \$? = $ac_status" >&5 + echo "$as_me:14111: \$? = $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}:14031: testing ... found socks library in $cf_cv_library_path_socks ..." 1>&5 +echo "${as_me:-configure}:14116: testing ... found socks library in $cf_cv_library_path_socks ..." 1>&5 cf_cv_find_linkage_socks=yes cf_cv_library_file_socks="-lsocks" @@ -14090,7 +14175,7 @@ if test -n "$cf_cv_header_path_socks" ; then CPPFLAGS="${CPPFLAGS}-I$cf_add_incdir" cat >"conftest.$ac_ext" <<_ACEOF -#line 14093 "configure" +#line 14178 "configure" #include "confdefs.h" #include <stdio.h> int @@ -14102,16 +14187,16 @@ printf("Hello") } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:14105: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:14190: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:14108: \$? = $ac_status" >&5 + echo "$as_me:14193: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:14111: \"$ac_try\"") >&5 + { (eval echo "$as_me:14196: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:14114: \$? = $ac_status" >&5 + echo "$as_me:14199: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then : else @@ -14128,7 +14213,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}:14131: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:14216: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -14164,7 +14249,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}:14167: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:14252: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -14189,7 +14274,7 @@ done LIBS="$cf_add_libs" else -{ echo "$as_me:14192: WARNING: Cannot find socks library" >&5 +{ echo "$as_me:14277: WARNING: Cannot find socks library" >&5 echo "$as_me: WARNING: Cannot find socks library" >&2;} fi @@ -14232,7 +14317,7 @@ cat >>confdefs.h <<\EOF EOF else - { { echo "$as_me:14235: error: cannot link with socks library" >&5 + { { echo "$as_me:14320: error: cannot link with socks library" >&5 echo "$as_me: error: cannot link with socks library" >&2;} { (exit 1); exit 1; }; } fi @@ -14276,7 +14361,7 @@ if test -n "$cf_searchpath/include" ; then CPPFLAGS="${CPPFLAGS}-I$cf_add_incdir" cat >"conftest.$ac_ext" <<_ACEOF -#line 14279 "configure" +#line 14364 "configure" #include "confdefs.h" #include <stdio.h> int @@ -14288,16 +14373,16 @@ printf("Hello") } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:14291: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:14376: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:14294: \$? = $ac_status" >&5 + echo "$as_me:14379: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:14297: \"$ac_try\"") >&5 + { (eval echo "$as_me:14382: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:14300: \$? = $ac_status" >&5 + echo "$as_me:14385: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then : else @@ -14314,7 +14399,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}:14317: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:14402: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -14360,7 +14445,7 @@ if test -n "$cf_searchpath/../include" ; then CPPFLAGS="${CPPFLAGS}-I$cf_add_incdir" cat >"conftest.$ac_ext" <<_ACEOF -#line 14363 "configure" +#line 14448 "configure" #include "confdefs.h" #include <stdio.h> int @@ -14372,16 +14457,16 @@ printf("Hello") } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:14375: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:14460: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:14378: \$? = $ac_status" >&5 + echo "$as_me:14463: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:14381: \"$ac_try\"") >&5 + { (eval echo "$as_me:14466: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:14384: \$? = $ac_status" >&5 + echo "$as_me:14469: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then : else @@ -14398,7 +14483,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}:14401: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:14486: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -14416,7 +14501,7 @@ echo "${as_me:-configure}:14401: testing adding $cf_add_incdir to include-path . fi else -{ { echo "$as_me:14419: error: cannot find socks5 library under $cf_cv_use_libsocks5" >&5 +{ { echo "$as_me:14504: 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 @@ -14441,7 +14526,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}:14444: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:14529: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -14470,7 +14555,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}:14473: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:14558: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -14479,7 +14564,7 @@ echo "${as_me:-configure}:14473: testing adding $cf_add_libdir to library-path . fi else -{ { echo "$as_me:14482: error: cannot find socks5 library under $cf_cv_use_libsocks5" >&5 +{ { echo "$as_me:14567: 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 @@ -14512,11 +14597,11 @@ cat >>confdefs.h <<\EOF #define SOCKS 1 EOF -echo "$as_me:14515: checking if the socks library uses socks4 prefix" >&5 +echo "$as_me:14600: 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 14519 "configure" +#line 14604 "configure" #include "confdefs.h" #include <socks.h> @@ -14530,16 +14615,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:14533: \"$ac_link\"") >&5 +if { (eval echo "$as_me:14618: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:14536: \$? = $ac_status" >&5 + echo "$as_me:14621: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:14539: \"$ac_try\"") >&5 + { (eval echo "$as_me:14624: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:14542: \$? = $ac_status" >&5 + echo "$as_me:14627: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cat >>confdefs.h <<\EOF @@ -14551,7 +14636,7 @@ else echo "$as_me: failed program was:" >&5 cat "conftest.$ac_ext" >&5 cat >"conftest.$ac_ext" <<_ACEOF -#line 14554 "configure" +#line 14639 "configure" #include "confdefs.h" #include <socks.h> int @@ -14563,29 +14648,29 @@ SOCKSinit((char *)0) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:14566: \"$ac_link\"") >&5 +if { (eval echo "$as_me:14651: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:14569: \$? = $ac_status" >&5 + echo "$as_me:14654: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:14572: \"$ac_try\"") >&5 + { (eval echo "$as_me:14657: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:14575: \$? = $ac_status" >&5 + echo "$as_me:14660: \$? = $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:14581: error: Cannot link with socks5 library" >&5 +{ { echo "$as_me:14666: 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:14588: result: $cf_use_socks4" >&5 +echo "$as_me:14673: result: $cf_use_socks4" >&5 echo "${ECHO_T}$cf_use_socks4" >&6 if test "$cf_use_socks4" = "yes" ; then @@ -14640,10 +14725,10 @@ EOF fi -echo "$as_me:14643: checking if socks5p.h is available" >&5 +echo "$as_me:14728: 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 14646 "configure" +#line 14731 "configure" #include "confdefs.h" #define INCLUDE_PROTOTYPES @@ -14658,16 +14743,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:14661: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:14746: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:14664: \$? = $ac_status" >&5 + echo "$as_me:14749: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:14667: \"$ac_try\"") >&5 + { (eval echo "$as_me:14752: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:14670: \$? = $ac_status" >&5 + echo "$as_me:14755: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_use_socks5p_h=yes else @@ -14676,7 +14761,7 @@ cat "conftest.$ac_ext" >&5 cf_use_socks5p_h=no fi rm -f "conftest.$ac_objext" "conftest.$ac_ext" -echo "$as_me:14679: result: $cf_use_socks5p_h" >&5 +echo "$as_me:14764: result: $cf_use_socks5p_h" >&5 echo "${ECHO_T}$cf_use_socks5p_h" >&6 test "$cf_use_socks5p_h" = yes && @@ -14688,14 +14773,14 @@ else cf_test_netlibs=no -echo "$as_me:14691: checking for network libraries" >&5 +echo "$as_me:14776: 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:14698: result: working..." >&5 +echo "$as_me:14783: result: working..." >&5 echo "${ECHO_T}working..." >&6 cf_cv_netlibs="" @@ -14707,23 +14792,23 @@ case "$host_os" in 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:14710: checking for $ac_header" >&5 +echo "$as_me:14795: 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 14716 "configure" +#line 14801 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:14720: \"$ac_cpp "conftest.$ac_ext"\"") >&5 +if { (eval echo "$as_me:14805: \"$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:14726: \$? = $ac_status" >&5 + echo "$as_me:14811: \$? = $ac_status" >&5 (exit "$ac_status"); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -14742,7 +14827,7 @@ else fi rm -f conftest.err "conftest.$ac_ext" fi -echo "$as_me:14745: result: `eval echo '${'"$as_ac_Header"'}'`" >&5 +echo "$as_me:14830: 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 @@ -14777,7 +14862,7 @@ done LIBS="$cf_add_libs" cat >"conftest.$ac_ext" <<_ACEOF -#line 14780 "configure" +#line 14865 "configure" #include "confdefs.h" #ifdef HAVE_WINDOWS_H @@ -14804,22 +14889,22 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:14807: \"$ac_link\"") >&5 +if { (eval echo "$as_me:14892: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:14810: \$? = $ac_status" >&5 + echo "$as_me:14895: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:14813: \"$ac_try\"") >&5 + { (eval echo "$as_me:14898: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:14816: \$? = $ac_status" >&5 + echo "$as_me:14901: \$? = $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:14822: error: Cannot link against winsock library" >&5 +{ { echo "$as_me:14907: error: Cannot link against winsock library" >&5 echo "$as_me: error: Cannot link against winsock library" >&2;} { (exit 1); exit 1; }; } fi @@ -14832,13 +14917,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:14835: checking for $ac_func" >&5 +echo "$as_me:14920: 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 14841 "configure" +#line 14926 "configure" #include "confdefs.h" #define $ac_func autoconf_temporary #include <limits.h> /* least-intrusive standard header which defines gcc2 __stub macros */ @@ -14869,16 +14954,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:14872: \"$ac_link\"") >&5 +if { (eval echo "$as_me:14957: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:14875: \$? = $ac_status" >&5 + echo "$as_me:14960: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:14878: \"$ac_try\"") >&5 + { (eval echo "$as_me:14963: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:14881: \$? = $ac_status" >&5 + echo "$as_me:14966: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then eval "$as_ac_var=yes" else @@ -14888,7 +14973,7 @@ eval "$as_ac_var=no" fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:14891: result: `eval echo '${'"$as_ac_var"'}'`" >&5 +echo "$as_me:14976: 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 @@ -14897,7 +14982,7 @@ EOF else -echo "$as_me:14900: checking for gethostname in -lnsl" >&5 +echo "$as_me:14985: 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 @@ -14905,7 +14990,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lnsl $cf_cv_netlibs $LIBS" cat >"conftest.$ac_ext" <<_ACEOF -#line 14908 "configure" +#line 14993 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -14924,16 +15009,16 @@ gethostname (); } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:14927: \"$ac_link\"") >&5 +if { (eval echo "$as_me:15012: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:14930: \$? = $ac_status" >&5 + echo "$as_me:15015: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:14933: \"$ac_try\"") >&5 + { (eval echo "$as_me:15018: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:14936: \$? = $ac_status" >&5 + echo "$as_me:15021: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_lib_nsl_gethostname=yes else @@ -14944,7 +15029,7 @@ fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:14947: result: $ac_cv_lib_nsl_gethostname" >&5 +echo "$as_me:15032: 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 @@ -14961,7 +15046,7 @@ else ac_cv_func_gethostname=unknown unset ac_cv_func_gethostname 2>/dev/null -echo "$as_me:14964: checking for gethostname in -lsocket" >&5 +echo "$as_me:15049: 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 @@ -14969,7 +15054,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lsocket $cf_cv_netlibs $LIBS" cat >"conftest.$ac_ext" <<_ACEOF -#line 14972 "configure" +#line 15057 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -14988,16 +15073,16 @@ gethostname (); } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:14991: \"$ac_link\"") >&5 +if { (eval echo "$as_me:15076: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:14994: \$? = $ac_status" >&5 + echo "$as_me:15079: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:14997: \"$ac_try\"") >&5 + { (eval echo "$as_me:15082: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:15000: \$? = $ac_status" >&5 + echo "$as_me:15085: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_lib_socket_gethostname=yes else @@ -15008,7 +15093,7 @@ fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:15011: result: $ac_cv_lib_socket_gethostname" >&5 +echo "$as_me:15096: 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 @@ -15032,7 +15117,7 @@ fi fi done - echo "$as_me:15035: checking for main in -linet" >&5 + echo "$as_me:15120: 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 @@ -15040,7 +15125,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-linet $LIBS" cat >"conftest.$ac_ext" <<_ACEOF -#line 15043 "configure" +#line 15128 "configure" #include "confdefs.h" int @@ -15052,16 +15137,16 @@ main (); } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:15055: \"$ac_link\"") >&5 +if { (eval echo "$as_me:15140: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:15058: \$? = $ac_status" >&5 + echo "$as_me:15143: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:15061: \"$ac_try\"") >&5 + { (eval echo "$as_me:15146: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:15064: \$? = $ac_status" >&5 + echo "$as_me:15149: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_lib_inet_main=yes else @@ -15072,7 +15157,7 @@ fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:15075: result: $ac_cv_lib_inet_main" >&5 +echo "$as_me:15160: 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" @@ -15083,13 +15168,13 @@ fi for ac_func in socket do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` -echo "$as_me:15086: checking for $ac_func" >&5 +echo "$as_me:15171: 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 15092 "configure" +#line 15177 "configure" #include "confdefs.h" #define $ac_func autoconf_temporary #include <limits.h> /* least-intrusive standard header which defines gcc2 __stub macros */ @@ -15120,16 +15205,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:15123: \"$ac_link\"") >&5 +if { (eval echo "$as_me:15208: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:15126: \$? = $ac_status" >&5 + echo "$as_me:15211: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:15129: \"$ac_try\"") >&5 + { (eval echo "$as_me:15214: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:15132: \$? = $ac_status" >&5 + echo "$as_me:15217: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then eval "$as_ac_var=yes" else @@ -15139,7 +15224,7 @@ eval "$as_ac_var=no" fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:15142: result: `eval echo '${'"$as_ac_var"'}'`" >&5 +echo "$as_me:15227: 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 @@ -15148,7 +15233,7 @@ EOF else -echo "$as_me:15151: checking for socket in -lsocket" >&5 +echo "$as_me:15236: 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 @@ -15156,7 +15241,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lsocket $cf_cv_netlibs $LIBS" cat >"conftest.$ac_ext" <<_ACEOF -#line 15159 "configure" +#line 15244 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -15175,16 +15260,16 @@ socket (); } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:15178: \"$ac_link\"") >&5 +if { (eval echo "$as_me:15263: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:15181: \$? = $ac_status" >&5 + echo "$as_me:15266: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:15184: \"$ac_try\"") >&5 + { (eval echo "$as_me:15269: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:15187: \$? = $ac_status" >&5 + echo "$as_me:15272: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_lib_socket_socket=yes else @@ -15195,7 +15280,7 @@ fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:15198: result: $ac_cv_lib_socket_socket" >&5 +echo "$as_me:15283: 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 @@ -15212,7 +15297,7 @@ else ac_cv_func_socket=unknown unset ac_cv_func_socket 2>/dev/null -echo "$as_me:15215: checking for socket in -lbsd" >&5 +echo "$as_me:15300: 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 @@ -15220,7 +15305,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lbsd $cf_cv_netlibs $LIBS" cat >"conftest.$ac_ext" <<_ACEOF -#line 15223 "configure" +#line 15308 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -15239,16 +15324,16 @@ socket (); } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:15242: \"$ac_link\"") >&5 +if { (eval echo "$as_me:15327: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:15245: \$? = $ac_status" >&5 + echo "$as_me:15330: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:15248: \"$ac_try\"") >&5 + { (eval echo "$as_me:15333: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:15251: \$? = $ac_status" >&5 + echo "$as_me:15336: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_lib_bsd_socket=yes else @@ -15259,7 +15344,7 @@ fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:15262: result: $ac_cv_lib_bsd_socket" >&5 +echo "$as_me:15347: 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 @@ -15288,13 +15373,13 @@ done for ac_func in gethostbyname do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` -echo "$as_me:15291: checking for $ac_func" >&5 +echo "$as_me:15376: 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 15297 "configure" +#line 15382 "configure" #include "confdefs.h" #define $ac_func autoconf_temporary #include <limits.h> /* least-intrusive standard header which defines gcc2 __stub macros */ @@ -15325,16 +15410,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:15328: \"$ac_link\"") >&5 +if { (eval echo "$as_me:15413: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:15331: \$? = $ac_status" >&5 + echo "$as_me:15416: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:15334: \"$ac_try\"") >&5 + { (eval echo "$as_me:15419: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:15337: \$? = $ac_status" >&5 + echo "$as_me:15422: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then eval "$as_ac_var=yes" else @@ -15344,7 +15429,7 @@ eval "$as_ac_var=no" fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:15347: result: `eval echo '${'"$as_ac_var"'}'`" >&5 +echo "$as_me:15432: 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 @@ -15353,7 +15438,7 @@ EOF else -echo "$as_me:15356: checking for gethostbyname in -lnsl" >&5 +echo "$as_me:15441: 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 @@ -15361,7 +15446,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lnsl $cf_cv_netlibs $LIBS" cat >"conftest.$ac_ext" <<_ACEOF -#line 15364 "configure" +#line 15449 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -15380,16 +15465,16 @@ gethostbyname (); } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:15383: \"$ac_link\"") >&5 +if { (eval echo "$as_me:15468: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:15386: \$? = $ac_status" >&5 + echo "$as_me:15471: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:15389: \"$ac_try\"") >&5 + { (eval echo "$as_me:15474: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:15392: \$? = $ac_status" >&5 + echo "$as_me:15477: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_lib_nsl_gethostbyname=yes else @@ -15400,7 +15485,7 @@ fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:15403: result: $ac_cv_lib_nsl_gethostbyname" >&5 +echo "$as_me:15488: 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 @@ -15425,13 +15510,13 @@ done for ac_func in inet_ntoa do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` -echo "$as_me:15428: checking for $ac_func" >&5 +echo "$as_me:15513: 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 15434 "configure" +#line 15519 "configure" #include "confdefs.h" #define $ac_func autoconf_temporary #include <limits.h> /* least-intrusive standard header which defines gcc2 __stub macros */ @@ -15462,16 +15547,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:15465: \"$ac_link\"") >&5 +if { (eval echo "$as_me:15550: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:15468: \$? = $ac_status" >&5 + echo "$as_me:15553: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:15471: \"$ac_try\"") >&5 + { (eval echo "$as_me:15556: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:15474: \$? = $ac_status" >&5 + echo "$as_me:15559: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then eval "$as_ac_var=yes" else @@ -15481,7 +15566,7 @@ eval "$as_ac_var=no" fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:15484: result: `eval echo '${'"$as_ac_var"'}'`" >&5 +echo "$as_me:15569: 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 @@ -15490,7 +15575,7 @@ EOF else -echo "$as_me:15493: checking for inet_ntoa in -lnsl" >&5 +echo "$as_me:15578: checking for inet_ntoa in -lnsl" >&5 echo $ECHO_N "checking for inet_ntoa in -lnsl... $ECHO_C" >&6 if test "${ac_cv_lib_nsl_inet_ntoa+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -15498,7 +15583,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lnsl $cf_cv_netlibs $LIBS" cat >"conftest.$ac_ext" <<_ACEOF -#line 15501 "configure" +#line 15586 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -15517,16 +15602,16 @@ inet_ntoa (); } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:15520: \"$ac_link\"") >&5 +if { (eval echo "$as_me:15605: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:15523: \$? = $ac_status" >&5 + echo "$as_me:15608: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:15526: \"$ac_try\"") >&5 + { (eval echo "$as_me:15611: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:15529: \$? = $ac_status" >&5 + echo "$as_me:15614: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_lib_nsl_inet_ntoa=yes else @@ -15537,7 +15622,7 @@ fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:15540: result: $ac_cv_lib_nsl_inet_ntoa" >&5 +echo "$as_me:15625: result: $ac_cv_lib_nsl_inet_ntoa" >&5 echo "${ECHO_T}$ac_cv_lib_nsl_inet_ntoa" >&6 if test "$ac_cv_lib_nsl_inet_ntoa" = yes; then @@ -15562,13 +15647,13 @@ done for ac_func in gethostbyname do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` -echo "$as_me:15565: checking for $ac_func" >&5 +echo "$as_me:15650: 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 15571 "configure" +#line 15656 "configure" #include "confdefs.h" #define $ac_func autoconf_temporary #include <limits.h> /* least-intrusive standard header which defines gcc2 __stub macros */ @@ -15599,16 +15684,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:15602: \"$ac_link\"") >&5 +if { (eval echo "$as_me:15687: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:15605: \$? = $ac_status" >&5 + echo "$as_me:15690: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:15608: \"$ac_try\"") >&5 + { (eval echo "$as_me:15693: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:15611: \$? = $ac_status" >&5 + echo "$as_me:15696: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then eval "$as_ac_var=yes" else @@ -15618,7 +15703,7 @@ eval "$as_ac_var=no" fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:15621: result: `eval echo '${'"$as_ac_var"'}'`" >&5 +echo "$as_me:15706: 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 @@ -15627,7 +15712,7 @@ EOF else -echo "$as_me:15630: checking for gethostbyname in -lnetwork" >&5 +echo "$as_me:15715: 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 @@ -15635,7 +15720,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lnetwork $cf_cv_netlibs $LIBS" cat >"conftest.$ac_ext" <<_ACEOF -#line 15638 "configure" +#line 15723 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -15654,16 +15739,16 @@ gethostbyname (); } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:15657: \"$ac_link\"") >&5 +if { (eval echo "$as_me:15742: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:15660: \$? = $ac_status" >&5 + echo "$as_me:15745: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:15663: \"$ac_try\"") >&5 + { (eval echo "$as_me:15748: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:15666: \$? = $ac_status" >&5 + echo "$as_me:15751: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_lib_network_gethostbyname=yes else @@ -15674,7 +15759,7 @@ fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:15677: result: $ac_cv_lib_network_gethostbyname" >&5 +echo "$as_me:15762: 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 @@ -15699,13 +15784,13 @@ done for ac_func in strcasecmp do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` -echo "$as_me:15702: checking for $ac_func" >&5 +echo "$as_me:15787: 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 15708 "configure" +#line 15793 "configure" #include "confdefs.h" #define $ac_func autoconf_temporary #include <limits.h> /* least-intrusive standard header which defines gcc2 __stub macros */ @@ -15736,16 +15821,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:15739: \"$ac_link\"") >&5 +if { (eval echo "$as_me:15824: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:15742: \$? = $ac_status" >&5 + echo "$as_me:15827: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:15745: \"$ac_try\"") >&5 + { (eval echo "$as_me:15830: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:15748: \$? = $ac_status" >&5 + echo "$as_me:15833: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then eval "$as_ac_var=yes" else @@ -15755,7 +15840,7 @@ eval "$as_ac_var=no" fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:15758: result: `eval echo '${'"$as_ac_var"'}'`" >&5 +echo "$as_me:15843: 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 @@ -15764,7 +15849,7 @@ EOF else -echo "$as_me:15767: checking for strcasecmp in -lresolv" >&5 +echo "$as_me:15852: 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 @@ -15772,7 +15857,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lresolv $cf_cv_netlibs $LIBS" cat >"conftest.$ac_ext" <<_ACEOF -#line 15775 "configure" +#line 15860 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -15791,16 +15876,16 @@ strcasecmp (); } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:15794: \"$ac_link\"") >&5 +if { (eval echo "$as_me:15879: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:15797: \$? = $ac_status" >&5 + echo "$as_me:15882: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:15800: \"$ac_try\"") >&5 + { (eval echo "$as_me:15885: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:15803: \$? = $ac_status" >&5 + echo "$as_me:15888: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_lib_resolv_strcasecmp=yes else @@ -15811,7 +15896,7 @@ fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:15814: result: $ac_cv_lib_resolv_strcasecmp" >&5 +echo "$as_me:15899: 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 @@ -15868,14 +15953,14 @@ test "$cf_test_netlibs" = no && echo "$cf_cv_netlibs" >&6 fi -echo "$as_me:15871: checking for inet_aton function" >&5 +echo "$as_me:15956: 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 15878 "configure" +#line 15963 "configure" #include "confdefs.h" #if defined(__MINGW32__) @@ -15910,16 +15995,16 @@ inet_aton(0, (struct in_addr *)0) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:15913: \"$ac_link\"") >&5 +if { (eval echo "$as_me:15998: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:15916: \$? = $ac_status" >&5 + echo "$as_me:16001: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:15919: \"$ac_try\"") >&5 + { (eval echo "$as_me:16004: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:15922: \$? = $ac_status" >&5 + echo "$as_me:16007: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_have_inet_aton=yes else @@ -15929,7 +16014,7 @@ cf_cv_have_inet_aton=no fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:15932: result: $cf_cv_have_inet_aton" >&5 +echo "$as_me:16017: 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 @@ -15938,14 +16023,14 @@ cat >>confdefs.h <<\EOF EOF else - echo "$as_me:15941: checking for inet_addr function" >&5 + echo "$as_me:16026: 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 15948 "configure" +#line 16033 "configure" #include "confdefs.h" #if defined(__MINGW32__) @@ -15980,16 +16065,16 @@ inet_addr(0) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:15983: \"$ac_link\"") >&5 +if { (eval echo "$as_me:16068: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:15986: \$? = $ac_status" >&5 + echo "$as_me:16071: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:15989: \"$ac_try\"") >&5 + { (eval echo "$as_me:16074: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:15992: \$? = $ac_status" >&5 + echo "$as_me:16077: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_have_inet_addr=yes else @@ -15999,10 +16084,10 @@ cf_cv_have_inet_addr=no fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:16002: result: $cf_cv_have_inet_addr" >&5 +echo "$as_me:16087: 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:16005: checking for library with inet_addr" >&5 + echo "$as_me:16090: 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 @@ -16013,7 +16098,7 @@ else do LIBS="$cf_save_LIBS $cf_inetlib" cat >"conftest.$ac_ext" <<_ACEOF -#line 16016 "configure" +#line 16101 "configure" #include "confdefs.h" #include <sys/types.h> #include <sys/socket.h> @@ -16029,16 +16114,16 @@ inet_addr(0) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:16032: \"$ac_link\"") >&5 +if { (eval echo "$as_me:16117: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:16035: \$? = $ac_status" >&5 + echo "$as_me:16120: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:16038: \"$ac_try\"") >&5 + { (eval echo "$as_me:16123: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:16041: \$? = $ac_status" >&5 + echo "$as_me:16126: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_lib_inet_addr=$cf_inetlib else @@ -16052,7 +16137,7 @@ rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" done fi -echo "$as_me:16055: result: $cf_cv_lib_inet_addr" >&5 +echo "$as_me:16140: 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 @@ -16073,13 +16158,13 @@ done LIBS="$cf_add_libs" else - { echo "$as_me:16076: WARNING: Unable to find library for inet_addr function" >&5 + { echo "$as_me:16161: 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:16082: checking if you want to use pkg-config" >&5 +echo "$as_me:16167: 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. @@ -16089,7 +16174,7 @@ if test "${with_pkg_config+set}" = set; then else cf_pkg_config=yes fi; -echo "$as_me:16092: result: $cf_pkg_config" >&5 +echo "$as_me:16177: result: $cf_pkg_config" >&5 echo "${ECHO_T}$cf_pkg_config" >&6 case "$cf_pkg_config" in @@ -16101,7 +16186,7 @@ case "$cf_pkg_config" in if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}pkg-config", so it can be a program name with args. set dummy ${ac_tool_prefix}pkg-config; ac_word=$2 -echo "$as_me:16104: checking for $ac_word" >&5 +echo "$as_me:16189: 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 @@ -16118,7 +16203,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:16121: found $ac_dir/$ac_word" >&5 + echo "$as_me:16206: found $ac_dir/$ac_word" >&5 break fi done @@ -16129,10 +16214,10 @@ fi PKG_CONFIG=$ac_cv_path_PKG_CONFIG if test -n "$PKG_CONFIG"; then - echo "$as_me:16132: result: $PKG_CONFIG" >&5 + echo "$as_me:16217: result: $PKG_CONFIG" >&5 echo "${ECHO_T}$PKG_CONFIG" >&6 else - echo "$as_me:16135: result: no" >&5 + echo "$as_me:16220: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -16141,7 +16226,7 @@ if test -z "$ac_cv_path_PKG_CONFIG"; then ac_pt_PKG_CONFIG=$PKG_CONFIG # 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:16144: checking for $ac_word" >&5 +echo "$as_me:16229: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_path_ac_pt_PKG_CONFIG+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -16158,7 +16243,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_ac_pt_PKG_CONFIG="$ac_dir/$ac_word" - echo "$as_me:16161: found $ac_dir/$ac_word" >&5 + echo "$as_me:16246: found $ac_dir/$ac_word" >&5 break fi done @@ -16170,10 +16255,10 @@ fi ac_pt_PKG_CONFIG=$ac_cv_path_ac_pt_PKG_CONFIG if test -n "$ac_pt_PKG_CONFIG"; then - echo "$as_me:16173: result: $ac_pt_PKG_CONFIG" >&5 + echo "$as_me:16258: result: $ac_pt_PKG_CONFIG" >&5 echo "${ECHO_T}$ac_pt_PKG_CONFIG" >&6 else - echo "$as_me:16176: result: no" >&5 + echo "$as_me:16261: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -16216,14 +16301,14 @@ case ".$PKG_CONFIG" in PKG_CONFIG=`echo "$PKG_CONFIG" | sed -e s%NONE%$cf_path_syntax%` ;; (*) - { { echo "$as_me:16219: error: expected a pathname, not \"$PKG_CONFIG\"" >&5 + { { echo "$as_me:16304: error: expected a pathname, not \"$PKG_CONFIG\"" >&5 echo "$as_me: error: expected a pathname, not \"$PKG_CONFIG\"" >&2;} { (exit 1); exit 1; }; } ;; esac elif test "x$cf_pkg_config" != xno ; then - { echo "$as_me:16226: WARNING: pkg-config is not installed" >&5 + { echo "$as_me:16311: WARNING: pkg-config is not installed" >&5 echo "$as_me: WARNING: pkg-config is not installed" >&2;} fi @@ -16271,7 +16356,7 @@ if test -n "$cf_searchpath/include" ; then CPPFLAGS="${CPPFLAGS}-I$cf_add_incdir" cat >"conftest.$ac_ext" <<_ACEOF -#line 16274 "configure" +#line 16359 "configure" #include "confdefs.h" #include <stdio.h> int @@ -16283,16 +16368,16 @@ printf("Hello") } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:16286: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:16371: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:16289: \$? = $ac_status" >&5 + echo "$as_me:16374: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:16292: \"$ac_try\"") >&5 + { (eval echo "$as_me:16377: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:16295: \$? = $ac_status" >&5 + echo "$as_me:16380: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then : else @@ -16309,7 +16394,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}:16312: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:16397: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -16355,7 +16440,7 @@ if test -n "$cf_searchpath/../include" ; then CPPFLAGS="${CPPFLAGS}-I$cf_add_incdir" cat >"conftest.$ac_ext" <<_ACEOF -#line 16358 "configure" +#line 16443 "configure" #include "confdefs.h" #include <stdio.h> int @@ -16367,16 +16452,16 @@ printf("Hello") } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:16370: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:16455: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:16373: \$? = $ac_status" >&5 + echo "$as_me:16458: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:16376: \"$ac_try\"") >&5 + { (eval echo "$as_me:16461: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:16379: \$? = $ac_status" >&5 + echo "$as_me:16464: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then : else @@ -16393,7 +16478,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}:16396: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:16481: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -16411,7 +16496,7 @@ echo "${as_me:-configure}:16396: testing adding $cf_add_incdir to include-path . fi else -{ { echo "$as_me:16414: error: cannot find ssl library under $cf_cv_use_libssl" >&5 +{ { echo "$as_me:16499: 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 @@ -16436,7 +16521,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}:16439: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:16524: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -16465,7 +16550,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}:16468: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:16553: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -16474,7 +16559,7 @@ echo "${as_me:-configure}:16468: testing adding $cf_add_libdir to library-path . fi else -{ { echo "$as_me:16477: error: cannot find ssl library under $cf_cv_use_libssl" >&5 +{ { echo "$as_me:16562: 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 @@ -16491,15 +16576,15 @@ esac cf_cv_pkg_ssl= for cf_try_package in openssl libssl do - echo "$as_me:16494: checking pkg-config for $cf_try_package" >&5 + echo "$as_me:16579: checking pkg-config for $cf_try_package" >&5 echo $ECHO_N "checking pkg-config for $cf_try_package... $ECHO_C" >&6 if "$PKG_CONFIG" --exists $cf_try_package ; then cf_cv_pkg_ssl=$cf_try_package - echo "$as_me:16498: result: yes" >&5 + echo "$as_me:16583: result: yes" >&5 echo "${ECHO_T}yes" >&6 break else - echo "$as_me:16502: result: no" >&5 + echo "$as_me:16587: result: no" >&5 echo "${ECHO_T}no" >&6 fi done @@ -16643,7 +16728,7 @@ fi esac test -n "$verbose" && echo " adding $cf_libs_ssl to LIBS" 1>&6 -echo "${as_me:-configure}:16646: testing adding $cf_libs_ssl to LIBS ..." 1>&5 +echo "${as_me:-configure}:16731: testing adding $cf_libs_ssl to LIBS ..." 1>&5 cf_add_libs="$LIBS" # reverse order @@ -16679,7 +16764,7 @@ LIBS="$cf_add_libs" (*-ldl) ;; (*) - echo "$as_me:16682: checking for dlsym in -ldl" >&5 + echo "$as_me:16767: 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 @@ -16687,7 +16772,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-ldl $LIBS" cat >"conftest.$ac_ext" <<_ACEOF -#line 16690 "configure" +#line 16775 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -16706,16 +16791,16 @@ dlsym (); } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:16709: \"$ac_link\"") >&5 +if { (eval echo "$as_me:16794: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:16712: \$? = $ac_status" >&5 + echo "$as_me:16797: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:16715: \"$ac_try\"") >&5 + { (eval echo "$as_me:16800: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:16718: \$? = $ac_status" >&5 + echo "$as_me:16803: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_lib_dl_dlsym=yes else @@ -16726,7 +16811,7 @@ fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:16729: result: $ac_cv_lib_dl_dlsym" >&5 +echo "$as_me:16814: 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" @@ -16742,12 +16827,12 @@ fi cf_cv_header_path_ssl= cf_cv_library_path_ssl= -echo "${as_me:-configure}:16745: testing Starting FIND_LINKAGE(ssl,openssl) ..." 1>&5 +echo "${as_me:-configure}:16830: testing Starting FIND_LINKAGE(ssl,openssl) ..." 1>&5 cf_save_LIBS="$LIBS" cat >"conftest.$ac_ext" <<_ACEOF -#line 16750 "configure" +#line 16835 "configure" #include "confdefs.h" #include <stdio.h> @@ -16776,16 +16861,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:16779: \"$ac_link\"") >&5 +if { (eval echo "$as_me:16864: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:16782: \$? = $ac_status" >&5 + echo "$as_me:16867: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:16785: \"$ac_try\"") >&5 + { (eval echo "$as_me:16870: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:16788: \$? = $ac_status" >&5 + echo "$as_me:16873: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_find_linkage_ssl=yes @@ -16799,7 +16884,7 @@ cat "conftest.$ac_ext" >&5 LIBS="-lssl $cf_extra_ssl_libs $cf_save_LIBS" cat >"conftest.$ac_ext" <<_ACEOF -#line 16802 "configure" +#line 16887 "configure" #include "confdefs.h" #include <stdio.h> @@ -16828,16 +16913,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:16831: \"$ac_link\"") >&5 +if { (eval echo "$as_me:16916: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:16834: \$? = $ac_status" >&5 + echo "$as_me:16919: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:16837: \"$ac_try\"") >&5 + { (eval echo "$as_me:16922: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:16840: \$? = $ac_status" >&5 + echo "$as_me:16925: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_find_linkage_ssl=yes @@ -16854,9 +16939,9 @@ cat "conftest.$ac_ext" >&5 test -n "$verbose" && echo " find linkage for ssl library" 1>&6 -echo "${as_me:-configure}:16857: testing find linkage for ssl library ..." 1>&5 +echo "${as_me:-configure}:16942: testing find linkage for ssl library ..." 1>&5 -echo "${as_me:-configure}:16859: testing Searching for headers in FIND_LINKAGE(ssl,openssl) ..." 1>&5 +echo "${as_me:-configure}:16944: testing Searching for headers in FIND_LINKAGE(ssl,openssl) ..." 1>&5 cf_save_CPPFLAGS="$CPPFLAGS" cf_test_CPPFLAGS="$CPPFLAGS" @@ -16947,7 +17032,7 @@ cf_search="$cf_search $cf_header_path_list" 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}:16950: testing ... testing $cf_cv_header_path_ssl ..." 1>&5 +echo "${as_me:-configure}:17035: testing ... testing $cf_cv_header_path_ssl ..." 1>&5 CPPFLAGS="$cf_save_CPPFLAGS" @@ -16955,7 +17040,7 @@ echo "${as_me:-configure}:16950: testing ... testing $cf_cv_header_path_ssl ..." CPPFLAGS="${CPPFLAGS}-I$cf_cv_header_path_ssl" cat >"conftest.$ac_ext" <<_ACEOF -#line 16958 "configure" +#line 17043 "configure" #include "confdefs.h" #include <stdio.h> @@ -16984,21 +17069,21 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:16987: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:17072: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:16990: \$? = $ac_status" >&5 + echo "$as_me:17075: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:16993: \"$ac_try\"") >&5 + { (eval echo "$as_me:17078: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:16996: \$? = $ac_status" >&5 + echo "$as_me:17081: \$? = $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}:17001: testing ... found ssl headers in $cf_cv_header_path_ssl ..." 1>&5 +echo "${as_me:-configure}:17086: testing ... found ssl headers in $cf_cv_header_path_ssl ..." 1>&5 cf_cv_find_linkage_ssl=maybe cf_test_CPPFLAGS="$CPPFLAGS" @@ -17016,7 +17101,7 @@ rm -f "conftest.$ac_objext" "conftest.$ac_ext" if test "$cf_cv_find_linkage_ssl" = maybe ; then -echo "${as_me:-configure}:17019: testing Searching for ssl library in FIND_LINKAGE(ssl,openssl) ..." 1>&5 +echo "${as_me:-configure}:17104: testing Searching for ssl library in FIND_LINKAGE(ssl,openssl) ..." 1>&5 cf_save_LIBS="$LIBS" cf_save_LDFLAGS="$LDFLAGS" @@ -17024,7 +17109,7 @@ echo "${as_me:-configure}:17019: testing Searching for ssl library in FIND_LINKA CPPFLAGS="$cf_test_CPPFLAGS" LIBS="-lssl $cf_extra_ssl_libs $cf_save_LIBS" cat >"conftest.$ac_ext" <<_ACEOF -#line 17027 "configure" +#line 17112 "configure" #include "confdefs.h" #include <stdio.h> @@ -17053,21 +17138,21 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:17056: \"$ac_link\"") >&5 +if { (eval echo "$as_me:17141: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:17059: \$? = $ac_status" >&5 + echo "$as_me:17144: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:17062: \"$ac_try\"") >&5 + { (eval echo "$as_me:17147: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:17065: \$? = $ac_status" >&5 + echo "$as_me:17150: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then test -n "$verbose" && echo " ... found ssl library in system" 1>&6 -echo "${as_me:-configure}:17070: testing ... found ssl library in system ..." 1>&5 +echo "${as_me:-configure}:17155: testing ... found ssl library in system ..." 1>&5 cf_cv_find_linkage_ssl=yes else @@ -17148,13 +17233,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}:17151: testing ... testing $cf_cv_library_path_ssl ..." 1>&5 +echo "${as_me:-configure}:17236: 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 17157 "configure" +#line 17242 "configure" #include "confdefs.h" #include <stdio.h> @@ -17183,21 +17268,21 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:17186: \"$ac_link\"") >&5 +if { (eval echo "$as_me:17271: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:17189: \$? = $ac_status" >&5 + echo "$as_me:17274: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:17192: \"$ac_try\"") >&5 + { (eval echo "$as_me:17277: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:17195: \$? = $ac_status" >&5 + echo "$as_me:17280: \$? = $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}:17200: testing ... found ssl library in $cf_cv_library_path_ssl ..." 1>&5 +echo "${as_me:-configure}:17285: testing ... found ssl library in $cf_cv_library_path_ssl ..." 1>&5 cf_cv_find_linkage_ssl=yes cf_cv_library_file_ssl="-lssl" @@ -17259,7 +17344,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}:17262: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:17347: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -17318,7 +17403,7 @@ if test -n "$cf_cv_header_path_ssl" ; then CPPFLAGS="${CPPFLAGS}-I$cf_add_incdir" cat >"conftest.$ac_ext" <<_ACEOF -#line 17321 "configure" +#line 17406 "configure" #include "confdefs.h" #include <stdio.h> int @@ -17330,16 +17415,16 @@ printf("Hello") } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:17333: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:17418: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:17336: \$? = $ac_status" >&5 + echo "$as_me:17421: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:17339: \"$ac_try\"") >&5 + { (eval echo "$as_me:17424: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:17342: \$? = $ac_status" >&5 + echo "$as_me:17427: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then : else @@ -17356,7 +17441,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}:17359: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:17444: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -17389,7 +17474,7 @@ EOF if test -n "$cf_cv_header_path_ssl" ; then test -n "$verbose" && echo " checking ssl header-path $cf_cv_header_path_ssl" 1>&6 -echo "${as_me:-configure}:17392: testing checking ssl header-path $cf_cv_header_path_ssl ..." 1>&5 +echo "${as_me:-configure}:17477: testing checking ssl header-path $cf_cv_header_path_ssl ..." 1>&5 case "$cf_cv_header_path_ssl" in (*/openssl) @@ -17402,10 +17487,10 @@ EOF esac fi -echo "$as_me:17405: checking for X509 support" >&5 +echo "$as_me:17490: checking for X509 support" >&5 echo $ECHO_N "checking for X509 support... $ECHO_C" >&6 cat >"conftest.$ac_ext" <<_ACEOF -#line 17408 "configure" +#line 17493 "configure" #include "confdefs.h" #include <stdio.h> @@ -17434,16 +17519,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:17437: \"$ac_link\"") >&5 +if { (eval echo "$as_me:17522: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:17440: \$? = $ac_status" >&5 + echo "$as_me:17525: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:17443: \"$ac_try\"") >&5 + { (eval echo "$as_me:17528: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:17446: \$? = $ac_status" >&5 + echo "$as_me:17531: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_x509_support=yes else @@ -17452,7 +17537,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:17455: result: $cf_x509_support" >&5 +echo "$as_me:17540: result: $cf_x509_support" >&5 echo "${ECHO_T}$cf_x509_support" >&6 if test "$cf_x509_support" = yes ; then @@ -17507,7 +17592,7 @@ if test -n "$cf_searchpath/include" ; then CPPFLAGS="${CPPFLAGS}-I$cf_add_incdir" cat >"conftest.$ac_ext" <<_ACEOF -#line 17510 "configure" +#line 17595 "configure" #include "confdefs.h" #include <stdio.h> int @@ -17519,16 +17604,16 @@ printf("Hello") } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:17522: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:17607: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:17525: \$? = $ac_status" >&5 + echo "$as_me:17610: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:17528: \"$ac_try\"") >&5 + { (eval echo "$as_me:17613: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:17531: \$? = $ac_status" >&5 + echo "$as_me:17616: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then : else @@ -17545,7 +17630,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}:17548: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:17633: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -17591,7 +17676,7 @@ if test -n "$cf_searchpath/../include" ; then CPPFLAGS="${CPPFLAGS}-I$cf_add_incdir" cat >"conftest.$ac_ext" <<_ACEOF -#line 17594 "configure" +#line 17679 "configure" #include "confdefs.h" #include <stdio.h> int @@ -17603,16 +17688,16 @@ printf("Hello") } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:17606: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:17691: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:17609: \$? = $ac_status" >&5 + echo "$as_me:17694: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:17612: \"$ac_try\"") >&5 + { (eval echo "$as_me:17697: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:17615: \$? = $ac_status" >&5 + echo "$as_me:17700: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then : else @@ -17629,7 +17714,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}:17632: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:17717: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -17647,7 +17732,7 @@ echo "${as_me:-configure}:17632: testing adding $cf_add_incdir to include-path . fi else -{ { echo "$as_me:17650: error: cannot find ssl library under $cf_cv_use_libgnutls" >&5 +{ { echo "$as_me:17735: 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 @@ -17672,7 +17757,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}:17675: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:17760: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -17701,7 +17786,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}:17704: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:17789: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -17710,7 +17795,7 @@ echo "${as_me:-configure}:17704: testing adding $cf_add_libdir to library-path . fi else -{ { echo "$as_me:17713: error: cannot find ssl library under $cf_cv_use_libgnutls" >&5 +{ { echo "$as_me:17798: 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 @@ -17728,12 +17813,12 @@ esac (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}:17731: testing checking pkg-config for $cf_pkg_gnutls ..." 1>&5 +echo "${as_me:-configure}:17816: 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}:17736: testing ... found $cf_pkg_gnutls in pkg-config ..." 1>&5 +echo "${as_me:-configure}:17821: testing ... found $cf_pkg_gnutls in pkg-config ..." 1>&5 cf_cv_have_gnutls=yes cf_cv_pkg_config_ssl=yes @@ -17865,7 +17950,7 @@ fi esac test -n "$verbose" && echo " adding $cf_libs_ssl to LIBS" 1>&6 -echo "${as_me:-configure}:17868: testing adding $cf_libs_ssl to LIBS ..." 1>&5 +echo "${as_me:-configure}:17953: testing adding $cf_libs_ssl to LIBS ..." 1>&5 cf_add_libs="$LIBS" # reverse order @@ -17887,7 +17972,7 @@ LIBS="$cf_add_libs" else test -n "$verbose" && echo " ... did not find $cf_pkg_gnutls in pkg-config" 1>&6 -echo "${as_me:-configure}:17890: testing ... did not find $cf_pkg_gnutls in pkg-config ..." 1>&5 +echo "${as_me:-configure}:17975: testing ... did not find $cf_pkg_gnutls in pkg-config ..." 1>&5 cf_pkg_gnutls=none fi @@ -17907,12 +17992,12 @@ EOF cf_cv_header_path_gnutls= cf_cv_library_path_gnutls= -echo "${as_me:-configure}:17910: testing Starting FIND_LINKAGE(gnutls,) ..." 1>&5 +echo "${as_me:-configure}:17995: testing Starting FIND_LINKAGE(gnutls,) ..." 1>&5 cf_save_LIBS="$LIBS" cat >"conftest.$ac_ext" <<_ACEOF -#line 17915 "configure" +#line 18000 "configure" #include "confdefs.h" #include <stdio.h> @@ -17941,16 +18026,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:17944: \"$ac_link\"") >&5 +if { (eval echo "$as_me:18029: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:17947: \$? = $ac_status" >&5 + echo "$as_me:18032: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:17950: \"$ac_try\"") >&5 + { (eval echo "$as_me:18035: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:17953: \$? = $ac_status" >&5 + echo "$as_me:18038: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_find_linkage_gnutls=yes @@ -17964,7 +18049,7 @@ cat "conftest.$ac_ext" >&5 LIBS="-lgnutls $cf_save_LIBS" cat >"conftest.$ac_ext" <<_ACEOF -#line 17967 "configure" +#line 18052 "configure" #include "confdefs.h" #include <stdio.h> @@ -17993,16 +18078,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:17996: \"$ac_link\"") >&5 +if { (eval echo "$as_me:18081: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:17999: \$? = $ac_status" >&5 + echo "$as_me:18084: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:18002: \"$ac_try\"") >&5 + { (eval echo "$as_me:18087: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:18005: \$? = $ac_status" >&5 + echo "$as_me:18090: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_find_linkage_gnutls=yes @@ -18019,9 +18104,9 @@ cat "conftest.$ac_ext" >&5 test -n "$verbose" && echo " find linkage for gnutls library" 1>&6 -echo "${as_me:-configure}:18022: testing find linkage for gnutls library ..." 1>&5 +echo "${as_me:-configure}:18107: testing find linkage for gnutls library ..." 1>&5 -echo "${as_me:-configure}:18024: testing Searching for headers in FIND_LINKAGE(gnutls,) ..." 1>&5 +echo "${as_me:-configure}:18109: testing Searching for headers in FIND_LINKAGE(gnutls,) ..." 1>&5 cf_save_CPPFLAGS="$CPPFLAGS" cf_test_CPPFLAGS="$CPPFLAGS" @@ -18112,7 +18197,7 @@ cf_search="$cf_search $cf_header_path_list" 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}:18115: testing ... testing $cf_cv_header_path_gnutls ..." 1>&5 +echo "${as_me:-configure}:18200: testing ... testing $cf_cv_header_path_gnutls ..." 1>&5 CPPFLAGS="$cf_save_CPPFLAGS" @@ -18120,7 +18205,7 @@ echo "${as_me:-configure}:18115: testing ... testing $cf_cv_header_path_gnutls . CPPFLAGS="${CPPFLAGS}-I$cf_cv_header_path_gnutls" cat >"conftest.$ac_ext" <<_ACEOF -#line 18123 "configure" +#line 18208 "configure" #include "confdefs.h" #include <stdio.h> @@ -18149,21 +18234,21 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:18152: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:18237: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:18155: \$? = $ac_status" >&5 + echo "$as_me:18240: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:18158: \"$ac_try\"") >&5 + { (eval echo "$as_me:18243: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:18161: \$? = $ac_status" >&5 + echo "$as_me:18246: \$? = $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}:18166: testing ... found gnutls headers in $cf_cv_header_path_gnutls ..." 1>&5 +echo "${as_me:-configure}:18251: testing ... found gnutls headers in $cf_cv_header_path_gnutls ..." 1>&5 cf_cv_find_linkage_gnutls=maybe cf_test_CPPFLAGS="$CPPFLAGS" @@ -18181,7 +18266,7 @@ rm -f "conftest.$ac_objext" "conftest.$ac_ext" if test "$cf_cv_find_linkage_gnutls" = maybe ; then -echo "${as_me:-configure}:18184: testing Searching for gnutls library in FIND_LINKAGE(gnutls,) ..." 1>&5 +echo "${as_me:-configure}:18269: testing Searching for gnutls library in FIND_LINKAGE(gnutls,) ..." 1>&5 cf_save_LIBS="$LIBS" cf_save_LDFLAGS="$LDFLAGS" @@ -18256,13 +18341,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}:18259: testing ... testing $cf_cv_library_path_gnutls ..." 1>&5 +echo "${as_me:-configure}:18344: testing ... testing $cf_cv_library_path_gnutls ..." 1>&5 CPPFLAGS="$cf_test_CPPFLAGS" LIBS="-lgnutls $cf_save_LIBS" LDFLAGS="$cf_save_LDFLAGS -L$cf_cv_library_path_gnutls" cat >"conftest.$ac_ext" <<_ACEOF -#line 18265 "configure" +#line 18350 "configure" #include "confdefs.h" #include <stdio.h> @@ -18291,21 +18376,21 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:18294: \"$ac_link\"") >&5 +if { (eval echo "$as_me:18379: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:18297: \$? = $ac_status" >&5 + echo "$as_me:18382: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:18300: \"$ac_try\"") >&5 + { (eval echo "$as_me:18385: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:18303: \$? = $ac_status" >&5 + echo "$as_me:18388: \$? = $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}:18308: testing ... found gnutls library in $cf_cv_library_path_gnutls ..." 1>&5 +echo "${as_me:-configure}:18393: testing ... found gnutls library in $cf_cv_library_path_gnutls ..." 1>&5 cf_cv_find_linkage_gnutls=yes cf_cv_library_file_gnutls="-lgnutls" @@ -18385,7 +18470,7 @@ if test -n "$cf_cv_header_path_gnutls" ; then CPPFLAGS="${CPPFLAGS}-I$cf_add_incdir" cat >"conftest.$ac_ext" <<_ACEOF -#line 18388 "configure" +#line 18473 "configure" #include "confdefs.h" #include <stdio.h> int @@ -18397,16 +18482,16 @@ printf("Hello") } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:18400: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:18485: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:18403: \$? = $ac_status" >&5 + echo "$as_me:18488: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:18406: \"$ac_try\"") >&5 + { (eval echo "$as_me:18491: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:18409: \$? = $ac_status" >&5 + echo "$as_me:18494: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then : else @@ -18423,7 +18508,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}:18426: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:18511: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -18464,7 +18549,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}:18467: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:18552: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -18493,13 +18578,13 @@ LIBS="$cf_add_libs" for ac_func in gnutls_protocol_set_priority do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` -echo "$as_me:18496: checking for $ac_func" >&5 +echo "$as_me:18581: 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 18502 "configure" +#line 18587 "configure" #include "confdefs.h" #define $ac_func autoconf_temporary #include <limits.h> /* least-intrusive standard header which defines gcc2 __stub macros */ @@ -18530,16 +18615,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:18533: \"$ac_link\"") >&5 +if { (eval echo "$as_me:18618: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:18536: \$? = $ac_status" >&5 + echo "$as_me:18621: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:18539: \"$ac_try\"") >&5 + { (eval echo "$as_me:18624: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:18542: \$? = $ac_status" >&5 + echo "$as_me:18627: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then eval "$as_ac_var=yes" else @@ -18549,7 +18634,7 @@ eval "$as_ac_var=no" fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:18552: result: `eval echo '${'"$as_ac_var"'}'`" >&5 +echo "$as_me:18637: 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 @@ -18559,13 +18644,13 @@ EOF fi done - echo "$as_me:18562: checking for gnutls_rnd" >&5 + echo "$as_me:18647: checking for gnutls_rnd" >&5 echo $ECHO_N "checking for gnutls_rnd... $ECHO_C" >&6 if test "${ac_cv_func_gnutls_rnd+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >"conftest.$ac_ext" <<_ACEOF -#line 18568 "configure" +#line 18653 "configure" #include "confdefs.h" #define gnutls_rnd autoconf_temporary #include <limits.h> /* least-intrusive standard header which defines gcc2 __stub macros */ @@ -18596,16 +18681,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:18599: \"$ac_link\"") >&5 +if { (eval echo "$as_me:18684: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:18602: \$? = $ac_status" >&5 + echo "$as_me:18687: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:18605: \"$ac_try\"") >&5 + { (eval echo "$as_me:18690: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:18608: \$? = $ac_status" >&5 + echo "$as_me:18693: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_func_gnutls_rnd=yes else @@ -18615,7 +18700,7 @@ ac_cv_func_gnutls_rnd=no fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:18618: result: $ac_cv_func_gnutls_rnd" >&5 +echo "$as_me:18703: result: $ac_cv_func_gnutls_rnd" >&5 echo "${ECHO_T}$ac_cv_func_gnutls_rnd" >&6 if test "$ac_cv_func_gnutls_rnd" = yes; then @@ -18645,10 +18730,10 @@ fi EXTRA_OBJS="$EXTRA_OBJS tidy_tls\$o" -echo "$as_me:18648: checking for X509 support" >&5 +echo "$as_me:18733: checking for X509 support" >&5 echo $ECHO_N "checking for X509 support... $ECHO_C" >&6 cat >"conftest.$ac_ext" <<_ACEOF -#line 18651 "configure" +#line 18736 "configure" #include "confdefs.h" #include <stdio.h> @@ -18677,16 +18762,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:18680: \"$ac_link\"") >&5 +if { (eval echo "$as_me:18765: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:18683: \$? = $ac_status" >&5 + echo "$as_me:18768: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:18686: \"$ac_try\"") >&5 + { (eval echo "$as_me:18771: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:18689: \$? = $ac_status" >&5 + echo "$as_me:18774: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_x509_support=yes else @@ -18695,7 +18780,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:18698: result: $cf_x509_support" >&5 +echo "$as_me:18783: result: $cf_x509_support" >&5 echo "${ECHO_T}$cf_x509_support" >&6 if test "$cf_x509_support" = yes ; then @@ -18749,7 +18834,7 @@ if test -n "$cf_searchpath/include" ; then CPPFLAGS="${CPPFLAGS}-I$cf_add_incdir" cat >"conftest.$ac_ext" <<_ACEOF -#line 18752 "configure" +#line 18837 "configure" #include "confdefs.h" #include <stdio.h> int @@ -18761,16 +18846,16 @@ printf("Hello") } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:18764: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:18849: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:18767: \$? = $ac_status" >&5 + echo "$as_me:18852: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:18770: \"$ac_try\"") >&5 + { (eval echo "$as_me:18855: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:18773: \$? = $ac_status" >&5 + echo "$as_me:18858: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then : else @@ -18787,7 +18872,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}:18790: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:18875: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -18833,7 +18918,7 @@ if test -n "$cf_searchpath/../include" ; then CPPFLAGS="${CPPFLAGS}-I$cf_add_incdir" cat >"conftest.$ac_ext" <<_ACEOF -#line 18836 "configure" +#line 18921 "configure" #include "confdefs.h" #include <stdio.h> int @@ -18845,16 +18930,16 @@ printf("Hello") } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:18848: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:18933: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:18851: \$? = $ac_status" >&5 + echo "$as_me:18936: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:18854: \"$ac_try\"") >&5 + { (eval echo "$as_me:18939: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:18857: \$? = $ac_status" >&5 + echo "$as_me:18942: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then : else @@ -18871,7 +18956,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}:18874: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:18959: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -18889,7 +18974,7 @@ echo "${as_me:-configure}:18874: testing adding $cf_add_incdir to include-path . fi else -{ { echo "$as_me:18892: error: cannot find ssl library under $cf_cv_use_libgnutls" >&5 +{ { echo "$as_me:18977: 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 @@ -18914,7 +18999,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}:18917: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:19002: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -18943,7 +19028,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}:18946: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:19031: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -18952,7 +19037,7 @@ echo "${as_me:-configure}:18946: testing adding $cf_add_libdir to library-path . fi else -{ { echo "$as_me:18955: error: cannot find ssl library under $cf_cv_use_libgnutls" >&5 +{ { echo "$as_me:19040: 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 @@ -18970,12 +19055,12 @@ esac (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}:18973: testing checking pkg-config for $cf_pkg_gnutls ..." 1>&5 +echo "${as_me:-configure}:19058: 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}:18978: testing ... found $cf_pkg_gnutls in pkg-config ..." 1>&5 +echo "${as_me:-configure}:19063: testing ... found $cf_pkg_gnutls in pkg-config ..." 1>&5 cf_cv_have_gnutls=yes cf_cv_pkg_config_ssl=yes @@ -19107,7 +19192,7 @@ fi esac test -n "$verbose" && echo " adding $cf_libs_ssl to LIBS" 1>&6 -echo "${as_me:-configure}:19110: testing adding $cf_libs_ssl to LIBS ..." 1>&5 +echo "${as_me:-configure}:19195: testing adding $cf_libs_ssl to LIBS ..." 1>&5 cf_add_libs="$LIBS" # reverse order @@ -19129,7 +19214,7 @@ LIBS="$cf_add_libs" else test -n "$verbose" && echo " ... did not find $cf_pkg_gnutls in pkg-config" 1>&6 -echo "${as_me:-configure}:19132: testing ... did not find $cf_pkg_gnutls in pkg-config ..." 1>&5 +echo "${as_me:-configure}:19217: testing ... did not find $cf_pkg_gnutls in pkg-config ..." 1>&5 cf_pkg_gnutls=none fi @@ -19149,12 +19234,12 @@ EOF cf_cv_header_path_gnutls= cf_cv_library_path_gnutls= -echo "${as_me:-configure}:19152: testing Starting FIND_LINKAGE(gnutls,) ..." 1>&5 +echo "${as_me:-configure}:19237: testing Starting FIND_LINKAGE(gnutls,) ..." 1>&5 cf_save_LIBS="$LIBS" cat >"conftest.$ac_ext" <<_ACEOF -#line 19157 "configure" +#line 19242 "configure" #include "confdefs.h" #include <stdio.h> @@ -19183,16 +19268,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:19186: \"$ac_link\"") >&5 +if { (eval echo "$as_me:19271: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:19189: \$? = $ac_status" >&5 + echo "$as_me:19274: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:19192: \"$ac_try\"") >&5 + { (eval echo "$as_me:19277: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:19195: \$? = $ac_status" >&5 + echo "$as_me:19280: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_find_linkage_gnutls=yes @@ -19206,7 +19291,7 @@ cat "conftest.$ac_ext" >&5 LIBS="-lgnutls -lgnutls-openssl $cf_save_LIBS" cat >"conftest.$ac_ext" <<_ACEOF -#line 19209 "configure" +#line 19294 "configure" #include "confdefs.h" #include <stdio.h> @@ -19235,16 +19320,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:19238: \"$ac_link\"") >&5 +if { (eval echo "$as_me:19323: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:19241: \$? = $ac_status" >&5 + echo "$as_me:19326: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:19244: \"$ac_try\"") >&5 + { (eval echo "$as_me:19329: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:19247: \$? = $ac_status" >&5 + echo "$as_me:19332: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_find_linkage_gnutls=yes @@ -19261,9 +19346,9 @@ cat "conftest.$ac_ext" >&5 test -n "$verbose" && echo " find linkage for gnutls library" 1>&6 -echo "${as_me:-configure}:19264: testing find linkage for gnutls library ..." 1>&5 +echo "${as_me:-configure}:19349: testing find linkage for gnutls library ..." 1>&5 -echo "${as_me:-configure}:19266: testing Searching for headers in FIND_LINKAGE(gnutls,) ..." 1>&5 +echo "${as_me:-configure}:19351: testing Searching for headers in FIND_LINKAGE(gnutls,) ..." 1>&5 cf_save_CPPFLAGS="$CPPFLAGS" cf_test_CPPFLAGS="$CPPFLAGS" @@ -19354,7 +19439,7 @@ cf_search="$cf_search $cf_header_path_list" 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}:19357: testing ... testing $cf_cv_header_path_gnutls ..." 1>&5 +echo "${as_me:-configure}:19442: testing ... testing $cf_cv_header_path_gnutls ..." 1>&5 CPPFLAGS="$cf_save_CPPFLAGS" @@ -19362,7 +19447,7 @@ echo "${as_me:-configure}:19357: testing ... testing $cf_cv_header_path_gnutls . CPPFLAGS="${CPPFLAGS}-I$cf_cv_header_path_gnutls" cat >"conftest.$ac_ext" <<_ACEOF -#line 19365 "configure" +#line 19450 "configure" #include "confdefs.h" #include <stdio.h> @@ -19391,21 +19476,21 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:19394: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:19479: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:19397: \$? = $ac_status" >&5 + echo "$as_me:19482: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:19400: \"$ac_try\"") >&5 + { (eval echo "$as_me:19485: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:19403: \$? = $ac_status" >&5 + echo "$as_me:19488: \$? = $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}:19408: testing ... found gnutls headers in $cf_cv_header_path_gnutls ..." 1>&5 +echo "${as_me:-configure}:19493: testing ... found gnutls headers in $cf_cv_header_path_gnutls ..." 1>&5 cf_cv_find_linkage_gnutls=maybe cf_test_CPPFLAGS="$CPPFLAGS" @@ -19423,7 +19508,7 @@ rm -f "conftest.$ac_objext" "conftest.$ac_ext" if test "$cf_cv_find_linkage_gnutls" = maybe ; then -echo "${as_me:-configure}:19426: testing Searching for gnutls library in FIND_LINKAGE(gnutls,) ..." 1>&5 +echo "${as_me:-configure}:19511: testing Searching for gnutls library in FIND_LINKAGE(gnutls,) ..." 1>&5 cf_save_LIBS="$LIBS" cf_save_LDFLAGS="$LDFLAGS" @@ -19498,13 +19583,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}:19501: testing ... testing $cf_cv_library_path_gnutls ..." 1>&5 +echo "${as_me:-configure}:19586: testing ... testing $cf_cv_library_path_gnutls ..." 1>&5 CPPFLAGS="$cf_test_CPPFLAGS" LIBS="-lgnutls -lgnutls-openssl $cf_save_LIBS" LDFLAGS="$cf_save_LDFLAGS -L$cf_cv_library_path_gnutls" cat >"conftest.$ac_ext" <<_ACEOF -#line 19507 "configure" +#line 19592 "configure" #include "confdefs.h" #include <stdio.h> @@ -19533,21 +19618,21 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:19536: \"$ac_link\"") >&5 +if { (eval echo "$as_me:19621: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:19539: \$? = $ac_status" >&5 + echo "$as_me:19624: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:19542: \"$ac_try\"") >&5 + { (eval echo "$as_me:19627: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:19545: \$? = $ac_status" >&5 + echo "$as_me:19630: \$? = $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}:19550: testing ... found gnutls library in $cf_cv_library_path_gnutls ..." 1>&5 +echo "${as_me:-configure}:19635: testing ... found gnutls library in $cf_cv_library_path_gnutls ..." 1>&5 cf_cv_find_linkage_gnutls=yes cf_cv_library_file_gnutls="-lgnutls" @@ -19627,7 +19712,7 @@ if test -n "$cf_cv_header_path_gnutls" ; then CPPFLAGS="${CPPFLAGS}-I$cf_add_incdir" cat >"conftest.$ac_ext" <<_ACEOF -#line 19630 "configure" +#line 19715 "configure" #include "confdefs.h" #include <stdio.h> int @@ -19639,16 +19724,16 @@ printf("Hello") } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:19642: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:19727: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:19645: \$? = $ac_status" >&5 + echo "$as_me:19730: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:19648: \"$ac_try\"") >&5 + { (eval echo "$as_me:19733: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:19651: \$? = $ac_status" >&5 + echo "$as_me:19736: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then : else @@ -19665,7 +19750,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}:19668: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:19753: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -19706,7 +19791,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}:19709: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:19794: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -19735,13 +19820,13 @@ LIBS="$cf_add_libs" for ac_func in gnutls_protocol_set_priority do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` -echo "$as_me:19738: checking for $ac_func" >&5 +echo "$as_me:19823: 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 19744 "configure" +#line 19829 "configure" #include "confdefs.h" #define $ac_func autoconf_temporary #include <limits.h> /* least-intrusive standard header which defines gcc2 __stub macros */ @@ -19772,16 +19857,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:19775: \"$ac_link\"") >&5 +if { (eval echo "$as_me:19860: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:19778: \$? = $ac_status" >&5 + echo "$as_me:19863: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:19781: \"$ac_try\"") >&5 + { (eval echo "$as_me:19866: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:19784: \$? = $ac_status" >&5 + echo "$as_me:19869: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then eval "$as_ac_var=yes" else @@ -19791,7 +19876,7 @@ eval "$as_ac_var=no" fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:19794: result: `eval echo '${'"$as_ac_var"'}'`" >&5 +echo "$as_me:19879: 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 @@ -19801,13 +19886,13 @@ EOF fi done - echo "$as_me:19804: checking for gnutls_rnd" >&5 + echo "$as_me:19889: checking for gnutls_rnd" >&5 echo $ECHO_N "checking for gnutls_rnd... $ECHO_C" >&6 if test "${ac_cv_func_gnutls_rnd+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >"conftest.$ac_ext" <<_ACEOF -#line 19810 "configure" +#line 19895 "configure" #include "confdefs.h" #define gnutls_rnd autoconf_temporary #include <limits.h> /* least-intrusive standard header which defines gcc2 __stub macros */ @@ -19838,16 +19923,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:19841: \"$ac_link\"") >&5 +if { (eval echo "$as_me:19926: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:19844: \$? = $ac_status" >&5 + echo "$as_me:19929: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:19847: \"$ac_try\"") >&5 + { (eval echo "$as_me:19932: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:19850: \$? = $ac_status" >&5 + echo "$as_me:19935: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_func_gnutls_rnd=yes else @@ -19857,7 +19942,7 @@ ac_cv_func_gnutls_rnd=no fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:19860: result: $ac_cv_func_gnutls_rnd" >&5 +echo "$as_me:19945: result: $ac_cv_func_gnutls_rnd" >&5 echo "${ECHO_T}$ac_cv_func_gnutls_rnd" >&6 if test "$ac_cv_func_gnutls_rnd" = yes; then @@ -19886,7 +19971,7 @@ LIBS="$cf_add_libs" fi if test "$cf_pkg_gnutls" = none ; then - echo "$as_me:19889: checking for SSL_connect in -lgnutls-openssl" >&5 + echo "$as_me:19974: 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 @@ -19894,7 +19979,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lgnutls-openssl $LIBS" cat >"conftest.$ac_ext" <<_ACEOF -#line 19897 "configure" +#line 19982 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -19913,16 +19998,16 @@ SSL_connect (); } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:19916: \"$ac_link\"") >&5 +if { (eval echo "$as_me:20001: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:19919: \$? = $ac_status" >&5 + echo "$as_me:20004: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:19922: \"$ac_try\"") >&5 + { (eval echo "$as_me:20007: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:19925: \$? = $ac_status" >&5 + echo "$as_me:20010: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_lib_gnutls_openssl_SSL_connect=yes else @@ -19933,7 +20018,7 @@ fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:19936: result: $ac_cv_lib_gnutls_openssl_SSL_connect" >&5 +echo "$as_me:20021: 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 @@ -19954,7 +20039,7 @@ done LIBS="$cf_add_libs" else - echo "$as_me:19957: checking for SSL_connect in -lgnutls-extra" >&5 + echo "$as_me:20042: 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 @@ -19962,7 +20047,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lgnutls-extra $LIBS" cat >"conftest.$ac_ext" <<_ACEOF -#line 19965 "configure" +#line 20050 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -19981,16 +20066,16 @@ SSL_connect (); } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:19984: \"$ac_link\"") >&5 +if { (eval echo "$as_me:20069: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:19987: \$? = $ac_status" >&5 + echo "$as_me:20072: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:19990: \"$ac_try\"") >&5 + { (eval echo "$as_me:20075: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:19993: \$? = $ac_status" >&5 + echo "$as_me:20078: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_lib_gnutls_extra_SSL_connect=yes else @@ -20001,7 +20086,7 @@ fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:20004: result: $ac_cv_lib_gnutls_extra_SSL_connect" >&5 +echo "$as_me:20089: 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 @@ -20022,7 +20107,7 @@ done LIBS="$cf_add_libs" else - { { echo "$as_me:20025: error: cannot find gnutls openssl functions" >&5 + { { echo "$as_me:20110: error: cannot find gnutls openssl functions" >&5 echo "$as_me: error: cannot find gnutls openssl functions" >&2;} { (exit 1); exit 1; }; } fi @@ -20031,10 +20116,10 @@ fi fi -echo "$as_me:20034: checking for X509 support" >&5 +echo "$as_me:20119: checking for X509 support" >&5 echo $ECHO_N "checking for X509 support... $ECHO_C" >&6 cat >"conftest.$ac_ext" <<_ACEOF -#line 20037 "configure" +#line 20122 "configure" #include "confdefs.h" #include <stdio.h> @@ -20063,16 +20148,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:20066: \"$ac_link\"") >&5 +if { (eval echo "$as_me:20151: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:20069: \$? = $ac_status" >&5 + echo "$as_me:20154: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:20072: \"$ac_try\"") >&5 + { (eval echo "$as_me:20157: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:20075: \$? = $ac_status" >&5 + echo "$as_me:20160: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_x509_support=yes else @@ -20081,7 +20166,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:20084: result: $cf_x509_support" >&5 +echo "$as_me:20169: result: $cf_x509_support" >&5 echo "${ECHO_T}$cf_x509_support" >&6 if test "$cf_x509_support" = yes ; then @@ -20113,7 +20198,7 @@ case "$cf_cv_use_libnss_compat" in ;; (yes) -echo "$as_me:20116: checking for SSL_get_version in -lnss_compat_ossl" >&5 +echo "$as_me:20201: 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 @@ -20121,7 +20206,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lnss_compat_ossl -lnss_compat_ossl $LIBS" cat >"conftest.$ac_ext" <<_ACEOF -#line 20124 "configure" +#line 20209 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -20140,16 +20225,16 @@ SSL_get_version (); } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:20143: \"$ac_link\"") >&5 +if { (eval echo "$as_me:20228: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:20146: \$? = $ac_status" >&5 + echo "$as_me:20231: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:20149: \"$ac_try\"") >&5 + { (eval echo "$as_me:20234: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:20152: \$? = $ac_status" >&5 + echo "$as_me:20237: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_lib_nss_compat_ossl_SSL_get_version=yes else @@ -20160,7 +20245,7 @@ fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:20163: result: $ac_cv_lib_nss_compat_ossl_SSL_get_version" >&5 +echo "$as_me:20248: 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 @@ -20175,11 +20260,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}:20178: testing assume it is in $cf_ssl_root ..." 1>&5 +echo "${as_me:-configure}:20263: 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:20182: error: cannot find NSS compliant libraries" >&5 + { { echo "$as_me:20267: error: cannot find NSS compliant libraries" >&5 echo "$as_me: error: cannot find NSS compliant libraries" >&2;} { (exit 1); exit 1; }; } fi @@ -20194,13 +20279,13 @@ fi elif test -d "$cf_cv_use_libnss_compat/../include" ; then cf_ssl_root=$cf_cv_use_libnss_compat/.. else - { { echo "$as_me:20197: error: cannot find NSS compliant library under $cf_cv_use_libnss_compat" >&5 + { { echo "$as_me:20282: error: cannot find NSS compliant library under $cf_cv_use_libnss_compat" >&5 echo "$as_me: error: cannot find NSS compliant 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:20203: WARNING: expected a directory: $cf_cv_use_libnss_compat" >&5 + { echo "$as_me:20288: WARNING: expected a directory: $cf_cv_use_libnss_compat" >&5 echo "$as_me: WARNING: expected a directory: $cf_cv_use_libnss_compat" >&2;} fi ;; @@ -20329,10 +20414,10 @@ if test -n "$cf_new_extra_cppflags" ; then fi if test "$cf_ssl_subincs" = yes ; then -echo "$as_me:20332: checking for NSS compliant include directory" >&5 +echo "$as_me:20417: checking for NSS compliant include directory" >&5 echo $ECHO_N "checking for NSS compliant include directory... $ECHO_C" >&6 cat >"conftest.$ac_ext" <<_ACEOF -#line 20335 "configure" +#line 20420 "configure" #include "confdefs.h" #include <stdio.h> @@ -20346,16 +20431,16 @@ SSL_shutdown((SSL *)0) } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:20349: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:20434: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:20352: \$? = $ac_status" >&5 + echo "$as_me:20437: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:20355: \"$ac_try\"") >&5 + { (eval echo "$as_me:20440: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:20358: \$? = $ac_status" >&5 + echo "$as_me:20443: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_ssl_incl=yes else @@ -20364,7 +20449,7 @@ cat "conftest.$ac_ext" >&5 cf_ssl_incl=no fi rm -f "conftest.$ac_objext" "conftest.$ac_ext" -echo "$as_me:20367: result: $cf_ssl_incl" >&5 +echo "$as_me:20452: result: $cf_ssl_incl" >&5 echo "${ECHO_T}$cf_ssl_incl" >&6 test "$cf_ssl_incl" = yes && cat >>confdefs.h <<\EOF @@ -20373,10 +20458,10 @@ EOF fi -echo "$as_me:20376: checking if we can link to NSS compliant library" >&5 +echo "$as_me:20461: checking if we can link to NSS compliant library" >&5 echo $ECHO_N "checking if we can link to NSS compliant library... $ECHO_C" >&6 cat >"conftest.$ac_ext" <<_ACEOF -#line 20379 "configure" +#line 20464 "configure" #include "confdefs.h" #include <stdio.h> @@ -20395,16 +20480,16 @@ SSL_shutdown((SSL *)0) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:20398: \"$ac_link\"") >&5 +if { (eval echo "$as_me:20483: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:20401: \$? = $ac_status" >&5 + echo "$as_me:20486: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:20404: \"$ac_try\"") >&5 + { (eval echo "$as_me:20489: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:20407: \$? = $ac_status" >&5 + echo "$as_me:20492: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_ssl_library=yes else @@ -20413,7 +20498,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:20416: result: $cf_ssl_library" >&5 +echo "$as_me:20501: result: $cf_ssl_library" >&5 echo "${ECHO_T}$cf_ssl_library" >&6 if test "$cf_ssl_library" = yes ; then @@ -20426,7 +20511,7 @@ cat >>confdefs.h <<\EOF EOF else - { { echo "$as_me:20429: error: Cannot link with NSS compliant libraries" >&5 + { { echo "$as_me:20514: error: Cannot link with NSS compliant libraries" >&5 echo "$as_me: error: Cannot link with NSS compliant libraries" >&2;} { (exit 1); exit 1; }; } fi @@ -20434,7 +20519,7 @@ fi fi ### check for ipv6 support -echo "$as_me:20437: checking whether to enable ipv6" >&5 +echo "$as_me:20522: 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. @@ -20451,11 +20536,11 @@ EOF else enableval=no fi; -echo "$as_me:20454: result: $enableval" >&5 +echo "$as_me:20539: result: $enableval" >&5 echo "${ECHO_T}$enableval" >&6 if test "$enableval" = "yes"; then -echo "$as_me:20458: checking ipv6 stack type" >&5 +echo "$as_me:20543: 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 @@ -20476,7 +20561,7 @@ do ;; (inria) cat >"conftest.$ac_ext" <<_ACEOF -#line 20479 "configure" +#line 20564 "configure" #include "confdefs.h" #include <netinet/in.h> @@ -20493,7 +20578,7 @@ rm -rf conftest* ;; (kame) cat >"conftest.$ac_ext" <<_ACEOF -#line 20496 "configure" +#line 20581 "configure" #include "confdefs.h" #include <netinet/in.h> @@ -20510,7 +20595,7 @@ rm -rf conftest* ;; (linux-glibc) cat >"conftest.$ac_ext" <<_ACEOF -#line 20513 "configure" +#line 20598 "configure" #include "confdefs.h" #include <features.h> @@ -20536,7 +20621,7 @@ rm -rf conftest* ;; (toshiba) cat >"conftest.$ac_ext" <<_ACEOF -#line 20539 "configure" +#line 20624 "configure" #include "confdefs.h" #include <sys/param.h> @@ -20553,7 +20638,7 @@ rm -rf conftest* ;; (v6d) cat >"conftest.$ac_ext" <<_ACEOF -#line 20556 "configure" +#line 20641 "configure" #include "confdefs.h" #include </usr/local/v6/include/sys/v6config.h> @@ -20570,7 +20655,7 @@ rm -rf conftest* ;; (zeta) cat >"conftest.$ac_ext" <<_ACEOF -#line 20573 "configure" +#line 20658 "configure" #include "confdefs.h" #include <sys/param.h> @@ -20592,13 +20677,13 @@ rm -rf conftest* done fi -echo "$as_me:20595: result: $cf_cv_ipv6type" >&5 +echo "$as_me:20680: result: $cf_cv_ipv6type" >&5 echo "${ECHO_T}$cf_cv_ipv6type" >&6 cf_ipv6lib=none cf_ipv6dir=none -echo "$as_me:20601: checking for IPv6 library if required" >&5 +echo "$as_me:20686: checking for IPv6 library if required" >&5 echo $ECHO_N "checking for IPv6 library if required... $ECHO_C" >&6 case "$cf_cv_ipv6type" in (solaris) @@ -20628,13 +20713,13 @@ case "$cf_cv_ipv6type" in cf_ipv6dir=v6 ;; esac -echo "$as_me:20631: result: $cf_ipv6lib" >&5 +echo "$as_me:20716: result: $cf_ipv6lib" >&5 echo "${ECHO_T}$cf_ipv6lib" >&6 if test "$cf_ipv6lib" != "none"; then cat >"conftest.$ac_ext" <<_ACEOF -#line 20637 "configure" +#line 20722 "configure" #include "confdefs.h" #include <sys/types.h> @@ -20650,16 +20735,16 @@ getaddrinfo(0, 0, 0, 0) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:20653: \"$ac_link\"") >&5 +if { (eval echo "$as_me:20738: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:20656: \$? = $ac_status" >&5 + echo "$as_me:20741: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:20659: \"$ac_try\"") >&5 + { (eval echo "$as_me:20744: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:20662: \$? = $ac_status" >&5 + echo "$as_me:20747: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then : else @@ -20780,7 +20865,7 @@ if test -n "$cf_incdir" ; then CPPFLAGS="${CPPFLAGS}-I$cf_add_incdir" cat >"conftest.$ac_ext" <<_ACEOF -#line 20783 "configure" +#line 20868 "configure" #include "confdefs.h" #include <stdio.h> int @@ -20792,16 +20877,16 @@ printf("Hello") } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:20795: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:20880: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:20798: \$? = $ac_status" >&5 + echo "$as_me:20883: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:20801: \"$ac_try\"") >&5 + { (eval echo "$as_me:20886: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:20804: \$? = $ac_status" >&5 + echo "$as_me:20889: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then : else @@ -20818,7 +20903,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}:20821: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:20906: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -20846,13 +20931,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:20849: checking for getaddrinfo" >&5 + echo "$as_me:20934: 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 20855 "configure" +#line 20940 "configure" #include "confdefs.h" #define getaddrinfo autoconf_temporary #include <limits.h> /* least-intrusive standard header which defines gcc2 __stub macros */ @@ -20883,16 +20968,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:20886: \"$ac_link\"") >&5 +if { (eval echo "$as_me:20971: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:20889: \$? = $ac_status" >&5 + echo "$as_me:20974: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:20892: \"$ac_try\"") >&5 + { (eval echo "$as_me:20977: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:20895: \$? = $ac_status" >&5 + echo "$as_me:20980: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_func_getaddrinfo=yes else @@ -20902,18 +20987,18 @@ ac_cv_func_getaddrinfo=no fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:20905: result: $ac_cv_func_getaddrinfo" >&5 +echo "$as_me:20990: 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:20912: checking for getaddrinfo in -l$cf_ipv6lib" >&5 + echo "$as_me:20997: 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 20916 "configure" +#line 21001 "configure" #include "confdefs.h" #include <sys/types.h> @@ -20929,25 +21014,25 @@ getaddrinfo(0, 0, 0, 0) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:20932: \"$ac_link\"") >&5 +if { (eval echo "$as_me:21017: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:20935: \$? = $ac_status" >&5 + echo "$as_me:21020: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:20938: \"$ac_try\"") >&5 + { (eval echo "$as_me:21023: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:20941: \$? = $ac_status" >&5 + echo "$as_me:21026: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then - echo "$as_me:20943: result: yes" >&5 + echo "$as_me:21028: 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:20950: result: no" >&5 +echo "$as_me:21035: result: no" >&5 echo "${ECHO_T}no" >&6 cf_search= @@ -21015,11 +21100,11 @@ cf_search="$cf_library_path_list $cf_search" for cf_libdir in $cf_search do - echo "$as_me:21018: checking for -l$cf_ipv6lib in $cf_libdir" >&5 + echo "$as_me:21103: 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 21022 "configure" +#line 21107 "configure" #include "confdefs.h" #include <sys/types.h> @@ -21035,25 +21120,25 @@ getaddrinfo(0, 0, 0, 0) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:21038: \"$ac_link\"") >&5 +if { (eval echo "$as_me:21123: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:21041: \$? = $ac_status" >&5 + echo "$as_me:21126: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:21044: \"$ac_try\"") >&5 + { (eval echo "$as_me:21129: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:21047: \$? = $ac_status" >&5 + echo "$as_me:21132: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then - echo "$as_me:21049: result: yes" >&5 + echo "$as_me:21134: 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:21056: result: no" >&5 +echo "$as_me:21141: result: no" >&5 echo "${ECHO_T}no" >&6 LIBS="$cf_save_LIBS" fi @@ -21068,7 +21153,7 @@ fi eval 'cf_found_library="$cf_cv_have_lib_'"$cf_ipv6lib"\" if test "$cf_found_library" = no ; then - { { echo "$as_me:21071: error: No $cf_ipv6lib library found, cannot continue. You must fetch lib$cf_ipv6lib.a + { { echo "$as_me:21156: 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;} @@ -21076,7 +21161,7 @@ from an appropriate IPv6 kit and compile beforehand." >&2;} fi fi -echo "$as_me:21079: checking working getaddrinfo" >&5 +echo "$as_me:21164: 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 @@ -21086,7 +21171,7 @@ if test "$cross_compiling" = yes; then cf_cv_getaddrinfo=unknown else cat >"conftest.$ac_ext" <<_ACEOF -#line 21089 "configure" +#line 21174 "configure" #include "confdefs.h" #include <sys/types.h> @@ -21166,15 +21251,15 @@ int main(void) _ACEOF rm -f "conftest$ac_exeext" -if { (eval echo "$as_me:21169: \"$ac_link\"") >&5 +if { (eval echo "$as_me:21254: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:21172: \$? = $ac_status" >&5 + echo "$as_me:21257: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='"./conftest$ac_exeext"' - { (eval echo "$as_me:21174: \"$ac_try\"") >&5 + { (eval echo "$as_me:21259: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:21177: \$? = $ac_status" >&5 + echo "$as_me:21262: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_getaddrinfo=yes else @@ -21187,7 +21272,7 @@ rm -f core ./core.* ./*.core "conftest$ac_exeext" "conftest.$ac_objext" "conftes fi fi -echo "$as_me:21190: result: $cf_cv_getaddrinfo" >&5 +echo "$as_me:21275: result: $cf_cv_getaddrinfo" >&5 echo "${ECHO_T}$cf_cv_getaddrinfo" >&6 if test "$cf_cv_getaddrinfo" = yes ; then @@ -21203,12 +21288,12 @@ fi if test "$cf_cv_getaddrinfo" != "yes"; then if test "$cf_cv_ipv6type" != "linux"; then - { echo "$as_me:21206: WARNING: You must get working getaddrinfo() function, + { echo "$as_me:21291: 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:21211: WARNING: The getaddrinfo() implementation on your system seems be buggy. + { echo "$as_me:21296: 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. @@ -21219,7 +21304,7 @@ fi fi -echo "$as_me:21222: checking for screen type" >&5 +echo "$as_me:21307: 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 @@ -21233,7 +21318,7 @@ case "$withval" in (curses|ncurses*|pdcurses|slang) cf_cv_screen=$withval ;; -(*) { { echo "$as_me:21236: error: Unexpected value $withval" >&5 +(*) { { echo "$as_me:21321: error: Unexpected value $withval" >&5 echo "$as_me: error: Unexpected value $withval" >&2;} { (exit 1); exit 1; }; } ;; @@ -21242,13 +21327,13 @@ else cf_cv_screen=curses fi; fi -echo "$as_me:21245: result: $cf_cv_screen" >&5 +echo "$as_me:21330: result: $cf_cv_screen" >&5 echo "${ECHO_T}$cf_cv_screen" >&6 case "$cf_cv_screen" in (curses|ncurses*) -echo "$as_me:21251: checking for specific curses-directory" >&5 +echo "$as_me:21336: checking for specific curses-directory" >&5 echo $ECHO_N "checking for specific curses-directory... $ECHO_C" >&6 # Check whether --with-curses-dir or --without-curses-dir was given. @@ -21258,7 +21343,7 @@ if test "${with_curses_dir+set}" = set; then else cf_cv_curses_dir=no fi; -echo "$as_me:21261: result: $cf_cv_curses_dir" >&5 +echo "$as_me:21346: result: $cf_cv_curses_dir" >&5 echo "${ECHO_T}$cf_cv_curses_dir" >&6 if test -n "$cf_cv_curses_dir" && test "$cf_cv_curses_dir" != "no" @@ -21289,7 +21374,7 @@ case ".$withval" in withval=`echo "$withval" | sed -e s%NONE%$cf_path_syntax%` ;; (*) - { { echo "$as_me:21292: error: expected a pathname, not \"$withval\"" >&5 + { { echo "$as_me:21377: error: expected a pathname, not \"$withval\"" >&5 echo "$as_me: error: expected a pathname, not \"$withval\"" >&2;} { (exit 1); exit 1; }; } ;; @@ -21325,7 +21410,7 @@ if test -n "$cf_cv_curses_dir/include" ; then CPPFLAGS="${CPPFLAGS}-I$cf_add_incdir" cat >"conftest.$ac_ext" <<_ACEOF -#line 21328 "configure" +#line 21413 "configure" #include "confdefs.h" #include <stdio.h> int @@ -21337,16 +21422,16 @@ printf("Hello") } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:21340: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:21425: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:21343: \$? = $ac_status" >&5 + echo "$as_me:21428: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:21346: \"$ac_try\"") >&5 + { (eval echo "$as_me:21431: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:21349: \$? = $ac_status" >&5 + echo "$as_me:21434: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then : else @@ -21363,7 +21448,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}:21366: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:21451: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -21399,7 +21484,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}:21402: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:21487: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -21418,7 +21503,7 @@ dft_color_style=yes case "$cf_cv_screen" in (curses) -echo "$as_me:21421: checking for extra include directories" >&5 +echo "$as_me:21506: 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 @@ -21444,7 +21529,7 @@ case "$host_os" in esac fi -echo "$as_me:21447: result: $cf_cv_curses_incdir" >&5 +echo "$as_me:21532: result: $cf_cv_curses_incdir" >&5 echo "${ECHO_T}$cf_cv_curses_incdir" >&6 if test "$cf_cv_curses_incdir" != no then @@ -21454,7 +21539,7 @@ then fi -echo "$as_me:21457: checking if we have identified curses headers" >&5 +echo "$as_me:21542: 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 @@ -21466,7 +21551,7 @@ for cf_header in \ curses.h ncurses/ncurses.h ncurses/curses.h do cat >"conftest.$ac_ext" <<_ACEOF -#line 21469 "configure" +#line 21554 "configure" #include "confdefs.h" #include <${cf_header}> int @@ -21478,16 +21563,16 @@ initscr(); tgoto("?", 0,0) } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:21481: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:21566: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:21484: \$? = $ac_status" >&5 + echo "$as_me:21569: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:21487: \"$ac_try\"") >&5 + { (eval echo "$as_me:21572: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:21490: \$? = $ac_status" >&5 + echo "$as_me:21575: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_ncurses_header=$cf_header; break else @@ -21498,11 +21583,11 @@ rm -f "conftest.$ac_objext" "conftest.$ac_ext" done fi -echo "$as_me:21501: result: $cf_cv_ncurses_header" >&5 +echo "$as_me:21586: 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:21505: error: No curses header-files found" >&5 + { { echo "$as_me:21590: error: No curses header-files found" >&5 echo "$as_me: error: No curses header-files found" >&2;} { (exit 1); exit 1; }; } fi @@ -21512,23 +21597,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:21515: checking for $ac_header" >&5 +echo "$as_me:21600: 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 21521 "configure" +#line 21606 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:21525: \"$ac_cpp "conftest.$ac_ext"\"") >&5 +if { (eval echo "$as_me:21610: \"$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:21531: \$? = $ac_status" >&5 + echo "$as_me:21616: \$? = $ac_status" >&5 (exit "$ac_status"); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -21547,7 +21632,7 @@ else fi rm -f conftest.err "conftest.$ac_ext" fi -echo "$as_me:21550: result: `eval echo '${'"$as_ac_Header"'}'`" >&5 +echo "$as_me:21635: 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 @@ -21557,7 +21642,7 @@ EOF fi done -echo "$as_me:21560: checking for terminfo header" >&5 +echo "$as_me:21645: 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 @@ -21575,7 +21660,7 @@ esac for cf_test in $cf_term_header "ncurses/term.h" "ncursesw/term.h" do cat >"conftest.$ac_ext" <<_ACEOF -#line 21578 "configure" +#line 21663 "configure" #include "confdefs.h" #include <stdio.h> #include <${cf_cv_ncurses_header:-curses.h}> @@ -21590,16 +21675,16 @@ int x = auto_left_margin; (void)x } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:21593: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:21678: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:21596: \$? = $ac_status" >&5 + echo "$as_me:21681: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:21599: \"$ac_try\"") >&5 + { (eval echo "$as_me:21684: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:21602: \$? = $ac_status" >&5 + echo "$as_me:21687: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_term_header="$cf_test" @@ -21615,7 +21700,7 @@ rm -f "conftest.$ac_objext" "conftest.$ac_ext" done fi -echo "$as_me:21618: result: $cf_cv_term_header" >&5 +echo "$as_me:21703: result: $cf_cv_term_header" >&5 echo "${ECHO_T}$cf_cv_term_header" >&6 # Set definitions to allow ifdef'ing to accommodate subdirectories @@ -21647,7 +21732,7 @@ EOF ;; esac -echo "$as_me:21650: checking for ncurses version" >&5 +echo "$as_me:21735: 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 @@ -21673,10 +21758,10 @@ Autoconf "old" #endif EOF cf_try="$ac_cpp conftest.$ac_ext 2>&5 | grep '^Autoconf ' >conftest.out" - { (eval echo "$as_me:21676: \"$cf_try\"") >&5 + { (eval echo "$as_me:21761: \"$cf_try\"") >&5 (eval $cf_try) 2>&5 ac_status=$? - echo "$as_me:21679: \$? = $ac_status" >&5 + echo "$as_me:21764: \$? = $ac_status" >&5 (exit "$ac_status"); } if test -f conftest.out ; then cf_out=`sed -e 's%^Autoconf %%' -e 's%^[^"]*"%%' -e 's%".*%%' conftest.out` @@ -21686,7 +21771,7 @@ EOF else cat >"conftest.$ac_ext" <<_ACEOF -#line 21689 "configure" +#line 21774 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> @@ -21711,15 +21796,15 @@ int main(void) } _ACEOF rm -f "conftest$ac_exeext" -if { (eval echo "$as_me:21714: \"$ac_link\"") >&5 +if { (eval echo "$as_me:21799: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:21717: \$? = $ac_status" >&5 + echo "$as_me:21802: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='"./conftest$ac_exeext"' - { (eval echo "$as_me:21719: \"$ac_try\"") >&5 + { (eval echo "$as_me:21804: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:21722: \$? = $ac_status" >&5 + echo "$as_me:21807: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_ncurses_version=`cat $cf_tempfile` @@ -21733,17 +21818,17 @@ fi rm -f "$cf_tempfile" fi -echo "$as_me:21736: result: $cf_cv_ncurses_version" >&5 +echo "$as_me:21821: 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:21743: checking if we have identified curses libraries" >&5 +echo "$as_me:21828: 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 21746 "configure" +#line 21831 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> int @@ -21755,16 +21840,16 @@ initscr(); tgoto("?", 0,0) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:21758: \"$ac_link\"") >&5 +if { (eval echo "$as_me:21843: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:21761: \$? = $ac_status" >&5 + echo "$as_me:21846: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:21764: \"$ac_try\"") >&5 + { (eval echo "$as_me:21849: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:21767: \$? = $ac_status" >&5 + echo "$as_me:21852: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_result=yes else @@ -21773,13 +21858,13 @@ cat "conftest.$ac_ext" >&5 cf_result=no fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" -echo "$as_me:21776: result: $cf_result" >&5 +echo "$as_me:21861: result: $cf_result" >&5 echo "${ECHO_T}$cf_result" >&6 if test "$cf_result" = no ; then case "$host_os" in (freebsd*) - echo "$as_me:21782: checking for tgoto in -lmytinfo" >&5 + echo "$as_me:21867: 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 @@ -21787,7 +21872,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lmytinfo $LIBS" cat >"conftest.$ac_ext" <<_ACEOF -#line 21790 "configure" +#line 21875 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -21806,16 +21891,16 @@ tgoto (); } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:21809: \"$ac_link\"") >&5 +if { (eval echo "$as_me:21894: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:21812: \$? = $ac_status" >&5 + echo "$as_me:21897: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:21815: \"$ac_try\"") >&5 + { (eval echo "$as_me:21900: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:21818: \$? = $ac_status" >&5 + echo "$as_me:21903: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_lib_mytinfo_tgoto=yes else @@ -21826,7 +21911,7 @@ fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:21829: result: $ac_cv_lib_mytinfo_tgoto" >&5 +echo "$as_me:21914: 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 @@ -21856,7 +21941,7 @@ fi # term.h) for cur_colr if test "x$cf_cv_screen" = "xcurses_colr" then - echo "$as_me:21859: checking for initscr in -lcur_colr" >&5 + echo "$as_me:21944: 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 @@ -21864,7 +21949,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lcur_colr $LIBS" cat >"conftest.$ac_ext" <<_ACEOF -#line 21867 "configure" +#line 21952 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -21883,16 +21968,16 @@ initscr (); } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:21886: \"$ac_link\"") >&5 +if { (eval echo "$as_me:21971: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:21889: \$? = $ac_status" >&5 + echo "$as_me:21974: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:21892: \"$ac_try\"") >&5 + { (eval echo "$as_me:21977: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:21895: \$? = $ac_status" >&5 + echo "$as_me:21980: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_lib_cur_colr_initscr=yes else @@ -21903,7 +21988,7 @@ fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:21906: result: $ac_cv_lib_cur_colr_initscr" >&5 +echo "$as_me:21991: 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 @@ -21927,7 +22012,7 @@ LIBS="$cf_add_libs" else - echo "$as_me:21930: checking for initscr in -lHcurses" >&5 + echo "$as_me:22015: 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 @@ -21935,7 +22020,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lHcurses $LIBS" cat >"conftest.$ac_ext" <<_ACEOF -#line 21938 "configure" +#line 22023 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -21954,16 +22039,16 @@ initscr (); } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:21957: \"$ac_link\"") >&5 +if { (eval echo "$as_me:22042: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:21960: \$? = $ac_status" >&5 + echo "$as_me:22045: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:21963: \"$ac_try\"") >&5 + { (eval echo "$as_me:22048: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:21966: \$? = $ac_status" >&5 + echo "$as_me:22051: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_lib_Hcurses_initscr=yes else @@ -21974,7 +22059,7 @@ fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:21977: result: $ac_cv_lib_Hcurses_initscr" >&5 +echo "$as_me:22062: 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 @@ -22032,7 +22117,7 @@ if test -n "/lib64" ; 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}:22035: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:22120: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -22061,7 +22146,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}:22064: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:22149: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -22092,7 +22177,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}:22095: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:22180: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -22127,7 +22212,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}:22130: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:22215: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -22171,13 +22256,13 @@ if test ".$ac_cv_func_initscr" != .yes ; then # because it may be needed to link the test-case for initscr. if test "x$cf_term_lib" = x then - echo "$as_me:22174: checking for tgoto" >&5 + echo "$as_me:22259: 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 22180 "configure" +#line 22265 "configure" #include "confdefs.h" #define tgoto autoconf_temporary #include <limits.h> /* least-intrusive standard header which defines gcc2 __stub macros */ @@ -22208,16 +22293,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:22211: \"$ac_link\"") >&5 +if { (eval echo "$as_me:22296: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:22214: \$? = $ac_status" >&5 + echo "$as_me:22299: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:22217: \"$ac_try\"") >&5 + { (eval echo "$as_me:22302: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:22220: \$? = $ac_status" >&5 + echo "$as_me:22305: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_func_tgoto=yes else @@ -22227,7 +22312,7 @@ ac_cv_func_tgoto=no fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:22230: result: $ac_cv_func_tgoto" >&5 +echo "$as_me:22315: 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 @@ -22236,7 +22321,7 @@ else for cf_term_lib in $cf_check_list otermcap termcap tinfo termlib unknown do as_ac_Lib=`echo "ac_cv_lib_$cf_term_lib''_tgoto" | $as_tr_sh` -echo "$as_me:22239: checking for tgoto in -l$cf_term_lib" >&5 +echo "$as_me:22324: 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 @@ -22244,7 +22329,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-l$cf_term_lib $LIBS" cat >"conftest.$ac_ext" <<_ACEOF -#line 22247 "configure" +#line 22332 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -22263,16 +22348,16 @@ tgoto (); } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:22266: \"$ac_link\"") >&5 +if { (eval echo "$as_me:22351: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:22269: \$? = $ac_status" >&5 + echo "$as_me:22354: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:22272: \"$ac_try\"") >&5 + { (eval echo "$as_me:22357: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:22275: \$? = $ac_status" >&5 + echo "$as_me:22360: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then eval "$as_ac_Lib=yes" else @@ -22283,7 +22368,7 @@ fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:22286: result: `eval echo '${'"$as_ac_Lib"'}'`" >&5 +echo "$as_me:22371: 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 @@ -22306,10 +22391,10 @@ fi do LIBS="-l$cf_curs_lib $cf_save_LIBS" if test "$cf_term_lib" = unknown || test "$cf_term_lib" = "$cf_curs_lib" ; then - echo "$as_me:22309: checking if we can link with $cf_curs_lib library" >&5 + echo "$as_me:22394: 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 22312 "configure" +#line 22397 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> int @@ -22321,16 +22406,16 @@ initscr() } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:22324: \"$ac_link\"") >&5 +if { (eval echo "$as_me:22409: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:22327: \$? = $ac_status" >&5 + echo "$as_me:22412: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:22330: \"$ac_try\"") >&5 + { (eval echo "$as_me:22415: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:22333: \$? = $ac_status" >&5 + echo "$as_me:22418: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_result=yes else @@ -22339,16 +22424,16 @@ cat "conftest.$ac_ext" >&5 cf_result=no fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" - echo "$as_me:22342: result: $cf_result" >&5 + echo "$as_me:22427: result: $cf_result" >&5 echo "${ECHO_T}$cf_result" >&6 test "$cf_result" = yes && break elif test "$cf_curs_lib" = "$cf_term_lib" ; then cf_result=no elif test "$cf_term_lib" != predefined ; then - echo "$as_me:22348: checking if we need both $cf_curs_lib and $cf_term_lib libraries" >&5 + echo "$as_me:22433: 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 22351 "configure" +#line 22436 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> int @@ -22360,16 +22445,16 @@ initscr(); tgoto((char *)0, 0, 0); } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:22363: \"$ac_link\"") >&5 +if { (eval echo "$as_me:22448: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:22366: \$? = $ac_status" >&5 + echo "$as_me:22451: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:22369: \"$ac_try\"") >&5 + { (eval echo "$as_me:22454: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:22372: \$? = $ac_status" >&5 + echo "$as_me:22457: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_result=no else @@ -22378,7 +22463,7 @@ cat "conftest.$ac_ext" >&5 LIBS="-l$cf_curs_lib -l$cf_term_lib $cf_save_LIBS" cat >"conftest.$ac_ext" <<_ACEOF -#line 22381 "configure" +#line 22466 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> int @@ -22390,16 +22475,16 @@ initscr() } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:22393: \"$ac_link\"") >&5 +if { (eval echo "$as_me:22478: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:22396: \$? = $ac_status" >&5 + echo "$as_me:22481: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:22399: \"$ac_try\"") >&5 + { (eval echo "$as_me:22484: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:22402: \$? = $ac_status" >&5 + echo "$as_me:22487: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_result=yes else @@ -22411,19 +22496,19 @@ 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:22414: result: $cf_result" >&5 + echo "$as_me:22499: result: $cf_result" >&5 echo "${ECHO_T}$cf_result" >&6 test "$cf_result" != error && break fi done fi - test "$cf_curs_lib" = unknown && { { echo "$as_me:22420: error: no curses library found" >&5 + test "$cf_curs_lib" = unknown && { { echo "$as_me:22505: error: no curses library found" >&5 echo "$as_me: error: no curses library found" >&2;} { (exit 1); exit 1; }; } fi fi -echo "$as_me:22426: checking for curses performance tradeoff" >&5 +echo "$as_me:22511: 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 @@ -22431,7 +22516,7 @@ else cf_cv_curs_performance=no cat >"conftest.$ac_ext" <<_ACEOF -#line 22434 "configure" +#line 22519 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> @@ -22450,20 +22535,20 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:22453: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:22538: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:22456: \$? = $ac_status" >&5 + echo "$as_me:22541: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:22459: \"$ac_try\"") >&5 + { (eval echo "$as_me:22544: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:22462: \$? = $ac_status" >&5 + echo "$as_me:22547: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cat >"conftest.$ac_ext" <<_ACEOF -#line 22466 "configure" +#line 22551 "configure" #include "confdefs.h" #define CURS_PERFORMANCE @@ -22483,16 +22568,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:22486: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:22571: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:22489: \$? = $ac_status" >&5 + echo "$as_me:22574: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:22492: \"$ac_try\"") >&5 + { (eval echo "$as_me:22577: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:22495: \$? = $ac_status" >&5 + echo "$as_me:22580: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_curs_performance=yes else @@ -22507,21 +22592,21 @@ fi rm -f "conftest.$ac_objext" "conftest.$ac_ext" fi -echo "$as_me:22510: result: $cf_cv_curs_performance" >&5 +echo "$as_me:22595: 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:22517: checking for curses touchline function" >&5 +echo "$as_me:22602: 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 22524 "configure" +#line 22609 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> @@ -22534,23 +22619,23 @@ touchline(stdscr, 1,2,3); } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:22537: \"$ac_link\"") >&5 +if { (eval echo "$as_me:22622: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:22540: \$? = $ac_status" >&5 + echo "$as_me:22625: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:22543: \"$ac_try\"") >&5 + { (eval echo "$as_me:22628: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:22546: \$? = $ac_status" >&5 + echo "$as_me:22631: \$? = $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 22553 "configure" +#line 22638 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> @@ -22563,16 +22648,16 @@ touchline(stdscr, 1,2); } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:22566: \"$ac_link\"") >&5 +if { (eval echo "$as_me:22651: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:22569: \$? = $ac_status" >&5 + echo "$as_me:22654: \$? = $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:22657: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:22575: \$? = $ac_status" >&5 + echo "$as_me:22660: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_curs_touchline=sysv else @@ -22584,7 +22669,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:22587: result: $cf_cv_curs_touchline" >&5 +echo "$as_me:22672: result: $cf_cv_curs_touchline" >&5 echo "${ECHO_T}$cf_cv_curs_touchline" >&6 case "$cf_cv_curs_touchline" in (bsd) @@ -22606,7 +22691,7 @@ esac ;; (ncursesw*) -echo "$as_me:22609: checking for multibyte character support" >&5 +echo "$as_me:22694: 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 @@ -22614,7 +22699,7 @@ else cf_save_LIBS="$LIBS" cat >"conftest.$ac_ext" <<_ACEOF -#line 22617 "configure" +#line 22702 "configure" #include "confdefs.h" #include <stdlib.h> @@ -22627,16 +22712,16 @@ putwc(0,0); } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:22630: \"$ac_link\"") >&5 +if { (eval echo "$as_me:22715: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:22633: \$? = $ac_status" >&5 + echo "$as_me:22718: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:22636: \"$ac_try\"") >&5 + { (eval echo "$as_me:22721: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:22639: \$? = $ac_status" >&5 + echo "$as_me:22724: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_utf8_lib=yes else @@ -22648,12 +22733,12 @@ cat "conftest.$ac_ext" >&5 cf_cv_header_path_utf8= cf_cv_library_path_utf8= -echo "${as_me:-configure}:22651: testing Starting FIND_LINKAGE(utf8,) ..." 1>&5 +echo "${as_me:-configure}:22736: testing Starting FIND_LINKAGE(utf8,) ..." 1>&5 cf_save_LIBS="$LIBS" cat >"conftest.$ac_ext" <<_ACEOF -#line 22656 "configure" +#line 22741 "configure" #include "confdefs.h" #include <libutf8.h> @@ -22666,16 +22751,16 @@ putwc(0,0); } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:22669: \"$ac_link\"") >&5 +if { (eval echo "$as_me:22754: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:22672: \$? = $ac_status" >&5 + echo "$as_me:22757: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:22675: \"$ac_try\"") >&5 + { (eval echo "$as_me:22760: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:22678: \$? = $ac_status" >&5 + echo "$as_me:22763: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_find_linkage_utf8=yes @@ -22689,7 +22774,7 @@ cat "conftest.$ac_ext" >&5 LIBS="-lutf8 $cf_save_LIBS" cat >"conftest.$ac_ext" <<_ACEOF -#line 22692 "configure" +#line 22777 "configure" #include "confdefs.h" #include <libutf8.h> @@ -22702,16 +22787,16 @@ putwc(0,0); } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:22705: \"$ac_link\"") >&5 +if { (eval echo "$as_me:22790: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:22708: \$? = $ac_status" >&5 + echo "$as_me:22793: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:22711: \"$ac_try\"") >&5 + { (eval echo "$as_me:22796: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:22714: \$? = $ac_status" >&5 + echo "$as_me:22799: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_find_linkage_utf8=yes @@ -22728,9 +22813,9 @@ cat "conftest.$ac_ext" >&5 test -n "$verbose" && echo " find linkage for utf8 library" 1>&6 -echo "${as_me:-configure}:22731: testing find linkage for utf8 library ..." 1>&5 +echo "${as_me:-configure}:22816: testing find linkage for utf8 library ..." 1>&5 -echo "${as_me:-configure}:22733: testing Searching for headers in FIND_LINKAGE(utf8,) ..." 1>&5 +echo "${as_me:-configure}:22818: testing Searching for headers in FIND_LINKAGE(utf8,) ..." 1>&5 cf_save_CPPFLAGS="$CPPFLAGS" cf_test_CPPFLAGS="$CPPFLAGS" @@ -22821,7 +22906,7 @@ cf_search="$cf_search $cf_header_path_list" 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}:22824: testing ... testing $cf_cv_header_path_utf8 ..." 1>&5 +echo "${as_me:-configure}:22909: testing ... testing $cf_cv_header_path_utf8 ..." 1>&5 CPPFLAGS="$cf_save_CPPFLAGS" @@ -22829,7 +22914,7 @@ echo "${as_me:-configure}:22824: testing ... testing $cf_cv_header_path_utf8 ... CPPFLAGS="${CPPFLAGS}-I$cf_cv_header_path_utf8" cat >"conftest.$ac_ext" <<_ACEOF -#line 22832 "configure" +#line 22917 "configure" #include "confdefs.h" #include <libutf8.h> @@ -22842,21 +22927,21 @@ putwc(0,0); } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:22845: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:22930: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:22848: \$? = $ac_status" >&5 + echo "$as_me:22933: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:22851: \"$ac_try\"") >&5 + { (eval echo "$as_me:22936: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:22854: \$? = $ac_status" >&5 + echo "$as_me:22939: \$? = $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}:22859: testing ... found utf8 headers in $cf_cv_header_path_utf8 ..." 1>&5 +echo "${as_me:-configure}:22944: testing ... found utf8 headers in $cf_cv_header_path_utf8 ..." 1>&5 cf_cv_find_linkage_utf8=maybe cf_test_CPPFLAGS="$CPPFLAGS" @@ -22874,7 +22959,7 @@ rm -f "conftest.$ac_objext" "conftest.$ac_ext" if test "$cf_cv_find_linkage_utf8" = maybe ; then -echo "${as_me:-configure}:22877: testing Searching for utf8 library in FIND_LINKAGE(utf8,) ..." 1>&5 +echo "${as_me:-configure}:22962: testing Searching for utf8 library in FIND_LINKAGE(utf8,) ..." 1>&5 cf_save_LIBS="$LIBS" cf_save_LDFLAGS="$LDFLAGS" @@ -22949,13 +23034,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}:22952: testing ... testing $cf_cv_library_path_utf8 ..." 1>&5 +echo "${as_me:-configure}:23037: 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 22958 "configure" +#line 23043 "configure" #include "confdefs.h" #include <libutf8.h> @@ -22968,21 +23053,21 @@ putwc(0,0); } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:22971: \"$ac_link\"") >&5 +if { (eval echo "$as_me:23056: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:22974: \$? = $ac_status" >&5 + echo "$as_me:23059: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:22977: \"$ac_try\"") >&5 + { (eval echo "$as_me:23062: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:22980: \$? = $ac_status" >&5 + echo "$as_me:23065: \$? = $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}:22985: testing ... found utf8 library in $cf_cv_library_path_utf8 ..." 1>&5 +echo "${as_me:-configure}:23070: testing ... found utf8 library in $cf_cv_library_path_utf8 ..." 1>&5 cf_cv_find_linkage_utf8=yes cf_cv_library_file_utf8="-lutf8" @@ -23024,7 +23109,7 @@ fi fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:23027: result: $cf_cv_utf8_lib" >&5 +echo "$as_me:23112: 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 @@ -23062,7 +23147,7 @@ if test -n "$cf_cv_header_path_utf8" ; then CPPFLAGS="${CPPFLAGS}-I$cf_add_incdir" cat >"conftest.$ac_ext" <<_ACEOF -#line 23065 "configure" +#line 23150 "configure" #include "confdefs.h" #include <stdio.h> int @@ -23074,16 +23159,16 @@ printf("Hello") } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:23077: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:23162: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:23080: \$? = $ac_status" >&5 + echo "$as_me:23165: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:23083: \"$ac_try\"") >&5 + { (eval echo "$as_me:23168: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23086: \$? = $ac_status" >&5 + echo "$as_me:23171: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then : else @@ -23100,7 +23185,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}:23103: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:23188: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -23136,7 +23221,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}:23139: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:23224: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -23166,13 +23251,13 @@ cf_ncuconfig_root=$cf_cv_screen cf_have_ncuconfig=no if test "x${PKG_CONFIG:=none}" != xnone; then - echo "$as_me:23169: checking pkg-config for $cf_ncuconfig_root" >&5 + echo "$as_me:23254: checking pkg-config for $cf_ncuconfig_root" >&5 echo $ECHO_N "checking pkg-config for $cf_ncuconfig_root... $ECHO_C" >&6 if "$PKG_CONFIG" --exists $cf_ncuconfig_root ; then - echo "$as_me:23172: result: yes" >&5 + echo "$as_me:23257: result: yes" >&5 echo "${ECHO_T}yes" >&6 - echo "$as_me:23175: checking if the $cf_ncuconfig_root package files work" >&5 + echo "$as_me:23260: checking if the $cf_ncuconfig_root package files work" >&5 echo $ECHO_N "checking if the $cf_ncuconfig_root package files work... $ECHO_C" >&6 cf_have_ncuconfig=unknown @@ -23305,7 +23390,7 @@ done LIBS="$cf_add_libs" cat >"conftest.$ac_ext" <<_ACEOF -#line 23308 "configure" +#line 23393 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> int @@ -23317,37 +23402,37 @@ initscr(); mousemask(0,0); tigetstr((char *)0); } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:23320: \"$ac_link\"") >&5 +if { (eval echo "$as_me:23405: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:23323: \$? = $ac_status" >&5 + echo "$as_me:23408: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:23326: \"$ac_try\"") >&5 + { (eval echo "$as_me:23411: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23329: \$? = $ac_status" >&5 + echo "$as_me:23414: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then if test "$cross_compiling" = yes; then cf_test_ncuconfig=maybe else cat >"conftest.$ac_ext" <<_ACEOF -#line 23335 "configure" +#line 23420 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> int main(void) { char *xx = curses_version(); return (xx == 0); } _ACEOF rm -f "conftest$ac_exeext" -if { (eval echo "$as_me:23342: \"$ac_link\"") >&5 +if { (eval echo "$as_me:23427: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:23345: \$? = $ac_status" >&5 + echo "$as_me:23430: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='"./conftest$ac_exeext"' - { (eval echo "$as_me:23347: \"$ac_try\"") >&5 + { (eval echo "$as_me:23432: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23350: \$? = $ac_status" >&5 + echo "$as_me:23435: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_test_ncuconfig=yes else @@ -23493,7 +23578,7 @@ done LIBS="$cf_add_libs" cat >"conftest.$ac_ext" <<_ACEOF -#line 23496 "configure" +#line 23581 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> int @@ -23505,37 +23590,37 @@ initscr(); mousemask(0,0); tigetstr((char *)0); } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:23508: \"$ac_link\"") >&5 +if { (eval echo "$as_me:23593: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:23511: \$? = $ac_status" >&5 + echo "$as_me:23596: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:23514: \"$ac_try\"") >&5 + { (eval echo "$as_me:23599: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23517: \$? = $ac_status" >&5 + echo "$as_me:23602: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then if test "$cross_compiling" = yes; then cf_have_ncuconfig=maybe else cat >"conftest.$ac_ext" <<_ACEOF -#line 23523 "configure" +#line 23608 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> int main(void) { char *xx = curses_version(); return (xx == 0); } _ACEOF rm -f "conftest$ac_exeext" -if { (eval echo "$as_me:23530: \"$ac_link\"") >&5 +if { (eval echo "$as_me:23615: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:23533: \$? = $ac_status" >&5 + echo "$as_me:23618: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='"./conftest$ac_exeext"' - { (eval echo "$as_me:23535: \"$ac_try\"") >&5 + { (eval echo "$as_me:23620: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23538: \$? = $ac_status" >&5 + echo "$as_me:23623: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_have_ncuconfig=yes else @@ -23552,7 +23637,7 @@ cat "conftest.$ac_ext" >&5 cf_have_ncuconfig=no fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" - echo "$as_me:23555: result: $cf_have_ncuconfig" >&5 + echo "$as_me:23640: result: $cf_have_ncuconfig" >&5 echo "${ECHO_T}$cf_have_ncuconfig" >&6 test "$cf_have_ncuconfig" = maybe && cf_have_ncuconfig=yes if test "$cf_have_ncuconfig" != "yes" @@ -23568,7 +23653,7 @@ EOF NCURSES_CONFIG_PKG=$cf_ncuconfig_root -echo "$as_me:23571: checking for terminfo header" >&5 +echo "$as_me:23656: 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 @@ -23586,7 +23671,7 @@ esac for cf_test in $cf_term_header "ncurses/term.h" "ncursesw/term.h" do cat >"conftest.$ac_ext" <<_ACEOF -#line 23589 "configure" +#line 23674 "configure" #include "confdefs.h" #include <stdio.h> #include <${cf_cv_ncurses_header:-curses.h}> @@ -23601,16 +23686,16 @@ int x = auto_left_margin; (void)x } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:23604: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:23689: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:23607: \$? = $ac_status" >&5 + echo "$as_me:23692: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:23610: \"$ac_try\"") >&5 + { (eval echo "$as_me:23695: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23613: \$? = $ac_status" >&5 + echo "$as_me:23698: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_term_header="$cf_test" @@ -23626,7 +23711,7 @@ rm -f "conftest.$ac_objext" "conftest.$ac_ext" done fi -echo "$as_me:23629: result: $cf_cv_term_header" >&5 +echo "$as_me:23714: result: $cf_cv_term_header" >&5 echo "${ECHO_T}$cf_cv_term_header" >&6 # Set definitions to allow ifdef'ing to accommodate subdirectories @@ -23661,7 +23746,7 @@ esac fi else - echo "$as_me:23664: result: no" >&5 + echo "$as_me:23749: result: no" >&5 echo "${ECHO_T}no" >&6 NCURSES_CONFIG_PKG=none fi @@ -23677,7 +23762,7 @@ if test -n "$ac_tool_prefix"; 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:23680: checking for $ac_word" >&5 +echo "$as_me:23765: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_prog_NCURSES_CONFIG+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -23692,7 +23777,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_NCURSES_CONFIG="$ac_tool_prefix$ac_prog" -echo "$as_me:23695: found $ac_dir/$ac_word" >&5 +echo "$as_me:23780: found $ac_dir/$ac_word" >&5 break done @@ -23700,10 +23785,10 @@ fi fi NCURSES_CONFIG=$ac_cv_prog_NCURSES_CONFIG if test -n "$NCURSES_CONFIG"; then - echo "$as_me:23703: result: $NCURSES_CONFIG" >&5 + echo "$as_me:23788: result: $NCURSES_CONFIG" >&5 echo "${ECHO_T}$NCURSES_CONFIG" >&6 else - echo "$as_me:23706: result: no" >&5 + echo "$as_me:23791: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -23716,7 +23801,7 @@ if test -z "$NCURSES_CONFIG"; 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:23719: checking for $ac_word" >&5 +echo "$as_me:23804: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_prog_ac_ct_NCURSES_CONFIG+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -23731,7 +23816,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_NCURSES_CONFIG="$ac_prog" -echo "$as_me:23734: found $ac_dir/$ac_word" >&5 +echo "$as_me:23819: found $ac_dir/$ac_word" >&5 break done @@ -23739,10 +23824,10 @@ fi fi ac_ct_NCURSES_CONFIG=$ac_cv_prog_ac_ct_NCURSES_CONFIG if test -n "$ac_ct_NCURSES_CONFIG"; then - echo "$as_me:23742: result: $ac_ct_NCURSES_CONFIG" >&5 + echo "$as_me:23827: result: $ac_ct_NCURSES_CONFIG" >&5 echo "${ECHO_T}$ac_ct_NCURSES_CONFIG" >&6 else - echo "$as_me:23745: result: no" >&5 + echo "$as_me:23830: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -23871,7 +23956,7 @@ LIBS="$cf_add_libs" # even with config script, some packages use no-override for curses.h -echo "$as_me:23874: checking if we have identified curses headers" >&5 +echo "$as_me:23959: 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 @@ -23883,7 +23968,7 @@ for cf_header in \ curses.h $cf_cv_screen/curses.h do cat >"conftest.$ac_ext" <<_ACEOF -#line 23886 "configure" +#line 23971 "configure" #include "confdefs.h" #include <${cf_header}> int @@ -23895,16 +23980,16 @@ initscr(); tgoto("?", 0,0) } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:23898: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:23983: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:23901: \$? = $ac_status" >&5 + echo "$as_me:23986: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:23904: \"$ac_try\"") >&5 + { (eval echo "$as_me:23989: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23907: \$? = $ac_status" >&5 + echo "$as_me:23992: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_ncurses_header=$cf_header; break else @@ -23915,11 +24000,11 @@ rm -f "conftest.$ac_objext" "conftest.$ac_ext" done fi -echo "$as_me:23918: result: $cf_cv_ncurses_header" >&5 +echo "$as_me:24003: 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:23922: error: No curses header-files found" >&5 + { { echo "$as_me:24007: error: No curses header-files found" >&5 echo "$as_me: error: No curses header-files found" >&2;} { (exit 1); exit 1; }; } fi @@ -23929,23 +24014,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:23932: checking for $ac_header" >&5 +echo "$as_me:24017: 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 23938 "configure" +#line 24023 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:23942: \"$ac_cpp "conftest.$ac_ext"\"") >&5 +if { (eval echo "$as_me:24027: \"$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:23948: \$? = $ac_status" >&5 + echo "$as_me:24033: \$? = $ac_status" >&5 (exit "$ac_status"); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -23964,7 +24049,7 @@ else fi rm -f conftest.err "conftest.$ac_ext" fi -echo "$as_me:23967: result: `eval echo '${'"$as_ac_Header"'}'`" >&5 +echo "$as_me:24052: 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 @@ -24020,7 +24105,7 @@ if test -n "$cf_cv_curses_dir/include/$cf_ncuhdr_root" ; then CPPFLAGS="${CPPFLAGS}-I$cf_add_incdir" cat >"conftest.$ac_ext" <<_ACEOF -#line 24023 "configure" +#line 24108 "configure" #include "confdefs.h" #include <stdio.h> int @@ -24032,16 +24117,16 @@ printf("Hello") } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:24035: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:24120: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:24038: \$? = $ac_status" >&5 + echo "$as_me:24123: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:24041: \"$ac_try\"") >&5 + { (eval echo "$as_me:24126: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:24044: \$? = $ac_status" >&5 + echo "$as_me:24129: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then : else @@ -24058,7 +24143,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}:24061: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:24146: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -24077,7 +24162,7 @@ fi } -echo "$as_me:24080: checking for $cf_ncuhdr_root header in include-path" >&5 +echo "$as_me:24165: 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 @@ -24089,7 +24174,7 @@ else do cat >"conftest.$ac_ext" <<_ACEOF -#line 24092 "configure" +#line 24177 "configure" #include "confdefs.h" #include <$cf_header> @@ -24113,16 +24198,16 @@ printf("old\\n"); } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:24116: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:24201: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:24119: \$? = $ac_status" >&5 + echo "$as_me:24204: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:24122: \"$ac_try\"") >&5 + { (eval echo "$as_me:24207: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:24125: \$? = $ac_status" >&5 + echo "$as_me:24210: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_ncurses_h=$cf_header @@ -24137,14 +24222,14 @@ rm -f "conftest.$ac_objext" "conftest.$ac_ext" done fi -echo "$as_me:24140: result: $cf_cv_ncurses_h" >&5 +echo "$as_me:24225: 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:24147: checking for $cf_ncuhdr_root include-path" >&5 +echo "$as_me:24232: 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 @@ -24265,7 +24350,7 @@ if test -n "$cf_incdir" ; then CPPFLAGS="${CPPFLAGS}-I$cf_add_incdir" cat >"conftest.$ac_ext" <<_ACEOF -#line 24268 "configure" +#line 24353 "configure" #include "confdefs.h" #include <stdio.h> int @@ -24277,16 +24362,16 @@ printf("Hello") } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:24280: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:24365: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:24283: \$? = $ac_status" >&5 + echo "$as_me:24368: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:24286: \"$ac_try\"") >&5 + { (eval echo "$as_me:24371: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:24289: \$? = $ac_status" >&5 + echo "$as_me:24374: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then : else @@ -24303,7 +24388,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}:24306: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:24391: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -24326,7 +24411,7 @@ fi do cat >"conftest.$ac_ext" <<_ACEOF -#line 24329 "configure" +#line 24414 "configure" #include "confdefs.h" #include <$cf_header> @@ -24350,16 +24435,16 @@ printf("old\\n"); } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:24353: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:24438: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:24356: \$? = $ac_status" >&5 + echo "$as_me:24441: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:24359: \"$ac_try\"") >&5 + { (eval echo "$as_me:24444: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:24362: \$? = $ac_status" >&5 + echo "$as_me:24447: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_ncurses_h2=$cf_header @@ -24380,12 +24465,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:24383: error: not found" >&5 + test "$cf_cv_ncurses_h2" = no && { { echo "$as_me:24468: error: not found" >&5 echo "$as_me: error: not found" >&2;} { (exit 1); exit 1; }; } fi -echo "$as_me:24388: result: $cf_cv_ncurses_h2" >&5 +echo "$as_me:24473: 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%/[^/]*$%%'` @@ -24421,7 +24506,7 @@ if test -n "$cf_1st_incdir" ; then CPPFLAGS="${CPPFLAGS}-I$cf_add_incdir" cat >"conftest.$ac_ext" <<_ACEOF -#line 24424 "configure" +#line 24509 "configure" #include "confdefs.h" #include <stdio.h> int @@ -24433,16 +24518,16 @@ printf("Hello") } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:24436: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:24521: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:24439: \$? = $ac_status" >&5 + echo "$as_me:24524: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:24442: \"$ac_try\"") >&5 + { (eval echo "$as_me:24527: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:24445: \$? = $ac_status" >&5 + echo "$as_me:24530: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then : else @@ -24459,7 +24544,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}:24462: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:24547: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -24507,7 +24592,7 @@ EOF ;; esac -echo "$as_me:24510: checking for terminfo header" >&5 +echo "$as_me:24595: 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 @@ -24525,7 +24610,7 @@ esac for cf_test in $cf_term_header "ncurses/term.h" "ncursesw/term.h" do cat >"conftest.$ac_ext" <<_ACEOF -#line 24528 "configure" +#line 24613 "configure" #include "confdefs.h" #include <stdio.h> #include <${cf_cv_ncurses_header:-curses.h}> @@ -24540,16 +24625,16 @@ int x = auto_left_margin; (void)x } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:24543: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:24628: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:24546: \$? = $ac_status" >&5 + echo "$as_me:24631: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:24549: \"$ac_try\"") >&5 + { (eval echo "$as_me:24634: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:24552: \$? = $ac_status" >&5 + echo "$as_me:24637: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_term_header="$cf_test" @@ -24565,7 +24650,7 @@ rm -f "conftest.$ac_objext" "conftest.$ac_ext" done fi -echo "$as_me:24568: result: $cf_cv_term_header" >&5 +echo "$as_me:24653: result: $cf_cv_term_header" >&5 echo "${ECHO_T}$cf_cv_term_header" >&6 # Set definitions to allow ifdef'ing to accommodate subdirectories @@ -24603,7 +24688,7 @@ cat >>confdefs.h <<\EOF #define NCURSES 1 EOF -echo "$as_me:24606: checking for ncurses version" >&5 +echo "$as_me:24691: 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 @@ -24629,10 +24714,10 @@ Autoconf "old" #endif EOF cf_try="$ac_cpp conftest.$ac_ext 2>&5 | grep '^Autoconf ' >conftest.out" - { (eval echo "$as_me:24632: \"$cf_try\"") >&5 + { (eval echo "$as_me:24717: \"$cf_try\"") >&5 (eval $cf_try) 2>&5 ac_status=$? - echo "$as_me:24635: \$? = $ac_status" >&5 + echo "$as_me:24720: \$? = $ac_status" >&5 (exit "$ac_status"); } if test -f conftest.out ; then cf_out=`sed -e 's%^Autoconf %%' -e 's%^[^"]*"%%' -e 's%".*%%' conftest.out` @@ -24642,7 +24727,7 @@ EOF else cat >"conftest.$ac_ext" <<_ACEOF -#line 24645 "configure" +#line 24730 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> @@ -24667,15 +24752,15 @@ int main(void) } _ACEOF rm -f "conftest$ac_exeext" -if { (eval echo "$as_me:24670: \"$ac_link\"") >&5 +if { (eval echo "$as_me:24755: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:24673: \$? = $ac_status" >&5 + echo "$as_me:24758: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='"./conftest$ac_exeext"' - { (eval echo "$as_me:24675: \"$ac_try\"") >&5 + { (eval echo "$as_me:24760: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:24678: \$? = $ac_status" >&5 + echo "$as_me:24763: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_ncurses_version=`cat $cf_tempfile` @@ -24689,7 +24774,7 @@ fi rm -f "$cf_tempfile" fi -echo "$as_me:24692: result: $cf_cv_ncurses_version" >&5 +echo "$as_me:24777: result: $cf_cv_ncurses_version" >&5 echo "${ECHO_T}$cf_cv_ncurses_version" >&6 test "$cf_cv_ncurses_version" = no || cat >>confdefs.h <<\EOF @@ -24702,7 +24787,7 @@ cf_nculib_root=$cf_cv_screen # to link gpm. cf_ncurses_LIBS="" cf_ncurses_SAVE="$LIBS" -echo "$as_me:24705: checking for Gpm_Open in -lgpm" >&5 +echo "$as_me:24790: 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 @@ -24710,7 +24795,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lgpm $LIBS" cat >"conftest.$ac_ext" <<_ACEOF -#line 24713 "configure" +#line 24798 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -24729,16 +24814,16 @@ Gpm_Open (); } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:24732: \"$ac_link\"") >&5 +if { (eval echo "$as_me:24817: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:24735: \$? = $ac_status" >&5 + echo "$as_me:24820: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:24738: \"$ac_try\"") >&5 + { (eval echo "$as_me:24823: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:24741: \$? = $ac_status" >&5 + echo "$as_me:24826: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_lib_gpm_Gpm_Open=yes else @@ -24749,10 +24834,10 @@ fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:24752: result: $ac_cv_lib_gpm_Gpm_Open" >&5 +echo "$as_me:24837: 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:24755: checking for initscr in -lgpm" >&5 + echo "$as_me:24840: 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 @@ -24760,7 +24845,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lgpm $LIBS" cat >"conftest.$ac_ext" <<_ACEOF -#line 24763 "configure" +#line 24848 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -24779,16 +24864,16 @@ initscr (); } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:24782: \"$ac_link\"") >&5 +if { (eval echo "$as_me:24867: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:24785: \$? = $ac_status" >&5 + echo "$as_me:24870: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:24788: \"$ac_try\"") >&5 + { (eval echo "$as_me:24873: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:24791: \$? = $ac_status" >&5 + echo "$as_me:24876: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_lib_gpm_initscr=yes else @@ -24799,7 +24884,7 @@ fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:24802: result: $ac_cv_lib_gpm_initscr" >&5 +echo "$as_me:24887: 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" @@ -24814,7 +24899,7 @@ case "$host_os" in # 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:24817: checking for tgoto in -lmytinfo" >&5 + echo "$as_me:24902: 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 @@ -24822,7 +24907,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lmytinfo $LIBS" cat >"conftest.$ac_ext" <<_ACEOF -#line 24825 "configure" +#line 24910 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -24841,16 +24926,16 @@ tgoto (); } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:24844: \"$ac_link\"") >&5 +if { (eval echo "$as_me:24929: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:24847: \$? = $ac_status" >&5 + echo "$as_me:24932: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:24850: \"$ac_try\"") >&5 + { (eval echo "$as_me:24935: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:24853: \$? = $ac_status" >&5 + echo "$as_me:24938: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_lib_mytinfo_tgoto=yes else @@ -24861,7 +24946,7 @@ fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:24864: result: $ac_cv_lib_mytinfo_tgoto" >&5 +echo "$as_me:24949: 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" @@ -24910,13 +24995,13 @@ else eval 'cf_cv_have_lib_'"$cf_nculib_root"'=no' cf_libdir="" - echo "$as_me:24913: checking for initscr" >&5 + echo "$as_me:24998: 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 24919 "configure" +#line 25004 "configure" #include "confdefs.h" #define initscr autoconf_temporary #include <limits.h> /* least-intrusive standard header which defines gcc2 __stub macros */ @@ -24947,16 +25032,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:24950: \"$ac_link\"") >&5 +if { (eval echo "$as_me:25035: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:24953: \$? = $ac_status" >&5 + echo "$as_me:25038: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:24956: \"$ac_try\"") >&5 + { (eval echo "$as_me:25041: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:24959: \$? = $ac_status" >&5 + echo "$as_me:25044: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_func_initscr=yes else @@ -24966,18 +25051,18 @@ ac_cv_func_initscr=no fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:24969: result: $ac_cv_func_initscr" >&5 +echo "$as_me:25054: 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:24976: checking for initscr in -l$cf_nculib_root" >&5 + echo "$as_me:25061: 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 24980 "configure" +#line 25065 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> int @@ -24989,25 +25074,25 @@ initscr() } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:24992: \"$ac_link\"") >&5 +if { (eval echo "$as_me:25077: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:24995: \$? = $ac_status" >&5 + echo "$as_me:25080: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:24998: \"$ac_try\"") >&5 + { (eval echo "$as_me:25083: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25001: \$? = $ac_status" >&5 + echo "$as_me:25086: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then - echo "$as_me:25003: result: yes" >&5 + echo "$as_me:25088: 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:25010: result: no" >&5 +echo "$as_me:25095: result: no" >&5 echo "${ECHO_T}no" >&6 cf_search= @@ -25075,11 +25160,11 @@ cf_search="$cf_library_path_list $cf_search" for cf_libdir in $cf_search do - echo "$as_me:25078: checking for -l$cf_nculib_root in $cf_libdir" >&5 + echo "$as_me:25163: 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 25082 "configure" +#line 25167 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> int @@ -25091,25 +25176,25 @@ initscr() } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:25094: \"$ac_link\"") >&5 +if { (eval echo "$as_me:25179: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:25097: \$? = $ac_status" >&5 + echo "$as_me:25182: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:25100: \"$ac_try\"") >&5 + { (eval echo "$as_me:25185: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25103: \$? = $ac_status" >&5 + echo "$as_me:25188: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then - echo "$as_me:25105: result: yes" >&5 + echo "$as_me:25190: 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:25112: result: no" >&5 +echo "$as_me:25197: result: no" >&5 echo "${ECHO_T}no" >&6 LIBS="$cf_save_LIBS" fi @@ -25124,7 +25209,7 @@ fi eval 'cf_found_library="$cf_cv_have_lib_'"$cf_nculib_root"\" if test "$cf_found_library" = no ; then - { { echo "$as_me:25127: error: Cannot link $cf_nculib_root library" >&5 + { { echo "$as_me:25212: error: Cannot link $cf_nculib_root library" >&5 echo "$as_me: error: Cannot link $cf_nculib_root library" >&2;} { (exit 1); exit 1; }; } fi @@ -25132,7 +25217,7 @@ fi fi if test -n "$cf_ncurses_LIBS" ; then - echo "$as_me:25135: checking if we can link $cf_nculib_root without $cf_ncurses_LIBS" >&5 + echo "$as_me:25220: 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 @@ -25142,7 +25227,7 @@ echo $ECHO_N "checking if we can link $cf_nculib_root without $cf_ncurses_LIBS.. fi done cat >"conftest.$ac_ext" <<_ACEOF -#line 25145 "configure" +#line 25230 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> int @@ -25154,23 +25239,23 @@ initscr(); mousemask(0,0); tigetstr((char *)0); } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:25157: \"$ac_link\"") >&5 +if { (eval echo "$as_me:25242: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:25160: \$? = $ac_status" >&5 + echo "$as_me:25245: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:25163: \"$ac_try\"") >&5 + { (eval echo "$as_me:25248: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25166: \$? = $ac_status" >&5 + echo "$as_me:25251: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then - echo "$as_me:25168: result: yes" >&5 + echo "$as_me:25253: result: yes" >&5 echo "${ECHO_T}yes" >&6 else echo "$as_me: failed program was:" >&5 cat "conftest.$ac_ext" >&5 -echo "$as_me:25173: result: no" >&5 +echo "$as_me:25258: result: no" >&5 echo "${ECHO_T}no" >&6 LIBS="$cf_ncurses_SAVE" fi @@ -25196,13 +25281,13 @@ cf_ncuconfig_root=$cf_cv_screen cf_have_ncuconfig=no if test "x${PKG_CONFIG:=none}" != xnone; then - echo "$as_me:25199: checking pkg-config for $cf_ncuconfig_root" >&5 + echo "$as_me:25284: checking pkg-config for $cf_ncuconfig_root" >&5 echo $ECHO_N "checking pkg-config for $cf_ncuconfig_root... $ECHO_C" >&6 if "$PKG_CONFIG" --exists $cf_ncuconfig_root ; then - echo "$as_me:25202: result: yes" >&5 + echo "$as_me:25287: result: yes" >&5 echo "${ECHO_T}yes" >&6 - echo "$as_me:25205: checking if the $cf_ncuconfig_root package files work" >&5 + echo "$as_me:25290: checking if the $cf_ncuconfig_root package files work" >&5 echo $ECHO_N "checking if the $cf_ncuconfig_root package files work... $ECHO_C" >&6 cf_have_ncuconfig=unknown @@ -25335,7 +25420,7 @@ done LIBS="$cf_add_libs" cat >"conftest.$ac_ext" <<_ACEOF -#line 25338 "configure" +#line 25423 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> int @@ -25347,37 +25432,37 @@ initscr(); mousemask(0,0); tigetstr((char *)0); } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:25350: \"$ac_link\"") >&5 +if { (eval echo "$as_me:25435: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:25353: \$? = $ac_status" >&5 + echo "$as_me:25438: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:25356: \"$ac_try\"") >&5 + { (eval echo "$as_me:25441: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25359: \$? = $ac_status" >&5 + echo "$as_me:25444: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then if test "$cross_compiling" = yes; then cf_test_ncuconfig=maybe else cat >"conftest.$ac_ext" <<_ACEOF -#line 25365 "configure" +#line 25450 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> int main(void) { char *xx = curses_version(); return (xx == 0); } _ACEOF rm -f "conftest$ac_exeext" -if { (eval echo "$as_me:25372: \"$ac_link\"") >&5 +if { (eval echo "$as_me:25457: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:25375: \$? = $ac_status" >&5 + echo "$as_me:25460: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='"./conftest$ac_exeext"' - { (eval echo "$as_me:25377: \"$ac_try\"") >&5 + { (eval echo "$as_me:25462: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25380: \$? = $ac_status" >&5 + echo "$as_me:25465: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_test_ncuconfig=yes else @@ -25523,7 +25608,7 @@ done LIBS="$cf_add_libs" cat >"conftest.$ac_ext" <<_ACEOF -#line 25526 "configure" +#line 25611 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> int @@ -25535,37 +25620,37 @@ initscr(); mousemask(0,0); tigetstr((char *)0); } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:25538: \"$ac_link\"") >&5 +if { (eval echo "$as_me:25623: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:25541: \$? = $ac_status" >&5 + echo "$as_me:25626: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:25544: \"$ac_try\"") >&5 + { (eval echo "$as_me:25629: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25547: \$? = $ac_status" >&5 + echo "$as_me:25632: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then if test "$cross_compiling" = yes; then cf_have_ncuconfig=maybe else cat >"conftest.$ac_ext" <<_ACEOF -#line 25553 "configure" +#line 25638 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> int main(void) { char *xx = curses_version(); return (xx == 0); } _ACEOF rm -f "conftest$ac_exeext" -if { (eval echo "$as_me:25560: \"$ac_link\"") >&5 +if { (eval echo "$as_me:25645: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:25563: \$? = $ac_status" >&5 + echo "$as_me:25648: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='"./conftest$ac_exeext"' - { (eval echo "$as_me:25565: \"$ac_try\"") >&5 + { (eval echo "$as_me:25650: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25568: \$? = $ac_status" >&5 + echo "$as_me:25653: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_have_ncuconfig=yes else @@ -25582,7 +25667,7 @@ cat "conftest.$ac_ext" >&5 cf_have_ncuconfig=no fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" - echo "$as_me:25585: result: $cf_have_ncuconfig" >&5 + echo "$as_me:25670: result: $cf_have_ncuconfig" >&5 echo "${ECHO_T}$cf_have_ncuconfig" >&6 test "$cf_have_ncuconfig" = maybe && cf_have_ncuconfig=yes if test "$cf_have_ncuconfig" != "yes" @@ -25598,7 +25683,7 @@ EOF NCURSES_CONFIG_PKG=$cf_ncuconfig_root -echo "$as_me:25601: checking for terminfo header" >&5 +echo "$as_me:25686: 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 @@ -25616,7 +25701,7 @@ esac for cf_test in $cf_term_header "ncurses/term.h" "ncursesw/term.h" do cat >"conftest.$ac_ext" <<_ACEOF -#line 25619 "configure" +#line 25704 "configure" #include "confdefs.h" #include <stdio.h> #include <${cf_cv_ncurses_header:-curses.h}> @@ -25631,16 +25716,16 @@ int x = auto_left_margin; (void)x } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:25634: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:25719: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:25637: \$? = $ac_status" >&5 + echo "$as_me:25722: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:25640: \"$ac_try\"") >&5 + { (eval echo "$as_me:25725: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25643: \$? = $ac_status" >&5 + echo "$as_me:25728: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_term_header="$cf_test" @@ -25656,7 +25741,7 @@ rm -f "conftest.$ac_objext" "conftest.$ac_ext" done fi -echo "$as_me:25659: result: $cf_cv_term_header" >&5 +echo "$as_me:25744: result: $cf_cv_term_header" >&5 echo "${ECHO_T}$cf_cv_term_header" >&6 # Set definitions to allow ifdef'ing to accommodate subdirectories @@ -25691,7 +25776,7 @@ esac fi else - echo "$as_me:25694: result: no" >&5 + echo "$as_me:25779: result: no" >&5 echo "${ECHO_T}no" >&6 NCURSES_CONFIG_PKG=none fi @@ -25707,7 +25792,7 @@ if test -n "$ac_tool_prefix"; 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:25710: checking for $ac_word" >&5 +echo "$as_me:25795: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_prog_NCURSES_CONFIG+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -25722,7 +25807,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_NCURSES_CONFIG="$ac_tool_prefix$ac_prog" -echo "$as_me:25725: found $ac_dir/$ac_word" >&5 +echo "$as_me:25810: found $ac_dir/$ac_word" >&5 break done @@ -25730,10 +25815,10 @@ fi fi NCURSES_CONFIG=$ac_cv_prog_NCURSES_CONFIG if test -n "$NCURSES_CONFIG"; then - echo "$as_me:25733: result: $NCURSES_CONFIG" >&5 + echo "$as_me:25818: result: $NCURSES_CONFIG" >&5 echo "${ECHO_T}$NCURSES_CONFIG" >&6 else - echo "$as_me:25736: result: no" >&5 + echo "$as_me:25821: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -25746,7 +25831,7 @@ if test -z "$NCURSES_CONFIG"; 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:25749: checking for $ac_word" >&5 +echo "$as_me:25834: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_prog_ac_ct_NCURSES_CONFIG+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -25761,7 +25846,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_NCURSES_CONFIG="$ac_prog" -echo "$as_me:25764: found $ac_dir/$ac_word" >&5 +echo "$as_me:25849: found $ac_dir/$ac_word" >&5 break done @@ -25769,10 +25854,10 @@ fi fi ac_ct_NCURSES_CONFIG=$ac_cv_prog_ac_ct_NCURSES_CONFIG if test -n "$ac_ct_NCURSES_CONFIG"; then - echo "$as_me:25772: result: $ac_ct_NCURSES_CONFIG" >&5 + echo "$as_me:25857: result: $ac_ct_NCURSES_CONFIG" >&5 echo "${ECHO_T}$ac_ct_NCURSES_CONFIG" >&6 else - echo "$as_me:25775: result: no" >&5 + echo "$as_me:25860: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -25901,7 +25986,7 @@ LIBS="$cf_add_libs" # even with config script, some packages use no-override for curses.h -echo "$as_me:25904: checking if we have identified curses headers" >&5 +echo "$as_me:25989: 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 @@ -25913,7 +25998,7 @@ for cf_header in \ curses.h $cf_cv_screen/curses.h do cat >"conftest.$ac_ext" <<_ACEOF -#line 25916 "configure" +#line 26001 "configure" #include "confdefs.h" #include <${cf_header}> int @@ -25925,16 +26010,16 @@ initscr(); tgoto("?", 0,0) } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:25928: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:26013: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:25931: \$? = $ac_status" >&5 + echo "$as_me:26016: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:25934: \"$ac_try\"") >&5 + { (eval echo "$as_me:26019: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25937: \$? = $ac_status" >&5 + echo "$as_me:26022: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_ncurses_header=$cf_header; break else @@ -25945,11 +26030,11 @@ rm -f "conftest.$ac_objext" "conftest.$ac_ext" done fi -echo "$as_me:25948: result: $cf_cv_ncurses_header" >&5 +echo "$as_me:26033: 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:25952: error: No curses header-files found" >&5 + { { echo "$as_me:26037: error: No curses header-files found" >&5 echo "$as_me: error: No curses header-files found" >&2;} { (exit 1); exit 1; }; } fi @@ -25959,23 +26044,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:25962: checking for $ac_header" >&5 +echo "$as_me:26047: 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 25968 "configure" +#line 26053 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:25972: \"$ac_cpp "conftest.$ac_ext"\"") >&5 +if { (eval echo "$as_me:26057: \"$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:25978: \$? = $ac_status" >&5 + echo "$as_me:26063: \$? = $ac_status" >&5 (exit "$ac_status"); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -25994,7 +26079,7 @@ else fi rm -f conftest.err "conftest.$ac_ext" fi -echo "$as_me:25997: result: `eval echo '${'"$as_ac_Header"'}'`" >&5 +echo "$as_me:26082: 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 @@ -26050,7 +26135,7 @@ if test -n "$cf_cv_curses_dir/include/$cf_ncuhdr_root" ; then CPPFLAGS="${CPPFLAGS}-I$cf_add_incdir" cat >"conftest.$ac_ext" <<_ACEOF -#line 26053 "configure" +#line 26138 "configure" #include "confdefs.h" #include <stdio.h> int @@ -26062,16 +26147,16 @@ printf("Hello") } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:26065: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:26150: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:26068: \$? = $ac_status" >&5 + echo "$as_me:26153: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:26071: \"$ac_try\"") >&5 + { (eval echo "$as_me:26156: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:26074: \$? = $ac_status" >&5 + echo "$as_me:26159: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then : else @@ -26088,7 +26173,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}:26091: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:26176: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -26107,7 +26192,7 @@ fi } -echo "$as_me:26110: checking for $cf_ncuhdr_root header in include-path" >&5 +echo "$as_me:26195: 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 @@ -26119,7 +26204,7 @@ else do cat >"conftest.$ac_ext" <<_ACEOF -#line 26122 "configure" +#line 26207 "configure" #include "confdefs.h" #include <$cf_header> @@ -26143,16 +26228,16 @@ printf("old\\n"); } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:26146: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:26231: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:26149: \$? = $ac_status" >&5 + echo "$as_me:26234: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:26152: \"$ac_try\"") >&5 + { (eval echo "$as_me:26237: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:26155: \$? = $ac_status" >&5 + echo "$as_me:26240: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_ncurses_h=$cf_header @@ -26167,14 +26252,14 @@ rm -f "conftest.$ac_objext" "conftest.$ac_ext" done fi -echo "$as_me:26170: result: $cf_cv_ncurses_h" >&5 +echo "$as_me:26255: 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:26177: checking for $cf_ncuhdr_root include-path" >&5 +echo "$as_me:26262: 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 @@ -26295,7 +26380,7 @@ if test -n "$cf_incdir" ; then CPPFLAGS="${CPPFLAGS}-I$cf_add_incdir" cat >"conftest.$ac_ext" <<_ACEOF -#line 26298 "configure" +#line 26383 "configure" #include "confdefs.h" #include <stdio.h> int @@ -26307,16 +26392,16 @@ printf("Hello") } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:26310: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:26395: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:26313: \$? = $ac_status" >&5 + echo "$as_me:26398: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:26316: \"$ac_try\"") >&5 + { (eval echo "$as_me:26401: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:26319: \$? = $ac_status" >&5 + echo "$as_me:26404: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then : else @@ -26333,7 +26418,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}:26336: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:26421: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -26356,7 +26441,7 @@ fi do cat >"conftest.$ac_ext" <<_ACEOF -#line 26359 "configure" +#line 26444 "configure" #include "confdefs.h" #include <$cf_header> @@ -26380,16 +26465,16 @@ printf("old\\n"); } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:26383: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:26468: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:26386: \$? = $ac_status" >&5 + echo "$as_me:26471: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:26389: \"$ac_try\"") >&5 + { (eval echo "$as_me:26474: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:26392: \$? = $ac_status" >&5 + echo "$as_me:26477: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_ncurses_h2=$cf_header @@ -26410,12 +26495,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:26413: error: not found" >&5 + test "$cf_cv_ncurses_h2" = no && { { echo "$as_me:26498: error: not found" >&5 echo "$as_me: error: not found" >&2;} { (exit 1); exit 1; }; } fi -echo "$as_me:26418: result: $cf_cv_ncurses_h2" >&5 +echo "$as_me:26503: 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%/[^/]*$%%'` @@ -26451,7 +26536,7 @@ if test -n "$cf_1st_incdir" ; then CPPFLAGS="${CPPFLAGS}-I$cf_add_incdir" cat >"conftest.$ac_ext" <<_ACEOF -#line 26454 "configure" +#line 26539 "configure" #include "confdefs.h" #include <stdio.h> int @@ -26463,16 +26548,16 @@ printf("Hello") } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:26466: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:26551: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:26469: \$? = $ac_status" >&5 + echo "$as_me:26554: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:26472: \"$ac_try\"") >&5 + { (eval echo "$as_me:26557: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:26475: \$? = $ac_status" >&5 + echo "$as_me:26560: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then : else @@ -26489,7 +26574,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}:26492: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:26577: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -26537,7 +26622,7 @@ EOF ;; esac -echo "$as_me:26540: checking for terminfo header" >&5 +echo "$as_me:26625: 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 @@ -26555,7 +26640,7 @@ esac for cf_test in $cf_term_header "ncurses/term.h" "ncursesw/term.h" do cat >"conftest.$ac_ext" <<_ACEOF -#line 26558 "configure" +#line 26643 "configure" #include "confdefs.h" #include <stdio.h> #include <${cf_cv_ncurses_header:-curses.h}> @@ -26570,16 +26655,16 @@ int x = auto_left_margin; (void)x } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:26573: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:26658: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:26576: \$? = $ac_status" >&5 + echo "$as_me:26661: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:26579: \"$ac_try\"") >&5 + { (eval echo "$as_me:26664: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:26582: \$? = $ac_status" >&5 + echo "$as_me:26667: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_term_header="$cf_test" @@ -26595,7 +26680,7 @@ rm -f "conftest.$ac_objext" "conftest.$ac_ext" done fi -echo "$as_me:26598: result: $cf_cv_term_header" >&5 +echo "$as_me:26683: result: $cf_cv_term_header" >&5 echo "${ECHO_T}$cf_cv_term_header" >&6 # Set definitions to allow ifdef'ing to accommodate subdirectories @@ -26633,7 +26718,7 @@ cat >>confdefs.h <<\EOF #define NCURSES 1 EOF -echo "$as_me:26636: checking for ncurses version" >&5 +echo "$as_me:26721: 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 @@ -26659,10 +26744,10 @@ Autoconf "old" #endif EOF cf_try="$ac_cpp conftest.$ac_ext 2>&5 | grep '^Autoconf ' >conftest.out" - { (eval echo "$as_me:26662: \"$cf_try\"") >&5 + { (eval echo "$as_me:26747: \"$cf_try\"") >&5 (eval $cf_try) 2>&5 ac_status=$? - echo "$as_me:26665: \$? = $ac_status" >&5 + echo "$as_me:26750: \$? = $ac_status" >&5 (exit "$ac_status"); } if test -f conftest.out ; then cf_out=`sed -e 's%^Autoconf %%' -e 's%^[^"]*"%%' -e 's%".*%%' conftest.out` @@ -26672,7 +26757,7 @@ EOF else cat >"conftest.$ac_ext" <<_ACEOF -#line 26675 "configure" +#line 26760 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> @@ -26697,15 +26782,15 @@ int main(void) } _ACEOF rm -f "conftest$ac_exeext" -if { (eval echo "$as_me:26700: \"$ac_link\"") >&5 +if { (eval echo "$as_me:26785: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:26703: \$? = $ac_status" >&5 + echo "$as_me:26788: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='"./conftest$ac_exeext"' - { (eval echo "$as_me:26705: \"$ac_try\"") >&5 + { (eval echo "$as_me:26790: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:26708: \$? = $ac_status" >&5 + echo "$as_me:26793: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_ncurses_version=`cat $cf_tempfile` @@ -26719,7 +26804,7 @@ fi rm -f "$cf_tempfile" fi -echo "$as_me:26722: result: $cf_cv_ncurses_version" >&5 +echo "$as_me:26807: result: $cf_cv_ncurses_version" >&5 echo "${ECHO_T}$cf_cv_ncurses_version" >&6 test "$cf_cv_ncurses_version" = no || cat >>confdefs.h <<\EOF @@ -26732,7 +26817,7 @@ cf_nculib_root=$cf_cv_screen # to link gpm. cf_ncurses_LIBS="" cf_ncurses_SAVE="$LIBS" -echo "$as_me:26735: checking for Gpm_Open in -lgpm" >&5 +echo "$as_me:26820: 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 @@ -26740,7 +26825,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lgpm $LIBS" cat >"conftest.$ac_ext" <<_ACEOF -#line 26743 "configure" +#line 26828 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -26759,16 +26844,16 @@ Gpm_Open (); } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:26762: \"$ac_link\"") >&5 +if { (eval echo "$as_me:26847: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:26765: \$? = $ac_status" >&5 + echo "$as_me:26850: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:26768: \"$ac_try\"") >&5 + { (eval echo "$as_me:26853: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:26771: \$? = $ac_status" >&5 + echo "$as_me:26856: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_lib_gpm_Gpm_Open=yes else @@ -26779,10 +26864,10 @@ fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:26782: result: $ac_cv_lib_gpm_Gpm_Open" >&5 +echo "$as_me:26867: 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:26785: checking for initscr in -lgpm" >&5 + echo "$as_me:26870: 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 @@ -26790,7 +26875,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lgpm $LIBS" cat >"conftest.$ac_ext" <<_ACEOF -#line 26793 "configure" +#line 26878 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -26809,16 +26894,16 @@ initscr (); } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:26812: \"$ac_link\"") >&5 +if { (eval echo "$as_me:26897: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:26815: \$? = $ac_status" >&5 + echo "$as_me:26900: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:26818: \"$ac_try\"") >&5 + { (eval echo "$as_me:26903: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:26821: \$? = $ac_status" >&5 + echo "$as_me:26906: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_lib_gpm_initscr=yes else @@ -26829,7 +26914,7 @@ fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:26832: result: $ac_cv_lib_gpm_initscr" >&5 +echo "$as_me:26917: 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" @@ -26844,7 +26929,7 @@ case "$host_os" in # 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:26847: checking for tgoto in -lmytinfo" >&5 + echo "$as_me:26932: 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 @@ -26852,7 +26937,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lmytinfo $LIBS" cat >"conftest.$ac_ext" <<_ACEOF -#line 26855 "configure" +#line 26940 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -26871,16 +26956,16 @@ tgoto (); } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:26874: \"$ac_link\"") >&5 +if { (eval echo "$as_me:26959: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:26877: \$? = $ac_status" >&5 + echo "$as_me:26962: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:26880: \"$ac_try\"") >&5 + { (eval echo "$as_me:26965: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:26883: \$? = $ac_status" >&5 + echo "$as_me:26968: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_lib_mytinfo_tgoto=yes else @@ -26891,7 +26976,7 @@ fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:26894: result: $ac_cv_lib_mytinfo_tgoto" >&5 +echo "$as_me:26979: 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" @@ -26940,13 +27025,13 @@ else eval 'cf_cv_have_lib_'"$cf_nculib_root"'=no' cf_libdir="" - echo "$as_me:26943: checking for initscr" >&5 + echo "$as_me:27028: 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 26949 "configure" +#line 27034 "configure" #include "confdefs.h" #define initscr autoconf_temporary #include <limits.h> /* least-intrusive standard header which defines gcc2 __stub macros */ @@ -26977,16 +27062,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:26980: \"$ac_link\"") >&5 +if { (eval echo "$as_me:27065: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:26983: \$? = $ac_status" >&5 + echo "$as_me:27068: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:26986: \"$ac_try\"") >&5 + { (eval echo "$as_me:27071: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:26989: \$? = $ac_status" >&5 + echo "$as_me:27074: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_func_initscr=yes else @@ -26996,18 +27081,18 @@ ac_cv_func_initscr=no fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:26999: result: $ac_cv_func_initscr" >&5 +echo "$as_me:27084: 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:27006: checking for initscr in -l$cf_nculib_root" >&5 + echo "$as_me:27091: 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 27010 "configure" +#line 27095 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> int @@ -27019,25 +27104,25 @@ initscr() } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:27022: \"$ac_link\"") >&5 +if { (eval echo "$as_me:27107: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:27025: \$? = $ac_status" >&5 + echo "$as_me:27110: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:27028: \"$ac_try\"") >&5 + { (eval echo "$as_me:27113: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27031: \$? = $ac_status" >&5 + echo "$as_me:27116: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then - echo "$as_me:27033: result: yes" >&5 + echo "$as_me:27118: 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:27040: result: no" >&5 +echo "$as_me:27125: result: no" >&5 echo "${ECHO_T}no" >&6 cf_search= @@ -27105,11 +27190,11 @@ cf_search="$cf_library_path_list $cf_search" for cf_libdir in $cf_search do - echo "$as_me:27108: checking for -l$cf_nculib_root in $cf_libdir" >&5 + echo "$as_me:27193: 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 27112 "configure" +#line 27197 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> int @@ -27121,25 +27206,25 @@ initscr() } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:27124: \"$ac_link\"") >&5 +if { (eval echo "$as_me:27209: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:27127: \$? = $ac_status" >&5 + echo "$as_me:27212: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:27130: \"$ac_try\"") >&5 + { (eval echo "$as_me:27215: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27133: \$? = $ac_status" >&5 + echo "$as_me:27218: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then - echo "$as_me:27135: result: yes" >&5 + echo "$as_me:27220: 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:27142: result: no" >&5 +echo "$as_me:27227: result: no" >&5 echo "${ECHO_T}no" >&6 LIBS="$cf_save_LIBS" fi @@ -27154,7 +27239,7 @@ fi eval 'cf_found_library="$cf_cv_have_lib_'"$cf_nculib_root"\" if test "$cf_found_library" = no ; then - { { echo "$as_me:27157: error: Cannot link $cf_nculib_root library" >&5 + { { echo "$as_me:27242: error: Cannot link $cf_nculib_root library" >&5 echo "$as_me: error: Cannot link $cf_nculib_root library" >&2;} { (exit 1); exit 1; }; } fi @@ -27162,7 +27247,7 @@ fi fi if test -n "$cf_ncurses_LIBS" ; then - echo "$as_me:27165: checking if we can link $cf_nculib_root without $cf_ncurses_LIBS" >&5 + echo "$as_me:27250: 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 @@ -27172,7 +27257,7 @@ echo $ECHO_N "checking if we can link $cf_nculib_root without $cf_ncurses_LIBS.. fi done cat >"conftest.$ac_ext" <<_ACEOF -#line 27175 "configure" +#line 27260 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> int @@ -27184,23 +27269,23 @@ initscr(); mousemask(0,0); tigetstr((char *)0); } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:27187: \"$ac_link\"") >&5 +if { (eval echo "$as_me:27272: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:27190: \$? = $ac_status" >&5 + echo "$as_me:27275: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:27193: \"$ac_try\"") >&5 + { (eval echo "$as_me:27278: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27196: \$? = $ac_status" >&5 + echo "$as_me:27281: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then - echo "$as_me:27198: result: yes" >&5 + echo "$as_me:27283: result: yes" >&5 echo "${ECHO_T}yes" >&6 else echo "$as_me: failed program was:" >&5 cat "conftest.$ac_ext" >&5 -echo "$as_me:27203: result: no" >&5 +echo "$as_me:27288: result: no" >&5 echo "${ECHO_T}no" >&6 LIBS="$cf_ncurses_SAVE" fi @@ -27232,7 +27317,7 @@ fi ;; (slang) -echo "$as_me:27235: checking for slang header file" >&5 +echo "$as_me:27320: 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 @@ -27240,7 +27325,7 @@ else cf_cv_slang_header=no cat >"conftest.$ac_ext" <<_ACEOF -#line 27243 "configure" +#line 27328 "configure" #include "confdefs.h" #include <slang.h> int @@ -27252,16 +27337,16 @@ printf("%s\\n", SLANG_VERSION) } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:27255: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:27340: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:27258: \$? = $ac_status" >&5 + echo "$as_me:27343: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:27261: \"$ac_try\"") >&5 + { (eval echo "$as_me:27346: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27264: \$? = $ac_status" >&5 + echo "$as_me:27349: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_slang_header=predefined else @@ -27366,7 +27451,7 @@ cf_search="$cf_search $cf_header_path_list" fi rm -f "conftest.$ac_objext" "conftest.$ac_ext" fi -echo "$as_me:27369: result: $cf_cv_slang_header" >&5 +echo "$as_me:27454: result: $cf_cv_slang_header" >&5 echo "${ECHO_T}$cf_cv_slang_header" >&6 if test "x$cf_cv_slang_header" != xno @@ -27410,7 +27495,7 @@ if test -n "$cf_incdir" ; then CPPFLAGS="${CPPFLAGS}-I$cf_add_incdir" cat >"conftest.$ac_ext" <<_ACEOF -#line 27413 "configure" +#line 27498 "configure" #include "confdefs.h" #include <stdio.h> int @@ -27422,16 +27507,16 @@ printf("Hello") } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:27425: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:27510: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:27428: \$? = $ac_status" >&5 + echo "$as_me:27513: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:27431: \"$ac_try\"") >&5 + { (eval echo "$as_me:27516: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27434: \$? = $ac_status" >&5 + echo "$as_me:27519: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then : else @@ -27448,7 +27533,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}:27451: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:27536: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -27480,7 +27565,7 @@ else cf_cv_termlib=none cat >"conftest.$ac_ext" <<_ACEOF -#line 27483 "configure" +#line 27568 "configure" #include "confdefs.h" int @@ -27492,19 +27577,19 @@ char *x=(char*)tgoto("",0,0) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:27495: \"$ac_link\"") >&5 +if { (eval echo "$as_me:27580: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:27498: \$? = $ac_status" >&5 + echo "$as_me:27583: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:27501: \"$ac_try\"") >&5 + { (eval echo "$as_me:27586: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27504: \$? = $ac_status" >&5 + echo "$as_me:27589: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cat >"conftest.$ac_ext" <<_ACEOF -#line 27507 "configure" +#line 27592 "configure" #include "confdefs.h" int @@ -27516,16 +27601,16 @@ int x=tigetstr("") } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:27519: \"$ac_link\"") >&5 +if { (eval echo "$as_me:27604: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:27522: \$? = $ac_status" >&5 + echo "$as_me:27607: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:27525: \"$ac_try\"") >&5 + { (eval echo "$as_me:27610: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27528: \$? = $ac_status" >&5 + echo "$as_me:27613: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_termlib=terminfo else @@ -27536,7 +27621,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}:27539: testing using functions in predefined $cf_cv_termlib LIBS ..." 1>&5 +echo "${as_me:-configure}:27624: testing using functions in predefined $cf_cv_termlib LIBS ..." 1>&5 else echo "$as_me: failed program was:" >&5 @@ -27551,10 +27636,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:27554: checking for $cf_func in -l$cf_lib" >&5 + echo "$as_me:27639: 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 27557 "configure" +#line 27642 "configure" #include "confdefs.h" int @@ -27566,16 +27651,16 @@ int x=$cf_func("") } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:27569: \"$ac_link\"") >&5 +if { (eval echo "$as_me:27654: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:27572: \$? = $ac_status" >&5 + echo "$as_me:27657: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:27575: \"$ac_try\"") >&5 + { (eval echo "$as_me:27660: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27578: \$? = $ac_status" >&5 + echo "$as_me:27663: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_result=yes else @@ -27584,7 +27669,7 @@ cat "conftest.$ac_ext" >&5 cf_result=no fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" - echo "$as_me:27587: result: $cf_result" >&5 + echo "$as_me:27672: result: $cf_result" >&5 echo "${ECHO_T}$cf_result" >&6 if test "$cf_result" = yes ; then if test "$cf_func" = tigetstr ; then @@ -27601,7 +27686,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:27604: checking for initscr in -lcurses" >&5 + echo "$as_me:27689: 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 @@ -27609,7 +27694,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lcurses $LIBS" cat >"conftest.$ac_ext" <<_ACEOF -#line 27612 "configure" +#line 27697 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -27628,16 +27713,16 @@ initscr (); } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:27631: \"$ac_link\"") >&5 +if { (eval echo "$as_me:27716: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:27634: \$? = $ac_status" >&5 + echo "$as_me:27719: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:27637: \"$ac_try\"") >&5 + { (eval echo "$as_me:27722: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27640: \$? = $ac_status" >&5 + echo "$as_me:27725: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_lib_curses_initscr=yes else @@ -27648,7 +27733,7 @@ fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:27651: result: $ac_cv_lib_curses_initscr" >&5 +echo "$as_me:27736: 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 @@ -27670,7 +27755,7 @@ LIBS="$cf_add_libs" fi - echo "$as_me:27673: checking for tgoto in -ltermcap" >&5 + echo "$as_me:27758: 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 @@ -27678,7 +27763,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-ltermcap $LIBS" cat >"conftest.$ac_ext" <<_ACEOF -#line 27681 "configure" +#line 27766 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -27697,16 +27782,16 @@ tgoto (); } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:27700: \"$ac_link\"") >&5 +if { (eval echo "$as_me:27785: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:27703: \$? = $ac_status" >&5 + echo "$as_me:27788: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:27706: \"$ac_try\"") >&5 + { (eval echo "$as_me:27791: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27709: \$? = $ac_status" >&5 + echo "$as_me:27794: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_lib_termcap_tgoto=yes else @@ -27717,7 +27802,7 @@ fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:27720: result: $ac_cv_lib_termcap_tgoto" >&5 +echo "$as_me:27805: 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 @@ -27744,20 +27829,20 @@ fi fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" if test "$cf_cv_termlib" = none; then - { echo "$as_me:27747: WARNING: Cannot find -ltermlib, -lcurses, or -ltermcap" >&5 + { echo "$as_me:27832: 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:27754: checking for acos" >&5 +echo "$as_me:27839: 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 27760 "configure" +#line 27845 "configure" #include "confdefs.h" #define acos autoconf_temporary #include <limits.h> /* least-intrusive standard header which defines gcc2 __stub macros */ @@ -27788,16 +27873,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:27791: \"$ac_link\"") >&5 +if { (eval echo "$as_me:27876: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:27794: \$? = $ac_status" >&5 + echo "$as_me:27879: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:27797: \"$ac_try\"") >&5 + { (eval echo "$as_me:27882: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27800: \$? = $ac_status" >&5 + echo "$as_me:27885: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_func_acos=yes else @@ -27807,13 +27892,13 @@ ac_cv_func_acos=no fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:27810: result: $ac_cv_func_acos" >&5 +echo "$as_me:27895: 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:27816: checking for acos in -lm" >&5 +echo "$as_me:27901: 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 @@ -27821,7 +27906,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lm $LIBS $LIBS" cat >"conftest.$ac_ext" <<_ACEOF -#line 27824 "configure" +#line 27909 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -27840,16 +27925,16 @@ acos (); } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:27843: \"$ac_link\"") >&5 +if { (eval echo "$as_me:27928: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:27846: \$? = $ac_status" >&5 + echo "$as_me:27931: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:27849: \"$ac_try\"") >&5 + { (eval echo "$as_me:27934: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27852: \$? = $ac_status" >&5 + echo "$as_me:27937: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_lib_m_acos=yes else @@ -27860,7 +27945,7 @@ fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:27863: result: $ac_cv_lib_m_acos" >&5 +echo "$as_me:27948: 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 @@ -27886,13 +27971,13 @@ case "$host_os" in eval 'cf_cv_have_lib_'"video"'=no' cf_libdir="" - echo "$as_me:27889: checking for v_init" >&5 + echo "$as_me:27974: 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 27895 "configure" +#line 27980 "configure" #include "confdefs.h" #define v_init autoconf_temporary #include <limits.h> /* least-intrusive standard header which defines gcc2 __stub macros */ @@ -27923,16 +28008,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:27926: \"$ac_link\"") >&5 +if { (eval echo "$as_me:28011: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:27929: \$? = $ac_status" >&5 + echo "$as_me:28014: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:27932: \"$ac_try\"") >&5 + { (eval echo "$as_me:28017: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27935: \$? = $ac_status" >&5 + echo "$as_me:28020: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_func_v_init=yes else @@ -27942,18 +28027,18 @@ ac_cv_func_v_init=no fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:27945: result: $ac_cv_func_v_init" >&5 +echo "$as_me:28030: 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:27952: checking for v_init in -lvideo" >&5 + echo "$as_me:28037: 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 27956 "configure" +#line 28041 "configure" #include "confdefs.h" #include <sys/video.h> int @@ -27965,25 +28050,25 @@ v_init() } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:27968: \"$ac_link\"") >&5 +if { (eval echo "$as_me:28053: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:27971: \$? = $ac_status" >&5 + echo "$as_me:28056: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:27974: \"$ac_try\"") >&5 + { (eval echo "$as_me:28059: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27977: \$? = $ac_status" >&5 + echo "$as_me:28062: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then - echo "$as_me:27979: result: yes" >&5 + echo "$as_me:28064: 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:27986: result: no" >&5 +echo "$as_me:28071: result: no" >&5 echo "${ECHO_T}no" >&6 cf_search= @@ -28051,11 +28136,11 @@ cf_search="$cf_library_path_list $cf_search" for cf_libdir in $cf_search do - echo "$as_me:28054: checking for -lvideo in $cf_libdir" >&5 + echo "$as_me:28139: 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 28058 "configure" +#line 28143 "configure" #include "confdefs.h" #include <sys/video.h> int @@ -28067,25 +28152,25 @@ v_init() } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:28070: \"$ac_link\"") >&5 +if { (eval echo "$as_me:28155: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:28073: \$? = $ac_status" >&5 + echo "$as_me:28158: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:28076: \"$ac_try\"") >&5 + { (eval echo "$as_me:28161: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28079: \$? = $ac_status" >&5 + echo "$as_me:28164: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then - echo "$as_me:28081: result: yes" >&5 + echo "$as_me:28166: 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:28088: result: no" >&5 +echo "$as_me:28173: result: no" >&5 echo "${ECHO_T}no" >&6 LIBS="$cf_save_LIBS" fi @@ -28100,7 +28185,7 @@ fi eval 'cf_found_library="$cf_cv_have_lib_'"video"\" if test "$cf_found_library" = no ; then - { { echo "$as_me:28103: error: Cannot link video library" >&5 + { { echo "$as_me:28188: error: Cannot link video library" >&5 echo "$as_me: error: Cannot link video library" >&2;} { (exit 1); exit 1; }; } fi @@ -28110,13 +28195,13 @@ esac eval 'cf_cv_have_lib_'"slang"'=no' cf_libdir="" - echo "$as_me:28113: checking for SLtt_get_screen_size" >&5 + echo "$as_me:28198: 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 28119 "configure" +#line 28204 "configure" #include "confdefs.h" #define SLtt_get_screen_size autoconf_temporary #include <limits.h> /* least-intrusive standard header which defines gcc2 __stub macros */ @@ -28147,16 +28232,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:28150: \"$ac_link\"") >&5 +if { (eval echo "$as_me:28235: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:28153: \$? = $ac_status" >&5 + echo "$as_me:28238: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:28156: \"$ac_try\"") >&5 + { (eval echo "$as_me:28241: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28159: \$? = $ac_status" >&5 + echo "$as_me:28244: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_func_SLtt_get_screen_size=yes else @@ -28166,18 +28251,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:28169: result: $ac_cv_func_SLtt_get_screen_size" >&5 +echo "$as_me:28254: 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:28176: checking for SLtt_get_screen_size in -lslang" >&5 + echo "$as_me:28261: 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 28180 "configure" +#line 28265 "configure" #include "confdefs.h" #include <slang.h> int @@ -28189,25 +28274,25 @@ SLtt_get_screen_size() } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:28192: \"$ac_link\"") >&5 +if { (eval echo "$as_me:28277: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:28195: \$? = $ac_status" >&5 + echo "$as_me:28280: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:28198: \"$ac_try\"") >&5 + { (eval echo "$as_me:28283: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28201: \$? = $ac_status" >&5 + echo "$as_me:28286: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then - echo "$as_me:28203: result: yes" >&5 + echo "$as_me:28288: 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:28210: result: no" >&5 +echo "$as_me:28295: result: no" >&5 echo "${ECHO_T}no" >&6 cf_search= @@ -28275,11 +28360,11 @@ cf_search="$cf_library_path_list $cf_search" for cf_libdir in $cf_search do - echo "$as_me:28278: checking for -lslang in $cf_libdir" >&5 + echo "$as_me:28363: 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 28282 "configure" +#line 28367 "configure" #include "confdefs.h" #include <slang.h> int @@ -28291,25 +28376,25 @@ SLtt_get_screen_size() } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:28294: \"$ac_link\"") >&5 +if { (eval echo "$as_me:28379: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:28297: \$? = $ac_status" >&5 + echo "$as_me:28382: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:28300: \"$ac_try\"") >&5 + { (eval echo "$as_me:28385: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28303: \$? = $ac_status" >&5 + echo "$as_me:28388: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then - echo "$as_me:28305: result: yes" >&5 + echo "$as_me:28390: 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:28312: result: no" >&5 +echo "$as_me:28397: result: no" >&5 echo "${ECHO_T}no" >&6 LIBS="$cf_save_LIBS" fi @@ -28324,13 +28409,13 @@ fi eval 'cf_found_library="$cf_cv_have_lib_'"slang"\" if test "$cf_found_library" = no ; then - { { echo "$as_me:28327: error: Cannot link slang library" >&5 + { { echo "$as_me:28412: 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:28333: checking if we can link slang without termcap" >&5 +echo "$as_me:28418: 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%^.%%'` @@ -28339,7 +28424,7 @@ else fi LIBS=`echo ".$cf_slang_LIBS3" | sed -e "s%$cf_exclude%%" -e 's%^.%%'` cat >"conftest.$ac_ext" <<_ACEOF -#line 28342 "configure" +#line 28427 "configure" #include "confdefs.h" #include <slang.h> int @@ -28351,16 +28436,16 @@ SLtt_get_screen_size() } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:28354: \"$ac_link\"") >&5 +if { (eval echo "$as_me:28439: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:28357: \$? = $ac_status" >&5 + echo "$as_me:28442: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:28360: \"$ac_try\"") >&5 + { (eval echo "$as_me:28445: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28363: \$? = $ac_status" >&5 + echo "$as_me:28448: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_result=yes else @@ -28369,13 +28454,13 @@ cat "conftest.$ac_ext" >&5 cf_result=no fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" -echo "$as_me:28372: result: $cf_result" >&5 +echo "$as_me:28457: result: $cf_result" >&5 echo "${ECHO_T}$cf_result" >&6 test "$cf_result" = no && LIBS="$cf_slang_LIBS3" else -echo "$as_me:28378: checking for slang2 header file" >&5 +echo "$as_me:28463: 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 @@ -28383,7 +28468,7 @@ else cf_cv_slang2_header=no cat >"conftest.$ac_ext" <<_ACEOF -#line 28386 "configure" +#line 28471 "configure" #include "confdefs.h" #include <slang.h> int @@ -28395,16 +28480,16 @@ printf("%s\\n", SLANG_VERSION) } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:28398: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:28483: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:28401: \$? = $ac_status" >&5 + echo "$as_me:28486: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:28404: \"$ac_try\"") >&5 + { (eval echo "$as_me:28489: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28407: \$? = $ac_status" >&5 + echo "$as_me:28492: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_slang2_header=predefined else @@ -28509,7 +28594,7 @@ cf_search="$cf_search $cf_header_path_list" fi rm -f "conftest.$ac_objext" "conftest.$ac_ext" fi -echo "$as_me:28512: result: $cf_cv_slang2_header" >&5 +echo "$as_me:28597: result: $cf_cv_slang2_header" >&5 echo "${ECHO_T}$cf_cv_slang2_header" >&6 if test "x$cf_cv_slang2_header" != xno @@ -28553,7 +28638,7 @@ if test -n "$cf_incdir" ; then CPPFLAGS="${CPPFLAGS}-I$cf_add_incdir" cat >"conftest.$ac_ext" <<_ACEOF -#line 28556 "configure" +#line 28641 "configure" #include "confdefs.h" #include <stdio.h> int @@ -28565,16 +28650,16 @@ printf("Hello") } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:28568: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:28653: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:28571: \$? = $ac_status" >&5 + echo "$as_me:28656: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:28574: \"$ac_try\"") >&5 + { (eval echo "$as_me:28659: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28577: \$? = $ac_status" >&5 + echo "$as_me:28662: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then : else @@ -28591,7 +28676,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}:28594: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:28679: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -28623,7 +28708,7 @@ else cf_cv_termlib=none cat >"conftest.$ac_ext" <<_ACEOF -#line 28626 "configure" +#line 28711 "configure" #include "confdefs.h" int @@ -28635,19 +28720,19 @@ char *x=(char*)tgoto("",0,0) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:28638: \"$ac_link\"") >&5 +if { (eval echo "$as_me:28723: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:28641: \$? = $ac_status" >&5 + echo "$as_me:28726: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:28644: \"$ac_try\"") >&5 + { (eval echo "$as_me:28729: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28647: \$? = $ac_status" >&5 + echo "$as_me:28732: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cat >"conftest.$ac_ext" <<_ACEOF -#line 28650 "configure" +#line 28735 "configure" #include "confdefs.h" int @@ -28659,16 +28744,16 @@ int x=tigetstr("") } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:28662: \"$ac_link\"") >&5 +if { (eval echo "$as_me:28747: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:28665: \$? = $ac_status" >&5 + echo "$as_me:28750: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:28668: \"$ac_try\"") >&5 + { (eval echo "$as_me:28753: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28671: \$? = $ac_status" >&5 + echo "$as_me:28756: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_termlib=terminfo else @@ -28679,7 +28764,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}:28682: testing using functions in predefined $cf_cv_termlib LIBS ..." 1>&5 +echo "${as_me:-configure}:28767: testing using functions in predefined $cf_cv_termlib LIBS ..." 1>&5 else echo "$as_me: failed program was:" >&5 @@ -28694,10 +28779,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:28697: checking for $cf_func in -l$cf_lib" >&5 + echo "$as_me:28782: 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 28700 "configure" +#line 28785 "configure" #include "confdefs.h" int @@ -28709,16 +28794,16 @@ int x=$cf_func("") } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:28712: \"$ac_link\"") >&5 +if { (eval echo "$as_me:28797: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:28715: \$? = $ac_status" >&5 + echo "$as_me:28800: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:28718: \"$ac_try\"") >&5 + { (eval echo "$as_me:28803: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28721: \$? = $ac_status" >&5 + echo "$as_me:28806: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_result=yes else @@ -28727,7 +28812,7 @@ cat "conftest.$ac_ext" >&5 cf_result=no fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" - echo "$as_me:28730: result: $cf_result" >&5 + echo "$as_me:28815: result: $cf_result" >&5 echo "${ECHO_T}$cf_result" >&6 if test "$cf_result" = yes ; then if test "$cf_func" = tigetstr ; then @@ -28744,7 +28829,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:28747: checking for initscr in -lcurses" >&5 + echo "$as_me:28832: 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 @@ -28752,7 +28837,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lcurses $LIBS" cat >"conftest.$ac_ext" <<_ACEOF -#line 28755 "configure" +#line 28840 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -28771,16 +28856,16 @@ initscr (); } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:28774: \"$ac_link\"") >&5 +if { (eval echo "$as_me:28859: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:28777: \$? = $ac_status" >&5 + echo "$as_me:28862: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:28780: \"$ac_try\"") >&5 + { (eval echo "$as_me:28865: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28783: \$? = $ac_status" >&5 + echo "$as_me:28868: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_lib_curses_initscr=yes else @@ -28791,7 +28876,7 @@ fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:28794: result: $ac_cv_lib_curses_initscr" >&5 +echo "$as_me:28879: 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 @@ -28813,7 +28898,7 @@ LIBS="$cf_add_libs" fi - echo "$as_me:28816: checking for tgoto in -ltermcap" >&5 + echo "$as_me:28901: 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 @@ -28821,7 +28906,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-ltermcap $LIBS" cat >"conftest.$ac_ext" <<_ACEOF -#line 28824 "configure" +#line 28909 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -28840,16 +28925,16 @@ tgoto (); } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:28843: \"$ac_link\"") >&5 +if { (eval echo "$as_me:28928: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:28846: \$? = $ac_status" >&5 + echo "$as_me:28931: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:28849: \"$ac_try\"") >&5 + { (eval echo "$as_me:28934: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28852: \$? = $ac_status" >&5 + echo "$as_me:28937: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_lib_termcap_tgoto=yes else @@ -28860,7 +28945,7 @@ fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:28863: result: $ac_cv_lib_termcap_tgoto" >&5 +echo "$as_me:28948: 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 @@ -28887,20 +28972,20 @@ fi fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" if test "$cf_cv_termlib" = none; then - { echo "$as_me:28890: WARNING: Cannot find -ltermlib, -lcurses, or -ltermcap" >&5 + { echo "$as_me:28975: 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:28897: checking for acos" >&5 +echo "$as_me:28982: 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 28903 "configure" +#line 28988 "configure" #include "confdefs.h" #define acos autoconf_temporary #include <limits.h> /* least-intrusive standard header which defines gcc2 __stub macros */ @@ -28931,16 +29016,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:28934: \"$ac_link\"") >&5 +if { (eval echo "$as_me:29019: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:28937: \$? = $ac_status" >&5 + echo "$as_me:29022: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:28940: \"$ac_try\"") >&5 + { (eval echo "$as_me:29025: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28943: \$? = $ac_status" >&5 + echo "$as_me:29028: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_func_acos=yes else @@ -28950,13 +29035,13 @@ ac_cv_func_acos=no fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:28953: result: $ac_cv_func_acos" >&5 +echo "$as_me:29038: 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:28959: checking for acos in -lm" >&5 +echo "$as_me:29044: 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 @@ -28964,7 +29049,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lm $LIBS $LIBS" cat >"conftest.$ac_ext" <<_ACEOF -#line 28967 "configure" +#line 29052 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -28983,16 +29068,16 @@ acos (); } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:28986: \"$ac_link\"") >&5 +if { (eval echo "$as_me:29071: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:28989: \$? = $ac_status" >&5 + echo "$as_me:29074: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:28992: \"$ac_try\"") >&5 + { (eval echo "$as_me:29077: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28995: \$? = $ac_status" >&5 + echo "$as_me:29080: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_lib_m_acos=yes else @@ -29003,7 +29088,7 @@ fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:29006: result: $ac_cv_lib_m_acos" >&5 +echo "$as_me:29091: 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 @@ -29029,13 +29114,13 @@ case "$host_os" in eval 'cf_cv_have_lib_'"video"'=no' cf_libdir="" - echo "$as_me:29032: checking for v_init" >&5 + echo "$as_me:29117: 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 29038 "configure" +#line 29123 "configure" #include "confdefs.h" #define v_init autoconf_temporary #include <limits.h> /* least-intrusive standard header which defines gcc2 __stub macros */ @@ -29066,16 +29151,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:29069: \"$ac_link\"") >&5 +if { (eval echo "$as_me:29154: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:29072: \$? = $ac_status" >&5 + echo "$as_me:29157: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:29075: \"$ac_try\"") >&5 + { (eval echo "$as_me:29160: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:29078: \$? = $ac_status" >&5 + echo "$as_me:29163: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_func_v_init=yes else @@ -29085,18 +29170,18 @@ ac_cv_func_v_init=no fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:29088: result: $ac_cv_func_v_init" >&5 +echo "$as_me:29173: 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:29095: checking for v_init in -lvideo" >&5 + echo "$as_me:29180: 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 29099 "configure" +#line 29184 "configure" #include "confdefs.h" #include <sys/video.h> int @@ -29108,25 +29193,25 @@ v_init() } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:29111: \"$ac_link\"") >&5 +if { (eval echo "$as_me:29196: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:29114: \$? = $ac_status" >&5 + echo "$as_me:29199: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:29117: \"$ac_try\"") >&5 + { (eval echo "$as_me:29202: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:29120: \$? = $ac_status" >&5 + echo "$as_me:29205: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then - echo "$as_me:29122: result: yes" >&5 + echo "$as_me:29207: 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:29129: result: no" >&5 +echo "$as_me:29214: result: no" >&5 echo "${ECHO_T}no" >&6 cf_search= @@ -29194,11 +29279,11 @@ cf_search="$cf_library_path_list $cf_search" for cf_libdir in $cf_search do - echo "$as_me:29197: checking for -lvideo in $cf_libdir" >&5 + echo "$as_me:29282: 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 29201 "configure" +#line 29286 "configure" #include "confdefs.h" #include <sys/video.h> int @@ -29210,25 +29295,25 @@ v_init() } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:29213: \"$ac_link\"") >&5 +if { (eval echo "$as_me:29298: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:29216: \$? = $ac_status" >&5 + echo "$as_me:29301: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:29219: \"$ac_try\"") >&5 + { (eval echo "$as_me:29304: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:29222: \$? = $ac_status" >&5 + echo "$as_me:29307: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then - echo "$as_me:29224: result: yes" >&5 + echo "$as_me:29309: 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:29231: result: no" >&5 +echo "$as_me:29316: result: no" >&5 echo "${ECHO_T}no" >&6 LIBS="$cf_save_LIBS" fi @@ -29243,7 +29328,7 @@ fi eval 'cf_found_library="$cf_cv_have_lib_'"video"\" if test "$cf_found_library" = no ; then - { { echo "$as_me:29246: error: Cannot link video library" >&5 + { { echo "$as_me:29331: error: Cannot link video library" >&5 echo "$as_me: error: Cannot link video library" >&2;} { (exit 1); exit 1; }; } fi @@ -29253,13 +29338,13 @@ esac eval 'cf_cv_have_lib_'"slang2"'=no' cf_libdir="" - echo "$as_me:29256: checking for SLtt_get_screen_size" >&5 + echo "$as_me:29341: 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 29262 "configure" +#line 29347 "configure" #include "confdefs.h" #define SLtt_get_screen_size autoconf_temporary #include <limits.h> /* least-intrusive standard header which defines gcc2 __stub macros */ @@ -29290,16 +29375,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:29293: \"$ac_link\"") >&5 +if { (eval echo "$as_me:29378: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:29296: \$? = $ac_status" >&5 + echo "$as_me:29381: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:29299: \"$ac_try\"") >&5 + { (eval echo "$as_me:29384: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:29302: \$? = $ac_status" >&5 + echo "$as_me:29387: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_func_SLtt_get_screen_size=yes else @@ -29309,18 +29394,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:29312: result: $ac_cv_func_SLtt_get_screen_size" >&5 +echo "$as_me:29397: 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:29319: checking for SLtt_get_screen_size in -lslang2" >&5 + echo "$as_me:29404: 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 29323 "configure" +#line 29408 "configure" #include "confdefs.h" #include <slang.h> int @@ -29332,25 +29417,25 @@ SLtt_get_screen_size() } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:29335: \"$ac_link\"") >&5 +if { (eval echo "$as_me:29420: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:29338: \$? = $ac_status" >&5 + echo "$as_me:29423: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:29341: \"$ac_try\"") >&5 + { (eval echo "$as_me:29426: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:29344: \$? = $ac_status" >&5 + echo "$as_me:29429: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then - echo "$as_me:29346: result: yes" >&5 + echo "$as_me:29431: 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:29353: result: no" >&5 +echo "$as_me:29438: result: no" >&5 echo "${ECHO_T}no" >&6 cf_search= @@ -29418,11 +29503,11 @@ cf_search="$cf_library_path_list $cf_search" for cf_libdir in $cf_search do - echo "$as_me:29421: checking for -lslang2 in $cf_libdir" >&5 + echo "$as_me:29506: 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 29425 "configure" +#line 29510 "configure" #include "confdefs.h" #include <slang.h> int @@ -29434,25 +29519,25 @@ SLtt_get_screen_size() } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:29437: \"$ac_link\"") >&5 +if { (eval echo "$as_me:29522: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:29440: \$? = $ac_status" >&5 + echo "$as_me:29525: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:29443: \"$ac_try\"") >&5 + { (eval echo "$as_me:29528: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:29446: \$? = $ac_status" >&5 + echo "$as_me:29531: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then - echo "$as_me:29448: result: yes" >&5 + echo "$as_me:29533: 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:29455: result: no" >&5 +echo "$as_me:29540: result: no" >&5 echo "${ECHO_T}no" >&6 LIBS="$cf_save_LIBS" fi @@ -29467,13 +29552,13 @@ fi eval 'cf_found_library="$cf_cv_have_lib_'"slang2"\" if test "$cf_found_library" = no ; then - { { echo "$as_me:29470: error: Cannot link slang2 library" >&5 + { { echo "$as_me:29555: 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:29476: checking if we can link slang2 without termcap" >&5 +echo "$as_me:29561: 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%^.%%'` @@ -29482,7 +29567,7 @@ else fi LIBS=`echo ".$cf_slang_LIBS3" | sed -e "s%$cf_exclude%%" -e 's%^.%%'` cat >"conftest.$ac_ext" <<_ACEOF -#line 29485 "configure" +#line 29570 "configure" #include "confdefs.h" #include <slang.h> int @@ -29494,16 +29579,16 @@ SLtt_get_screen_size() } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:29497: \"$ac_link\"") >&5 +if { (eval echo "$as_me:29582: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:29500: \$? = $ac_status" >&5 + echo "$as_me:29585: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:29503: \"$ac_try\"") >&5 + { (eval echo "$as_me:29588: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:29506: \$? = $ac_status" >&5 + echo "$as_me:29591: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_result=yes else @@ -29512,12 +29597,12 @@ cat "conftest.$ac_ext" >&5 cf_result=no fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" -echo "$as_me:29515: result: $cf_result" >&5 +echo "$as_me:29600: result: $cf_result" >&5 echo "${ECHO_T}$cf_result" >&6 test "$cf_result" = no && LIBS="$cf_slang_LIBS3" else - { { echo "$as_me:29520: error: cannot find slang headers" >&5 + { { echo "$as_me:29605: error: cannot find slang headers" >&5 echo "$as_me: error: cannot find slang headers" >&2;} { (exit 1); exit 1; }; } fi @@ -29525,14 +29610,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:29528: checking if we must define UTF8" >&5 +echo "$as_me:29613: 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 29535 "configure" +#line 29620 "configure" #include "confdefs.h" #include <slang.h> int @@ -29544,16 +29629,16 @@ SLtt_get_screen_size() } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:29547: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:29632: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:29550: \$? = $ac_status" >&5 + echo "$as_me:29635: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:29553: \"$ac_try\"") >&5 + { (eval echo "$as_me:29638: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:29556: \$? = $ac_status" >&5 + echo "$as_me:29641: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_slang_utf8=no else @@ -29561,7 +29646,7 @@ else cat "conftest.$ac_ext" >&5 cat >"conftest.$ac_ext" <<_ACEOF -#line 29564 "configure" +#line 29649 "configure" #include "confdefs.h" #define UTF8 @@ -29575,16 +29660,16 @@ SLtt_get_screen_size() } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:29578: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:29663: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:29581: \$? = $ac_status" >&5 + echo "$as_me:29666: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:29584: \"$ac_try\"") >&5 + { (eval echo "$as_me:29669: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:29587: \$? = $ac_status" >&5 + echo "$as_me:29672: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_slang_utf8=yes else @@ -29597,7 +29682,7 @@ fi rm -f "conftest.$ac_objext" "conftest.$ac_ext" fi -echo "$as_me:29600: result: $cf_cv_slang_utf8" >&5 +echo "$as_me:29685: result: $cf_cv_slang_utf8" >&5 echo "${ECHO_T}$cf_cv_slang_utf8" >&6 if test "$cf_cv_slang_utf8" = yes ; then @@ -29608,14 +29693,14 @@ EOF fi -echo "$as_me:29611: checking if we must tell slang this is UNIX" >&5 +echo "$as_me:29696: 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 29618 "configure" +#line 29703 "configure" #include "confdefs.h" #include <slang.h> int @@ -29634,16 +29719,16 @@ SLang_TT_Baud_Rate = 1 } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:29637: \"$ac_link\"") >&5 +if { (eval echo "$as_me:29722: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:29640: \$? = $ac_status" >&5 + echo "$as_me:29725: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:29643: \"$ac_try\"") >&5 + { (eval echo "$as_me:29728: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:29646: \$? = $ac_status" >&5 + echo "$as_me:29731: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_slang_unix=yes else @@ -29654,20 +29739,20 @@ fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:29657: result: $cf_cv_slang_unix" >&5 +echo "$as_me:29742: 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 EOF - echo "$as_me:29664: checking for SLsmg_Color_Type" >&5 + echo "$as_me:29749: checking for SLsmg_Color_Type" >&5 echo $ECHO_N "checking for SLsmg_Color_Type... $ECHO_C" >&6 if test "${ac_cv_type_SLsmg_Color_Type+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >"conftest.$ac_ext" <<_ACEOF -#line 29670 "configure" +#line 29755 "configure" #include "confdefs.h" #include <slang.h> @@ -29683,16 +29768,16 @@ if (sizeof (SLsmg_Color_Type)) } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:29686: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:29771: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:29689: \$? = $ac_status" >&5 + echo "$as_me:29774: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:29692: \"$ac_try\"") >&5 + { (eval echo "$as_me:29777: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:29695: \$? = $ac_status" >&5 + echo "$as_me:29780: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_type_SLsmg_Color_Type=yes else @@ -29702,7 +29787,7 @@ ac_cv_type_SLsmg_Color_Type=no fi rm -f "conftest.$ac_objext" "conftest.$ac_ext" fi -echo "$as_me:29705: result: $ac_cv_type_SLsmg_Color_Type" >&5 +echo "$as_me:29790: result: $ac_cv_type_SLsmg_Color_Type" >&5 echo "${ECHO_T}$ac_cv_type_SLsmg_Color_Type" >&6 if test "$ac_cv_type_SLsmg_Color_Type" = yes; then ac_cv_type_SLsmg_Color_Type=yes @@ -29718,13 +29803,13 @@ EOF fi - echo "$as_me:29721: checking for SLtt_Char_Type" >&5 + echo "$as_me:29806: checking for SLtt_Char_Type" >&5 echo $ECHO_N "checking for SLtt_Char_Type... $ECHO_C" >&6 if test "${ac_cv_type_SLtt_Char_Type+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >"conftest.$ac_ext" <<_ACEOF -#line 29727 "configure" +#line 29812 "configure" #include "confdefs.h" #include <slang.h> @@ -29740,16 +29825,16 @@ if (sizeof (SLtt_Char_Type)) } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:29743: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:29828: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:29746: \$? = $ac_status" >&5 + echo "$as_me:29831: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:29749: \"$ac_try\"") >&5 + { (eval echo "$as_me:29834: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:29752: \$? = $ac_status" >&5 + echo "$as_me:29837: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_type_SLtt_Char_Type=yes else @@ -29759,7 +29844,7 @@ ac_cv_type_SLtt_Char_Type=no fi rm -f "conftest.$ac_objext" "conftest.$ac_ext" fi -echo "$as_me:29762: result: $ac_cv_type_SLtt_Char_Type" >&5 +echo "$as_me:29847: result: $ac_cv_type_SLtt_Char_Type" >&5 echo "${ECHO_T}$ac_cv_type_SLtt_Char_Type" >&6 if test "$ac_cv_type_SLtt_Char_Type" = yes; then ac_cv_type_SLtt_Char_Type=yes @@ -29782,7 +29867,7 @@ esac LD_RPATH_OPT= if test "x$cf_cv_enable_rpath" != xno then - echo "$as_me:29785: checking for an rpath option" >&5 + echo "$as_me:29870: checking for an rpath option" >&5 echo $ECHO_N "checking for an rpath option... $ECHO_C" >&6 case "$cf_cv_system_name" in (irix*) @@ -29813,12 +29898,12 @@ echo $ECHO_N "checking for an rpath option... $ECHO_C" >&6 (*) ;; esac - echo "$as_me:29816: result: $LD_RPATH_OPT" >&5 + echo "$as_me:29901: result: $LD_RPATH_OPT" >&5 echo "${ECHO_T}$LD_RPATH_OPT" >&6 case "x$LD_RPATH_OPT" in (x-R*) - echo "$as_me:29821: checking if we need a space after rpath option" >&5 + echo "$as_me:29906: 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" @@ -29839,7 +29924,7 @@ done LIBS="$cf_add_libs" cat >"conftest.$ac_ext" <<_ACEOF -#line 29842 "configure" +#line 29927 "configure" #include "confdefs.h" int @@ -29851,16 +29936,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:29854: \"$ac_link\"") >&5 +if { (eval echo "$as_me:29939: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:29857: \$? = $ac_status" >&5 + echo "$as_me:29942: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:29860: \"$ac_try\"") >&5 + { (eval echo "$as_me:29945: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:29863: \$? = $ac_status" >&5 + echo "$as_me:29948: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_rpath_space=no else @@ -29870,7 +29955,7 @@ cf_rpath_space=yes fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" LIBS="$cf_save_LIBS" - echo "$as_me:29873: result: $cf_rpath_space" >&5 + echo "$as_me:29958: result: $cf_rpath_space" >&5 echo "${ECHO_T}$cf_rpath_space" >&6 test "$cf_rpath_space" = yes && LD_RPATH_OPT="$LD_RPATH_OPT " ;; @@ -29881,13 +29966,13 @@ if test -z "$LD_RPATH_OPT" then test -n "$verbose" && echo " will not attempt to use rpath" 1>&6 -echo "${as_me:-configure}:29884: testing will not attempt to use rpath ..." 1>&5 +echo "${as_me:-configure}:29969: testing will not attempt to use rpath ..." 1>&5 elif test "x${enable_rpath_hack:-yes}" = "xno" then test -n "$verbose" && echo " rpath is disabled" 1>&6 -echo "${as_me:-configure}:29890: testing rpath is disabled ..." 1>&5 +echo "${as_me:-configure}:29975: testing rpath is disabled ..." 1>&5 elif test -z "${LD_RUN_PATH}${LD_LIBRARY_PATH}" then @@ -29898,7 +29983,7 @@ if test "$cross_compiling" = yes; then cf_check_run=unknown else cat >"conftest.$ac_ext" <<_ACEOF -#line 29901 "configure" +#line 29986 "configure" #include "confdefs.h" #include <stdio.h> int main(void) { @@ -29907,15 +29992,15 @@ int main(void) { } _ACEOF rm -f "conftest$ac_exeext" -if { (eval echo "$as_me:29910: \"$ac_link\"") >&5 +if { (eval echo "$as_me:29995: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:29913: \$? = $ac_status" >&5 + echo "$as_me:29998: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='"./conftest$ac_exeext"' - { (eval echo "$as_me:29915: \"$ac_try\"") >&5 + { (eval echo "$as_me:30000: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:29918: \$? = $ac_status" >&5 + echo "$as_me:30003: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_check_run=yes else @@ -29931,7 +30016,7 @@ fi then test -n "$verbose" && echo " linkage is broken" 1>&6 -echo "${as_me:-configure}:29934: testing linkage is broken ..." 1>&5 +echo "${as_me:-configure}:30019: testing linkage is broken ..." 1>&5 cf_result= for cf_item in $LIBS @@ -29963,7 +30048,7 @@ if test "$cross_compiling" = yes; then cf_check_run=unknown else cat >"conftest.$ac_ext" <<_ACEOF -#line 29966 "configure" +#line 30051 "configure" #include "confdefs.h" #include <stdio.h> int main(void) { @@ -29972,15 +30057,15 @@ int main(void) { } _ACEOF rm -f "conftest$ac_exeext" -if { (eval echo "$as_me:29975: \"$ac_link\"") >&5 +if { (eval echo "$as_me:30060: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:29978: \$? = $ac_status" >&5 + echo "$as_me:30063: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='"./conftest$ac_exeext"' - { (eval echo "$as_me:29980: \"$ac_try\"") >&5 + { (eval echo "$as_me:30065: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:29983: \$? = $ac_status" >&5 + echo "$as_me:30068: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_check_run=yes else @@ -29996,12 +30081,12 @@ fi then test -n "$verbose" && echo " use rpath for $cf_save_LIBS" 1>&6 -echo "${as_me:-configure}:29999: testing use rpath for $cf_save_LIBS ..." 1>&5 +echo "${as_me:-configure}:30084: testing use rpath for $cf_save_LIBS ..." 1>&5 LIBS="$cf_result" test -n "$verbose" && echo " result is now $LIBS" 1>&6 -echo "${as_me:-configure}:30004: testing result is now $LIBS ..." 1>&5 +echo "${as_me:-configure}:30089: testing result is now $LIBS ..." 1>&5 else LIBS="$cf_save_LIBS" @@ -30012,20 +30097,20 @@ echo "${as_me:-configure}:30004: testing result is now $LIBS ..." 1>&5 (*) test -n "$verbose" && echo " will not attempt to use rpath" 1>&6 -echo "${as_me:-configure}:30015: testing will not attempt to use rpath ..." 1>&5 +echo "${as_me:-configure}:30100: testing will not attempt to use rpath ..." 1>&5 ;; esac fi -echo "$as_me:30021: checking for chtype typedef" >&5 +echo "$as_me:30106: 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 30028 "configure" +#line 30113 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> int @@ -30037,16 +30122,16 @@ chtype foo; (void)foo } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:30040: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:30125: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:30043: \$? = $ac_status" >&5 + echo "$as_me:30128: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:30046: \"$ac_try\"") >&5 + { (eval echo "$as_me:30131: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:30049: \$? = $ac_status" >&5 + echo "$as_me:30134: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_chtype_decl=yes else @@ -30056,7 +30141,7 @@ cf_cv_chtype_decl=no fi rm -f "conftest.$ac_objext" "conftest.$ac_ext" fi -echo "$as_me:30059: result: $cf_cv_chtype_decl" >&5 +echo "$as_me:30144: result: $cf_cv_chtype_decl" >&5 echo "${ECHO_T}$cf_cv_chtype_decl" >&6 if test "$cf_cv_chtype_decl" = yes ; then @@ -30064,14 +30149,14 @@ cat >>confdefs.h <<\EOF #define HAVE_TYPE_CHTYPE 1 EOF - echo "$as_me:30067: checking if chtype is scalar or struct" >&5 + echo "$as_me:30152: 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 30074 "configure" +#line 30159 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> int @@ -30083,16 +30168,16 @@ static chtype foo; long x = foo; (void)x } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:30086: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:30171: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:30089: \$? = $ac_status" >&5 + echo "$as_me:30174: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:30092: \"$ac_try\"") >&5 + { (eval echo "$as_me:30177: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:30095: \$? = $ac_status" >&5 + echo "$as_me:30180: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_chtype_type=scalar else @@ -30102,7 +30187,7 @@ cf_cv_chtype_type=struct fi rm -f "conftest.$ac_objext" "conftest.$ac_ext" fi -echo "$as_me:30105: result: $cf_cv_chtype_type" >&5 +echo "$as_me:30190: result: $cf_cv_chtype_type" >&5 echo "${ECHO_T}$cf_cv_chtype_type" >&6 if test "$cf_cv_chtype_type" = scalar ; then @@ -30113,7 +30198,7 @@ EOF fi fi -echo "$as_me:30116: checking if you want the wide-curses features" >&5 +echo "$as_me:30201: 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. @@ -30130,10 +30215,10 @@ else use_wide_curses=$cf_wide_curses fi; -echo "$as_me:30133: result: $use_wide_curses" >&5 +echo "$as_me:30218: result: $use_wide_curses" >&5 echo "${ECHO_T}$use_wide_curses" >&6 -echo "$as_me:30136: checking if color-style code should be used" >&5 +echo "$as_me:30221: 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. @@ -30153,7 +30238,7 @@ fi; case "$use_color_style" in (no) - echo "$as_me:30156: result: no" >&5 + echo "$as_me:30241: result: no" >&5 echo "${ECHO_T}no" >&6 INSTALL_LSS= ;; @@ -30163,10 +30248,10 @@ cat >>confdefs.h <<\EOF #define USE_COLOR_STYLE 1 EOF - echo "$as_me:30166: result: yes" >&5 + echo "$as_me:30251: result: yes" >&5 echo "${ECHO_T}yes" >&6 - echo "$as_me:30169: checking for location of style-sheet file" >&5 + echo "$as_me:30254: 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. @@ -30202,7 +30287,7 @@ case ".$withval" in withval=`echo "$withval" | sed -e s%NONE%$cf_path_syntax%` ;; (*) - { { echo "$as_me:30205: error: expected a pathname, not \"$withval\"" >&5 + { { echo "$as_me:30290: error: expected a pathname, not \"$withval\"" >&5 echo "$as_me: error: expected a pathname, not \"$withval\"" >&2;} { (exit 1); exit 1; }; } ;; @@ -30211,7 +30296,7 @@ esac fi eval LYNX_LSS_FILE="$withval" - echo "$as_me:30214: result: $LYNX_LSS_FILE" >&5 + echo "$as_me:30299: result: $LYNX_LSS_FILE" >&5 echo "${ECHO_T}$LYNX_LSS_FILE" >&6 test "$LYNX_LSS_FILE" = no && LYNX_LSS_FILE= @@ -30224,7 +30309,7 @@ EOF ;; esac -echo "$as_me:30227: checking for the default configuration-file" >&5 +echo "$as_me:30312: 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. @@ -30260,7 +30345,7 @@ case ".$withval" in withval=`echo "$withval" | sed -e s%NONE%$cf_path_syntax%` ;; (*) - { { echo "$as_me:30263: error: expected a pathname, not \"$withval\"" >&5 + { { echo "$as_me:30348: error: expected a pathname, not \"$withval\"" >&5 echo "$as_me: error: expected a pathname, not \"$withval\"" >&2;} { (exit 1); exit 1; }; } ;; @@ -30269,7 +30354,7 @@ esac fi eval LYNX_CFG_FILE="$withval" -echo "$as_me:30272: result: $LYNX_CFG_FILE" >&5 +echo "$as_me:30357: result: $LYNX_CFG_FILE" >&5 echo "${ECHO_T}$LYNX_CFG_FILE" >&6 test "$LYNX_CFG_FILE" = no && LYNX_CFG_FILE= @@ -30278,7 +30363,7 @@ cat >>confdefs.h <<EOF #define LYNX_CFG_FILE "$LYNX_CFG_FILE" EOF -echo "$as_me:30281: checking for the default configuration-path" >&5 +echo "$as_me:30366: checking for the default configuration-path" >&5 echo $ECHO_N "checking for the default configuration-path... $ECHO_C" >&6 # Check whether --with-cfg-path or --without-cfg-path was given. @@ -30314,7 +30399,7 @@ case ".$withval" in withval=`echo "$withval" | sed -e s%NONE%$cf_path_syntax%` ;; (*) - { { echo "$as_me:30317: error: expected a pathname, not \"$withval\"" >&5 + { { echo "$as_me:30402: error: expected a pathname, not \"$withval\"" >&5 echo "$as_me: error: expected a pathname, not \"$withval\"" >&2;} { (exit 1); exit 1; }; } ;; @@ -30323,7 +30408,7 @@ esac fi eval LYNX_CFG_PATH="$withval" -echo "$as_me:30326: result: $LYNX_CFG_PATH" >&5 +echo "$as_me:30411: result: $LYNX_CFG_PATH" >&5 echo "${ECHO_T}$LYNX_CFG_PATH" >&6 test -z "$LYNX_CFG_PATH" && LYNX_CFG_PATH="`echo "$LYNX_CFG_FILE" | sed -e 's%/[^/]*$%%'`" @@ -30333,7 +30418,7 @@ cat >>confdefs.h <<EOF #define LYNX_CFG_PATH "$LYNX_CFG_PATH" EOF -echo "$as_me:30336: checking if htmlized lynx.cfg should be built" >&5 +echo "$as_me:30421: 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. @@ -30350,7 +30435,7 @@ else use_htmlized_cfg=no fi; -echo "$as_me:30353: result: $use_htmlized_cfg" >&5 +echo "$as_me:30438: result: $use_htmlized_cfg" >&5 echo "${ECHO_T}$use_htmlized_cfg" >&6 LYNXCFG_MAKE='' @@ -30361,7 +30446,7 @@ else LYNXCFG_NO_MAKE='#' fi -echo "$as_me:30364: checking if local doc directory should be linked to help page" >&5 +echo "$as_me:30449: 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. @@ -30378,7 +30463,7 @@ else use_local_docs=no fi; -echo "$as_me:30381: result: $use_local_docs" >&5 +echo "$as_me:30466: result: $use_local_docs" >&5 echo "${ECHO_T}$use_local_docs" >&6 LYNXDOC_MAKE='' @@ -30386,7 +30471,7 @@ if test "$use_local_docs" = no ; then LYNXDOC_MAKE='#' fi -echo "$as_me:30389: checking for MIME library directory" >&5 +echo "$as_me:30474: 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. @@ -30422,7 +30507,7 @@ case ".$withval" in withval=`echo "$withval" | sed -e s%NONE%$cf_path_syntax%` ;; (*) - { { echo "$as_me:30425: error: expected a pathname, not \"$withval\"" >&5 + { { echo "$as_me:30510: error: expected a pathname, not \"$withval\"" >&5 echo "$as_me: error: expected a pathname, not \"$withval\"" >&2;} { (exit 1); exit 1; }; } ;; @@ -30431,7 +30516,7 @@ esac fi eval MIME_LIBDIR="$withval" -echo "$as_me:30434: result: $MIME_LIBDIR" >&5 +echo "$as_me:30519: result: $MIME_LIBDIR" >&5 echo "${ECHO_T}$MIME_LIBDIR" >&6 MIME_LIBDIR=`echo "$MIME_LIBDIR" | sed -e 's,/$,,' -e 's,$,/,'` @@ -30439,7 +30524,7 @@ cat >>confdefs.h <<EOF #define MIME_LIBDIR "$MIME_LIBDIR" EOF -echo "$as_me:30442: checking if locale-charset selection logic should be used" >&5 +echo "$as_me:30527: 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. @@ -30456,7 +30541,7 @@ else use_locale_charset=yes fi; -echo "$as_me:30459: result: $use_locale_charset" >&5 +echo "$as_me:30544: result: $use_locale_charset" >&5 echo "${ECHO_T}$use_locale_charset" >&6 test "$use_locale_charset" != no && cat >>confdefs.h <<\EOF @@ -30465,7 +30550,7 @@ EOF CHARSET_DEFS= -echo "$as_me:30468: checking if you want only a few charsets" >&5 +echo "$as_me:30553: 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. @@ -30477,7 +30562,7 @@ else fi; if test -n "$cf_charsets" ; then - echo "$as_me:30480: result: yes" >&5 + echo "$as_me:30565: result: yes" >&5 echo "${ECHO_T}yes" >&6 cat >>confdefs.h <<\EOF @@ -30491,7 +30576,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}:30494: testing using minimal list of charsets: $cf_min_charsets ..." 1>&5 +echo "${as_me:-configure}:30579: 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'` @@ -30518,28 +30603,28 @@ echo "${as_me:-configure}:30494: testing using minimal list of charsets: $cf_min then test -n "$verbose" && echo " found $cf_charset" 1>&6 -echo "${as_me:-configure}:30521: testing found $cf_charset ..." 1>&5 +echo "${as_me:-configure}:30606: 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}:30527: testing not found $cf_charset ..." 1>&5 +echo "${as_me:-configure}:30612: testing not found $cf_charset ..." 1>&5 fi done else - echo "$as_me:30532: result: no" >&5 + echo "$as_me:30617: result: no" >&5 echo "${ECHO_T}no" >&6 fi -echo "$as_me:30536: checking for ANSI C header files" >&5 +echo "$as_me:30621: 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 30542 "configure" +#line 30627 "configure" #include "confdefs.h" #include <stdlib.h> #include <stdarg.h> @@ -30547,13 +30632,13 @@ else #include <float.h> _ACEOF -if { (eval echo "$as_me:30550: \"$ac_cpp "conftest.$ac_ext"\"") >&5 +if { (eval echo "$as_me:30635: \"$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:30556: \$? = $ac_status" >&5 + echo "$as_me:30641: \$? = $ac_status" >&5 (exit "$ac_status"); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -30575,7 +30660,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 30578 "configure" +#line 30663 "configure" #include "confdefs.h" #include <string.h> @@ -30593,7 +30678,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 30596 "configure" +#line 30681 "configure" #include "confdefs.h" #include <stdlib.h> @@ -30614,7 +30699,7 @@ if test $ac_cv_header_stdc = yes; then : else cat >"conftest.$ac_ext" <<_ACEOF -#line 30617 "configure" +#line 30702 "configure" #include "confdefs.h" #include <ctype.h> #if ((' ' & 0x0FF) == 0x020) @@ -30640,15 +30725,15 @@ main (void) } _ACEOF rm -f "conftest$ac_exeext" -if { (eval echo "$as_me:30643: \"$ac_link\"") >&5 +if { (eval echo "$as_me:30728: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:30646: \$? = $ac_status" >&5 + echo "$as_me:30731: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='"./conftest$ac_exeext"' - { (eval echo "$as_me:30648: \"$ac_try\"") >&5 + { (eval echo "$as_me:30733: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:30651: \$? = $ac_status" >&5 + echo "$as_me:30736: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then : else @@ -30661,7 +30746,7 @@ rm -f core ./core.* ./*.core "conftest$ac_exeext" "conftest.$ac_objext" "conftes fi fi fi -echo "$as_me:30664: result: $ac_cv_header_stdc" >&5 +echo "$as_me:30749: result: $ac_cv_header_stdc" >&5 echo "${ECHO_T}$ac_cv_header_stdc" >&6 if test $ac_cv_header_stdc = yes; then @@ -30671,13 +30756,13 @@ EOF fi -echo "$as_me:30674: checking whether time.h and sys/time.h may both be included" >&5 +echo "$as_me:30759: 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 30680 "configure" +#line 30765 "configure" #include "confdefs.h" #include <sys/types.h> #include <sys/time.h> @@ -30693,16 +30778,16 @@ return 0; } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:30696: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:30781: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:30699: \$? = $ac_status" >&5 + echo "$as_me:30784: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:30702: \"$ac_try\"") >&5 + { (eval echo "$as_me:30787: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:30705: \$? = $ac_status" >&5 + echo "$as_me:30790: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_header_time=yes else @@ -30712,7 +30797,7 @@ ac_cv_header_time=no fi rm -f "conftest.$ac_objext" "conftest.$ac_ext" fi -echo "$as_me:30715: result: $ac_cv_header_time" >&5 +echo "$as_me:30800: result: $ac_cv_header_time" >&5 echo "${ECHO_T}$ac_cv_header_time" >&6 if test $ac_cv_header_time = yes; then @@ -30725,13 +30810,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:30728: checking for $ac_hdr that defines DIR" >&5 +echo "$as_me:30813: 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 30734 "configure" +#line 30819 "configure" #include "confdefs.h" #include <sys/types.h> #include <$ac_hdr> @@ -30746,16 +30831,16 @@ return 0; } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:30749: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:30834: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:30752: \$? = $ac_status" >&5 + echo "$as_me:30837: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:30755: \"$ac_try\"") >&5 + { (eval echo "$as_me:30840: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:30758: \$? = $ac_status" >&5 + echo "$as_me:30843: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then eval "$as_ac_Header=yes" else @@ -30765,7 +30850,7 @@ eval "$as_ac_Header=no" fi rm -f "conftest.$ac_objext" "conftest.$ac_ext" fi -echo "$as_me:30768: result: `eval echo '${'"$as_ac_Header"'}'`" >&5 +echo "$as_me:30853: 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 @@ -30778,7 +30863,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:30781: checking for opendir in -ldir" >&5 + echo "$as_me:30866: 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 @@ -30786,7 +30871,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-ldir $LIBS" cat >"conftest.$ac_ext" <<_ACEOF -#line 30789 "configure" +#line 30874 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -30805,16 +30890,16 @@ opendir (); } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:30808: \"$ac_link\"") >&5 +if { (eval echo "$as_me:30893: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:30811: \$? = $ac_status" >&5 + echo "$as_me:30896: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:30814: \"$ac_try\"") >&5 + { (eval echo "$as_me:30899: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:30817: \$? = $ac_status" >&5 + echo "$as_me:30902: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_lib_dir_opendir=yes else @@ -30825,14 +30910,14 @@ fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:30828: result: $ac_cv_lib_dir_opendir" >&5 +echo "$as_me:30913: 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:30835: checking for opendir in -lx" >&5 + echo "$as_me:30920: 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 @@ -30840,7 +30925,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lx $LIBS" cat >"conftest.$ac_ext" <<_ACEOF -#line 30843 "configure" +#line 30928 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -30859,16 +30944,16 @@ opendir (); } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:30862: \"$ac_link\"") >&5 +if { (eval echo "$as_me:30947: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:30865: \$? = $ac_status" >&5 + echo "$as_me:30950: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:30868: \"$ac_try\"") >&5 + { (eval echo "$as_me:30953: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:30871: \$? = $ac_status" >&5 + echo "$as_me:30956: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_lib_x_opendir=yes else @@ -30879,7 +30964,7 @@ fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:30882: result: $ac_cv_lib_x_opendir" >&5 +echo "$as_me:30967: 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" @@ -30908,23 +30993,23 @@ for ac_header in \ do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` -echo "$as_me:30911: checking for $ac_header" >&5 +echo "$as_me:30996: 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 30917 "configure" +#line 31002 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:30921: \"$ac_cpp "conftest.$ac_ext"\"") >&5 +if { (eval echo "$as_me:31006: \"$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:30927: \$? = $ac_status" >&5 + echo "$as_me:31012: \$? = $ac_status" >&5 (exit "$ac_status"); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -30943,7 +31028,7 @@ else fi rm -f conftest.err "conftest.$ac_ext" fi -echo "$as_me:30946: result: `eval echo '${'"$as_ac_Header"'}'`" >&5 +echo "$as_me:31031: 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 @@ -30953,14 +31038,14 @@ EOF fi done -echo "$as_me:30956: checking termio.h and termios.h" >&5 +echo "$as_me:31041: 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 30963 "configure" +#line 31048 "configure" #include "confdefs.h" #if HAVE_TERMIO_H @@ -30978,16 +31063,16 @@ putchar (0x0a) } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:30981: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:31066: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:30984: \$? = $ac_status" >&5 + echo "$as_me:31069: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:30987: \"$ac_try\"") >&5 + { (eval echo "$as_me:31072: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:30990: \$? = $ac_status" >&5 + echo "$as_me:31075: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_termio_and_termios=yes else @@ -30998,21 +31083,21 @@ fi rm -f "conftest.$ac_objext" "conftest.$ac_ext" fi -echo "$as_me:31001: result: $cf_cv_termio_and_termios" >&5 +echo "$as_me:31086: 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:31008: checking for sigaction and structs" >&5 +echo "$as_me:31093: 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 31015 "configure" +#line 31100 "configure" #include "confdefs.h" #include <sys/types.h> @@ -31032,16 +31117,16 @@ struct sigaction act; } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:31035: \"$ac_link\"") >&5 +if { (eval echo "$as_me:31120: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:31038: \$? = $ac_status" >&5 + echo "$as_me:31123: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:31041: \"$ac_try\"") >&5 + { (eval echo "$as_me:31126: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:31044: \$? = $ac_status" >&5 + echo "$as_me:31129: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_func_sigaction=yes else @@ -31052,7 +31137,7 @@ fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:31055: result: $cf_cv_func_sigaction" >&5 +echo "$as_me:31140: result: $cf_cv_func_sigaction" >&5 echo "${ECHO_T}$cf_cv_func_sigaction" >&6 test "$cf_cv_func_sigaction" = yes && cat >>confdefs.h <<\EOF @@ -31062,23 +31147,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:31065: checking for $ac_header" >&5 +echo "$as_me:31150: 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 31071 "configure" +#line 31156 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:31075: \"$ac_cpp "conftest.$ac_ext"\"") >&5 +if { (eval echo "$as_me:31160: \"$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:31081: \$? = $ac_status" >&5 + echo "$as_me:31166: \$? = $ac_status" >&5 (exit "$ac_status"); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -31097,7 +31182,7 @@ else fi rm -f conftest.err "conftest.$ac_ext" fi -echo "$as_me:31100: result: `eval echo '${'"$as_ac_Header"'}'`" >&5 +echo "$as_me:31185: 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 @@ -31118,23 +31203,23 @@ else for ac_header in wait.h do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` -echo "$as_me:31121: checking for $ac_header" >&5 +echo "$as_me:31206: 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 31127 "configure" +#line 31212 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:31131: \"$ac_cpp "conftest.$ac_ext"\"") >&5 +if { (eval echo "$as_me:31216: \"$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:31137: \$? = $ac_status" >&5 + echo "$as_me:31222: \$? = $ac_status" >&5 (exit "$ac_status"); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -31153,7 +31238,7 @@ else fi rm -f conftest.err "conftest.$ac_ext" fi -echo "$as_me:31156: result: `eval echo '${'"$as_ac_Header"'}'`" >&5 +echo "$as_me:31241: 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 @@ -31166,23 +31251,23 @@ done for ac_header in waitstatus.h do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` -echo "$as_me:31169: checking for $ac_header" >&5 +echo "$as_me:31254: 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 31175 "configure" +#line 31260 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:31179: \"$ac_cpp "conftest.$ac_ext"\"") >&5 +if { (eval echo "$as_me:31264: \"$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:31185: \$? = $ac_status" >&5 + echo "$as_me:31270: \$? = $ac_status" >&5 (exit "$ac_status"); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -31201,7 +31286,7 @@ else fi rm -f conftest.err "conftest.$ac_ext" fi -echo "$as_me:31204: result: `eval echo '${'"$as_ac_Header"'}'`" >&5 +echo "$as_me:31289: 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 @@ -31223,14 +31308,14 @@ cf_wait_headers="$cf_wait_headers fi fi -echo "$as_me:31226: checking for union wait" >&5 +echo "$as_me:31311: 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 31233 "configure" +#line 31318 "configure" #include "confdefs.h" $cf_wait_headers int @@ -31249,16 +31334,16 @@ int x; } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:31252: \"$ac_link\"") >&5 +if { (eval echo "$as_me:31337: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:31255: \$? = $ac_status" >&5 + echo "$as_me:31340: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:31258: \"$ac_try\"") >&5 + { (eval echo "$as_me:31343: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:31261: \$? = $ac_status" >&5 + echo "$as_me:31346: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_type_unionwait=no echo compiles ok w/o union wait 1>&5 @@ -31268,7 +31353,7 @@ else cat "conftest.$ac_ext" >&5 cat >"conftest.$ac_ext" <<_ACEOF -#line 31271 "configure" +#line 31356 "configure" #include "confdefs.h" $cf_wait_headers int @@ -31295,16 +31380,16 @@ union wait x; } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:31298: \"$ac_link\"") >&5 +if { (eval echo "$as_me:31383: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:31301: \$? = $ac_status" >&5 + echo "$as_me:31386: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:31304: \"$ac_try\"") >&5 + { (eval echo "$as_me:31389: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:31307: \$? = $ac_status" >&5 + echo "$as_me:31392: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_type_unionwait=yes echo compiles ok with union wait and possibly macros too 1>&5 @@ -31319,7 +31404,7 @@ fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:31322: result: $cf_cv_type_unionwait" >&5 +echo "$as_me:31407: result: $cf_cv_type_unionwait" >&5 echo "${ECHO_T}$cf_cv_type_unionwait" >&6 test "$cf_cv_type_unionwait" = yes && cat >>confdefs.h <<\EOF @@ -31328,14 +31413,14 @@ EOF if test "$cf_cv_type_unionwait" = yes; then - echo "$as_me:31331: checking if union wait can be used as wait-arg" >&5 + echo "$as_me:31416: 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 31338 "configure" +#line 31423 "configure" #include "confdefs.h" $cf_wait_headers int @@ -31347,16 +31432,16 @@ union wait x; wait(&x) } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:31350: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:31435: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:31353: \$? = $ac_status" >&5 + echo "$as_me:31438: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:31356: \"$ac_try\"") >&5 + { (eval echo "$as_me:31441: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:31359: \$? = $ac_status" >&5 + echo "$as_me:31444: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_arg_union_wait=yes else @@ -31368,21 +31453,21 @@ rm -f "conftest.$ac_objext" "conftest.$ac_ext" fi - echo "$as_me:31371: result: $cf_cv_arg_union_wait" >&5 + echo "$as_me:31456: 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:31378: checking if union wait can be used as waitpid-arg" >&5 + echo "$as_me:31463: 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 31385 "configure" +#line 31470 "configure" #include "confdefs.h" $cf_wait_headers int @@ -31394,16 +31479,16 @@ union wait x; waitpid(0, &x, 0) } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:31397: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:31482: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:31400: \$? = $ac_status" >&5 + echo "$as_me:31485: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:31403: \"$ac_try\"") >&5 + { (eval echo "$as_me:31488: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:31406: \$? = $ac_status" >&5 + echo "$as_me:31491: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_arg_union_waitpid=yes else @@ -31415,7 +31500,7 @@ rm -f "conftest.$ac_objext" "conftest.$ac_ext" fi - echo "$as_me:31418: result: $cf_cv_arg_union_waitpid" >&5 + echo "$as_me:31503: 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 @@ -31424,13 +31509,13 @@ EOF fi -echo "$as_me:31427: checking for uid_t in sys/types.h" >&5 +echo "$as_me:31512: 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 31433 "configure" +#line 31518 "configure" #include "confdefs.h" #include <sys/types.h> @@ -31444,7 +31529,7 @@ fi rm -rf conftest* fi -echo "$as_me:31447: result: $ac_cv_type_uid_t" >&5 +echo "$as_me:31532: 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 @@ -31458,7 +31543,7 @@ EOF fi -echo "$as_me:31461: checking type of array argument to getgroups" >&5 +echo "$as_me:31546: 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 @@ -31467,7 +31552,7 @@ else ac_cv_type_getgroups=cross else cat >"conftest.$ac_ext" <<_ACEOF -#line 31470 "configure" +#line 31555 "configure" #include "confdefs.h" /* Thanks to Mike Rendell for this test. */ #include <sys/types.h> @@ -31493,15 +31578,15 @@ main (void) } _ACEOF rm -f "conftest$ac_exeext" -if { (eval echo "$as_me:31496: \"$ac_link\"") >&5 +if { (eval echo "$as_me:31581: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:31499: \$? = $ac_status" >&5 + echo "$as_me:31584: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='"./conftest$ac_exeext"' - { (eval echo "$as_me:31501: \"$ac_try\"") >&5 + { (eval echo "$as_me:31586: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:31504: \$? = $ac_status" >&5 + echo "$as_me:31589: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_type_getgroups=gid_t else @@ -31514,7 +31599,7 @@ rm -f core ./core.* ./*.core "conftest$ac_exeext" "conftest.$ac_objext" "conftes fi if test $ac_cv_type_getgroups = cross; then cat >"conftest.$ac_ext" <<_ACEOF -#line 31517 "configure" +#line 31602 "configure" #include "confdefs.h" #include <unistd.h> @@ -31529,20 +31614,20 @@ rm -rf conftest* fi fi -echo "$as_me:31532: result: $ac_cv_type_getgroups" >&5 +echo "$as_me:31617: 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:31539: checking for off_t" >&5 +echo "$as_me:31624: 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 31545 "configure" +#line 31630 "configure" #include "confdefs.h" $ac_includes_default int @@ -31557,16 +31642,16 @@ if (sizeof (off_t)) } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:31560: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:31645: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:31563: \$? = $ac_status" >&5 + echo "$as_me:31648: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:31566: \"$ac_try\"") >&5 + { (eval echo "$as_me:31651: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:31569: \$? = $ac_status" >&5 + echo "$as_me:31654: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_type_off_t=yes else @@ -31576,7 +31661,7 @@ ac_cv_type_off_t=no fi rm -f "conftest.$ac_objext" "conftest.$ac_ext" fi -echo "$as_me:31579: result: $ac_cv_type_off_t" >&5 +echo "$as_me:31664: 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 : @@ -31588,13 +31673,13 @@ EOF fi -echo "$as_me:31591: checking for pid_t" >&5 +echo "$as_me:31676: 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 31597 "configure" +#line 31682 "configure" #include "confdefs.h" $ac_includes_default int @@ -31609,16 +31694,16 @@ if (sizeof (pid_t)) } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:31612: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:31697: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:31615: \$? = $ac_status" >&5 + echo "$as_me:31700: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:31618: \"$ac_try\"") >&5 + { (eval echo "$as_me:31703: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:31621: \$? = $ac_status" >&5 + echo "$as_me:31706: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_type_pid_t=yes else @@ -31628,7 +31713,7 @@ ac_cv_type_pid_t=no fi rm -f "conftest.$ac_objext" "conftest.$ac_ext" fi -echo "$as_me:31631: result: $ac_cv_type_pid_t" >&5 +echo "$as_me:31716: 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 : @@ -31640,13 +31725,13 @@ EOF fi -echo "$as_me:31643: checking for uid_t in sys/types.h" >&5 +echo "$as_me:31728: 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 31649 "configure" +#line 31734 "configure" #include "confdefs.h" #include <sys/types.h> @@ -31660,7 +31745,7 @@ fi rm -rf conftest* fi -echo "$as_me:31663: result: $ac_cv_type_uid_t" >&5 +echo "$as_me:31748: 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 @@ -31674,13 +31759,13 @@ EOF fi -echo "$as_me:31677: checking for mode_t" >&5 +echo "$as_me:31762: 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 31683 "configure" +#line 31768 "configure" #include "confdefs.h" $ac_includes_default int @@ -31695,16 +31780,16 @@ if (sizeof (mode_t)) } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:31698: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:31783: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:31701: \$? = $ac_status" >&5 + echo "$as_me:31786: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:31704: \"$ac_try\"") >&5 + { (eval echo "$as_me:31789: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:31707: \$? = $ac_status" >&5 + echo "$as_me:31792: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_type_mode_t=yes else @@ -31714,7 +31799,7 @@ ac_cv_type_mode_t=no fi rm -f "conftest.$ac_objext" "conftest.$ac_ext" fi -echo "$as_me:31717: result: $ac_cv_type_mode_t" >&5 +echo "$as_me:31802: 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 : @@ -31726,13 +31811,13 @@ EOF fi - echo "$as_me:31729: checking for ssize_t" >&5 + echo "$as_me:31814: checking for ssize_t" >&5 echo $ECHO_N "checking for ssize_t... $ECHO_C" >&6 if test "${ac_cv_type_ssize_t+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >"conftest.$ac_ext" <<_ACEOF -#line 31735 "configure" +#line 31820 "configure" #include "confdefs.h" $ac_includes_default int @@ -31747,16 +31832,16 @@ if (sizeof (ssize_t)) } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:31750: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:31835: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:31753: \$? = $ac_status" >&5 + echo "$as_me:31838: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:31756: \"$ac_try\"") >&5 + { (eval echo "$as_me:31841: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:31759: \$? = $ac_status" >&5 + echo "$as_me:31844: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_type_ssize_t=yes else @@ -31766,7 +31851,7 @@ ac_cv_type_ssize_t=no fi rm -f "conftest.$ac_objext" "conftest.$ac_ext" fi -echo "$as_me:31769: result: $ac_cv_type_ssize_t" >&5 +echo "$as_me:31854: result: $ac_cv_type_ssize_t" >&5 echo "${ECHO_T}$ac_cv_type_ssize_t" >&6 if test "$ac_cv_type_ssize_t" = yes; then ac_cv_type_ssize_t=yes @@ -31782,13 +31867,13 @@ EOF fi - echo "$as_me:31785: checking for socklen_t" >&5 + echo "$as_me:31870: 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 31791 "configure" +#line 31876 "configure" #include "confdefs.h" #include <sys/types.h> @@ -31806,16 +31891,16 @@ if (sizeof (socklen_t)) } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:31809: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:31894: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:31812: \$? = $ac_status" >&5 + echo "$as_me:31897: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:31815: \"$ac_try\"") >&5 + { (eval echo "$as_me:31900: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:31818: \$? = $ac_status" >&5 + echo "$as_me:31903: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_type_socklen_t=yes else @@ -31825,7 +31910,7 @@ ac_cv_type_socklen_t=no fi rm -f "conftest.$ac_objext" "conftest.$ac_ext" fi -echo "$as_me:31828: result: $ac_cv_type_socklen_t" >&5 +echo "$as_me:31913: 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 @@ -31841,7 +31926,7 @@ EOF fi -echo "$as_me:31844: checking for long long type" >&5 +echo "$as_me:31929: 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 @@ -31872,7 +31957,7 @@ _CFEOF rm -f conftest* fi -echo "$as_me:31875: result: $cf_cv_type_long_long" >&5 +echo "$as_me:31960: 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 @@ -31883,14 +31968,14 @@ EOF fi -echo "$as_me:31886: checking for tm.tm_gmtoff" >&5 +echo "$as_me:31971: 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 31893 "configure" +#line 31978 "configure" #include "confdefs.h" #ifdef TIME_WITH_SYS_TIME @@ -31915,16 +32000,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:31918: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:32003: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:31921: \$? = $ac_status" >&5 + echo "$as_me:32006: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:31924: \"$ac_try\"") >&5 + { (eval echo "$as_me:32009: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:31927: \$? = $ac_status" >&5 + echo "$as_me:32012: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_tm_gmtoff=yes else @@ -31935,20 +32020,20 @@ fi rm -f "conftest.$ac_objext" "conftest.$ac_ext" fi -echo "$as_me:31938: result: $cf_cv_tm_gmtoff" >&5 +echo "$as_me:32023: 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:31945: checking for int" >&5 +echo "$as_me:32030: 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 31951 "configure" +#line 32036 "configure" #include "confdefs.h" $ac_includes_default int @@ -31963,16 +32048,16 @@ if (sizeof (int)) } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:31966: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:32051: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:31969: \$? = $ac_status" >&5 + echo "$as_me:32054: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:31972: \"$ac_try\"") >&5 + { (eval echo "$as_me:32057: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:31975: \$? = $ac_status" >&5 + echo "$as_me:32060: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_type_int=yes else @@ -31982,10 +32067,10 @@ ac_cv_type_int=no fi rm -f "conftest.$ac_objext" "conftest.$ac_ext" fi -echo "$as_me:31985: result: $ac_cv_type_int" >&5 +echo "$as_me:32070: result: $ac_cv_type_int" >&5 echo "${ECHO_T}$ac_cv_type_int" >&6 -echo "$as_me:31988: checking size of int" >&5 +echo "$as_me:32073: 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 @@ -31994,7 +32079,7 @@ else if test "$cross_compiling" = yes; then # Depending upon the size, compute the lo and hi bounds. cat >"conftest.$ac_ext" <<_ACEOF -#line 31997 "configure" +#line 32082 "configure" #include "confdefs.h" $ac_includes_default int @@ -32006,21 +32091,21 @@ int _array_ [1 - 2 * !((sizeof (int)) >= 0)] } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:32009: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:32094: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:32012: \$? = $ac_status" >&5 + echo "$as_me:32097: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:32015: \"$ac_try\"") >&5 + { (eval echo "$as_me:32100: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:32018: \$? = $ac_status" >&5 + echo "$as_me:32103: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_lo=0 ac_mid=0 while :; do cat >"conftest.$ac_ext" <<_ACEOF -#line 32023 "configure" +#line 32108 "configure" #include "confdefs.h" $ac_includes_default int @@ -32032,16 +32117,16 @@ int _array_ [1 - 2 * !((sizeof (int)) <= $ac_mid)] } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:32035: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:32120: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:32038: \$? = $ac_status" >&5 + echo "$as_me:32123: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:32041: \"$ac_try\"") >&5 + { (eval echo "$as_me:32126: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:32044: \$? = $ac_status" >&5 + echo "$as_me:32129: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_hi=$ac_mid; break else @@ -32057,7 +32142,7 @@ cat "conftest.$ac_ext" >&5 ac_hi=-1 ac_mid=-1 while :; do cat >"conftest.$ac_ext" <<_ACEOF -#line 32060 "configure" +#line 32145 "configure" #include "confdefs.h" $ac_includes_default int @@ -32069,16 +32154,16 @@ int _array_ [1 - 2 * !((sizeof (int)) >= $ac_mid)] } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:32072: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:32157: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:32075: \$? = $ac_status" >&5 + echo "$as_me:32160: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:32078: \"$ac_try\"") >&5 + { (eval echo "$as_me:32163: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:32081: \$? = $ac_status" >&5 + echo "$as_me:32166: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_lo=$ac_mid; break else @@ -32094,7 +32179,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 32097 "configure" +#line 32182 "configure" #include "confdefs.h" $ac_includes_default int @@ -32106,16 +32191,16 @@ int _array_ [1 - 2 * !((sizeof (int)) <= $ac_mid)] } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:32109: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:32194: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:32112: \$? = $ac_status" >&5 + echo "$as_me:32197: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:32115: \"$ac_try\"") >&5 + { (eval echo "$as_me:32200: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:32118: \$? = $ac_status" >&5 + echo "$as_me:32203: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_hi=$ac_mid else @@ -32128,12 +32213,12 @@ done ac_cv_sizeof_int=$ac_lo else if test "$cross_compiling" = yes; then - { { echo "$as_me:32131: error: cannot run test program while cross compiling" >&5 + { { echo "$as_me:32216: 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 32136 "configure" +#line 32221 "configure" #include "confdefs.h" $ac_includes_default int @@ -32149,15 +32234,15 @@ fclose (f); } _ACEOF rm -f "conftest$ac_exeext" -if { (eval echo "$as_me:32152: \"$ac_link\"") >&5 +if { (eval echo "$as_me:32237: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:32155: \$? = $ac_status" >&5 + echo "$as_me:32240: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='"./conftest$ac_exeext"' - { (eval echo "$as_me:32157: \"$ac_try\"") >&5 + { (eval echo "$as_me:32242: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:32160: \$? = $ac_status" >&5 + echo "$as_me:32245: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_sizeof_int=`cat conftest.val` else @@ -32173,7 +32258,7 @@ else ac_cv_sizeof_int=0 fi fi -echo "$as_me:32176: result: $ac_cv_sizeof_int" >&5 +echo "$as_me:32261: 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 @@ -32182,11 +32267,11 @@ EOF if test "${ac_cv_type_int+set}" = set; then cf_cv_sizeof="$ac_cv_sizeof_int" if test "${ac_cv_sizeof_int+set}" != set; then - { echo "$as_me:32185: WARNING: using 4 for sizeof int" >&5 + { echo "$as_me:32270: WARNING: using 4 for sizeof int" >&5 echo "$as_me: WARNING: using 4 for sizeof int" >&2;} ac_cv_sizeof_int=4 elif test "x${ac_cv_sizeof_int}" = x0; then - { echo "$as_me:32189: WARNING: sizeof int not found, using 4" >&5 + { echo "$as_me:32274: WARNING: sizeof int not found, using 4" >&5 echo "$as_me: WARNING: sizeof int not found, using 4" >&2;} ac_cv_sizeof_int=4 fi @@ -32200,13 +32285,13 @@ cf_cv_type=`echo "sizeof_int" | sed y%abcdefghijklmnopqrstuvwxyz./-%ABCDEFGHIJKL fi fi -echo "$as_me:32203: checking for long" >&5 +echo "$as_me:32288: 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 32209 "configure" +#line 32294 "configure" #include "confdefs.h" $ac_includes_default int @@ -32221,16 +32306,16 @@ if (sizeof (long)) } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:32224: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:32309: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:32227: \$? = $ac_status" >&5 + echo "$as_me:32312: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:32230: \"$ac_try\"") >&5 + { (eval echo "$as_me:32315: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:32233: \$? = $ac_status" >&5 + echo "$as_me:32318: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_type_long=yes else @@ -32240,10 +32325,10 @@ ac_cv_type_long=no fi rm -f "conftest.$ac_objext" "conftest.$ac_ext" fi -echo "$as_me:32243: result: $ac_cv_type_long" >&5 +echo "$as_me:32328: result: $ac_cv_type_long" >&5 echo "${ECHO_T}$ac_cv_type_long" >&6 -echo "$as_me:32246: checking size of long" >&5 +echo "$as_me:32331: 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 @@ -32252,7 +32337,7 @@ else if test "$cross_compiling" = yes; then # Depending upon the size, compute the lo and hi bounds. cat >"conftest.$ac_ext" <<_ACEOF -#line 32255 "configure" +#line 32340 "configure" #include "confdefs.h" $ac_includes_default int @@ -32264,21 +32349,21 @@ int _array_ [1 - 2 * !((sizeof (long)) >= 0)] } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:32267: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:32352: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:32270: \$? = $ac_status" >&5 + echo "$as_me:32355: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:32273: \"$ac_try\"") >&5 + { (eval echo "$as_me:32358: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:32276: \$? = $ac_status" >&5 + echo "$as_me:32361: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_lo=0 ac_mid=0 while :; do cat >"conftest.$ac_ext" <<_ACEOF -#line 32281 "configure" +#line 32366 "configure" #include "confdefs.h" $ac_includes_default int @@ -32290,16 +32375,16 @@ int _array_ [1 - 2 * !((sizeof (long)) <= $ac_mid)] } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:32293: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:32378: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:32296: \$? = $ac_status" >&5 + echo "$as_me:32381: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:32299: \"$ac_try\"") >&5 + { (eval echo "$as_me:32384: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:32302: \$? = $ac_status" >&5 + echo "$as_me:32387: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_hi=$ac_mid; break else @@ -32315,7 +32400,7 @@ cat "conftest.$ac_ext" >&5 ac_hi=-1 ac_mid=-1 while :; do cat >"conftest.$ac_ext" <<_ACEOF -#line 32318 "configure" +#line 32403 "configure" #include "confdefs.h" $ac_includes_default int @@ -32327,16 +32412,16 @@ int _array_ [1 - 2 * !((sizeof (long)) >= $ac_mid)] } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:32330: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:32415: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:32333: \$? = $ac_status" >&5 + echo "$as_me:32418: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:32336: \"$ac_try\"") >&5 + { (eval echo "$as_me:32421: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:32339: \$? = $ac_status" >&5 + echo "$as_me:32424: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_lo=$ac_mid; break else @@ -32352,7 +32437,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 32355 "configure" +#line 32440 "configure" #include "confdefs.h" $ac_includes_default int @@ -32364,16 +32449,16 @@ int _array_ [1 - 2 * !((sizeof (long)) <= $ac_mid)] } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:32367: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:32452: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:32370: \$? = $ac_status" >&5 + echo "$as_me:32455: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:32373: \"$ac_try\"") >&5 + { (eval echo "$as_me:32458: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:32376: \$? = $ac_status" >&5 + echo "$as_me:32461: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_hi=$ac_mid else @@ -32386,12 +32471,12 @@ done ac_cv_sizeof_long=$ac_lo else if test "$cross_compiling" = yes; then - { { echo "$as_me:32389: error: cannot run test program while cross compiling" >&5 + { { echo "$as_me:32474: 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 32394 "configure" +#line 32479 "configure" #include "confdefs.h" $ac_includes_default int @@ -32407,15 +32492,15 @@ fclose (f); } _ACEOF rm -f "conftest$ac_exeext" -if { (eval echo "$as_me:32410: \"$ac_link\"") >&5 +if { (eval echo "$as_me:32495: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:32413: \$? = $ac_status" >&5 + echo "$as_me:32498: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='"./conftest$ac_exeext"' - { (eval echo "$as_me:32415: \"$ac_try\"") >&5 + { (eval echo "$as_me:32500: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:32418: \$? = $ac_status" >&5 + echo "$as_me:32503: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_sizeof_long=`cat conftest.val` else @@ -32431,7 +32516,7 @@ else ac_cv_sizeof_long=0 fi fi -echo "$as_me:32434: result: $ac_cv_sizeof_long" >&5 +echo "$as_me:32519: 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 @@ -32440,11 +32525,11 @@ EOF if test "${ac_cv_type_long+set}" = set; then cf_cv_sizeof="$ac_cv_sizeof_long" if test "${ac_cv_sizeof_long+set}" != set; then - { echo "$as_me:32443: WARNING: using 4 for sizeof long" >&5 + { echo "$as_me:32528: WARNING: using 4 for sizeof long" >&5 echo "$as_me: WARNING: using 4 for sizeof long" >&2;} ac_cv_sizeof_long=4 elif test "x${ac_cv_sizeof_long}" = x0; then - { echo "$as_me:32447: WARNING: sizeof long not found, using 4" >&5 + { echo "$as_me:32532: WARNING: sizeof long not found, using 4" >&5 echo "$as_me: WARNING: sizeof long not found, using 4" >&2;} ac_cv_sizeof_long=4 fi @@ -32458,13 +32543,13 @@ cf_cv_type=`echo "sizeof_long" | sed y%abcdefghijklmnopqrstuvwxyz./-%ABCDEFGHIJK fi fi -echo "$as_me:32461: checking for off_t" >&5 +echo "$as_me:32546: 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 32467 "configure" +#line 32552 "configure" #include "confdefs.h" $ac_includes_default int @@ -32479,16 +32564,16 @@ if (sizeof (off_t)) } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:32482: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:32567: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:32485: \$? = $ac_status" >&5 + echo "$as_me:32570: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:32488: \"$ac_try\"") >&5 + { (eval echo "$as_me:32573: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:32491: \$? = $ac_status" >&5 + echo "$as_me:32576: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_type_off_t=yes else @@ -32498,10 +32583,10 @@ ac_cv_type_off_t=no fi rm -f "conftest.$ac_objext" "conftest.$ac_ext" fi -echo "$as_me:32501: result: $ac_cv_type_off_t" >&5 +echo "$as_me:32586: result: $ac_cv_type_off_t" >&5 echo "${ECHO_T}$ac_cv_type_off_t" >&6 -echo "$as_me:32504: checking size of off_t" >&5 +echo "$as_me:32589: 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 @@ -32510,7 +32595,7 @@ else if test "$cross_compiling" = yes; then # Depending upon the size, compute the lo and hi bounds. cat >"conftest.$ac_ext" <<_ACEOF -#line 32513 "configure" +#line 32598 "configure" #include "confdefs.h" $ac_includes_default int @@ -32522,21 +32607,21 @@ int _array_ [1 - 2 * !((sizeof (off_t)) >= 0)] } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:32525: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:32610: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:32528: \$? = $ac_status" >&5 + echo "$as_me:32613: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:32531: \"$ac_try\"") >&5 + { (eval echo "$as_me:32616: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:32534: \$? = $ac_status" >&5 + echo "$as_me:32619: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_lo=0 ac_mid=0 while :; do cat >"conftest.$ac_ext" <<_ACEOF -#line 32539 "configure" +#line 32624 "configure" #include "confdefs.h" $ac_includes_default int @@ -32548,16 +32633,16 @@ int _array_ [1 - 2 * !((sizeof (off_t)) <= $ac_mid)] } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:32551: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:32636: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:32554: \$? = $ac_status" >&5 + echo "$as_me:32639: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:32557: \"$ac_try\"") >&5 + { (eval echo "$as_me:32642: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:32560: \$? = $ac_status" >&5 + echo "$as_me:32645: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_hi=$ac_mid; break else @@ -32573,7 +32658,7 @@ cat "conftest.$ac_ext" >&5 ac_hi=-1 ac_mid=-1 while :; do cat >"conftest.$ac_ext" <<_ACEOF -#line 32576 "configure" +#line 32661 "configure" #include "confdefs.h" $ac_includes_default int @@ -32585,16 +32670,16 @@ int _array_ [1 - 2 * !((sizeof (off_t)) >= $ac_mid)] } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:32588: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:32673: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:32591: \$? = $ac_status" >&5 + echo "$as_me:32676: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:32594: \"$ac_try\"") >&5 + { (eval echo "$as_me:32679: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:32597: \$? = $ac_status" >&5 + echo "$as_me:32682: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_lo=$ac_mid; break else @@ -32610,7 +32695,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 32613 "configure" +#line 32698 "configure" #include "confdefs.h" $ac_includes_default int @@ -32622,16 +32707,16 @@ int _array_ [1 - 2 * !((sizeof (off_t)) <= $ac_mid)] } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:32625: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:32710: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:32628: \$? = $ac_status" >&5 + echo "$as_me:32713: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:32631: \"$ac_try\"") >&5 + { (eval echo "$as_me:32716: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:32634: \$? = $ac_status" >&5 + echo "$as_me:32719: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_hi=$ac_mid else @@ -32644,12 +32729,12 @@ done ac_cv_sizeof_off_t=$ac_lo else if test "$cross_compiling" = yes; then - { { echo "$as_me:32647: error: cannot run test program while cross compiling" >&5 + { { echo "$as_me:32732: 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 32652 "configure" +#line 32737 "configure" #include "confdefs.h" $ac_includes_default int @@ -32665,15 +32750,15 @@ fclose (f); } _ACEOF rm -f "conftest$ac_exeext" -if { (eval echo "$as_me:32668: \"$ac_link\"") >&5 +if { (eval echo "$as_me:32753: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:32671: \$? = $ac_status" >&5 + echo "$as_me:32756: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='"./conftest$ac_exeext"' - { (eval echo "$as_me:32673: \"$ac_try\"") >&5 + { (eval echo "$as_me:32758: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:32676: \$? = $ac_status" >&5 + echo "$as_me:32761: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_sizeof_off_t=`cat conftest.val` else @@ -32689,7 +32774,7 @@ else ac_cv_sizeof_off_t=0 fi fi -echo "$as_me:32692: result: $ac_cv_sizeof_off_t" >&5 +echo "$as_me:32777: 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 @@ -32698,11 +32783,11 @@ EOF if test "${ac_cv_type_off_t+set}" = set; then cf_cv_sizeof="$ac_cv_sizeof_off_t" if test "${ac_cv_sizeof_off_t+set}" != set; then - { echo "$as_me:32701: WARNING: using 4 for sizeof off_t" >&5 + { echo "$as_me:32786: WARNING: using 4 for sizeof off_t" >&5 echo "$as_me: WARNING: using 4 for sizeof off_t" >&2;} ac_cv_sizeof_off_t=4 elif test "x${ac_cv_sizeof_off_t}" = x0; then - { echo "$as_me:32705: WARNING: sizeof off_t not found, using 4" >&5 + { echo "$as_me:32790: WARNING: sizeof off_t not found, using 4" >&5 echo "$as_me: WARNING: sizeof off_t not found, using 4" >&2;} ac_cv_sizeof_off_t=4 fi @@ -32716,13 +32801,13 @@ cf_cv_type=`echo "sizeof_off_t" | sed y%abcdefghijklmnopqrstuvwxyz./-%ABCDEFGHIJ fi fi -echo "$as_me:32719: checking for size_t" >&5 +echo "$as_me:32804: 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 32725 "configure" +#line 32810 "configure" #include "confdefs.h" $ac_includes_default int @@ -32737,16 +32822,16 @@ if (sizeof (size_t)) } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:32740: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:32825: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:32743: \$? = $ac_status" >&5 + echo "$as_me:32828: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:32746: \"$ac_try\"") >&5 + { (eval echo "$as_me:32831: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:32749: \$? = $ac_status" >&5 + echo "$as_me:32834: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_type_size_t=yes else @@ -32756,10 +32841,10 @@ ac_cv_type_size_t=no fi rm -f "conftest.$ac_objext" "conftest.$ac_ext" fi -echo "$as_me:32759: result: $ac_cv_type_size_t" >&5 +echo "$as_me:32844: result: $ac_cv_type_size_t" >&5 echo "${ECHO_T}$ac_cv_type_size_t" >&6 -echo "$as_me:32762: checking size of size_t" >&5 +echo "$as_me:32847: checking size of size_t" >&5 echo $ECHO_N "checking size of size_t... $ECHO_C" >&6 if test "${ac_cv_sizeof_size_t+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -32768,7 +32853,7 @@ else if test "$cross_compiling" = yes; then # Depending upon the size, compute the lo and hi bounds. cat >"conftest.$ac_ext" <<_ACEOF -#line 32771 "configure" +#line 32856 "configure" #include "confdefs.h" $ac_includes_default int @@ -32780,21 +32865,21 @@ int _array_ [1 - 2 * !((sizeof (size_t)) >= 0)] } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:32783: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:32868: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:32786: \$? = $ac_status" >&5 + echo "$as_me:32871: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:32789: \"$ac_try\"") >&5 + { (eval echo "$as_me:32874: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:32792: \$? = $ac_status" >&5 + echo "$as_me:32877: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_lo=0 ac_mid=0 while :; do cat >"conftest.$ac_ext" <<_ACEOF -#line 32797 "configure" +#line 32882 "configure" #include "confdefs.h" $ac_includes_default int @@ -32806,16 +32891,16 @@ int _array_ [1 - 2 * !((sizeof (size_t)) <= $ac_mid)] } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:32809: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:32894: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:32812: \$? = $ac_status" >&5 + echo "$as_me:32897: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:32815: \"$ac_try\"") >&5 + { (eval echo "$as_me:32900: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:32818: \$? = $ac_status" >&5 + echo "$as_me:32903: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_hi=$ac_mid; break else @@ -32831,7 +32916,7 @@ cat "conftest.$ac_ext" >&5 ac_hi=-1 ac_mid=-1 while :; do cat >"conftest.$ac_ext" <<_ACEOF -#line 32834 "configure" +#line 32919 "configure" #include "confdefs.h" $ac_includes_default int @@ -32843,16 +32928,16 @@ int _array_ [1 - 2 * !((sizeof (size_t)) >= $ac_mid)] } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:32846: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:32931: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:32849: \$? = $ac_status" >&5 + echo "$as_me:32934: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:32852: \"$ac_try\"") >&5 + { (eval echo "$as_me:32937: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:32855: \$? = $ac_status" >&5 + echo "$as_me:32940: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_lo=$ac_mid; break else @@ -32868,7 +32953,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 32871 "configure" +#line 32956 "configure" #include "confdefs.h" $ac_includes_default int @@ -32880,16 +32965,16 @@ int _array_ [1 - 2 * !((sizeof (size_t)) <= $ac_mid)] } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:32883: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:32968: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:32886: \$? = $ac_status" >&5 + echo "$as_me:32971: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:32889: \"$ac_try\"") >&5 + { (eval echo "$as_me:32974: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:32892: \$? = $ac_status" >&5 + echo "$as_me:32977: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_hi=$ac_mid else @@ -32902,12 +32987,12 @@ done ac_cv_sizeof_size_t=$ac_lo else if test "$cross_compiling" = yes; then - { { echo "$as_me:32905: error: cannot run test program while cross compiling" >&5 + { { echo "$as_me:32990: 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 32910 "configure" +#line 32995 "configure" #include "confdefs.h" $ac_includes_default int @@ -32923,15 +33008,15 @@ fclose (f); } _ACEOF rm -f "conftest$ac_exeext" -if { (eval echo "$as_me:32926: \"$ac_link\"") >&5 +if { (eval echo "$as_me:33011: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:32929: \$? = $ac_status" >&5 + echo "$as_me:33014: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='"./conftest$ac_exeext"' - { (eval echo "$as_me:32931: \"$ac_try\"") >&5 + { (eval echo "$as_me:33016: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:32934: \$? = $ac_status" >&5 + echo "$as_me:33019: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_sizeof_size_t=`cat conftest.val` else @@ -32947,7 +33032,7 @@ else ac_cv_sizeof_size_t=0 fi fi -echo "$as_me:32950: result: $ac_cv_sizeof_size_t" >&5 +echo "$as_me:33035: result: $ac_cv_sizeof_size_t" >&5 echo "${ECHO_T}$ac_cv_sizeof_size_t" >&6 cat >>confdefs.h <<EOF #define SIZEOF_SIZE_T $ac_cv_sizeof_size_t @@ -32956,11 +33041,11 @@ EOF if test "${ac_cv_type_size_t+set}" = set; then cf_cv_sizeof="$ac_cv_sizeof_size_t" if test "${ac_cv_sizeof_size_t+set}" != set; then - { echo "$as_me:32959: WARNING: using 4 for sizeof size_t" >&5 + { echo "$as_me:33044: WARNING: using 4 for sizeof size_t" >&5 echo "$as_me: WARNING: using 4 for sizeof size_t" >&2;} ac_cv_sizeof_size_t=4 elif test "x${ac_cv_sizeof_size_t}" = x0; then - { echo "$as_me:32963: WARNING: sizeof size_t not found, using 4" >&5 + { echo "$as_me:33048: WARNING: sizeof size_t not found, using 4" >&5 echo "$as_me: WARNING: sizeof size_t not found, using 4" >&2;} ac_cv_sizeof_size_t=4 fi @@ -32974,13 +33059,13 @@ cf_cv_type=`echo "sizeof_size_t" | sed y%abcdefghijklmnopqrstuvwxyz./-%ABCDEFGHI fi fi -echo "$as_me:32977: checking for time_t" >&5 +echo "$as_me:33062: 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 32983 "configure" +#line 33068 "configure" #include "confdefs.h" $ac_includes_default int @@ -32995,16 +33080,16 @@ if (sizeof (time_t)) } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:32998: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:33083: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:33001: \$? = $ac_status" >&5 + echo "$as_me:33086: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:33004: \"$ac_try\"") >&5 + { (eval echo "$as_me:33089: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:33007: \$? = $ac_status" >&5 + echo "$as_me:33092: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_type_time_t=yes else @@ -33014,10 +33099,10 @@ ac_cv_type_time_t=no fi rm -f "conftest.$ac_objext" "conftest.$ac_ext" fi -echo "$as_me:33017: result: $ac_cv_type_time_t" >&5 +echo "$as_me:33102: result: $ac_cv_type_time_t" >&5 echo "${ECHO_T}$ac_cv_type_time_t" >&6 -echo "$as_me:33020: checking size of time_t" >&5 +echo "$as_me:33105: 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 @@ -33026,7 +33111,7 @@ else if test "$cross_compiling" = yes; then # Depending upon the size, compute the lo and hi bounds. cat >"conftest.$ac_ext" <<_ACEOF -#line 33029 "configure" +#line 33114 "configure" #include "confdefs.h" $ac_includes_default int @@ -33038,21 +33123,21 @@ int _array_ [1 - 2 * !((sizeof (time_t)) >= 0)] } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:33041: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:33126: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:33044: \$? = $ac_status" >&5 + echo "$as_me:33129: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:33047: \"$ac_try\"") >&5 + { (eval echo "$as_me:33132: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:33050: \$? = $ac_status" >&5 + echo "$as_me:33135: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_lo=0 ac_mid=0 while :; do cat >"conftest.$ac_ext" <<_ACEOF -#line 33055 "configure" +#line 33140 "configure" #include "confdefs.h" $ac_includes_default int @@ -33064,16 +33149,16 @@ int _array_ [1 - 2 * !((sizeof (time_t)) <= $ac_mid)] } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:33067: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:33152: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:33070: \$? = $ac_status" >&5 + echo "$as_me:33155: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:33073: \"$ac_try\"") >&5 + { (eval echo "$as_me:33158: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:33076: \$? = $ac_status" >&5 + echo "$as_me:33161: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_hi=$ac_mid; break else @@ -33089,7 +33174,7 @@ cat "conftest.$ac_ext" >&5 ac_hi=-1 ac_mid=-1 while :; do cat >"conftest.$ac_ext" <<_ACEOF -#line 33092 "configure" +#line 33177 "configure" #include "confdefs.h" $ac_includes_default int @@ -33101,16 +33186,16 @@ int _array_ [1 - 2 * !((sizeof (time_t)) >= $ac_mid)] } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:33104: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:33189: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:33107: \$? = $ac_status" >&5 + echo "$as_me:33192: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:33110: \"$ac_try\"") >&5 + { (eval echo "$as_me:33195: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:33113: \$? = $ac_status" >&5 + echo "$as_me:33198: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_lo=$ac_mid; break else @@ -33126,7 +33211,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 33129 "configure" +#line 33214 "configure" #include "confdefs.h" $ac_includes_default int @@ -33138,16 +33223,16 @@ int _array_ [1 - 2 * !((sizeof (time_t)) <= $ac_mid)] } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:33141: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:33226: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:33144: \$? = $ac_status" >&5 + echo "$as_me:33229: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:33147: \"$ac_try\"") >&5 + { (eval echo "$as_me:33232: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:33150: \$? = $ac_status" >&5 + echo "$as_me:33235: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_hi=$ac_mid else @@ -33160,12 +33245,12 @@ done ac_cv_sizeof_time_t=$ac_lo else if test "$cross_compiling" = yes; then - { { echo "$as_me:33163: error: cannot run test program while cross compiling" >&5 + { { echo "$as_me:33248: 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 33168 "configure" +#line 33253 "configure" #include "confdefs.h" $ac_includes_default int @@ -33181,15 +33266,15 @@ fclose (f); } _ACEOF rm -f "conftest$ac_exeext" -if { (eval echo "$as_me:33184: \"$ac_link\"") >&5 +if { (eval echo "$as_me:33269: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:33187: \$? = $ac_status" >&5 + echo "$as_me:33272: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='"./conftest$ac_exeext"' - { (eval echo "$as_me:33189: \"$ac_try\"") >&5 + { (eval echo "$as_me:33274: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:33192: \$? = $ac_status" >&5 + echo "$as_me:33277: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_sizeof_time_t=`cat conftest.val` else @@ -33205,7 +33290,7 @@ else ac_cv_sizeof_time_t=0 fi fi -echo "$as_me:33208: result: $ac_cv_sizeof_time_t" >&5 +echo "$as_me:33293: 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 @@ -33214,11 +33299,11 @@ EOF if test "${ac_cv_type_time_t+set}" = set; then cf_cv_sizeof="$ac_cv_sizeof_time_t" if test "${ac_cv_sizeof_time_t+set}" != set; then - { echo "$as_me:33217: WARNING: using 4 for sizeof time_t" >&5 + { echo "$as_me:33302: WARNING: using 4 for sizeof time_t" >&5 echo "$as_me: WARNING: using 4 for sizeof time_t" >&2;} ac_cv_sizeof_time_t=4 elif test "x${ac_cv_sizeof_time_t}" = x0; then - { echo "$as_me:33221: WARNING: sizeof time_t not found, using 4" >&5 + { echo "$as_me:33306: WARNING: sizeof time_t not found, using 4" >&5 echo "$as_me: WARNING: sizeof time_t not found, using 4" >&2;} ac_cv_sizeof_time_t=4 fi @@ -33232,13 +33317,13 @@ cf_cv_type=`echo "sizeof_time_t" | sed y%abcdefghijklmnopqrstuvwxyz./-%ABCDEFGHI fi fi -echo "$as_me:33235: checking for intptr_t" >&5 +echo "$as_me:33320: checking for intptr_t" >&5 echo $ECHO_N "checking for intptr_t... $ECHO_C" >&6 if test "${ac_cv_type_intptr_t+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >"conftest.$ac_ext" <<_ACEOF -#line 33241 "configure" +#line 33326 "configure" #include "confdefs.h" $ac_includes_default int @@ -33253,16 +33338,16 @@ if (sizeof (intptr_t)) } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:33256: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:33341: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:33259: \$? = $ac_status" >&5 + echo "$as_me:33344: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:33262: \"$ac_try\"") >&5 + { (eval echo "$as_me:33347: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:33265: \$? = $ac_status" >&5 + echo "$as_me:33350: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_type_intptr_t=yes else @@ -33272,7 +33357,7 @@ ac_cv_type_intptr_t=no fi rm -f "conftest.$ac_objext" "conftest.$ac_ext" fi -echo "$as_me:33275: result: $ac_cv_type_intptr_t" >&5 +echo "$as_me:33360: result: $ac_cv_type_intptr_t" >&5 echo "${ECHO_T}$ac_cv_type_intptr_t" >&6 if test "$ac_cv_type_intptr_t" = yes; then : @@ -33286,13 +33371,13 @@ fi # The Ultrix 4.2 mips builtin alloca declared by alloca.h only works # for constant arguments. Useless! -echo "$as_me:33289: checking for working alloca.h" >&5 +echo "$as_me:33374: 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 33295 "configure" +#line 33380 "configure" #include "confdefs.h" #include <alloca.h> int @@ -33304,16 +33389,16 @@ char *p = (char *) alloca (2 * sizeof (int)); } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:33307: \"$ac_link\"") >&5 +if { (eval echo "$as_me:33392: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:33310: \$? = $ac_status" >&5 + echo "$as_me:33395: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:33313: \"$ac_try\"") >&5 + { (eval echo "$as_me:33398: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:33316: \$? = $ac_status" >&5 + echo "$as_me:33401: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_working_alloca_h=yes else @@ -33323,7 +33408,7 @@ ac_cv_working_alloca_h=no fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:33326: result: $ac_cv_working_alloca_h" >&5 +echo "$as_me:33411: 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 @@ -33333,13 +33418,13 @@ EOF fi -echo "$as_me:33336: checking for alloca" >&5 +echo "$as_me:33421: 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 33342 "configure" +#line 33427 "configure" #include "confdefs.h" #ifdef __GNUC__ # define alloca __builtin_alloca @@ -33371,16 +33456,16 @@ char *p = (char *) alloca (1); } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:33374: \"$ac_link\"") >&5 +if { (eval echo "$as_me:33459: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:33377: \$? = $ac_status" >&5 + echo "$as_me:33462: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:33380: \"$ac_try\"") >&5 + { (eval echo "$as_me:33465: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:33383: \$? = $ac_status" >&5 + echo "$as_me:33468: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_func_alloca_works=yes else @@ -33390,7 +33475,7 @@ ac_cv_func_alloca_works=no fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:33393: result: $ac_cv_func_alloca_works" >&5 +echo "$as_me:33478: 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 @@ -33411,13 +33496,13 @@ cat >>confdefs.h <<\EOF #define C_ALLOCA 1 EOF -echo "$as_me:33414: checking whether \`alloca.c' needs Cray hooks" >&5 +echo "$as_me:33499: 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 33420 "configure" +#line 33505 "configure" #include "confdefs.h" #if defined(CRAY) && ! defined(CRAY2) webecray @@ -33435,18 +33520,18 @@ fi rm -rf conftest* fi -echo "$as_me:33438: result: $ac_cv_os_cray" >&5 +echo "$as_me:33523: 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:33443: checking for $ac_func" >&5 +echo "$as_me:33528: 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 33449 "configure" +#line 33534 "configure" #include "confdefs.h" #define $ac_func autoconf_temporary #include <limits.h> /* least-intrusive standard header which defines gcc2 __stub macros */ @@ -33477,16 +33562,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:33480: \"$ac_link\"") >&5 +if { (eval echo "$as_me:33565: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:33483: \$? = $ac_status" >&5 + echo "$as_me:33568: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:33486: \"$ac_try\"") >&5 + { (eval echo "$as_me:33571: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:33489: \$? = $ac_status" >&5 + echo "$as_me:33574: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then eval "$as_ac_var=yes" else @@ -33496,7 +33581,7 @@ eval "$as_ac_var=no" fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:33499: result: `eval echo '${'"$as_ac_var"'}'`" >&5 +echo "$as_me:33584: 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 @@ -33510,7 +33595,7 @@ fi done fi -echo "$as_me:33513: checking stack direction for C alloca" >&5 +echo "$as_me:33598: 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 @@ -33519,7 +33604,7 @@ else ac_cv_c_stack_direction=0 else cat >"conftest.$ac_ext" <<_ACEOF -#line 33522 "configure" +#line 33607 "configure" #include "confdefs.h" int find_stack_direction (void) @@ -33542,15 +33627,15 @@ main (void) } _ACEOF rm -f "conftest$ac_exeext" -if { (eval echo "$as_me:33545: \"$ac_link\"") >&5 +if { (eval echo "$as_me:33630: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:33548: \$? = $ac_status" >&5 + echo "$as_me:33633: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='"./conftest$ac_exeext"' - { (eval echo "$as_me:33550: \"$ac_try\"") >&5 + { (eval echo "$as_me:33635: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:33553: \$? = $ac_status" >&5 + echo "$as_me:33638: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_c_stack_direction=1 else @@ -33562,7 +33647,7 @@ fi rm -f core ./core.* ./*.core "conftest$ac_exeext" "conftest.$ac_objext" "conftest.$ac_ext" fi fi -echo "$as_me:33565: result: $ac_cv_c_stack_direction" >&5 +echo "$as_me:33650: result: $ac_cv_c_stack_direction" >&5 echo "${ECHO_T}$ac_cv_c_stack_direction" >&6 cat >>confdefs.h <<EOF @@ -33574,23 +33659,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:33577: checking for $ac_header" >&5 +echo "$as_me:33662: 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 33583 "configure" +#line 33668 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:33587: \"$ac_cpp "conftest.$ac_ext"\"") >&5 +if { (eval echo "$as_me:33672: \"$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:33593: \$? = $ac_status" >&5 + echo "$as_me:33678: \$? = $ac_status" >&5 (exit "$ac_status"); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -33609,7 +33694,7 @@ else fi rm -f conftest.err "conftest.$ac_ext" fi -echo "$as_me:33612: result: `eval echo '${'"$as_ac_Header"'}'`" >&5 +echo "$as_me:33697: 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 @@ -33622,13 +33707,13 @@ done for ac_func in fork vfork do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` -echo "$as_me:33625: checking for $ac_func" >&5 +echo "$as_me:33710: 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 33631 "configure" +#line 33716 "configure" #include "confdefs.h" #define $ac_func autoconf_temporary #include <limits.h> /* least-intrusive standard header which defines gcc2 __stub macros */ @@ -33659,16 +33744,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:33662: \"$ac_link\"") >&5 +if { (eval echo "$as_me:33747: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:33665: \$? = $ac_status" >&5 + echo "$as_me:33750: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:33668: \"$ac_try\"") >&5 + { (eval echo "$as_me:33753: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:33671: \$? = $ac_status" >&5 + echo "$as_me:33756: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then eval "$as_ac_var=yes" else @@ -33678,7 +33763,7 @@ eval "$as_ac_var=no" fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:33681: result: `eval echo '${'"$as_ac_var"'}'`" >&5 +echo "$as_me:33766: 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 @@ -33690,7 +33775,7 @@ done ac_cv_func_fork_works=$ac_cv_func_fork if test "x$ac_cv_func_fork" = xyes; then - echo "$as_me:33693: checking for working fork" >&5 + echo "$as_me:33778: 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 @@ -33713,15 +33798,15 @@ else } _ACEOF rm -f "conftest$ac_exeext" -if { (eval echo "$as_me:33716: \"$ac_link\"") >&5 +if { (eval echo "$as_me:33801: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:33719: \$? = $ac_status" >&5 + echo "$as_me:33804: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='"./conftest$ac_exeext"' - { (eval echo "$as_me:33721: \"$ac_try\"") >&5 + { (eval echo "$as_me:33806: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:33724: \$? = $ac_status" >&5 + echo "$as_me:33809: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_func_fork_works=yes else @@ -33733,7 +33818,7 @@ fi rm -f core ./core.* ./*.core "conftest$ac_exeext" "conftest.$ac_objext" "conftest.$ac_ext" fi fi -echo "$as_me:33736: result: $ac_cv_func_fork_works" >&5 +echo "$as_me:33821: result: $ac_cv_func_fork_works" >&5 echo "${ECHO_T}$ac_cv_func_fork_works" >&6 fi @@ -33747,12 +33832,12 @@ if test "x$ac_cv_func_fork_works" = xcross; then ac_cv_func_fork_works=yes ;; esac - { echo "$as_me:33750: WARNING: CROSS: Result $ac_cv_func_fork_works guessed due to cross-compiling." >&5 + { echo "$as_me:33835: 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:33755: checking for working vfork" >&5 + echo "$as_me:33840: 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 @@ -33761,7 +33846,7 @@ else ac_cv_func_vfork_works=cross else cat >"conftest.$ac_ext" <<_ACEOF -#line 33764 "configure" +#line 33849 "configure" #include "confdefs.h" /* Thanks to Paul Eggert for this test. */ #include <stdio.h> @@ -33858,15 +33943,15 @@ main (void) } _ACEOF rm -f "conftest$ac_exeext" -if { (eval echo "$as_me:33861: \"$ac_link\"") >&5 +if { (eval echo "$as_me:33946: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:33864: \$? = $ac_status" >&5 + echo "$as_me:33949: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='"./conftest$ac_exeext"' - { (eval echo "$as_me:33866: \"$ac_try\"") >&5 + { (eval echo "$as_me:33951: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:33869: \$? = $ac_status" >&5 + echo "$as_me:33954: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_func_vfork_works=yes else @@ -33878,13 +33963,13 @@ fi rm -f core ./core.* ./*.core "conftest$ac_exeext" "conftest.$ac_objext" "conftest.$ac_ext" fi fi -echo "$as_me:33881: result: $ac_cv_func_vfork_works" >&5 +echo "$as_me:33966: 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:33887: WARNING: CROSS: Result $ac_cv_func_vfork_works guessed due to cross-compiling." >&5 + { echo "$as_me:33972: 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 @@ -33909,14 +33994,14 @@ EOF fi -echo "$as_me:33912: checking if we should use fcntl or ioctl" >&5 +echo "$as_me:33997: 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 33919 "configure" +#line 34004 "configure" #include "confdefs.h" #include <sys/types.h> @@ -33933,16 +34018,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:33936: \"$ac_link\"") >&5 +if { (eval echo "$as_me:34021: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:33939: \$? = $ac_status" >&5 + echo "$as_me:34024: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:33942: \"$ac_try\"") >&5 + { (eval echo "$as_me:34027: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:33945: \$? = $ac_status" >&5 + echo "$as_me:34030: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_fionbio=ioctl else @@ -33950,7 +34035,7 @@ else cat "conftest.$ac_ext" >&5 cat >"conftest.$ac_ext" <<_ACEOF -#line 33953 "configure" +#line 34038 "configure" #include "confdefs.h" #include <sys/types.h> @@ -33972,16 +34057,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:33975: \"$ac_link\"") >&5 +if { (eval echo "$as_me:34060: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:33978: \$? = $ac_status" >&5 + echo "$as_me:34063: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:33981: \"$ac_try\"") >&5 + { (eval echo "$as_me:34066: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:33984: \$? = $ac_status" >&5 + echo "$as_me:34069: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_fionbio=fcntl else @@ -33994,21 +34079,21 @@ fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:33997: result: $cf_cv_fionbio" >&5 +echo "$as_me:34082: 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:34004: checking for broken/missing definition of remove" >&5 +echo "$as_me:34089: 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 34011 "configure" +#line 34096 "configure" #include "confdefs.h" #include <stdio.h> int @@ -34020,23 +34105,23 @@ remove("dummy") } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:34023: \"$ac_link\"") >&5 +if { (eval echo "$as_me:34108: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:34026: \$? = $ac_status" >&5 + echo "$as_me:34111: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:34029: \"$ac_try\"") >&5 + { (eval echo "$as_me:34114: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:34032: \$? = $ac_status" >&5 + echo "$as_me:34117: \$? = $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 34039 "configure" +#line 34124 "configure" #include "confdefs.h" #include <stdio.h> int __unlink(name) { return unlink(name); } @@ -34049,16 +34134,16 @@ remove("dummy") } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:34052: \"$ac_link\"") >&5 +if { (eval echo "$as_me:34137: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:34055: \$? = $ac_status" >&5 + echo "$as_me:34140: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:34058: \"$ac_try\"") >&5 + { (eval echo "$as_me:34143: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:34061: \$? = $ac_status" >&5 + echo "$as_me:34146: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_baddef_remove=yes else @@ -34073,21 +34158,21 @@ rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:34076: result: $cf_cv_baddef_remove" >&5 +echo "$as_me:34161: 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:34083: checking for lstat" >&5 +echo "$as_me:34168: 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 34090 "configure" +#line 34175 "configure" #include "confdefs.h" #include <sys/types.h> @@ -34101,16 +34186,16 @@ lstat(".", (struct stat *)0) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:34104: \"$ac_link\"") >&5 +if { (eval echo "$as_me:34189: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:34107: \$? = $ac_status" >&5 + echo "$as_me:34192: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:34110: \"$ac_try\"") >&5 + { (eval echo "$as_me:34195: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:34113: \$? = $ac_status" >&5 + echo "$as_me:34198: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_func_lstat=yes else @@ -34122,7 +34207,7 @@ rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:34125: result: $ac_cv_func_lstat " >&5 +echo "$as_me:34210: result: $ac_cv_func_lstat " >&5 echo "${ECHO_T}$ac_cv_func_lstat " >&6 if test "$ac_cv_func_lstat" = yes; then @@ -34132,13 +34217,13 @@ EOF fi -echo "$as_me:34135: checking for vasprintf" >&5 +echo "$as_me:34220: checking for vasprintf" >&5 echo $ECHO_N "checking for vasprintf... $ECHO_C" >&6 if test "${ac_cv_func_vasprintf+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >"conftest.$ac_ext" <<_ACEOF -#line 34141 "configure" +#line 34226 "configure" #include "confdefs.h" #define vasprintf autoconf_temporary #include <limits.h> /* least-intrusive standard header which defines gcc2 __stub macros */ @@ -34169,16 +34254,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:34172: \"$ac_link\"") >&5 +if { (eval echo "$as_me:34257: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:34175: \$? = $ac_status" >&5 + echo "$as_me:34260: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:34178: \"$ac_try\"") >&5 + { (eval echo "$as_me:34263: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:34181: \$? = $ac_status" >&5 + echo "$as_me:34266: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_func_vasprintf=yes else @@ -34188,7 +34273,7 @@ ac_cv_func_vasprintf=no fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:34191: result: $ac_cv_func_vasprintf" >&5 +echo "$as_me:34276: result: $ac_cv_func_vasprintf" >&5 echo "${ECHO_T}$ac_cv_func_vasprintf" >&6 if test "$ac_cv_func_vasprintf" = yes; then @@ -34196,10 +34281,10 @@ cat >>confdefs.h <<\EOF #define HAVE_VASPRINTF 1 EOF - echo "$as_me:34199: checking if vasprintf requires workaround" >&5 + echo "$as_me:34284: checking if vasprintf requires workaround" >&5 echo $ECHO_N "checking if vasprintf requires workaround... $ECHO_C" >&6 cat >"conftest.$ac_ext" <<_ACEOF -#line 34202 "configure" +#line 34287 "configure" #include "confdefs.h" #include <stdio.h> @@ -34215,19 +34300,19 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:34218: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:34303: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:34221: \$? = $ac_status" >&5 + echo "$as_me:34306: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:34224: \"$ac_try\"") >&5 + { (eval echo "$as_me:34309: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:34227: \$? = $ac_status" >&5 + echo "$as_me:34312: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then - echo "$as_me:34230: result: no" >&5 + echo "$as_me:34315: result: no" >&5 echo "${ECHO_T}no" >&6 else @@ -34235,7 +34320,7 @@ else cat "conftest.$ac_ext" >&5 cat >"conftest.$ac_ext" <<_ACEOF -#line 34238 "configure" +#line 34323 "configure" #include "confdefs.h" #ifndef _GNU_SOURCE @@ -34254,19 +34339,19 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:34257: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:34342: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:34260: \$? = $ac_status" >&5 + echo "$as_me:34345: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:34263: \"$ac_try\"") >&5 + { (eval echo "$as_me:34348: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:34266: \$? = $ac_status" >&5 + echo "$as_me:34351: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then - echo "$as_me:34269: result: yes" >&5 + echo "$as_me:34354: result: yes" >&5 echo "${ECHO_T}yes" >&6 test -n "$CPPFLAGS" && CPPFLAGS="$CPPFLAGS " @@ -34276,7 +34361,7 @@ else echo "$as_me: failed program was:" >&5 cat "conftest.$ac_ext" >&5 - echo "$as_me:34279: result: unknown" >&5 + echo "$as_me:34364: result: unknown" >&5 echo "${ECHO_T}unknown" >&6 fi @@ -34311,13 +34396,13 @@ for ac_func in \ do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` -echo "$as_me:34314: checking for $ac_func" >&5 +echo "$as_me:34399: 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 34320 "configure" +#line 34405 "configure" #include "confdefs.h" #define $ac_func autoconf_temporary #include <limits.h> /* least-intrusive standard header which defines gcc2 __stub macros */ @@ -34348,16 +34433,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:34351: \"$ac_link\"") >&5 +if { (eval echo "$as_me:34436: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:34354: \$? = $ac_status" >&5 + echo "$as_me:34439: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:34357: \"$ac_try\"") >&5 + { (eval echo "$as_me:34442: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:34360: \$? = $ac_status" >&5 + echo "$as_me:34445: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then eval "$as_ac_var=yes" else @@ -34367,7 +34452,7 @@ eval "$as_ac_var=no" fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:34370: result: `eval echo '${'"$as_ac_var"'}'`" >&5 +echo "$as_me:34455: 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 @@ -34384,13 +34469,13 @@ for ac_func in \ do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` -echo "$as_me:34387: checking for $ac_func" >&5 +echo "$as_me:34472: 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 34393 "configure" +#line 34478 "configure" #include "confdefs.h" #define $ac_func autoconf_temporary #include <limits.h> /* least-intrusive standard header which defines gcc2 __stub macros */ @@ -34421,16 +34506,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:34424: \"$ac_link\"") >&5 +if { (eval echo "$as_me:34509: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:34427: \$? = $ac_status" >&5 + echo "$as_me:34512: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:34430: \"$ac_try\"") >&5 + { (eval echo "$as_me:34515: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:34433: \$? = $ac_status" >&5 + echo "$as_me:34518: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then eval "$as_ac_var=yes" else @@ -34440,7 +34525,7 @@ eval "$as_ac_var=no" fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:34443: result: `eval echo '${'"$as_ac_var"'}'`" >&5 +echo "$as_me:34528: 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 @@ -34452,7 +34537,7 @@ else fi done -echo "$as_me:34455: checking for random-integer functions" >&5 +echo "$as_me:34540: 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 @@ -34472,7 +34557,7 @@ do esac cat >"conftest.$ac_ext" <<_ACEOF -#line 34475 "configure" +#line 34560 "configure" #include "confdefs.h" #ifdef HAVE_STDLIB_H @@ -34491,16 +34576,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:34494: \"$ac_link\"") >&5 +if { (eval echo "$as_me:34579: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:34497: \$? = $ac_status" >&5 + echo "$as_me:34582: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:34500: \"$ac_try\"") >&5 + { (eval echo "$as_me:34585: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:34503: \$? = $ac_status" >&5 + echo "$as_me:34588: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_srand_func=$cf_func break @@ -34512,10 +34597,10 @@ rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" done fi -echo "$as_me:34515: result: $cf_cv_srand_func" >&5 +echo "$as_me:34600: 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:34518: checking for range of random-integers" >&5 + echo "$as_me:34603: 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 @@ -34536,7 +34621,7 @@ else ;; esac cat >"conftest.$ac_ext" <<_ACEOF -#line 34539 "configure" +#line 34624 "configure" #include "confdefs.h" #ifdef HAVE_STDLIB_H @@ -34555,16 +34640,16 @@ long x = $cf_cv_rand_max; (void)x } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:34558: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:34643: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:34561: \$? = $ac_status" >&5 + echo "$as_me:34646: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:34564: \"$ac_try\"") >&5 + { (eval echo "$as_me:34649: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:34567: \$? = $ac_status" >&5 + echo "$as_me:34652: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then : else @@ -34575,15 +34660,15 @@ fi rm -f "conftest.$ac_objext" "conftest.$ac_ext" fi -echo "$as_me:34578: result: $cf_cv_rand_max" >&5 +echo "$as_me:34663: result: $cf_cv_rand_max" >&5 echo "${ECHO_T}$cf_cv_rand_max" >&6 case "$cf_cv_srand_func" in (*/arc4random) - echo "$as_me:34583: checking if <bsd/stdlib.h> should be included" >&5 + echo "$as_me:34668: checking if <bsd/stdlib.h> should be included" >&5 echo $ECHO_N "checking if <bsd/stdlib.h> should be included... $ECHO_C" >&6 cat >"conftest.$ac_ext" <<_ACEOF -#line 34586 "configure" +#line 34671 "configure" #include "confdefs.h" #include <bsd/stdlib.h> int @@ -34596,23 +34681,23 @@ void *arc4random(int); } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:34599: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:34684: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:34602: \$? = $ac_status" >&5 + echo "$as_me:34687: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:34605: \"$ac_try\"") >&5 + { (eval echo "$as_me:34690: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:34608: \$? = $ac_status" >&5 + echo "$as_me:34693: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_bsd_stdlib_h=no else echo "$as_me: failed program was:" >&5 cat "conftest.$ac_ext" >&5 cat >"conftest.$ac_ext" <<_ACEOF -#line 34615 "configure" +#line 34700 "configure" #include "confdefs.h" #include <bsd/stdlib.h> int @@ -34624,16 +34709,16 @@ unsigned x = arc4random(); (void)x } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:34627: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:34712: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:34630: \$? = $ac_status" >&5 + echo "$as_me:34715: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:34633: \"$ac_try\"") >&5 + { (eval echo "$as_me:34718: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:34636: \$? = $ac_status" >&5 + echo "$as_me:34721: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_bsd_stdlib_h=yes else @@ -34644,7 +34729,7 @@ fi rm -f "conftest.$ac_objext" "conftest.$ac_ext" fi rm -f "conftest.$ac_objext" "conftest.$ac_ext" - echo "$as_me:34647: result: $cf_bsd_stdlib_h" >&5 + echo "$as_me:34732: result: $cf_bsd_stdlib_h" >&5 echo "${ECHO_T}$cf_bsd_stdlib_h" >&6 if test "$cf_bsd_stdlib_h" = yes then @@ -34654,10 +34739,10 @@ cat >>confdefs.h <<\EOF EOF else - echo "$as_me:34657: checking if <bsd/random.h> should be included" >&5 + echo "$as_me:34742: checking if <bsd/random.h> should be included" >&5 echo $ECHO_N "checking if <bsd/random.h> should be included... $ECHO_C" >&6 cat >"conftest.$ac_ext" <<_ACEOF -#line 34660 "configure" +#line 34745 "configure" #include "confdefs.h" #include <bsd/random.h> int @@ -34670,23 +34755,23 @@ void *arc4random(int); } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:34673: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:34758: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:34676: \$? = $ac_status" >&5 + echo "$as_me:34761: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:34679: \"$ac_try\"") >&5 + { (eval echo "$as_me:34764: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:34682: \$? = $ac_status" >&5 + echo "$as_me:34767: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_bsd_random_h=no else echo "$as_me: failed program was:" >&5 cat "conftest.$ac_ext" >&5 cat >"conftest.$ac_ext" <<_ACEOF -#line 34689 "configure" +#line 34774 "configure" #include "confdefs.h" #include <bsd/random.h> int @@ -34698,16 +34783,16 @@ unsigned x = arc4random(); (void)x } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:34701: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:34786: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:34704: \$? = $ac_status" >&5 + echo "$as_me:34789: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:34707: \"$ac_try\"") >&5 + { (eval echo "$as_me:34792: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:34710: \$? = $ac_status" >&5 + echo "$as_me:34795: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_bsd_random_h=yes else @@ -34718,7 +34803,7 @@ fi rm -f "conftest.$ac_objext" "conftest.$ac_ext" fi rm -f "conftest.$ac_objext" "conftest.$ac_ext" - echo "$as_me:34721: result: $cf_bsd_random_h" >&5 + echo "$as_me:34806: result: $cf_bsd_random_h" >&5 echo "${ECHO_T}$cf_bsd_random_h" >&6 if test "$cf_bsd_random_h" = yes then @@ -34728,7 +34813,7 @@ cat >>confdefs.h <<\EOF EOF else - { echo "$as_me:34731: WARNING: no header file found for arc4random" >&5 + { echo "$as_me:34816: WARNING: no header file found for arc4random" >&5 echo "$as_me: WARNING: no header file found for arc4random" >&2;} fi fi @@ -34763,13 +34848,13 @@ fi for ac_func in sleep do -echo "$as_me:34766: checking for $ac_func declaration" >&5 +echo "$as_me:34851: 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 34772 "configure" +#line 34857 "configure" #include "confdefs.h" #ifdef HAVE_STDLIB_H @@ -34790,20 +34875,20 @@ extern int $ac_func(); } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:34793: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:34878: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:34796: \$? = $ac_status" >&5 + echo "$as_me:34881: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:34799: \"$ac_try\"") >&5 + { (eval echo "$as_me:34884: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:34802: \$? = $ac_status" >&5 + echo "$as_me:34887: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cat >"conftest.$ac_ext" <<_ACEOF -#line 34806 "configure" +#line 34891 "configure" #include "confdefs.h" #ifdef HAVE_STDLIB_H @@ -34824,16 +34909,16 @@ int (*p)() = $ac_func; } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:34827: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:34912: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:34830: \$? = $ac_status" >&5 + echo "$as_me:34915: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:34833: \"$ac_try\"") >&5 + { (eval echo "$as_me:34918: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:34836: \$? = $ac_status" >&5 + echo "$as_me:34921: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then eval "ac_cv_func_decl_$ac_func=yes" @@ -34854,11 +34939,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:34857: result: yes" >&5 + echo "$as_me:34942: result: yes" >&5 echo "${ECHO_T}yes" >&6 : else - echo "$as_me:34861: result: no" >&5 + echo "$as_me:34946: result: no" >&5 echo "${ECHO_T}no" >&6 ac_tr_func=`echo "DECL_$ac_func" | sed y%abcdefghijklmnopqrstuvwxyz./-%ABCDEFGHIJKLMNOPQRSTUVWXYZ___%` @@ -34873,13 +34958,13 @@ done for ac_func in strstr do -echo "$as_me:34876: checking for $ac_func declaration" >&5 +echo "$as_me:34961: 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 34882 "configure" +#line 34967 "configure" #include "confdefs.h" #include <string.h> int @@ -34893,20 +34978,20 @@ extern int $ac_func(); } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:34896: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:34981: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:34899: \$? = $ac_status" >&5 + echo "$as_me:34984: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:34902: \"$ac_try\"") >&5 + { (eval echo "$as_me:34987: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:34905: \$? = $ac_status" >&5 + echo "$as_me:34990: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cat >"conftest.$ac_ext" <<_ACEOF -#line 34909 "configure" +#line 34994 "configure" #include "confdefs.h" #include <string.h> int @@ -34920,16 +35005,16 @@ int (*p)() = $ac_func; } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:34923: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:35008: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:34926: \$? = $ac_status" >&5 + echo "$as_me:35011: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:34929: \"$ac_try\"") >&5 + { (eval echo "$as_me:35014: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:34932: \$? = $ac_status" >&5 + echo "$as_me:35017: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then eval "ac_cv_func_decl_$ac_func=yes" @@ -34950,11 +35035,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:34953: result: yes" >&5 + echo "$as_me:35038: result: yes" >&5 echo "${ECHO_T}yes" >&6 : else - echo "$as_me:34957: result: no" >&5 + echo "$as_me:35042: result: no" >&5 echo "${ECHO_T}no" >&6 ac_tr_func=`echo "DECL_$ac_func" | sed y%abcdefghijklmnopqrstuvwxyz./-%ABCDEFGHIJKLMNOPQRSTUVWXYZ___%` @@ -34969,13 +35054,13 @@ done for ac_func in getgrgid getgrnam do -echo "$as_me:34972: checking for $ac_func declaration" >&5 +echo "$as_me:35057: 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 34978 "configure" +#line 35063 "configure" #include "confdefs.h" #include <stdio.h> @@ -34991,20 +35076,20 @@ extern int $ac_func(); } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:34994: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:35079: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:34997: \$? = $ac_status" >&5 + echo "$as_me:35082: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:35000: \"$ac_try\"") >&5 + { (eval echo "$as_me:35085: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:35003: \$? = $ac_status" >&5 + echo "$as_me:35088: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cat >"conftest.$ac_ext" <<_ACEOF -#line 35007 "configure" +#line 35092 "configure" #include "confdefs.h" #include <stdio.h> @@ -35020,16 +35105,16 @@ int (*p)() = $ac_func; } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:35023: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:35108: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:35026: \$? = $ac_status" >&5 + echo "$as_me:35111: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:35029: \"$ac_try\"") >&5 + { (eval echo "$as_me:35114: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:35032: \$? = $ac_status" >&5 + echo "$as_me:35117: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then eval "ac_cv_func_decl_$ac_func=yes" @@ -35050,11 +35135,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:35053: result: yes" >&5 + echo "$as_me:35138: result: yes" >&5 echo "${ECHO_T}yes" >&6 : else - echo "$as_me:35057: result: no" >&5 + echo "$as_me:35142: result: no" >&5 echo "${ECHO_T}no" >&6 ac_tr_func=`echo "DECL_$ac_func" | sed y%abcdefghijklmnopqrstuvwxyz./-%ABCDEFGHIJKLMNOPQRSTUVWXYZ___%` @@ -35066,14 +35151,14 @@ EOF fi done -echo "$as_me:35069: checking if TRUE/FALSE are defined" >&5 +echo "$as_me:35154: 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 35076 "configure" +#line 35161 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> @@ -35087,16 +35172,16 @@ int x = TRUE, y = FALSE } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:35090: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:35175: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:35093: \$? = $ac_status" >&5 + echo "$as_me:35178: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:35096: \"$ac_try\"") >&5 + { (eval echo "$as_me:35181: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:35099: \$? = $ac_status" >&5 + echo "$as_me:35184: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_bool_defs=yes else @@ -35107,7 +35192,7 @@ fi rm -f "conftest.$ac_objext" "conftest.$ac_ext" fi -echo "$as_me:35110: result: $cf_cv_bool_defs" >&5 +echo "$as_me:35195: result: $cf_cv_bool_defs" >&5 echo "${ECHO_T}$cf_cv_bool_defs" >&6 if test "$cf_cv_bool_defs" = no ; then @@ -35121,14 +35206,14 @@ EOF fi -echo "$as_me:35124: checking if external errno is declared" >&5 +echo "$as_me:35209: 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 35131 "configure" +#line 35216 "configure" #include "confdefs.h" #ifdef HAVE_STDLIB_H @@ -35146,16 +35231,16 @@ int x = (int) errno; (void)x } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:35149: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:35234: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:35152: \$? = $ac_status" >&5 + echo "$as_me:35237: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:35155: \"$ac_try\"") >&5 + { (eval echo "$as_me:35240: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:35158: \$? = $ac_status" >&5 + echo "$as_me:35243: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_dcl_errno=yes else @@ -35166,7 +35251,7 @@ fi rm -f "conftest.$ac_objext" "conftest.$ac_ext" fi -echo "$as_me:35169: result: $cf_cv_dcl_errno" >&5 +echo "$as_me:35254: result: $cf_cv_dcl_errno" >&5 echo "${ECHO_T}$cf_cv_dcl_errno" >&6 if test "$cf_cv_dcl_errno" = no ; then @@ -35181,14 +35266,14 @@ fi # It's possible (for near-UNIX clones) that the data doesn't exist -echo "$as_me:35184: checking if external errno exists" >&5 +echo "$as_me:35269: 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 35191 "configure" +#line 35276 "configure" #include "confdefs.h" #undef errno @@ -35203,16 +35288,16 @@ errno = 2 } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:35206: \"$ac_link\"") >&5 +if { (eval echo "$as_me:35291: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:35209: \$? = $ac_status" >&5 + echo "$as_me:35294: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:35212: \"$ac_try\"") >&5 + { (eval echo "$as_me:35297: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:35215: \$? = $ac_status" >&5 + echo "$as_me:35300: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_have_errno=yes else @@ -35223,7 +35308,7 @@ fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:35226: result: $cf_cv_have_errno" >&5 +echo "$as_me:35311: result: $cf_cv_have_errno" >&5 echo "${ECHO_T}$cf_cv_have_errno" >&6 if test "$cf_cv_have_errno" = yes ; then @@ -35236,7 +35321,7 @@ EOF fi -echo "$as_me:35239: checking if we can set errno" >&5 +echo "$as_me:35324: 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 @@ -35244,7 +35329,7 @@ else if test "$cross_compiling" = yes; then cat >"conftest.$ac_ext" <<_ACEOF -#line 35247 "configure" +#line 35332 "configure" #include "confdefs.h" #include <errno.h> int @@ -35256,16 +35341,16 @@ errno = 255 } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:35259: \"$ac_link\"") >&5 +if { (eval echo "$as_me:35344: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:35262: \$? = $ac_status" >&5 + echo "$as_me:35347: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:35265: \"$ac_try\"") >&5 + { (eval echo "$as_me:35350: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:35268: \$? = $ac_status" >&5 + echo "$as_me:35353: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_set_errno=maybe else @@ -35276,7 +35361,7 @@ fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" else cat >"conftest.$ac_ext" <<_ACEOF -#line 35279 "configure" +#line 35364 "configure" #include "confdefs.h" #include <errno.h> @@ -35287,15 +35372,15 @@ int main(void) } _ACEOF rm -f "conftest$ac_exeext" -if { (eval echo "$as_me:35290: \"$ac_link\"") >&5 +if { (eval echo "$as_me:35375: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:35293: \$? = $ac_status" >&5 + echo "$as_me:35378: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='"./conftest$ac_exeext"' - { (eval echo "$as_me:35295: \"$ac_try\"") >&5 + { (eval echo "$as_me:35380: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:35298: \$? = $ac_status" >&5 + echo "$as_me:35383: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_set_errno=yes else @@ -35308,21 +35393,21 @@ rm -f core ./core.* ./*.core "conftest$ac_exeext" "conftest.$ac_objext" "conftes fi fi -echo "$as_me:35311: result: $cf_cv_set_errno" >&5 +echo "$as_me:35396: 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:35318: checking for setlocale()" >&5 +echo "$as_me:35403: 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 35325 "configure" +#line 35410 "configure" #include "confdefs.h" #include <locale.h> int @@ -35334,16 +35419,16 @@ setlocale(LC_ALL, "") } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:35337: \"$ac_link\"") >&5 +if { (eval echo "$as_me:35422: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:35340: \$? = $ac_status" >&5 + echo "$as_me:35425: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:35343: \"$ac_try\"") >&5 + { (eval echo "$as_me:35428: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:35346: \$? = $ac_status" >&5 + echo "$as_me:35431: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_locale=yes else @@ -35355,7 +35440,7 @@ rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:35358: result: $cf_cv_locale" >&5 +echo "$as_me:35443: result: $cf_cv_locale" >&5 echo "${ECHO_T}$cf_cv_locale" >&6 test "$cf_cv_locale" = yes && { cat >>confdefs.h <<\EOF @@ -35363,14 +35448,14 @@ cat >>confdefs.h <<\EOF EOF } -echo "$as_me:35366: checking if NGROUPS is defined" >&5 +echo "$as_me:35451: 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 35373 "configure" +#line 35458 "configure" #include "confdefs.h" #if HAVE_SYS_PARAM_H @@ -35389,23 +35474,23 @@ int x = NGROUPS } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:35392: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:35477: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:35395: \$? = $ac_status" >&5 + echo "$as_me:35480: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:35398: \"$ac_try\"") >&5 + { (eval echo "$as_me:35483: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:35401: \$? = $ac_status" >&5 + echo "$as_me:35486: \$? = $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 35408 "configure" +#line 35493 "configure" #include "confdefs.h" #if HAVE_SYS_PARAM_H @@ -35424,16 +35509,16 @@ int x = NGROUPS_MAX } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:35427: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:35512: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:35430: \$? = $ac_status" >&5 + echo "$as_me:35515: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:35433: \"$ac_try\"") >&5 + { (eval echo "$as_me:35518: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:35436: \$? = $ac_status" >&5 + echo "$as_me:35521: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_ngroups=NGROUPS_MAX else @@ -35445,7 +35530,7 @@ rm -f "conftest.$ac_objext" "conftest.$ac_ext" fi rm -f "conftest.$ac_objext" "conftest.$ac_ext" -echo "$as_me:35448: result: $cf_cv_ngroups" >&5 +echo "$as_me:35533: result: $cf_cv_ngroups" >&5 echo "${ECHO_T}$cf_cv_ngroups" >&6 fi @@ -35463,14 +35548,14 @@ EOF fi -echo "$as_me:35466: checking if external sys_nerr is declared" >&5 +echo "$as_me:35551: 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 35473 "configure" +#line 35558 "configure" #include "confdefs.h" #ifdef HAVE_STDLIB_H @@ -35488,16 +35573,16 @@ int x = (int) sys_nerr; (void)x } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:35491: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:35576: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:35494: \$? = $ac_status" >&5 + echo "$as_me:35579: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:35497: \"$ac_try\"") >&5 + { (eval echo "$as_me:35582: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:35500: \$? = $ac_status" >&5 + echo "$as_me:35585: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_dcl_sys_nerr=yes else @@ -35508,7 +35593,7 @@ fi rm -f "conftest.$ac_objext" "conftest.$ac_ext" fi -echo "$as_me:35511: result: $cf_cv_dcl_sys_nerr" >&5 +echo "$as_me:35596: 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 @@ -35523,14 +35608,14 @@ fi # It's possible (for near-UNIX clones) that the data doesn't exist -echo "$as_me:35526: checking if external sys_nerr exists" >&5 +echo "$as_me:35611: 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 35533 "configure" +#line 35618 "configure" #include "confdefs.h" #undef sys_nerr @@ -35545,16 +35630,16 @@ sys_nerr = 2 } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:35548: \"$ac_link\"") >&5 +if { (eval echo "$as_me:35633: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:35551: \$? = $ac_status" >&5 + echo "$as_me:35636: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:35554: \"$ac_try\"") >&5 + { (eval echo "$as_me:35639: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:35557: \$? = $ac_status" >&5 + echo "$as_me:35642: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_have_sys_nerr=yes else @@ -35565,7 +35650,7 @@ fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:35568: result: $cf_cv_have_sys_nerr" >&5 +echo "$as_me:35653: 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 @@ -35578,14 +35663,14 @@ EOF fi -echo "$as_me:35581: checking if external sys_errlist is declared" >&5 +echo "$as_me:35666: 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 35588 "configure" +#line 35673 "configure" #include "confdefs.h" #ifdef HAVE_STDLIB_H @@ -35603,16 +35688,16 @@ int x = (int) sys_errlist; (void)x } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:35606: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:35691: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:35609: \$? = $ac_status" >&5 + echo "$as_me:35694: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:35612: \"$ac_try\"") >&5 + { (eval echo "$as_me:35697: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:35615: \$? = $ac_status" >&5 + echo "$as_me:35700: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_dcl_sys_errlist=yes else @@ -35623,7 +35708,7 @@ fi rm -f "conftest.$ac_objext" "conftest.$ac_ext" fi -echo "$as_me:35626: result: $cf_cv_dcl_sys_errlist" >&5 +echo "$as_me:35711: 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 @@ -35638,14 +35723,14 @@ fi # It's possible (for near-UNIX clones) that the data doesn't exist -echo "$as_me:35641: checking if external sys_errlist exists" >&5 +echo "$as_me:35726: 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 35648 "configure" +#line 35733 "configure" #include "confdefs.h" #undef sys_errlist @@ -35660,16 +35745,16 @@ sys_errlist = 2 } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:35663: \"$ac_link\"") >&5 +if { (eval echo "$as_me:35748: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:35666: \$? = $ac_status" >&5 + echo "$as_me:35751: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:35669: \"$ac_try\"") >&5 + { (eval echo "$as_me:35754: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:35672: \$? = $ac_status" >&5 + echo "$as_me:35757: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_have_sys_errlist=yes else @@ -35680,7 +35765,7 @@ fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:35683: result: $cf_cv_have_sys_errlist" >&5 +echo "$as_me:35768: 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 @@ -35696,23 +35781,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:35699: checking for $ac_header" >&5 +echo "$as_me:35784: 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 35705 "configure" +#line 35790 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:35709: \"$ac_cpp "conftest.$ac_ext"\"") >&5 +if { (eval echo "$as_me:35794: \"$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:35715: \$? = $ac_status" >&5 + echo "$as_me:35800: \$? = $ac_status" >&5 (exit "$ac_status"); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -35731,7 +35816,7 @@ else fi rm -f conftest.err "conftest.$ac_ext" fi -echo "$as_me:35734: result: `eval echo '${'"$as_ac_Header"'}'`" >&5 +echo "$as_me:35819: 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 @@ -35741,14 +35826,14 @@ EOF fi done -echo "$as_me:35744: checking for lastlog path" >&5 +echo "$as_me:35829: 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 35751 "configure" +#line 35836 "configure" #include "confdefs.h" #include <sys/types.h> @@ -35768,16 +35853,16 @@ char *path = _PATH_LASTLOG; (void)path } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:35771: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:35856: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:35774: \$? = $ac_status" >&5 + echo "$as_me:35859: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:35777: \"$ac_try\"") >&5 + { (eval echo "$as_me:35862: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:35780: \$? = $ac_status" >&5 + echo "$as_me:35865: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_path_lastlog="_PATH_LASTLOG" else @@ -35792,14 +35877,14 @@ fi rm -f "conftest.$ac_objext" "conftest.$ac_ext" fi -echo "$as_me:35795: result: $cf_cv_path_lastlog" >&5 +echo "$as_me:35880: 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:35802: checking for utmp implementation" >&5 +echo "$as_me:35887: 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 @@ -35816,7 +35901,7 @@ cf_utmp_includes=" #endif " cat >"conftest.$ac_ext" <<_ACEOF -#line 35819 "configure" +#line 35904 "configure" #include "confdefs.h" $cf_utmp_includes int @@ -35832,16 +35917,16 @@ struct $cf_header x; } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:35835: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:35920: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:35838: \$? = $ac_status" >&5 + echo "$as_me:35923: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:35841: \"$ac_try\"") >&5 + { (eval echo "$as_me:35926: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:35844: \$? = $ac_status" >&5 + echo "$as_me:35929: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_have_utmp=$cf_header break @@ -35850,7 +35935,7 @@ else cat "conftest.$ac_ext" >&5 cat >"conftest.$ac_ext" <<_ACEOF -#line 35853 "configure" +#line 35938 "configure" #include "confdefs.h" $cf_utmp_includes int @@ -35866,16 +35951,16 @@ struct $cf_header x; } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:35869: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:35954: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:35872: \$? = $ac_status" >&5 + echo "$as_me:35957: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:35875: \"$ac_try\"") >&5 + { (eval echo "$as_me:35960: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:35878: \$? = $ac_status" >&5 + echo "$as_me:35963: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_have_utmp=$cf_header break @@ -35890,7 +35975,7 @@ rm -f "conftest.$ac_objext" "conftest.$ac_ext" done fi -echo "$as_me:35893: result: $cf_cv_have_utmp" >&5 +echo "$as_me:35978: result: $cf_cv_have_utmp" >&5 echo "${ECHO_T}$cf_cv_have_utmp" >&6 if test "$cf_cv_have_utmp" != no ; then @@ -35905,14 +35990,14 @@ cat >>confdefs.h <<\EOF EOF if test "$cf_cv_have_utmp" != no ; then -echo "$as_me:35908: checking if ${cf_cv_have_utmp}.ut_host is declared" >&5 +echo "$as_me:35993: 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 35915 "configure" +#line 36000 "configure" #include "confdefs.h" #include <sys/types.h> @@ -35929,16 +36014,16 @@ struct $cf_cv_have_utmp x; } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:35932: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:36017: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:35935: \$? = $ac_status" >&5 + echo "$as_me:36020: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:35938: \"$ac_try\"") >&5 + { (eval echo "$as_me:36023: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:35941: \$? = $ac_status" >&5 + echo "$as_me:36026: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_have_utmp_ut_host=yes else @@ -35950,7 +36035,7 @@ rm -f "conftest.$ac_objext" "conftest.$ac_ext" fi -echo "$as_me:35953: result: $cf_cv_have_utmp_ut_host" >&5 +echo "$as_me:36038: 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 @@ -35960,14 +36045,14 @@ EOF fi if test "$cf_cv_have_utmp" != no ; then -echo "$as_me:35963: checking if ${cf_cv_have_utmp}.ut_syslen is declared" >&5 +echo "$as_me:36048: 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 35970 "configure" +#line 36055 "configure" #include "confdefs.h" #include <sys/types.h> @@ -35984,16 +36069,16 @@ struct $cf_cv_have_utmp x; } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:35987: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:36072: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:35990: \$? = $ac_status" >&5 + echo "$as_me:36075: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:35993: \"$ac_try\"") >&5 + { (eval echo "$as_me:36078: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:35996: \$? = $ac_status" >&5 + echo "$as_me:36081: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_have_utmp_ut_syslen=yes else @@ -36005,7 +36090,7 @@ rm -f "conftest.$ac_objext" "conftest.$ac_ext" fi -echo "$as_me:36008: result: $cf_cv_have_utmp_ut_syslen" >&5 +echo "$as_me:36093: 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 @@ -36015,7 +36100,7 @@ EOF fi if test "$cf_cv_have_utmp" != no ; then -echo "$as_me:36018: checking if ${cf_cv_have_utmp}.ut_name is declared" >&5 +echo "$as_me:36103: 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 @@ -36032,7 +36117,7 @@ cf_utmp_includes=" " for cf_header in ut_name ut_user ; do cat >"conftest.$ac_ext" <<_ACEOF -#line 36035 "configure" +#line 36120 "configure" #include "confdefs.h" $cf_utmp_includes int @@ -36048,16 +36133,16 @@ struct $cf_cv_have_utmp x; } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:36051: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:36136: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:36054: \$? = $ac_status" >&5 + echo "$as_me:36139: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:36057: \"$ac_try\"") >&5 + { (eval echo "$as_me:36142: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:36060: \$? = $ac_status" >&5 + echo "$as_me:36145: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_have_utmp_ut_name=$cf_header break @@ -36069,12 +36154,12 @@ rm -f "conftest.$ac_objext" "conftest.$ac_ext" done fi -echo "$as_me:36072: result: $cf_cv_have_utmp_ut_name" >&5 +echo "$as_me:36157: 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 (no) - { { echo "$as_me:36077: error: Cannot find declaration for ut.ut_name" >&5 + { { echo "$as_me:36162: 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; }; } ;; @@ -36089,7 +36174,7 @@ esac fi if test "$cf_cv_have_utmp" != no ; then -echo "$as_me:36092: checking for exit-status in $cf_cv_have_utmp" >&5 +echo "$as_me:36177: 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 @@ -36102,7 +36187,7 @@ for cf_result in \ ut_exit.ut_exit do cat >"conftest.$ac_ext" <<_ACEOF -#line 36105 "configure" +#line 36190 "configure" #include "confdefs.h" #include <sys/types.h> @@ -36119,16 +36204,16 @@ struct $cf_cv_have_utmp x; } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:36122: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:36207: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:36125: \$? = $ac_status" >&5 + echo "$as_me:36210: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:36128: \"$ac_try\"") >&5 + { (eval echo "$as_me:36213: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:36131: \$? = $ac_status" >&5 + echo "$as_me:36216: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_have_utmp_ut_xstatus=$cf_result break @@ -36141,7 +36226,7 @@ rm -f "conftest.$ac_objext" "conftest.$ac_ext" done fi -echo "$as_me:36144: result: $cf_cv_have_utmp_ut_xstatus" >&5 +echo "$as_me:36229: 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 @@ -36157,14 +36242,14 @@ fi fi if test "$cf_cv_have_utmp" != no ; then -echo "$as_me:36160: checking if ${cf_cv_have_utmp}.ut_xtime is declared" >&5 +echo "$as_me:36245: 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 36167 "configure" +#line 36252 "configure" #include "confdefs.h" #include <sys/types.h> @@ -36181,23 +36266,23 @@ struct $cf_cv_have_utmp x; } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:36184: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:36269: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:36187: \$? = $ac_status" >&5 + echo "$as_me:36272: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:36190: \"$ac_try\"") >&5 + { (eval echo "$as_me:36275: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:36193: \$? = $ac_status" >&5 + echo "$as_me:36278: \$? = $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 36200 "configure" +#line 36285 "configure" #include "confdefs.h" #include <sys/types.h> @@ -36214,16 +36299,16 @@ struct $cf_cv_have_utmp x; } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:36217: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:36302: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:36220: \$? = $ac_status" >&5 + echo "$as_me:36305: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:36223: \"$ac_try\"") >&5 + { (eval echo "$as_me:36308: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:36226: \$? = $ac_status" >&5 + echo "$as_me:36311: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_have_utmp_ut_xtime=define else @@ -36237,7 +36322,7 @@ fi rm -f "conftest.$ac_objext" "conftest.$ac_ext" fi -echo "$as_me:36240: result: $cf_cv_have_utmp_ut_xtime" >&5 +echo "$as_me:36325: 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 @@ -36256,14 +36341,14 @@ fi fi if test "$cf_cv_have_utmp" != no ; then -echo "$as_me:36259: checking if ${cf_cv_have_utmp}.ut_session is declared" >&5 +echo "$as_me:36344: 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 36266 "configure" +#line 36351 "configure" #include "confdefs.h" #include <sys/types.h> @@ -36280,16 +36365,16 @@ struct $cf_cv_have_utmp x; } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:36283: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:36368: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:36286: \$? = $ac_status" >&5 + echo "$as_me:36371: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:36289: \"$ac_try\"") >&5 + { (eval echo "$as_me:36374: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:36292: \$? = $ac_status" >&5 + echo "$as_me:36377: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_have_utmp_ut_session=yes else @@ -36300,7 +36385,7 @@ fi rm -f "conftest.$ac_objext" "conftest.$ac_ext" fi -echo "$as_me:36303: result: $cf_cv_have_utmp_ut_session" >&5 +echo "$as_me:36388: 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 @@ -36311,7 +36396,7 @@ EOF fi fi -echo "$as_me:36314: checking if $cf_cv_have_utmp is SYSV flavor" >&5 +echo "$as_me:36399: 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 @@ -36319,7 +36404,7 @@ else test "$cf_cv_have_utmp" = "utmp" && cf_prefix="ut" || cf_prefix="utx" cat >"conftest.$ac_ext" <<_ACEOF -#line 36322 "configure" +#line 36407 "configure" #include "confdefs.h" #include <sys/types.h> @@ -36338,16 +36423,16 @@ struct $cf_cv_have_utmp x; } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:36341: \"$ac_link\"") >&5 +if { (eval echo "$as_me:36426: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:36344: \$? = $ac_status" >&5 + echo "$as_me:36429: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:36347: \"$ac_try\"") >&5 + { (eval echo "$as_me:36432: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:36350: \$? = $ac_status" >&5 + echo "$as_me:36435: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_sysv_utmp=yes else @@ -36358,7 +36443,7 @@ fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:36361: result: $cf_cv_sysv_utmp" >&5 +echo "$as_me:36446: result: $cf_cv_sysv_utmp" >&5 echo "${ECHO_T}$cf_cv_sysv_utmp" >&6 test "$cf_cv_sysv_utmp" = yes && cat >>confdefs.h <<\EOF @@ -36367,14 +36452,14 @@ EOF fi -echo "$as_me:36370: checking if external h_errno exists" >&5 +echo "$as_me:36455: 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 36377 "configure" +#line 36462 "configure" #include "confdefs.h" #undef h_errno @@ -36389,16 +36474,16 @@ h_errno = 2 } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:36392: \"$ac_link\"") >&5 +if { (eval echo "$as_me:36477: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:36395: \$? = $ac_status" >&5 + echo "$as_me:36480: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:36398: \"$ac_try\"") >&5 + { (eval echo "$as_me:36483: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:36401: \$? = $ac_status" >&5 + echo "$as_me:36486: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_have_h_errno=yes else @@ -36409,7 +36494,7 @@ fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:36412: result: $cf_cv_have_h_errno" >&5 +echo "$as_me:36497: 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 @@ -36422,7 +36507,7 @@ EOF fi -echo "$as_me:36425: checking if bibp: URLs should be supported" >&5 +echo "$as_me:36510: 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. @@ -36439,14 +36524,14 @@ else use_bibp_urls=yes fi; -echo "$as_me:36442: result: $use_bibp_urls" >&5 +echo "$as_me:36527: 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:36449: checking if configuration info should be browsable" >&5 +echo "$as_me:36534: 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. @@ -36463,14 +36548,14 @@ else use_config_info=yes fi; -echo "$as_me:36466: result: $use_config_info" >&5 +echo "$as_me:36551: 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:36473: checking if new-style forms-based options screen should be used" >&5 +echo "$as_me:36558: 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. @@ -36487,14 +36572,14 @@ else use_forms_options=yes fi; -echo "$as_me:36490: result: $use_forms_options" >&5 +echo "$as_me:36575: 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:36497: checking if old-style options menu should be used" >&5 +echo "$as_me:36582: 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. @@ -36511,14 +36596,14 @@ else use_menu_options=yes fi; -echo "$as_me:36514: result: $use_menu_options" >&5 +echo "$as_me:36599: 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:36521: checking if sessions code should be used" >&5 +echo "$as_me:36606: 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. @@ -36535,7 +36620,7 @@ else use_sessions=yes fi; -echo "$as_me:36538: result: $use_sessions" >&5 +echo "$as_me:36623: result: $use_sessions" >&5 echo "${ECHO_T}$use_sessions" >&6 if test "$use_sessions" != no ; then @@ -36546,7 +36631,7 @@ EOF EXTRA_OBJS="$EXTRA_OBJS LYSession\$o" fi -echo "$as_me:36549: checking if session-caching code should be used" >&5 +echo "$as_me:36634: 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. @@ -36563,7 +36648,7 @@ else use_session_cache=yes fi; -echo "$as_me:36566: result: $use_session_cache" >&5 +echo "$as_me:36651: result: $use_session_cache" >&5 echo "${ECHO_T}$use_session_cache" >&6 if test "$use_session_cache" != no ; then @@ -36573,7 +36658,7 @@ EOF fi -echo "$as_me:36576: checking if address-list page should be used" >&5 +echo "$as_me:36661: checking if address-list page should be used" >&5 echo $ECHO_N "checking if address-list page should be used... $ECHO_C" >&6 # Check whether --enable-addrlist-page or --disable-addrlist-page was given. @@ -36590,14 +36675,14 @@ else use_addrlist_page=yes fi; -echo "$as_me:36593: result: $use_addrlist_page" >&5 +echo "$as_me:36678: result: $use_addrlist_page" >&5 echo "${ECHO_T}$use_addrlist_page" >&6 test "$use_addrlist_page" != no && cat >>confdefs.h <<\EOF #define USE_ADDRLIST_PAGE 1 EOF -echo "$as_me:36600: checking if experimental CJK logic should be used" >&5 +echo "$as_me:36685: 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. @@ -36614,14 +36699,14 @@ else use_cjk=no fi; -echo "$as_me:36617: result: $use_cjk" >&5 +echo "$as_me:36702: 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:36624: checking if experimental Japanese UTF-8 logic should be used" >&5 +echo "$as_me:36709: 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. @@ -36638,7 +36723,7 @@ else use_ja_utf8=no fi; -echo "$as_me:36641: result: $use_ja_utf8" >&5 +echo "$as_me:36726: result: $use_ja_utf8" >&5 echo "${ECHO_T}$use_ja_utf8" >&6 if test "$use_ja_utf8" != no ; then @@ -36687,7 +36772,7 @@ if test -n "$cf_searchpath/include" ; then CPPFLAGS="${CPPFLAGS}-I$cf_add_incdir" cat >"conftest.$ac_ext" <<_ACEOF -#line 36690 "configure" +#line 36775 "configure" #include "confdefs.h" #include <stdio.h> int @@ -36699,16 +36784,16 @@ printf("Hello") } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:36702: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:36787: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:36705: \$? = $ac_status" >&5 + echo "$as_me:36790: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:36708: \"$ac_try\"") >&5 + { (eval echo "$as_me:36793: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:36711: \$? = $ac_status" >&5 + echo "$as_me:36796: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then : else @@ -36725,7 +36810,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}:36728: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:36813: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -36771,7 +36856,7 @@ if test -n "$cf_searchpath/../include" ; then CPPFLAGS="${CPPFLAGS}-I$cf_add_incdir" cat >"conftest.$ac_ext" <<_ACEOF -#line 36774 "configure" +#line 36859 "configure" #include "confdefs.h" #include <stdio.h> int @@ -36783,16 +36868,16 @@ printf("Hello") } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:36786: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:36871: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:36789: \$? = $ac_status" >&5 + echo "$as_me:36874: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:36792: \"$ac_try\"") >&5 + { (eval echo "$as_me:36877: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:36795: \$? = $ac_status" >&5 + echo "$as_me:36880: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then : else @@ -36809,7 +36894,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}:36812: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:36897: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -36827,7 +36912,7 @@ echo "${as_me:-configure}:36812: testing adding $cf_add_incdir to include-path . fi else -{ { echo "$as_me:36830: error: cannot find libiconv under $withval" >&5 +{ { echo "$as_me:36915: error: cannot find libiconv under $withval" >&5 echo "$as_me: error: cannot find libiconv under $withval" >&2;} { (exit 1); exit 1; }; } fi @@ -36852,7 +36937,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}:36855: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:36940: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -36881,7 +36966,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}:36884: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:36969: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -36890,7 +36975,7 @@ echo "${as_me:-configure}:36884: testing adding $cf_add_libdir to library-path . fi else -{ { echo "$as_me:36893: error: cannot find libiconv under $withval" >&5 +{ { echo "$as_me:36978: error: cannot find libiconv under $withval" >&5 echo "$as_me: error: cannot find libiconv under $withval" >&2;} { (exit 1); exit 1; }; } fi @@ -36901,7 +36986,7 @@ esac fi; - echo "$as_me:36904: checking for iconv" >&5 + echo "$as_me:36989: 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 @@ -36912,12 +36997,12 @@ else cf_cv_header_path_iconv= cf_cv_library_path_iconv= -echo "${as_me:-configure}:36915: testing Starting FIND_LINKAGE(iconv,) ..." 1>&5 +echo "${as_me:-configure}:37000: testing Starting FIND_LINKAGE(iconv,) ..." 1>&5 cf_save_LIBS="$LIBS" cat >"conftest.$ac_ext" <<_ACEOF -#line 36920 "configure" +#line 37005 "configure" #include "confdefs.h" #include <stdlib.h> @@ -36936,16 +37021,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:36939: \"$ac_link\"") >&5 +if { (eval echo "$as_me:37024: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:36942: \$? = $ac_status" >&5 + echo "$as_me:37027: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:36945: \"$ac_try\"") >&5 + { (eval echo "$as_me:37030: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:36948: \$? = $ac_status" >&5 + echo "$as_me:37033: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_find_linkage_iconv=yes @@ -36959,7 +37044,7 @@ cat "conftest.$ac_ext" >&5 LIBS="-liconv $cf_save_LIBS" cat >"conftest.$ac_ext" <<_ACEOF -#line 36962 "configure" +#line 37047 "configure" #include "confdefs.h" #include <stdlib.h> @@ -36978,16 +37063,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:36981: \"$ac_link\"") >&5 +if { (eval echo "$as_me:37066: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:36984: \$? = $ac_status" >&5 + echo "$as_me:37069: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:36987: \"$ac_try\"") >&5 + { (eval echo "$as_me:37072: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:36990: \$? = $ac_status" >&5 + echo "$as_me:37075: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_find_linkage_iconv=yes @@ -37004,9 +37089,9 @@ cat "conftest.$ac_ext" >&5 test -n "$verbose" && echo " find linkage for iconv library" 1>&6 -echo "${as_me:-configure}:37007: testing find linkage for iconv library ..." 1>&5 +echo "${as_me:-configure}:37092: testing find linkage for iconv library ..." 1>&5 -echo "${as_me:-configure}:37009: testing Searching for headers in FIND_LINKAGE(iconv,) ..." 1>&5 +echo "${as_me:-configure}:37094: testing Searching for headers in FIND_LINKAGE(iconv,) ..." 1>&5 cf_save_CPPFLAGS="$CPPFLAGS" cf_test_CPPFLAGS="$CPPFLAGS" @@ -37097,7 +37182,7 @@ cf_search="$cf_search $cf_header_path_list" 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}:37100: testing ... testing $cf_cv_header_path_iconv ..." 1>&5 +echo "${as_me:-configure}:37185: testing ... testing $cf_cv_header_path_iconv ..." 1>&5 CPPFLAGS="$cf_save_CPPFLAGS" @@ -37105,7 +37190,7 @@ echo "${as_me:-configure}:37100: testing ... testing $cf_cv_header_path_iconv .. CPPFLAGS="${CPPFLAGS}-I$cf_cv_header_path_iconv" cat >"conftest.$ac_ext" <<_ACEOF -#line 37108 "configure" +#line 37193 "configure" #include "confdefs.h" #include <stdlib.h> @@ -37124,21 +37209,21 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:37127: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:37212: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:37130: \$? = $ac_status" >&5 + echo "$as_me:37215: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:37133: \"$ac_try\"") >&5 + { (eval echo "$as_me:37218: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:37136: \$? = $ac_status" >&5 + echo "$as_me:37221: \$? = $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}:37141: testing ... found iconv headers in $cf_cv_header_path_iconv ..." 1>&5 +echo "${as_me:-configure}:37226: testing ... found iconv headers in $cf_cv_header_path_iconv ..." 1>&5 cf_cv_find_linkage_iconv=maybe cf_test_CPPFLAGS="$CPPFLAGS" @@ -37156,7 +37241,7 @@ rm -f "conftest.$ac_objext" "conftest.$ac_ext" if test "$cf_cv_find_linkage_iconv" = maybe ; then -echo "${as_me:-configure}:37159: testing Searching for iconv library in FIND_LINKAGE(iconv,) ..." 1>&5 +echo "${as_me:-configure}:37244: testing Searching for iconv library in FIND_LINKAGE(iconv,) ..." 1>&5 cf_save_LIBS="$LIBS" cf_save_LDFLAGS="$LDFLAGS" @@ -37231,13 +37316,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}:37234: testing ... testing $cf_cv_library_path_iconv ..." 1>&5 +echo "${as_me:-configure}:37319: 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 37240 "configure" +#line 37325 "configure" #include "confdefs.h" #include <stdlib.h> @@ -37256,21 +37341,21 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:37259: \"$ac_link\"") >&5 +if { (eval echo "$as_me:37344: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:37262: \$? = $ac_status" >&5 + echo "$as_me:37347: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:37265: \"$ac_try\"") >&5 + { (eval echo "$as_me:37350: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:37268: \$? = $ac_status" >&5 + echo "$as_me:37353: \$? = $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}:37273: testing ... found iconv library in $cf_cv_library_path_iconv ..." 1>&5 +echo "${as_me:-configure}:37358: testing ... found iconv library in $cf_cv_library_path_iconv ..." 1>&5 cf_cv_find_linkage_iconv=yes cf_cv_library_file_iconv="-liconv" @@ -37310,7 +37395,7 @@ am_cv_func_iconv="no, consider installing GNU libiconv" fi fi -echo "$as_me:37313: result: $am_cv_func_iconv" >&5 +echo "$as_me:37398: result: $am_cv_func_iconv" >&5 echo "${ECHO_T}$am_cv_func_iconv" >&6 if test "$am_cv_func_iconv" = yes; then @@ -37319,14 +37404,14 @@ cat >>confdefs.h <<\EOF #define HAVE_ICONV 1 EOF - echo "$as_me:37322: checking if the declaration of iconv() needs const." >&5 + echo "$as_me:37407: 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 37329 "configure" +#line 37414 "configure" #include "confdefs.h" #include <stdlib.h> @@ -37351,16 +37436,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:37354: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:37439: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:37357: \$? = $ac_status" >&5 + echo "$as_me:37442: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:37360: \"$ac_try\"") >&5 + { (eval echo "$as_me:37445: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:37363: \$? = $ac_status" >&5 + echo "$as_me:37448: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then am_cv_proto_iconv_const=no else @@ -37370,7 +37455,7 @@ am_cv_proto_iconv_const=yes fi rm -f "conftest.$ac_objext" "conftest.$ac_ext" fi -echo "$as_me:37373: result: $am_cv_proto_iconv_const" >&5 +echo "$as_me:37458: 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 @@ -37415,7 +37500,7 @@ if test -n "$cf_cv_header_path_iconv" ; then CPPFLAGS="${CPPFLAGS}-I$cf_add_incdir" cat >"conftest.$ac_ext" <<_ACEOF -#line 37418 "configure" +#line 37503 "configure" #include "confdefs.h" #include <stdio.h> int @@ -37427,16 +37512,16 @@ printf("Hello") } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:37430: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:37515: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:37433: \$? = $ac_status" >&5 + echo "$as_me:37518: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:37436: \"$ac_try\"") >&5 + { (eval echo "$as_me:37521: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:37439: \$? = $ac_status" >&5 + echo "$as_me:37524: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then : else @@ -37453,7 +37538,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}:37456: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:37541: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -37492,7 +37577,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}:37495: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:37580: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -37508,7 +37593,7 @@ fi fi fi -echo "$as_me:37511: checking if experimental wcwidth/UTF-8 logic should be used" >&5 +echo "$as_me:37596: checking if experimental wcwidth/UTF-8 logic should be used" >&5 echo $ECHO_N "checking if experimental wcwidth/UTF-8 logic should be used... $ECHO_C" >&6 # Check whether --enable-wcwidth-support or --disable-wcwidth-support was given. @@ -37525,7 +37610,7 @@ else use_wcwidth=no fi; -echo "$as_me:37528: result: $use_wcwidth" >&5 +echo "$as_me:37613: result: $use_wcwidth" >&5 echo "${ECHO_T}$use_wcwidth" >&6 test "$use_wcwidth" != no && cat >>confdefs.h <<\EOF @@ -37540,7 +37625,7 @@ case "$cf_cv_screen" in esac if test "$use_dft_colors" != no ; then -echo "$as_me:37543: checking if you want to use default-colors" >&5 +echo "$as_me:37628: 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. @@ -37557,7 +37642,7 @@ else use_dft_colors=no fi; -echo "$as_me:37560: result: $use_dft_colors" >&5 +echo "$as_me:37645: result: $use_dft_colors" >&5 echo "${ECHO_T}$use_dft_colors" >&6 test "$use_dft_colors" = "yes" && cat >>confdefs.h <<\EOF @@ -37566,7 +37651,7 @@ EOF fi -echo "$as_me:37569: checking if experimental keyboard-layout logic should be used" >&5 +echo "$as_me:37654: 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. @@ -37583,14 +37668,14 @@ else use_kbd_layout=no fi; -echo "$as_me:37586: result: $use_kbd_layout" >&5 +echo "$as_me:37671: 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:37593: checking if experimental nested-table logic should be used" >&5 +echo "$as_me:37678: 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. @@ -37607,14 +37692,14 @@ else use_nested_tables=no fi; -echo "$as_me:37610: result: $use_nested_tables" >&5 +echo "$as_me:37695: 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:37617: checking if alternative line-edit bindings should be used" >&5 +echo "$as_me:37702: 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. @@ -37631,14 +37716,14 @@ else use_alt_bindings=yes fi; -echo "$as_me:37634: result: $use_alt_bindings" >&5 +echo "$as_me:37719: result: $use_alt_bindings" >&5 echo "${ECHO_T}$use_alt_bindings" >&6 test "$use_alt_bindings" != no && cat >>confdefs.h <<\EOF #define USE_ALT_BINDINGS 1 EOF -echo "$as_me:37641: checking if ascii case-conversion should be used" >&5 +echo "$as_me:37726: 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. @@ -37655,14 +37740,14 @@ else use_ascii_ctypes=yes fi; -echo "$as_me:37658: result: $use_ascii_ctypes" >&5 +echo "$as_me:37743: 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:37665: checking if you want to use extended HTML DTD logic" >&5 +echo "$as_me:37750: 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. @@ -37679,14 +37764,14 @@ else use_ext_htmldtd=yes fi; -echo "$as_me:37682: result: $use_ext_htmldtd" >&5 +echo "$as_me:37767: 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:37689: checking if file-upload logic should be used" >&5 +echo "$as_me:37774: 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. @@ -37703,14 +37788,14 @@ else use_file_upload=yes fi; -echo "$as_me:37706: result: $use_file_upload" >&5 +echo "$as_me:37791: 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:37713: checking if IDNA support should be used" >&5 +echo "$as_me:37798: 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. @@ -37727,7 +37812,7 @@ else use_idna=yes fi; -echo "$as_me:37730: result: $use_idna" >&5 +echo "$as_me:37815: result: $use_idna" >&5 echo "${ECHO_T}$use_idna" >&6 if test "$use_idna" = yes ; then @@ -37769,7 +37854,7 @@ if test -n "$cf_searchpath/include" ; then CPPFLAGS="${CPPFLAGS}-I$cf_add_incdir" cat >"conftest.$ac_ext" <<_ACEOF -#line 37772 "configure" +#line 37857 "configure" #include "confdefs.h" #include <stdio.h> int @@ -37781,16 +37866,16 @@ printf("Hello") } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:37784: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:37869: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:37787: \$? = $ac_status" >&5 + echo "$as_me:37872: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:37790: \"$ac_try\"") >&5 + { (eval echo "$as_me:37875: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:37793: \$? = $ac_status" >&5 + echo "$as_me:37878: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then : else @@ -37807,7 +37892,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}:37810: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:37895: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -37853,7 +37938,7 @@ if test -n "$cf_searchpath/../include" ; then CPPFLAGS="${CPPFLAGS}-I$cf_add_incdir" cat >"conftest.$ac_ext" <<_ACEOF -#line 37856 "configure" +#line 37941 "configure" #include "confdefs.h" #include <stdio.h> int @@ -37865,16 +37950,16 @@ printf("Hello") } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:37868: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:37953: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:37871: \$? = $ac_status" >&5 + echo "$as_me:37956: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:37874: \"$ac_try\"") >&5 + { (eval echo "$as_me:37959: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:37877: \$? = $ac_status" >&5 + echo "$as_me:37962: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then : else @@ -37891,7 +37976,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}:37894: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:37979: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -37909,7 +37994,7 @@ echo "${as_me:-configure}:37894: testing adding $cf_add_incdir to include-path . fi else -{ { echo "$as_me:37912: error: cannot find under $use_idna" >&5 +{ { echo "$as_me:37997: error: cannot find under $use_idna" >&5 echo "$as_me: error: cannot find under $use_idna" >&2;} { (exit 1); exit 1; }; } fi @@ -37934,7 +38019,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}:37937: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:38022: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -37963,7 +38048,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}:37966: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:38051: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -37972,7 +38057,7 @@ echo "${as_me:-configure}:37966: testing adding $cf_add_libdir to library-path . fi else -{ { echo "$as_me:37975: error: cannot find under $use_idna" >&5 +{ { echo "$as_me:38060: error: cannot find under $use_idna" >&5 echo "$as_me: error: cannot find under $use_idna" >&2;} { (exit 1); exit 1; }; } fi @@ -37986,12 +38071,12 @@ esac cf_cv_header_path_idn= cf_cv_library_path_idn= -echo "${as_me:-configure}:37989: testing Starting FIND_LINKAGE(idn,) ..." 1>&5 +echo "${as_me:-configure}:38074: testing Starting FIND_LINKAGE(idn,) ..." 1>&5 cf_save_LIBS="$LIBS" cat >"conftest.$ac_ext" <<_ACEOF -#line 37994 "configure" +#line 38079 "configure" #include "confdefs.h" #include <stdio.h> @@ -38009,16 +38094,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:38012: \"$ac_link\"") >&5 +if { (eval echo "$as_me:38097: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:38015: \$? = $ac_status" >&5 + echo "$as_me:38100: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:38018: \"$ac_try\"") >&5 + { (eval echo "$as_me:38103: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:38021: \$? = $ac_status" >&5 + echo "$as_me:38106: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_find_linkage_idn=yes @@ -38032,7 +38117,7 @@ cat "conftest.$ac_ext" >&5 LIBS="-lidn $LIBICONV $cf_save_LIBS" cat >"conftest.$ac_ext" <<_ACEOF -#line 38035 "configure" +#line 38120 "configure" #include "confdefs.h" #include <stdio.h> @@ -38050,16 +38135,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:38053: \"$ac_link\"") >&5 +if { (eval echo "$as_me:38138: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:38056: \$? = $ac_status" >&5 + echo "$as_me:38141: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:38059: \"$ac_try\"") >&5 + { (eval echo "$as_me:38144: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:38062: \$? = $ac_status" >&5 + echo "$as_me:38147: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_find_linkage_idn=yes @@ -38076,9 +38161,9 @@ cat "conftest.$ac_ext" >&5 test -n "$verbose" && echo " find linkage for idn library" 1>&6 -echo "${as_me:-configure}:38079: testing find linkage for idn library ..." 1>&5 +echo "${as_me:-configure}:38164: testing find linkage for idn library ..." 1>&5 -echo "${as_me:-configure}:38081: testing Searching for headers in FIND_LINKAGE(idn,) ..." 1>&5 +echo "${as_me:-configure}:38166: testing Searching for headers in FIND_LINKAGE(idn,) ..." 1>&5 cf_save_CPPFLAGS="$CPPFLAGS" cf_test_CPPFLAGS="$CPPFLAGS" @@ -38169,7 +38254,7 @@ cf_search="$cf_search $cf_header_path_list" 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}:38172: testing ... testing $cf_cv_header_path_idn ..." 1>&5 +echo "${as_me:-configure}:38257: testing ... testing $cf_cv_header_path_idn ..." 1>&5 CPPFLAGS="$cf_save_CPPFLAGS" @@ -38177,7 +38262,7 @@ echo "${as_me:-configure}:38172: testing ... testing $cf_cv_header_path_idn ..." CPPFLAGS="${CPPFLAGS}-I$cf_cv_header_path_idn" cat >"conftest.$ac_ext" <<_ACEOF -#line 38180 "configure" +#line 38265 "configure" #include "confdefs.h" #include <stdio.h> @@ -38195,21 +38280,21 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:38198: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:38283: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:38201: \$? = $ac_status" >&5 + echo "$as_me:38286: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:38204: \"$ac_try\"") >&5 + { (eval echo "$as_me:38289: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:38207: \$? = $ac_status" >&5 + echo "$as_me:38292: \$? = $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}:38212: testing ... found idn headers in $cf_cv_header_path_idn ..." 1>&5 +echo "${as_me:-configure}:38297: testing ... found idn headers in $cf_cv_header_path_idn ..." 1>&5 cf_cv_find_linkage_idn=maybe cf_test_CPPFLAGS="$CPPFLAGS" @@ -38227,7 +38312,7 @@ rm -f "conftest.$ac_objext" "conftest.$ac_ext" if test "$cf_cv_find_linkage_idn" = maybe ; then -echo "${as_me:-configure}:38230: testing Searching for idn library in FIND_LINKAGE(idn,) ..." 1>&5 +echo "${as_me:-configure}:38315: testing Searching for idn library in FIND_LINKAGE(idn,) ..." 1>&5 cf_save_LIBS="$LIBS" cf_save_LDFLAGS="$LDFLAGS" @@ -38302,13 +38387,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}:38305: testing ... testing $cf_cv_library_path_idn ..." 1>&5 +echo "${as_me:-configure}:38390: testing ... testing $cf_cv_library_path_idn ..." 1>&5 CPPFLAGS="$cf_test_CPPFLAGS" LIBS="-lidn $LIBICONV $cf_save_LIBS" LDFLAGS="$cf_save_LDFLAGS -L$cf_cv_library_path_idn" cat >"conftest.$ac_ext" <<_ACEOF -#line 38311 "configure" +#line 38396 "configure" #include "confdefs.h" #include <stdio.h> @@ -38326,21 +38411,21 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:38329: \"$ac_link\"") >&5 +if { (eval echo "$as_me:38414: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:38332: \$? = $ac_status" >&5 + echo "$as_me:38417: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:38335: \"$ac_try\"") >&5 + { (eval echo "$as_me:38420: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:38338: \$? = $ac_status" >&5 + echo "$as_me:38423: \$? = $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}:38343: testing ... found idn library in $cf_cv_library_path_idn ..." 1>&5 +echo "${as_me:-configure}:38428: testing ... found idn library in $cf_cv_library_path_idn ..." 1>&5 cf_cv_find_linkage_idn=yes cf_cv_library_file_idn="-lidn" @@ -38402,7 +38487,7 @@ if test -n "$cf_cv_header_path_idn" ; then CPPFLAGS="${CPPFLAGS}-I$cf_add_incdir" cat >"conftest.$ac_ext" <<_ACEOF -#line 38405 "configure" +#line 38490 "configure" #include "confdefs.h" #include <stdio.h> int @@ -38414,16 +38499,16 @@ printf("Hello") } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:38417: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:38502: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:38420: \$? = $ac_status" >&5 + echo "$as_me:38505: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:38423: \"$ac_try\"") >&5 + { (eval echo "$as_me:38508: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:38426: \$? = $ac_status" >&5 + echo "$as_me:38511: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then : else @@ -38440,7 +38525,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}:38443: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:38528: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -38476,7 +38561,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}:38479: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:38564: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -38501,7 +38586,7 @@ done LIBS="$cf_add_libs" else -{ echo "$as_me:38504: WARNING: Cannot find idn library" >&5 +{ echo "$as_me:38589: WARNING: Cannot find idn library" >&5 echo "$as_me: WARNING: Cannot find idn library" >&2;} fi @@ -38515,7 +38600,7 @@ fi fi -echo "$as_me:38518: checking if element-justification logic should be used" >&5 +echo "$as_me:38603: 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. @@ -38532,14 +38617,14 @@ else use_justify_elts=yes fi; -echo "$as_me:38535: result: $use_justify_elts" >&5 +echo "$as_me:38620: 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:38542: checking if partial-display should be used" >&5 +echo "$as_me:38627: 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. @@ -38556,14 +38641,14 @@ else use_partial_display=yes fi; -echo "$as_me:38559: result: $use_partial_display" >&5 +echo "$as_me:38644: 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:38566: checking if persistent-cookie logic should be used" >&5 +echo "$as_me:38651: 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. @@ -38580,14 +38665,14 @@ else use_filed_cookies=yes fi; -echo "$as_me:38583: result: $use_filed_cookies" >&5 +echo "$as_me:38668: 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:38590: checking if html source should be colorized" >&5 +echo "$as_me:38675: 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. @@ -38604,14 +38689,14 @@ else use_prettysrc=yes fi; -echo "$as_me:38607: result: $use_prettysrc" >&5 +echo "$as_me:38692: 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:38614: checking if progress-bar code should be used" >&5 +echo "$as_me:38699: 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. @@ -38628,14 +38713,14 @@ else use_progressbar=yes fi; -echo "$as_me:38631: result: $use_progressbar" >&5 +echo "$as_me:38716: 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:38638: checking if read-progress message should show ETA" >&5 +echo "$as_me:38723: 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. @@ -38652,14 +38737,14 @@ else use_read_eta=yes fi; -echo "$as_me:38655: result: $use_read_eta" >&5 +echo "$as_me:38740: 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:38662: checking if source caching should be used" >&5 +echo "$as_me:38747: 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. @@ -38676,14 +38761,14 @@ else use_source_cache=yes fi; -echo "$as_me:38679: result: $use_source_cache" >&5 +echo "$as_me:38764: 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:38686: checking if scrollbar code should be used" >&5 +echo "$as_me:38771: 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. @@ -38700,10 +38785,10 @@ else use_scrollbar=yes fi; -echo "$as_me:38703: result: $use_scrollbar" >&5 +echo "$as_me:38788: result: $use_scrollbar" >&5 echo "${ECHO_T}$use_scrollbar" >&6 -echo "$as_me:38706: checking if charset-selection logic should be used" >&5 +echo "$as_me:38791: 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. @@ -38720,14 +38805,14 @@ else use_charset_choice=no fi; -echo "$as_me:38723: result: $use_charset_choice" >&5 +echo "$as_me:38808: 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:38730: checking if you want to use external commands" >&5 +echo "$as_me:38815: 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. @@ -38744,7 +38829,7 @@ else use_externs=no fi; -echo "$as_me:38747: result: $use_externs" >&5 +echo "$as_me:38832: result: $use_externs" >&5 echo "${ECHO_T}$use_externs" >&6 if test "$use_externs" != "no" ; then @@ -38755,7 +38840,7 @@ EOF EXTRA_OBJS="$EXTRA_OBJS LYExtern\$o" fi -echo "$as_me:38758: checking if you want to use setfont support" >&5 +echo "$as_me:38843: 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. @@ -38772,7 +38857,7 @@ else use_setfont=no fi; -echo "$as_me:38775: result: $use_setfont" >&5 +echo "$as_me:38860: result: $use_setfont" >&5 echo "${ECHO_T}$use_setfont" >&6 if test "$use_setfont" = yes ; then case "$host_os" in @@ -38783,7 +38868,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:38786: checking for $ac_word" >&5 +echo "$as_me:38871: 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 @@ -38800,7 +38885,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:38803: found $ac_dir/$ac_word" >&5 + echo "$as_me:38888: found $ac_dir/$ac_word" >&5 break fi done @@ -38811,10 +38896,10 @@ fi SETFONT=$ac_cv_path_SETFONT if test -n "$SETFONT"; then - echo "$as_me:38814: result: $SETFONT" >&5 + echo "$as_me:38899: result: $SETFONT" >&5 echo "${ECHO_T}$SETFONT" >&6 else - echo "$as_me:38817: result: no" >&5 + echo "$as_me:38902: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -38873,7 +38958,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me:-configure}:38876: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me:-configure}:38961: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define SETFONT_PATH "$cf_path_prog" @@ -38891,19 +38976,19 @@ fi SETFONT=built-in test -n "$verbose" && echo " Assume $host_os has font-switching" 1>&6 -echo "${as_me:-configure}:38894: testing Assume $host_os has font-switching ..." 1>&5 +echo "${as_me:-configure}:38979: 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}:38901: testing Assume $host_os has no font-switching ..." 1>&5 +echo "${as_me:-configure}:38986: testing Assume $host_os has no font-switching ..." 1>&5 ;; esac if test -z "$SETFONT" ; then - { echo "$as_me:38906: WARNING: Cannot find a font-setting program" >&5 + { echo "$as_me:38991: WARNING: Cannot find a font-setting program" >&5 echo "$as_me: WARNING: Cannot find a font-setting program" >&2;} elif test "$SETFONT" != unknown ; then @@ -38914,7 +38999,7 @@ EOF fi fi -echo "$as_me:38917: checking if you want cgi-link support" >&5 +echo "$as_me:39002: 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. @@ -38931,10 +39016,10 @@ EOF else enableval=no fi; -echo "$as_me:38934: result: $enableval" >&5 +echo "$as_me:39019: result: $enableval" >&5 echo "${ECHO_T}$enableval" >&6 -echo "$as_me:38937: checking if you want change-exec support" >&5 +echo "$as_me:39022: 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. @@ -38951,14 +39036,14 @@ else use_change_exec=no fi; -echo "$as_me:38954: result: $use_change_exec" >&5 +echo "$as_me:39039: 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:38961: checking if you want exec-links support" >&5 +echo "$as_me:39046: 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. @@ -38975,14 +39060,14 @@ else use_exec_links=$enableval fi; -echo "$as_me:38978: result: $use_exec_links" >&5 +echo "$as_me:39063: 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:38985: checking if you want exec-scripts support" >&5 +echo "$as_me:39070: 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. @@ -38999,14 +39084,14 @@ else use_exec_scripts=$enableval fi; -echo "$as_me:39002: result: $use_exec_scripts" >&5 +echo "$as_me:39087: 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:39009: checking if you want internal-links feature" >&5 +echo "$as_me:39094: 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. @@ -39023,14 +39108,14 @@ else use_internal_links=no fi; -echo "$as_me:39026: result: $use_internal_links" >&5 +echo "$as_me:39111: result: $use_internal_links" >&5 echo "${ECHO_T}$use_internal_links" >&6 test "$use_internal_links" = yes && cat >>confdefs.h <<\EOF #define TRACK_INTERNAL_LINKS 1 EOF -echo "$as_me:39033: checking if you want to fork NSL requests" >&5 +echo "$as_me:39118: 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. @@ -39047,7 +39132,7 @@ else use_nsl_fork=no fi; -echo "$as_me:39050: result: $use_nsl_fork" >&5 +echo "$as_me:39135: result: $use_nsl_fork" >&5 echo "${ECHO_T}$use_nsl_fork" >&6 if test "$use_nsl_fork" = yes ; then case "$host_os" in @@ -39068,7 +39153,7 @@ EOF esac fi -echo "$as_me:39071: checking if you want to log URL requests via syslog" >&5 +echo "$as_me:39156: 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. @@ -39085,14 +39170,14 @@ else use_syslog=no fi; -echo "$as_me:39088: result: $use_syslog" >&5 +echo "$as_me:39173: 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:39095: checking if you want to underline links" >&5 +echo "$as_me:39180: 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. @@ -39109,7 +39194,7 @@ else use_underline=no fi; -echo "$as_me:39112: result: $use_underline" >&5 +echo "$as_me:39197: result: $use_underline" >&5 echo "${ECHO_T}$use_underline" >&6 test "$use_underline" = yes && cat >>confdefs.h <<\EOF @@ -39121,7 +39206,7 @@ cat >>confdefs.h <<\EOF #define UNDERLINE_LINKS 0 EOF -echo "$as_me:39124: checking if help files should be gzip'ed" >&5 +echo "$as_me:39209: 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. @@ -39138,10 +39223,10 @@ else use_gzip_help=no fi; -echo "$as_me:39141: result: $use_gzip_help" >&5 +echo "$as_me:39226: result: $use_gzip_help" >&5 echo "${ECHO_T}$use_gzip_help" >&6 -echo "$as_me:39144: checking if you want to use libbz2 for decompression of some bzip2 files" >&5 +echo "$as_me:39229: 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. @@ -39151,7 +39236,7 @@ if test "${with_bzlib+set}" = set; then else use_bzlib=no fi; -echo "$as_me:39154: result: $use_bzlib" >&5 +echo "$as_me:39239: result: $use_bzlib" >&5 echo "${ECHO_T}$use_bzlib" >&6 if test ".$use_bzlib" != ".no" ; then @@ -39193,7 +39278,7 @@ if test -n "$cf_searchpath/include" ; then CPPFLAGS="${CPPFLAGS}-I$cf_add_incdir" cat >"conftest.$ac_ext" <<_ACEOF -#line 39196 "configure" +#line 39281 "configure" #include "confdefs.h" #include <stdio.h> int @@ -39205,16 +39290,16 @@ printf("Hello") } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:39208: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:39293: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:39211: \$? = $ac_status" >&5 + echo "$as_me:39296: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:39214: \"$ac_try\"") >&5 + { (eval echo "$as_me:39299: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:39217: \$? = $ac_status" >&5 + echo "$as_me:39302: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then : else @@ -39231,7 +39316,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}:39234: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:39319: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -39277,7 +39362,7 @@ if test -n "$cf_searchpath/../include" ; then CPPFLAGS="${CPPFLAGS}-I$cf_add_incdir" cat >"conftest.$ac_ext" <<_ACEOF -#line 39280 "configure" +#line 39365 "configure" #include "confdefs.h" #include <stdio.h> int @@ -39289,16 +39374,16 @@ printf("Hello") } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:39292: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:39377: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:39295: \$? = $ac_status" >&5 + echo "$as_me:39380: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:39298: \"$ac_try\"") >&5 + { (eval echo "$as_me:39383: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:39301: \$? = $ac_status" >&5 + echo "$as_me:39386: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then : else @@ -39315,7 +39400,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}:39318: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:39403: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -39333,7 +39418,7 @@ echo "${as_me:-configure}:39318: testing adding $cf_add_incdir to include-path . fi else -{ { echo "$as_me:39336: error: cannot find under $use_bzlib" >&5 +{ { echo "$as_me:39421: error: cannot find under $use_bzlib" >&5 echo "$as_me: error: cannot find under $use_bzlib" >&2;} { (exit 1); exit 1; }; } fi @@ -39358,7 +39443,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}:39361: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:39446: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -39387,7 +39472,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}:39390: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:39475: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -39396,7 +39481,7 @@ echo "${as_me:-configure}:39390: testing adding $cf_add_libdir to library-path . fi else -{ { echo "$as_me:39399: error: cannot find under $use_bzlib" >&5 +{ { echo "$as_me:39484: error: cannot find under $use_bzlib" >&5 echo "$as_me: error: cannot find under $use_bzlib" >&2;} { (exit 1); exit 1; }; } fi @@ -39410,12 +39495,12 @@ esac cf_cv_header_path_bz2= cf_cv_library_path_bz2= -echo "${as_me:-configure}:39413: testing Starting FIND_LINKAGE(bz2,bzlib) ..." 1>&5 +echo "${as_me:-configure}:39498: testing Starting FIND_LINKAGE(bz2,bzlib) ..." 1>&5 cf_save_LIBS="$LIBS" cat >"conftest.$ac_ext" <<_ACEOF -#line 39418 "configure" +#line 39503 "configure" #include "confdefs.h" #include <stdio.h> @@ -39432,16 +39517,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:39435: \"$ac_link\"") >&5 +if { (eval echo "$as_me:39520: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:39438: \$? = $ac_status" >&5 + echo "$as_me:39523: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:39441: \"$ac_try\"") >&5 + { (eval echo "$as_me:39526: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:39444: \$? = $ac_status" >&5 + echo "$as_me:39529: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_find_linkage_bz2=yes @@ -39455,7 +39540,7 @@ cat "conftest.$ac_ext" >&5 LIBS="-lbz2 $cf_save_LIBS" cat >"conftest.$ac_ext" <<_ACEOF -#line 39458 "configure" +#line 39543 "configure" #include "confdefs.h" #include <stdio.h> @@ -39472,16 +39557,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:39475: \"$ac_link\"") >&5 +if { (eval echo "$as_me:39560: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:39478: \$? = $ac_status" >&5 + echo "$as_me:39563: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:39481: \"$ac_try\"") >&5 + { (eval echo "$as_me:39566: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:39484: \$? = $ac_status" >&5 + echo "$as_me:39569: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_find_linkage_bz2=yes @@ -39498,9 +39583,9 @@ cat "conftest.$ac_ext" >&5 test -n "$verbose" && echo " find linkage for bz2 library" 1>&6 -echo "${as_me:-configure}:39501: testing find linkage for bz2 library ..." 1>&5 +echo "${as_me:-configure}:39586: testing find linkage for bz2 library ..." 1>&5 -echo "${as_me:-configure}:39503: testing Searching for headers in FIND_LINKAGE(bz2,bzlib) ..." 1>&5 +echo "${as_me:-configure}:39588: testing Searching for headers in FIND_LINKAGE(bz2,bzlib) ..." 1>&5 cf_save_CPPFLAGS="$CPPFLAGS" cf_test_CPPFLAGS="$CPPFLAGS" @@ -39591,7 +39676,7 @@ cf_search="$cf_search $cf_header_path_list" 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}:39594: testing ... testing $cf_cv_header_path_bz2 ..." 1>&5 +echo "${as_me:-configure}:39679: testing ... testing $cf_cv_header_path_bz2 ..." 1>&5 CPPFLAGS="$cf_save_CPPFLAGS" @@ -39599,7 +39684,7 @@ echo "${as_me:-configure}:39594: testing ... testing $cf_cv_header_path_bz2 ..." CPPFLAGS="${CPPFLAGS}-I$cf_cv_header_path_bz2" cat >"conftest.$ac_ext" <<_ACEOF -#line 39602 "configure" +#line 39687 "configure" #include "confdefs.h" #include <stdio.h> @@ -39616,21 +39701,21 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:39619: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:39704: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:39622: \$? = $ac_status" >&5 + echo "$as_me:39707: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:39625: \"$ac_try\"") >&5 + { (eval echo "$as_me:39710: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:39628: \$? = $ac_status" >&5 + echo "$as_me:39713: \$? = $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}:39633: testing ... found bz2 headers in $cf_cv_header_path_bz2 ..." 1>&5 +echo "${as_me:-configure}:39718: testing ... found bz2 headers in $cf_cv_header_path_bz2 ..." 1>&5 cf_cv_find_linkage_bz2=maybe cf_test_CPPFLAGS="$CPPFLAGS" @@ -39648,7 +39733,7 @@ rm -f "conftest.$ac_objext" "conftest.$ac_ext" if test "$cf_cv_find_linkage_bz2" = maybe ; then -echo "${as_me:-configure}:39651: testing Searching for bz2 library in FIND_LINKAGE(bz2,bzlib) ..." 1>&5 +echo "${as_me:-configure}:39736: testing Searching for bz2 library in FIND_LINKAGE(bz2,bzlib) ..." 1>&5 cf_save_LIBS="$LIBS" cf_save_LDFLAGS="$LDFLAGS" @@ -39656,7 +39741,7 @@ echo "${as_me:-configure}:39651: testing Searching for bz2 library in FIND_LINKA CPPFLAGS="$cf_test_CPPFLAGS" LIBS="-lbz2 $cf_save_LIBS" cat >"conftest.$ac_ext" <<_ACEOF -#line 39659 "configure" +#line 39744 "configure" #include "confdefs.h" #include <stdio.h> @@ -39673,21 +39758,21 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:39676: \"$ac_link\"") >&5 +if { (eval echo "$as_me:39761: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:39679: \$? = $ac_status" >&5 + echo "$as_me:39764: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:39682: \"$ac_try\"") >&5 + { (eval echo "$as_me:39767: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:39685: \$? = $ac_status" >&5 + echo "$as_me:39770: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then test -n "$verbose" && echo " ... found bz2 library in system" 1>&6 -echo "${as_me:-configure}:39690: testing ... found bz2 library in system ..." 1>&5 +echo "${as_me:-configure}:39775: testing ... found bz2 library in system ..." 1>&5 cf_cv_find_linkage_bz2=yes else @@ -39768,13 +39853,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}:39771: testing ... testing $cf_cv_library_path_bz2 ..." 1>&5 +echo "${as_me:-configure}:39856: 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 39777 "configure" +#line 39862 "configure" #include "confdefs.h" #include <stdio.h> @@ -39791,21 +39876,21 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:39794: \"$ac_link\"") >&5 +if { (eval echo "$as_me:39879: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:39797: \$? = $ac_status" >&5 + echo "$as_me:39882: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:39800: \"$ac_try\"") >&5 + { (eval echo "$as_me:39885: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:39803: \$? = $ac_status" >&5 + echo "$as_me:39888: \$? = $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}:39808: testing ... found bz2 library in $cf_cv_library_path_bz2 ..." 1>&5 +echo "${as_me:-configure}:39893: testing ... found bz2 library in $cf_cv_library_path_bz2 ..." 1>&5 cf_cv_find_linkage_bz2=yes cf_cv_library_file_bz2="-lbz2" @@ -39867,7 +39952,7 @@ if test -n "$cf_cv_header_path_bz2" ; then CPPFLAGS="${CPPFLAGS}-I$cf_add_incdir" cat >"conftest.$ac_ext" <<_ACEOF -#line 39870 "configure" +#line 39955 "configure" #include "confdefs.h" #include <stdio.h> int @@ -39879,16 +39964,16 @@ printf("Hello") } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:39882: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:39967: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:39885: \$? = $ac_status" >&5 + echo "$as_me:39970: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:39888: \"$ac_try\"") >&5 + { (eval echo "$as_me:39973: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:39891: \$? = $ac_status" >&5 + echo "$as_me:39976: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then : else @@ -39905,7 +39990,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}:39908: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:39993: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -39941,7 +40026,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}:39944: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:40029: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -39966,7 +40051,7 @@ done LIBS="$cf_add_libs" else -{ echo "$as_me:39969: WARNING: Cannot find bz2 library" >&5 +{ echo "$as_me:40054: WARNING: Cannot find bz2 library" >&5 echo "$as_me: WARNING: Cannot find bz2 library" >&2;} fi @@ -39977,7 +40062,7 @@ EOF fi -echo "$as_me:39980: checking if you want to use zlib for decompression of some gzip files" >&5 +echo "$as_me:40065: 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. @@ -39987,7 +40072,7 @@ if test "${with_zlib+set}" = set; then else use_zlib=no fi; -echo "$as_me:39990: result: $use_zlib" >&5 +echo "$as_me:40075: result: $use_zlib" >&5 echo "${ECHO_T}$use_zlib" >&6 if test ".$use_zlib" != ".no" ; then @@ -40029,7 +40114,7 @@ if test -n "$cf_searchpath/include" ; then CPPFLAGS="${CPPFLAGS}-I$cf_add_incdir" cat >"conftest.$ac_ext" <<_ACEOF -#line 40032 "configure" +#line 40117 "configure" #include "confdefs.h" #include <stdio.h> int @@ -40041,16 +40126,16 @@ printf("Hello") } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:40044: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:40129: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:40047: \$? = $ac_status" >&5 + echo "$as_me:40132: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:40050: \"$ac_try\"") >&5 + { (eval echo "$as_me:40135: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:40053: \$? = $ac_status" >&5 + echo "$as_me:40138: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then : else @@ -40067,7 +40152,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}:40070: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:40155: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -40113,7 +40198,7 @@ if test -n "$cf_searchpath/../include" ; then CPPFLAGS="${CPPFLAGS}-I$cf_add_incdir" cat >"conftest.$ac_ext" <<_ACEOF -#line 40116 "configure" +#line 40201 "configure" #include "confdefs.h" #include <stdio.h> int @@ -40125,16 +40210,16 @@ printf("Hello") } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:40128: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:40213: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:40131: \$? = $ac_status" >&5 + echo "$as_me:40216: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:40134: \"$ac_try\"") >&5 + { (eval echo "$as_me:40219: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:40137: \$? = $ac_status" >&5 + echo "$as_me:40222: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then : else @@ -40151,7 +40236,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}:40154: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:40239: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -40169,7 +40254,7 @@ echo "${as_me:-configure}:40154: testing adding $cf_add_incdir to include-path . fi else -{ { echo "$as_me:40172: error: cannot find under $use_zlib" >&5 +{ { echo "$as_me:40257: error: cannot find under $use_zlib" >&5 echo "$as_me: error: cannot find under $use_zlib" >&2;} { (exit 1); exit 1; }; } fi @@ -40194,7 +40279,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}:40197: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:40282: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -40223,7 +40308,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}:40226: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:40311: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -40232,7 +40317,7 @@ echo "${as_me:-configure}:40226: testing adding $cf_add_libdir to library-path . fi else -{ { echo "$as_me:40235: error: cannot find under $use_zlib" >&5 +{ { echo "$as_me:40320: error: cannot find under $use_zlib" >&5 echo "$as_me: error: cannot find under $use_zlib" >&2;} { (exit 1); exit 1; }; } fi @@ -40246,12 +40331,12 @@ esac cf_cv_header_path_z= cf_cv_library_path_z= -echo "${as_me:-configure}:40249: testing Starting FIND_LINKAGE(z,zlib) ..." 1>&5 +echo "${as_me:-configure}:40334: testing Starting FIND_LINKAGE(z,zlib) ..." 1>&5 cf_save_LIBS="$LIBS" cat >"conftest.$ac_ext" <<_ACEOF -#line 40254 "configure" +#line 40339 "configure" #include "confdefs.h" #include <zlib.h> @@ -40267,16 +40352,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:40270: \"$ac_link\"") >&5 +if { (eval echo "$as_me:40355: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:40273: \$? = $ac_status" >&5 + echo "$as_me:40358: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:40276: \"$ac_try\"") >&5 + { (eval echo "$as_me:40361: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:40279: \$? = $ac_status" >&5 + echo "$as_me:40364: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_find_linkage_z=yes @@ -40290,7 +40375,7 @@ cat "conftest.$ac_ext" >&5 LIBS="-lz $cf_save_LIBS" cat >"conftest.$ac_ext" <<_ACEOF -#line 40293 "configure" +#line 40378 "configure" #include "confdefs.h" #include <zlib.h> @@ -40306,16 +40391,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:40309: \"$ac_link\"") >&5 +if { (eval echo "$as_me:40394: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:40312: \$? = $ac_status" >&5 + echo "$as_me:40397: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:40315: \"$ac_try\"") >&5 + { (eval echo "$as_me:40400: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:40318: \$? = $ac_status" >&5 + echo "$as_me:40403: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_find_linkage_z=yes @@ -40332,9 +40417,9 @@ cat "conftest.$ac_ext" >&5 test -n "$verbose" && echo " find linkage for z library" 1>&6 -echo "${as_me:-configure}:40335: testing find linkage for z library ..." 1>&5 +echo "${as_me:-configure}:40420: testing find linkage for z library ..." 1>&5 -echo "${as_me:-configure}:40337: testing Searching for headers in FIND_LINKAGE(z,zlib) ..." 1>&5 +echo "${as_me:-configure}:40422: testing Searching for headers in FIND_LINKAGE(z,zlib) ..." 1>&5 cf_save_CPPFLAGS="$CPPFLAGS" cf_test_CPPFLAGS="$CPPFLAGS" @@ -40425,7 +40510,7 @@ cf_search="$cf_search $cf_header_path_list" 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}:40428: testing ... testing $cf_cv_header_path_z ..." 1>&5 +echo "${as_me:-configure}:40513: testing ... testing $cf_cv_header_path_z ..." 1>&5 CPPFLAGS="$cf_save_CPPFLAGS" @@ -40433,7 +40518,7 @@ echo "${as_me:-configure}:40428: testing ... testing $cf_cv_header_path_z ..." 1 CPPFLAGS="${CPPFLAGS}-I$cf_cv_header_path_z" cat >"conftest.$ac_ext" <<_ACEOF -#line 40436 "configure" +#line 40521 "configure" #include "confdefs.h" #include <zlib.h> @@ -40449,21 +40534,21 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:40452: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:40537: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:40455: \$? = $ac_status" >&5 + echo "$as_me:40540: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:40458: \"$ac_try\"") >&5 + { (eval echo "$as_me:40543: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:40461: \$? = $ac_status" >&5 + echo "$as_me:40546: \$? = $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}:40466: testing ... found z headers in $cf_cv_header_path_z ..." 1>&5 +echo "${as_me:-configure}:40551: testing ... found z headers in $cf_cv_header_path_z ..." 1>&5 cf_cv_find_linkage_z=maybe cf_test_CPPFLAGS="$CPPFLAGS" @@ -40481,7 +40566,7 @@ rm -f "conftest.$ac_objext" "conftest.$ac_ext" if test "$cf_cv_find_linkage_z" = maybe ; then -echo "${as_me:-configure}:40484: testing Searching for z library in FIND_LINKAGE(z,zlib) ..." 1>&5 +echo "${as_me:-configure}:40569: testing Searching for z library in FIND_LINKAGE(z,zlib) ..." 1>&5 cf_save_LIBS="$LIBS" cf_save_LDFLAGS="$LDFLAGS" @@ -40489,7 +40574,7 @@ echo "${as_me:-configure}:40484: testing Searching for z library in FIND_LINKAGE CPPFLAGS="$cf_test_CPPFLAGS" LIBS="-lz $cf_save_LIBS" cat >"conftest.$ac_ext" <<_ACEOF -#line 40492 "configure" +#line 40577 "configure" #include "confdefs.h" #include <zlib.h> @@ -40505,21 +40590,21 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:40508: \"$ac_link\"") >&5 +if { (eval echo "$as_me:40593: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:40511: \$? = $ac_status" >&5 + echo "$as_me:40596: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:40514: \"$ac_try\"") >&5 + { (eval echo "$as_me:40599: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:40517: \$? = $ac_status" >&5 + echo "$as_me:40602: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then test -n "$verbose" && echo " ... found z library in system" 1>&6 -echo "${as_me:-configure}:40522: testing ... found z library in system ..." 1>&5 +echo "${as_me:-configure}:40607: testing ... found z library in system ..." 1>&5 cf_cv_find_linkage_z=yes else @@ -40600,13 +40685,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}:40603: testing ... testing $cf_cv_library_path_z ..." 1>&5 +echo "${as_me:-configure}:40688: 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 40609 "configure" +#line 40694 "configure" #include "confdefs.h" #include <zlib.h> @@ -40622,21 +40707,21 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:40625: \"$ac_link\"") >&5 +if { (eval echo "$as_me:40710: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:40628: \$? = $ac_status" >&5 + echo "$as_me:40713: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:40631: \"$ac_try\"") >&5 + { (eval echo "$as_me:40716: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:40634: \$? = $ac_status" >&5 + echo "$as_me:40719: \$? = $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}:40639: testing ... found z library in $cf_cv_library_path_z ..." 1>&5 +echo "${as_me:-configure}:40724: testing ... found z library in $cf_cv_library_path_z ..." 1>&5 cf_cv_find_linkage_z=yes cf_cv_library_file_z="-lz" @@ -40698,7 +40783,7 @@ if test -n "$cf_cv_header_path_z" ; then CPPFLAGS="${CPPFLAGS}-I$cf_add_incdir" cat >"conftest.$ac_ext" <<_ACEOF -#line 40701 "configure" +#line 40786 "configure" #include "confdefs.h" #include <stdio.h> int @@ -40710,16 +40795,16 @@ printf("Hello") } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:40713: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:40798: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:40716: \$? = $ac_status" >&5 + echo "$as_me:40801: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:40719: \"$ac_try\"") >&5 + { (eval echo "$as_me:40804: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:40722: \$? = $ac_status" >&5 + echo "$as_me:40807: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then : else @@ -40736,7 +40821,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}:40739: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:40824: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -40772,7 +40857,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}:40775: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:40860: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -40797,7 +40882,7 @@ done LIBS="$cf_add_libs" else -{ echo "$as_me:40800: WARNING: Cannot find z library" >&5 +{ echo "$as_me:40885: WARNING: Cannot find z library" >&5 echo "$as_me: WARNING: Cannot find z library" >&2;} fi @@ -40806,13 +40891,13 @@ for ac_func in \ do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` -echo "$as_me:40809: checking for $ac_func" >&5 +echo "$as_me:40894: 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 40815 "configure" +#line 40900 "configure" #include "confdefs.h" #define $ac_func autoconf_temporary #include <limits.h> /* least-intrusive standard header which defines gcc2 __stub macros */ @@ -40843,16 +40928,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:40846: \"$ac_link\"") >&5 +if { (eval echo "$as_me:40931: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:40849: \$? = $ac_status" >&5 + echo "$as_me:40934: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:40852: \"$ac_try\"") >&5 + { (eval echo "$as_me:40937: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:40855: \$? = $ac_status" >&5 + echo "$as_me:40940: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then eval "$as_ac_var=yes" else @@ -40862,7 +40947,7 @@ eval "$as_ac_var=no" fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:40865: result: `eval echo '${'"$as_ac_var"'}'`" >&5 +echo "$as_me:40950: 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 @@ -40879,7 +40964,7 @@ EOF fi -echo "$as_me:40882: checking if you want to exclude FINGER code" >&5 +echo "$as_me:40967: 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. @@ -40896,14 +40981,14 @@ else use_finger=no fi; -echo "$as_me:40899: result: $use_finger" >&5 +echo "$as_me:40984: 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:40906: checking if you want to exclude GOPHER code" >&5 +echo "$as_me:40991: 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. @@ -40920,14 +41005,14 @@ else use_gopher=no fi; -echo "$as_me:40923: result: $use_gopher" >&5 +echo "$as_me:41008: 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:40930: checking if you want to exclude NEWS code" >&5 +echo "$as_me:41015: 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. @@ -40944,14 +41029,14 @@ else use_news=no fi; -echo "$as_me:40947: result: $use_news" >&5 +echo "$as_me:41032: 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:40954: checking if you want to exclude FTP code" >&5 +echo "$as_me:41039: 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. @@ -40968,14 +41053,14 @@ else use_ftp=no fi; -echo "$as_me:40971: result: $use_ftp" >&5 +echo "$as_me:41056: result: $use_ftp" >&5 echo "${ECHO_T}$use_ftp" >&6 test "$use_ftp" != "no" && cat >>confdefs.h <<\EOF #define DISABLE_FTP 1 EOF -echo "$as_me:40978: checking if you want to include WAIS code" >&5 +echo "$as_me:41063: checking if you want to include WAIS code" >&5 echo $ECHO_N "checking if you want to include WAIS code... $ECHO_C" >&6 # Check whether --enable-wais or --disable-wais was given. @@ -40992,13 +41077,13 @@ else use_wais=no fi; -echo "$as_me:40995: result: $use_wais" >&5 +echo "$as_me:41080: result: $use_wais" >&5 echo "${ECHO_T}$use_wais" >&6 MAKE_WAIS="#" if test "$use_wais" != "no" then - echo "$as_me:41001: checking for fs_free in -lwais" >&5 + echo "$as_me:41086: checking for fs_free in -lwais" >&5 echo $ECHO_N "checking for fs_free in -lwais... $ECHO_C" >&6 if test "${ac_cv_lib_wais_fs_free+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -41006,7 +41091,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lwais $LIBS" cat >"conftest.$ac_ext" <<_ACEOF -#line 41009 "configure" +#line 41094 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -41025,16 +41110,16 @@ fs_free (); } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:41028: \"$ac_link\"") >&5 +if { (eval echo "$as_me:41113: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:41031: \$? = $ac_status" >&5 + echo "$as_me:41116: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:41034: \"$ac_try\"") >&5 + { (eval echo "$as_me:41119: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:41037: \$? = $ac_status" >&5 + echo "$as_me:41122: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_lib_wais_fs_free=yes else @@ -41045,18 +41130,18 @@ fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:41048: result: $ac_cv_lib_wais_fs_free" >&5 +echo "$as_me:41133: result: $ac_cv_lib_wais_fs_free" >&5 echo "${ECHO_T}$ac_cv_lib_wais_fs_free" >&6 if test "$ac_cv_lib_wais_fs_free" = yes; then -echo "$as_me:41052: checking if -lm needed for math functions" >&5 +echo "$as_me:41137: checking if -lm needed for math functions" >&5 echo $ECHO_N "checking if -lm needed for math functions... $ECHO_C" >&6 if test "${cf_cv_need_libm+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >"conftest.$ac_ext" <<_ACEOF -#line 41059 "configure" +#line 41144 "configure" #include "confdefs.h" #include <stdio.h> @@ -41072,16 +41157,16 @@ double x = rand(); printf("result = %g\\n", sin(x)) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:41075: \"$ac_link\"") >&5 +if { (eval echo "$as_me:41160: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:41078: \$? = $ac_status" >&5 + echo "$as_me:41163: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:41081: \"$ac_try\"") >&5 + { (eval echo "$as_me:41166: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:41084: \$? = $ac_status" >&5 + echo "$as_me:41169: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_need_libm=no else @@ -41091,7 +41176,7 @@ cf_cv_need_libm=yes fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:41094: result: $cf_cv_need_libm" >&5 +echo "$as_me:41179: result: $cf_cv_need_libm" >&5 echo "${ECHO_T}$cf_cv_need_libm" >&6 if test "$cf_cv_need_libm" = yes then @@ -41133,23 +41218,23 @@ LIBS="$cf_add_libs" for ac_header in wais.h do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` -echo "$as_me:41136: checking for $ac_header" >&5 +echo "$as_me:41221: 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 41142 "configure" +#line 41227 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:41146: \"$ac_cpp "conftest.$ac_ext"\"") >&5 +if { (eval echo "$as_me:41231: \"$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:41152: \$? = $ac_status" >&5 + echo "$as_me:41237: \$? = $ac_status" >&5 (exit "$ac_status"); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -41168,7 +41253,7 @@ else fi rm -f conftest.err "conftest.$ac_ext" fi -echo "$as_me:41171: result: `eval echo '${'"$as_ac_Header"'}'`" >&5 +echo "$as_me:41256: 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 @@ -41181,7 +41266,7 @@ done MAKE_WAIS= else - { echo "$as_me:41184: WARNING: could not find WAIS library" >&5 + { echo "$as_me:41269: WARNING: could not find WAIS library" >&5 echo "$as_me: WARNING: could not find WAIS library" >&2;} fi @@ -41189,7 +41274,7 @@ fi # 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:41192: checking if directory-editor code should be used" >&5 +echo "$as_me:41277: 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. @@ -41206,7 +41291,7 @@ else use_dired=yes fi; -echo "$as_me:41209: result: $use_dired" >&5 +echo "$as_me:41294: result: $use_dired" >&5 echo "${ECHO_T}$use_dired" >&6 if test ".$use_dired" != ".no" ; then @@ -41216,7 +41301,7 @@ cat >>confdefs.h <<\EOF #define DIRED_SUPPORT 1 EOF - echo "$as_me:41219: checking if you wish to allow extracting from archives via DirEd" >&5 + echo "$as_me:41304: 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. @@ -41233,10 +41318,10 @@ EOF else enableval=yes fi; - echo "$as_me:41236: result: $enableval" >&5 + echo "$as_me:41321: result: $enableval" >&5 echo "${ECHO_T}$enableval" >&6 - echo "$as_me:41239: checking if DirEd mode should override keys" >&5 + echo "$as_me:41324: 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. @@ -41260,10 +41345,10 @@ cat >>confdefs.h <<\EOF EOF fi; - echo "$as_me:41263: result: $enableval" >&5 + echo "$as_me:41348: result: $enableval" >&5 echo "${ECHO_T}$enableval" >&6 - echo "$as_me:41266: checking if you wish to allow permissions commands via DirEd" >&5 + echo "$as_me:41351: 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. @@ -41287,10 +41372,10 @@ cat >>confdefs.h <<\EOF EOF fi; - echo "$as_me:41290: result: $enableval" >&5 + echo "$as_me:41375: result: $enableval" >&5 echo "${ECHO_T}$enableval" >&6 - echo "$as_me:41293: checking if you wish to allow executable-permission commands via DirEd" >&5 + echo "$as_me:41378: 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. @@ -41307,10 +41392,10 @@ EOF else enableval=yes fi; - echo "$as_me:41310: result: $enableval" >&5 + echo "$as_me:41395: result: $enableval" >&5 echo "${ECHO_T}$enableval" >&6 - echo "$as_me:41313: checking if you wish to allow \"tar\" commands from DirEd" >&5 + echo "$as_me:41398: 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. @@ -41334,10 +41419,10 @@ cat >>confdefs.h <<\EOF EOF fi; - echo "$as_me:41337: result: $enableval" >&5 + echo "$as_me:41422: result: $enableval" >&5 echo "${ECHO_T}$enableval" >&6 - echo "$as_me:41340: checking if you wish to allow \"uudecode\" commands from DirEd" >&5 + echo "$as_me:41425: 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. @@ -41361,10 +41446,10 @@ cat >>confdefs.h <<\EOF EOF fi; - echo "$as_me:41364: result: $enableval" >&5 + echo "$as_me:41449: result: $enableval" >&5 echo "${ECHO_T}$enableval" >&6 - echo "$as_me:41367: checking if you wish to allow \"zip\" and \"unzip\" commands from DirEd" >&5 + echo "$as_me:41452: 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. @@ -41388,10 +41473,10 @@ cat >>confdefs.h <<\EOF EOF fi; - echo "$as_me:41391: result: $enableval" >&5 + echo "$as_me:41476: result: $enableval" >&5 echo "${ECHO_T}$enableval" >&6 - echo "$as_me:41394: checking if you wish to allow \"gzip\" and \"gunzip\" commands from DirEd" >&5 + echo "$as_me:41479: 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. @@ -41415,11 +41500,11 @@ cat >>confdefs.h <<\EOF EOF fi; - echo "$as_me:41418: result: $enableval" >&5 + echo "$as_me:41503: result: $enableval" >&5 echo "${ECHO_T}$enableval" >&6 fi -echo "$as_me:41422: checking if you want long-directory listings" >&5 +echo "$as_me:41507: 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. @@ -41443,10 +41528,10 @@ cat >>confdefs.h <<\EOF EOF fi; -echo "$as_me:41446: result: $enableval" >&5 +echo "$as_me:41531: result: $enableval" >&5 echo "${ECHO_T}$enableval" >&6 -echo "$as_me:41449: checking if parent-directory references are permitted" >&5 +echo "$as_me:41534: 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. @@ -41463,7 +41548,7 @@ EOF else enableval=yes fi; -echo "$as_me:41466: result: $enableval" >&5 +echo "$as_me:41551: result: $enableval" >&5 echo "${ECHO_T}$enableval" >&6 test -z "$TELNET" && TELNET="telnet" @@ -41471,7 +41556,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:41474: checking for $ac_word" >&5 +echo "$as_me:41559: 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 @@ -41488,7 +41573,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:41491: found $ac_dir/$ac_word" >&5 + echo "$as_me:41576: found $ac_dir/$ac_word" >&5 break fi done @@ -41499,10 +41584,10 @@ fi TELNET=$ac_cv_path_TELNET if test -n "$TELNET"; then - echo "$as_me:41502: result: $TELNET" >&5 + echo "$as_me:41587: result: $TELNET" >&5 echo "${ECHO_T}$TELNET" >&6 else - echo "$as_me:41505: result: no" >&5 + echo "$as_me:41590: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -41561,7 +41646,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me:-configure}:41564: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me:-configure}:41649: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define TELNET_PATH "$cf_path_prog" @@ -41579,7 +41664,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:41582: checking for $ac_word" >&5 +echo "$as_me:41667: 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 @@ -41596,7 +41681,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:41599: found $ac_dir/$ac_word" >&5 + echo "$as_me:41684: found $ac_dir/$ac_word" >&5 break fi done @@ -41607,10 +41692,10 @@ fi TN3270=$ac_cv_path_TN3270 if test -n "$TN3270"; then - echo "$as_me:41610: result: $TN3270" >&5 + echo "$as_me:41695: result: $TN3270" >&5 echo "${ECHO_T}$TN3270" >&6 else - echo "$as_me:41613: result: no" >&5 + echo "$as_me:41698: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -41669,7 +41754,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me:-configure}:41672: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me:-configure}:41757: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define TN3270_PATH "$cf_path_prog" @@ -41687,7 +41772,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:41690: checking for $ac_word" >&5 +echo "$as_me:41775: 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 @@ -41704,7 +41789,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:41707: found $ac_dir/$ac_word" >&5 + echo "$as_me:41792: found $ac_dir/$ac_word" >&5 break fi done @@ -41715,10 +41800,10 @@ fi RLOGIN=$ac_cv_path_RLOGIN if test -n "$RLOGIN"; then - echo "$as_me:41718: result: $RLOGIN" >&5 + echo "$as_me:41803: result: $RLOGIN" >&5 echo "${ECHO_T}$RLOGIN" >&6 else - echo "$as_me:41721: result: no" >&5 + echo "$as_me:41806: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -41777,7 +41862,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me:-configure}:41780: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me:-configure}:41865: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define RLOGIN_PATH "$cf_path_prog" @@ -41795,7 +41880,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:41798: checking for $ac_word" >&5 +echo "$as_me:41883: 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 @@ -41812,7 +41897,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:41815: found $ac_dir/$ac_word" >&5 + echo "$as_me:41900: found $ac_dir/$ac_word" >&5 break fi done @@ -41823,10 +41908,10 @@ fi MV=$ac_cv_path_MV if test -n "$MV"; then - echo "$as_me:41826: result: $MV" >&5 + echo "$as_me:41911: result: $MV" >&5 echo "${ECHO_T}$MV" >&6 else - echo "$as_me:41829: result: no" >&5 + echo "$as_me:41914: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -41885,7 +41970,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me:-configure}:41888: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me:-configure}:41973: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define MV_PATH "$cf_path_prog" @@ -41903,7 +41988,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:41906: checking for $ac_word" >&5 +echo "$as_me:41991: 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 @@ -41920,7 +42005,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:41923: found $ac_dir/$ac_word" >&5 + echo "$as_me:42008: found $ac_dir/$ac_word" >&5 break fi done @@ -41931,10 +42016,10 @@ fi GZIP=$ac_cv_path_GZIP if test -n "$GZIP"; then - echo "$as_me:41934: result: $GZIP" >&5 + echo "$as_me:42019: result: $GZIP" >&5 echo "${ECHO_T}$GZIP" >&6 else - echo "$as_me:41937: result: no" >&5 + echo "$as_me:42022: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -41993,7 +42078,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me:-configure}:41996: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me:-configure}:42081: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define GZIP_PATH "$cf_path_prog" @@ -42011,7 +42096,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:42014: checking for $ac_word" >&5 +echo "$as_me:42099: 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 @@ -42028,7 +42113,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:42031: found $ac_dir/$ac_word" >&5 + echo "$as_me:42116: found $ac_dir/$ac_word" >&5 break fi done @@ -42039,10 +42124,10 @@ fi UNCOMPRESS=$ac_cv_path_UNCOMPRESS if test -n "$UNCOMPRESS"; then - echo "$as_me:42042: result: $UNCOMPRESS" >&5 + echo "$as_me:42127: result: $UNCOMPRESS" >&5 echo "${ECHO_T}$UNCOMPRESS" >&6 else - echo "$as_me:42045: result: no" >&5 + echo "$as_me:42130: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -42101,7 +42186,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me:-configure}:42104: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me:-configure}:42189: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define UNCOMPRESS_PATH "$cf_path_prog" @@ -42119,7 +42204,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:42122: checking for $ac_word" >&5 +echo "$as_me:42207: 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 @@ -42136,7 +42221,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:42139: found $ac_dir/$ac_word" >&5 + echo "$as_me:42224: found $ac_dir/$ac_word" >&5 break fi done @@ -42147,10 +42232,10 @@ fi UNZIP=$ac_cv_path_UNZIP if test -n "$UNZIP"; then - echo "$as_me:42150: result: $UNZIP" >&5 + echo "$as_me:42235: result: $UNZIP" >&5 echo "${ECHO_T}$UNZIP" >&6 else - echo "$as_me:42153: result: no" >&5 + echo "$as_me:42238: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -42209,7 +42294,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me:-configure}:42212: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me:-configure}:42297: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define UNZIP_PATH "$cf_path_prog" @@ -42227,7 +42312,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:42230: checking for $ac_word" >&5 +echo "$as_me:42315: 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 @@ -42244,7 +42329,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:42247: found $ac_dir/$ac_word" >&5 + echo "$as_me:42332: found $ac_dir/$ac_word" >&5 break fi done @@ -42255,10 +42340,10 @@ fi BZIP2=$ac_cv_path_BZIP2 if test -n "$BZIP2"; then - echo "$as_me:42258: result: $BZIP2" >&5 + echo "$as_me:42343: result: $BZIP2" >&5 echo "${ECHO_T}$BZIP2" >&6 else - echo "$as_me:42261: result: no" >&5 + echo "$as_me:42346: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -42317,7 +42402,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me:-configure}:42320: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me:-configure}:42405: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define BZIP2_PATH "$cf_path_prog" @@ -42335,7 +42420,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:42338: checking for $ac_word" >&5 +echo "$as_me:42423: 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 @@ -42352,7 +42437,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:42355: found $ac_dir/$ac_word" >&5 + echo "$as_me:42440: found $ac_dir/$ac_word" >&5 break fi done @@ -42363,10 +42448,10 @@ fi TAR=$ac_cv_path_TAR if test -n "$TAR"; then - echo "$as_me:42366: result: $TAR" >&5 + echo "$as_me:42451: result: $TAR" >&5 echo "${ECHO_T}$TAR" >&6 else - echo "$as_me:42369: result: no" >&5 + echo "$as_me:42454: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -42425,7 +42510,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me:-configure}:42428: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me:-configure}:42513: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define TAR_PATH "$cf_path_prog" @@ -42483,7 +42568,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:42486: checking for $ac_word" >&5 +echo "$as_me:42571: 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 @@ -42500,7 +42585,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:42503: found $ac_dir/$ac_word" >&5 + echo "$as_me:42588: found $ac_dir/$ac_word" >&5 break fi done @@ -42511,10 +42596,10 @@ fi COMPRESS=$ac_cv_path_COMPRESS if test -n "$COMPRESS"; then - echo "$as_me:42514: result: $COMPRESS" >&5 + echo "$as_me:42599: result: $COMPRESS" >&5 echo "${ECHO_T}$COMPRESS" >&6 else - echo "$as_me:42517: result: no" >&5 + echo "$as_me:42602: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -42573,7 +42658,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me:-configure}:42576: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me:-configure}:42661: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define COMPRESS_PATH "$cf_path_prog" @@ -42591,7 +42676,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:42594: checking for $ac_word" >&5 +echo "$as_me:42679: 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 @@ -42608,7 +42693,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:42611: found $ac_dir/$ac_word" >&5 + echo "$as_me:42696: found $ac_dir/$ac_word" >&5 break fi done @@ -42619,10 +42704,10 @@ fi RM=$ac_cv_path_RM if test -n "$RM"; then - echo "$as_me:42622: result: $RM" >&5 + echo "$as_me:42707: result: $RM" >&5 echo "${ECHO_T}$RM" >&6 else - echo "$as_me:42625: result: no" >&5 + echo "$as_me:42710: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -42681,7 +42766,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me:-configure}:42684: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me:-configure}:42769: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define RM_PATH "$cf_path_prog" @@ -42699,7 +42784,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:42702: checking for $ac_word" >&5 +echo "$as_me:42787: 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 @@ -42716,7 +42801,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:42719: found $ac_dir/$ac_word" >&5 + echo "$as_me:42804: found $ac_dir/$ac_word" >&5 break fi done @@ -42727,10 +42812,10 @@ fi UUDECODE=$ac_cv_path_UUDECODE if test -n "$UUDECODE"; then - echo "$as_me:42730: result: $UUDECODE" >&5 + echo "$as_me:42815: result: $UUDECODE" >&5 echo "${ECHO_T}$UUDECODE" >&6 else - echo "$as_me:42733: result: no" >&5 + echo "$as_me:42818: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -42789,7 +42874,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me:-configure}:42792: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me:-configure}:42877: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define UUDECODE_PATH "$cf_path_prog" @@ -42807,7 +42892,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:42810: checking for $ac_word" >&5 +echo "$as_me:42895: 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 @@ -42824,7 +42909,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:42827: found $ac_dir/$ac_word" >&5 + echo "$as_me:42912: found $ac_dir/$ac_word" >&5 break fi done @@ -42835,10 +42920,10 @@ fi ZCAT=$ac_cv_path_ZCAT if test -n "$ZCAT"; then - echo "$as_me:42838: result: $ZCAT" >&5 + echo "$as_me:42923: result: $ZCAT" >&5 echo "${ECHO_T}$ZCAT" >&6 else - echo "$as_me:42841: result: no" >&5 + echo "$as_me:42926: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -42897,7 +42982,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me:-configure}:42900: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me:-configure}:42985: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define ZCAT_PATH "$cf_path_prog" @@ -42915,7 +43000,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:42918: checking for $ac_word" >&5 +echo "$as_me:43003: 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 @@ -42932,7 +43017,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:42935: found $ac_dir/$ac_word" >&5 + echo "$as_me:43020: found $ac_dir/$ac_word" >&5 break fi done @@ -42943,10 +43028,10 @@ fi ZIP=$ac_cv_path_ZIP if test -n "$ZIP"; then - echo "$as_me:42946: result: $ZIP" >&5 + echo "$as_me:43031: result: $ZIP" >&5 echo "${ECHO_T}$ZIP" >&6 else - echo "$as_me:42949: result: no" >&5 + echo "$as_me:43034: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -43005,7 +43090,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me:-configure}:43008: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me:-configure}:43093: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define ZIP_PATH "$cf_path_prog" @@ -43033,7 +43118,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:43036: checking for $ac_word" >&5 +echo "$as_me:43121: 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 @@ -43050,7 +43135,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:43053: found $ac_dir/$ac_word" >&5 + echo "$as_me:43138: found $ac_dir/$ac_word" >&5 break fi done @@ -43061,10 +43146,10 @@ fi INSTALL=$ac_cv_path_INSTALL if test -n "$INSTALL"; then - echo "$as_me:43064: result: $INSTALL" >&5 + echo "$as_me:43149: result: $INSTALL" >&5 echo "${ECHO_T}$INSTALL" >&6 else - echo "$as_me:43067: result: no" >&5 + echo "$as_me:43152: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -43123,7 +43208,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me:-configure}:43126: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me:-configure}:43211: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define INSTALL_PATH "$cf_path_prog" @@ -43153,7 +43238,7 @@ if test "$cf_cv_screen" = pdcurses ; then case "$host_os" in (mingw*) -echo "$as_me:43156: checking for initscr in -lpdcurses" >&5 +echo "$as_me:43241: checking for initscr in -lpdcurses" >&5 echo $ECHO_N "checking for initscr in -lpdcurses... $ECHO_C" >&6 if test "${ac_cv_lib_pdcurses_initscr+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -43161,7 +43246,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lpdcurses $LIBS" cat >"conftest.$ac_ext" <<_ACEOF -#line 43164 "configure" +#line 43249 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -43180,16 +43265,16 @@ initscr (); } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:43183: \"$ac_link\"") >&5 +if { (eval echo "$as_me:43268: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:43186: \$? = $ac_status" >&5 + echo "$as_me:43271: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:43189: \"$ac_try\"") >&5 + { (eval echo "$as_me:43274: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:43192: \$? = $ac_status" >&5 + echo "$as_me:43277: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_lib_pdcurses_initscr=yes else @@ -43200,7 +43285,7 @@ fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:43203: result: $ac_cv_lib_pdcurses_initscr" >&5 +echo "$as_me:43288: result: $ac_cv_lib_pdcurses_initscr" >&5 echo "${ECHO_T}$ac_cv_lib_pdcurses_initscr" >&6 if test "$ac_cv_lib_pdcurses_initscr" = yes; then @@ -43222,13 +43307,13 @@ LIBS="$cf_add_libs" cf_cv_term_header=no cf_cv_unctrl_header=no - echo "$as_me:43225: checking for winwstr" >&5 + echo "$as_me:43310: checking for winwstr" >&5 echo $ECHO_N "checking for winwstr... $ECHO_C" >&6 if test "${ac_cv_func_winwstr+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >"conftest.$ac_ext" <<_ACEOF -#line 43231 "configure" +#line 43316 "configure" #include "confdefs.h" #define winwstr autoconf_temporary #include <limits.h> /* least-intrusive standard header which defines gcc2 __stub macros */ @@ -43259,16 +43344,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:43262: \"$ac_link\"") >&5 +if { (eval echo "$as_me:43347: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:43265: \$? = $ac_status" >&5 + echo "$as_me:43350: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:43268: \"$ac_try\"") >&5 + { (eval echo "$as_me:43353: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:43271: \$? = $ac_status" >&5 + echo "$as_me:43356: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_func_winwstr=yes else @@ -43278,7 +43363,7 @@ ac_cv_func_winwstr=no fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:43281: result: $ac_cv_func_winwstr" >&5 +echo "$as_me:43366: result: $ac_cv_func_winwstr" >&5 echo "${ECHO_T}$ac_cv_func_winwstr" >&6 if test "$ac_cv_func_winwstr" = yes; then @@ -43288,13 +43373,13 @@ EOF fi - echo "$as_me:43291: checking for pdcurses_dll_iname" >&5 + echo "$as_me:43376: checking for pdcurses_dll_iname" >&5 echo $ECHO_N "checking for pdcurses_dll_iname... $ECHO_C" >&6 if test "${ac_cv_func_pdcurses_dll_iname+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >"conftest.$ac_ext" <<_ACEOF -#line 43297 "configure" +#line 43382 "configure" #include "confdefs.h" #define pdcurses_dll_iname autoconf_temporary #include <limits.h> /* least-intrusive standard header which defines gcc2 __stub macros */ @@ -43325,16 +43410,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:43328: \"$ac_link\"") >&5 +if { (eval echo "$as_me:43413: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:43331: \$? = $ac_status" >&5 + echo "$as_me:43416: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:43334: \"$ac_try\"") >&5 + { (eval echo "$as_me:43419: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:43337: \$? = $ac_status" >&5 + echo "$as_me:43422: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_func_pdcurses_dll_iname=yes else @@ -43344,7 +43429,7 @@ ac_cv_func_pdcurses_dll_iname=no fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:43347: result: $ac_cv_func_pdcurses_dll_iname" >&5 +echo "$as_me:43432: result: $ac_cv_func_pdcurses_dll_iname" >&5 echo "${ECHO_T}$ac_cv_func_pdcurses_dll_iname" >&6 if test "$ac_cv_func_pdcurses_dll_iname" = yes; then @@ -43361,7 +43446,7 @@ fi cf_x_athena=${cf_x_athena:-Xaw} -echo "$as_me:43364: checking if you want to link with Xaw 3d library" >&5 +echo "$as_me:43449: 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= @@ -43372,14 +43457,14 @@ if test "${with_Xaw3d+set}" = set; then fi; if test "$withval" = yes ; then cf_x_athena=Xaw3d - echo "$as_me:43375: result: yes" >&5 + echo "$as_me:43460: result: yes" >&5 echo "${ECHO_T}yes" >&6 else - echo "$as_me:43378: result: no" >&5 + echo "$as_me:43463: result: no" >&5 echo "${ECHO_T}no" >&6 fi -echo "$as_me:43382: checking if you want to link with Xaw 3d xft library" >&5 +echo "$as_me:43467: checking if you want to link with Xaw 3d xft library" >&5 echo $ECHO_N "checking if you want to link with Xaw 3d xft library... $ECHO_C" >&6 withval= @@ -43390,14 +43475,14 @@ if test "${with_Xaw3dxft+set}" = set; then fi; if test "$withval" = yes ; then cf_x_athena=Xaw3dxft - echo "$as_me:43393: result: yes" >&5 + echo "$as_me:43478: result: yes" >&5 echo "${ECHO_T}yes" >&6 else - echo "$as_me:43396: result: no" >&5 + echo "$as_me:43481: result: no" >&5 echo "${ECHO_T}no" >&6 fi -echo "$as_me:43400: checking if you want to link with neXT Athena library" >&5 +echo "$as_me:43485: 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= @@ -43408,14 +43493,14 @@ if test "${with_neXtaw+set}" = set; then fi; if test "$withval" = yes ; then cf_x_athena=neXtaw - echo "$as_me:43411: result: yes" >&5 + echo "$as_me:43496: result: yes" >&5 echo "${ECHO_T}yes" >&6 else - echo "$as_me:43414: result: no" >&5 + echo "$as_me:43499: result: no" >&5 echo "${ECHO_T}no" >&6 fi -echo "$as_me:43418: checking if you want to link with Athena-Plus library" >&5 +echo "$as_me:43503: 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= @@ -43426,10 +43511,10 @@ if test "${with_XawPlus+set}" = set; then fi; if test "$withval" = yes ; then cf_x_athena=XawPlus - echo "$as_me:43429: result: yes" >&5 + echo "$as_me:43514: result: yes" >&5 echo "${ECHO_T}yes" >&6 else - echo "$as_me:43432: result: no" >&5 + echo "$as_me:43517: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -43449,17 +43534,17 @@ if test "$PKG_CONFIG" != none ; then if test "$PKG_CONFIG" != none && "$PKG_CONFIG" --exists "$cf_athena_pkg"; then test -n "$verbose" && echo " found package $cf_athena_pkg" 1>&6 -echo "${as_me:-configure}:43452: testing found package $cf_athena_pkg ..." 1>&5 +echo "${as_me:-configure}:43537: testing found package $cf_athena_pkg ..." 1>&5 cf_pkgconfig_incs="`$PKG_CONFIG --cflags "$cf_athena_pkg" 2>/dev/null`" cf_pkgconfig_libs="`$PKG_CONFIG --libs "$cf_athena_pkg" 2>/dev/null`" test -n "$verbose" && echo " package $cf_athena_pkg CFLAGS: $cf_pkgconfig_incs" 1>&6 -echo "${as_me:-configure}:43458: testing package $cf_athena_pkg CFLAGS: $cf_pkgconfig_incs ..." 1>&5 +echo "${as_me:-configure}:43543: testing package $cf_athena_pkg CFLAGS: $cf_pkgconfig_incs ..." 1>&5 test -n "$verbose" && echo " package $cf_athena_pkg LIBS: $cf_pkgconfig_libs" 1>&6 -echo "${as_me:-configure}:43462: testing package $cf_athena_pkg LIBS: $cf_pkgconfig_libs ..." 1>&5 +echo "${as_me:-configure}:43547: testing package $cf_athena_pkg LIBS: $cf_pkgconfig_libs ..." 1>&5 cf_fix_cppflags=no cf_new_cflags= @@ -43590,20 +43675,20 @@ EOF LIBS=`echo "$LIBS " | sed -e 's/ / /g' -e 's%-l'"$cf_trim_lib"' %%' -e 's/ $//'` test -n "$verbose" && echo " ..trimmed $LIBS" 1>&6 -echo "${as_me:-configure}:43593: testing ..trimmed $LIBS ..." 1>&5 +echo "${as_me:-configure}:43678: testing ..trimmed $LIBS ..." 1>&5 ;; esac done -echo "$as_me:43599: checking for usable $cf_x_athena/Xmu package" >&5 +echo "$as_me:43684: checking for usable $cf_x_athena/Xmu package" >&5 echo $ECHO_N "checking for usable $cf_x_athena/Xmu package... $ECHO_C" >&6 if test "${cf_cv_xaw_compat+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >"conftest.$ac_ext" <<_ACEOF -#line 43606 "configure" +#line 43691 "configure" #include "confdefs.h" #include <X11/Xmu/CharSet.h> @@ -43620,16 +43705,16 @@ int check = XmuCompareISOLatin1("big", "small"); } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:43623: \"$ac_link\"") >&5 +if { (eval echo "$as_me:43708: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:43626: \$? = $ac_status" >&5 + echo "$as_me:43711: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:43629: \"$ac_try\"") >&5 + { (eval echo "$as_me:43714: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:43632: \$? = $ac_status" >&5 + echo "$as_me:43717: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_xaw_compat=yes else @@ -43639,7 +43724,7 @@ cf_cv_xaw_compat=no fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:43642: result: $cf_cv_xaw_compat" >&5 +echo "$as_me:43727: result: $cf_cv_xaw_compat" >&5 echo "${ECHO_T}$cf_cv_xaw_compat" >&6 if test "$cf_cv_xaw_compat" = no @@ -43651,7 +43736,7 @@ echo "${ECHO_T}$cf_cv_xaw_compat" >&6 (*) test -n "$verbose" && echo " work around broken package" 1>&6 -echo "${as_me:-configure}:43654: testing work around broken package ..." 1>&5 +echo "${as_me:-configure}:43739: testing work around broken package ..." 1>&5 cf_save_xmu="$LIBS" cf_first_lib=`echo "$cf_save_xmu" | sed -e 's/^ *//' -e 's/ .*//'` @@ -43659,17 +43744,17 @@ echo "${as_me:-configure}:43654: testing work around broken package ..." 1>&5 if test "$PKG_CONFIG" != none && "$PKG_CONFIG" --exists "xmu"; then test -n "$verbose" && echo " found package xmu" 1>&6 -echo "${as_me:-configure}:43662: testing found package xmu ..." 1>&5 +echo "${as_me:-configure}:43747: testing found package xmu ..." 1>&5 cf_pkgconfig_incs="`$PKG_CONFIG --cflags "xmu" 2>/dev/null`" cf_pkgconfig_libs="`$PKG_CONFIG --libs "xmu" 2>/dev/null`" test -n "$verbose" && echo " package xmu CFLAGS: $cf_pkgconfig_incs" 1>&6 -echo "${as_me:-configure}:43668: testing package xmu CFLAGS: $cf_pkgconfig_incs ..." 1>&5 +echo "${as_me:-configure}:43753: testing package xmu CFLAGS: $cf_pkgconfig_incs ..." 1>&5 test -n "$verbose" && echo " package xmu LIBS: $cf_pkgconfig_libs" 1>&6 -echo "${as_me:-configure}:43672: testing package xmu LIBS: $cf_pkgconfig_libs ..." 1>&5 +echo "${as_me:-configure}:43757: testing package xmu LIBS: $cf_pkgconfig_libs ..." 1>&5 cf_fix_cppflags=no cf_new_cflags= @@ -43789,12 +43874,12 @@ LIBS="$cf_add_libs" test -n "$verbose" && echo " ...before $LIBS" 1>&6 -echo "${as_me:-configure}:43792: testing ...before $LIBS ..." 1>&5 +echo "${as_me:-configure}:43877: testing ...before $LIBS ..." 1>&5 LIBS=`echo "$LIBS" | sed -e "s/[ ][ ]*/ /g" -e "s%$cf_first_lib %$cf_first_lib $cf_pkgconfig_libs %" -e 's% % %g'` test -n "$verbose" && echo " ...after $LIBS" 1>&6 -echo "${as_me:-configure}:43797: testing ...after $LIBS ..." 1>&5 +echo "${as_me:-configure}:43882: testing ...after $LIBS ..." 1>&5 else cf_pkgconfig_incs= @@ -43802,12 +43887,12 @@ else test -n "$verbose" && echo " ...before $LIBS" 1>&6 -echo "${as_me:-configure}:43805: testing ...before $LIBS ..." 1>&5 +echo "${as_me:-configure}:43890: testing ...before $LIBS ..." 1>&5 LIBS=`echo "$LIBS" | sed -e "s/[ ][ ]*/ /g" -e "s%$cf_first_lib %$cf_first_lib -lXmu %" -e 's% % %g'` test -n "$verbose" && echo " ...after $LIBS" 1>&6 -echo "${as_me:-configure}:43810: testing ...after $LIBS ..." 1>&5 +echo "${as_me:-configure}:43895: testing ...after $LIBS ..." 1>&5 fi @@ -43818,7 +43903,7 @@ fi LIBS=`echo "$LIBS " | sed -e 's/ / /g' -e 's%-l'"$cf_trim_lib"' %%' -e 's/ $//'` test -n "$verbose" && echo " ..trimmed $LIBS" 1>&6 -echo "${as_me:-configure}:43821: testing ..trimmed $LIBS ..." 1>&5 +echo "${as_me:-configure}:43906: testing ..trimmed $LIBS ..." 1>&5 ;; esac @@ -43843,17 +43928,17 @@ if test -z "$cf_x_athena_lib" ; then if test "$PKG_CONFIG" != none && "$PKG_CONFIG" --exists "Xext"; then test -n "$verbose" && echo " found package Xext" 1>&6 -echo "${as_me:-configure}:43846: testing found package Xext ..." 1>&5 +echo "${as_me:-configure}:43931: testing found package Xext ..." 1>&5 cf_pkgconfig_incs="`$PKG_CONFIG --cflags "Xext" 2>/dev/null`" cf_pkgconfig_libs="`$PKG_CONFIG --libs "Xext" 2>/dev/null`" test -n "$verbose" && echo " package Xext CFLAGS: $cf_pkgconfig_incs" 1>&6 -echo "${as_me:-configure}:43852: testing package Xext CFLAGS: $cf_pkgconfig_incs ..." 1>&5 +echo "${as_me:-configure}:43937: testing package Xext CFLAGS: $cf_pkgconfig_incs ..." 1>&5 test -n "$verbose" && echo " package Xext LIBS: $cf_pkgconfig_libs" 1>&6 -echo "${as_me:-configure}:43856: testing package Xext LIBS: $cf_pkgconfig_libs ..." 1>&5 +echo "${as_me:-configure}:43941: testing package Xext LIBS: $cf_pkgconfig_libs ..." 1>&5 cf_fix_cppflags=no cf_new_cflags= @@ -43974,7 +44059,7 @@ else cf_pkgconfig_incs= cf_pkgconfig_libs= - echo "$as_me:43977: checking for XextCreateExtension in -lXext" >&5 + echo "$as_me:44062: 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 @@ -43982,7 +44067,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lXext $LIBS" cat >"conftest.$ac_ext" <<_ACEOF -#line 43985 "configure" +#line 44070 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -44001,16 +44086,16 @@ XextCreateExtension (); } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:44004: \"$ac_link\"") >&5 +if { (eval echo "$as_me:44089: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:44007: \$? = $ac_status" >&5 + echo "$as_me:44092: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:44010: \"$ac_try\"") >&5 + { (eval echo "$as_me:44095: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:44013: \$? = $ac_status" >&5 + echo "$as_me:44098: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_lib_Xext_XextCreateExtension=yes else @@ -44021,7 +44106,7 @@ fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:44024: result: $ac_cv_lib_Xext_XextCreateExtension" >&5 +echo "$as_me:44109: 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 @@ -44057,17 +44142,17 @@ then if test "$PKG_CONFIG" != none && "$PKG_CONFIG" --exists "x11"; then test -n "$verbose" && echo " found package x11" 1>&6 -echo "${as_me:-configure}:44060: testing found package x11 ..." 1>&5 +echo "${as_me:-configure}:44145: testing found package x11 ..." 1>&5 cf_pkgconfig_incs="`$PKG_CONFIG --cflags "x11" 2>/dev/null`" cf_pkgconfig_libs="`$PKG_CONFIG --libs "x11" 2>/dev/null`" test -n "$verbose" && echo " package x11 CFLAGS: $cf_pkgconfig_incs" 1>&6 -echo "${as_me:-configure}:44066: testing package x11 CFLAGS: $cf_pkgconfig_incs ..." 1>&5 +echo "${as_me:-configure}:44151: testing package x11 CFLAGS: $cf_pkgconfig_incs ..." 1>&5 test -n "$verbose" && echo " package x11 LIBS: $cf_pkgconfig_libs" 1>&6 -echo "${as_me:-configure}:44070: testing package x11 LIBS: $cf_pkgconfig_libs ..." 1>&5 +echo "${as_me:-configure}:44155: testing package x11 LIBS: $cf_pkgconfig_libs ..." 1>&5 cf_fix_cppflags=no cf_new_cflags= @@ -44187,24 +44272,24 @@ LIBS="$cf_add_libs" else cf_pkgconfig_incs= cf_pkgconfig_libs= - { echo "$as_me:44190: WARNING: unable to find X11 library" >&5 + { echo "$as_me:44275: WARNING: unable to find X11 library" >&5 echo "$as_me: WARNING: unable to find X11 library" >&2;} fi if test "$PKG_CONFIG" != none && "$PKG_CONFIG" --exists "ice"; then test -n "$verbose" && echo " found package ice" 1>&6 -echo "${as_me:-configure}:44197: testing found package ice ..." 1>&5 +echo "${as_me:-configure}:44282: testing found package ice ..." 1>&5 cf_pkgconfig_incs="`$PKG_CONFIG --cflags "ice" 2>/dev/null`" cf_pkgconfig_libs="`$PKG_CONFIG --libs "ice" 2>/dev/null`" test -n "$verbose" && echo " package ice CFLAGS: $cf_pkgconfig_incs" 1>&6 -echo "${as_me:-configure}:44203: testing package ice CFLAGS: $cf_pkgconfig_incs ..." 1>&5 +echo "${as_me:-configure}:44288: testing package ice CFLAGS: $cf_pkgconfig_incs ..." 1>&5 test -n "$verbose" && echo " package ice LIBS: $cf_pkgconfig_libs" 1>&6 -echo "${as_me:-configure}:44207: testing package ice LIBS: $cf_pkgconfig_libs ..." 1>&5 +echo "${as_me:-configure}:44292: testing package ice LIBS: $cf_pkgconfig_libs ..." 1>&5 cf_fix_cppflags=no cf_new_cflags= @@ -44324,24 +44409,24 @@ LIBS="$cf_add_libs" else cf_pkgconfig_incs= cf_pkgconfig_libs= - { echo "$as_me:44327: WARNING: unable to find ICE library" >&5 + { echo "$as_me:44412: WARNING: unable to find ICE library" >&5 echo "$as_me: WARNING: unable to find ICE library" >&2;} fi if test "$PKG_CONFIG" != none && "$PKG_CONFIG" --exists "sm"; then test -n "$verbose" && echo " found package sm" 1>&6 -echo "${as_me:-configure}:44334: testing found package sm ..." 1>&5 +echo "${as_me:-configure}:44419: testing found package sm ..." 1>&5 cf_pkgconfig_incs="`$PKG_CONFIG --cflags "sm" 2>/dev/null`" cf_pkgconfig_libs="`$PKG_CONFIG --libs "sm" 2>/dev/null`" test -n "$verbose" && echo " package sm CFLAGS: $cf_pkgconfig_incs" 1>&6 -echo "${as_me:-configure}:44340: testing package sm CFLAGS: $cf_pkgconfig_incs ..." 1>&5 +echo "${as_me:-configure}:44425: testing package sm CFLAGS: $cf_pkgconfig_incs ..." 1>&5 test -n "$verbose" && echo " package sm LIBS: $cf_pkgconfig_libs" 1>&6 -echo "${as_me:-configure}:44344: testing package sm LIBS: $cf_pkgconfig_libs ..." 1>&5 +echo "${as_me:-configure}:44429: testing package sm LIBS: $cf_pkgconfig_libs ..." 1>&5 cf_fix_cppflags=no cf_new_cflags= @@ -44461,24 +44546,24 @@ LIBS="$cf_add_libs" else cf_pkgconfig_incs= cf_pkgconfig_libs= - { echo "$as_me:44464: WARNING: unable to find SM library" >&5 + { echo "$as_me:44549: WARNING: unable to find SM library" >&5 echo "$as_me: WARNING: unable to find SM library" >&2;} fi if test "$PKG_CONFIG" != none && "$PKG_CONFIG" --exists "xt"; then test -n "$verbose" && echo " found package xt" 1>&6 -echo "${as_me:-configure}:44471: testing found package xt ..." 1>&5 +echo "${as_me:-configure}:44556: testing found package xt ..." 1>&5 cf_pkgconfig_incs="`$PKG_CONFIG --cflags "xt" 2>/dev/null`" cf_pkgconfig_libs="`$PKG_CONFIG --libs "xt" 2>/dev/null`" test -n "$verbose" && echo " package xt CFLAGS: $cf_pkgconfig_incs" 1>&6 -echo "${as_me:-configure}:44477: testing package xt CFLAGS: $cf_pkgconfig_incs ..." 1>&5 +echo "${as_me:-configure}:44562: testing package xt CFLAGS: $cf_pkgconfig_incs ..." 1>&5 test -n "$verbose" && echo " package xt LIBS: $cf_pkgconfig_libs" 1>&6 -echo "${as_me:-configure}:44481: testing package xt LIBS: $cf_pkgconfig_libs ..." 1>&5 +echo "${as_me:-configure}:44566: testing package xt LIBS: $cf_pkgconfig_libs ..." 1>&5 cf_fix_cppflags=no cf_new_cflags= @@ -44598,7 +44683,7 @@ LIBS="$cf_add_libs" else cf_pkgconfig_incs= cf_pkgconfig_libs= - { echo "$as_me:44601: WARNING: unable to find Xt library" >&5 + { echo "$as_me:44686: WARNING: unable to find Xt library" >&5 echo "$as_me: WARNING: unable to find Xt library" >&2;} fi @@ -44611,17 +44696,17 @@ cf_have_X_LIBS=no if test "$PKG_CONFIG" != none && "$PKG_CONFIG" --exists "xt"; then test -n "$verbose" && echo " found package xt" 1>&6 -echo "${as_me:-configure}:44614: testing found package xt ..." 1>&5 +echo "${as_me:-configure}:44699: testing found package xt ..." 1>&5 cf_pkgconfig_incs="`$PKG_CONFIG --cflags "xt" 2>/dev/null`" cf_pkgconfig_libs="`$PKG_CONFIG --libs "xt" 2>/dev/null`" test -n "$verbose" && echo " package xt CFLAGS: $cf_pkgconfig_incs" 1>&6 -echo "${as_me:-configure}:44620: testing package xt CFLAGS: $cf_pkgconfig_incs ..." 1>&5 +echo "${as_me:-configure}:44705: testing package xt CFLAGS: $cf_pkgconfig_incs ..." 1>&5 test -n "$verbose" && echo " package xt LIBS: $cf_pkgconfig_libs" 1>&6 -echo "${as_me:-configure}:44624: testing package xt LIBS: $cf_pkgconfig_libs ..." 1>&5 +echo "${as_me:-configure}:44709: testing package xt LIBS: $cf_pkgconfig_libs ..." 1>&5 cf_fix_cppflags=no cf_new_cflags= @@ -44742,14 +44827,14 @@ LIBS="$cf_add_libs" ;; (*) # we have an "xt" package, but it may omit Xt's dependency on X11 -echo "$as_me:44745: checking for usable X dependency" >&5 +echo "$as_me:44830: checking for usable X dependency" >&5 echo $ECHO_N "checking for usable X dependency... $ECHO_C" >&6 if test "${cf_cv_xt_x11_compat+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >"conftest.$ac_ext" <<_ACEOF -#line 44752 "configure" +#line 44837 "configure" #include "confdefs.h" #include <X11/Xlib.h> @@ -44768,16 +44853,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:44771: \"$ac_link\"") >&5 +if { (eval echo "$as_me:44856: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:44774: \$? = $ac_status" >&5 + echo "$as_me:44859: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:44777: \"$ac_try\"") >&5 + { (eval echo "$as_me:44862: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:44780: \$? = $ac_status" >&5 + echo "$as_me:44865: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_xt_x11_compat=yes else @@ -44787,30 +44872,30 @@ cf_cv_xt_x11_compat=no fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:44790: result: $cf_cv_xt_x11_compat" >&5 +echo "$as_me:44875: result: $cf_cv_xt_x11_compat" >&5 echo "${ECHO_T}$cf_cv_xt_x11_compat" >&6 if test "$cf_cv_xt_x11_compat" = no then test -n "$verbose" && echo " work around broken X11 dependency" 1>&6 -echo "${as_me:-configure}:44796: testing work around broken X11 dependency ..." 1>&5 +echo "${as_me:-configure}:44881: testing work around broken X11 dependency ..." 1>&5 # 2010/11/19 - good enough until a working Xt on Xcb is delivered. if test "$PKG_CONFIG" != none && "$PKG_CONFIG" --exists "x11"; then test -n "$verbose" && echo " found package x11" 1>&6 -echo "${as_me:-configure}:44803: testing found package x11 ..." 1>&5 +echo "${as_me:-configure}:44888: testing found package x11 ..." 1>&5 cf_pkgconfig_incs="`$PKG_CONFIG --cflags "x11" 2>/dev/null`" cf_pkgconfig_libs="`$PKG_CONFIG --libs "x11" 2>/dev/null`" test -n "$verbose" && echo " package x11 CFLAGS: $cf_pkgconfig_incs" 1>&6 -echo "${as_me:-configure}:44809: testing package x11 CFLAGS: $cf_pkgconfig_incs ..." 1>&5 +echo "${as_me:-configure}:44894: testing package x11 CFLAGS: $cf_pkgconfig_incs ..." 1>&5 test -n "$verbose" && echo " package x11 LIBS: $cf_pkgconfig_libs" 1>&6 -echo "${as_me:-configure}:44813: testing package x11 LIBS: $cf_pkgconfig_libs ..." 1>&5 +echo "${as_me:-configure}:44898: testing package x11 LIBS: $cf_pkgconfig_libs ..." 1>&5 cf_fix_cppflags=no cf_new_cflags= @@ -44933,12 +45018,12 @@ else test -n "$verbose" && echo " ...before $LIBS" 1>&6 -echo "${as_me:-configure}:44936: testing ...before $LIBS ..." 1>&5 +echo "${as_me:-configure}:45021: testing ...before $LIBS ..." 1>&5 LIBS=`echo "$LIBS" | sed -e "s/[ ][ ]*/ /g" -e "s%-lXt %-lXt -lX11 %" -e 's% % %g'` test -n "$verbose" && echo " ...after $LIBS" 1>&6 -echo "${as_me:-configure}:44941: testing ...after $LIBS ..." 1>&5 +echo "${as_me:-configure}:45026: testing ...after $LIBS ..." 1>&5 fi @@ -44946,14 +45031,14 @@ fi ;; esac -echo "$as_me:44949: checking for usable X Toolkit package" >&5 +echo "$as_me:45034: checking for usable X Toolkit package" >&5 echo $ECHO_N "checking for usable X Toolkit package... $ECHO_C" >&6 if test "${cf_cv_xt_ice_compat+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >"conftest.$ac_ext" <<_ACEOF -#line 44956 "configure" +#line 45041 "configure" #include "confdefs.h" #include <X11/Shell.h> @@ -44968,16 +45053,16 @@ int num = IceConnectionNumber(0); (void) num } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:44971: \"$ac_link\"") >&5 +if { (eval echo "$as_me:45056: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:44974: \$? = $ac_status" >&5 + echo "$as_me:45059: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:44977: \"$ac_try\"") >&5 + { (eval echo "$as_me:45062: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:44980: \$? = $ac_status" >&5 + echo "$as_me:45065: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_xt_ice_compat=yes else @@ -44987,7 +45072,7 @@ cf_cv_xt_ice_compat=no fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:44990: result: $cf_cv_xt_ice_compat" >&5 +echo "$as_me:45075: result: $cf_cv_xt_ice_compat" >&5 echo "${ECHO_T}$cf_cv_xt_ice_compat" >&6 if test "$cf_cv_xt_ice_compat" = no @@ -45001,22 +45086,22 @@ echo "${ECHO_T}$cf_cv_xt_ice_compat" >&6 (*) test -n "$verbose" && echo " work around broken ICE dependency" 1>&6 -echo "${as_me:-configure}:45004: testing work around broken ICE dependency ..." 1>&5 +echo "${as_me:-configure}:45089: testing work around broken ICE dependency ..." 1>&5 if test "$PKG_CONFIG" != none && "$PKG_CONFIG" --exists "ice"; then test -n "$verbose" && echo " found package ice" 1>&6 -echo "${as_me:-configure}:45009: testing found package ice ..." 1>&5 +echo "${as_me:-configure}:45094: testing found package ice ..." 1>&5 cf_pkgconfig_incs="`$PKG_CONFIG --cflags "ice" 2>/dev/null`" cf_pkgconfig_libs="`$PKG_CONFIG --libs "ice" 2>/dev/null`" test -n "$verbose" && echo " package ice CFLAGS: $cf_pkgconfig_incs" 1>&6 -echo "${as_me:-configure}:45015: testing package ice CFLAGS: $cf_pkgconfig_incs ..." 1>&5 +echo "${as_me:-configure}:45100: testing package ice CFLAGS: $cf_pkgconfig_incs ..." 1>&5 test -n "$verbose" && echo " package ice LIBS: $cf_pkgconfig_libs" 1>&6 -echo "${as_me:-configure}:45019: testing package ice LIBS: $cf_pkgconfig_libs ..." 1>&5 +echo "${as_me:-configure}:45104: testing package ice LIBS: $cf_pkgconfig_libs ..." 1>&5 cf_fix_cppflags=no cf_new_cflags= @@ -45135,17 +45220,17 @@ LIBS="$cf_add_libs" if test "$PKG_CONFIG" != none && "$PKG_CONFIG" --exists "sm"; then test -n "$verbose" && echo " found package sm" 1>&6 -echo "${as_me:-configure}:45138: testing found package sm ..." 1>&5 +echo "${as_me:-configure}:45223: testing found package sm ..." 1>&5 cf_pkgconfig_incs="`$PKG_CONFIG --cflags "sm" 2>/dev/null`" cf_pkgconfig_libs="`$PKG_CONFIG --libs "sm" 2>/dev/null`" test -n "$verbose" && echo " package sm CFLAGS: $cf_pkgconfig_incs" 1>&6 -echo "${as_me:-configure}:45144: testing package sm CFLAGS: $cf_pkgconfig_incs ..." 1>&5 +echo "${as_me:-configure}:45229: testing package sm CFLAGS: $cf_pkgconfig_incs ..." 1>&5 test -n "$verbose" && echo " package sm LIBS: $cf_pkgconfig_libs" 1>&6 -echo "${as_me:-configure}:45148: testing package sm LIBS: $cf_pkgconfig_libs ..." 1>&5 +echo "${as_me:-configure}:45233: testing package sm LIBS: $cf_pkgconfig_libs ..." 1>&5 cf_fix_cppflags=no cf_new_cflags= @@ -45274,12 +45359,12 @@ else test -n "$verbose" && echo " ...before $LIBS" 1>&6 -echo "${as_me:-configure}:45277: testing ...before $LIBS ..." 1>&5 +echo "${as_me:-configure}:45362: testing ...before $LIBS ..." 1>&5 LIBS=`echo "$LIBS" | sed -e "s/[ ][ ]*/ /g" -e "s%-lXt %-lXt $X_PRE_LIBS %" -e 's% % %g'` test -n "$verbose" && echo " ...after $LIBS" 1>&6 -echo "${as_me:-configure}:45282: testing ...after $LIBS ..." 1>&5 +echo "${as_me:-configure}:45367: testing ...after $LIBS ..." 1>&5 fi @@ -45299,7 +45384,7 @@ else test -n "$verbose" && echo " checking additions to CFLAGS" 1>&6 -echo "${as_me:-configure}:45302: testing checking additions to CFLAGS ..." 1>&5 +echo "${as_me:-configure}:45387: testing checking additions to CFLAGS ..." 1>&5 cf_check_cflags="$CFLAGS" cf_check_cppflags="$CPPFLAGS" @@ -45384,7 +45469,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}:45387: testing add to \$CFLAGS $cf_new_cflags ..." 1>&5 +echo "${as_me:-configure}:45472: testing add to \$CFLAGS $cf_new_cflags ..." 1>&5 test -n "$CFLAGS" && CFLAGS="$CFLAGS " CFLAGS="${CFLAGS}$cf_new_cflags" @@ -45394,7 +45479,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}:45397: testing add to \$CPPFLAGS $cf_new_cppflags ..." 1>&5 +echo "${as_me:-configure}:45482: testing add to \$CPPFLAGS $cf_new_cppflags ..." 1>&5 test -n "$CPPFLAGS" && CPPFLAGS="$CPPFLAGS " CPPFLAGS="${CPPFLAGS}$cf_new_cppflags" @@ -45404,7 +45489,7 @@ 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}:45407: testing add to \$EXTRA_CPPFLAGS $cf_new_extra_cppflags ..." 1>&5 +echo "${as_me:-configure}:45492: testing add to \$EXTRA_CPPFLAGS $cf_new_extra_cppflags ..." 1>&5 test -n "$EXTRA_CPPFLAGS" && EXTRA_CPPFLAGS="$EXTRA_CPPFLAGS " EXTRA_CPPFLAGS="${EXTRA_CPPFLAGS}$cf_new_extra_cppflags" @@ -45413,7 +45498,7 @@ fi if test "x$cf_check_cflags" != "x$CFLAGS" ; then cat >"conftest.$ac_ext" <<_ACEOF -#line 45416 "configure" +#line 45501 "configure" #include "confdefs.h" #include <stdio.h> int @@ -45425,16 +45510,16 @@ printf("Hello world"); } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:45428: \"$ac_link\"") >&5 +if { (eval echo "$as_me:45513: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:45431: \$? = $ac_status" >&5 + echo "$as_me:45516: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:45434: \"$ac_try\"") >&5 + { (eval echo "$as_me:45519: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:45437: \$? = $ac_status" >&5 + echo "$as_me:45522: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then : else @@ -45442,12 +45527,12 @@ else cat "conftest.$ac_ext" >&5 test -n "$verbose" && echo " test-compile failed. Undoing change to \$CFLAGS" 1>&6 -echo "${as_me:-configure}:45445: testing test-compile failed. Undoing change to \$CFLAGS ..." 1>&5 +echo "${as_me:-configure}:45530: testing test-compile failed. Undoing change to \$CFLAGS ..." 1>&5 if test "x$cf_check_cppflags" != "x$CPPFLAGS" ; then test -n "$verbose" && echo " but keeping change to \$CPPFLAGS" 1>&6 -echo "${as_me:-configure}:45450: testing but keeping change to \$CPPFLAGS ..." 1>&5 +echo "${as_me:-configure}:45535: testing but keeping change to \$CPPFLAGS ..." 1>&5 fi CFLAGS="$cf_check_cflags" @@ -45455,13 +45540,13 @@ fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi - echo "$as_me:45458: checking for XOpenDisplay" >&5 + echo "$as_me:45543: 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 45464 "configure" +#line 45549 "configure" #include "confdefs.h" #define XOpenDisplay autoconf_temporary #include <limits.h> /* least-intrusive standard header which defines gcc2 __stub macros */ @@ -45492,16 +45577,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:45495: \"$ac_link\"") >&5 +if { (eval echo "$as_me:45580: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:45498: \$? = $ac_status" >&5 + echo "$as_me:45583: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:45501: \"$ac_try\"") >&5 + { (eval echo "$as_me:45586: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:45504: \$? = $ac_status" >&5 + echo "$as_me:45589: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_func_XOpenDisplay=yes else @@ -45511,13 +45596,13 @@ ac_cv_func_XOpenDisplay=no fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:45514: result: $ac_cv_func_XOpenDisplay" >&5 +echo "$as_me:45599: 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:45520: checking for XOpenDisplay in -lX11" >&5 + echo "$as_me:45605: 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 @@ -45525,7 +45610,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lX11 $LIBS" cat >"conftest.$ac_ext" <<_ACEOF -#line 45528 "configure" +#line 45613 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -45544,16 +45629,16 @@ XOpenDisplay (); } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:45547: \"$ac_link\"") >&5 +if { (eval echo "$as_me:45632: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:45550: \$? = $ac_status" >&5 + echo "$as_me:45635: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:45553: \"$ac_try\"") >&5 + { (eval echo "$as_me:45638: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:45556: \$? = $ac_status" >&5 + echo "$as_me:45641: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_lib_X11_XOpenDisplay=yes else @@ -45564,7 +45649,7 @@ fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:45567: result: $ac_cv_lib_X11_XOpenDisplay" >&5 +echo "$as_me:45652: 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 @@ -45588,13 +45673,13 @@ fi fi - echo "$as_me:45591: checking for XtAppInitialize" >&5 + echo "$as_me:45676: 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 45597 "configure" +#line 45682 "configure" #include "confdefs.h" #define XtAppInitialize autoconf_temporary #include <limits.h> /* least-intrusive standard header which defines gcc2 __stub macros */ @@ -45625,16 +45710,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:45628: \"$ac_link\"") >&5 +if { (eval echo "$as_me:45713: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:45631: \$? = $ac_status" >&5 + echo "$as_me:45716: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:45634: \"$ac_try\"") >&5 + { (eval echo "$as_me:45719: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:45637: \$? = $ac_status" >&5 + echo "$as_me:45722: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_func_XtAppInitialize=yes else @@ -45644,13 +45729,13 @@ ac_cv_func_XtAppInitialize=no fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:45647: result: $ac_cv_func_XtAppInitialize" >&5 +echo "$as_me:45732: 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:45653: checking for XtAppInitialize in -lXt" >&5 + echo "$as_me:45738: 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 @@ -45658,7 +45743,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lXt $LIBS" cat >"conftest.$ac_ext" <<_ACEOF -#line 45661 "configure" +#line 45746 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -45677,16 +45762,16 @@ XtAppInitialize (); } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:45680: \"$ac_link\"") >&5 +if { (eval echo "$as_me:45765: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:45683: \$? = $ac_status" >&5 + echo "$as_me:45768: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:45686: \"$ac_try\"") >&5 + { (eval echo "$as_me:45771: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:45689: \$? = $ac_status" >&5 + echo "$as_me:45774: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_lib_Xt_XtAppInitialize=yes else @@ -45697,7 +45782,7 @@ fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:45700: result: $ac_cv_lib_Xt_XtAppInitialize" >&5 +echo "$as_me:45785: 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 @@ -45714,7 +45799,7 @@ fi fi if test "$cf_have_X_LIBS" = no ; then - { echo "$as_me:45717: WARNING: Unable to successfully link X Toolkit library (-lXt) with + { echo "$as_me:45802: 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 @@ -45755,14 +45840,14 @@ done test -n "$CPPFLAGS" && CPPFLAGS="$CPPFLAGS " CPPFLAGS="${CPPFLAGS}-I$cf_path/include" - echo "$as_me:45758: checking for $cf_test in $cf_path" >&5 + echo "$as_me:45843: 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:45761: checking for $cf_test" >&5 + echo "$as_me:45846: checking for $cf_test" >&5 echo $ECHO_N "checking for $cf_test... $ECHO_C" >&6 fi cat >"conftest.$ac_ext" <<_ACEOF -#line 45765 "configure" +#line 45850 "configure" #include "confdefs.h" #include <X11/Intrinsic.h> @@ -45776,16 +45861,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:45779: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:45864: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:45782: \$? = $ac_status" >&5 + echo "$as_me:45867: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:45785: \"$ac_try\"") >&5 + { (eval echo "$as_me:45870: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:45788: \$? = $ac_status" >&5 + echo "$as_me:45873: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_result=yes else @@ -45794,7 +45879,7 @@ cat "conftest.$ac_ext" >&5 cf_result=no fi rm -f "conftest.$ac_objext" "conftest.$ac_ext" - echo "$as_me:45797: result: $cf_result" >&5 + echo "$as_me:45882: result: $cf_result" >&5 echo "${ECHO_T}$cf_result" >&6 LIBS="$cf_save_LIBS_CF_X_ATHENA_CPPFLAGS" @@ -45810,7 +45895,7 @@ CPPFLAGS="$cf_save_CPPFLAGS_CF_X_ATHENA_CPPFLAGS" done if test -z "$cf_x_athena_inc" ; then - { echo "$as_me:45813: WARNING: Unable to find Athena header files" >&5 + { echo "$as_me:45898: WARNING: Unable to find Athena header files" >&5 echo "$as_me: WARNING: Unable to find Athena header files" >&2;} elif test "$cf_x_athena_inc" != default ; then @@ -45875,10 +45960,10 @@ for cf_add_1lib in $cf_add_0lib; do done LIBS="$cf_add_libs" - echo "$as_me:45878: checking for $cf_test in $cf_libs" >&5 + echo "$as_me:45963: checking for $cf_test in $cf_libs" >&5 echo $ECHO_N "checking for $cf_test in $cf_libs... $ECHO_C" >&6 cat >"conftest.$ac_ext" <<_ACEOF -#line 45881 "configure" +#line 45966 "configure" #include "confdefs.h" #include <X11/Intrinsic.h> @@ -45894,16 +45979,16 @@ $cf_test((XtAppContext) 0) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:45897: \"$ac_link\"") >&5 +if { (eval echo "$as_me:45982: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:45900: \$? = $ac_status" >&5 + echo "$as_me:45985: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:45903: \"$ac_try\"") >&5 + { (eval echo "$as_me:45988: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:45906: \$? = $ac_status" >&5 + echo "$as_me:45991: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_result=yes else @@ -45912,7 +45997,7 @@ cat "conftest.$ac_ext" >&5 cf_result=no fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" - echo "$as_me:45915: result: $cf_result" >&5 + echo "$as_me:46000: result: $cf_result" >&5 echo "${ECHO_T}$cf_result" >&6 LIBS="$cf_save_LIBS_CF_X_ATHENA_LIBS" @@ -45929,7 +46014,7 @@ CPPFLAGS="$cf_save_CPPFLAGS_CF_X_ATHENA_LIBS" done if test -z "$cf_x_athena_lib" ; then - { { echo "$as_me:45932: error: Unable to successfully link Athena library (-l$cf_x_athena_root) with test program" >&5 + { { echo "$as_me:46017: 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 @@ -45963,7 +46048,7 @@ if test -n "$ac_tool_prefix"; 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:45966: checking for $ac_word" >&5 +echo "$as_me:46051: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_prog_XCURSES_CONFIG+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -45978,7 +46063,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_XCURSES_CONFIG="$ac_tool_prefix$ac_prog" -echo "$as_me:45981: found $ac_dir/$ac_word" >&5 +echo "$as_me:46066: found $ac_dir/$ac_word" >&5 break done @@ -45986,10 +46071,10 @@ fi fi XCURSES_CONFIG=$ac_cv_prog_XCURSES_CONFIG if test -n "$XCURSES_CONFIG"; then - echo "$as_me:45989: result: $XCURSES_CONFIG" >&5 + echo "$as_me:46074: result: $XCURSES_CONFIG" >&5 echo "${ECHO_T}$XCURSES_CONFIG" >&6 else - echo "$as_me:45992: result: no" >&5 + echo "$as_me:46077: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -46002,7 +46087,7 @@ if test -z "$XCURSES_CONFIG"; 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:46005: checking for $ac_word" >&5 +echo "$as_me:46090: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_prog_ac_ct_XCURSES_CONFIG+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -46017,7 +46102,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_XCURSES_CONFIG="$ac_prog" -echo "$as_me:46020: found $ac_dir/$ac_word" >&5 +echo "$as_me:46105: found $ac_dir/$ac_word" >&5 break done @@ -46025,10 +46110,10 @@ fi fi ac_ct_XCURSES_CONFIG=$ac_cv_prog_ac_ct_XCURSES_CONFIG if test -n "$ac_ct_XCURSES_CONFIG"; then - echo "$as_me:46028: result: $ac_ct_XCURSES_CONFIG" >&5 + echo "$as_me:46113: result: $ac_ct_XCURSES_CONFIG" >&5 echo "${ECHO_T}$ac_ct_XCURSES_CONFIG" >&6 else - echo "$as_me:46031: result: no" >&5 + echo "$as_me:46116: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -46163,7 +46248,7 @@ LDFLAGS="$LDFLAGS $X_LIBS" test -n "$verbose" && echo " checking additions to CFLAGS" 1>&6 -echo "${as_me:-configure}:46166: testing checking additions to CFLAGS ..." 1>&5 +echo "${as_me:-configure}:46251: testing checking additions to CFLAGS ..." 1>&5 cf_check_cflags="$CFLAGS" cf_check_cppflags="$CPPFLAGS" @@ -46248,7 +46333,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}:46251: testing add to \$CFLAGS $cf_new_cflags ..." 1>&5 +echo "${as_me:-configure}:46336: testing add to \$CFLAGS $cf_new_cflags ..." 1>&5 test -n "$CFLAGS" && CFLAGS="$CFLAGS " CFLAGS="${CFLAGS}$cf_new_cflags" @@ -46258,7 +46343,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}:46261: testing add to \$CPPFLAGS $cf_new_cppflags ..." 1>&5 +echo "${as_me:-configure}:46346: testing add to \$CPPFLAGS $cf_new_cppflags ..." 1>&5 test -n "$CPPFLAGS" && CPPFLAGS="$CPPFLAGS " CPPFLAGS="${CPPFLAGS}$cf_new_cppflags" @@ -46268,7 +46353,7 @@ 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}:46271: testing add to \$EXTRA_CPPFLAGS $cf_new_extra_cppflags ..." 1>&5 +echo "${as_me:-configure}:46356: testing add to \$EXTRA_CPPFLAGS $cf_new_extra_cppflags ..." 1>&5 test -n "$EXTRA_CPPFLAGS" && EXTRA_CPPFLAGS="$EXTRA_CPPFLAGS " EXTRA_CPPFLAGS="${EXTRA_CPPFLAGS}$cf_new_extra_cppflags" @@ -46277,7 +46362,7 @@ fi if test "x$cf_check_cflags" != "x$CFLAGS" ; then cat >"conftest.$ac_ext" <<_ACEOF -#line 46280 "configure" +#line 46365 "configure" #include "confdefs.h" #include <stdio.h> int @@ -46289,16 +46374,16 @@ printf("Hello world"); } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:46292: \"$ac_link\"") >&5 +if { (eval echo "$as_me:46377: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:46295: \$? = $ac_status" >&5 + echo "$as_me:46380: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:46298: \"$ac_try\"") >&5 + { (eval echo "$as_me:46383: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:46301: \$? = $ac_status" >&5 + echo "$as_me:46386: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then : else @@ -46306,12 +46391,12 @@ else cat "conftest.$ac_ext" >&5 test -n "$verbose" && echo " test-compile failed. Undoing change to \$CFLAGS" 1>&6 -echo "${as_me:-configure}:46309: testing test-compile failed. Undoing change to \$CFLAGS ..." 1>&5 +echo "${as_me:-configure}:46394: testing test-compile failed. Undoing change to \$CFLAGS ..." 1>&5 if test "x$cf_check_cppflags" != "x$CPPFLAGS" ; then test -n "$verbose" && echo " but keeping change to \$CPPFLAGS" 1>&6 -echo "${as_me:-configure}:46314: testing but keeping change to \$CPPFLAGS ..." 1>&5 +echo "${as_me:-configure}:46399: testing but keeping change to \$CPPFLAGS ..." 1>&5 fi CFLAGS="$cf_check_cflags" @@ -46319,7 +46404,7 @@ fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:46322: checking for XOpenDisplay in -lX11" >&5 +echo "$as_me:46407: 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 @@ -46327,7 +46412,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lX11 $X_PRE_LIBS $LIBS $X_EXTRA_LIBS $LIBS" cat >"conftest.$ac_ext" <<_ACEOF -#line 46330 "configure" +#line 46415 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -46346,16 +46431,16 @@ XOpenDisplay (); } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:46349: \"$ac_link\"") >&5 +if { (eval echo "$as_me:46434: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:46352: \$? = $ac_status" >&5 + echo "$as_me:46437: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:46355: \"$ac_try\"") >&5 + { (eval echo "$as_me:46440: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:46358: \$? = $ac_status" >&5 + echo "$as_me:46443: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_lib_X11_XOpenDisplay=yes else @@ -46366,7 +46451,7 @@ fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:46369: result: $ac_cv_lib_X11_XOpenDisplay" >&5 +echo "$as_me:46454: 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 @@ -46388,7 +46473,7 @@ LIBS="$cf_add_libs" fi -echo "$as_me:46391: checking for XCurses library" >&5 +echo "$as_me:46476: 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 @@ -46411,7 +46496,7 @@ done LIBS="$cf_add_libs" cat >"conftest.$ac_ext" <<_ACEOF -#line 46414 "configure" +#line 46499 "configure" #include "confdefs.h" #include <xcurses.h> @@ -46426,16 +46511,16 @@ XCursesExit(); } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:46429: \"$ac_link\"") >&5 +if { (eval echo "$as_me:46514: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:46432: \$? = $ac_status" >&5 + echo "$as_me:46517: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:46435: \"$ac_try\"") >&5 + { (eval echo "$as_me:46520: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:46438: \$? = $ac_status" >&5 + echo "$as_me:46523: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_lib_XCurses=yes else @@ -46446,7 +46531,7 @@ fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:46449: result: $cf_cv_lib_XCurses" >&5 +echo "$as_me:46534: result: $cf_cv_lib_XCurses" >&5 echo "${ECHO_T}$cf_cv_lib_XCurses" >&6 fi @@ -46461,23 +46546,23 @@ cat >>confdefs.h <<\EOF #define XCURSES 1 EOF - echo "$as_me:46464: checking for xcurses.h" >&5 + echo "$as_me:46549: checking for xcurses.h" >&5 echo $ECHO_N "checking for xcurses.h... $ECHO_C" >&6 if test "${ac_cv_header_xcurses_h+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >"conftest.$ac_ext" <<_ACEOF -#line 46470 "configure" +#line 46555 "configure" #include "confdefs.h" #include <xcurses.h> _ACEOF -if { (eval echo "$as_me:46474: \"$ac_cpp "conftest.$ac_ext"\"") >&5 +if { (eval echo "$as_me:46559: \"$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:46480: \$? = $ac_status" >&5 + echo "$as_me:46565: \$? = $ac_status" >&5 (exit "$ac_status"); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -46496,7 +46581,7 @@ else fi rm -f conftest.err "conftest.$ac_ext" fi -echo "$as_me:46499: result: $ac_cv_header_xcurses_h" >&5 +echo "$as_me:46584: result: $ac_cv_header_xcurses_h" >&5 echo "${ECHO_T}$ac_cv_header_xcurses_h" >&6 if test "$ac_cv_header_xcurses_h" = yes; then @@ -46507,7 +46592,7 @@ EOF fi else - { { echo "$as_me:46510: error: Cannot link with XCurses" >&5 + { { echo "$as_me:46595: error: Cannot link with XCurses" >&5 echo "$as_me: error: Cannot link with XCurses" >&2;} { (exit 1); exit 1; }; } fi @@ -46516,7 +46601,7 @@ fi esac else -echo "$as_me:46519: checking if we can include termio.h with curses" >&5 +echo "$as_me:46604: 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 @@ -46526,7 +46611,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 46529 "configure" +#line 46614 "configure" #include "confdefs.h" #include <LYCurses.h> @@ -46540,16 +46625,16 @@ putchar(0x0a) } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:46543: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:46628: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:46546: \$? = $ac_status" >&5 + echo "$as_me:46631: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:46549: \"$ac_try\"") >&5 + { (eval echo "$as_me:46634: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:46552: \$? = $ac_status" >&5 + echo "$as_me:46637: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_termio_and_curses=yes else @@ -46562,7 +46647,7 @@ rm -f "conftest.$ac_objext" "conftest.$ac_ext" rm -f lynx_cfg.h fi -echo "$as_me:46565: result: $cf_cv_termio_and_curses" >&5 +echo "$as_me:46650: result: $cf_cv_termio_and_curses" >&5 echo "${ECHO_T}$cf_cv_termio_and_curses" >&6 test "$cf_cv_termio_and_curses" = yes && @@ -46579,23 +46664,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:46582: checking for $ac_header" >&5 +echo "$as_me:46667: 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 46588 "configure" +#line 46673 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:46592: \"$ac_cpp "conftest.$ac_ext"\"") >&5 +if { (eval echo "$as_me:46677: \"$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:46598: \$? = $ac_status" >&5 + echo "$as_me:46683: \$? = $ac_status" >&5 (exit "$ac_status"); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -46614,7 +46699,7 @@ else fi rm -f conftest.err "conftest.$ac_ext" fi -echo "$as_me:46617: result: `eval echo '${'"$as_ac_Header"'}'`" >&5 +echo "$as_me:46702: 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 @@ -46626,7 +46711,7 @@ done fi -echo "$as_me:46629: checking if curses supports alternate-character set" >&5 +echo "$as_me:46714: 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 @@ -46635,7 +46720,7 @@ else for mapname in acs_map _acs_map do cat >"conftest.$ac_ext" <<_ACEOF -#line 46638 "configure" +#line 46723 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> @@ -46649,16 +46734,16 @@ chtype x = ${mapname}['l']; ${mapname}['m'] = 0 } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:46652: \"$ac_link\"") >&5 +if { (eval echo "$as_me:46737: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:46655: \$? = $ac_status" >&5 + echo "$as_me:46740: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:46658: \"$ac_try\"") >&5 + { (eval echo "$as_me:46743: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:46661: \$? = $ac_status" >&5 + echo "$as_me:46746: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_alt_char_set=$mapname break @@ -46672,21 +46757,21 @@ done fi -echo "$as_me:46675: result: $cf_cv_alt_char_set" >&5 +echo "$as_me:46760: 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:46682: checking if curses supports fancy attributes" >&5 +echo "$as_me:46767: 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 46689 "configure" +#line 46774 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> @@ -46704,16 +46789,16 @@ attrset(A_UNDERLINE|A_BOLD|A_REVERSE); } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:46707: \"$ac_link\"") >&5 +if { (eval echo "$as_me:46792: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:46710: \$? = $ac_status" >&5 + echo "$as_me:46795: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:46713: \"$ac_try\"") >&5 + { (eval echo "$as_me:46798: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:46716: \$? = $ac_status" >&5 + echo "$as_me:46801: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_fancy_curses=yes else @@ -46725,14 +46810,14 @@ rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:46728: result: $cf_cv_fancy_curses" >&5 +echo "$as_me:46813: 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:46735: checking for function curses_version" >&5 +echo "$as_me:46820: 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 @@ -46742,7 +46827,7 @@ if test "$cross_compiling" = yes; then cf_cv_func_curses_version=unknown else cat >"conftest.$ac_ext" <<_ACEOF -#line 46745 "configure" +#line 46830 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> @@ -46755,15 +46840,15 @@ int main(void) _ACEOF rm -f "conftest$ac_exeext" -if { (eval echo "$as_me:46758: \"$ac_link\"") >&5 +if { (eval echo "$as_me:46843: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:46761: \$? = $ac_status" >&5 + echo "$as_me:46846: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='"./conftest$ac_exeext"' - { (eval echo "$as_me:46763: \"$ac_try\"") >&5 + { (eval echo "$as_me:46848: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:46766: \$? = $ac_status" >&5 + echo "$as_me:46851: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_func_curses_version=yes @@ -46778,7 +46863,7 @@ rm -f core ./core.* ./*.core "conftest$ac_exeext" "conftest.$ac_objext" "conftes fi rm -f core fi -echo "$as_me:46781: result: $cf_cv_func_curses_version" >&5 +echo "$as_me:46866: 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 @@ -46786,14 +46871,14 @@ cat >>confdefs.h <<\EOF EOF if test "$cf_cv_ncurses_version" != no ; then -echo "$as_me:46789: checking for obsolete/broken version of ncurses" >&5 +echo "$as_me:46874: 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 46796 "configure" +#line 46881 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> @@ -46812,16 +46897,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:46815: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:46900: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:46818: \$? = $ac_status" >&5 + echo "$as_me:46903: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:46821: \"$ac_try\"") >&5 + { (eval echo "$as_me:46906: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:46824: \$? = $ac_status" >&5 + echo "$as_me:46909: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_ncurses_broken=no else @@ -46833,10 +46918,10 @@ rm -f "conftest.$ac_objext" "conftest.$ac_ext" fi -echo "$as_me:46836: result: $cf_cv_ncurses_broken" >&5 +echo "$as_me:46921: 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:46839: WARNING: hmm... you should get an up-to-date version of ncurses" >&5 + { echo "$as_me:46924: 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 @@ -46846,14 +46931,14 @@ EOF fi fi -echo "$as_me:46849: checking if curses supports color attributes" >&5 +echo "$as_me:46934: 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 46856 "configure" +#line 46941 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> @@ -46873,16 +46958,16 @@ chtype x = COLOR_BLUE; } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:46876: \"$ac_link\"") >&5 +if { (eval echo "$as_me:46961: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:46879: \$? = $ac_status" >&5 + echo "$as_me:46964: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:46882: \"$ac_try\"") >&5 + { (eval echo "$as_me:46967: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:46885: \$? = $ac_status" >&5 + echo "$as_me:46970: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_color_curses=yes else @@ -46894,7 +46979,7 @@ rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:46897: result: $cf_cv_color_curses" >&5 +echo "$as_me:46982: result: $cf_cv_color_curses" >&5 echo "${ECHO_T}$cf_cv_color_curses" >&6 if test "$cf_cv_color_curses" = yes ; then @@ -46918,23 +47003,23 @@ sys/termio.h \ do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` -echo "$as_me:46921: checking for $ac_header" >&5 +echo "$as_me:47006: 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 46927 "configure" +#line 47012 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:46931: \"$ac_cpp "conftest.$ac_ext"\"") >&5 +if { (eval echo "$as_me:47016: \"$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:46937: \$? = $ac_status" >&5 + echo "$as_me:47022: \$? = $ac_status" >&5 (exit "$ac_status"); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -46953,7 +47038,7 @@ else fi rm -f conftest.err "conftest.$ac_ext" fi -echo "$as_me:46956: result: `eval echo '${'"$as_ac_Header"'}'`" >&5 +echo "$as_me:47041: 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 @@ -46970,10 +47055,10 @@ if test "$ac_cv_header_termios_h" = yes ; then (*) termios_bad=maybe ;; esac if test "$termios_bad" = maybe ; then - echo "$as_me:46973: checking whether termios.h needs _POSIX_SOURCE" >&5 + echo "$as_me:47058: 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 46976 "configure" +#line 47061 "configure" #include "confdefs.h" #include <termios.h> int @@ -46985,16 +47070,16 @@ struct termios foo; int x = foo.c_iflag = 1; (void)x } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:46988: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:47073: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:46991: \$? = $ac_status" >&5 + echo "$as_me:47076: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:46994: \"$ac_try\"") >&5 + { (eval echo "$as_me:47079: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:46997: \$? = $ac_status" >&5 + echo "$as_me:47082: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then termios_bad=no else @@ -47002,7 +47087,7 @@ else cat "conftest.$ac_ext" >&5 cat >"conftest.$ac_ext" <<_ACEOF -#line 47005 "configure" +#line 47090 "configure" #include "confdefs.h" #define _POSIX_SOURCE @@ -47016,16 +47101,16 @@ struct termios foo; int x = foo.c_iflag = 2; (void)x } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:47019: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:47104: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:47022: \$? = $ac_status" >&5 + echo "$as_me:47107: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:47025: \"$ac_try\"") >&5 + { (eval echo "$as_me:47110: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:47028: \$? = $ac_status" >&5 + echo "$as_me:47113: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then termios_bad=unknown else @@ -47041,12 +47126,12 @@ rm -f "conftest.$ac_objext" "conftest.$ac_ext" fi rm -f "conftest.$ac_objext" "conftest.$ac_ext" - echo "$as_me:47044: result: $termios_bad" >&5 + echo "$as_me:47129: result: $termios_bad" >&5 echo "${ECHO_T}$termios_bad" >&6 fi fi -echo "$as_me:47049: checking declaration of size-change" >&5 +echo "$as_me:47134: 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 @@ -47067,7 +47152,7 @@ do fi cat >"conftest.$ac_ext" <<_ACEOF -#line 47070 "configure" +#line 47155 "configure" #include "confdefs.h" #include <sys/types.h> #ifdef HAVE_TERMIOS_H @@ -47117,16 +47202,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:47120: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:47205: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:47123: \$? = $ac_status" >&5 + echo "$as_me:47208: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:47126: \"$ac_try\"") >&5 + { (eval echo "$as_me:47211: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:47129: \$? = $ac_status" >&5 + echo "$as_me:47214: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_sizechange=yes else @@ -47145,7 +47230,7 @@ rm -f "conftest.$ac_objext" "conftest.$ac_ext" done fi -echo "$as_me:47148: result: $cf_cv_sizechange" >&5 +echo "$as_me:47233: result: $cf_cv_sizechange" >&5 echo "${ECHO_T}$cf_cv_sizechange" >&6 if test "$cf_cv_sizechange" != no ; then @@ -47163,14 +47248,14 @@ EOF esac fi -echo "$as_me:47166: checking if ttytype is declared in curses library" >&5 +echo "$as_me:47251: 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 47173 "configure" +#line 47258 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> int @@ -47182,16 +47267,16 @@ char *x = &ttytype[1]; *x = 1 } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:47185: \"$ac_link\"") >&5 +if { (eval echo "$as_me:47270: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:47188: \$? = $ac_status" >&5 + echo "$as_me:47273: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:47191: \"$ac_try\"") >&5 + { (eval echo "$as_me:47276: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:47194: \$? = $ac_status" >&5 + echo "$as_me:47279: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_have_ttytype=yes else @@ -47203,7 +47288,7 @@ rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:47206: result: $cf_cv_have_ttytype" >&5 +echo "$as_me:47291: result: $cf_cv_have_ttytype" >&5 echo "${ECHO_T}$cf_cv_have_ttytype" >&6 test "$cf_cv_have_ttytype" = yes && cat >>confdefs.h <<\EOF @@ -47212,14 +47297,14 @@ EOF if test "$use_wide_curses" = yes ; then -echo "$as_me:47215: checking if curses supports wide characters" >&5 +echo "$as_me:47300: 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 47222 "configure" +#line 47307 "configure" #include "confdefs.h" #include <stdlib.h> @@ -47238,16 +47323,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:47241: \"$ac_link\"") >&5 +if { (eval echo "$as_me:47326: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:47244: \$? = $ac_status" >&5 + echo "$as_me:47329: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:47247: \"$ac_try\"") >&5 + { (eval echo "$as_me:47332: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:47250: \$? = $ac_status" >&5 + echo "$as_me:47335: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_widec_curses=yes else @@ -47258,7 +47343,7 @@ fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:47261: result: $cf_cv_widec_curses" >&5 +echo "$as_me:47346: result: $cf_cv_widec_curses" >&5 echo "${ECHO_T}$cf_cv_widec_curses" >&6 if test "$cf_cv_widec_curses" = yes ; then @@ -47268,14 +47353,14 @@ cat >>confdefs.h <<\EOF EOF # This is needed on Tru64 5.0 to declare mbstate_t - echo "$as_me:47271: checking if we must include wchar.h to declare mbstate_t" >&5 + echo "$as_me:47356: 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 47278 "configure" +#line 47363 "configure" #include "confdefs.h" #include <stdlib.h> @@ -47289,23 +47374,23 @@ mbstate_t state; (void)state } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:47292: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:47377: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:47295: \$? = $ac_status" >&5 + echo "$as_me:47380: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:47298: \"$ac_try\"") >&5 + { (eval echo "$as_me:47383: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:47301: \$? = $ac_status" >&5 + echo "$as_me:47386: \$? = $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 47308 "configure" +#line 47393 "configure" #include "confdefs.h" #include <stdlib.h> @@ -47320,16 +47405,16 @@ mbstate_t state; (void)state } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:47323: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:47408: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:47326: \$? = $ac_status" >&5 + echo "$as_me:47411: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:47329: \"$ac_try\"") >&5 + { (eval echo "$as_me:47414: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:47332: \$? = $ac_status" >&5 + echo "$as_me:47417: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_widec_mbstate=yes else @@ -47341,7 +47426,7 @@ rm -f "conftest.$ac_objext" "conftest.$ac_ext" fi rm -f "conftest.$ac_objext" "conftest.$ac_ext" fi -echo "$as_me:47344: result: $cf_cv_widec_mbstate" >&5 +echo "$as_me:47429: result: $cf_cv_widec_mbstate" >&5 echo "${ECHO_T}$cf_cv_widec_mbstate" >&6 if test "$cf_cv_widec_mbstate" = yes ; then @@ -47364,7 +47449,7 @@ fi fi -echo "$as_me:47367: checking definition to turn on extended curses functions" >&5 +echo "$as_me:47452: checking definition to turn on extended curses functions" >&5 echo $ECHO_N "checking definition to turn on extended curses functions... $ECHO_C" >&6 if test "${cf_cv_need_xopen_extension+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -47372,7 +47457,7 @@ else cf_cv_need_xopen_extension=unknown cat >"conftest.$ac_ext" <<_ACEOF -#line 47375 "configure" +#line 47460 "configure" #include "confdefs.h" #include <stdlib.h> @@ -47405,16 +47490,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:47408: \"$ac_link\"") >&5 +if { (eval echo "$as_me:47493: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:47411: \$? = $ac_status" >&5 + echo "$as_me:47496: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:47414: \"$ac_try\"") >&5 + { (eval echo "$as_me:47499: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:47417: \$? = $ac_status" >&5 + echo "$as_me:47502: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_need_xopen_extension=none else @@ -47424,7 +47509,7 @@ cat "conftest.$ac_ext" >&5 for cf_try_xopen_extension in _XOPEN_SOURCE_EXTENDED NCURSES_WIDECHAR do cat >"conftest.$ac_ext" <<_ACEOF -#line 47427 "configure" +#line 47512 "configure" #include "confdefs.h" #define $cf_try_xopen_extension 1 @@ -47453,16 +47538,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:47456: \"$ac_link\"") >&5 +if { (eval echo "$as_me:47541: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:47459: \$? = $ac_status" >&5 + echo "$as_me:47544: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:47462: \"$ac_try\"") >&5 + { (eval echo "$as_me:47547: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:47465: \$? = $ac_status" >&5 + echo "$as_me:47550: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_need_xopen_extension=$cf_try_xopen_extension; break else @@ -47476,7 +47561,7 @@ fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:47479: result: $cf_cv_need_xopen_extension" >&5 +echo "$as_me:47564: result: $cf_cv_need_xopen_extension" >&5 echo "${ECHO_T}$cf_cv_need_xopen_extension" >&6 case "$cf_cv_need_xopen_extension" in @@ -47488,7 +47573,7 @@ case "$cf_cv_need_xopen_extension" in ;; esac -echo "$as_me:47491: checking for term.h" >&5 +echo "$as_me:47576: 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 @@ -47509,7 +47594,7 @@ esac for cf_header in $cf_header_list do cat >"conftest.$ac_ext" <<_ACEOF -#line 47512 "configure" +#line 47597 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> @@ -47523,16 +47608,16 @@ WINDOW *x; (void)x } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:47526: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:47611: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:47529: \$? = $ac_status" >&5 + echo "$as_me:47614: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:47532: \"$ac_try\"") >&5 + { (eval echo "$as_me:47617: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:47535: \$? = $ac_status" >&5 + echo "$as_me:47620: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_term_header=$cf_header break @@ -47551,7 +47636,7 @@ case "$cf_cv_term_header" in for cf_header in ncurses/term.h ncursesw/term.h do cat >"conftest.$ac_ext" <<_ACEOF -#line 47554 "configure" +#line 47639 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> @@ -47569,16 +47654,16 @@ WINDOW *x; (void)x } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:47572: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:47657: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:47575: \$? = $ac_status" >&5 + echo "$as_me:47660: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:47578: \"$ac_try\"") >&5 + { (eval echo "$as_me:47663: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:47581: \$? = $ac_status" >&5 + echo "$as_me:47666: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_term_header=$cf_header break @@ -47593,7 +47678,7 @@ rm -f "conftest.$ac_objext" "conftest.$ac_ext" esac fi -echo "$as_me:47596: result: $cf_cv_term_header" >&5 +echo "$as_me:47681: result: $cf_cv_term_header" >&5 echo "${ECHO_T}$cf_cv_term_header" >&6 case "$cf_cv_term_header" in @@ -47620,7 +47705,7 @@ EOF ;; esac -echo "$as_me:47623: checking for unctrl.h" >&5 +echo "$as_me:47708: checking for unctrl.h" >&5 echo $ECHO_N "checking for unctrl.h... $ECHO_C" >&6 if test "${cf_cv_unctrl_header+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -47641,7 +47726,7 @@ esac for cf_header in $cf_header_list do cat >"conftest.$ac_ext" <<_ACEOF -#line 47644 "configure" +#line 47729 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> @@ -47655,16 +47740,16 @@ WINDOW *x; (void)x } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:47658: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:47743: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:47661: \$? = $ac_status" >&5 + echo "$as_me:47746: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:47664: \"$ac_try\"") >&5 + { (eval echo "$as_me:47749: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:47667: \$? = $ac_status" >&5 + echo "$as_me:47752: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_unctrl_header=$cf_header break @@ -47677,12 +47762,12 @@ rm -f "conftest.$ac_objext" "conftest.$ac_ext" done fi -echo "$as_me:47680: result: $cf_cv_unctrl_header" >&5 +echo "$as_me:47765: result: $cf_cv_unctrl_header" >&5 echo "${ECHO_T}$cf_cv_unctrl_header" >&6 case "$cf_cv_unctrl_header" in (no) - { echo "$as_me:47685: WARNING: unctrl.h header not found" >&5 + { echo "$as_me:47770: WARNING: unctrl.h header not found" >&5 echo "$as_me: WARNING: unctrl.h header not found" >&2;} ;; esac @@ -47738,10 +47823,10 @@ do cf_tr_func=`echo "$cf_func" | sed y%abcdefghijklmnopqrstuvwxyz./-%ABCDEFGHIJKLMNOPQRSTUVWXYZ___%` - echo "$as_me:47741: checking for ${cf_func}" >&5 + echo "$as_me:47826: checking for ${cf_func}" >&5 echo $ECHO_N "checking for ${cf_func}... $ECHO_C" >&6 -echo "${as_me:-configure}:47744: testing ${cf_func} ..." 1>&5 +echo "${as_me:-configure}:47829: testing ${cf_func} ..." 1>&5 if eval "test \"\${cf_cv_func_$cf_func+set}\" = set"; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -47750,7 +47835,7 @@ else eval cf_result='$ac_cv_func_'$cf_func if test ".$cf_result" != ".no"; then cat >"conftest.$ac_ext" <<_ACEOF -#line 47753 "configure" +#line 47838 "configure" #include "confdefs.h" #ifdef HAVE_XCURSES @@ -47783,16 +47868,16 @@ if (foo + 1234L > 5678L) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:47786: \"$ac_link\"") >&5 +if { (eval echo "$as_me:47871: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:47789: \$? = $ac_status" >&5 + echo "$as_me:47874: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:47792: \"$ac_try\"") >&5 + { (eval echo "$as_me:47877: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:47795: \$? = $ac_status" >&5 + echo "$as_me:47880: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_result=yes else @@ -47808,7 +47893,7 @@ fi # use the computed/retrieved cache-value: eval 'cf_result=$cf_cv_func_'$cf_func - echo "$as_me:47811: result: $cf_result" >&5 + echo "$as_me:47896: result: $cf_result" >&5 echo "${ECHO_T}$cf_result" >&6 if test "$cf_result" != no; then cat >>confdefs.h <<EOF @@ -47825,13 +47910,13 @@ for ac_func in \ do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` -echo "$as_me:47828: checking for $ac_func" >&5 +echo "$as_me:47913: 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 47834 "configure" +#line 47919 "configure" #include "confdefs.h" #define $ac_func autoconf_temporary #include <limits.h> /* least-intrusive standard header which defines gcc2 __stub macros */ @@ -47862,16 +47947,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:47865: \"$ac_link\"") >&5 +if { (eval echo "$as_me:47950: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:47868: \$? = $ac_status" >&5 + echo "$as_me:47953: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:47871: \"$ac_try\"") >&5 + { (eval echo "$as_me:47956: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:47874: \$? = $ac_status" >&5 + echo "$as_me:47959: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then eval "$as_ac_var=yes" else @@ -47881,7 +47966,7 @@ eval "$as_ac_var=no" fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:47884: result: `eval echo '${'"$as_ac_var"'}'`" >&5 +echo "$as_me:47969: 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 @@ -47895,12 +47980,12 @@ fi if test "$use_color_style" != no ; then if test .$cf_cv_color_curses != .yes ; then - { { echo "$as_me:47898: error: Configuration does not support color-styles" >&5 + { { echo "$as_me:47983: 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:47903: error: Configuration does not support color-styles" >&5 + { { echo "$as_me:47988: error: Configuration does not support color-styles" >&5 echo "$as_me: error: Configuration does not support color-styles" >&2;} { (exit 1); exit 1; }; } fi @@ -47908,7 +47993,7 @@ fi if test "$use_scrollbar" != no ; then if test .$cf_cv_fancy_curses != .yes ; then - { echo "$as_me:47911: WARNING: Configuration does not support ACS_xxx definitions" >&5 + { echo "$as_me:47996: WARNING: Configuration does not support ACS_xxx definitions" >&5 echo "$as_me: WARNING: Configuration does not support ACS_xxx definitions" >&2;} else @@ -47921,7 +48006,7 @@ fi # use rpath for libraries in unusual places -echo "$as_me:47924: checking if rpath-hack should be disabled" >&5 +echo "$as_me:48009: checking if rpath-hack should be disabled" >&5 echo $ECHO_N "checking if rpath-hack should be disabled... $ECHO_C" >&6 # Check whether --enable-rpath-hack or --disable-rpath-hack was given. @@ -47939,22 +48024,22 @@ else fi; if test "x$enable_rpath_hack" = xno; then cf_disable_rpath_hack=yes; else cf_disable_rpath_hack=no; fi -echo "$as_me:47942: result: $cf_disable_rpath_hack" >&5 +echo "$as_me:48027: result: $cf_disable_rpath_hack" >&5 echo "${ECHO_T}$cf_disable_rpath_hack" >&6 if test "$enable_rpath_hack" = yes ; then -echo "$as_me:47947: checking for updated LDFLAGS" >&5 +echo "$as_me:48032: 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:47950: result: maybe" >&5 + echo "$as_me:48035: 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:47957: checking for $ac_word" >&5 +echo "$as_me:48042: 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 @@ -47969,7 +48054,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_cf_ldd_prog="$ac_prog" -echo "$as_me:47972: found $ac_dir/$ac_word" >&5 +echo "$as_me:48057: found $ac_dir/$ac_word" >&5 break done @@ -47977,10 +48062,10 @@ fi fi cf_ldd_prog=$ac_cv_prog_cf_ldd_prog if test -n "$cf_ldd_prog"; then - echo "$as_me:47980: result: $cf_ldd_prog" >&5 + echo "$as_me:48065: result: $cf_ldd_prog" >&5 echo "${ECHO_T}$cf_ldd_prog" >&6 else - echo "$as_me:47983: result: no" >&5 + echo "$as_me:48068: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -47994,7 +48079,7 @@ test -n "$cf_ldd_prog" || cf_ldd_prog="no" cf_rpath_oops= cat >"conftest.$ac_ext" <<_ACEOF -#line 47997 "configure" +#line 48082 "configure" #include "confdefs.h" #include <stdio.h> int @@ -48006,16 +48091,16 @@ printf("Hello"); } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:48009: \"$ac_link\"") >&5 +if { (eval echo "$as_me:48094: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:48012: \$? = $ac_status" >&5 + echo "$as_me:48097: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:48015: \"$ac_try\"") >&5 + { (eval echo "$as_me:48100: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:48018: \$? = $ac_status" >&5 + echo "$as_me:48103: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_rpath_oops=`"$cf_ldd_prog" "conftest$ac_exeext" | ${FGREP-fgrep} ' not found' | sed -e 's% =>.*$%%' |sort | uniq` cf_rpath_list=`"$cf_ldd_prog" "conftest$ac_exeext" | ${FGREP-fgrep} / | sed -e 's%^.*[ ]/%/%' -e 's%/[^/][^/]*$%%' |sort | uniq` @@ -48043,7 +48128,7 @@ rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" then test -n "$verbose" && echo " ...adding -L$cf_rpath_dir/lib to LDFLAGS for $cf_rpath_src" 1>&6 -echo "${as_me:-configure}:48046: testing ...adding -L$cf_rpath_dir/lib to LDFLAGS for $cf_rpath_src ..." 1>&5 +echo "${as_me:-configure}:48131: testing ...adding -L$cf_rpath_dir/lib to LDFLAGS for $cf_rpath_src ..." 1>&5 LDFLAGS="$LDFLAGS -L$cf_rpath_dir/lib" break @@ -48055,11 +48140,11 @@ echo "${as_me:-configure}:48046: testing ...adding -L$cf_rpath_dir/lib to LDFLAG test -n "$verbose" && echo " ...checking EXTRA_LDFLAGS $EXTRA_LDFLAGS" 1>&6 -echo "${as_me:-configure}:48058: testing ...checking EXTRA_LDFLAGS $EXTRA_LDFLAGS ..." 1>&5 +echo "${as_me:-configure}:48143: testing ...checking EXTRA_LDFLAGS $EXTRA_LDFLAGS ..." 1>&5 test -n "$verbose" && echo " ...checking LDFLAGS $LDFLAGS" 1>&6 -echo "${as_me:-configure}:48062: testing ...checking LDFLAGS $LDFLAGS ..." 1>&5 +echo "${as_me:-configure}:48147: testing ...checking LDFLAGS $LDFLAGS ..." 1>&5 cf_rpath_dst= for cf_rpath_src in $LDFLAGS @@ -48096,7 +48181,7 @@ do then test -n "$verbose" && echo " ...Filter $cf_rpath_src ->$cf_rpath_tmp" 1>&6 -echo "${as_me:-configure}:48099: testing ...Filter $cf_rpath_src ->$cf_rpath_tmp ..." 1>&5 +echo "${as_me:-configure}:48184: testing ...Filter $cf_rpath_src ->$cf_rpath_tmp ..." 1>&5 EXTRA_LDFLAGS="$cf_rpath_tmp $EXTRA_LDFLAGS" fi @@ -48109,11 +48194,11 @@ LDFLAGS=$cf_rpath_dst test -n "$verbose" && echo " ...checked LDFLAGS $LDFLAGS" 1>&6 -echo "${as_me:-configure}:48112: testing ...checked LDFLAGS $LDFLAGS ..." 1>&5 +echo "${as_me:-configure}:48197: testing ...checked LDFLAGS $LDFLAGS ..." 1>&5 test -n "$verbose" && echo " ...checking LIBS $LIBS" 1>&6 -echo "${as_me:-configure}:48116: testing ...checking LIBS $LIBS ..." 1>&5 +echo "${as_me:-configure}:48201: testing ...checking LIBS $LIBS ..." 1>&5 cf_rpath_dst= for cf_rpath_src in $LIBS @@ -48150,7 +48235,7 @@ do then test -n "$verbose" && echo " ...Filter $cf_rpath_src ->$cf_rpath_tmp" 1>&6 -echo "${as_me:-configure}:48153: testing ...Filter $cf_rpath_src ->$cf_rpath_tmp ..." 1>&5 +echo "${as_me:-configure}:48238: testing ...Filter $cf_rpath_src ->$cf_rpath_tmp ..." 1>&5 EXTRA_LDFLAGS="$cf_rpath_tmp $EXTRA_LDFLAGS" fi @@ -48163,14 +48248,14 @@ LIBS=$cf_rpath_dst test -n "$verbose" && echo " ...checked LIBS $LIBS" 1>&6 -echo "${as_me:-configure}:48166: testing ...checked LIBS $LIBS ..." 1>&5 +echo "${as_me:-configure}:48251: testing ...checked LIBS $LIBS ..." 1>&5 test -n "$verbose" && echo " ...checked EXTRA_LDFLAGS $EXTRA_LDFLAGS" 1>&6 -echo "${as_me:-configure}:48170: testing ...checked EXTRA_LDFLAGS $EXTRA_LDFLAGS ..." 1>&5 +echo "${as_me:-configure}:48255: testing ...checked EXTRA_LDFLAGS $EXTRA_LDFLAGS ..." 1>&5 else - echo "$as_me:48173: result: no" >&5 + echo "$as_me:48258: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -48285,7 +48370,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:48288: creating $CONFIG_STATUS" >&5 +{ echo "$as_me:48373: creating $CONFIG_STATUS" >&5 echo "$as_me: creating $CONFIG_STATUS" >&6;} cat >"$CONFIG_STATUS" <<_ACEOF #! $SHELL @@ -48464,7 +48549,7 @@ cat >>"$CONFIG_STATUS" <<\EOF echo "$ac_cs_version"; exit 0 ;; --he | --h) # Conflict between --help and --header - { { echo "$as_me:48467: error: ambiguous option: $1 + { { echo "$as_me:48552: 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;} @@ -48483,7 +48568,7 @@ Try \`$0 --help' for more information." >&2;} ac_need_defaults=false;; # This is an error. - -*) { { echo "$as_me:48486: error: unrecognized option: $1 + -*) { { echo "$as_me:48571: 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;} @@ -48536,7 +48621,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:48539: error: invalid argument: $ac_config_target" >&5 + *) { { echo "$as_me:48624: error: invalid argument: $ac_config_target" >&5 echo "$as_me: error: invalid argument: $ac_config_target" >&2;} { (exit 1); exit 1; }; };; esac @@ -48689,6 +48774,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,@EXTRA_CFLAGS@,$EXTRA_CFLAGS,;t t +s,@HAVE_STDNORETURN_H@,$HAVE_STDNORETURN_H,;t t s,@MSGINIT@,$MSGINIT,;t t s,@ALLOCA@,$ALLOCA,;t t s,@GLIBC21@,$GLIBC21,;t t @@ -48896,7 +48982,7 @@ done; } esac if test x"$ac_file" != x-; then - { echo "$as_me:48899: creating $ac_file" >&5 + { echo "$as_me:48985: creating $ac_file" >&5 echo "$as_me: creating $ac_file" >&6;} rm -f "$ac_file" fi @@ -48914,7 +49000,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:48917: error: cannot find input file: $f" >&5 + test -f "$f" || { { echo "$as_me:49003: error: cannot find input file: $f" >&5 echo "$as_me: error: cannot find input file: $f" >&2;} { (exit 1); exit 1; }; } echo $f;; @@ -48927,7 +49013,7 @@ echo "$as_me: error: cannot find input file: $f" >&2;} echo "$srcdir/$f" else # /dev/null tree - { { echo "$as_me:48930: error: cannot find input file: $f" >&5 + { { echo "$as_me:49016: error: cannot find input file: $f" >&5 echo "$as_me: error: cannot find input file: $f" >&2;} { (exit 1); exit 1; }; } fi;; @@ -48943,7 +49029,7 @@ cat >>"$CONFIG_STATUS" <<\EOF if test -n "$ac_seen"; then ac_used=`grep '@datarootdir@' "$ac_item"` if test -z "$ac_used"; then - { echo "$as_me:48946: WARNING: datarootdir was used implicitly but not set: + { echo "$as_me:49032: WARNING: datarootdir was used implicitly but not set: $ac_seen" >&5 echo "$as_me: WARNING: datarootdir was used implicitly but not set: $ac_seen" >&2;} @@ -48952,7 +49038,7 @@ $ac_seen" >&2;} fi ac_seen=`grep '${datarootdir}' "$ac_item"` if test -n "$ac_seen"; then - { echo "$as_me:48955: WARNING: datarootdir was used explicitly but not set: + { echo "$as_me:49041: WARNING: datarootdir was used explicitly but not set: $ac_seen" >&5 echo "$as_me: WARNING: datarootdir was used explicitly but not set: $ac_seen" >&2;} @@ -48989,7 +49075,7 @@ s,@INSTALL@,$ac_INSTALL,;t t ac_init=`${EGREP-egrep} '[ ]*'$ac_name'[ ]*=' "$ac_file"` if test -z "$ac_init"; then ac_seen=`echo "$ac_seen" |sed -e 's,^,'$ac_file':,'` - { echo "$as_me:48992: WARNING: Variable $ac_name is used but was not set: + { echo "$as_me:49078: WARNING: Variable $ac_name is used but was not set: $ac_seen" >&5 echo "$as_me: WARNING: Variable $ac_name is used but was not set: $ac_seen" >&2;} @@ -49000,7 +49086,7 @@ $ac_seen" >&2;} ${EGREP-egrep} -n '@[A-Z_][A-Z_0-9]+@' "$ac_file" >>$tmp/out if test -s $tmp/out; then ac_seen=`sed -e 's,^,'$ac_file':,' < $tmp/out` - { echo "$as_me:49003: WARNING: Some variables may not be substituted: + { echo "$as_me:49089: WARNING: Some variables may not be substituted: $ac_seen" >&5 echo "$as_me: WARNING: Some variables may not be substituted: $ac_seen" >&2;} @@ -49049,7 +49135,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:49052: creating $ac_file" >&5 + test x"$ac_file" != x- && { echo "$as_me:49138: creating $ac_file" >&5 echo "$as_me: creating $ac_file" >&6;} # First look for the input files in the build tree, otherwise in the @@ -49060,7 +49146,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:49063: error: cannot find input file: $f" >&5 + test -f "$f" || { { echo "$as_me:49149: error: cannot find input file: $f" >&5 echo "$as_me: error: cannot find input file: $f" >&2;} { (exit 1); exit 1; }; } echo $f;; @@ -49073,7 +49159,7 @@ echo "$as_me: error: cannot find input file: $f" >&2;} echo "$srcdir/$f" else # /dev/null tree - { { echo "$as_me:49076: error: cannot find input file: $f" >&5 + { { echo "$as_me:49162: error: cannot find input file: $f" >&5 echo "$as_me: error: cannot find input file: $f" >&2;} { (exit 1); exit 1; }; } fi;; @@ -49191,7 +49277,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:49194: $ac_file is unchanged" >&5 + { echo "$as_me:49280: $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/src/LYMain.c b/src/LYMain.c index 68234478..ad9c1fc2 100644 --- a/src/LYMain.c +++ b/src/LYMain.c @@ -1,5 +1,5 @@ /* - * $LynxId: LYMain.c,v 1.290 2020/09/03 00:05:23 Steffen.Nurpmeso Exp $ + * $LynxId: LYMain.c,v 1.291 2021/03/22 22:52:58 tom Exp $ */ #include <HTUtils.h> #include <HTTP.h> @@ -688,7 +688,7 @@ static char *nonoption = 0; #endif static BOOL parse_arg(char **arg, unsigned mask, int *countp); -static void print_help_and_exit(int exit_status) GCC_NORETURN; +static GCC_NORETURN void print_help_and_exit(int exit_status); static void print_help_strings(const char *name, const char *help, const char *value, diff --git a/src/chrtrans/makeuctb.c b/src/chrtrans/makeuctb.c index 9035292f..29d43ee9 100644 --- a/src/chrtrans/makeuctb.c +++ b/src/chrtrans/makeuctb.c @@ -1,5 +1,5 @@ /* - * $LynxId: makeuctb.c,v 1.51 2020/09/03 22:09:36 tom Exp $ + * $LynxId: makeuctb.c,v 1.52 2021/03/22 22:52:58 tom Exp $ * * makeuctb.c, derived from conmakehash.c - kw * @@ -65,7 +65,7 @@ static FILE *chdr = 0; * everything before leaving, since some old (and a few not-so-old) platforms * do not properly implement POSIX 'exit()'. */ -static void done(int code) GCC_NORETURN; +static GCC_NORETURN void done(int code); static void done(int code) { |