diff options
author | Thomas E. Dickey <dickey@invisible-island.net> | 2022-12-28 13:45:05 +0000 |
---|---|---|
committer | Thomas E. Dickey <dickey@invisible-island.net> | 2022-12-29 01:01:18 +0000 |
commit | 8582c56e4156e5da15f8924537462eabc66e7371 (patch) | |
tree | 25371bfdc28996b22462bd4103f8da3b1a0bd796 | |
parent | 6e7cae400154d3d8bca99ceef49dde1518695731 (diff) | |
download | lynx-snapshots-8582c56e4156e5da15f8924537462eabc66e7371.tar.gz |
snapshot of project "lynx", label v2-9-0dev_10o
-rw-r--r-- | CHANGES | 5 | ||||
-rw-r--r-- | INSTALLATION | 4 | ||||
-rw-r--r-- | PACKAGE/debian/watch | 2 | ||||
-rw-r--r-- | README | 4 | ||||
-rw-r--r-- | aclocal.m4 | 19 | ||||
-rwxr-xr-x | configure | 7415 | ||||
-rw-r--r-- | lynx.cfg | 6 | ||||
-rw-r--r-- | makefile.in | 6 |
8 files changed, 3736 insertions, 3725 deletions
diff --git a/CHANGES b/CHANGES index 0ec3a3a4..a9c20b1e 100644 --- a/CHANGES +++ b/CHANGES @@ -1,9 +1,10 @@ --- $LynxId: CHANGES,v 1.1122 2022/12/04 21:25:47 tom Exp $ +-- $LynxId: CHANGES,v 1.1123 2022/12/28 13:45:05 tom Exp $ =============================================================================== Changes since Lynx 2.8 release =============================================================================== -2022-12-04 (2.9.0dev.11) +2022-12-28 (2.9.0dev.11) +* update ncurses/lynx homepage URLs to deprecate ftp -TD * modify configure script to reduce implicit-function warnings (report by Florian Weimer) -TD * update configure script to work around regression in grep 3.8 -TD diff --git a/INSTALLATION b/INSTALLATION index bd227b91..b51d8f81 100644 --- a/INSTALLATION +++ b/INSTALLATION @@ -135,7 +135,7 @@ II. Compile instructions -- UNIX installed) are often broken, so you may get superior performance if you have either - "ncurses" ("ftp://ftp.invisible-island.net/ncurses") or + "ncurses" ("https://invisible-island.net/ncurses") or "slang" ("ftp://space.mit.edu/pub/davis/slang"). If you install these libraries in your home directory or a non-default @@ -1506,4 +1506,4 @@ VIII. Acknowledgment -- 1999/04/24 - H. Nelson <lynx-admin@irm.nara.kindai.ac.jp> -- vile:txtmode --- $LynxId: INSTALLATION,v 1.136 2021/07/29 23:35:35 tom Exp $ +-- $LynxId: INSTALLATION,v 1.137 2022/12/28 13:40:56 tom Exp $ diff --git a/PACKAGE/debian/watch b/PACKAGE/debian/watch index 1d7db0b4..f8339310 100644 --- a/PACKAGE/debian/watch +++ b/PACKAGE/debian/watch @@ -1,4 +1,4 @@ version=3 -opts=passive ftp://ftp.invisible-island.net/lynx/archives/lynx-cur\.tgz \ +opts=passive https://invisible-island.net/lynx/archives/lynx-cur\.tgz \ debian uupdate diff --git a/README b/README index 0fb41d9e..d7668273 100644 --- a/README +++ b/README @@ -36,7 +36,7 @@ HOW TO GET LYNX For the latest release of Lynx go to: <URL: https://lynx.invisible-island.net/release>; - <URL: ftp://ftp.invisible-island.net/lynx/tarballs>; + <URL: https://invisible-island.net/archives/lynx/tarballs>; The latest development version is at: <URL: https://lynx.invisible-island.net/current/>. @@ -150,5 +150,5 @@ LYNX-DEV MAILING LIST ------------------------------------------------------------------------------ -- vile:txtmode fc=72 noti --- $LynxId: README,v 1.35 2018/07/09 20:00:20 tom Exp $ +-- $LynxId: README,v 1.36 2022/12/28 13:41:40 tom Exp $ ------------------------------------------------------------------------------ diff --git a/aclocal.m4 b/aclocal.m4 index 8efde6cf..6841d99a 100644 --- a/aclocal.m4 +++ b/aclocal.m4 @@ -1,4 +1,4 @@ -dnl $LynxId: aclocal.m4,v 1.314 2022/12/04 21:39:19 tom Exp $ +dnl $LynxId: aclocal.m4,v 1.315 2022/12/22 00:42:05 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> @@ -3254,6 +3254,7 @@ then AC_CHECKING([for $CC __attribute__ directives]) cat > "conftest.$ac_ext" <<EOF #line __oline__ "${as_me:-configure}" +#include <stdio.h> #include "confdefs.h" #include "conftest.h" #include "conftest.i" @@ -6464,7 +6465,7 @@ AC_SUBST(TAR_FILE_OPTIONS) AC_SUBST(TAR_PIPE_OPTIONS) ])dnl dnl --------------------------------------------------------------------------- -dnl CF_TERMCAP_LIBS version: 16 updated: 2022/12/02 20:06:52 +dnl CF_TERMCAP_LIBS version: 17 updated: 2022/12/21 19:42:05 dnl --------------- dnl Look for termcap libraries, or the equivalent in terminfo. dnl @@ -6473,8 +6474,12 @@ AC_DEFUN([CF_TERMCAP_LIBS], [ AC_CACHE_VAL(cf_cv_termlib,[ cf_cv_termlib=none -AC_TRY_LINK([extern char *tgoto(const char*,int,int);],[char *x=tgoto("",0,0)], -[AC_TRY_LINK([extern char *tigetstr(const char *)],[char *x=tigetstr("")], +AC_TRY_LINK( + [extern char *tgoto(const char*,int,int);], + [char *x=tgoto("",0,0); (void)x;], +[AC_TRY_LINK( + [extern char *tigetstr(const char *);], + [char *x=tigetstr(""); (void)x;], [cf_cv_termlib=terminfo], [cf_cv_termlib=termcap]) CF_VERBOSE(using functions in predefined $cf_cv_termlib LIBS) @@ -6497,7 +6502,11 @@ if test "$cf_cv_termlib" = none; then for cf_func in tigetstr tgetstr do AC_MSG_CHECKING(for $cf_func in -l$cf_lib) - AC_TRY_LINK([],[int x=$cf_func("")],[cf_result=yes],[cf_result=no]) + AC_TRY_LINK( + [extern char *$cf_func(const char *);], + [int x=$cf_func(""); (void)x], + [cf_result=yes], + [cf_result=no]) AC_MSG_RESULT($cf_result) if test "$cf_result" = yes ; then if test "$cf_func" = tigetstr ; then diff --git a/configure b/configure index a82b670f..a779eb24 100755 --- a/configure +++ b/configure @@ -5567,6 +5567,7 @@ then echo "$as_me: checking for $CC __attribute__ directives..." >&6;} cat > "conftest.$ac_ext" <<EOF #line 5569 "${as_me:-configure}" +#include <stdio.h> #include "confdefs.h" #include "conftest.h" #include "conftest.i" @@ -5615,12 +5616,12 @@ EOF ;; esac - if { (eval echo "$as_me:5618: \"$ac_compile\"") >&5 + if { (eval echo "$as_me:5619: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:5621: \$? = $ac_status" >&5 + echo "$as_me:5622: \$? = $ac_status" >&5 (exit "$ac_status"); }; then - test -n "$verbose" && echo "$as_me:5623: result: ... $cf_attribute" >&5 + test -n "$verbose" && echo "$as_me:5624: result: ... $cf_attribute" >&5 echo "${ECHO_T}... $cf_attribute" >&6 cat conftest.h >>confdefs.h case "$cf_attribute" in @@ -5698,7 +5699,7 @@ do done cat >"conftest.$ac_ext" <<_ACEOF -#line 5701 "configure" +#line 5702 "configure" #include "confdefs.h" #include <stdlib.h> @@ -5713,26 +5714,26 @@ String foo = malloc(1); free((void*)foo) } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:5716: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:5717: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:5719: \$? = $ac_status" >&5 + echo "$as_me:5720: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:5722: \"$ac_try\"") >&5 + { (eval echo "$as_me:5723: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:5725: \$? = $ac_status" >&5 + echo "$as_me:5726: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then -echo "$as_me:5728: checking for X11/Xt const-feature" >&5 +echo "$as_me:5729: 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 5735 "configure" +#line 5736 "configure" #include "confdefs.h" #define _CONST_X_STRING /* X11R7.8 (perhaps) */ @@ -5749,16 +5750,16 @@ String foo = malloc(1); *foo = 0 } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:5752: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:5753: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:5755: \$? = $ac_status" >&5 + echo "$as_me:5756: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:5758: \"$ac_try\"") >&5 + { (eval echo "$as_me:5759: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:5761: \$? = $ac_status" >&5 + echo "$as_me:5762: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_const_x_string=no @@ -5773,7 +5774,7 @@ fi rm -f "conftest.$ac_objext" "conftest.$ac_ext" fi -echo "$as_me:5776: result: $cf_cv_const_x_string" >&5 +echo "$as_me:5777: result: $cf_cv_const_x_string" >&5 echo "${ECHO_T}$cf_cv_const_x_string" >&6 LIBS="$cf_save_LIBS_CF_CONST_X_STRING" @@ -5802,7 +5803,7 @@ fi rm -f "conftest.$ac_objext" "conftest.$ac_ext" fi cat > "conftest.$ac_ext" <<EOF -#line 5805 "${as_me:-configure}" +#line 5806 "${as_me:-configure}" int main(int argc, char *argv[]) { return (argv[argc-1] == 0) ; } EOF if test "$INTEL_COMPILER" = yes @@ -5818,7 +5819,7 @@ then # remark #981: operands are evaluated in unspecified order # warning #279: controlling expression is constant - { echo "$as_me:5821: checking for $CC warning options..." >&5 + { echo "$as_me:5822: checking for $CC warning options..." >&5 echo "$as_me: checking for $CC warning options..." >&6;} cf_save_CFLAGS="$CFLAGS" EXTRA_CFLAGS="$EXTRA_CFLAGS -Wall" @@ -5834,12 +5835,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:5837: \"$ac_compile\"") >&5 + if { (eval echo "$as_me:5838: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:5840: \$? = $ac_status" >&5 + echo "$as_me:5841: \$? = $ac_status" >&5 (exit "$ac_status"); }; then - test -n "$verbose" && echo "$as_me:5842: result: ... -$cf_opt" >&5 + test -n "$verbose" && echo "$as_me:5843: result: ... -$cf_opt" >&5 echo "${ECHO_T}... -$cf_opt" >&6 EXTRA_CFLAGS="$EXTRA_CFLAGS -$cf_opt" fi @@ -5847,7 +5848,7 @@ echo "${ECHO_T}... -$cf_opt" >&6 CFLAGS="$cf_save_CFLAGS" elif test "$GCC" = yes && test "$GCC_VERSION" != "unknown" then - { echo "$as_me:5850: checking for $CC warning options..." >&5 + { echo "$as_me:5851: checking for $CC warning options..." >&5 echo "$as_me: checking for $CC warning options..." >&6;} cf_save_CFLAGS="$CFLAGS" cf_warn_CONST="" @@ -5870,12 +5871,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:5873: \"$ac_compile\"") >&5 + if { (eval echo "$as_me:5874: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:5876: \$? = $ac_status" >&5 + echo "$as_me:5877: \$? = $ac_status" >&5 (exit "$ac_status"); }; then - test -n "$verbose" && echo "$as_me:5878: result: ... -$cf_opt" >&5 + test -n "$verbose" && echo "$as_me:5879: result: ... -$cf_opt" >&5 echo "${ECHO_T}... -$cf_opt" >&6 case "$cf_opt" in (Winline) @@ -5883,7 +5884,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}:5886: testing feature is broken in gcc $GCC_VERSION ..." 1>&5 +echo "${as_me:-configure}:5887: testing feature is broken in gcc $GCC_VERSION ..." 1>&5 continue;; esac @@ -5893,7 +5894,7 @@ echo "${as_me:-configure}:5886: 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}:5896: testing feature is broken in gcc $GCC_VERSION ..." 1>&5 +echo "${as_me:-configure}:5897: testing feature is broken in gcc $GCC_VERSION ..." 1>&5 continue;; esac @@ -5910,7 +5911,7 @@ fi fi -echo "$as_me:5913: checking if you want to use dbmalloc for testing" >&5 +echo "$as_me:5914: 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. @@ -5932,7 +5933,7 @@ EOF else with_dbmalloc= fi; -echo "$as_me:5935: result: ${with_dbmalloc:-no}" >&5 +echo "$as_me:5936: result: ${with_dbmalloc:-no}" >&5 echo "${ECHO_T}${with_dbmalloc:-no}" >&6 case ".$with_cflags" in @@ -6046,23 +6047,23 @@ fi esac if test "$with_dbmalloc" = yes ; then - echo "$as_me:6049: checking for dbmalloc.h" >&5 + echo "$as_me:6050: 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 6055 "configure" +#line 6056 "configure" #include "confdefs.h" #include <dbmalloc.h> _ACEOF -if { (eval echo "$as_me:6059: \"$ac_cpp "conftest.$ac_ext"\"") >&5 +if { (eval echo "$as_me:6060: \"$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:6065: \$? = $ac_status" >&5 + echo "$as_me:6066: \$? = $ac_status" >&5 (exit "$ac_status"); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -6081,11 +6082,11 @@ else fi rm -f conftest.err "conftest.$ac_ext" fi -echo "$as_me:6084: result: $ac_cv_header_dbmalloc_h" >&5 +echo "$as_me:6085: 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:6088: checking for debug_malloc in -ldbmalloc" >&5 +echo "$as_me:6089: 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 @@ -6093,7 +6094,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-ldbmalloc $LIBS" cat >"conftest.$ac_ext" <<_ACEOF -#line 6096 "configure" +#line 6097 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -6112,16 +6113,16 @@ debug_malloc (); } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:6115: \"$ac_link\"") >&5 +if { (eval echo "$as_me:6116: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:6118: \$? = $ac_status" >&5 + echo "$as_me:6119: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:6121: \"$ac_try\"") >&5 + { (eval echo "$as_me:6122: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:6124: \$? = $ac_status" >&5 + echo "$as_me:6125: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_lib_dbmalloc_debug_malloc=yes else @@ -6132,7 +6133,7 @@ fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:6135: result: $ac_cv_lib_dbmalloc_debug_malloc" >&5 +echo "$as_me:6136: 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 @@ -6147,7 +6148,7 @@ fi fi -echo "$as_me:6150: checking if you want to use dmalloc for testing" >&5 +echo "$as_me:6151: 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. @@ -6169,7 +6170,7 @@ EOF else with_dmalloc= fi; -echo "$as_me:6172: result: ${with_dmalloc:-no}" >&5 +echo "$as_me:6173: result: ${with_dmalloc:-no}" >&5 echo "${ECHO_T}${with_dmalloc:-no}" >&6 case ".$with_cflags" in @@ -6283,23 +6284,23 @@ fi esac if test "$with_dmalloc" = yes ; then - echo "$as_me:6286: checking for dmalloc.h" >&5 + echo "$as_me:6287: 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 6292 "configure" +#line 6293 "configure" #include "confdefs.h" #include <dmalloc.h> _ACEOF -if { (eval echo "$as_me:6296: \"$ac_cpp "conftest.$ac_ext"\"") >&5 +if { (eval echo "$as_me:6297: \"$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:6302: \$? = $ac_status" >&5 + echo "$as_me:6303: \$? = $ac_status" >&5 (exit "$ac_status"); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -6318,11 +6319,11 @@ else fi rm -f conftest.err "conftest.$ac_ext" fi -echo "$as_me:6321: result: $ac_cv_header_dmalloc_h" >&5 +echo "$as_me:6322: 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:6325: checking for dmalloc_debug in -ldmalloc" >&5 +echo "$as_me:6326: 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 @@ -6330,7 +6331,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-ldmalloc $LIBS" cat >"conftest.$ac_ext" <<_ACEOF -#line 6333 "configure" +#line 6334 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -6349,16 +6350,16 @@ dmalloc_debug (); } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:6352: \"$ac_link\"") >&5 +if { (eval echo "$as_me:6353: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:6355: \$? = $ac_status" >&5 + echo "$as_me:6356: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:6358: \"$ac_try\"") >&5 + { (eval echo "$as_me:6359: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:6361: \$? = $ac_status" >&5 + echo "$as_me:6362: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_lib_dmalloc_dmalloc_debug=yes else @@ -6369,7 +6370,7 @@ fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:6372: result: $ac_cv_lib_dmalloc_dmalloc_debug" >&5 +echo "$as_me:6373: 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 @@ -6409,7 +6410,7 @@ case "$host_os" in # contributed by Alex Matulich (matuli_a@marlin.navsea.navy.mil) also # references -lmalloc and -lbsd. -echo "$as_me:6412: checking for strcmp in -lc_s" >&5 +echo "$as_me:6413: 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 @@ -6417,7 +6418,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lc_s $LIBS" cat >"conftest.$ac_ext" <<_ACEOF -#line 6420 "configure" +#line 6421 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -6436,16 +6437,16 @@ strcmp (); } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:6439: \"$ac_link\"") >&5 +if { (eval echo "$as_me:6440: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:6442: \$? = $ac_status" >&5 + echo "$as_me:6443: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:6445: \"$ac_try\"") >&5 + { (eval echo "$as_me:6446: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:6448: \$? = $ac_status" >&5 + echo "$as_me:6449: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_lib_c_s_strcmp=yes else @@ -6456,7 +6457,7 @@ fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:6459: result: $ac_cv_lib_c_s_strcmp" >&5 +echo "$as_me:6460: 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 @@ -6636,14 +6637,14 @@ fi # SCO's cc (which is reported to have broken const/volatile). case "$CC" in (cc|*/cc) - { echo "$as_me:6639: WARNING: You should consider using gcc or rcc if available" >&5 + { echo "$as_me:6640: 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:6646: checking for $ac_word" >&5 +echo "$as_me:6647: 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 @@ -6658,7 +6659,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:6661: found $ac_dir/$ac_word" >&5 +echo "$as_me:6662: found $ac_dir/$ac_word" >&5 break done @@ -6666,10 +6667,10 @@ fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then - echo "$as_me:6669: result: $CC" >&5 + echo "$as_me:6670: result: $CC" >&5 echo "${ECHO_T}$CC" >&6 else - echo "$as_me:6672: result: no" >&5 + echo "$as_me:6673: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -6692,23 +6693,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:6695: checking for $ac_header" >&5 +echo "$as_me:6696: 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 6701 "configure" +#line 6702 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:6705: \"$ac_cpp "conftest.$ac_ext"\"") >&5 +if { (eval echo "$as_me:6706: \"$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:6711: \$? = $ac_status" >&5 + echo "$as_me:6712: \$? = $ac_status" >&5 (exit "$ac_status"); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -6727,7 +6728,7 @@ else fi rm -f conftest.err "conftest.$ac_ext" fi -echo "$as_me:6730: result: `eval echo '${'"$as_ac_Header"'}'`" >&5 +echo "$as_me:6731: 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 @@ -6755,23 +6756,23 @@ done for ac_header in cursesX.h do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` -echo "$as_me:6758: checking for $ac_header" >&5 +echo "$as_me:6759: 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 6764 "configure" +#line 6765 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:6768: \"$ac_cpp "conftest.$ac_ext"\"") >&5 +if { (eval echo "$as_me:6769: \"$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:6774: \$? = $ac_status" >&5 + echo "$as_me:6775: \$? = $ac_status" >&5 (exit "$ac_status"); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -6790,7 +6791,7 @@ else fi rm -f conftest.err "conftest.$ac_ext" fi -echo "$as_me:6793: result: `eval echo '${'"$as_ac_Header"'}'`" >&5 +echo "$as_me:6794: 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 @@ -6817,13 +6818,13 @@ esac # This should have been defined by AC_PROG_CC : "${CC:=cc}" -echo "$as_me:6820: checking \$CFLAGS variable" >&5 +echo "$as_me:6821: checking \$CFLAGS variable" >&5 echo $ECHO_N "checking \$CFLAGS variable... $ECHO_C" >&6 case "x$CFLAGS" in (*-[IUD]*) - echo "$as_me:6824: result: broken" >&5 + echo "$as_me:6825: result: broken" >&5 echo "${ECHO_T}broken" >&6 - { echo "$as_me:6826: WARNING: your environment uses the CFLAGS variable to hold CPPFLAGS options" >&5 + { echo "$as_me:6827: 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= @@ -6931,18 +6932,18 @@ fi done ;; (*) - echo "$as_me:6934: result: ok" >&5 + echo "$as_me:6935: result: ok" >&5 echo "${ECHO_T}ok" >&6 ;; esac -echo "$as_me:6939: checking \$CC variable" >&5 +echo "$as_me:6940: checking \$CC variable" >&5 echo $ECHO_N "checking \$CC variable... $ECHO_C" >&6 case "$CC" in (*[\ \ ]-*) - echo "$as_me:6943: result: broken" >&5 + echo "$as_me:6944: result: broken" >&5 echo "${ECHO_T}broken" >&6 - { echo "$as_me:6945: WARNING: your environment uses the CC variable to hold CFLAGS/CPPFLAGS options" >&5 + { echo "$as_me:6946: 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/[ ]*[ ]-[^ ].*//'` @@ -7059,24 +7060,24 @@ fi done test -n "$verbose" && echo " resulting CC: '$CC'" 1>&6 -echo "${as_me:-configure}:7062: testing resulting CC: '$CC' ..." 1>&5 +echo "${as_me:-configure}:7063: testing resulting CC: '$CC' ..." 1>&5 test -n "$verbose" && echo " resulting CFLAGS: '$CFLAGS'" 1>&6 -echo "${as_me:-configure}:7066: testing resulting CFLAGS: '$CFLAGS' ..." 1>&5 +echo "${as_me:-configure}:7067: testing resulting CFLAGS: '$CFLAGS' ..." 1>&5 test -n "$verbose" && echo " resulting CPPFLAGS: '$CPPFLAGS'" 1>&6 -echo "${as_me:-configure}:7070: testing resulting CPPFLAGS: '$CPPFLAGS' ..." 1>&5 +echo "${as_me:-configure}:7071: testing resulting CPPFLAGS: '$CPPFLAGS' ..." 1>&5 ;; (*) - echo "$as_me:7074: result: ok" >&5 + echo "$as_me:7075: result: ok" >&5 echo "${ECHO_T}ok" >&6 ;; esac -echo "$as_me:7079: checking for ${CC:-cc} option to accept ANSI C" >&5 +echo "$as_me:7080: 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 @@ -7200,7 +7201,7 @@ if test -n "$cf_new_extra_cppflags" ; then fi cat >"conftest.$ac_ext" <<_ACEOF -#line 7203 "configure" +#line 7204 "configure" #include "confdefs.h" #ifndef CC_HAS_PROTOS @@ -7221,16 +7222,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:7224: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:7225: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:7227: \$? = $ac_status" >&5 + echo "$as_me:7228: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:7230: \"$ac_try\"") >&5 + { (eval echo "$as_me:7231: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:7233: \$? = $ac_status" >&5 + echo "$as_me:7234: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_ansi_cc="$cf_arg"; break else @@ -7243,7 +7244,7 @@ CFLAGS="$cf_save_CFLAGS" CPPFLAGS="$cf_save_CPPFLAGS" fi -echo "$as_me:7246: result: $cf_cv_ansi_cc" >&5 +echo "$as_me:7247: result: $cf_cv_ansi_cc" >&5 echo "${ECHO_T}$cf_cv_ansi_cc" >&6 if test "$cf_cv_ansi_cc" != "no"; then @@ -7357,7 +7358,7 @@ fi fi if test "$cf_cv_ansi_cc" = "no"; then - { { echo "$as_me:7360: error: Your compiler does not appear to recognize prototypes. + { { echo "$as_me:7361: 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 @@ -7377,7 +7378,7 @@ if test "${enable_largefile+set}" = set; then fi; if test "$enable_largefile" != no; then - echo "$as_me:7380: checking for special C compiler options needed for large files" >&5 + echo "$as_me:7381: 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 @@ -7389,7 +7390,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 7392 "configure" +#line 7393 "configure" #include "confdefs.h" #include <sys/types.h> /* Check that off_t can represent 2**63 - 1 correctly. @@ -7409,16 +7410,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:7412: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:7413: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:7415: \$? = $ac_status" >&5 + echo "$as_me:7416: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:7418: \"$ac_try\"") >&5 + { (eval echo "$as_me:7419: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:7421: \$? = $ac_status" >&5 + echo "$as_me:7422: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then break else @@ -7428,16 +7429,16 @@ fi rm -f "conftest.$ac_objext" CC="$CC -n32" rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:7431: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:7432: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:7434: \$? = $ac_status" >&5 + echo "$as_me:7435: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:7437: \"$ac_try\"") >&5 + { (eval echo "$as_me:7438: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:7440: \$? = $ac_status" >&5 + echo "$as_me:7441: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_sys_largefile_CC=' -n32'; break else @@ -7451,13 +7452,13 @@ rm -f "conftest.$ac_objext" rm -f "conftest.$ac_ext" fi fi -echo "$as_me:7454: result: $ac_cv_sys_largefile_CC" >&5 +echo "$as_me:7455: 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:7460: checking for _FILE_OFFSET_BITS value needed for large files" >&5 + echo "$as_me:7461: 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 @@ -7465,7 +7466,7 @@ else while :; do ac_cv_sys_file_offset_bits=no cat >"conftest.$ac_ext" <<_ACEOF -#line 7468 "configure" +#line 7469 "configure" #include "confdefs.h" #include <sys/types.h> /* Check that off_t can represent 2**63 - 1 correctly. @@ -7485,16 +7486,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:7488: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:7489: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:7491: \$? = $ac_status" >&5 + echo "$as_me:7492: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:7494: \"$ac_try\"") >&5 + { (eval echo "$as_me:7495: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:7497: \$? = $ac_status" >&5 + echo "$as_me:7498: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then break else @@ -7503,7 +7504,7 @@ cat "conftest.$ac_ext" >&5 fi rm -f "conftest.$ac_objext" "conftest.$ac_ext" cat >"conftest.$ac_ext" <<_ACEOF -#line 7506 "configure" +#line 7507 "configure" #include "confdefs.h" #define _FILE_OFFSET_BITS 64 #include <sys/types.h> @@ -7524,16 +7525,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:7527: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:7528: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:7530: \$? = $ac_status" >&5 + echo "$as_me:7531: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:7533: \"$ac_try\"") >&5 + { (eval echo "$as_me:7534: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:7536: \$? = $ac_status" >&5 + echo "$as_me:7537: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_sys_file_offset_bits=64; break else @@ -7544,7 +7545,7 @@ rm -f "conftest.$ac_objext" "conftest.$ac_ext" break done fi -echo "$as_me:7547: result: $ac_cv_sys_file_offset_bits" >&5 +echo "$as_me:7548: 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 @@ -7554,7 +7555,7 @@ EOF fi rm -rf conftest* - echo "$as_me:7557: checking for _LARGE_FILES value needed for large files" >&5 + echo "$as_me:7558: 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 @@ -7562,7 +7563,7 @@ else while :; do ac_cv_sys_large_files=no cat >"conftest.$ac_ext" <<_ACEOF -#line 7565 "configure" +#line 7566 "configure" #include "confdefs.h" #include <sys/types.h> /* Check that off_t can represent 2**63 - 1 correctly. @@ -7582,16 +7583,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:7585: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:7586: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:7588: \$? = $ac_status" >&5 + echo "$as_me:7589: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:7591: \"$ac_try\"") >&5 + { (eval echo "$as_me:7592: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:7594: \$? = $ac_status" >&5 + echo "$as_me:7595: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then break else @@ -7600,7 +7601,7 @@ cat "conftest.$ac_ext" >&5 fi rm -f "conftest.$ac_objext" "conftest.$ac_ext" cat >"conftest.$ac_ext" <<_ACEOF -#line 7603 "configure" +#line 7604 "configure" #include "confdefs.h" #define _LARGE_FILES 1 #include <sys/types.h> @@ -7621,16 +7622,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:7624: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:7625: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:7627: \$? = $ac_status" >&5 + echo "$as_me:7628: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:7630: \"$ac_try\"") >&5 + { (eval echo "$as_me:7631: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:7633: \$? = $ac_status" >&5 + echo "$as_me:7634: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_sys_large_files=1; break else @@ -7641,7 +7642,7 @@ rm -f "conftest.$ac_objext" "conftest.$ac_ext" break done fi -echo "$as_me:7644: result: $ac_cv_sys_large_files" >&5 +echo "$as_me:7645: 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 @@ -7654,7 +7655,7 @@ rm -rf conftest* fi if test "$enable_largefile" != no ; then - echo "$as_me:7657: checking for _LARGEFILE_SOURCE value needed for large files" >&5 + echo "$as_me:7658: 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 @@ -7662,7 +7663,7 @@ else while :; do ac_cv_sys_largefile_source=no cat >"conftest.$ac_ext" <<_ACEOF -#line 7665 "configure" +#line 7666 "configure" #include "confdefs.h" #include <stdio.h> int @@ -7674,16 +7675,16 @@ return !fseeko; } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:7677: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:7678: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:7680: \$? = $ac_status" >&5 + echo "$as_me:7681: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:7683: \"$ac_try\"") >&5 + { (eval echo "$as_me:7684: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:7686: \$? = $ac_status" >&5 + echo "$as_me:7687: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then break else @@ -7692,7 +7693,7 @@ cat "conftest.$ac_ext" >&5 fi rm -f "conftest.$ac_objext" "conftest.$ac_ext" cat >"conftest.$ac_ext" <<_ACEOF -#line 7695 "configure" +#line 7696 "configure" #include "confdefs.h" #define _LARGEFILE_SOURCE 1 #include <stdio.h> @@ -7705,16 +7706,16 @@ return !fseeko; } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:7708: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:7709: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:7711: \$? = $ac_status" >&5 + echo "$as_me:7712: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:7714: \"$ac_try\"") >&5 + { (eval echo "$as_me:7715: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:7717: \$? = $ac_status" >&5 + echo "$as_me:7718: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_sys_largefile_source=1; break else @@ -7725,7 +7726,7 @@ rm -f "conftest.$ac_objext" "conftest.$ac_ext" break done fi -echo "$as_me:7728: result: $ac_cv_sys_largefile_source" >&5 +echo "$as_me:7729: 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 @@ -7739,13 +7740,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:7742: checking for fseeko" >&5 +echo "$as_me:7743: 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 7748 "configure" +#line 7749 "configure" #include "confdefs.h" #include <stdio.h> int @@ -7757,16 +7758,16 @@ return fseeko && fseeko (stdin, 0, 0); } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:7760: \"$ac_link\"") >&5 +if { (eval echo "$as_me:7761: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:7763: \$? = $ac_status" >&5 + echo "$as_me:7764: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:7766: \"$ac_try\"") >&5 + { (eval echo "$as_me:7767: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:7769: \$? = $ac_status" >&5 + echo "$as_me:7770: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_func_fseeko=yes else @@ -7776,7 +7777,7 @@ ac_cv_func_fseeko=no fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:7779: result: $ac_cv_func_fseeko" >&5 +echo "$as_me:7780: result: $ac_cv_func_fseeko" >&5 echo "${ECHO_T}$ac_cv_func_fseeko" >&6 if test $ac_cv_func_fseeko = yes; then @@ -7815,14 +7816,14 @@ fi fi - echo "$as_me:7818: checking whether to use struct dirent64" >&5 + echo "$as_me:7819: 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 7825 "configure" +#line 7826 "configure" #include "confdefs.h" #pragma GCC diagnostic error "-Wincompatible-pointer-types" @@ -7845,16 +7846,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:7848: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:7849: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:7851: \$? = $ac_status" >&5 + echo "$as_me:7852: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:7854: \"$ac_try\"") >&5 + { (eval echo "$as_me:7855: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:7857: \$? = $ac_status" >&5 + echo "$as_me:7858: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_struct_dirent64=yes else @@ -7865,7 +7866,7 @@ fi rm -f "conftest.$ac_objext" "conftest.$ac_ext" fi -echo "$as_me:7868: result: $cf_cv_struct_dirent64" >&5 +echo "$as_me:7869: result: $cf_cv_struct_dirent64" >&5 echo "${ECHO_T}$cf_cv_struct_dirent64" >&6 test "$cf_cv_struct_dirent64" = yes && cat >>confdefs.h <<\EOF @@ -7877,20 +7878,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:7880: checking for PATH separator" >&5 + echo "$as_me:7881: 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:7887: result: $PATH_SEPARATOR" >&5 + echo "$as_me:7888: 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:7893: checking for $ac_word" >&5 +echo "$as_me:7894: 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 @@ -7917,17 +7918,17 @@ esac fi MSGINIT="$ac_cv_path_MSGINIT" if test "$MSGINIT" != ":"; then - echo "$as_me:7920: result: $MSGINIT" >&5 + echo "$as_me:7921: result: $MSGINIT" >&5 echo "${ECHO_T}$MSGINIT" >&6 else - echo "$as_me:7923: result: no" >&5 + echo "$as_me:7924: 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}:7930: testing adding en.po ..." 1>&5 +echo "${as_me:-configure}:7931: testing adding en.po ..." 1>&5 ALL_LINGUAS="$ALL_LINGUAS en" fi @@ -7936,7 +7937,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:7939: checking for $ac_word" >&5 +echo "$as_me:7940: 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 @@ -7951,7 +7952,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:7954: found $ac_dir/$ac_word" >&5 +echo "$as_me:7955: found $ac_dir/$ac_word" >&5 break done @@ -7959,10 +7960,10 @@ fi fi RANLIB=$ac_cv_prog_RANLIB if test -n "$RANLIB"; then - echo "$as_me:7962: result: $RANLIB" >&5 + echo "$as_me:7963: result: $RANLIB" >&5 echo "${ECHO_T}$RANLIB" >&6 else - echo "$as_me:7965: result: no" >&5 + echo "$as_me:7966: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -7971,7 +7972,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:7974: checking for $ac_word" >&5 +echo "$as_me:7975: 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 @@ -7986,7 +7987,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:7989: found $ac_dir/$ac_word" >&5 +echo "$as_me:7990: found $ac_dir/$ac_word" >&5 break done @@ -7995,10 +7996,10 @@ fi fi ac_ct_RANLIB=$ac_cv_prog_ac_ct_RANLIB if test -n "$ac_ct_RANLIB"; then - echo "$as_me:7998: result: $ac_ct_RANLIB" >&5 + echo "$as_me:7999: result: $ac_ct_RANLIB" >&5 echo "${ECHO_T}$ac_ct_RANLIB" >&6 else - echo "$as_me:8001: result: no" >&5 + echo "$as_me:8002: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -8007,13 +8008,13 @@ else RANLIB="$ac_cv_prog_RANLIB" fi -echo "$as_me:8010: checking for ANSI C header files" >&5 +echo "$as_me:8011: 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 8016 "configure" +#line 8017 "configure" #include "confdefs.h" #include <stdlib.h> #include <stdarg.h> @@ -8021,13 +8022,13 @@ else #include <float.h> _ACEOF -if { (eval echo "$as_me:8024: \"$ac_cpp "conftest.$ac_ext"\"") >&5 +if { (eval echo "$as_me:8025: \"$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:8030: \$? = $ac_status" >&5 + echo "$as_me:8031: \$? = $ac_status" >&5 (exit "$ac_status"); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -8049,7 +8050,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 8052 "configure" +#line 8053 "configure" #include "confdefs.h" #include <string.h> @@ -8067,7 +8068,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 8070 "configure" +#line 8071 "configure" #include "confdefs.h" #include <stdlib.h> @@ -8088,7 +8089,7 @@ if test $ac_cv_header_stdc = yes; then : else cat >"conftest.$ac_ext" <<_ACEOF -#line 8091 "configure" +#line 8092 "configure" #include "confdefs.h" #include <ctype.h> #if ((' ' & 0x0FF) == 0x020) @@ -8114,15 +8115,15 @@ main (void) } _ACEOF rm -f "conftest$ac_exeext" -if { (eval echo "$as_me:8117: \"$ac_link\"") >&5 +if { (eval echo "$as_me:8118: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:8120: \$? = $ac_status" >&5 + echo "$as_me:8121: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='"./conftest$ac_exeext"' - { (eval echo "$as_me:8122: \"$ac_try\"") >&5 + { (eval echo "$as_me:8123: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:8125: \$? = $ac_status" >&5 + echo "$as_me:8126: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then : else @@ -8135,7 +8136,7 @@ rm -f core ./core.* ./*.core "conftest$ac_exeext" "conftest.$ac_objext" "conftes fi fi fi -echo "$as_me:8138: result: $ac_cv_header_stdc" >&5 +echo "$as_me:8139: result: $ac_cv_header_stdc" >&5 echo "${ECHO_T}$ac_cv_header_stdc" >&6 if test $ac_cv_header_stdc = yes; then @@ -8145,7 +8146,7 @@ EOF fi -echo "$as_me:8148: checking for inline" >&5 +echo "$as_me:8149: 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 @@ -8153,7 +8154,7 @@ else ac_cv_c_inline=no for ac_kw in inline __inline__ __inline; do cat >"conftest.$ac_ext" <<_ACEOF -#line 8156 "configure" +#line 8157 "configure" #include "confdefs.h" #ifndef __cplusplus static $ac_kw int static_foo () {return 0; } @@ -8162,16 +8163,16 @@ $ac_kw int foo () {return 0; } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:8165: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:8166: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:8168: \$? = $ac_status" >&5 + echo "$as_me:8169: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:8171: \"$ac_try\"") >&5 + { (eval echo "$as_me:8172: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:8174: \$? = $ac_status" >&5 + echo "$as_me:8175: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_c_inline=$ac_kw; break else @@ -8182,7 +8183,7 @@ rm -f "conftest.$ac_objext" "conftest.$ac_ext" done fi -echo "$as_me:8185: result: $ac_cv_c_inline" >&5 +echo "$as_me:8186: result: $ac_cv_c_inline" >&5 echo "${ECHO_T}$ac_cv_c_inline" >&6 case $ac_cv_c_inline in inline | yes) ;; @@ -8203,28 +8204,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:8206: checking for $ac_header" >&5 +echo "$as_me:8207: 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 8212 "configure" +#line 8213 "configure" #include "confdefs.h" $ac_includes_default #include <$ac_header> _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:8218: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:8219: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:8221: \$? = $ac_status" >&5 + echo "$as_me:8222: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:8224: \"$ac_try\"") >&5 + { (eval echo "$as_me:8225: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:8227: \$? = $ac_status" >&5 + echo "$as_me:8228: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then eval "$as_ac_Header=yes" else @@ -8234,7 +8235,7 @@ eval "$as_ac_Header=no" fi rm -f "conftest.$ac_objext" "conftest.$ac_ext" fi -echo "$as_me:8237: result: `eval echo '${'"$as_ac_Header"'}'`" >&5 +echo "$as_me:8238: 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 @@ -8244,13 +8245,13 @@ EOF fi done -echo "$as_me:8247: checking for off_t" >&5 +echo "$as_me:8248: 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 8253 "configure" +#line 8254 "configure" #include "confdefs.h" $ac_includes_default int @@ -8265,16 +8266,16 @@ if (sizeof (off_t)) } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:8268: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:8269: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:8271: \$? = $ac_status" >&5 + echo "$as_me:8272: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:8274: \"$ac_try\"") >&5 + { (eval echo "$as_me:8275: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:8277: \$? = $ac_status" >&5 + echo "$as_me:8278: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_type_off_t=yes else @@ -8284,7 +8285,7 @@ ac_cv_type_off_t=no fi rm -f "conftest.$ac_objext" "conftest.$ac_ext" fi -echo "$as_me:8287: result: $ac_cv_type_off_t" >&5 +echo "$as_me:8288: 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 : @@ -8296,13 +8297,13 @@ EOF fi -echo "$as_me:8299: checking for size_t" >&5 +echo "$as_me:8300: 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 8305 "configure" +#line 8306 "configure" #include "confdefs.h" $ac_includes_default int @@ -8317,16 +8318,16 @@ if (sizeof (size_t)) } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:8320: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:8321: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:8323: \$? = $ac_status" >&5 + echo "$as_me:8324: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:8326: \"$ac_try\"") >&5 + { (eval echo "$as_me:8327: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:8329: \$? = $ac_status" >&5 + echo "$as_me:8330: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_type_size_t=yes else @@ -8336,7 +8337,7 @@ ac_cv_type_size_t=no fi rm -f "conftest.$ac_objext" "conftest.$ac_ext" fi -echo "$as_me:8339: result: $ac_cv_type_size_t" >&5 +echo "$as_me:8340: 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 : @@ -8350,13 +8351,13 @@ fi # The Ultrix 4.2 mips builtin alloca declared by alloca.h only works # for constant arguments. Useless! -echo "$as_me:8353: checking for working alloca.h" >&5 +echo "$as_me:8354: 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 8359 "configure" +#line 8360 "configure" #include "confdefs.h" #include <alloca.h> int @@ -8368,16 +8369,16 @@ char *p = (char *) alloca (2 * sizeof (int)); } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:8371: \"$ac_link\"") >&5 +if { (eval echo "$as_me:8372: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:8374: \$? = $ac_status" >&5 + echo "$as_me:8375: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:8377: \"$ac_try\"") >&5 + { (eval echo "$as_me:8378: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:8380: \$? = $ac_status" >&5 + echo "$as_me:8381: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_working_alloca_h=yes else @@ -8387,7 +8388,7 @@ ac_cv_working_alloca_h=no fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:8390: result: $ac_cv_working_alloca_h" >&5 +echo "$as_me:8391: 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 @@ -8397,13 +8398,13 @@ EOF fi -echo "$as_me:8400: checking for alloca" >&5 +echo "$as_me:8401: 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 8406 "configure" +#line 8407 "configure" #include "confdefs.h" #ifdef __GNUC__ # define alloca __builtin_alloca @@ -8435,16 +8436,16 @@ char *p = (char *) alloca (1); } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:8438: \"$ac_link\"") >&5 +if { (eval echo "$as_me:8439: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:8441: \$? = $ac_status" >&5 + echo "$as_me:8442: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:8444: \"$ac_try\"") >&5 + { (eval echo "$as_me:8445: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:8447: \$? = $ac_status" >&5 + echo "$as_me:8448: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_func_alloca_works=yes else @@ -8454,7 +8455,7 @@ ac_cv_func_alloca_works=no fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:8457: result: $ac_cv_func_alloca_works" >&5 +echo "$as_me:8458: 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 @@ -8475,13 +8476,13 @@ cat >>confdefs.h <<\EOF #define C_ALLOCA 1 EOF -echo "$as_me:8478: checking whether \`alloca.c' needs Cray hooks" >&5 +echo "$as_me:8479: 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 8484 "configure" +#line 8485 "configure" #include "confdefs.h" #if defined(CRAY) && ! defined(CRAY2) webecray @@ -8499,18 +8500,18 @@ fi rm -rf conftest* fi -echo "$as_me:8502: result: $ac_cv_os_cray" >&5 +echo "$as_me:8503: 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:8507: checking for $ac_func" >&5 +echo "$as_me:8508: 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 8513 "configure" +#line 8514 "configure" #include "confdefs.h" #define $ac_func autoconf_temporary #include <limits.h> /* least-intrusive standard header which defines gcc2 __stub macros */ @@ -8541,16 +8542,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:8544: \"$ac_link\"") >&5 +if { (eval echo "$as_me:8545: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:8547: \$? = $ac_status" >&5 + echo "$as_me:8548: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:8550: \"$ac_try\"") >&5 + { (eval echo "$as_me:8551: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:8553: \$? = $ac_status" >&5 + echo "$as_me:8554: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then eval "$as_ac_var=yes" else @@ -8560,7 +8561,7 @@ eval "$as_ac_var=no" fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:8563: result: `eval echo '${'"$as_ac_var"'}'`" >&5 +echo "$as_me:8564: 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 @@ -8574,7 +8575,7 @@ fi done fi -echo "$as_me:8577: checking stack direction for C alloca" >&5 +echo "$as_me:8578: 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 @@ -8583,7 +8584,7 @@ else ac_cv_c_stack_direction=0 else cat >"conftest.$ac_ext" <<_ACEOF -#line 8586 "configure" +#line 8587 "configure" #include "confdefs.h" int find_stack_direction (void) @@ -8606,15 +8607,15 @@ main (void) } _ACEOF rm -f "conftest$ac_exeext" -if { (eval echo "$as_me:8609: \"$ac_link\"") >&5 +if { (eval echo "$as_me:8610: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:8612: \$? = $ac_status" >&5 + echo "$as_me:8613: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='"./conftest$ac_exeext"' - { (eval echo "$as_me:8614: \"$ac_try\"") >&5 + { (eval echo "$as_me:8615: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:8617: \$? = $ac_status" >&5 + echo "$as_me:8618: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_c_stack_direction=1 else @@ -8626,7 +8627,7 @@ fi rm -f core ./core.* ./*.core "conftest$ac_exeext" "conftest.$ac_objext" "conftest.$ac_ext" fi fi -echo "$as_me:8629: result: $ac_cv_c_stack_direction" >&5 +echo "$as_me:8630: result: $ac_cv_c_stack_direction" >&5 echo "${ECHO_T}$ac_cv_c_stack_direction" >&6 cat >>confdefs.h <<EOF @@ -8638,23 +8639,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:8641: checking for $ac_header" >&5 +echo "$as_me:8642: 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 8647 "configure" +#line 8648 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:8651: \"$ac_cpp "conftest.$ac_ext"\"") >&5 +if { (eval echo "$as_me:8652: \"$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:8657: \$? = $ac_status" >&5 + echo "$as_me:8658: \$? = $ac_status" >&5 (exit "$ac_status"); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -8673,7 +8674,7 @@ else fi rm -f conftest.err "conftest.$ac_ext" fi -echo "$as_me:8676: result: `eval echo '${'"$as_ac_Header"'}'`" >&5 +echo "$as_me:8677: 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 @@ -8686,13 +8687,13 @@ done for ac_func in getpagesize do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` -echo "$as_me:8689: checking for $ac_func" >&5 +echo "$as_me:8690: 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 8695 "configure" +#line 8696 "configure" #include "confdefs.h" #define $ac_func autoconf_temporary #include <limits.h> /* least-intrusive standard header which defines gcc2 __stub macros */ @@ -8723,16 +8724,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:8726: \"$ac_link\"") >&5 +if { (eval echo "$as_me:8727: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:8729: \$? = $ac_status" >&5 + echo "$as_me:8730: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:8732: \"$ac_try\"") >&5 + { (eval echo "$as_me:8733: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:8735: \$? = $ac_status" >&5 + echo "$as_me:8736: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then eval "$as_ac_var=yes" else @@ -8742,7 +8743,7 @@ eval "$as_ac_var=no" fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:8745: result: `eval echo '${'"$as_ac_var"'}'`" >&5 +echo "$as_me:8746: 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 @@ -8752,7 +8753,7 @@ EOF fi done -echo "$as_me:8755: checking for working mmap" >&5 +echo "$as_me:8756: 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 @@ -8761,7 +8762,7 @@ else ac_cv_func_mmap_fixed_mapped=no else cat >"conftest.$ac_ext" <<_ACEOF -#line 8764 "configure" +#line 8765 "configure" #include "confdefs.h" $ac_includes_default /* Thanks to Mike Haertel and Jim Avera for this test. @@ -8888,15 +8889,15 @@ main (void) } _ACEOF rm -f "conftest$ac_exeext" -if { (eval echo "$as_me:8891: \"$ac_link\"") >&5 +if { (eval echo "$as_me:8892: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:8894: \$? = $ac_status" >&5 + echo "$as_me:8895: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='"./conftest$ac_exeext"' - { (eval echo "$as_me:8896: \"$ac_try\"") >&5 + { (eval echo "$as_me:8897: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:8899: \$? = $ac_status" >&5 + echo "$as_me:8900: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_func_mmap_fixed_mapped=yes else @@ -8908,7 +8909,7 @@ fi rm -f core ./core.* ./*.core "conftest$ac_exeext" "conftest.$ac_objext" "conftest.$ac_ext" fi fi -echo "$as_me:8911: result: $ac_cv_func_mmap_fixed_mapped" >&5 +echo "$as_me:8912: 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 @@ -8919,13 +8920,13 @@ EOF fi rm -f conftest.mmap -echo "$as_me:8922: checking whether we are using the GNU C Library 2.1 or newer" >&5 +echo "$as_me:8923: 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 8928 "configure" +#line 8929 "configure" #include "confdefs.h" #include <features.h> @@ -8945,7 +8946,7 @@ fi rm -rf conftest* fi -echo "$as_me:8948: result: $ac_cv_gnu_library_2_1" >&5 +echo "$as_me:8949: 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" @@ -8958,7 +8959,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:8961: error: CF_BUNDLED_INTL used without setting PACKAGE variable" >&5 + { { echo "$as_me:8962: 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 @@ -8975,23 +8976,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:8978: checking for $ac_header" >&5 +echo "$as_me:8979: 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 8984 "configure" +#line 8985 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:8988: \"$ac_cpp "conftest.$ac_ext"\"") >&5 +if { (eval echo "$as_me:8989: \"$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:8994: \$? = $ac_status" >&5 + echo "$as_me:8995: \$? = $ac_status" >&5 (exit "$ac_status"); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -9010,7 +9011,7 @@ else fi rm -f conftest.err "conftest.$ac_ext" fi -echo "$as_me:9013: result: `eval echo '${'"$as_ac_Header"'}'`" >&5 +echo "$as_me:9014: 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 @@ -9025,13 +9026,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:9028: checking for $ac_func" >&5 +echo "$as_me:9029: 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 9034 "configure" +#line 9035 "configure" #include "confdefs.h" #define $ac_func autoconf_temporary #include <limits.h> /* least-intrusive standard header which defines gcc2 __stub macros */ @@ -9062,16 +9063,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:9065: \"$ac_link\"") >&5 +if { (eval echo "$as_me:9066: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:9068: \$? = $ac_status" >&5 + echo "$as_me:9069: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:9071: \"$ac_try\"") >&5 + { (eval echo "$as_me:9072: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:9074: \$? = $ac_status" >&5 + echo "$as_me:9075: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then eval "$as_ac_var=yes" else @@ -9081,7 +9082,7 @@ eval "$as_ac_var=no" fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:9084: result: `eval echo '${'"$as_ac_var"'}'`" >&5 +echo "$as_me:9085: 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 @@ -9132,7 +9133,7 @@ if test -n "$cf_searchpath/include" ; then CPPFLAGS="${CPPFLAGS}-I$cf_add_incdir" cat >"conftest.$ac_ext" <<_ACEOF -#line 9135 "configure" +#line 9136 "configure" #include "confdefs.h" #include <stdio.h> int @@ -9144,16 +9145,16 @@ printf("Hello") } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:9147: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:9148: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:9150: \$? = $ac_status" >&5 + echo "$as_me:9151: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:9153: \"$ac_try\"") >&5 + { (eval echo "$as_me:9154: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:9156: \$? = $ac_status" >&5 + echo "$as_me:9157: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then : else @@ -9170,7 +9171,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}:9173: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:9174: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -9216,7 +9217,7 @@ if test -n "$cf_searchpath/../include" ; then CPPFLAGS="${CPPFLAGS}-I$cf_add_incdir" cat >"conftest.$ac_ext" <<_ACEOF -#line 9219 "configure" +#line 9220 "configure" #include "confdefs.h" #include <stdio.h> int @@ -9228,16 +9229,16 @@ printf("Hello") } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:9231: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:9232: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:9234: \$? = $ac_status" >&5 + echo "$as_me:9235: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:9237: \"$ac_try\"") >&5 + { (eval echo "$as_me:9238: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:9240: \$? = $ac_status" >&5 + echo "$as_me:9241: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then : else @@ -9254,7 +9255,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}:9257: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:9258: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -9272,7 +9273,7 @@ echo "${as_me:-configure}:9257: testing adding $cf_add_incdir to include-path .. fi else -{ { echo "$as_me:9275: error: cannot find libiconv under $withval" >&5 +{ { echo "$as_me:9276: error: cannot find libiconv under $withval" >&5 echo "$as_me: error: cannot find libiconv under $withval" >&2;} { (exit 1); exit 1; }; } fi @@ -9297,7 +9298,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}:9300: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:9301: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -9326,7 +9327,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}:9329: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:9330: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -9335,7 +9336,7 @@ echo "${as_me:-configure}:9329: testing adding $cf_add_libdir to library-path .. fi else -{ { echo "$as_me:9338: error: cannot find libiconv under $withval" >&5 +{ { echo "$as_me:9339: error: cannot find libiconv under $withval" >&5 echo "$as_me: error: cannot find libiconv under $withval" >&2;} { (exit 1); exit 1; }; } fi @@ -9346,7 +9347,7 @@ esac fi; - echo "$as_me:9349: checking for iconv" >&5 + echo "$as_me:9350: 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 @@ -9357,12 +9358,12 @@ else cf_cv_header_path_iconv= cf_cv_library_path_iconv= -echo "${as_me:-configure}:9360: testing Starting FIND_LINKAGE(iconv,) ..." 1>&5 +echo "${as_me:-configure}:9361: testing Starting FIND_LINKAGE(iconv,) ..." 1>&5 cf_save_LIBS="$LIBS" cat >"conftest.$ac_ext" <<_ACEOF -#line 9365 "configure" +#line 9366 "configure" #include "confdefs.h" #include <stdlib.h> @@ -9381,16 +9382,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:9384: \"$ac_link\"") >&5 +if { (eval echo "$as_me:9385: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:9387: \$? = $ac_status" >&5 + echo "$as_me:9388: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:9390: \"$ac_try\"") >&5 + { (eval echo "$as_me:9391: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:9393: \$? = $ac_status" >&5 + echo "$as_me:9394: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_find_linkage_iconv=yes @@ -9404,7 +9405,7 @@ cat "conftest.$ac_ext" >&5 LIBS="-liconv $cf_save_LIBS" cat >"conftest.$ac_ext" <<_ACEOF -#line 9407 "configure" +#line 9408 "configure" #include "confdefs.h" #include <stdlib.h> @@ -9423,16 +9424,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:9426: \"$ac_link\"") >&5 +if { (eval echo "$as_me:9427: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:9429: \$? = $ac_status" >&5 + echo "$as_me:9430: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:9432: \"$ac_try\"") >&5 + { (eval echo "$as_me:9433: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:9435: \$? = $ac_status" >&5 + echo "$as_me:9436: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_find_linkage_iconv=yes @@ -9449,9 +9450,9 @@ cat "conftest.$ac_ext" >&5 test -n "$verbose" && echo " find linkage for iconv library" 1>&6 -echo "${as_me:-configure}:9452: testing find linkage for iconv library ..." 1>&5 +echo "${as_me:-configure}:9453: testing find linkage for iconv library ..." 1>&5 -echo "${as_me:-configure}:9454: testing Searching for headers in FIND_LINKAGE(iconv,) ..." 1>&5 +echo "${as_me:-configure}:9455: testing Searching for headers in FIND_LINKAGE(iconv,) ..." 1>&5 cf_save_CPPFLAGS="$CPPFLAGS" cf_test_CPPFLAGS="$CPPFLAGS" @@ -9542,7 +9543,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}:9545: testing ... testing $cf_cv_header_path_iconv ..." 1>&5 +echo "${as_me:-configure}:9546: testing ... testing $cf_cv_header_path_iconv ..." 1>&5 CPPFLAGS="$cf_save_CPPFLAGS" @@ -9550,7 +9551,7 @@ echo "${as_me:-configure}:9545: testing ... testing $cf_cv_header_path_iconv ... CPPFLAGS="${CPPFLAGS}-I$cf_cv_header_path_iconv" cat >"conftest.$ac_ext" <<_ACEOF -#line 9553 "configure" +#line 9554 "configure" #include "confdefs.h" #include <stdlib.h> @@ -9569,21 +9570,21 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:9572: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:9573: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:9575: \$? = $ac_status" >&5 + echo "$as_me:9576: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:9578: \"$ac_try\"") >&5 + { (eval echo "$as_me:9579: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:9581: \$? = $ac_status" >&5 + echo "$as_me:9582: \$? = $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}:9586: testing ... found iconv headers in $cf_cv_header_path_iconv ..." 1>&5 +echo "${as_me:-configure}:9587: testing ... found iconv headers in $cf_cv_header_path_iconv ..." 1>&5 cf_cv_find_linkage_iconv=maybe cf_test_CPPFLAGS="$CPPFLAGS" @@ -9601,7 +9602,7 @@ rm -f "conftest.$ac_objext" "conftest.$ac_ext" if test "$cf_cv_find_linkage_iconv" = maybe ; then -echo "${as_me:-configure}:9604: testing Searching for iconv library in FIND_LINKAGE(iconv,) ..." 1>&5 +echo "${as_me:-configure}:9605: testing Searching for iconv library in FIND_LINKAGE(iconv,) ..." 1>&5 cf_save_LIBS="$LIBS" cf_save_LDFLAGS="$LDFLAGS" @@ -9676,13 +9677,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}:9679: testing ... testing $cf_cv_library_path_iconv ..." 1>&5 +echo "${as_me:-configure}:9680: 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 9685 "configure" +#line 9686 "configure" #include "confdefs.h" #include <stdlib.h> @@ -9701,21 +9702,21 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:9704: \"$ac_link\"") >&5 +if { (eval echo "$as_me:9705: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:9707: \$? = $ac_status" >&5 + echo "$as_me:9708: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:9710: \"$ac_try\"") >&5 + { (eval echo "$as_me:9711: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:9713: \$? = $ac_status" >&5 + echo "$as_me:9714: \$? = $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}:9718: testing ... found iconv library in $cf_cv_library_path_iconv ..." 1>&5 +echo "${as_me:-configure}:9719: testing ... found iconv library in $cf_cv_library_path_iconv ..." 1>&5 cf_cv_find_linkage_iconv=yes cf_cv_library_file_iconv="-liconv" @@ -9755,7 +9756,7 @@ am_cv_func_iconv="no, consider installing GNU libiconv" fi fi -echo "$as_me:9758: result: $am_cv_func_iconv" >&5 +echo "$as_me:9759: result: $am_cv_func_iconv" >&5 echo "${ECHO_T}$am_cv_func_iconv" >&6 if test "$am_cv_func_iconv" = yes; then @@ -9764,14 +9765,14 @@ cat >>confdefs.h <<\EOF #define HAVE_ICONV 1 EOF - echo "$as_me:9767: checking if the declaration of iconv() needs const." >&5 + echo "$as_me:9768: 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 9774 "configure" +#line 9775 "configure" #include "confdefs.h" #include <stdlib.h> @@ -9796,16 +9797,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:9799: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:9800: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:9802: \$? = $ac_status" >&5 + echo "$as_me:9803: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:9805: \"$ac_try\"") >&5 + { (eval echo "$as_me:9806: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:9808: \$? = $ac_status" >&5 + echo "$as_me:9809: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then am_cv_proto_iconv_const=no else @@ -9815,7 +9816,7 @@ am_cv_proto_iconv_const=yes fi rm -f "conftest.$ac_objext" "conftest.$ac_ext" fi -echo "$as_me:9818: result: $am_cv_proto_iconv_const" >&5 +echo "$as_me:9819: 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 @@ -9860,7 +9861,7 @@ if test -n "$cf_cv_header_path_iconv" ; then CPPFLAGS="${CPPFLAGS}-I$cf_add_incdir" cat >"conftest.$ac_ext" <<_ACEOF -#line 9863 "configure" +#line 9864 "configure" #include "confdefs.h" #include <stdio.h> int @@ -9872,16 +9873,16 @@ printf("Hello") } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:9875: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:9876: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:9878: \$? = $ac_status" >&5 + echo "$as_me:9879: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:9881: \"$ac_try\"") >&5 + { (eval echo "$as_me:9882: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:9884: \$? = $ac_status" >&5 + echo "$as_me:9885: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then : else @@ -9898,7 +9899,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}:9901: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:9902: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -9937,7 +9938,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}:9940: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:9941: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -9948,13 +9949,13 @@ fi fi fi -echo "$as_me:9951: checking for nl_langinfo and CODESET" >&5 +echo "$as_me:9952: 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 9957 "configure" +#line 9958 "configure" #include "confdefs.h" #include <langinfo.h> int @@ -9966,16 +9967,16 @@ char* cs = nl_langinfo(CODESET); (void)cs } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:9969: \"$ac_link\"") >&5 +if { (eval echo "$as_me:9970: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:9972: \$? = $ac_status" >&5 + echo "$as_me:9973: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:9975: \"$ac_try\"") >&5 + { (eval echo "$as_me:9976: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:9978: \$? = $ac_status" >&5 + echo "$as_me:9979: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then am_cv_langinfo_codeset=yes else @@ -9986,7 +9987,7 @@ fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:9989: result: $am_cv_langinfo_codeset" >&5 +echo "$as_me:9990: result: $am_cv_langinfo_codeset" >&5 echo "${ECHO_T}$am_cv_langinfo_codeset" >&6 if test "$am_cv_langinfo_codeset" = yes; then @@ -9997,13 +9998,13 @@ EOF fi if test "$ac_cv_header_locale_h" = yes; then - echo "$as_me:10000: checking for LC_MESSAGES" >&5 + echo "$as_me:10001: 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 10006 "configure" +#line 10007 "configure" #include "confdefs.h" #include <locale.h> int @@ -10015,16 +10016,16 @@ return LC_MESSAGES } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:10018: \"$ac_link\"") >&5 +if { (eval echo "$as_me:10019: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:10021: \$? = $ac_status" >&5 + echo "$as_me:10022: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:10024: \"$ac_try\"") >&5 + { (eval echo "$as_me:10025: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:10027: \$? = $ac_status" >&5 + echo "$as_me:10028: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then am_cv_val_LC_MESSAGES=yes else @@ -10034,7 +10035,7 @@ am_cv_val_LC_MESSAGES=no fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:10037: result: $am_cv_val_LC_MESSAGES" >&5 +echo "$as_me:10038: 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 @@ -10044,7 +10045,7 @@ EOF fi fi - echo "$as_me:10047: checking whether NLS is requested" >&5 + echo "$as_me:10048: 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. @@ -10054,7 +10055,7 @@ if test "${enable_nls+set}" = set; then else USE_NLS=no fi; - echo "$as_me:10057: result: $USE_NLS" >&5 + echo "$as_me:10058: result: $USE_NLS" >&5 echo "${ECHO_T}$USE_NLS" >&6 BUILD_INCLUDED_LIBINTL=no @@ -10068,7 +10069,7 @@ cat >>confdefs.h <<\EOF #define ENABLE_NLS 1 EOF - echo "$as_me:10071: checking whether included gettext is requested" >&5 + echo "$as_me:10072: 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. @@ -10078,13 +10079,13 @@ if test "${with_included_gettext+set}" = set; then else nls_cv_force_use_gnu_gettext=no fi; - echo "$as_me:10081: result: $nls_cv_force_use_gnu_gettext" >&5 + echo "$as_me:10082: result: $nls_cv_force_use_gnu_gettext" >&5 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:10087: checking for $ac_word" >&5 +echo "$as_me:10088: 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 @@ -10111,16 +10112,16 @@ esac fi MSGFMT="$ac_cv_path_MSGFMT" if test "$MSGFMT" != ":"; then - echo "$as_me:10114: result: $MSGFMT" >&5 + echo "$as_me:10115: result: $MSGFMT" >&5 echo "${ECHO_T}$MSGFMT" >&6 else - echo "$as_me:10117: result: no" >&5 + echo "$as_me:10118: 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:10123: checking for $ac_word" >&5 +echo "$as_me:10124: 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 @@ -10137,7 +10138,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:10140: found $ac_dir/$ac_word" >&5 + echo "$as_me:10141: found $ac_dir/$ac_word" >&5 break fi done @@ -10149,17 +10150,17 @@ fi GMSGFMT=$ac_cv_path_GMSGFMT if test -n "$GMSGFMT"; then - echo "$as_me:10152: result: $GMSGFMT" >&5 + echo "$as_me:10153: result: $GMSGFMT" >&5 echo "${ECHO_T}$GMSGFMT" >&6 else - echo "$as_me:10155: result: no" >&5 + echo "$as_me:10156: 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:10162: checking for $ac_word" >&5 +echo "$as_me:10163: 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 @@ -10186,10 +10187,10 @@ esac fi XGETTEXT="$ac_cv_path_XGETTEXT" if test "$XGETTEXT" != ":"; then - echo "$as_me:10189: result: $XGETTEXT" >&5 + echo "$as_me:10190: result: $XGETTEXT" >&5 echo "${ECHO_T}$XGETTEXT" >&6 else - echo "$as_me:10192: result: no" >&5 + echo "$as_me:10193: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -10327,12 +10328,12 @@ fi cf_cv_header_path_intl= cf_cv_library_path_intl= -echo "${as_me:-configure}:10330: testing Starting FIND_LINKAGE(intl,) ..." 1>&5 +echo "${as_me:-configure}:10331: testing Starting FIND_LINKAGE(intl,) ..." 1>&5 cf_save_LIBS="$LIBS" cat >"conftest.$ac_ext" <<_ACEOF -#line 10335 "configure" +#line 10336 "configure" #include "confdefs.h" #include <libintl.h> @@ -10354,16 +10355,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:10357: \"$ac_link\"") >&5 +if { (eval echo "$as_me:10358: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:10360: \$? = $ac_status" >&5 + echo "$as_me:10361: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:10363: \"$ac_try\"") >&5 + { (eval echo "$as_me:10364: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:10366: \$? = $ac_status" >&5 + echo "$as_me:10367: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_find_linkage_intl=yes @@ -10377,7 +10378,7 @@ cat "conftest.$ac_ext" >&5 LIBS="-lintl $cf_save_LIBS" cat >"conftest.$ac_ext" <<_ACEOF -#line 10380 "configure" +#line 10381 "configure" #include "confdefs.h" #include <libintl.h> @@ -10399,16 +10400,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:10402: \"$ac_link\"") >&5 +if { (eval echo "$as_me:10403: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:10405: \$? = $ac_status" >&5 + echo "$as_me:10406: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:10408: \"$ac_try\"") >&5 + { (eval echo "$as_me:10409: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:10411: \$? = $ac_status" >&5 + echo "$as_me:10412: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_find_linkage_intl=yes @@ -10425,9 +10426,9 @@ cat "conftest.$ac_ext" >&5 test -n "$verbose" && echo " find linkage for intl library" 1>&6 -echo "${as_me:-configure}:10428: testing find linkage for intl library ..." 1>&5 +echo "${as_me:-configure}:10429: testing find linkage for intl library ..." 1>&5 -echo "${as_me:-configure}:10430: testing Searching for headers in FIND_LINKAGE(intl,) ..." 1>&5 +echo "${as_me:-configure}:10431: testing Searching for headers in FIND_LINKAGE(intl,) ..." 1>&5 cf_save_CPPFLAGS="$CPPFLAGS" cf_test_CPPFLAGS="$CPPFLAGS" @@ -10518,7 +10519,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}:10521: testing ... testing $cf_cv_header_path_intl ..." 1>&5 +echo "${as_me:-configure}:10522: testing ... testing $cf_cv_header_path_intl ..." 1>&5 CPPFLAGS="$cf_save_CPPFLAGS" @@ -10526,7 +10527,7 @@ echo "${as_me:-configure}:10521: testing ... testing $cf_cv_header_path_intl ... CPPFLAGS="${CPPFLAGS}-I$cf_cv_header_path_intl" cat >"conftest.$ac_ext" <<_ACEOF -#line 10529 "configure" +#line 10530 "configure" #include "confdefs.h" #include <libintl.h> @@ -10548,21 +10549,21 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:10551: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:10552: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:10554: \$? = $ac_status" >&5 + echo "$as_me:10555: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:10557: \"$ac_try\"") >&5 + { (eval echo "$as_me:10558: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:10560: \$? = $ac_status" >&5 + echo "$as_me:10561: \$? = $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}:10565: testing ... found intl headers in $cf_cv_header_path_intl ..." 1>&5 +echo "${as_me:-configure}:10566: testing ... found intl headers in $cf_cv_header_path_intl ..." 1>&5 cf_cv_find_linkage_intl=maybe cf_test_CPPFLAGS="$CPPFLAGS" @@ -10580,7 +10581,7 @@ rm -f "conftest.$ac_objext" "conftest.$ac_ext" if test "$cf_cv_find_linkage_intl" = maybe ; then -echo "${as_me:-configure}:10583: testing Searching for intl library in FIND_LINKAGE(intl,) ..." 1>&5 +echo "${as_me:-configure}:10584: testing Searching for intl library in FIND_LINKAGE(intl,) ..." 1>&5 cf_save_LIBS="$LIBS" cf_save_LDFLAGS="$LDFLAGS" @@ -10655,13 +10656,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}:10658: testing ... testing $cf_cv_library_path_intl ..." 1>&5 +echo "${as_me:-configure}:10659: 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 10664 "configure" +#line 10665 "configure" #include "confdefs.h" #include <libintl.h> @@ -10683,21 +10684,21 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:10686: \"$ac_link\"") >&5 +if { (eval echo "$as_me:10687: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:10689: \$? = $ac_status" >&5 + echo "$as_me:10690: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:10692: \"$ac_try\"") >&5 + { (eval echo "$as_me:10693: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:10695: \$? = $ac_status" >&5 + echo "$as_me:10696: \$? = $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}:10700: testing ... found intl library in $cf_cv_library_path_intl ..." 1>&5 +echo "${as_me:-configure}:10701: testing ... found intl library in $cf_cv_library_path_intl ..." 1>&5 cf_cv_find_linkage_intl=yes cf_cv_library_file_intl="-lintl" @@ -10736,9 +10737,9 @@ else cf_cv_func_gettext=no fi - echo "$as_me:10739: checking for libintl.h and gettext()" >&5 + echo "$as_me:10740: checking for libintl.h and gettext()" >&5 echo $ECHO_N "checking for libintl.h and gettext()... $ECHO_C" >&6 - echo "$as_me:10741: result: $cf_cv_func_gettext" >&5 + echo "$as_me:10742: result: $cf_cv_func_gettext" >&5 echo "${ECHO_T}$cf_cv_func_gettext" >&6 LIBS="$cf_save_LIBS_1" @@ -10783,7 +10784,7 @@ if test -n "$cf_cv_header_path_intl" ; then CPPFLAGS="${CPPFLAGS}-I$cf_add_incdir" cat >"conftest.$ac_ext" <<_ACEOF -#line 10786 "configure" +#line 10787 "configure" #include "confdefs.h" #include <stdio.h> int @@ -10795,16 +10796,16 @@ printf("Hello") } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:10798: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:10799: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:10801: \$? = $ac_status" >&5 + echo "$as_me:10802: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:10804: \"$ac_try\"") >&5 + { (eval echo "$as_me:10805: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:10807: \$? = $ac_status" >&5 + echo "$as_me:10808: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then : else @@ -10821,7 +10822,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}:10824: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:10825: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -10860,7 +10861,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}:10863: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:10864: testing adding $cf_add_libdir to library-path ..." 1>&5 INTLLIBS="-L$cf_add_libdir $INTLLIBS" fi @@ -10876,13 +10877,13 @@ fi for ac_func in dcgettext do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` -echo "$as_me:10879: checking for $ac_func" >&5 +echo "$as_me:10880: 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 10885 "configure" +#line 10886 "configure" #include "confdefs.h" #define $ac_func autoconf_temporary #include <limits.h> /* least-intrusive standard header which defines gcc2 __stub macros */ @@ -10913,16 +10914,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:10916: \"$ac_link\"") >&5 +if { (eval echo "$as_me:10917: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:10919: \$? = $ac_status" >&5 + echo "$as_me:10920: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:10922: \"$ac_try\"") >&5 + { (eval echo "$as_me:10923: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:10925: \$? = $ac_status" >&5 + echo "$as_me:10926: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then eval "$as_ac_var=yes" else @@ -10932,7 +10933,7 @@ eval "$as_ac_var=no" fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:10935: result: `eval echo '${'"$as_ac_var"'}'`" >&5 +echo "$as_me:10936: 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 @@ -10947,7 +10948,7 @@ done CATOBJEXT=.gmo fi elif test -z "$MSGFMT" || test -z "$XGETTEXT" ; then - { echo "$as_me:10950: WARNING: disabling NLS feature" >&5 + { echo "$as_me:10951: 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 @@ -10983,7 +10984,7 @@ EOF 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:10986: WARNING: no NLS library is packaged with this application" >&5 + { echo "$as_me:10987: 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 @@ -10992,7 +10993,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:10995: WARNING: found msgfmt program is not GNU msgfmt" >&5 + { echo "$as_me:10996: WARNING: found msgfmt program is not GNU msgfmt" >&5 echo "$as_me: WARNING: found msgfmt program is not GNU msgfmt" >&2;} fi fi @@ -11001,7 +11002,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:11004: WARNING: found xgettext program is not GNU xgettext" >&5 + { echo "$as_me:11005: WARNING: found xgettext program is not GNU xgettext" >&5 echo "$as_me: WARNING: found xgettext program is not GNU xgettext" >&2;} fi fi @@ -11019,7 +11020,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:11022: checking for $ac_word" >&5 +echo "$as_me:11023: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_prog_INTL_YACC+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -11034,7 +11035,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_INTL_YACC="$ac_prog" -echo "$as_me:11037: found $ac_dir/$ac_word" >&5 +echo "$as_me:11038: found $ac_dir/$ac_word" >&5 break done @@ -11042,10 +11043,10 @@ fi fi INTL_YACC=$ac_cv_prog_INTL_YACC if test -n "$INTL_YACC"; then - echo "$as_me:11045: result: $INTL_YACC" >&5 + echo "$as_me:11046: result: $INTL_YACC" >&5 echo "${ECHO_T}$INTL_YACC" >&6 else - echo "$as_me:11048: result: no" >&5 + echo "$as_me:11049: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -11055,7 +11056,7 @@ done if test -z "$INTL_YACC"; then ac_verc_fail=yes else - echo "$as_me:11058: checking version of $INTL_YACC" >&5 + echo "$as_me:11059: checking version of $INTL_YACC" >&5 echo $ECHO_N "checking version of $INTL_YACC... $ECHO_C" >&6 ac_prog_version=`$INTL_YACC -V 2>&1 | sed -n 's/^.*GNU Bison.* \([0-9]*\.[0-9.]*\).*$/\1/p;s/^\(byacc\) - \([0-9][0-9.]*\) \([0-9]*\).*$/\1-\2.\3/p'` case "$ac_prog_version" in @@ -11066,7 +11067,7 @@ echo $ECHO_N "checking version of $INTL_YACC... $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:11069: result: $ac_prog_version" >&5 + echo "$as_me:11070: result: $ac_prog_version" >&5 echo "${ECHO_T}$ac_prog_version" >&6 fi if test "$ac_verc_fail" = yes; then @@ -11093,7 +11094,7 @@ echo "${ECHO_T}$ac_prog_version" >&6 if test "x$ALL_LINGUAS" = "x"; then LINGUAS= else - echo "$as_me:11096: checking for catalogs to be installed" >&5 + echo "$as_me:11097: 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 @@ -11113,7 +11114,7 @@ echo $ECHO_N "checking for catalogs to be installed... $ECHO_C" >&6 fi done LINGUAS=$NEW_LINGUAS - echo "$as_me:11116: result: $LINGUAS" >&5 + echo "$as_me:11117: result: $LINGUAS" >&5 echo "${ECHO_T}$LINGUAS" >&6 fi @@ -11149,7 +11150,7 @@ cf_makefile=makefile use_our_messages=no if test "$USE_NLS" = yes ; then if test -d "$srcdir/po" ; then -echo "$as_me:11152: checking if we should use included message-library" >&5 +echo "$as_me:11153: 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. @@ -11160,7 +11161,7 @@ else use_our_messages=yes fi; fi -echo "$as_me:11163: result: $use_our_messages" >&5 +echo "$as_me:11164: result: $use_our_messages" >&5 echo "${ECHO_T}$use_our_messages" >&6 fi @@ -11202,23 +11203,23 @@ else for ac_header in libintl.h do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` -echo "$as_me:11205: checking for $ac_header" >&5 +echo "$as_me:11206: 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 11211 "configure" +#line 11212 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:11215: \"$ac_cpp "conftest.$ac_ext"\"") >&5 +if { (eval echo "$as_me:11216: \"$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:11221: \$? = $ac_status" >&5 + echo "$as_me:11222: \$? = $ac_status" >&5 (exit "$ac_status"); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -11237,7 +11238,7 @@ else fi rm -f conftest.err "conftest.$ac_ext" fi -echo "$as_me:11240: result: `eval echo '${'"$as_ac_Header"'}'`" >&5 +echo "$as_me:11241: 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 @@ -11326,7 +11327,7 @@ case ".$withval" in withval=`echo "$withval" | sed -e s%NONE%$cf_path_syntax%` ;; (*) - { { echo "$as_me:11329: error: expected a pathname, not \"$withval\"" >&5 + { { echo "$as_me:11330: error: expected a pathname, not \"$withval\"" >&5 echo "$as_me: error: expected a pathname, not \"$withval\"" >&2;} { (exit 1); exit 1; }; } ;; @@ -11335,7 +11336,7 @@ esac fi eval NLS_DATADIR="$withval" -echo "$as_me:11338: checking if you want full utility pathnames" >&5 +echo "$as_me:11339: 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. @@ -11352,14 +11353,14 @@ else with_full_paths=yes fi; -echo "$as_me:11355: result: $with_full_paths" >&5 +echo "$as_me:11356: 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:11362: checking for system mailer" >&5 +echo "$as_me:11363: 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 @@ -11379,14 +11380,14 @@ else fi -echo "$as_me:11382: result: $cf_cv_SYSTEM_MAIL" >&5 +echo "$as_me:11383: 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:11389: checking system mail flags" >&5 +echo "$as_me:11390: 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 @@ -11402,7 +11403,7 @@ else fi -echo "$as_me:11405: result: $cf_cv_system_mail_flags" >&5 +echo "$as_me:11406: result: $cf_cv_system_mail_flags" >&5 echo "${ECHO_T}$cf_cv_system_mail_flags" >&6 cat >>confdefs.h <<EOF @@ -11415,14 +11416,14 @@ if test "$with_full_paths" = no ; then fi fi -echo "$as_me:11418: checking if the POSIX test-macros are already defined" >&5 +echo "$as_me:11419: 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 11425 "configure" +#line 11426 "configure" #include "confdefs.h" #include <stdio.h> int @@ -11441,16 +11442,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:11444: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:11445: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:11447: \$? = $ac_status" >&5 + echo "$as_me:11448: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:11450: \"$ac_try\"") >&5 + { (eval echo "$as_me:11451: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:11453: \$? = $ac_status" >&5 + echo "$as_me:11454: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_posix_visible=no else @@ -11461,7 +11462,7 @@ fi rm -f "conftest.$ac_objext" "conftest.$ac_ext" fi -echo "$as_me:11464: result: $cf_cv_posix_visible" >&5 +echo "$as_me:11465: result: $cf_cv_posix_visible" >&5 echo "${ECHO_T}$cf_cv_posix_visible" >&6 if test "$cf_cv_posix_visible" = no; then @@ -11506,14 +11507,14 @@ case "$host_os" in cf_gnu_xopen_source=$cf_XOPEN_SOURCE -echo "$as_me:11509: checking if this is the GNU C library" >&5 +echo "$as_me:11510: 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 11516 "configure" +#line 11517 "configure" #include "confdefs.h" #include <sys/types.h> int @@ -11532,16 +11533,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:11535: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:11536: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:11538: \$? = $ac_status" >&5 + echo "$as_me:11539: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:11541: \"$ac_try\"") >&5 + { (eval echo "$as_me:11542: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:11544: \$? = $ac_status" >&5 + echo "$as_me:11545: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_gnu_library=yes else @@ -11552,7 +11553,7 @@ fi rm -f "conftest.$ac_objext" "conftest.$ac_ext" fi -echo "$as_me:11555: result: $cf_cv_gnu_library" >&5 +echo "$as_me:11556: result: $cf_cv_gnu_library" >&5 echo "${ECHO_T}$cf_cv_gnu_library" >&6 if test x$cf_cv_gnu_library = xyes; then @@ -11560,7 +11561,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:11563: checking if _DEFAULT_SOURCE can be used as a basis" >&5 + echo "$as_me:11564: 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 @@ -11572,7 +11573,7 @@ else CPPFLAGS="${CPPFLAGS}-D_DEFAULT_SOURCE" cat >"conftest.$ac_ext" <<_ACEOF -#line 11575 "configure" +#line 11576 "configure" #include "confdefs.h" #include <sys/types.h> int @@ -11591,16 +11592,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:11594: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:11595: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:11597: \$? = $ac_status" >&5 + echo "$as_me:11598: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:11600: \"$ac_try\"") >&5 + { (eval echo "$as_me:11601: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:11603: \$? = $ac_status" >&5 + echo "$as_me:11604: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_gnu_library_219=yes else @@ -11612,12 +11613,12 @@ rm -f "conftest.$ac_objext" "conftest.$ac_ext" CPPFLAGS="$cf_save" fi -echo "$as_me:11615: result: $cf_cv_gnu_library_219" >&5 +echo "$as_me:11616: 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:11620: checking if _XOPEN_SOURCE=$cf_gnu_xopen_source works with _DEFAULT_SOURCE" >&5 + echo "$as_me:11621: 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 @@ -11722,7 +11723,7 @@ if test -n "$cf_new_extra_cppflags" ; then fi cat >"conftest.$ac_ext" <<_ACEOF -#line 11725 "configure" +#line 11726 "configure" #include "confdefs.h" #include <limits.h> @@ -11742,16 +11743,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:11745: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:11746: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:11748: \$? = $ac_status" >&5 + echo "$as_me:11749: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:11751: \"$ac_try\"") >&5 + { (eval echo "$as_me:11752: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:11754: \$? = $ac_status" >&5 + echo "$as_me:11755: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_gnu_dftsrc_219=yes else @@ -11762,7 +11763,7 @@ fi rm -f "conftest.$ac_objext" "conftest.$ac_ext" fi -echo "$as_me:11765: result: $cf_cv_gnu_dftsrc_219" >&5 +echo "$as_me:11766: 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 @@ -11771,14 +11772,14 @@ echo "${ECHO_T}$cf_cv_gnu_dftsrc_219" >&6 if test "x$cf_cv_gnu_dftsrc_219" != xyes; then - echo "$as_me:11774: checking if we must define _GNU_SOURCE" >&5 + echo "$as_me:11775: 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 11781 "configure" +#line 11782 "configure" #include "confdefs.h" #include <sys/types.h> int @@ -11793,16 +11794,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:11796: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:11797: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:11799: \$? = $ac_status" >&5 + echo "$as_me:11800: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:11802: \"$ac_try\"") >&5 + { (eval echo "$as_me:11803: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:11805: \$? = $ac_status" >&5 + echo "$as_me:11806: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_gnu_source=no else @@ -11909,7 +11910,7 @@ if test -n "$cf_new_extra_cppflags" ; then fi cat >"conftest.$ac_ext" <<_ACEOF -#line 11912 "configure" +#line 11913 "configure" #include "confdefs.h" #include <sys/types.h> int @@ -11924,16 +11925,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:11927: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:11928: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:11930: \$? = $ac_status" >&5 + echo "$as_me:11931: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:11933: \"$ac_try\"") >&5 + { (eval echo "$as_me:11934: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:11936: \$? = $ac_status" >&5 + echo "$as_me:11937: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_gnu_source=no else @@ -11948,12 +11949,12 @@ fi rm -f "conftest.$ac_objext" "conftest.$ac_ext" fi -echo "$as_me:11951: result: $cf_cv_gnu_source" >&5 +echo "$as_me:11952: 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:11956: checking if we should also define _DEFAULT_SOURCE" >&5 + echo "$as_me:11957: 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 @@ -11963,7 +11964,7 @@ else CPPFLAGS="${CPPFLAGS}-D_GNU_SOURCE" cat >"conftest.$ac_ext" <<_ACEOF -#line 11966 "configure" +#line 11967 "configure" #include "confdefs.h" #include <sys/types.h> int @@ -11978,16 +11979,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:11981: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:11982: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:11984: \$? = $ac_status" >&5 + echo "$as_me:11985: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:11987: \"$ac_try\"") >&5 + { (eval echo "$as_me:11988: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:11990: \$? = $ac_status" >&5 + echo "$as_me:11991: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_default_source=no else @@ -11998,7 +11999,7 @@ fi rm -f "conftest.$ac_objext" "conftest.$ac_ext" fi -echo "$as_me:12001: result: $cf_cv_default_source" >&5 +echo "$as_me:12002: result: $cf_cv_default_source" >&5 echo "${ECHO_T}$cf_cv_default_source" >&6 if test "$cf_cv_default_source" = yes then @@ -12035,16 +12036,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:12038: checking if we should define _POSIX_C_SOURCE" >&5 +echo "$as_me:12039: 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}:12044: testing if the symbol is already defined go no further ..." 1>&5 +echo "${as_me:-configure}:12045: testing if the symbol is already defined go no further ..." 1>&5 cat >"conftest.$ac_ext" <<_ACEOF -#line 12047 "configure" +#line 12048 "configure" #include "confdefs.h" #include <sys/types.h> int @@ -12059,16 +12060,16 @@ make an error } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:12062: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:12063: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:12065: \$? = $ac_status" >&5 + echo "$as_me:12066: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:12068: \"$ac_try\"") >&5 + { (eval echo "$as_me:12069: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:12071: \$? = $ac_status" >&5 + echo "$as_me:12072: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_posix_c_source=no else @@ -12089,7 +12090,7 @@ cf_want_posix_source=no esac if test "$cf_want_posix_source" = yes ; then cat >"conftest.$ac_ext" <<_ACEOF -#line 12092 "configure" +#line 12093 "configure" #include "confdefs.h" #include <sys/types.h> int @@ -12104,16 +12105,16 @@ make an error } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:12107: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:12108: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:12110: \$? = $ac_status" >&5 + echo "$as_me:12111: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:12113: \"$ac_try\"") >&5 + { (eval echo "$as_me:12114: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:12116: \$? = $ac_status" >&5 + echo "$as_me:12117: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then : else @@ -12124,7 +12125,7 @@ fi rm -f "conftest.$ac_objext" "conftest.$ac_ext" fi -echo "${as_me:-configure}:12127: testing ifdef from value $cf_POSIX_C_SOURCE ..." 1>&5 +echo "${as_me:-configure}:12128: testing ifdef from value $cf_POSIX_C_SOURCE ..." 1>&5 CFLAGS="$cf_trim_CFLAGS" CPPFLAGS="$cf_trim_CPPFLAGS" @@ -12132,10 +12133,10 @@ echo "${as_me:-configure}:12127: testing ifdef from value $cf_POSIX_C_SOURCE ... test -n "$CPPFLAGS" && CPPFLAGS="$CPPFLAGS " CPPFLAGS="${CPPFLAGS}$cf_cv_posix_c_source" -echo "${as_me:-configure}:12135: testing if the second compile does not leave our definition intact error ..." 1>&5 +echo "${as_me:-configure}:12136: testing if the second compile does not leave our definition intact error ..." 1>&5 cat >"conftest.$ac_ext" <<_ACEOF -#line 12138 "configure" +#line 12139 "configure" #include "confdefs.h" #include <sys/types.h> int @@ -12150,16 +12151,16 @@ make an error } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:12153: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:12154: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:12156: \$? = $ac_status" >&5 + echo "$as_me:12157: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:12159: \"$ac_try\"") >&5 + { (eval echo "$as_me:12160: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:12162: \$? = $ac_status" >&5 + echo "$as_me:12163: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then : else @@ -12175,7 +12176,7 @@ fi rm -f "conftest.$ac_objext" "conftest.$ac_ext" fi -echo "$as_me:12178: result: $cf_cv_posix_c_source" >&5 +echo "$as_me:12179: 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 @@ -12292,7 +12293,7 @@ fi # cf_cv_posix_visible # OpenBSD 6.x has broken locale support, both compile-time and runtime. # see https://www.mail-archive.com/bugs@openbsd.org/msg13200.html # Abusing the conformance level is a workaround. - { echo "$as_me:12295: WARNING: this system does not provide usable locale support" >&5 + { echo "$as_me:12296: WARNING: this system does not provide usable locale support" >&5 echo "$as_me: WARNING: this system does not provide usable locale support" >&2;} cf_xopen_source="-D_BSD_SOURCE" cf_XOPEN_SOURCE=700 @@ -12324,14 +12325,14 @@ echo "$as_me: WARNING: this system does not provide usable locale support" >&2;} ;; (*) -echo "$as_me:12327: checking if we should define _XOPEN_SOURCE" >&5 +echo "$as_me:12328: 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 12334 "configure" +#line 12335 "configure" #include "confdefs.h" #include <stdlib.h> @@ -12351,16 +12352,16 @@ make an error } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:12354: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:12355: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:12357: \$? = $ac_status" >&5 + echo "$as_me:12358: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:12360: \"$ac_try\"") >&5 + { (eval echo "$as_me:12361: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:12363: \$? = $ac_status" >&5 + echo "$as_me:12364: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_xopen_source=no else @@ -12372,7 +12373,7 @@ cf_save="$CPPFLAGS" CPPFLAGS="${CPPFLAGS}-D_XOPEN_SOURCE=$cf_XOPEN_SOURCE" cat >"conftest.$ac_ext" <<_ACEOF -#line 12375 "configure" +#line 12376 "configure" #include "confdefs.h" #include <stdlib.h> @@ -12392,16 +12393,16 @@ make an error } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:12395: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:12396: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:12398: \$? = $ac_status" >&5 + echo "$as_me:12399: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:12401: \"$ac_try\"") >&5 + { (eval echo "$as_me:12402: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:12404: \$? = $ac_status" >&5 + echo "$as_me:12405: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_xopen_source=no else @@ -12416,7 +12417,7 @@ fi rm -f "conftest.$ac_objext" "conftest.$ac_ext" fi -echo "$as_me:12419: result: $cf_cv_xopen_source" >&5 +echo "$as_me:12420: result: $cf_cv_xopen_source" >&5 echo "${ECHO_T}$cf_cv_xopen_source" >&6 if test "$cf_cv_xopen_source" != no ; then @@ -12576,16 +12577,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:12579: checking if we should define _POSIX_C_SOURCE" >&5 +echo "$as_me:12580: 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}:12585: testing if the symbol is already defined go no further ..." 1>&5 +echo "${as_me:-configure}:12586: testing if the symbol is already defined go no further ..." 1>&5 cat >"conftest.$ac_ext" <<_ACEOF -#line 12588 "configure" +#line 12589 "configure" #include "confdefs.h" #include <sys/types.h> int @@ -12600,16 +12601,16 @@ make an error } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:12603: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:12604: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:12606: \$? = $ac_status" >&5 + echo "$as_me:12607: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:12609: \"$ac_try\"") >&5 + { (eval echo "$as_me:12610: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:12612: \$? = $ac_status" >&5 + echo "$as_me:12613: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_posix_c_source=no else @@ -12630,7 +12631,7 @@ cf_want_posix_source=no esac if test "$cf_want_posix_source" = yes ; then cat >"conftest.$ac_ext" <<_ACEOF -#line 12633 "configure" +#line 12634 "configure" #include "confdefs.h" #include <sys/types.h> int @@ -12645,16 +12646,16 @@ make an error } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:12648: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:12649: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:12651: \$? = $ac_status" >&5 + echo "$as_me:12652: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:12654: \"$ac_try\"") >&5 + { (eval echo "$as_me:12655: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:12657: \$? = $ac_status" >&5 + echo "$as_me:12658: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then : else @@ -12665,7 +12666,7 @@ fi rm -f "conftest.$ac_objext" "conftest.$ac_ext" fi -echo "${as_me:-configure}:12668: testing ifdef from value $cf_POSIX_C_SOURCE ..." 1>&5 +echo "${as_me:-configure}:12669: testing ifdef from value $cf_POSIX_C_SOURCE ..." 1>&5 CFLAGS="$cf_trim_CFLAGS" CPPFLAGS="$cf_trim_CPPFLAGS" @@ -12673,10 +12674,10 @@ echo "${as_me:-configure}:12668: testing ifdef from value $cf_POSIX_C_SOURCE ... test -n "$CPPFLAGS" && CPPFLAGS="$CPPFLAGS " CPPFLAGS="${CPPFLAGS}$cf_cv_posix_c_source" -echo "${as_me:-configure}:12676: testing if the second compile does not leave our definition intact error ..." 1>&5 +echo "${as_me:-configure}:12677: testing if the second compile does not leave our definition intact error ..." 1>&5 cat >"conftest.$ac_ext" <<_ACEOF -#line 12679 "configure" +#line 12680 "configure" #include "confdefs.h" #include <sys/types.h> int @@ -12691,16 +12692,16 @@ make an error } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:12694: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:12695: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:12697: \$? = $ac_status" >&5 + echo "$as_me:12698: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:12700: \"$ac_try\"") >&5 + { (eval echo "$as_me:12701: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:12703: \$? = $ac_status" >&5 + echo "$as_me:12704: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then : else @@ -12716,7 +12717,7 @@ fi rm -f "conftest.$ac_objext" "conftest.$ac_ext" fi -echo "$as_me:12719: result: $cf_cv_posix_c_source" >&5 +echo "$as_me:12720: 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 @@ -12828,10 +12829,10 @@ fi # cf_cv_posix_visible # Some of these niche implementations use copy/paste, double-check... test -n "$verbose" && echo " checking if _POSIX_C_SOURCE inteferes" 1>&6 -echo "${as_me:-configure}:12831: testing checking if _POSIX_C_SOURCE inteferes ..." 1>&5 +echo "${as_me:-configure}:12832: testing checking if _POSIX_C_SOURCE inteferes ..." 1>&5 cat >"conftest.$ac_ext" <<_ACEOF -#line 12834 "configure" +#line 12835 "configure" #include "confdefs.h" #include <stdlib.h> @@ -12851,23 +12852,23 @@ make an error } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:12854: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:12855: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:12857: \$? = $ac_status" >&5 + echo "$as_me:12858: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:12860: \"$ac_try\"") >&5 + { (eval echo "$as_me:12861: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:12863: \$? = $ac_status" >&5 + echo "$as_me:12864: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then : else echo "$as_me: failed program was:" >&5 cat "conftest.$ac_ext" >&5 - { echo "$as_me:12870: WARNING: _POSIX_C_SOURCE definition is not usable" >&5 + { echo "$as_me:12871: WARNING: _POSIX_C_SOURCE definition is not usable" >&5 echo "$as_me: WARNING: _POSIX_C_SOURCE definition is not usable" >&2;} CPPFLAGS="$cf_save_xopen_cppflags" fi @@ -12889,7 +12890,7 @@ do test "$CFLAGS" != "$cf_old_cflag" || break test -n "$verbose" && echo " removing old option $cf_add_cflags from CFLAGS" 1>&6 -echo "${as_me:-configure}:12892: testing removing old option $cf_add_cflags from CFLAGS ..." 1>&5 +echo "${as_me:-configure}:12893: testing removing old option $cf_add_cflags from CFLAGS ..." 1>&5 CFLAGS="$cf_old_cflag" done @@ -12901,7 +12902,7 @@ do test "$CPPFLAGS" != "$cf_old_cflag" || break test -n "$verbose" && echo " removing old option $cf_add_cflags from CPPFLAGS" 1>&6 -echo "${as_me:-configure}:12904: testing removing old option $cf_add_cflags from CPPFLAGS ..." 1>&5 +echo "${as_me:-configure}:12905: testing removing old option $cf_add_cflags from CPPFLAGS ..." 1>&5 CPPFLAGS="$cf_old_cflag" done @@ -12989,7 +12990,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}:12992: testing add to \$CFLAGS $cf_new_cflags ..." 1>&5 +echo "${as_me:-configure}:12993: testing add to \$CFLAGS $cf_new_cflags ..." 1>&5 test -n "$CFLAGS" && CFLAGS="$CFLAGS " CFLAGS="${CFLAGS}$cf_new_cflags" @@ -12999,7 +13000,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}:13002: testing add to \$CPPFLAGS $cf_new_cppflags ..." 1>&5 +echo "${as_me:-configure}:13003: testing add to \$CPPFLAGS $cf_new_cppflags ..." 1>&5 test -n "$CPPFLAGS" && CPPFLAGS="$CPPFLAGS " CPPFLAGS="${CPPFLAGS}$cf_new_cppflags" @@ -13009,7 +13010,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}:13012: testing add to \$EXTRA_CPPFLAGS $cf_new_extra_cppflags ..." 1>&5 +echo "${as_me:-configure}:13013: 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" @@ -13021,10 +13022,10 @@ done fi if test -n "$cf_XOPEN_SOURCE" && test -z "$cf_cv_xopen_source" ; then - echo "$as_me:13024: checking if _XOPEN_SOURCE really is set" >&5 + echo "$as_me:13025: 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 13027 "configure" +#line 13028 "configure" #include "confdefs.h" #include <stdlib.h> int @@ -13039,16 +13040,16 @@ make an error } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:13042: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:13043: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:13045: \$? = $ac_status" >&5 + echo "$as_me:13046: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:13048: \"$ac_try\"") >&5 + { (eval echo "$as_me:13049: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:13051: \$? = $ac_status" >&5 + echo "$as_me:13052: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_XOPEN_SOURCE_set=yes else @@ -13057,12 +13058,12 @@ cat "conftest.$ac_ext" >&5 cf_XOPEN_SOURCE_set=no fi rm -f "conftest.$ac_objext" "conftest.$ac_ext" - echo "$as_me:13060: result: $cf_XOPEN_SOURCE_set" >&5 + echo "$as_me:13061: 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 13065 "configure" +#line 13066 "configure" #include "confdefs.h" #include <stdlib.h> int @@ -13077,16 +13078,16 @@ make an error } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:13080: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:13081: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:13083: \$? = $ac_status" >&5 + echo "$as_me:13084: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:13086: \"$ac_try\"") >&5 + { (eval echo "$as_me:13087: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:13089: \$? = $ac_status" >&5 + echo "$as_me:13090: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_XOPEN_SOURCE_set_ok=yes else @@ -13097,19 +13098,19 @@ fi rm -f "conftest.$ac_objext" "conftest.$ac_ext" if test "$cf_XOPEN_SOURCE_set_ok" = no then - { echo "$as_me:13100: WARNING: _XOPEN_SOURCE is lower than requested" >&5 + { echo "$as_me:13101: WARNING: _XOPEN_SOURCE is lower than requested" >&5 echo "$as_me: WARNING: _XOPEN_SOURCE is lower than requested" >&2;} fi else -echo "$as_me:13105: checking if we should define _XOPEN_SOURCE" >&5 +echo "$as_me:13106: 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 13112 "configure" +#line 13113 "configure" #include "confdefs.h" #include <stdlib.h> @@ -13129,16 +13130,16 @@ make an error } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:13132: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:13133: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:13135: \$? = $ac_status" >&5 + echo "$as_me:13136: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:13138: \"$ac_try\"") >&5 + { (eval echo "$as_me:13139: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:13141: \$? = $ac_status" >&5 + echo "$as_me:13142: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_xopen_source=no else @@ -13150,7 +13151,7 @@ cf_save="$CPPFLAGS" CPPFLAGS="${CPPFLAGS}-D_XOPEN_SOURCE=$cf_XOPEN_SOURCE" cat >"conftest.$ac_ext" <<_ACEOF -#line 13153 "configure" +#line 13154 "configure" #include "confdefs.h" #include <stdlib.h> @@ -13170,16 +13171,16 @@ make an error } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:13173: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:13174: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:13176: \$? = $ac_status" >&5 + echo "$as_me:13177: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:13179: \"$ac_try\"") >&5 + { (eval echo "$as_me:13180: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:13182: \$? = $ac_status" >&5 + echo "$as_me:13183: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_xopen_source=no else @@ -13194,7 +13195,7 @@ fi rm -f "conftest.$ac_objext" "conftest.$ac_ext" fi -echo "$as_me:13197: result: $cf_cv_xopen_source" >&5 +echo "$as_me:13198: result: $cf_cv_xopen_source" >&5 echo "${ECHO_T}$cf_cv_xopen_source" >&6 if test "$cf_cv_xopen_source" != no ; then @@ -13341,14 +13342,14 @@ fi fi fi # cf_cv_posix_visible -echo "$as_me:13344: checking if SIGWINCH is defined" >&5 +echo "$as_me:13345: 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 13351 "configure" +#line 13352 "configure" #include "confdefs.h" #include <sys/types.h> @@ -13363,23 +13364,23 @@ int x = SIGWINCH; (void)x } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:13366: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:13367: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:13369: \$? = $ac_status" >&5 + echo "$as_me:13370: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:13372: \"$ac_try\"") >&5 + { (eval echo "$as_me:13373: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:13375: \$? = $ac_status" >&5 + echo "$as_me:13376: \$? = $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 13382 "configure" +#line 13383 "configure" #include "confdefs.h" #undef _XOPEN_SOURCE @@ -13397,16 +13398,16 @@ int x = SIGWINCH; (void)x } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:13400: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:13401: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:13403: \$? = $ac_status" >&5 + echo "$as_me:13404: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:13406: \"$ac_try\"") >&5 + { (eval echo "$as_me:13407: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:13409: \$? = $ac_status" >&5 + echo "$as_me:13410: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_define_sigwinch=maybe else @@ -13420,11 +13421,11 @@ fi rm -f "conftest.$ac_objext" "conftest.$ac_ext" fi -echo "$as_me:13423: result: $cf_cv_define_sigwinch" >&5 +echo "$as_me:13424: 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:13427: checking for actual SIGWINCH definition" >&5 +echo "$as_me:13428: 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 @@ -13435,7 +13436,7 @@ cf_sigwinch=32 while test "$cf_sigwinch" != 1 do cat >"conftest.$ac_ext" <<_ACEOF -#line 13438 "configure" +#line 13439 "configure" #include "confdefs.h" #undef _XOPEN_SOURCE @@ -13457,16 +13458,16 @@ int x = SIGWINCH; (void)x } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:13460: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:13461: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:13463: \$? = $ac_status" >&5 + echo "$as_me:13464: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:13466: \"$ac_try\"") >&5 + { (eval echo "$as_me:13467: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:13469: \$? = $ac_status" >&5 + echo "$as_me:13470: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_fixup_sigwinch=$cf_sigwinch break @@ -13480,7 +13481,7 @@ cf_sigwinch="`expr "$cf_sigwinch" - 1`" done fi -echo "$as_me:13483: result: $cf_cv_fixup_sigwinch" >&5 +echo "$as_me:13484: result: $cf_cv_fixup_sigwinch" >&5 echo "${ECHO_T}$cf_cv_fixup_sigwinch" >&6 if test "$cf_cv_fixup_sigwinch" != unknown ; then @@ -13492,7 +13493,7 @@ if test -n "$TRY_CFLAGS" ; then test -n "$verbose" && echo " checking additions to CFLAGS" 1>&6 -echo "${as_me:-configure}:13495: testing checking additions to CFLAGS ..." 1>&5 +echo "${as_me:-configure}:13496: testing checking additions to CFLAGS ..." 1>&5 cf_check_cflags="$CFLAGS" cf_check_cppflags="$CPPFLAGS" @@ -13577,7 +13578,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}:13580: testing add to \$CFLAGS $cf_new_cflags ..." 1>&5 +echo "${as_me:-configure}:13581: testing add to \$CFLAGS $cf_new_cflags ..." 1>&5 test -n "$CFLAGS" && CFLAGS="$CFLAGS " CFLAGS="${CFLAGS}$cf_new_cflags" @@ -13587,7 +13588,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}:13590: testing add to \$CPPFLAGS $cf_new_cppflags ..." 1>&5 +echo "${as_me:-configure}:13591: testing add to \$CPPFLAGS $cf_new_cppflags ..." 1>&5 test -n "$CPPFLAGS" && CPPFLAGS="$CPPFLAGS " CPPFLAGS="${CPPFLAGS}$cf_new_cppflags" @@ -13597,7 +13598,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}:13600: testing add to \$EXTRA_CPPFLAGS $cf_new_extra_cppflags ..." 1>&5 +echo "${as_me:-configure}:13601: 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" @@ -13606,7 +13607,7 @@ fi if test "x$cf_check_cflags" != "x$CFLAGS" ; then cat >"conftest.$ac_ext" <<_ACEOF -#line 13609 "configure" +#line 13610 "configure" #include "confdefs.h" #include <stdio.h> int @@ -13618,16 +13619,16 @@ printf("Hello world"); } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:13621: \"$ac_link\"") >&5 +if { (eval echo "$as_me:13622: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:13624: \$? = $ac_status" >&5 + echo "$as_me:13625: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:13627: \"$ac_try\"") >&5 + { (eval echo "$as_me:13628: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:13630: \$? = $ac_status" >&5 + echo "$as_me:13631: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then : else @@ -13635,12 +13636,12 @@ else cat "conftest.$ac_ext" >&5 test -n "$verbose" && echo " test-compile failed. Undoing change to \$CFLAGS" 1>&6 -echo "${as_me:-configure}:13638: testing test-compile failed. Undoing change to \$CFLAGS ..." 1>&5 +echo "${as_me:-configure}:13639: 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}:13643: testing but keeping change to \$CPPFLAGS ..." 1>&5 +echo "${as_me:-configure}:13644: testing but keeping change to \$CPPFLAGS ..." 1>&5 fi CFLAGS="$cf_check_cflags" @@ -13652,7 +13653,7 @@ fi ### Look for network libraries first, since some functions (such as gethostname) ### are used in a lot of places. -echo "$as_me:13655: checking if you want NSS compatible SSL libraries" >&5 +echo "$as_me:13656: 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 @@ -13667,10 +13668,10 @@ else fi; fi -echo "$as_me:13670: result: $cf_cv_use_libnss_compat" >&5 +echo "$as_me:13671: result: $cf_cv_use_libnss_compat" >&5 echo "${ECHO_T}$cf_cv_use_libnss_compat" >&6 -echo "$as_me:13673: checking if you want ssl library" >&5 +echo "$as_me:13674: 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 @@ -13685,10 +13686,10 @@ else fi; fi -echo "$as_me:13688: result: $cf_cv_use_libssl" >&5 +echo "$as_me:13689: result: $cf_cv_use_libssl" >&5 echo "${ECHO_T}$cf_cv_use_libssl" >&6 -echo "$as_me:13691: checking if you want gnutls support" >&5 +echo "$as_me:13692: 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 @@ -13703,11 +13704,11 @@ else fi; fi -echo "$as_me:13706: result: $cf_cv_use_libgnutls" >&5 +echo "$as_me:13707: 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:13710: checking if you want gnutls-openssl compat" >&5 +echo "$as_me:13711: 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 @@ -13722,10 +13723,10 @@ else fi; fi -echo "$as_me:13725: result: $cf_cv_gnutls_compat" >&5 +echo "$as_me:13726: result: $cf_cv_gnutls_compat" >&5 echo "${ECHO_T}$cf_cv_gnutls_compat" >&6 -echo "$as_me:13728: checking if you want socks library" >&5 +echo "$as_me:13729: 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 @@ -13740,10 +13741,10 @@ else fi; fi -echo "$as_me:13743: result: $cf_cv_use_libsocks" >&5 +echo "$as_me:13744: result: $cf_cv_use_libsocks" >&5 echo "${ECHO_T}$cf_cv_use_libsocks" >&6 -echo "$as_me:13746: checking if you want socks5 library" >&5 +echo "$as_me:13747: 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 @@ -13758,7 +13759,7 @@ else fi; fi -echo "$as_me:13761: result: $cf_cv_use_libsocks5" >&5 +echo "$as_me:13762: result: $cf_cv_use_libsocks5" >&5 echo "${ECHO_T}$cf_cv_use_libsocks5" >&6 if test "x$cf_cv_use_libsocks" != xno ; then @@ -13800,7 +13801,7 @@ if test -n "$cf_searchpath/include" ; then CPPFLAGS="${CPPFLAGS}-I$cf_add_incdir" cat >"conftest.$ac_ext" <<_ACEOF -#line 13803 "configure" +#line 13804 "configure" #include "confdefs.h" #include <stdio.h> int @@ -13812,16 +13813,16 @@ printf("Hello") } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:13815: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:13816: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:13818: \$? = $ac_status" >&5 + echo "$as_me:13819: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:13821: \"$ac_try\"") >&5 + { (eval echo "$as_me:13822: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:13824: \$? = $ac_status" >&5 + echo "$as_me:13825: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then : else @@ -13838,7 +13839,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}:13841: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:13842: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -13884,7 +13885,7 @@ if test -n "$cf_searchpath/../include" ; then CPPFLAGS="${CPPFLAGS}-I$cf_add_incdir" cat >"conftest.$ac_ext" <<_ACEOF -#line 13887 "configure" +#line 13888 "configure" #include "confdefs.h" #include <stdio.h> int @@ -13896,16 +13897,16 @@ printf("Hello") } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:13899: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:13900: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:13902: \$? = $ac_status" >&5 + echo "$as_me:13903: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:13905: \"$ac_try\"") >&5 + { (eval echo "$as_me:13906: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:13908: \$? = $ac_status" >&5 + echo "$as_me:13909: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then : else @@ -13922,7 +13923,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}:13925: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:13926: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -13940,7 +13941,7 @@ echo "${as_me:-configure}:13925: testing adding $cf_add_incdir to include-path . fi else -{ { echo "$as_me:13943: error: cannot find socks library under $cf_cv_use_libsocks" >&5 +{ { echo "$as_me:13944: 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 @@ -13965,7 +13966,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}:13968: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:13969: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -13994,7 +13995,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}:13997: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:13998: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -14003,7 +14004,7 @@ echo "${as_me:-configure}:13997: testing adding $cf_add_libdir to library-path . fi else -{ { echo "$as_me:14006: error: cannot find socks library under $cf_cv_use_libsocks" >&5 +{ { echo "$as_me:14007: 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 @@ -14017,12 +14018,12 @@ esac cf_cv_header_path_socks= cf_cv_library_path_socks= -echo "${as_me:-configure}:14020: testing Starting FIND_LINKAGE(socks,) ..." 1>&5 +echo "${as_me:-configure}:14021: testing Starting FIND_LINKAGE(socks,) ..." 1>&5 cf_save_LIBS="$LIBS" cat >"conftest.$ac_ext" <<_ACEOF -#line 14025 "configure" +#line 14026 "configure" #include "confdefs.h" #include <stdio.h> @@ -14038,16 +14039,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:14041: \"$ac_link\"") >&5 +if { (eval echo "$as_me:14042: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:14044: \$? = $ac_status" >&5 + echo "$as_me:14045: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:14047: \"$ac_try\"") >&5 + { (eval echo "$as_me:14048: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:14050: \$? = $ac_status" >&5 + echo "$as_me:14051: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_find_linkage_socks=yes @@ -14061,7 +14062,7 @@ cat "conftest.$ac_ext" >&5 LIBS="-lsocks $cf_save_LIBS" cat >"conftest.$ac_ext" <<_ACEOF -#line 14064 "configure" +#line 14065 "configure" #include "confdefs.h" #include <stdio.h> @@ -14077,16 +14078,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:14080: \"$ac_link\"") >&5 +if { (eval echo "$as_me:14081: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:14083: \$? = $ac_status" >&5 + echo "$as_me:14084: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:14086: \"$ac_try\"") >&5 + { (eval echo "$as_me:14087: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:14089: \$? = $ac_status" >&5 + echo "$as_me:14090: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_find_linkage_socks=yes @@ -14103,9 +14104,9 @@ cat "conftest.$ac_ext" >&5 test -n "$verbose" && echo " find linkage for socks library" 1>&6 -echo "${as_me:-configure}:14106: testing find linkage for socks library ..." 1>&5 +echo "${as_me:-configure}:14107: testing find linkage for socks library ..." 1>&5 -echo "${as_me:-configure}:14108: testing Searching for headers in FIND_LINKAGE(socks,) ..." 1>&5 +echo "${as_me:-configure}:14109: testing Searching for headers in FIND_LINKAGE(socks,) ..." 1>&5 cf_save_CPPFLAGS="$CPPFLAGS" cf_test_CPPFLAGS="$CPPFLAGS" @@ -14196,7 +14197,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}:14199: testing ... testing $cf_cv_header_path_socks ..." 1>&5 +echo "${as_me:-configure}:14200: testing ... testing $cf_cv_header_path_socks ..." 1>&5 CPPFLAGS="$cf_save_CPPFLAGS" @@ -14204,7 +14205,7 @@ echo "${as_me:-configure}:14199: testing ... testing $cf_cv_header_path_socks .. CPPFLAGS="${CPPFLAGS}-I$cf_cv_header_path_socks" cat >"conftest.$ac_ext" <<_ACEOF -#line 14207 "configure" +#line 14208 "configure" #include "confdefs.h" #include <stdio.h> @@ -14220,21 +14221,21 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:14223: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:14224: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:14226: \$? = $ac_status" >&5 + echo "$as_me:14227: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:14229: \"$ac_try\"") >&5 + { (eval echo "$as_me:14230: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:14232: \$? = $ac_status" >&5 + echo "$as_me:14233: \$? = $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}:14237: testing ... found socks headers in $cf_cv_header_path_socks ..." 1>&5 +echo "${as_me:-configure}:14238: testing ... found socks headers in $cf_cv_header_path_socks ..." 1>&5 cf_cv_find_linkage_socks=maybe cf_test_CPPFLAGS="$CPPFLAGS" @@ -14252,7 +14253,7 @@ rm -f "conftest.$ac_objext" "conftest.$ac_ext" if test "$cf_cv_find_linkage_socks" = maybe ; then -echo "${as_me:-configure}:14255: testing Searching for socks library in FIND_LINKAGE(socks,) ..." 1>&5 +echo "${as_me:-configure}:14256: testing Searching for socks library in FIND_LINKAGE(socks,) ..." 1>&5 cf_save_LIBS="$LIBS" cf_save_LDFLAGS="$LDFLAGS" @@ -14327,13 +14328,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}:14330: testing ... testing $cf_cv_library_path_socks ..." 1>&5 +echo "${as_me:-configure}:14331: 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 14336 "configure" +#line 14337 "configure" #include "confdefs.h" #include <stdio.h> @@ -14349,21 +14350,21 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:14352: \"$ac_link\"") >&5 +if { (eval echo "$as_me:14353: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:14355: \$? = $ac_status" >&5 + echo "$as_me:14356: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:14358: \"$ac_try\"") >&5 + { (eval echo "$as_me:14359: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:14361: \$? = $ac_status" >&5 + echo "$as_me:14362: \$? = $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}:14366: testing ... found socks library in $cf_cv_library_path_socks ..." 1>&5 +echo "${as_me:-configure}:14367: testing ... found socks library in $cf_cv_library_path_socks ..." 1>&5 cf_cv_find_linkage_socks=yes cf_cv_library_file_socks="-lsocks" @@ -14425,7 +14426,7 @@ if test -n "$cf_cv_header_path_socks" ; then CPPFLAGS="${CPPFLAGS}-I$cf_add_incdir" cat >"conftest.$ac_ext" <<_ACEOF -#line 14428 "configure" +#line 14429 "configure" #include "confdefs.h" #include <stdio.h> int @@ -14437,16 +14438,16 @@ printf("Hello") } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:14440: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:14441: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:14443: \$? = $ac_status" >&5 + echo "$as_me:14444: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:14446: \"$ac_try\"") >&5 + { (eval echo "$as_me:14447: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:14449: \$? = $ac_status" >&5 + echo "$as_me:14450: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then : else @@ -14463,7 +14464,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}:14466: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:14467: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -14499,7 +14500,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}:14502: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:14503: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -14524,7 +14525,7 @@ done LIBS="$cf_add_libs" else -{ echo "$as_me:14527: WARNING: Cannot find socks library" >&5 +{ echo "$as_me:14528: WARNING: Cannot find socks library" >&5 echo "$as_me: WARNING: Cannot find socks library" >&2;} fi @@ -14567,7 +14568,7 @@ cat >>confdefs.h <<\EOF EOF else - { { echo "$as_me:14570: error: cannot link with socks library" >&5 + { { echo "$as_me:14571: error: cannot link with socks library" >&5 echo "$as_me: error: cannot link with socks library" >&2;} { (exit 1); exit 1; }; } fi @@ -14611,7 +14612,7 @@ if test -n "$cf_searchpath/include" ; then CPPFLAGS="${CPPFLAGS}-I$cf_add_incdir" cat >"conftest.$ac_ext" <<_ACEOF -#line 14614 "configure" +#line 14615 "configure" #include "confdefs.h" #include <stdio.h> int @@ -14623,16 +14624,16 @@ printf("Hello") } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:14626: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:14627: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:14629: \$? = $ac_status" >&5 + echo "$as_me:14630: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:14632: \"$ac_try\"") >&5 + { (eval echo "$as_me:14633: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:14635: \$? = $ac_status" >&5 + echo "$as_me:14636: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then : else @@ -14649,7 +14650,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}:14652: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:14653: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -14695,7 +14696,7 @@ if test -n "$cf_searchpath/../include" ; then CPPFLAGS="${CPPFLAGS}-I$cf_add_incdir" cat >"conftest.$ac_ext" <<_ACEOF -#line 14698 "configure" +#line 14699 "configure" #include "confdefs.h" #include <stdio.h> int @@ -14707,16 +14708,16 @@ printf("Hello") } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:14710: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:14711: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:14713: \$? = $ac_status" >&5 + echo "$as_me:14714: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:14716: \"$ac_try\"") >&5 + { (eval echo "$as_me:14717: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:14719: \$? = $ac_status" >&5 + echo "$as_me:14720: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then : else @@ -14733,7 +14734,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}:14736: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:14737: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -14751,7 +14752,7 @@ echo "${as_me:-configure}:14736: testing adding $cf_add_incdir to include-path . fi else -{ { echo "$as_me:14754: error: cannot find socks5 library under $cf_cv_use_libsocks5" >&5 +{ { echo "$as_me:14755: 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 @@ -14776,7 +14777,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}:14779: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:14780: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -14805,7 +14806,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}:14808: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:14809: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -14814,7 +14815,7 @@ echo "${as_me:-configure}:14808: testing adding $cf_add_libdir to library-path . fi else -{ { echo "$as_me:14817: error: cannot find socks5 library under $cf_cv_use_libsocks5" >&5 +{ { echo "$as_me:14818: 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 @@ -14847,11 +14848,11 @@ cat >>confdefs.h <<\EOF #define SOCKS 1 EOF -echo "$as_me:14850: checking if the socks library uses socks4 prefix" >&5 +echo "$as_me:14851: 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 14854 "configure" +#line 14855 "configure" #include "confdefs.h" #include <socks.h> @@ -14865,16 +14866,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:14868: \"$ac_link\"") >&5 +if { (eval echo "$as_me:14869: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:14871: \$? = $ac_status" >&5 + echo "$as_me:14872: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:14874: \"$ac_try\"") >&5 + { (eval echo "$as_me:14875: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:14877: \$? = $ac_status" >&5 + echo "$as_me:14878: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cat >>confdefs.h <<\EOF @@ -14886,7 +14887,7 @@ else echo "$as_me: failed program was:" >&5 cat "conftest.$ac_ext" >&5 cat >"conftest.$ac_ext" <<_ACEOF -#line 14889 "configure" +#line 14890 "configure" #include "confdefs.h" #include <socks.h> int @@ -14898,29 +14899,29 @@ SOCKSinit((char *)0) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:14901: \"$ac_link\"") >&5 +if { (eval echo "$as_me:14902: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:14904: \$? = $ac_status" >&5 + echo "$as_me:14905: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:14907: \"$ac_try\"") >&5 + { (eval echo "$as_me:14908: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:14910: \$? = $ac_status" >&5 + echo "$as_me:14911: \$? = $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:14916: error: Cannot link with socks5 library" >&5 +{ { echo "$as_me:14917: 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:14923: result: $cf_use_socks4" >&5 +echo "$as_me:14924: result: $cf_use_socks4" >&5 echo "${ECHO_T}$cf_use_socks4" >&6 if test "$cf_use_socks4" = "yes" ; then @@ -14975,10 +14976,10 @@ EOF fi -echo "$as_me:14978: checking if socks5p.h is available" >&5 +echo "$as_me:14979: 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 14981 "configure" +#line 14982 "configure" #include "confdefs.h" #define INCLUDE_PROTOTYPES @@ -14993,16 +14994,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:14996: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:14997: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:14999: \$? = $ac_status" >&5 + echo "$as_me:15000: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:15002: \"$ac_try\"") >&5 + { (eval echo "$as_me:15003: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:15005: \$? = $ac_status" >&5 + echo "$as_me:15006: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_use_socks5p_h=yes else @@ -15011,7 +15012,7 @@ cat "conftest.$ac_ext" >&5 cf_use_socks5p_h=no fi rm -f "conftest.$ac_objext" "conftest.$ac_ext" -echo "$as_me:15014: result: $cf_use_socks5p_h" >&5 +echo "$as_me:15015: result: $cf_use_socks5p_h" >&5 echo "${ECHO_T}$cf_use_socks5p_h" >&6 test "$cf_use_socks5p_h" = yes && @@ -15023,14 +15024,14 @@ else cf_test_netlibs=no -echo "$as_me:15026: checking for network libraries" >&5 +echo "$as_me:15027: 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:15033: result: working..." >&5 +echo "$as_me:15034: result: working..." >&5 echo "${ECHO_T}working..." >&6 cf_cv_netlibs="" @@ -15042,23 +15043,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:15045: checking for $ac_header" >&5 +echo "$as_me:15046: 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 15051 "configure" +#line 15052 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:15055: \"$ac_cpp "conftest.$ac_ext"\"") >&5 +if { (eval echo "$as_me:15056: \"$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:15061: \$? = $ac_status" >&5 + echo "$as_me:15062: \$? = $ac_status" >&5 (exit "$ac_status"); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -15077,7 +15078,7 @@ else fi rm -f conftest.err "conftest.$ac_ext" fi -echo "$as_me:15080: result: `eval echo '${'"$as_ac_Header"'}'`" >&5 +echo "$as_me:15081: 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 @@ -15112,7 +15113,7 @@ done LIBS="$cf_add_libs" cat >"conftest.$ac_ext" <<_ACEOF -#line 15115 "configure" +#line 15116 "configure" #include "confdefs.h" #ifdef HAVE_WINDOWS_H @@ -15139,22 +15140,22 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:15142: \"$ac_link\"") >&5 +if { (eval echo "$as_me:15143: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:15145: \$? = $ac_status" >&5 + echo "$as_me:15146: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:15148: \"$ac_try\"") >&5 + { (eval echo "$as_me:15149: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:15151: \$? = $ac_status" >&5 + echo "$as_me:15152: \$? = $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:15157: error: Cannot link against winsock library" >&5 +{ { echo "$as_me:15158: error: Cannot link against winsock library" >&5 echo "$as_me: error: Cannot link against winsock library" >&2;} { (exit 1); exit 1; }; } fi @@ -15167,13 +15168,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:15170: 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 15176 "configure" +#line 15177 "configure" #include "confdefs.h" #define $ac_func autoconf_temporary #include <limits.h> /* least-intrusive standard header which defines gcc2 __stub macros */ @@ -15204,16 +15205,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:15207: \"$ac_link\"") >&5 +if { (eval echo "$as_me:15208: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:15210: \$? = $ac_status" >&5 + echo "$as_me:15211: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:15213: \"$ac_try\"") >&5 + { (eval echo "$as_me:15214: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:15216: \$? = $ac_status" >&5 + echo "$as_me:15217: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then eval "$as_ac_var=yes" else @@ -15223,7 +15224,7 @@ eval "$as_ac_var=no" fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:15226: 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 @@ -15232,7 +15233,7 @@ EOF else -echo "$as_me:15235: checking for gethostname in -lnsl" >&5 +echo "$as_me:15236: 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 @@ -15240,7 +15241,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lnsl $cf_cv_netlibs $LIBS" cat >"conftest.$ac_ext" <<_ACEOF -#line 15243 "configure" +#line 15244 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -15259,16 +15260,16 @@ gethostname (); } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:15262: \"$ac_link\"") >&5 +if { (eval echo "$as_me:15263: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:15265: \$? = $ac_status" >&5 + echo "$as_me:15266: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:15268: \"$ac_try\"") >&5 + { (eval echo "$as_me:15269: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:15271: \$? = $ac_status" >&5 + echo "$as_me:15272: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_lib_nsl_gethostname=yes else @@ -15279,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:15282: result: $ac_cv_lib_nsl_gethostname" >&5 +echo "$as_me:15283: 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 @@ -15296,7 +15297,7 @@ else ac_cv_func_gethostname=unknown unset ac_cv_func_gethostname 2>/dev/null -echo "$as_me:15299: checking for gethostname in -lsocket" >&5 +echo "$as_me:15300: 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 @@ -15304,7 +15305,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lsocket $cf_cv_netlibs $LIBS" cat >"conftest.$ac_ext" <<_ACEOF -#line 15307 "configure" +#line 15308 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -15323,16 +15324,16 @@ gethostname (); } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:15326: \"$ac_link\"") >&5 +if { (eval echo "$as_me:15327: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:15329: \$? = $ac_status" >&5 + echo "$as_me:15330: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:15332: \"$ac_try\"") >&5 + { (eval echo "$as_me:15333: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:15335: \$? = $ac_status" >&5 + echo "$as_me:15336: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_lib_socket_gethostname=yes else @@ -15343,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:15346: result: $ac_cv_lib_socket_gethostname" >&5 +echo "$as_me:15347: 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 @@ -15367,7 +15368,7 @@ fi fi done - echo "$as_me:15370: checking for main in -linet" >&5 + echo "$as_me:15371: 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 @@ -15375,7 +15376,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-linet $LIBS" cat >"conftest.$ac_ext" <<_ACEOF -#line 15378 "configure" +#line 15379 "configure" #include "confdefs.h" int @@ -15387,16 +15388,16 @@ main (); } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:15390: \"$ac_link\"") >&5 +if { (eval echo "$as_me:15391: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:15393: \$? = $ac_status" >&5 + echo "$as_me:15394: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:15396: \"$ac_try\"") >&5 + { (eval echo "$as_me:15397: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:15399: \$? = $ac_status" >&5 + echo "$as_me:15400: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_lib_inet_main=yes else @@ -15407,7 +15408,7 @@ fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:15410: result: $ac_cv_lib_inet_main" >&5 +echo "$as_me:15411: 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" @@ -15418,13 +15419,13 @@ fi for ac_func in socket do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` -echo "$as_me:15421: checking for $ac_func" >&5 +echo "$as_me:15422: 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 15427 "configure" +#line 15428 "configure" #include "confdefs.h" #define $ac_func autoconf_temporary #include <limits.h> /* least-intrusive standard header which defines gcc2 __stub macros */ @@ -15455,16 +15456,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:15458: \"$ac_link\"") >&5 +if { (eval echo "$as_me:15459: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:15461: \$? = $ac_status" >&5 + echo "$as_me:15462: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:15464: \"$ac_try\"") >&5 + { (eval echo "$as_me:15465: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:15467: \$? = $ac_status" >&5 + echo "$as_me:15468: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then eval "$as_ac_var=yes" else @@ -15474,7 +15475,7 @@ eval "$as_ac_var=no" fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:15477: result: `eval echo '${'"$as_ac_var"'}'`" >&5 +echo "$as_me:15478: 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 @@ -15483,7 +15484,7 @@ EOF else -echo "$as_me:15486: checking for socket in -lsocket" >&5 +echo "$as_me:15487: 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 @@ -15491,7 +15492,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lsocket $cf_cv_netlibs $LIBS" cat >"conftest.$ac_ext" <<_ACEOF -#line 15494 "configure" +#line 15495 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -15510,16 +15511,16 @@ socket (); } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:15513: \"$ac_link\"") >&5 +if { (eval echo "$as_me:15514: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:15516: \$? = $ac_status" >&5 + echo "$as_me:15517: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:15519: \"$ac_try\"") >&5 + { (eval echo "$as_me:15520: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:15522: \$? = $ac_status" >&5 + echo "$as_me:15523: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_lib_socket_socket=yes else @@ -15530,7 +15531,7 @@ fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:15533: result: $ac_cv_lib_socket_socket" >&5 +echo "$as_me:15534: 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 @@ -15547,7 +15548,7 @@ else ac_cv_func_socket=unknown unset ac_cv_func_socket 2>/dev/null -echo "$as_me:15550: checking for socket in -lbsd" >&5 +echo "$as_me:15551: 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 @@ -15555,7 +15556,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lbsd $cf_cv_netlibs $LIBS" cat >"conftest.$ac_ext" <<_ACEOF -#line 15558 "configure" +#line 15559 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -15574,16 +15575,16 @@ socket (); } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:15577: \"$ac_link\"") >&5 +if { (eval echo "$as_me:15578: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:15580: \$? = $ac_status" >&5 + echo "$as_me:15581: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:15583: \"$ac_try\"") >&5 + { (eval echo "$as_me:15584: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:15586: \$? = $ac_status" >&5 + echo "$as_me:15587: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_lib_bsd_socket=yes else @@ -15594,7 +15595,7 @@ fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:15597: result: $ac_cv_lib_bsd_socket" >&5 +echo "$as_me:15598: 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 @@ -15623,13 +15624,13 @@ done for ac_func in gethostbyname do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` -echo "$as_me:15626: checking for $ac_func" >&5 +echo "$as_me:15627: 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 15632 "configure" +#line 15633 "configure" #include "confdefs.h" #define $ac_func autoconf_temporary #include <limits.h> /* least-intrusive standard header which defines gcc2 __stub macros */ @@ -15660,16 +15661,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:15663: \"$ac_link\"") >&5 +if { (eval echo "$as_me:15664: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:15666: \$? = $ac_status" >&5 + echo "$as_me:15667: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:15669: \"$ac_try\"") >&5 + { (eval echo "$as_me:15670: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:15672: \$? = $ac_status" >&5 + echo "$as_me:15673: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then eval "$as_ac_var=yes" else @@ -15679,7 +15680,7 @@ eval "$as_ac_var=no" fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:15682: result: `eval echo '${'"$as_ac_var"'}'`" >&5 +echo "$as_me:15683: 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 @@ -15688,7 +15689,7 @@ EOF else -echo "$as_me:15691: checking for gethostbyname in -lnsl" >&5 +echo "$as_me:15692: 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 @@ -15696,7 +15697,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lnsl $cf_cv_netlibs $LIBS" cat >"conftest.$ac_ext" <<_ACEOF -#line 15699 "configure" +#line 15700 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -15715,16 +15716,16 @@ gethostbyname (); } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:15718: \"$ac_link\"") >&5 +if { (eval echo "$as_me:15719: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:15721: \$? = $ac_status" >&5 + echo "$as_me:15722: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:15724: \"$ac_try\"") >&5 + { (eval echo "$as_me:15725: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:15727: \$? = $ac_status" >&5 + echo "$as_me:15728: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_lib_nsl_gethostbyname=yes else @@ -15735,7 +15736,7 @@ fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:15738: result: $ac_cv_lib_nsl_gethostbyname" >&5 +echo "$as_me:15739: 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 @@ -15760,13 +15761,13 @@ done for ac_func in inet_ntoa do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` -echo "$as_me:15763: checking for $ac_func" >&5 +echo "$as_me:15764: 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 15769 "configure" +#line 15770 "configure" #include "confdefs.h" #define $ac_func autoconf_temporary #include <limits.h> /* least-intrusive standard header which defines gcc2 __stub macros */ @@ -15797,16 +15798,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:15800: \"$ac_link\"") >&5 +if { (eval echo "$as_me:15801: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:15803: \$? = $ac_status" >&5 + echo "$as_me:15804: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:15806: \"$ac_try\"") >&5 + { (eval echo "$as_me:15807: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:15809: \$? = $ac_status" >&5 + echo "$as_me:15810: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then eval "$as_ac_var=yes" else @@ -15816,7 +15817,7 @@ eval "$as_ac_var=no" fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:15819: result: `eval echo '${'"$as_ac_var"'}'`" >&5 +echo "$as_me:15820: 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 @@ -15825,7 +15826,7 @@ EOF else -echo "$as_me:15828: checking for inet_ntoa in -lnsl" >&5 +echo "$as_me:15829: 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 @@ -15833,7 +15834,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lnsl $cf_cv_netlibs $LIBS" cat >"conftest.$ac_ext" <<_ACEOF -#line 15836 "configure" +#line 15837 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -15852,16 +15853,16 @@ inet_ntoa (); } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:15855: \"$ac_link\"") >&5 +if { (eval echo "$as_me:15856: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:15858: \$? = $ac_status" >&5 + echo "$as_me:15859: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:15861: \"$ac_try\"") >&5 + { (eval echo "$as_me:15862: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:15864: \$? = $ac_status" >&5 + echo "$as_me:15865: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_lib_nsl_inet_ntoa=yes else @@ -15872,7 +15873,7 @@ fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:15875: result: $ac_cv_lib_nsl_inet_ntoa" >&5 +echo "$as_me:15876: 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 @@ -15897,13 +15898,13 @@ done for ac_func in gethostbyname do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` -echo "$as_me:15900: checking for $ac_func" >&5 +echo "$as_me:15901: 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 15906 "configure" +#line 15907 "configure" #include "confdefs.h" #define $ac_func autoconf_temporary #include <limits.h> /* least-intrusive standard header which defines gcc2 __stub macros */ @@ -15934,16 +15935,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:15937: \"$ac_link\"") >&5 +if { (eval echo "$as_me:15938: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:15940: \$? = $ac_status" >&5 + echo "$as_me:15941: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:15943: \"$ac_try\"") >&5 + { (eval echo "$as_me:15944: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:15946: \$? = $ac_status" >&5 + echo "$as_me:15947: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then eval "$as_ac_var=yes" else @@ -15953,7 +15954,7 @@ eval "$as_ac_var=no" fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:15956: result: `eval echo '${'"$as_ac_var"'}'`" >&5 +echo "$as_me:15957: 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 @@ -15962,7 +15963,7 @@ EOF else -echo "$as_me:15965: checking for gethostbyname in -lnetwork" >&5 +echo "$as_me:15966: 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 @@ -15970,7 +15971,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lnetwork $cf_cv_netlibs $LIBS" cat >"conftest.$ac_ext" <<_ACEOF -#line 15973 "configure" +#line 15974 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -15989,16 +15990,16 @@ gethostbyname (); } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:15992: \"$ac_link\"") >&5 +if { (eval echo "$as_me:15993: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:15995: \$? = $ac_status" >&5 + echo "$as_me:15996: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:15998: \"$ac_try\"") >&5 + { (eval echo "$as_me:15999: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:16001: \$? = $ac_status" >&5 + echo "$as_me:16002: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_lib_network_gethostbyname=yes else @@ -16009,7 +16010,7 @@ fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:16012: result: $ac_cv_lib_network_gethostbyname" >&5 +echo "$as_me:16013: 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 @@ -16034,13 +16035,13 @@ done for ac_func in strcasecmp do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` -echo "$as_me:16037: checking for $ac_func" >&5 +echo "$as_me:16038: 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 16043 "configure" +#line 16044 "configure" #include "confdefs.h" #define $ac_func autoconf_temporary #include <limits.h> /* least-intrusive standard header which defines gcc2 __stub macros */ @@ -16071,16 +16072,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:16074: \"$ac_link\"") >&5 +if { (eval echo "$as_me:16075: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:16077: \$? = $ac_status" >&5 + echo "$as_me:16078: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:16080: \"$ac_try\"") >&5 + { (eval echo "$as_me:16081: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:16083: \$? = $ac_status" >&5 + echo "$as_me:16084: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then eval "$as_ac_var=yes" else @@ -16090,7 +16091,7 @@ eval "$as_ac_var=no" fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:16093: result: `eval echo '${'"$as_ac_var"'}'`" >&5 +echo "$as_me:16094: 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 @@ -16099,7 +16100,7 @@ EOF else -echo "$as_me:16102: checking for strcasecmp in -lresolv" >&5 +echo "$as_me:16103: 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 @@ -16107,7 +16108,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lresolv $cf_cv_netlibs $LIBS" cat >"conftest.$ac_ext" <<_ACEOF -#line 16110 "configure" +#line 16111 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -16126,16 +16127,16 @@ strcasecmp (); } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:16129: \"$ac_link\"") >&5 +if { (eval echo "$as_me:16130: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:16132: \$? = $ac_status" >&5 + echo "$as_me:16133: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:16135: \"$ac_try\"") >&5 + { (eval echo "$as_me:16136: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:16138: \$? = $ac_status" >&5 + echo "$as_me:16139: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_lib_resolv_strcasecmp=yes else @@ -16146,7 +16147,7 @@ fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:16149: result: $ac_cv_lib_resolv_strcasecmp" >&5 +echo "$as_me:16150: 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 @@ -16203,14 +16204,14 @@ test "$cf_test_netlibs" = no && echo "$cf_cv_netlibs" >&6 fi -echo "$as_me:16206: checking for inet_aton function" >&5 +echo "$as_me:16207: 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 16213 "configure" +#line 16214 "configure" #include "confdefs.h" $ac_includes_default @@ -16246,16 +16247,16 @@ inet_aton(0, (struct in_addr *)0) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:16249: \"$ac_link\"") >&5 +if { (eval echo "$as_me:16250: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:16252: \$? = $ac_status" >&5 + echo "$as_me:16253: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:16255: \"$ac_try\"") >&5 + { (eval echo "$as_me:16256: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:16258: \$? = $ac_status" >&5 + echo "$as_me:16259: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_have_inet_aton=yes else @@ -16265,7 +16266,7 @@ cf_cv_have_inet_aton=no fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:16268: result: $cf_cv_have_inet_aton" >&5 +echo "$as_me:16269: 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 @@ -16274,14 +16275,14 @@ cat >>confdefs.h <<\EOF EOF else - echo "$as_me:16277: checking for inet_addr function" >&5 + echo "$as_me:16278: 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 16284 "configure" +#line 16285 "configure" #include "confdefs.h" $ac_includes_default @@ -16317,16 +16318,16 @@ inet_addr(0) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:16320: \"$ac_link\"") >&5 +if { (eval echo "$as_me:16321: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:16323: \$? = $ac_status" >&5 + echo "$as_me:16324: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:16326: \"$ac_try\"") >&5 + { (eval echo "$as_me:16327: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:16329: \$? = $ac_status" >&5 + echo "$as_me:16330: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_have_inet_addr=yes else @@ -16336,10 +16337,10 @@ cf_cv_have_inet_addr=no fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:16339: result: $cf_cv_have_inet_addr" >&5 +echo "$as_me:16340: 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:16342: checking for library with inet_addr" >&5 + echo "$as_me:16343: 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 @@ -16350,7 +16351,7 @@ else do LIBS="$cf_save_LIBS $cf_inetlib" cat >"conftest.$ac_ext" <<_ACEOF -#line 16353 "configure" +#line 16354 "configure" #include "confdefs.h" #include <sys/types.h> #include <sys/socket.h> @@ -16366,16 +16367,16 @@ inet_addr(0) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:16369: \"$ac_link\"") >&5 +if { (eval echo "$as_me:16370: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:16372: \$? = $ac_status" >&5 + echo "$as_me:16373: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:16375: \"$ac_try\"") >&5 + { (eval echo "$as_me:16376: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:16378: \$? = $ac_status" >&5 + echo "$as_me:16379: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_lib_inet_addr=$cf_inetlib else @@ -16389,7 +16390,7 @@ rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" done fi -echo "$as_me:16392: result: $cf_cv_lib_inet_addr" >&5 +echo "$as_me:16393: 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 @@ -16410,13 +16411,13 @@ done LIBS="$cf_add_libs" else - { echo "$as_me:16413: WARNING: Unable to find library for inet_addr function" >&5 + { echo "$as_me:16414: 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:16419: checking if you want to use pkg-config" >&5 +echo "$as_me:16420: 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. @@ -16426,7 +16427,7 @@ if test "${with_pkg_config+set}" = set; then else cf_pkg_config=yes fi; -echo "$as_me:16429: result: $cf_pkg_config" >&5 +echo "$as_me:16430: result: $cf_pkg_config" >&5 echo "${ECHO_T}$cf_pkg_config" >&6 case "$cf_pkg_config" in @@ -16438,7 +16439,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:16441: checking for $ac_word" >&5 +echo "$as_me:16442: 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 @@ -16455,7 +16456,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:16458: found $ac_dir/$ac_word" >&5 + echo "$as_me:16459: found $ac_dir/$ac_word" >&5 break fi done @@ -16466,10 +16467,10 @@ fi PKG_CONFIG=$ac_cv_path_PKG_CONFIG if test -n "$PKG_CONFIG"; then - echo "$as_me:16469: result: $PKG_CONFIG" >&5 + echo "$as_me:16470: result: $PKG_CONFIG" >&5 echo "${ECHO_T}$PKG_CONFIG" >&6 else - echo "$as_me:16472: result: no" >&5 + echo "$as_me:16473: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -16478,7 +16479,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:16481: checking for $ac_word" >&5 +echo "$as_me:16482: 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 @@ -16495,7 +16496,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:16498: found $ac_dir/$ac_word" >&5 + echo "$as_me:16499: found $ac_dir/$ac_word" >&5 break fi done @@ -16507,10 +16508,10 @@ fi ac_pt_PKG_CONFIG=$ac_cv_path_ac_pt_PKG_CONFIG if test -n "$ac_pt_PKG_CONFIG"; then - echo "$as_me:16510: result: $ac_pt_PKG_CONFIG" >&5 + echo "$as_me:16511: result: $ac_pt_PKG_CONFIG" >&5 echo "${ECHO_T}$ac_pt_PKG_CONFIG" >&6 else - echo "$as_me:16513: result: no" >&5 + echo "$as_me:16514: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -16553,14 +16554,14 @@ case ".$PKG_CONFIG" in PKG_CONFIG=`echo "$PKG_CONFIG" | sed -e s%NONE%$cf_path_syntax%` ;; (*) - { { echo "$as_me:16556: error: expected a pathname, not \"$PKG_CONFIG\"" >&5 + { { echo "$as_me:16557: 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:16563: WARNING: pkg-config is not installed" >&5 + { echo "$as_me:16564: WARNING: pkg-config is not installed" >&5 echo "$as_me: WARNING: pkg-config is not installed" >&2;} fi @@ -16608,7 +16609,7 @@ if test -n "$cf_searchpath/include" ; then CPPFLAGS="${CPPFLAGS}-I$cf_add_incdir" cat >"conftest.$ac_ext" <<_ACEOF -#line 16611 "configure" +#line 16612 "configure" #include "confdefs.h" #include <stdio.h> int @@ -16620,16 +16621,16 @@ printf("Hello") } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:16623: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:16624: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:16626: \$? = $ac_status" >&5 + echo "$as_me:16627: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:16629: \"$ac_try\"") >&5 + { (eval echo "$as_me:16630: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:16632: \$? = $ac_status" >&5 + echo "$as_me:16633: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then : else @@ -16646,7 +16647,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}:16649: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:16650: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -16692,7 +16693,7 @@ if test -n "$cf_searchpath/../include" ; then CPPFLAGS="${CPPFLAGS}-I$cf_add_incdir" cat >"conftest.$ac_ext" <<_ACEOF -#line 16695 "configure" +#line 16696 "configure" #include "confdefs.h" #include <stdio.h> int @@ -16704,16 +16705,16 @@ printf("Hello") } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:16707: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:16708: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:16710: \$? = $ac_status" >&5 + echo "$as_me:16711: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:16713: \"$ac_try\"") >&5 + { (eval echo "$as_me:16714: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:16716: \$? = $ac_status" >&5 + echo "$as_me:16717: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then : else @@ -16730,7 +16731,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}:16733: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:16734: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -16748,7 +16749,7 @@ echo "${as_me:-configure}:16733: testing adding $cf_add_incdir to include-path . fi else -{ { echo "$as_me:16751: error: cannot find ssl library under $cf_cv_use_libssl" >&5 +{ { echo "$as_me:16752: 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 @@ -16773,7 +16774,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}:16776: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:16777: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -16802,7 +16803,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}:16805: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:16806: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -16811,7 +16812,7 @@ echo "${as_me:-configure}:16805: testing adding $cf_add_libdir to library-path . fi else -{ { echo "$as_me:16814: error: cannot find ssl library under $cf_cv_use_libssl" >&5 +{ { echo "$as_me:16815: 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 @@ -16828,15 +16829,15 @@ esac cf_cv_pkg_ssl= for cf_try_package in openssl libssl do - echo "$as_me:16831: checking pkg-config for $cf_try_package" >&5 + echo "$as_me:16832: 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:16835: result: yes" >&5 + echo "$as_me:16836: result: yes" >&5 echo "${ECHO_T}yes" >&6 break else - echo "$as_me:16839: result: no" >&5 + echo "$as_me:16840: result: no" >&5 echo "${ECHO_T}no" >&6 fi done @@ -16980,7 +16981,7 @@ fi esac test -n "$verbose" && echo " adding $cf_libs_ssl to LIBS" 1>&6 -echo "${as_me:-configure}:16983: testing adding $cf_libs_ssl to LIBS ..." 1>&5 +echo "${as_me:-configure}:16984: testing adding $cf_libs_ssl to LIBS ..." 1>&5 cf_add_libs="$LIBS" # reverse order @@ -17016,7 +17017,7 @@ LIBS="$cf_add_libs" (*-ldl) ;; (*) - echo "$as_me:17019: checking for dlsym in -ldl" >&5 + echo "$as_me:17020: 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 @@ -17024,7 +17025,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-ldl $LIBS" cat >"conftest.$ac_ext" <<_ACEOF -#line 17027 "configure" +#line 17028 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -17043,16 +17044,16 @@ dlsym (); } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:17046: \"$ac_link\"") >&5 +if { (eval echo "$as_me:17047: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:17049: \$? = $ac_status" >&5 + echo "$as_me:17050: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:17052: \"$ac_try\"") >&5 + { (eval echo "$as_me:17053: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:17055: \$? = $ac_status" >&5 + echo "$as_me:17056: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_lib_dl_dlsym=yes else @@ -17063,7 +17064,7 @@ fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:17066: result: $ac_cv_lib_dl_dlsym" >&5 +echo "$as_me:17067: 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" @@ -17079,12 +17080,12 @@ fi cf_cv_header_path_ssl= cf_cv_library_path_ssl= -echo "${as_me:-configure}:17082: testing Starting FIND_LINKAGE(ssl,openssl) ..." 1>&5 +echo "${as_me:-configure}:17083: testing Starting FIND_LINKAGE(ssl,openssl) ..." 1>&5 cf_save_LIBS="$LIBS" cat >"conftest.$ac_ext" <<_ACEOF -#line 17087 "configure" +#line 17088 "configure" #include "confdefs.h" #include <stdio.h> @@ -17113,16 +17114,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:17116: \"$ac_link\"") >&5 +if { (eval echo "$as_me:17117: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:17119: \$? = $ac_status" >&5 + echo "$as_me:17120: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:17122: \"$ac_try\"") >&5 + { (eval echo "$as_me:17123: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:17125: \$? = $ac_status" >&5 + echo "$as_me:17126: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_find_linkage_ssl=yes @@ -17136,7 +17137,7 @@ cat "conftest.$ac_ext" >&5 LIBS="-lssl $cf_extra_ssl_libs $cf_save_LIBS" cat >"conftest.$ac_ext" <<_ACEOF -#line 17139 "configure" +#line 17140 "configure" #include "confdefs.h" #include <stdio.h> @@ -17165,16 +17166,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:17168: \"$ac_link\"") >&5 +if { (eval echo "$as_me:17169: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:17171: \$? = $ac_status" >&5 + echo "$as_me:17172: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:17174: \"$ac_try\"") >&5 + { (eval echo "$as_me:17175: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:17177: \$? = $ac_status" >&5 + echo "$as_me:17178: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_find_linkage_ssl=yes @@ -17191,9 +17192,9 @@ cat "conftest.$ac_ext" >&5 test -n "$verbose" && echo " find linkage for ssl library" 1>&6 -echo "${as_me:-configure}:17194: testing find linkage for ssl library ..." 1>&5 +echo "${as_me:-configure}:17195: testing find linkage for ssl library ..." 1>&5 -echo "${as_me:-configure}:17196: testing Searching for headers in FIND_LINKAGE(ssl,openssl) ..." 1>&5 +echo "${as_me:-configure}:17197: testing Searching for headers in FIND_LINKAGE(ssl,openssl) ..." 1>&5 cf_save_CPPFLAGS="$CPPFLAGS" cf_test_CPPFLAGS="$CPPFLAGS" @@ -17284,7 +17285,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}:17287: testing ... testing $cf_cv_header_path_ssl ..." 1>&5 +echo "${as_me:-configure}:17288: testing ... testing $cf_cv_header_path_ssl ..." 1>&5 CPPFLAGS="$cf_save_CPPFLAGS" @@ -17292,7 +17293,7 @@ echo "${as_me:-configure}:17287: testing ... testing $cf_cv_header_path_ssl ..." CPPFLAGS="${CPPFLAGS}-I$cf_cv_header_path_ssl" cat >"conftest.$ac_ext" <<_ACEOF -#line 17295 "configure" +#line 17296 "configure" #include "confdefs.h" #include <stdio.h> @@ -17321,21 +17322,21 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:17324: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:17325: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:17327: \$? = $ac_status" >&5 + echo "$as_me:17328: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:17330: \"$ac_try\"") >&5 + { (eval echo "$as_me:17331: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:17333: \$? = $ac_status" >&5 + echo "$as_me:17334: \$? = $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}:17338: testing ... found ssl headers in $cf_cv_header_path_ssl ..." 1>&5 +echo "${as_me:-configure}:17339: testing ... found ssl headers in $cf_cv_header_path_ssl ..." 1>&5 cf_cv_find_linkage_ssl=maybe cf_test_CPPFLAGS="$CPPFLAGS" @@ -17353,7 +17354,7 @@ rm -f "conftest.$ac_objext" "conftest.$ac_ext" if test "$cf_cv_find_linkage_ssl" = maybe ; then -echo "${as_me:-configure}:17356: testing Searching for ssl library in FIND_LINKAGE(ssl,openssl) ..." 1>&5 +echo "${as_me:-configure}:17357: testing Searching for ssl library in FIND_LINKAGE(ssl,openssl) ..." 1>&5 cf_save_LIBS="$LIBS" cf_save_LDFLAGS="$LDFLAGS" @@ -17361,7 +17362,7 @@ echo "${as_me:-configure}:17356: 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 17364 "configure" +#line 17365 "configure" #include "confdefs.h" #include <stdio.h> @@ -17390,21 +17391,21 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:17393: \"$ac_link\"") >&5 +if { (eval echo "$as_me:17394: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:17396: \$? = $ac_status" >&5 + echo "$as_me:17397: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:17399: \"$ac_try\"") >&5 + { (eval echo "$as_me:17400: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:17402: \$? = $ac_status" >&5 + echo "$as_me:17403: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then test -n "$verbose" && echo " ... found ssl library in system" 1>&6 -echo "${as_me:-configure}:17407: testing ... found ssl library in system ..." 1>&5 +echo "${as_me:-configure}:17408: testing ... found ssl library in system ..." 1>&5 cf_cv_find_linkage_ssl=yes else @@ -17485,13 +17486,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}:17488: testing ... testing $cf_cv_library_path_ssl ..." 1>&5 +echo "${as_me:-configure}:17489: 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 17494 "configure" +#line 17495 "configure" #include "confdefs.h" #include <stdio.h> @@ -17520,21 +17521,21 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:17523: \"$ac_link\"") >&5 +if { (eval echo "$as_me:17524: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:17526: \$? = $ac_status" >&5 + echo "$as_me:17527: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:17529: \"$ac_try\"") >&5 + { (eval echo "$as_me:17530: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:17532: \$? = $ac_status" >&5 + echo "$as_me:17533: \$? = $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}:17537: testing ... found ssl library in $cf_cv_library_path_ssl ..." 1>&5 +echo "${as_me:-configure}:17538: testing ... found ssl library in $cf_cv_library_path_ssl ..." 1>&5 cf_cv_find_linkage_ssl=yes cf_cv_library_file_ssl="-lssl" @@ -17596,7 +17597,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}:17599: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:17600: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -17655,7 +17656,7 @@ if test -n "$cf_cv_header_path_ssl" ; then CPPFLAGS="${CPPFLAGS}-I$cf_add_incdir" cat >"conftest.$ac_ext" <<_ACEOF -#line 17658 "configure" +#line 17659 "configure" #include "confdefs.h" #include <stdio.h> int @@ -17667,16 +17668,16 @@ printf("Hello") } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:17670: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:17671: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:17673: \$? = $ac_status" >&5 + echo "$as_me:17674: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:17676: \"$ac_try\"") >&5 + { (eval echo "$as_me:17677: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:17679: \$? = $ac_status" >&5 + echo "$as_me:17680: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then : else @@ -17693,7 +17694,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}:17696: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:17697: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -17726,7 +17727,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}:17729: testing checking ssl header-path $cf_cv_header_path_ssl ..." 1>&5 +echo "${as_me:-configure}:17730: testing checking ssl header-path $cf_cv_header_path_ssl ..." 1>&5 case "$cf_cv_header_path_ssl" in (*/openssl) @@ -17739,10 +17740,10 @@ EOF esac fi -echo "$as_me:17742: checking for X509 support" >&5 +echo "$as_me:17743: checking for X509 support" >&5 echo $ECHO_N "checking for X509 support... $ECHO_C" >&6 cat >"conftest.$ac_ext" <<_ACEOF -#line 17745 "configure" +#line 17746 "configure" #include "confdefs.h" #include <stdio.h> @@ -17771,16 +17772,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:17774: \"$ac_link\"") >&5 +if { (eval echo "$as_me:17775: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:17777: \$? = $ac_status" >&5 + echo "$as_me:17778: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:17780: \"$ac_try\"") >&5 + { (eval echo "$as_me:17781: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:17783: \$? = $ac_status" >&5 + echo "$as_me:17784: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_x509_support=yes else @@ -17789,7 +17790,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:17792: result: $cf_x509_support" >&5 +echo "$as_me:17793: result: $cf_x509_support" >&5 echo "${ECHO_T}$cf_x509_support" >&6 if test "$cf_x509_support" = yes ; then @@ -17844,7 +17845,7 @@ if test -n "$cf_searchpath/include" ; then CPPFLAGS="${CPPFLAGS}-I$cf_add_incdir" cat >"conftest.$ac_ext" <<_ACEOF -#line 17847 "configure" +#line 17848 "configure" #include "confdefs.h" #include <stdio.h> int @@ -17856,16 +17857,16 @@ printf("Hello") } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:17859: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:17860: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:17862: \$? = $ac_status" >&5 + echo "$as_me:17863: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:17865: \"$ac_try\"") >&5 + { (eval echo "$as_me:17866: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:17868: \$? = $ac_status" >&5 + echo "$as_me:17869: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then : else @@ -17882,7 +17883,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}:17885: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:17886: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -17928,7 +17929,7 @@ if test -n "$cf_searchpath/../include" ; then CPPFLAGS="${CPPFLAGS}-I$cf_add_incdir" cat >"conftest.$ac_ext" <<_ACEOF -#line 17931 "configure" +#line 17932 "configure" #include "confdefs.h" #include <stdio.h> int @@ -17940,16 +17941,16 @@ printf("Hello") } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:17943: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:17944: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:17946: \$? = $ac_status" >&5 + echo "$as_me:17947: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:17949: \"$ac_try\"") >&5 + { (eval echo "$as_me:17950: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:17952: \$? = $ac_status" >&5 + echo "$as_me:17953: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then : else @@ -17966,7 +17967,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}:17969: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:17970: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -17984,7 +17985,7 @@ echo "${as_me:-configure}:17969: testing adding $cf_add_incdir to include-path . fi else -{ { echo "$as_me:17987: error: cannot find ssl library under $cf_cv_use_libgnutls" >&5 +{ { echo "$as_me:17988: 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 @@ -18009,7 +18010,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}:18012: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:18013: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -18038,7 +18039,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}:18041: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:18042: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -18047,7 +18048,7 @@ echo "${as_me:-configure}:18041: testing adding $cf_add_libdir to library-path . fi else -{ { echo "$as_me:18050: error: cannot find ssl library under $cf_cv_use_libgnutls" >&5 +{ { echo "$as_me:18051: 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 @@ -18065,12 +18066,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}:18068: testing checking pkg-config for $cf_pkg_gnutls ..." 1>&5 +echo "${as_me:-configure}:18069: 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}:18073: testing ... found $cf_pkg_gnutls in pkg-config ..." 1>&5 +echo "${as_me:-configure}:18074: testing ... found $cf_pkg_gnutls in pkg-config ..." 1>&5 cf_cv_have_gnutls=yes cf_cv_pkg_config_ssl=yes @@ -18202,7 +18203,7 @@ fi esac test -n "$verbose" && echo " adding $cf_libs_ssl to LIBS" 1>&6 -echo "${as_me:-configure}:18205: testing adding $cf_libs_ssl to LIBS ..." 1>&5 +echo "${as_me:-configure}:18206: testing adding $cf_libs_ssl to LIBS ..." 1>&5 cf_add_libs="$LIBS" # reverse order @@ -18224,7 +18225,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}:18227: testing ... did not find $cf_pkg_gnutls in pkg-config ..." 1>&5 +echo "${as_me:-configure}:18228: testing ... did not find $cf_pkg_gnutls in pkg-config ..." 1>&5 cf_pkg_gnutls=none fi @@ -18244,12 +18245,12 @@ EOF cf_cv_header_path_gnutls= cf_cv_library_path_gnutls= -echo "${as_me:-configure}:18247: testing Starting FIND_LINKAGE(gnutls,) ..." 1>&5 +echo "${as_me:-configure}:18248: testing Starting FIND_LINKAGE(gnutls,) ..." 1>&5 cf_save_LIBS="$LIBS" cat >"conftest.$ac_ext" <<_ACEOF -#line 18252 "configure" +#line 18253 "configure" #include "confdefs.h" #include <stdio.h> @@ -18278,16 +18279,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:18281: \"$ac_link\"") >&5 +if { (eval echo "$as_me:18282: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:18284: \$? = $ac_status" >&5 + echo "$as_me:18285: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:18287: \"$ac_try\"") >&5 + { (eval echo "$as_me:18288: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:18290: \$? = $ac_status" >&5 + echo "$as_me:18291: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_find_linkage_gnutls=yes @@ -18301,7 +18302,7 @@ cat "conftest.$ac_ext" >&5 LIBS="-lgnutls $cf_save_LIBS" cat >"conftest.$ac_ext" <<_ACEOF -#line 18304 "configure" +#line 18305 "configure" #include "confdefs.h" #include <stdio.h> @@ -18330,16 +18331,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:18333: \"$ac_link\"") >&5 +if { (eval echo "$as_me:18334: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:18336: \$? = $ac_status" >&5 + echo "$as_me:18337: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:18339: \"$ac_try\"") >&5 + { (eval echo "$as_me:18340: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:18342: \$? = $ac_status" >&5 + echo "$as_me:18343: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_find_linkage_gnutls=yes @@ -18356,9 +18357,9 @@ cat "conftest.$ac_ext" >&5 test -n "$verbose" && echo " find linkage for gnutls library" 1>&6 -echo "${as_me:-configure}:18359: testing find linkage for gnutls library ..." 1>&5 +echo "${as_me:-configure}:18360: testing find linkage for gnutls library ..." 1>&5 -echo "${as_me:-configure}:18361: testing Searching for headers in FIND_LINKAGE(gnutls,) ..." 1>&5 +echo "${as_me:-configure}:18362: testing Searching for headers in FIND_LINKAGE(gnutls,) ..." 1>&5 cf_save_CPPFLAGS="$CPPFLAGS" cf_test_CPPFLAGS="$CPPFLAGS" @@ -18449,7 +18450,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}:18452: testing ... testing $cf_cv_header_path_gnutls ..." 1>&5 +echo "${as_me:-configure}:18453: testing ... testing $cf_cv_header_path_gnutls ..." 1>&5 CPPFLAGS="$cf_save_CPPFLAGS" @@ -18457,7 +18458,7 @@ echo "${as_me:-configure}:18452: testing ... testing $cf_cv_header_path_gnutls . CPPFLAGS="${CPPFLAGS}-I$cf_cv_header_path_gnutls" cat >"conftest.$ac_ext" <<_ACEOF -#line 18460 "configure" +#line 18461 "configure" #include "confdefs.h" #include <stdio.h> @@ -18486,21 +18487,21 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:18489: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:18490: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:18492: \$? = $ac_status" >&5 + echo "$as_me:18493: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:18495: \"$ac_try\"") >&5 + { (eval echo "$as_me:18496: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:18498: \$? = $ac_status" >&5 + echo "$as_me:18499: \$? = $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}:18503: testing ... found gnutls headers in $cf_cv_header_path_gnutls ..." 1>&5 +echo "${as_me:-configure}:18504: testing ... found gnutls headers in $cf_cv_header_path_gnutls ..." 1>&5 cf_cv_find_linkage_gnutls=maybe cf_test_CPPFLAGS="$CPPFLAGS" @@ -18518,7 +18519,7 @@ rm -f "conftest.$ac_objext" "conftest.$ac_ext" if test "$cf_cv_find_linkage_gnutls" = maybe ; then -echo "${as_me:-configure}:18521: testing Searching for gnutls library in FIND_LINKAGE(gnutls,) ..." 1>&5 +echo "${as_me:-configure}:18522: testing Searching for gnutls library in FIND_LINKAGE(gnutls,) ..." 1>&5 cf_save_LIBS="$LIBS" cf_save_LDFLAGS="$LDFLAGS" @@ -18593,13 +18594,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}:18596: testing ... testing $cf_cv_library_path_gnutls ..." 1>&5 +echo "${as_me:-configure}:18597: 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 18602 "configure" +#line 18603 "configure" #include "confdefs.h" #include <stdio.h> @@ -18628,21 +18629,21 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:18631: \"$ac_link\"") >&5 +if { (eval echo "$as_me:18632: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:18634: \$? = $ac_status" >&5 + echo "$as_me:18635: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:18637: \"$ac_try\"") >&5 + { (eval echo "$as_me:18638: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:18640: \$? = $ac_status" >&5 + echo "$as_me:18641: \$? = $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}:18645: testing ... found gnutls library in $cf_cv_library_path_gnutls ..." 1>&5 +echo "${as_me:-configure}:18646: testing ... found gnutls library in $cf_cv_library_path_gnutls ..." 1>&5 cf_cv_find_linkage_gnutls=yes cf_cv_library_file_gnutls="-lgnutls" @@ -18722,7 +18723,7 @@ if test -n "$cf_cv_header_path_gnutls" ; then CPPFLAGS="${CPPFLAGS}-I$cf_add_incdir" cat >"conftest.$ac_ext" <<_ACEOF -#line 18725 "configure" +#line 18726 "configure" #include "confdefs.h" #include <stdio.h> int @@ -18734,16 +18735,16 @@ printf("Hello") } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:18737: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:18738: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:18740: \$? = $ac_status" >&5 + echo "$as_me:18741: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:18743: \"$ac_try\"") >&5 + { (eval echo "$as_me:18744: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:18746: \$? = $ac_status" >&5 + echo "$as_me:18747: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then : else @@ -18760,7 +18761,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}:18763: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:18764: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -18801,7 +18802,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}:18804: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:18805: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -18830,13 +18831,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:18833: checking for $ac_func" >&5 +echo "$as_me:18834: 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 18839 "configure" +#line 18840 "configure" #include "confdefs.h" #define $ac_func autoconf_temporary #include <limits.h> /* least-intrusive standard header which defines gcc2 __stub macros */ @@ -18867,16 +18868,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:18870: \"$ac_link\"") >&5 +if { (eval echo "$as_me:18871: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:18873: \$? = $ac_status" >&5 + echo "$as_me:18874: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:18876: \"$ac_try\"") >&5 + { (eval echo "$as_me:18877: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:18879: \$? = $ac_status" >&5 + echo "$as_me:18880: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then eval "$as_ac_var=yes" else @@ -18886,7 +18887,7 @@ eval "$as_ac_var=no" fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:18889: result: `eval echo '${'"$as_ac_var"'}'`" >&5 +echo "$as_me:18890: 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 @@ -18896,13 +18897,13 @@ EOF fi done - echo "$as_me:18899: checking for gnutls_rnd" >&5 + echo "$as_me:18900: 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 18905 "configure" +#line 18906 "configure" #include "confdefs.h" #define gnutls_rnd autoconf_temporary #include <limits.h> /* least-intrusive standard header which defines gcc2 __stub macros */ @@ -18933,16 +18934,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:18936: \"$ac_link\"") >&5 +if { (eval echo "$as_me:18937: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:18939: \$? = $ac_status" >&5 + echo "$as_me:18940: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:18942: \"$ac_try\"") >&5 + { (eval echo "$as_me:18943: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:18945: \$? = $ac_status" >&5 + echo "$as_me:18946: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_func_gnutls_rnd=yes else @@ -18952,7 +18953,7 @@ ac_cv_func_gnutls_rnd=no fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:18955: result: $ac_cv_func_gnutls_rnd" >&5 +echo "$as_me:18956: 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 @@ -18982,10 +18983,10 @@ fi EXTRA_OBJS="$EXTRA_OBJS tidy_tls\$o" -echo "$as_me:18985: checking for X509 support" >&5 +echo "$as_me:18986: checking for X509 support" >&5 echo $ECHO_N "checking for X509 support... $ECHO_C" >&6 cat >"conftest.$ac_ext" <<_ACEOF -#line 18988 "configure" +#line 18989 "configure" #include "confdefs.h" #include <stdio.h> @@ -19014,16 +19015,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:19017: \"$ac_link\"") >&5 +if { (eval echo "$as_me:19018: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:19020: \$? = $ac_status" >&5 + echo "$as_me:19021: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:19023: \"$ac_try\"") >&5 + { (eval echo "$as_me:19024: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:19026: \$? = $ac_status" >&5 + echo "$as_me:19027: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_x509_support=yes else @@ -19032,7 +19033,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:19035: result: $cf_x509_support" >&5 +echo "$as_me:19036: result: $cf_x509_support" >&5 echo "${ECHO_T}$cf_x509_support" >&6 if test "$cf_x509_support" = yes ; then @@ -19086,7 +19087,7 @@ if test -n "$cf_searchpath/include" ; then CPPFLAGS="${CPPFLAGS}-I$cf_add_incdir" cat >"conftest.$ac_ext" <<_ACEOF -#line 19089 "configure" +#line 19090 "configure" #include "confdefs.h" #include <stdio.h> int @@ -19098,16 +19099,16 @@ printf("Hello") } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:19101: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:19102: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:19104: \$? = $ac_status" >&5 + echo "$as_me:19105: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:19107: \"$ac_try\"") >&5 + { (eval echo "$as_me:19108: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:19110: \$? = $ac_status" >&5 + echo "$as_me:19111: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then : else @@ -19124,7 +19125,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}:19127: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:19128: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -19170,7 +19171,7 @@ if test -n "$cf_searchpath/../include" ; then CPPFLAGS="${CPPFLAGS}-I$cf_add_incdir" cat >"conftest.$ac_ext" <<_ACEOF -#line 19173 "configure" +#line 19174 "configure" #include "confdefs.h" #include <stdio.h> int @@ -19182,16 +19183,16 @@ printf("Hello") } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:19185: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:19186: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:19188: \$? = $ac_status" >&5 + echo "$as_me:19189: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:19191: \"$ac_try\"") >&5 + { (eval echo "$as_me:19192: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:19194: \$? = $ac_status" >&5 + echo "$as_me:19195: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then : else @@ -19208,7 +19209,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}:19211: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:19212: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -19226,7 +19227,7 @@ echo "${as_me:-configure}:19211: testing adding $cf_add_incdir to include-path . fi else -{ { echo "$as_me:19229: error: cannot find ssl library under $cf_cv_use_libgnutls" >&5 +{ { echo "$as_me:19230: 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 @@ -19251,7 +19252,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}:19254: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:19255: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -19280,7 +19281,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}:19283: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:19284: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -19289,7 +19290,7 @@ echo "${as_me:-configure}:19283: testing adding $cf_add_libdir to library-path . fi else -{ { echo "$as_me:19292: error: cannot find ssl library under $cf_cv_use_libgnutls" >&5 +{ { echo "$as_me:19293: 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 @@ -19307,12 +19308,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}:19310: testing checking pkg-config for $cf_pkg_gnutls ..." 1>&5 +echo "${as_me:-configure}:19311: 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}:19315: testing ... found $cf_pkg_gnutls in pkg-config ..." 1>&5 +echo "${as_me:-configure}:19316: testing ... found $cf_pkg_gnutls in pkg-config ..." 1>&5 cf_cv_have_gnutls=yes cf_cv_pkg_config_ssl=yes @@ -19444,7 +19445,7 @@ fi esac test -n "$verbose" && echo " adding $cf_libs_ssl to LIBS" 1>&6 -echo "${as_me:-configure}:19447: testing adding $cf_libs_ssl to LIBS ..." 1>&5 +echo "${as_me:-configure}:19448: testing adding $cf_libs_ssl to LIBS ..." 1>&5 cf_add_libs="$LIBS" # reverse order @@ -19466,7 +19467,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}:19469: testing ... did not find $cf_pkg_gnutls in pkg-config ..." 1>&5 +echo "${as_me:-configure}:19470: testing ... did not find $cf_pkg_gnutls in pkg-config ..." 1>&5 cf_pkg_gnutls=none fi @@ -19486,12 +19487,12 @@ EOF cf_cv_header_path_gnutls= cf_cv_library_path_gnutls= -echo "${as_me:-configure}:19489: testing Starting FIND_LINKAGE(gnutls,) ..." 1>&5 +echo "${as_me:-configure}:19490: testing Starting FIND_LINKAGE(gnutls,) ..." 1>&5 cf_save_LIBS="$LIBS" cat >"conftest.$ac_ext" <<_ACEOF -#line 19494 "configure" +#line 19495 "configure" #include "confdefs.h" #include <stdio.h> @@ -19520,16 +19521,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:19523: \"$ac_link\"") >&5 +if { (eval echo "$as_me:19524: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:19526: \$? = $ac_status" >&5 + echo "$as_me:19527: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:19529: \"$ac_try\"") >&5 + { (eval echo "$as_me:19530: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:19532: \$? = $ac_status" >&5 + echo "$as_me:19533: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_find_linkage_gnutls=yes @@ -19543,7 +19544,7 @@ cat "conftest.$ac_ext" >&5 LIBS="-lgnutls -lgnutls-openssl $cf_save_LIBS" cat >"conftest.$ac_ext" <<_ACEOF -#line 19546 "configure" +#line 19547 "configure" #include "confdefs.h" #include <stdio.h> @@ -19572,16 +19573,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:19575: \"$ac_link\"") >&5 +if { (eval echo "$as_me:19576: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:19578: \$? = $ac_status" >&5 + echo "$as_me:19579: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:19581: \"$ac_try\"") >&5 + { (eval echo "$as_me:19582: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:19584: \$? = $ac_status" >&5 + echo "$as_me:19585: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_find_linkage_gnutls=yes @@ -19598,9 +19599,9 @@ cat "conftest.$ac_ext" >&5 test -n "$verbose" && echo " find linkage for gnutls library" 1>&6 -echo "${as_me:-configure}:19601: testing find linkage for gnutls library ..." 1>&5 +echo "${as_me:-configure}:19602: testing find linkage for gnutls library ..." 1>&5 -echo "${as_me:-configure}:19603: testing Searching for headers in FIND_LINKAGE(gnutls,) ..." 1>&5 +echo "${as_me:-configure}:19604: testing Searching for headers in FIND_LINKAGE(gnutls,) ..." 1>&5 cf_save_CPPFLAGS="$CPPFLAGS" cf_test_CPPFLAGS="$CPPFLAGS" @@ -19691,7 +19692,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}:19694: testing ... testing $cf_cv_header_path_gnutls ..." 1>&5 +echo "${as_me:-configure}:19695: testing ... testing $cf_cv_header_path_gnutls ..." 1>&5 CPPFLAGS="$cf_save_CPPFLAGS" @@ -19699,7 +19700,7 @@ echo "${as_me:-configure}:19694: testing ... testing $cf_cv_header_path_gnutls . CPPFLAGS="${CPPFLAGS}-I$cf_cv_header_path_gnutls" cat >"conftest.$ac_ext" <<_ACEOF -#line 19702 "configure" +#line 19703 "configure" #include "confdefs.h" #include <stdio.h> @@ -19728,21 +19729,21 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:19731: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:19732: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:19734: \$? = $ac_status" >&5 + echo "$as_me:19735: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:19737: \"$ac_try\"") >&5 + { (eval echo "$as_me:19738: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:19740: \$? = $ac_status" >&5 + echo "$as_me:19741: \$? = $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}:19745: testing ... found gnutls headers in $cf_cv_header_path_gnutls ..." 1>&5 +echo "${as_me:-configure}:19746: testing ... found gnutls headers in $cf_cv_header_path_gnutls ..." 1>&5 cf_cv_find_linkage_gnutls=maybe cf_test_CPPFLAGS="$CPPFLAGS" @@ -19760,7 +19761,7 @@ rm -f "conftest.$ac_objext" "conftest.$ac_ext" if test "$cf_cv_find_linkage_gnutls" = maybe ; then -echo "${as_me:-configure}:19763: testing Searching for gnutls library in FIND_LINKAGE(gnutls,) ..." 1>&5 +echo "${as_me:-configure}:19764: testing Searching for gnutls library in FIND_LINKAGE(gnutls,) ..." 1>&5 cf_save_LIBS="$LIBS" cf_save_LDFLAGS="$LDFLAGS" @@ -19835,13 +19836,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}:19838: testing ... testing $cf_cv_library_path_gnutls ..." 1>&5 +echo "${as_me:-configure}:19839: 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 19844 "configure" +#line 19845 "configure" #include "confdefs.h" #include <stdio.h> @@ -19870,21 +19871,21 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:19873: \"$ac_link\"") >&5 +if { (eval echo "$as_me:19874: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:19876: \$? = $ac_status" >&5 + echo "$as_me:19877: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:19879: \"$ac_try\"") >&5 + { (eval echo "$as_me:19880: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:19882: \$? = $ac_status" >&5 + echo "$as_me:19883: \$? = $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}:19887: testing ... found gnutls library in $cf_cv_library_path_gnutls ..." 1>&5 +echo "${as_me:-configure}:19888: testing ... found gnutls library in $cf_cv_library_path_gnutls ..." 1>&5 cf_cv_find_linkage_gnutls=yes cf_cv_library_file_gnutls="-lgnutls" @@ -19964,7 +19965,7 @@ if test -n "$cf_cv_header_path_gnutls" ; then CPPFLAGS="${CPPFLAGS}-I$cf_add_incdir" cat >"conftest.$ac_ext" <<_ACEOF -#line 19967 "configure" +#line 19968 "configure" #include "confdefs.h" #include <stdio.h> int @@ -19976,16 +19977,16 @@ printf("Hello") } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:19979: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:19980: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:19982: \$? = $ac_status" >&5 + echo "$as_me:19983: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:19985: \"$ac_try\"") >&5 + { (eval echo "$as_me:19986: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:19988: \$? = $ac_status" >&5 + echo "$as_me:19989: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then : else @@ -20002,7 +20003,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}:20005: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:20006: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -20043,7 +20044,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}:20046: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:20047: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -20072,13 +20073,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:20075: checking for $ac_func" >&5 +echo "$as_me:20076: 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 20081 "configure" +#line 20082 "configure" #include "confdefs.h" #define $ac_func autoconf_temporary #include <limits.h> /* least-intrusive standard header which defines gcc2 __stub macros */ @@ -20109,16 +20110,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:20112: \"$ac_link\"") >&5 +if { (eval echo "$as_me:20113: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:20115: \$? = $ac_status" >&5 + echo "$as_me:20116: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:20118: \"$ac_try\"") >&5 + { (eval echo "$as_me:20119: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:20121: \$? = $ac_status" >&5 + echo "$as_me:20122: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then eval "$as_ac_var=yes" else @@ -20128,7 +20129,7 @@ eval "$as_ac_var=no" fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:20131: result: `eval echo '${'"$as_ac_var"'}'`" >&5 +echo "$as_me:20132: 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 @@ -20138,13 +20139,13 @@ EOF fi done - echo "$as_me:20141: checking for gnutls_rnd" >&5 + echo "$as_me:20142: 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 20147 "configure" +#line 20148 "configure" #include "confdefs.h" #define gnutls_rnd autoconf_temporary #include <limits.h> /* least-intrusive standard header which defines gcc2 __stub macros */ @@ -20175,16 +20176,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:20178: \"$ac_link\"") >&5 +if { (eval echo "$as_me:20179: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:20181: \$? = $ac_status" >&5 + echo "$as_me:20182: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:20184: \"$ac_try\"") >&5 + { (eval echo "$as_me:20185: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:20187: \$? = $ac_status" >&5 + echo "$as_me:20188: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_func_gnutls_rnd=yes else @@ -20194,7 +20195,7 @@ ac_cv_func_gnutls_rnd=no fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:20197: result: $ac_cv_func_gnutls_rnd" >&5 +echo "$as_me:20198: 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 @@ -20223,7 +20224,7 @@ LIBS="$cf_add_libs" fi if test "$cf_pkg_gnutls" = none ; then - echo "$as_me:20226: checking for SSL_connect in -lgnutls-openssl" >&5 + echo "$as_me:20227: 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 @@ -20231,7 +20232,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lgnutls-openssl $LIBS" cat >"conftest.$ac_ext" <<_ACEOF -#line 20234 "configure" +#line 20235 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -20250,16 +20251,16 @@ SSL_connect (); } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:20253: \"$ac_link\"") >&5 +if { (eval echo "$as_me:20254: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:20256: \$? = $ac_status" >&5 + echo "$as_me:20257: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:20259: \"$ac_try\"") >&5 + { (eval echo "$as_me:20260: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:20262: \$? = $ac_status" >&5 + echo "$as_me:20263: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_lib_gnutls_openssl_SSL_connect=yes else @@ -20270,7 +20271,7 @@ fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:20273: result: $ac_cv_lib_gnutls_openssl_SSL_connect" >&5 +echo "$as_me:20274: 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 @@ -20291,7 +20292,7 @@ done LIBS="$cf_add_libs" else - echo "$as_me:20294: checking for SSL_connect in -lgnutls-extra" >&5 + echo "$as_me:20295: 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 @@ -20299,7 +20300,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lgnutls-extra $LIBS" cat >"conftest.$ac_ext" <<_ACEOF -#line 20302 "configure" +#line 20303 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -20318,16 +20319,16 @@ SSL_connect (); } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:20321: \"$ac_link\"") >&5 +if { (eval echo "$as_me:20322: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:20324: \$? = $ac_status" >&5 + echo "$as_me:20325: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:20327: \"$ac_try\"") >&5 + { (eval echo "$as_me:20328: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:20330: \$? = $ac_status" >&5 + echo "$as_me:20331: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_lib_gnutls_extra_SSL_connect=yes else @@ -20338,7 +20339,7 @@ fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:20341: result: $ac_cv_lib_gnutls_extra_SSL_connect" >&5 +echo "$as_me:20342: 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 @@ -20359,7 +20360,7 @@ done LIBS="$cf_add_libs" else - { { echo "$as_me:20362: error: cannot find gnutls openssl functions" >&5 + { { echo "$as_me:20363: error: cannot find gnutls openssl functions" >&5 echo "$as_me: error: cannot find gnutls openssl functions" >&2;} { (exit 1); exit 1; }; } fi @@ -20368,10 +20369,10 @@ fi fi -echo "$as_me:20371: checking for X509 support" >&5 +echo "$as_me:20372: checking for X509 support" >&5 echo $ECHO_N "checking for X509 support... $ECHO_C" >&6 cat >"conftest.$ac_ext" <<_ACEOF -#line 20374 "configure" +#line 20375 "configure" #include "confdefs.h" #include <stdio.h> @@ -20400,16 +20401,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:20403: \"$ac_link\"") >&5 +if { (eval echo "$as_me:20404: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:20406: \$? = $ac_status" >&5 + echo "$as_me:20407: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:20409: \"$ac_try\"") >&5 + { (eval echo "$as_me:20410: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:20412: \$? = $ac_status" >&5 + echo "$as_me:20413: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_x509_support=yes else @@ -20418,7 +20419,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:20421: result: $cf_x509_support" >&5 +echo "$as_me:20422: result: $cf_x509_support" >&5 echo "${ECHO_T}$cf_x509_support" >&6 if test "$cf_x509_support" = yes ; then @@ -20450,7 +20451,7 @@ case "$cf_cv_use_libnss_compat" in ;; (yes) -echo "$as_me:20453: checking for SSL_get_version in -lnss_compat_ossl" >&5 +echo "$as_me:20454: 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 @@ -20458,7 +20459,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lnss_compat_ossl -lnss_compat_ossl $LIBS" cat >"conftest.$ac_ext" <<_ACEOF -#line 20461 "configure" +#line 20462 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -20477,16 +20478,16 @@ SSL_get_version (); } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:20480: \"$ac_link\"") >&5 +if { (eval echo "$as_me:20481: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:20483: \$? = $ac_status" >&5 + echo "$as_me:20484: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:20486: \"$ac_try\"") >&5 + { (eval echo "$as_me:20487: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:20489: \$? = $ac_status" >&5 + echo "$as_me:20490: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_lib_nss_compat_ossl_SSL_get_version=yes else @@ -20497,7 +20498,7 @@ fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:20500: result: $ac_cv_lib_nss_compat_ossl_SSL_get_version" >&5 +echo "$as_me:20501: 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 @@ -20512,11 +20513,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}:20515: testing assume it is in $cf_ssl_root ..." 1>&5 +echo "${as_me:-configure}:20516: 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:20519: error: cannot find NSS compliant libraries" >&5 + { { echo "$as_me:20520: error: cannot find NSS compliant libraries" >&5 echo "$as_me: error: cannot find NSS compliant libraries" >&2;} { (exit 1); exit 1; }; } fi @@ -20531,13 +20532,13 @@ fi elif test -d "$cf_cv_use_libnss_compat/../include" ; then cf_ssl_root=$cf_cv_use_libnss_compat/.. else - { { echo "$as_me:20534: error: cannot find NSS compliant library under $cf_cv_use_libnss_compat" >&5 + { { echo "$as_me:20535: 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:20540: WARNING: expected a directory: $cf_cv_use_libnss_compat" >&5 + { echo "$as_me:20541: WARNING: expected a directory: $cf_cv_use_libnss_compat" >&5 echo "$as_me: WARNING: expected a directory: $cf_cv_use_libnss_compat" >&2;} fi ;; @@ -20666,10 +20667,10 @@ if test -n "$cf_new_extra_cppflags" ; then fi if test "$cf_ssl_subincs" = yes ; then -echo "$as_me:20669: checking for NSS compliant include directory" >&5 +echo "$as_me:20670: 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 20672 "configure" +#line 20673 "configure" #include "confdefs.h" #include <stdio.h> @@ -20683,16 +20684,16 @@ SSL_shutdown((SSL *)0) } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:20686: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:20687: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:20689: \$? = $ac_status" >&5 + echo "$as_me:20690: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:20692: \"$ac_try\"") >&5 + { (eval echo "$as_me:20693: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:20695: \$? = $ac_status" >&5 + echo "$as_me:20696: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_ssl_incl=yes else @@ -20701,7 +20702,7 @@ cat "conftest.$ac_ext" >&5 cf_ssl_incl=no fi rm -f "conftest.$ac_objext" "conftest.$ac_ext" -echo "$as_me:20704: result: $cf_ssl_incl" >&5 +echo "$as_me:20705: result: $cf_ssl_incl" >&5 echo "${ECHO_T}$cf_ssl_incl" >&6 test "$cf_ssl_incl" = yes && cat >>confdefs.h <<\EOF @@ -20710,10 +20711,10 @@ EOF fi -echo "$as_me:20713: checking if we can link to NSS compliant library" >&5 +echo "$as_me:20714: 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 20716 "configure" +#line 20717 "configure" #include "confdefs.h" #include <stdio.h> @@ -20732,16 +20733,16 @@ SSL_shutdown((SSL *)0) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:20735: \"$ac_link\"") >&5 +if { (eval echo "$as_me:20736: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:20738: \$? = $ac_status" >&5 + echo "$as_me:20739: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:20741: \"$ac_try\"") >&5 + { (eval echo "$as_me:20742: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:20744: \$? = $ac_status" >&5 + echo "$as_me:20745: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_ssl_library=yes else @@ -20750,7 +20751,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:20753: result: $cf_ssl_library" >&5 +echo "$as_me:20754: result: $cf_ssl_library" >&5 echo "${ECHO_T}$cf_ssl_library" >&6 if test "$cf_ssl_library" = yes ; then @@ -20763,7 +20764,7 @@ cat >>confdefs.h <<\EOF EOF else - { { echo "$as_me:20766: error: Cannot link with NSS compliant libraries" >&5 + { { echo "$as_me:20767: error: Cannot link with NSS compliant libraries" >&5 echo "$as_me: error: Cannot link with NSS compliant libraries" >&2;} { (exit 1); exit 1; }; } fi @@ -20771,7 +20772,7 @@ fi fi ### check for ipv6 support -echo "$as_me:20774: checking whether to enable ipv6" >&5 +echo "$as_me:20775: 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. @@ -20788,11 +20789,11 @@ EOF else enableval=no fi; -echo "$as_me:20791: result: $enableval" >&5 +echo "$as_me:20792: result: $enableval" >&5 echo "${ECHO_T}$enableval" >&6 if test "$enableval" = "yes"; then -echo "$as_me:20795: checking ipv6 stack type" >&5 +echo "$as_me:20796: 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 @@ -20813,7 +20814,7 @@ do ;; (inria) cat >"conftest.$ac_ext" <<_ACEOF -#line 20816 "configure" +#line 20817 "configure" #include "confdefs.h" #include <netinet/in.h> @@ -20830,7 +20831,7 @@ rm -rf conftest* ;; (kame) cat >"conftest.$ac_ext" <<_ACEOF -#line 20833 "configure" +#line 20834 "configure" #include "confdefs.h" #include <netinet/in.h> @@ -20847,7 +20848,7 @@ rm -rf conftest* ;; (linux-glibc) cat >"conftest.$ac_ext" <<_ACEOF -#line 20850 "configure" +#line 20851 "configure" #include "confdefs.h" #include <features.h> @@ -20873,7 +20874,7 @@ rm -rf conftest* ;; (toshiba) cat >"conftest.$ac_ext" <<_ACEOF -#line 20876 "configure" +#line 20877 "configure" #include "confdefs.h" #include <sys/param.h> @@ -20890,7 +20891,7 @@ rm -rf conftest* ;; (v6d) cat >"conftest.$ac_ext" <<_ACEOF -#line 20893 "configure" +#line 20894 "configure" #include "confdefs.h" #include </usr/local/v6/include/sys/v6config.h> @@ -20907,7 +20908,7 @@ rm -rf conftest* ;; (zeta) cat >"conftest.$ac_ext" <<_ACEOF -#line 20910 "configure" +#line 20911 "configure" #include "confdefs.h" #include <sys/param.h> @@ -20929,13 +20930,13 @@ rm -rf conftest* done fi -echo "$as_me:20932: result: $cf_cv_ipv6type" >&5 +echo "$as_me:20933: result: $cf_cv_ipv6type" >&5 echo "${ECHO_T}$cf_cv_ipv6type" >&6 cf_ipv6lib=none cf_ipv6dir=none -echo "$as_me:20938: checking for IPv6 library if required" >&5 +echo "$as_me:20939: 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) @@ -20965,13 +20966,13 @@ case "$cf_cv_ipv6type" in cf_ipv6dir=v6 ;; esac -echo "$as_me:20968: result: $cf_ipv6lib" >&5 +echo "$as_me:20969: result: $cf_ipv6lib" >&5 echo "${ECHO_T}$cf_ipv6lib" >&6 if test "$cf_ipv6lib" != "none"; then cat >"conftest.$ac_ext" <<_ACEOF -#line 20974 "configure" +#line 20975 "configure" #include "confdefs.h" #include <sys/types.h> @@ -20987,16 +20988,16 @@ getaddrinfo(0, 0, 0, 0) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:20990: \"$ac_link\"") >&5 +if { (eval echo "$as_me:20991: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:20993: \$? = $ac_status" >&5 + echo "$as_me:20994: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:20996: \"$ac_try\"") >&5 + { (eval echo "$as_me:20997: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:20999: \$? = $ac_status" >&5 + echo "$as_me:21000: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then : else @@ -21117,7 +21118,7 @@ if test -n "$cf_incdir" ; then CPPFLAGS="${CPPFLAGS}-I$cf_add_incdir" cat >"conftest.$ac_ext" <<_ACEOF -#line 21120 "configure" +#line 21121 "configure" #include "confdefs.h" #include <stdio.h> int @@ -21129,16 +21130,16 @@ printf("Hello") } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:21132: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:21133: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:21135: \$? = $ac_status" >&5 + echo "$as_me:21136: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:21138: \"$ac_try\"") >&5 + { (eval echo "$as_me:21139: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:21141: \$? = $ac_status" >&5 + echo "$as_me:21142: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then : else @@ -21155,7 +21156,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}:21158: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:21159: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -21183,13 +21184,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:21186: checking for getaddrinfo" >&5 + echo "$as_me:21187: 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 21192 "configure" +#line 21193 "configure" #include "confdefs.h" #define getaddrinfo autoconf_temporary #include <limits.h> /* least-intrusive standard header which defines gcc2 __stub macros */ @@ -21220,16 +21221,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:21223: \"$ac_link\"") >&5 +if { (eval echo "$as_me:21224: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:21226: \$? = $ac_status" >&5 + echo "$as_me:21227: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:21229: \"$ac_try\"") >&5 + { (eval echo "$as_me:21230: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:21232: \$? = $ac_status" >&5 + echo "$as_me:21233: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_func_getaddrinfo=yes else @@ -21239,18 +21240,18 @@ ac_cv_func_getaddrinfo=no fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:21242: result: $ac_cv_func_getaddrinfo" >&5 +echo "$as_me:21243: 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:21249: checking for getaddrinfo in -l$cf_ipv6lib" >&5 + echo "$as_me:21250: 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 21253 "configure" +#line 21254 "configure" #include "confdefs.h" #include <sys/types.h> @@ -21266,25 +21267,25 @@ getaddrinfo(0, 0, 0, 0) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:21269: \"$ac_link\"") >&5 +if { (eval echo "$as_me:21270: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:21272: \$? = $ac_status" >&5 + echo "$as_me:21273: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:21275: \"$ac_try\"") >&5 + { (eval echo "$as_me:21276: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:21278: \$? = $ac_status" >&5 + echo "$as_me:21279: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then - echo "$as_me:21280: result: yes" >&5 + echo "$as_me:21281: 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:21287: result: no" >&5 +echo "$as_me:21288: result: no" >&5 echo "${ECHO_T}no" >&6 cf_search= @@ -21352,11 +21353,11 @@ cf_search="$cf_library_path_list $cf_search" for cf_libdir in $cf_search do - echo "$as_me:21355: checking for -l$cf_ipv6lib in $cf_libdir" >&5 + echo "$as_me:21356: 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 21359 "configure" +#line 21360 "configure" #include "confdefs.h" #include <sys/types.h> @@ -21372,25 +21373,25 @@ getaddrinfo(0, 0, 0, 0) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:21375: \"$ac_link\"") >&5 +if { (eval echo "$as_me:21376: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:21378: \$? = $ac_status" >&5 + echo "$as_me:21379: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:21381: \"$ac_try\"") >&5 + { (eval echo "$as_me:21382: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:21384: \$? = $ac_status" >&5 + echo "$as_me:21385: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then - echo "$as_me:21386: result: yes" >&5 + echo "$as_me:21387: 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:21393: result: no" >&5 +echo "$as_me:21394: result: no" >&5 echo "${ECHO_T}no" >&6 LIBS="$cf_save_LIBS" fi @@ -21405,7 +21406,7 @@ fi eval 'cf_found_library="$cf_cv_have_lib_'"$cf_ipv6lib"\" if test "$cf_found_library" = no ; then - { { echo "$as_me:21408: error: No $cf_ipv6lib library found, cannot continue. You must fetch lib$cf_ipv6lib.a + { { echo "$as_me:21409: 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;} @@ -21413,7 +21414,7 @@ from an appropriate IPv6 kit and compile beforehand." >&2;} fi fi -echo "$as_me:21416: checking working getaddrinfo" >&5 +echo "$as_me:21417: 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 @@ -21423,7 +21424,7 @@ if test "$cross_compiling" = yes; then cf_cv_getaddrinfo=unknown else cat >"conftest.$ac_ext" <<_ACEOF -#line 21426 "configure" +#line 21427 "configure" #include "confdefs.h" #include <sys/types.h> @@ -21503,15 +21504,15 @@ int main(void) _ACEOF rm -f "conftest$ac_exeext" -if { (eval echo "$as_me:21506: \"$ac_link\"") >&5 +if { (eval echo "$as_me:21507: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:21509: \$? = $ac_status" >&5 + echo "$as_me:21510: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='"./conftest$ac_exeext"' - { (eval echo "$as_me:21511: \"$ac_try\"") >&5 + { (eval echo "$as_me:21512: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:21514: \$? = $ac_status" >&5 + echo "$as_me:21515: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_getaddrinfo=yes else @@ -21524,7 +21525,7 @@ rm -f core ./core.* ./*.core "conftest$ac_exeext" "conftest.$ac_objext" "conftes fi fi -echo "$as_me:21527: result: $cf_cv_getaddrinfo" >&5 +echo "$as_me:21528: result: $cf_cv_getaddrinfo" >&5 echo "${ECHO_T}$cf_cv_getaddrinfo" >&6 if test "$cf_cv_getaddrinfo" = yes ; then @@ -21540,12 +21541,12 @@ fi if test "$cf_cv_getaddrinfo" != "yes"; then if test "$cf_cv_ipv6type" != "linux"; then - { echo "$as_me:21543: WARNING: You must get working getaddrinfo() function, + { echo "$as_me:21544: 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:21548: WARNING: The getaddrinfo() implementation on your system seems be buggy. + { echo "$as_me:21549: 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. @@ -21556,7 +21557,7 @@ fi fi -echo "$as_me:21559: checking for screen type" >&5 +echo "$as_me:21560: 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 @@ -21570,7 +21571,7 @@ case "$withval" in (curses|ncurses*|pdcurses|slang) cf_cv_screen=$withval ;; -(*) { { echo "$as_me:21573: error: Unexpected value $withval" >&5 +(*) { { echo "$as_me:21574: error: Unexpected value $withval" >&5 echo "$as_me: error: Unexpected value $withval" >&2;} { (exit 1); exit 1; }; } ;; @@ -21579,13 +21580,13 @@ else cf_cv_screen=curses fi; fi -echo "$as_me:21582: result: $cf_cv_screen" >&5 +echo "$as_me:21583: result: $cf_cv_screen" >&5 echo "${ECHO_T}$cf_cv_screen" >&6 case "$cf_cv_screen" in (curses|ncurses*) -echo "$as_me:21588: checking for specific curses-directory" >&5 +echo "$as_me:21589: 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. @@ -21595,7 +21596,7 @@ if test "${with_curses_dir+set}" = set; then else cf_cv_curses_dir=no fi; -echo "$as_me:21598: result: $cf_cv_curses_dir" >&5 +echo "$as_me:21599: 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" @@ -21626,7 +21627,7 @@ case ".$withval" in withval=`echo "$withval" | sed -e s%NONE%$cf_path_syntax%` ;; (*) - { { echo "$as_me:21629: error: expected a pathname, not \"$withval\"" >&5 + { { echo "$as_me:21630: error: expected a pathname, not \"$withval\"" >&5 echo "$as_me: error: expected a pathname, not \"$withval\"" >&2;} { (exit 1); exit 1; }; } ;; @@ -21662,7 +21663,7 @@ if test -n "$cf_cv_curses_dir/include" ; then CPPFLAGS="${CPPFLAGS}-I$cf_add_incdir" cat >"conftest.$ac_ext" <<_ACEOF -#line 21665 "configure" +#line 21666 "configure" #include "confdefs.h" #include <stdio.h> int @@ -21674,16 +21675,16 @@ printf("Hello") } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:21677: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:21678: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:21680: \$? = $ac_status" >&5 + echo "$as_me:21681: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:21683: \"$ac_try\"") >&5 + { (eval echo "$as_me:21684: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:21686: \$? = $ac_status" >&5 + echo "$as_me:21687: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then : else @@ -21700,7 +21701,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}:21703: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:21704: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -21736,7 +21737,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}:21739: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:21740: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -21755,7 +21756,7 @@ dft_color_style=yes case "$cf_cv_screen" in (curses) -echo "$as_me:21758: checking for extra include directories" >&5 +echo "$as_me:21759: 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 @@ -21781,7 +21782,7 @@ case "$host_os" in esac fi -echo "$as_me:21784: result: $cf_cv_curses_incdir" >&5 +echo "$as_me:21785: result: $cf_cv_curses_incdir" >&5 echo "${ECHO_T}$cf_cv_curses_incdir" >&6 if test "$cf_cv_curses_incdir" != no then @@ -21791,7 +21792,7 @@ then fi -echo "$as_me:21794: checking if we have identified curses headers" >&5 +echo "$as_me:21795: 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 @@ -21803,7 +21804,7 @@ for cf_header in \ curses.h ncurses/ncurses.h ncurses/curses.h do cat >"conftest.$ac_ext" <<_ACEOF -#line 21806 "configure" +#line 21807 "configure" #include "confdefs.h" #include <${cf_header}> int @@ -21815,16 +21816,16 @@ initscr(); endwin() } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:21818: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:21819: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:21821: \$? = $ac_status" >&5 + echo "$as_me:21822: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:21824: \"$ac_try\"") >&5 + { (eval echo "$as_me:21825: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:21827: \$? = $ac_status" >&5 + echo "$as_me:21828: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_ncurses_header=$cf_header; break else @@ -21835,11 +21836,11 @@ rm -f "conftest.$ac_objext" "conftest.$ac_ext" done fi -echo "$as_me:21838: result: $cf_cv_ncurses_header" >&5 +echo "$as_me:21839: 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:21842: error: No curses header-files found" >&5 + { { echo "$as_me:21843: error: No curses header-files found" >&5 echo "$as_me: error: No curses header-files found" >&2;} { (exit 1); exit 1; }; } fi @@ -21849,23 +21850,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:21852: checking for $ac_header" >&5 +echo "$as_me:21853: 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 21858 "configure" +#line 21859 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:21862: \"$ac_cpp "conftest.$ac_ext"\"") >&5 +if { (eval echo "$as_me:21863: \"$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:21868: \$? = $ac_status" >&5 + echo "$as_me:21869: \$? = $ac_status" >&5 (exit "$ac_status"); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -21884,7 +21885,7 @@ else fi rm -f conftest.err "conftest.$ac_ext" fi -echo "$as_me:21887: result: `eval echo '${'"$as_ac_Header"'}'`" >&5 +echo "$as_me:21888: 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 @@ -21894,7 +21895,7 @@ EOF fi done -echo "$as_me:21897: checking for terminfo header" >&5 +echo "$as_me:21898: 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 @@ -21912,7 +21913,7 @@ esac for cf_test in $cf_term_header "ncurses/term.h" "ncursesw/term.h" do cat >"conftest.$ac_ext" <<_ACEOF -#line 21915 "configure" +#line 21916 "configure" #include "confdefs.h" #include <stdio.h> #include <${cf_cv_ncurses_header:-curses.h}> @@ -21927,16 +21928,16 @@ int x = auto_left_margin; (void)x } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:21930: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:21931: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:21933: \$? = $ac_status" >&5 + echo "$as_me:21934: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:21936: \"$ac_try\"") >&5 + { (eval echo "$as_me:21937: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:21939: \$? = $ac_status" >&5 + echo "$as_me:21940: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_term_header="$cf_test" @@ -21952,7 +21953,7 @@ rm -f "conftest.$ac_objext" "conftest.$ac_ext" done fi -echo "$as_me:21955: result: $cf_cv_term_header" >&5 +echo "$as_me:21956: result: $cf_cv_term_header" >&5 echo "${ECHO_T}$cf_cv_term_header" >&6 # Set definitions to allow ifdef'ing to accommodate subdirectories @@ -21984,7 +21985,7 @@ EOF ;; esac -echo "$as_me:21987: checking for ncurses version" >&5 +echo "$as_me:21988: 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 @@ -22010,10 +22011,10 @@ Autoconf "old" #endif EOF cf_try="$ac_cpp conftest.$ac_ext 2>&5 | grep '^Autoconf ' >conftest.out" - { (eval echo "$as_me:22013: \"$cf_try\"") >&5 + { (eval echo "$as_me:22014: \"$cf_try\"") >&5 (eval $cf_try) 2>&5 ac_status=$? - echo "$as_me:22016: \$? = $ac_status" >&5 + echo "$as_me:22017: \$? = $ac_status" >&5 (exit "$ac_status"); } if test -f conftest.out ; then cf_out=`sed -e 's%^Autoconf %%' -e 's%^[^"]*"%%' -e 's%".*%%' conftest.out` @@ -22023,7 +22024,7 @@ EOF else cat >"conftest.$ac_ext" <<_ACEOF -#line 22026 "configure" +#line 22027 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> @@ -22048,15 +22049,15 @@ int main(void) } _ACEOF rm -f "conftest$ac_exeext" -if { (eval echo "$as_me:22051: \"$ac_link\"") >&5 +if { (eval echo "$as_me:22052: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:22054: \$? = $ac_status" >&5 + echo "$as_me:22055: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='"./conftest$ac_exeext"' - { (eval echo "$as_me:22056: \"$ac_try\"") >&5 + { (eval echo "$as_me:22057: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:22059: \$? = $ac_status" >&5 + echo "$as_me:22060: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_ncurses_version=`cat $cf_tempfile` @@ -22070,17 +22071,17 @@ fi rm -f "$cf_tempfile" fi -echo "$as_me:22073: result: $cf_cv_ncurses_version" >&5 +echo "$as_me:22074: 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:22080: checking if we have identified curses libraries" >&5 +echo "$as_me:22081: 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 22083 "configure" +#line 22084 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> int @@ -22092,16 +22093,16 @@ initscr(); endwin() } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:22095: \"$ac_link\"") >&5 +if { (eval echo "$as_me:22096: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:22098: \$? = $ac_status" >&5 + echo "$as_me:22099: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:22101: \"$ac_try\"") >&5 + { (eval echo "$as_me:22102: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:22104: \$? = $ac_status" >&5 + echo "$as_me:22105: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_result=yes else @@ -22110,13 +22111,13 @@ cat "conftest.$ac_ext" >&5 cf_result=no fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" -echo "$as_me:22113: result: $cf_result" >&5 +echo "$as_me:22114: result: $cf_result" >&5 echo "${ECHO_T}$cf_result" >&6 if test "$cf_result" = no ; then case "$host_os" in (freebsd*) - echo "$as_me:22119: checking for tgoto in -lmytinfo" >&5 + echo "$as_me:22120: 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 @@ -22124,7 +22125,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lmytinfo $LIBS" cat >"conftest.$ac_ext" <<_ACEOF -#line 22127 "configure" +#line 22128 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -22143,16 +22144,16 @@ tgoto (); } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:22146: \"$ac_link\"") >&5 +if { (eval echo "$as_me:22147: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:22149: \$? = $ac_status" >&5 + echo "$as_me:22150: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:22152: \"$ac_try\"") >&5 + { (eval echo "$as_me:22153: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:22155: \$? = $ac_status" >&5 + echo "$as_me:22156: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_lib_mytinfo_tgoto=yes else @@ -22163,7 +22164,7 @@ fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:22166: result: $ac_cv_lib_mytinfo_tgoto" >&5 +echo "$as_me:22167: 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 @@ -22193,7 +22194,7 @@ fi # term.h) for cur_colr if test "x$cf_cv_screen" = "xcurses_colr" then - echo "$as_me:22196: checking for initscr in -lcur_colr" >&5 + echo "$as_me:22197: 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 @@ -22201,7 +22202,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lcur_colr $LIBS" cat >"conftest.$ac_ext" <<_ACEOF -#line 22204 "configure" +#line 22205 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -22220,16 +22221,16 @@ initscr (); } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:22223: \"$ac_link\"") >&5 +if { (eval echo "$as_me:22224: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:22226: \$? = $ac_status" >&5 + echo "$as_me:22227: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:22229: \"$ac_try\"") >&5 + { (eval echo "$as_me:22230: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:22232: \$? = $ac_status" >&5 + echo "$as_me:22233: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_lib_cur_colr_initscr=yes else @@ -22240,7 +22241,7 @@ fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:22243: result: $ac_cv_lib_cur_colr_initscr" >&5 +echo "$as_me:22244: 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 @@ -22264,7 +22265,7 @@ LIBS="$cf_add_libs" else - echo "$as_me:22267: checking for initscr in -lHcurses" >&5 + echo "$as_me:22268: 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 @@ -22272,7 +22273,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lHcurses $LIBS" cat >"conftest.$ac_ext" <<_ACEOF -#line 22275 "configure" +#line 22276 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -22291,16 +22292,16 @@ initscr (); } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:22294: \"$ac_link\"") >&5 +if { (eval echo "$as_me:22295: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:22297: \$? = $ac_status" >&5 + echo "$as_me:22298: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:22300: \"$ac_try\"") >&5 + { (eval echo "$as_me:22301: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:22303: \$? = $ac_status" >&5 + echo "$as_me:22304: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_lib_Hcurses_initscr=yes else @@ -22311,7 +22312,7 @@ fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:22314: result: $ac_cv_lib_Hcurses_initscr" >&5 +echo "$as_me:22315: 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 @@ -22369,7 +22370,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}:22372: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:22373: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -22398,7 +22399,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}:22401: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:22402: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -22429,7 +22430,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}:22432: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:22433: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -22464,7 +22465,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}:22467: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:22468: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -22508,13 +22509,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:22511: checking for tgoto" >&5 + echo "$as_me:22512: 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 22517 "configure" +#line 22518 "configure" #include "confdefs.h" #define tgoto autoconf_temporary #include <limits.h> /* least-intrusive standard header which defines gcc2 __stub macros */ @@ -22545,16 +22546,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:22548: \"$ac_link\"") >&5 +if { (eval echo "$as_me:22549: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:22551: \$? = $ac_status" >&5 + echo "$as_me:22552: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:22554: \"$ac_try\"") >&5 + { (eval echo "$as_me:22555: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:22557: \$? = $ac_status" >&5 + echo "$as_me:22558: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_func_tgoto=yes else @@ -22564,7 +22565,7 @@ ac_cv_func_tgoto=no fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:22567: result: $ac_cv_func_tgoto" >&5 +echo "$as_me:22568: 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 @@ -22573,7 +22574,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:22576: checking for tgoto in -l$cf_term_lib" >&5 +echo "$as_me:22577: 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 @@ -22581,7 +22582,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-l$cf_term_lib $LIBS" cat >"conftest.$ac_ext" <<_ACEOF -#line 22584 "configure" +#line 22585 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -22600,16 +22601,16 @@ tgoto (); } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:22603: \"$ac_link\"") >&5 +if { (eval echo "$as_me:22604: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:22606: \$? = $ac_status" >&5 + echo "$as_me:22607: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:22609: \"$ac_try\"") >&5 + { (eval echo "$as_me:22610: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:22612: \$? = $ac_status" >&5 + echo "$as_me:22613: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then eval "$as_ac_Lib=yes" else @@ -22620,7 +22621,7 @@ fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:22623: result: `eval echo '${'"$as_ac_Lib"'}'`" >&5 +echo "$as_me:22624: 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 @@ -22643,10 +22644,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:22646: checking if we can link with $cf_curs_lib library" >&5 + echo "$as_me:22647: 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 22649 "configure" +#line 22650 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> int @@ -22658,16 +22659,16 @@ initscr() } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:22661: \"$ac_link\"") >&5 +if { (eval echo "$as_me:22662: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:22664: \$? = $ac_status" >&5 + echo "$as_me:22665: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:22667: \"$ac_try\"") >&5 + { (eval echo "$as_me:22668: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:22670: \$? = $ac_status" >&5 + echo "$as_me:22671: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_result=yes else @@ -22676,16 +22677,16 @@ cat "conftest.$ac_ext" >&5 cf_result=no fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" - echo "$as_me:22679: result: $cf_result" >&5 + echo "$as_me:22680: 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:22685: checking if we need both $cf_curs_lib and $cf_term_lib libraries" >&5 + echo "$as_me:22686: 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 22688 "configure" +#line 22689 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> int @@ -22697,16 +22698,16 @@ initscr(); endwin(); } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:22700: \"$ac_link\"") >&5 +if { (eval echo "$as_me:22701: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:22703: \$? = $ac_status" >&5 + echo "$as_me:22704: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:22706: \"$ac_try\"") >&5 + { (eval echo "$as_me:22707: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:22709: \$? = $ac_status" >&5 + echo "$as_me:22710: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_result=no else @@ -22715,7 +22716,7 @@ cat "conftest.$ac_ext" >&5 LIBS="-l$cf_curs_lib -l$cf_term_lib $cf_save_LIBS" cat >"conftest.$ac_ext" <<_ACEOF -#line 22718 "configure" +#line 22719 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> int @@ -22727,16 +22728,16 @@ initscr() } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:22730: \"$ac_link\"") >&5 +if { (eval echo "$as_me:22731: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:22733: \$? = $ac_status" >&5 + echo "$as_me:22734: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:22736: \"$ac_try\"") >&5 + { (eval echo "$as_me:22737: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:22739: \$? = $ac_status" >&5 + echo "$as_me:22740: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_result=yes else @@ -22748,19 +22749,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:22751: result: $cf_result" >&5 + echo "$as_me:22752: 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:22757: error: no curses library found" >&5 + test "$cf_curs_lib" = unknown && { { echo "$as_me:22758: error: no curses library found" >&5 echo "$as_me: error: no curses library found" >&2;} { (exit 1); exit 1; }; } fi fi -echo "$as_me:22763: checking for curses performance tradeoff" >&5 +echo "$as_me:22764: 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 @@ -22768,7 +22769,7 @@ else cf_cv_curs_performance=no cat >"conftest.$ac_ext" <<_ACEOF -#line 22771 "configure" +#line 22772 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> @@ -22787,20 +22788,20 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:22790: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:22791: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:22793: \$? = $ac_status" >&5 + echo "$as_me:22794: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:22796: \"$ac_try\"") >&5 + { (eval echo "$as_me:22797: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:22799: \$? = $ac_status" >&5 + echo "$as_me:22800: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cat >"conftest.$ac_ext" <<_ACEOF -#line 22803 "configure" +#line 22804 "configure" #include "confdefs.h" #define CURS_PERFORMANCE @@ -22820,16 +22821,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:22823: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:22824: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:22826: \$? = $ac_status" >&5 + echo "$as_me:22827: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:22829: \"$ac_try\"") >&5 + { (eval echo "$as_me:22830: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:22832: \$? = $ac_status" >&5 + echo "$as_me:22833: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_curs_performance=yes else @@ -22844,21 +22845,21 @@ fi rm -f "conftest.$ac_objext" "conftest.$ac_ext" fi -echo "$as_me:22847: result: $cf_cv_curs_performance" >&5 +echo "$as_me:22848: 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:22854: checking for curses touchline function" >&5 +echo "$as_me:22855: 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 22861 "configure" +#line 22862 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> @@ -22871,23 +22872,23 @@ touchline(stdscr, 1,2,3); } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:22874: \"$ac_link\"") >&5 +if { (eval echo "$as_me:22875: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:22877: \$? = $ac_status" >&5 + echo "$as_me:22878: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:22880: \"$ac_try\"") >&5 + { (eval echo "$as_me:22881: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:22883: \$? = $ac_status" >&5 + echo "$as_me:22884: \$? = $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 22890 "configure" +#line 22891 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> @@ -22900,16 +22901,16 @@ touchline(stdscr, 1,2); } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:22903: \"$ac_link\"") >&5 +if { (eval echo "$as_me:22904: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:22906: \$? = $ac_status" >&5 + echo "$as_me:22907: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:22909: \"$ac_try\"") >&5 + { (eval echo "$as_me:22910: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:22912: \$? = $ac_status" >&5 + echo "$as_me:22913: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_curs_touchline=sysv else @@ -22921,7 +22922,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:22924: result: $cf_cv_curs_touchline" >&5 +echo "$as_me:22925: result: $cf_cv_curs_touchline" >&5 echo "${ECHO_T}$cf_cv_curs_touchline" >&6 case "$cf_cv_curs_touchline" in (bsd) @@ -22946,23 +22947,23 @@ esac for ac_header in wchar.h do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` -echo "$as_me:22949: checking for $ac_header" >&5 +echo "$as_me:22950: 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 22955 "configure" +#line 22956 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:22959: \"$ac_cpp "conftest.$ac_ext"\"") >&5 +if { (eval echo "$as_me:22960: \"$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:22965: \$? = $ac_status" >&5 + echo "$as_me:22966: \$? = $ac_status" >&5 (exit "$ac_status"); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -22981,7 +22982,7 @@ else fi rm -f conftest.err "conftest.$ac_ext" fi -echo "$as_me:22984: result: `eval echo '${'"$as_ac_Header"'}'`" >&5 +echo "$as_me:22985: 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 @@ -22991,7 +22992,7 @@ EOF fi done -echo "$as_me:22994: checking for multibyte character support" >&5 +echo "$as_me:22995: 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 @@ -22999,7 +23000,7 @@ else cf_save_LIBS="$LIBS" cat >"conftest.$ac_ext" <<_ACEOF -#line 23002 "configure" +#line 23003 "configure" #include "confdefs.h" #include <stdlib.h> @@ -23017,16 +23018,16 @@ putwc(0,0); } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:23020: \"$ac_link\"") >&5 +if { (eval echo "$as_me:23021: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:23023: \$? = $ac_status" >&5 + echo "$as_me:23024: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:23026: \"$ac_try\"") >&5 + { (eval echo "$as_me:23027: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23029: \$? = $ac_status" >&5 + echo "$as_me:23030: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_utf8_lib=yes else @@ -23038,12 +23039,12 @@ cat "conftest.$ac_ext" >&5 cf_cv_header_path_utf8= cf_cv_library_path_utf8= -echo "${as_me:-configure}:23041: testing Starting FIND_LINKAGE(utf8,) ..." 1>&5 +echo "${as_me:-configure}:23042: testing Starting FIND_LINKAGE(utf8,) ..." 1>&5 cf_save_LIBS="$LIBS" cat >"conftest.$ac_ext" <<_ACEOF -#line 23046 "configure" +#line 23047 "configure" #include "confdefs.h" #include <libutf8.h> @@ -23056,16 +23057,16 @@ putwc(0,0); } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:23059: \"$ac_link\"") >&5 +if { (eval echo "$as_me:23060: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:23062: \$? = $ac_status" >&5 + echo "$as_me:23063: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:23065: \"$ac_try\"") >&5 + { (eval echo "$as_me:23066: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23068: \$? = $ac_status" >&5 + echo "$as_me:23069: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_find_linkage_utf8=yes @@ -23079,7 +23080,7 @@ cat "conftest.$ac_ext" >&5 LIBS="-lutf8 $cf_save_LIBS" cat >"conftest.$ac_ext" <<_ACEOF -#line 23082 "configure" +#line 23083 "configure" #include "confdefs.h" #include <libutf8.h> @@ -23092,16 +23093,16 @@ putwc(0,0); } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:23095: \"$ac_link\"") >&5 +if { (eval echo "$as_me:23096: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:23098: \$? = $ac_status" >&5 + echo "$as_me:23099: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:23101: \"$ac_try\"") >&5 + { (eval echo "$as_me:23102: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23104: \$? = $ac_status" >&5 + echo "$as_me:23105: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_find_linkage_utf8=yes @@ -23118,9 +23119,9 @@ cat "conftest.$ac_ext" >&5 test -n "$verbose" && echo " find linkage for utf8 library" 1>&6 -echo "${as_me:-configure}:23121: testing find linkage for utf8 library ..." 1>&5 +echo "${as_me:-configure}:23122: testing find linkage for utf8 library ..." 1>&5 -echo "${as_me:-configure}:23123: testing Searching for headers in FIND_LINKAGE(utf8,) ..." 1>&5 +echo "${as_me:-configure}:23124: testing Searching for headers in FIND_LINKAGE(utf8,) ..." 1>&5 cf_save_CPPFLAGS="$CPPFLAGS" cf_test_CPPFLAGS="$CPPFLAGS" @@ -23211,7 +23212,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}:23214: testing ... testing $cf_cv_header_path_utf8 ..." 1>&5 +echo "${as_me:-configure}:23215: testing ... testing $cf_cv_header_path_utf8 ..." 1>&5 CPPFLAGS="$cf_save_CPPFLAGS" @@ -23219,7 +23220,7 @@ echo "${as_me:-configure}:23214: testing ... testing $cf_cv_header_path_utf8 ... CPPFLAGS="${CPPFLAGS}-I$cf_cv_header_path_utf8" cat >"conftest.$ac_ext" <<_ACEOF -#line 23222 "configure" +#line 23223 "configure" #include "confdefs.h" #include <libutf8.h> @@ -23232,21 +23233,21 @@ putwc(0,0); } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:23235: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:23236: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:23238: \$? = $ac_status" >&5 + echo "$as_me:23239: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:23241: \"$ac_try\"") >&5 + { (eval echo "$as_me:23242: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23244: \$? = $ac_status" >&5 + echo "$as_me:23245: \$? = $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}:23249: testing ... found utf8 headers in $cf_cv_header_path_utf8 ..." 1>&5 +echo "${as_me:-configure}:23250: testing ... found utf8 headers in $cf_cv_header_path_utf8 ..." 1>&5 cf_cv_find_linkage_utf8=maybe cf_test_CPPFLAGS="$CPPFLAGS" @@ -23264,7 +23265,7 @@ rm -f "conftest.$ac_objext" "conftest.$ac_ext" if test "$cf_cv_find_linkage_utf8" = maybe ; then -echo "${as_me:-configure}:23267: testing Searching for utf8 library in FIND_LINKAGE(utf8,) ..." 1>&5 +echo "${as_me:-configure}:23268: testing Searching for utf8 library in FIND_LINKAGE(utf8,) ..." 1>&5 cf_save_LIBS="$LIBS" cf_save_LDFLAGS="$LDFLAGS" @@ -23339,13 +23340,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}:23342: testing ... testing $cf_cv_library_path_utf8 ..." 1>&5 +echo "${as_me:-configure}:23343: 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 23348 "configure" +#line 23349 "configure" #include "confdefs.h" #include <libutf8.h> @@ -23358,21 +23359,21 @@ putwc(0,0); } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:23361: \"$ac_link\"") >&5 +if { (eval echo "$as_me:23362: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:23364: \$? = $ac_status" >&5 + echo "$as_me:23365: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:23367: \"$ac_try\"") >&5 + { (eval echo "$as_me:23368: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23370: \$? = $ac_status" >&5 + echo "$as_me:23371: \$? = $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}:23375: testing ... found utf8 library in $cf_cv_library_path_utf8 ..." 1>&5 +echo "${as_me:-configure}:23376: testing ... found utf8 library in $cf_cv_library_path_utf8 ..." 1>&5 cf_cv_find_linkage_utf8=yes cf_cv_library_file_utf8="-lutf8" @@ -23414,7 +23415,7 @@ fi fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:23417: result: $cf_cv_utf8_lib" >&5 +echo "$as_me:23418: 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 @@ -23452,7 +23453,7 @@ if test -n "$cf_cv_header_path_utf8" ; then CPPFLAGS="${CPPFLAGS}-I$cf_add_incdir" cat >"conftest.$ac_ext" <<_ACEOF -#line 23455 "configure" +#line 23456 "configure" #include "confdefs.h" #include <stdio.h> int @@ -23464,16 +23465,16 @@ printf("Hello") } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:23467: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:23468: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:23470: \$? = $ac_status" >&5 + echo "$as_me:23471: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:23473: \"$ac_try\"") >&5 + { (eval echo "$as_me:23474: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23476: \$? = $ac_status" >&5 + echo "$as_me:23477: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then : else @@ -23490,7 +23491,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}:23493: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:23494: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -23526,7 +23527,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}:23529: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:23530: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -23556,13 +23557,13 @@ cf_ncuconfig_root=$cf_cv_screen cf_have_ncuconfig=no if test "x${PKG_CONFIG:=none}" != xnone; then - echo "$as_me:23559: checking pkg-config for $cf_ncuconfig_root" >&5 + echo "$as_me:23560: 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:23562: result: yes" >&5 + echo "$as_me:23563: result: yes" >&5 echo "${ECHO_T}yes" >&6 - echo "$as_me:23565: checking if the $cf_ncuconfig_root package files work" >&5 + echo "$as_me:23566: 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 @@ -23695,7 +23696,7 @@ done LIBS="$cf_add_libs" cat >"conftest.$ac_ext" <<_ACEOF -#line 23698 "configure" +#line 23699 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> int @@ -23707,37 +23708,37 @@ initscr(); mousemask(0,0); tigetstr((char *)0); } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:23710: \"$ac_link\"") >&5 +if { (eval echo "$as_me:23711: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:23713: \$? = $ac_status" >&5 + echo "$as_me:23714: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:23716: \"$ac_try\"") >&5 + { (eval echo "$as_me:23717: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23719: \$? = $ac_status" >&5 + echo "$as_me:23720: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then if test "$cross_compiling" = yes; then cf_test_ncuconfig=maybe else cat >"conftest.$ac_ext" <<_ACEOF -#line 23725 "configure" +#line 23726 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> int main(void) { const char *xx = curses_version(); return (xx == 0); } _ACEOF rm -f "conftest$ac_exeext" -if { (eval echo "$as_me:23732: \"$ac_link\"") >&5 +if { (eval echo "$as_me:23733: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:23735: \$? = $ac_status" >&5 + echo "$as_me:23736: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='"./conftest$ac_exeext"' - { (eval echo "$as_me:23737: \"$ac_try\"") >&5 + { (eval echo "$as_me:23738: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23740: \$? = $ac_status" >&5 + echo "$as_me:23741: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_test_ncuconfig=yes else @@ -23911,7 +23912,7 @@ done LIBS="$cf_add_libs" cat >"conftest.$ac_ext" <<_ACEOF -#line 23914 "configure" +#line 23915 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> int @@ -23923,37 +23924,37 @@ initscr(); mousemask(0,0); tigetstr((char *)0); } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:23926: \"$ac_link\"") >&5 +if { (eval echo "$as_me:23927: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:23929: \$? = $ac_status" >&5 + echo "$as_me:23930: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:23932: \"$ac_try\"") >&5 + { (eval echo "$as_me:23933: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23935: \$? = $ac_status" >&5 + echo "$as_me:23936: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then if test "$cross_compiling" = yes; then cf_have_ncuconfig=maybe else cat >"conftest.$ac_ext" <<_ACEOF -#line 23941 "configure" +#line 23942 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> int main(void) { const char *xx = curses_version(); return (xx == 0); } _ACEOF rm -f "conftest$ac_exeext" -if { (eval echo "$as_me:23948: \"$ac_link\"") >&5 +if { (eval echo "$as_me:23949: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:23951: \$? = $ac_status" >&5 + echo "$as_me:23952: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='"./conftest$ac_exeext"' - { (eval echo "$as_me:23953: \"$ac_try\"") >&5 + { (eval echo "$as_me:23954: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23956: \$? = $ac_status" >&5 + echo "$as_me:23957: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_have_ncuconfig=yes else @@ -23970,7 +23971,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:23973: result: $cf_have_ncuconfig" >&5 + echo "$as_me:23974: 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" @@ -23986,7 +23987,7 @@ EOF NCURSES_CONFIG_PKG=$cf_ncuconfig_root -echo "$as_me:23989: checking for terminfo header" >&5 +echo "$as_me:23990: 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 @@ -24004,7 +24005,7 @@ esac for cf_test in $cf_term_header "ncurses/term.h" "ncursesw/term.h" do cat >"conftest.$ac_ext" <<_ACEOF -#line 24007 "configure" +#line 24008 "configure" #include "confdefs.h" #include <stdio.h> #include <${cf_cv_ncurses_header:-curses.h}> @@ -24019,16 +24020,16 @@ int x = auto_left_margin; (void)x } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:24022: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:24023: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:24025: \$? = $ac_status" >&5 + echo "$as_me:24026: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:24028: \"$ac_try\"") >&5 + { (eval echo "$as_me:24029: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:24031: \$? = $ac_status" >&5 + echo "$as_me:24032: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_term_header="$cf_test" @@ -24044,7 +24045,7 @@ rm -f "conftest.$ac_objext" "conftest.$ac_ext" done fi -echo "$as_me:24047: result: $cf_cv_term_header" >&5 +echo "$as_me:24048: result: $cf_cv_term_header" >&5 echo "${ECHO_T}$cf_cv_term_header" >&6 # Set definitions to allow ifdef'ing to accommodate subdirectories @@ -24079,7 +24080,7 @@ esac fi else - echo "$as_me:24082: result: no" >&5 + echo "$as_me:24083: result: no" >&5 echo "${ECHO_T}no" >&6 NCURSES_CONFIG_PKG=none fi @@ -24095,7 +24096,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:24098: checking for $ac_word" >&5 +echo "$as_me:24099: 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 @@ -24110,7 +24111,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:24113: found $ac_dir/$ac_word" >&5 +echo "$as_me:24114: found $ac_dir/$ac_word" >&5 break done @@ -24118,10 +24119,10 @@ fi fi NCURSES_CONFIG=$ac_cv_prog_NCURSES_CONFIG if test -n "$NCURSES_CONFIG"; then - echo "$as_me:24121: result: $NCURSES_CONFIG" >&5 + echo "$as_me:24122: result: $NCURSES_CONFIG" >&5 echo "${ECHO_T}$NCURSES_CONFIG" >&6 else - echo "$as_me:24124: result: no" >&5 + echo "$as_me:24125: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -24134,7 +24135,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:24137: checking for $ac_word" >&5 +echo "$as_me:24138: 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 @@ -24149,7 +24150,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:24152: found $ac_dir/$ac_word" >&5 +echo "$as_me:24153: found $ac_dir/$ac_word" >&5 break done @@ -24157,10 +24158,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:24160: result: $ac_ct_NCURSES_CONFIG" >&5 + echo "$as_me:24161: result: $ac_ct_NCURSES_CONFIG" >&5 echo "${ECHO_T}$ac_ct_NCURSES_CONFIG" >&6 else - echo "$as_me:24163: result: no" >&5 + echo "$as_me:24164: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -24317,7 +24318,7 @@ LIBS="$cf_add_libs" # even with config script, some packages use no-override for curses.h -echo "$as_me:24320: checking if we have identified curses headers" >&5 +echo "$as_me:24321: 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 @@ -24329,7 +24330,7 @@ for cf_header in \ curses.h $cf_cv_screen/curses.h do cat >"conftest.$ac_ext" <<_ACEOF -#line 24332 "configure" +#line 24333 "configure" #include "confdefs.h" #include <${cf_header}> int @@ -24341,16 +24342,16 @@ initscr(); endwin() } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:24344: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:24345: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:24347: \$? = $ac_status" >&5 + echo "$as_me:24348: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:24350: \"$ac_try\"") >&5 + { (eval echo "$as_me:24351: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:24353: \$? = $ac_status" >&5 + echo "$as_me:24354: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_ncurses_header=$cf_header; break else @@ -24361,11 +24362,11 @@ rm -f "conftest.$ac_objext" "conftest.$ac_ext" done fi -echo "$as_me:24364: result: $cf_cv_ncurses_header" >&5 +echo "$as_me:24365: 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:24368: error: No curses header-files found" >&5 + { { echo "$as_me:24369: error: No curses header-files found" >&5 echo "$as_me: error: No curses header-files found" >&2;} { (exit 1); exit 1; }; } fi @@ -24375,23 +24376,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:24378: checking for $ac_header" >&5 +echo "$as_me:24379: 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 24384 "configure" +#line 24385 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:24388: \"$ac_cpp "conftest.$ac_ext"\"") >&5 +if { (eval echo "$as_me:24389: \"$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:24394: \$? = $ac_status" >&5 + echo "$as_me:24395: \$? = $ac_status" >&5 (exit "$ac_status"); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -24410,7 +24411,7 @@ else fi rm -f conftest.err "conftest.$ac_ext" fi -echo "$as_me:24413: result: `eval echo '${'"$as_ac_Header"'}'`" >&5 +echo "$as_me:24414: 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 @@ -24466,7 +24467,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 24469 "configure" +#line 24470 "configure" #include "confdefs.h" #include <stdio.h> int @@ -24478,16 +24479,16 @@ printf("Hello") } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:24481: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:24482: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:24484: \$? = $ac_status" >&5 + echo "$as_me:24485: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:24487: \"$ac_try\"") >&5 + { (eval echo "$as_me:24488: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:24490: \$? = $ac_status" >&5 + echo "$as_me:24491: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then : else @@ -24504,7 +24505,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}:24507: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:24508: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -24523,7 +24524,7 @@ fi } -echo "$as_me:24526: checking for $cf_ncuhdr_root header in include-path" >&5 +echo "$as_me:24527: 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 @@ -24535,7 +24536,7 @@ else do cat >"conftest.$ac_ext" <<_ACEOF -#line 24538 "configure" +#line 24539 "configure" #include "confdefs.h" #include <$cf_header> @@ -24559,16 +24560,16 @@ printf("old\\n"); } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:24562: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:24563: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:24565: \$? = $ac_status" >&5 + echo "$as_me:24566: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:24568: \"$ac_try\"") >&5 + { (eval echo "$as_me:24569: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:24571: \$? = $ac_status" >&5 + echo "$as_me:24572: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_ncurses_h=$cf_header @@ -24583,14 +24584,14 @@ rm -f "conftest.$ac_objext" "conftest.$ac_ext" done fi -echo "$as_me:24586: result: $cf_cv_ncurses_h" >&5 +echo "$as_me:24587: 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:24593: checking for $cf_ncuhdr_root include-path" >&5 +echo "$as_me:24594: 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 @@ -24711,7 +24712,7 @@ if test -n "$cf_incdir" ; then CPPFLAGS="${CPPFLAGS}-I$cf_add_incdir" cat >"conftest.$ac_ext" <<_ACEOF -#line 24714 "configure" +#line 24715 "configure" #include "confdefs.h" #include <stdio.h> int @@ -24723,16 +24724,16 @@ printf("Hello") } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:24726: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:24727: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:24729: \$? = $ac_status" >&5 + echo "$as_me:24730: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:24732: \"$ac_try\"") >&5 + { (eval echo "$as_me:24733: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:24735: \$? = $ac_status" >&5 + echo "$as_me:24736: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then : else @@ -24749,7 +24750,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}:24752: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:24753: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -24772,7 +24773,7 @@ fi do cat >"conftest.$ac_ext" <<_ACEOF -#line 24775 "configure" +#line 24776 "configure" #include "confdefs.h" #include <$cf_header> @@ -24796,16 +24797,16 @@ printf("old\\n"); } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:24799: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:24800: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:24802: \$? = $ac_status" >&5 + echo "$as_me:24803: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:24805: \"$ac_try\"") >&5 + { (eval echo "$as_me:24806: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:24808: \$? = $ac_status" >&5 + echo "$as_me:24809: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_ncurses_h2=$cf_header @@ -24826,12 +24827,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:24829: error: not found" >&5 + test "$cf_cv_ncurses_h2" = no && { { echo "$as_me:24830: error: not found" >&5 echo "$as_me: error: not found" >&2;} { (exit 1); exit 1; }; } fi -echo "$as_me:24834: result: $cf_cv_ncurses_h2" >&5 +echo "$as_me:24835: 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%/[^/]*$%%'` @@ -24867,7 +24868,7 @@ if test -n "$cf_1st_incdir" ; then CPPFLAGS="${CPPFLAGS}-I$cf_add_incdir" cat >"conftest.$ac_ext" <<_ACEOF -#line 24870 "configure" +#line 24871 "configure" #include "confdefs.h" #include <stdio.h> int @@ -24879,16 +24880,16 @@ printf("Hello") } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:24882: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:24883: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:24885: \$? = $ac_status" >&5 + echo "$as_me:24886: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:24888: \"$ac_try\"") >&5 + { (eval echo "$as_me:24889: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:24891: \$? = $ac_status" >&5 + echo "$as_me:24892: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then : else @@ -24905,7 +24906,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}:24908: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:24909: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -24953,7 +24954,7 @@ EOF ;; esac -echo "$as_me:24956: checking for terminfo header" >&5 +echo "$as_me:24957: 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 @@ -24971,7 +24972,7 @@ esac for cf_test in $cf_term_header "ncurses/term.h" "ncursesw/term.h" do cat >"conftest.$ac_ext" <<_ACEOF -#line 24974 "configure" +#line 24975 "configure" #include "confdefs.h" #include <stdio.h> #include <${cf_cv_ncurses_header:-curses.h}> @@ -24986,16 +24987,16 @@ int x = auto_left_margin; (void)x } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:24989: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:24990: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:24992: \$? = $ac_status" >&5 + echo "$as_me:24993: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:24995: \"$ac_try\"") >&5 + { (eval echo "$as_me:24996: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:24998: \$? = $ac_status" >&5 + echo "$as_me:24999: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_term_header="$cf_test" @@ -25011,7 +25012,7 @@ rm -f "conftest.$ac_objext" "conftest.$ac_ext" done fi -echo "$as_me:25014: result: $cf_cv_term_header" >&5 +echo "$as_me:25015: result: $cf_cv_term_header" >&5 echo "${ECHO_T}$cf_cv_term_header" >&6 # Set definitions to allow ifdef'ing to accommodate subdirectories @@ -25049,7 +25050,7 @@ cat >>confdefs.h <<\EOF #define NCURSES 1 EOF -echo "$as_me:25052: checking for ncurses version" >&5 +echo "$as_me:25053: 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 @@ -25075,10 +25076,10 @@ Autoconf "old" #endif EOF cf_try="$ac_cpp conftest.$ac_ext 2>&5 | grep '^Autoconf ' >conftest.out" - { (eval echo "$as_me:25078: \"$cf_try\"") >&5 + { (eval echo "$as_me:25079: \"$cf_try\"") >&5 (eval $cf_try) 2>&5 ac_status=$? - echo "$as_me:25081: \$? = $ac_status" >&5 + echo "$as_me:25082: \$? = $ac_status" >&5 (exit "$ac_status"); } if test -f conftest.out ; then cf_out=`sed -e 's%^Autoconf %%' -e 's%^[^"]*"%%' -e 's%".*%%' conftest.out` @@ -25088,7 +25089,7 @@ EOF else cat >"conftest.$ac_ext" <<_ACEOF -#line 25091 "configure" +#line 25092 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> @@ -25113,15 +25114,15 @@ int main(void) } _ACEOF rm -f "conftest$ac_exeext" -if { (eval echo "$as_me:25116: \"$ac_link\"") >&5 +if { (eval echo "$as_me:25117: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:25119: \$? = $ac_status" >&5 + echo "$as_me:25120: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='"./conftest$ac_exeext"' - { (eval echo "$as_me:25121: \"$ac_try\"") >&5 + { (eval echo "$as_me:25122: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25124: \$? = $ac_status" >&5 + echo "$as_me:25125: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_ncurses_version=`cat $cf_tempfile` @@ -25135,7 +25136,7 @@ fi rm -f "$cf_tempfile" fi -echo "$as_me:25138: result: $cf_cv_ncurses_version" >&5 +echo "$as_me:25139: result: $cf_cv_ncurses_version" >&5 echo "${ECHO_T}$cf_cv_ncurses_version" >&6 test "$cf_cv_ncurses_version" = no || cat >>confdefs.h <<\EOF @@ -25148,7 +25149,7 @@ cf_nculib_root=$cf_cv_screen # to link gpm. cf_ncurses_LIBS="" cf_ncurses_SAVE="$LIBS" -echo "$as_me:25151: checking for Gpm_Open in -lgpm" >&5 +echo "$as_me:25152: 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 @@ -25156,7 +25157,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lgpm $LIBS" cat >"conftest.$ac_ext" <<_ACEOF -#line 25159 "configure" +#line 25160 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -25175,16 +25176,16 @@ Gpm_Open (); } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:25178: \"$ac_link\"") >&5 +if { (eval echo "$as_me:25179: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:25181: \$? = $ac_status" >&5 + echo "$as_me:25182: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:25184: \"$ac_try\"") >&5 + { (eval echo "$as_me:25185: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25187: \$? = $ac_status" >&5 + echo "$as_me:25188: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_lib_gpm_Gpm_Open=yes else @@ -25195,10 +25196,10 @@ fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:25198: result: $ac_cv_lib_gpm_Gpm_Open" >&5 +echo "$as_me:25199: 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:25201: checking for initscr in -lgpm" >&5 + echo "$as_me:25202: 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 @@ -25206,7 +25207,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lgpm $LIBS" cat >"conftest.$ac_ext" <<_ACEOF -#line 25209 "configure" +#line 25210 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -25225,16 +25226,16 @@ initscr (); } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:25228: \"$ac_link\"") >&5 +if { (eval echo "$as_me:25229: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:25231: \$? = $ac_status" >&5 + echo "$as_me:25232: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:25234: \"$ac_try\"") >&5 + { (eval echo "$as_me:25235: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25237: \$? = $ac_status" >&5 + echo "$as_me:25238: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_lib_gpm_initscr=yes else @@ -25245,7 +25246,7 @@ fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:25248: result: $ac_cv_lib_gpm_initscr" >&5 +echo "$as_me:25249: 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" @@ -25260,7 +25261,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 is static). if test "$cf_nculib_root" = ncurses ; then - echo "$as_me:25263: checking for tgoto in -lmytinfo" >&5 + echo "$as_me:25264: 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 @@ -25268,7 +25269,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lmytinfo $LIBS" cat >"conftest.$ac_ext" <<_ACEOF -#line 25271 "configure" +#line 25272 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -25287,16 +25288,16 @@ tgoto (); } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:25290: \"$ac_link\"") >&5 +if { (eval echo "$as_me:25291: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:25293: \$? = $ac_status" >&5 + echo "$as_me:25294: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:25296: \"$ac_try\"") >&5 + { (eval echo "$as_me:25297: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25299: \$? = $ac_status" >&5 + echo "$as_me:25300: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_lib_mytinfo_tgoto=yes else @@ -25307,7 +25308,7 @@ fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:25310: result: $ac_cv_lib_mytinfo_tgoto" >&5 +echo "$as_me:25311: 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" @@ -25356,13 +25357,13 @@ else eval 'cf_cv_have_lib_'"$cf_nculib_root"'=no' cf_libdir="" - echo "$as_me:25359: checking for initscr" >&5 + echo "$as_me:25360: 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 25365 "configure" +#line 25366 "configure" #include "confdefs.h" #define initscr autoconf_temporary #include <limits.h> /* least-intrusive standard header which defines gcc2 __stub macros */ @@ -25393,16 +25394,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:25396: \"$ac_link\"") >&5 +if { (eval echo "$as_me:25397: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:25399: \$? = $ac_status" >&5 + echo "$as_me:25400: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:25402: \"$ac_try\"") >&5 + { (eval echo "$as_me:25403: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25405: \$? = $ac_status" >&5 + echo "$as_me:25406: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_func_initscr=yes else @@ -25412,18 +25413,18 @@ ac_cv_func_initscr=no fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:25415: result: $ac_cv_func_initscr" >&5 +echo "$as_me:25416: 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:25422: checking for initscr in -l$cf_nculib_root" >&5 + echo "$as_me:25423: 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 25426 "configure" +#line 25427 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> int @@ -25435,25 +25436,25 @@ initscr() } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:25438: \"$ac_link\"") >&5 +if { (eval echo "$as_me:25439: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:25441: \$? = $ac_status" >&5 + echo "$as_me:25442: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:25444: \"$ac_try\"") >&5 + { (eval echo "$as_me:25445: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25447: \$? = $ac_status" >&5 + echo "$as_me:25448: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then - echo "$as_me:25449: result: yes" >&5 + echo "$as_me:25450: 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:25456: result: no" >&5 +echo "$as_me:25457: result: no" >&5 echo "${ECHO_T}no" >&6 cf_search= @@ -25521,11 +25522,11 @@ cf_search="$cf_library_path_list $cf_search" for cf_libdir in $cf_search do - echo "$as_me:25524: checking for -l$cf_nculib_root in $cf_libdir" >&5 + echo "$as_me:25525: 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 25528 "configure" +#line 25529 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> int @@ -25537,25 +25538,25 @@ initscr() } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:25540: \"$ac_link\"") >&5 +if { (eval echo "$as_me:25541: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:25543: \$? = $ac_status" >&5 + echo "$as_me:25544: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:25546: \"$ac_try\"") >&5 + { (eval echo "$as_me:25547: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25549: \$? = $ac_status" >&5 + echo "$as_me:25550: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then - echo "$as_me:25551: result: yes" >&5 + echo "$as_me:25552: 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:25558: result: no" >&5 +echo "$as_me:25559: result: no" >&5 echo "${ECHO_T}no" >&6 LIBS="$cf_save_LIBS" fi @@ -25570,7 +25571,7 @@ fi eval 'cf_found_library="$cf_cv_have_lib_'"$cf_nculib_root"\" if test "$cf_found_library" = no ; then - { { echo "$as_me:25573: error: Cannot link $cf_nculib_root library" >&5 + { { echo "$as_me:25574: error: Cannot link $cf_nculib_root library" >&5 echo "$as_me: error: Cannot link $cf_nculib_root library" >&2;} { (exit 1); exit 1; }; } fi @@ -25578,7 +25579,7 @@ fi fi if test -n "$cf_ncurses_LIBS" ; then - echo "$as_me:25581: checking if we can link $cf_nculib_root without $cf_ncurses_LIBS" >&5 + echo "$as_me:25582: 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 @@ -25588,7 +25589,7 @@ echo $ECHO_N "checking if we can link $cf_nculib_root without $cf_ncurses_LIBS.. fi done cat >"conftest.$ac_ext" <<_ACEOF -#line 25591 "configure" +#line 25592 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> int @@ -25600,23 +25601,23 @@ initscr(); mousemask(0,0); tigetstr((char *)0); } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:25603: \"$ac_link\"") >&5 +if { (eval echo "$as_me:25604: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:25606: \$? = $ac_status" >&5 + echo "$as_me:25607: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:25609: \"$ac_try\"") >&5 + { (eval echo "$as_me:25610: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25612: \$? = $ac_status" >&5 + echo "$as_me:25613: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then - echo "$as_me:25614: result: yes" >&5 + echo "$as_me:25615: result: yes" >&5 echo "${ECHO_T}yes" >&6 else echo "$as_me: failed program was:" >&5 cat "conftest.$ac_ext" >&5 -echo "$as_me:25619: result: no" >&5 +echo "$as_me:25620: result: no" >&5 echo "${ECHO_T}no" >&6 LIBS="$cf_ncurses_SAVE" fi @@ -25642,13 +25643,13 @@ cf_ncuconfig_root=$cf_cv_screen cf_have_ncuconfig=no if test "x${PKG_CONFIG:=none}" != xnone; then - echo "$as_me:25645: checking pkg-config for $cf_ncuconfig_root" >&5 + echo "$as_me:25646: 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:25648: result: yes" >&5 + echo "$as_me:25649: result: yes" >&5 echo "${ECHO_T}yes" >&6 - echo "$as_me:25651: checking if the $cf_ncuconfig_root package files work" >&5 + echo "$as_me:25652: 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 @@ -25781,7 +25782,7 @@ done LIBS="$cf_add_libs" cat >"conftest.$ac_ext" <<_ACEOF -#line 25784 "configure" +#line 25785 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> int @@ -25793,37 +25794,37 @@ initscr(); mousemask(0,0); tigetstr((char *)0); } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:25796: \"$ac_link\"") >&5 +if { (eval echo "$as_me:25797: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:25799: \$? = $ac_status" >&5 + echo "$as_me:25800: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:25802: \"$ac_try\"") >&5 + { (eval echo "$as_me:25803: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25805: \$? = $ac_status" >&5 + echo "$as_me:25806: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then if test "$cross_compiling" = yes; then cf_test_ncuconfig=maybe else cat >"conftest.$ac_ext" <<_ACEOF -#line 25811 "configure" +#line 25812 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> int main(void) { const char *xx = curses_version(); return (xx == 0); } _ACEOF rm -f "conftest$ac_exeext" -if { (eval echo "$as_me:25818: \"$ac_link\"") >&5 +if { (eval echo "$as_me:25819: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:25821: \$? = $ac_status" >&5 + echo "$as_me:25822: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='"./conftest$ac_exeext"' - { (eval echo "$as_me:25823: \"$ac_try\"") >&5 + { (eval echo "$as_me:25824: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25826: \$? = $ac_status" >&5 + echo "$as_me:25827: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_test_ncuconfig=yes else @@ -25997,7 +25998,7 @@ done LIBS="$cf_add_libs" cat >"conftest.$ac_ext" <<_ACEOF -#line 26000 "configure" +#line 26001 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> int @@ -26009,37 +26010,37 @@ initscr(); mousemask(0,0); tigetstr((char *)0); } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:26012: \"$ac_link\"") >&5 +if { (eval echo "$as_me:26013: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:26015: \$? = $ac_status" >&5 + echo "$as_me:26016: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:26018: \"$ac_try\"") >&5 + { (eval echo "$as_me:26019: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:26021: \$? = $ac_status" >&5 + echo "$as_me:26022: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then if test "$cross_compiling" = yes; then cf_have_ncuconfig=maybe else cat >"conftest.$ac_ext" <<_ACEOF -#line 26027 "configure" +#line 26028 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> int main(void) { const char *xx = curses_version(); return (xx == 0); } _ACEOF rm -f "conftest$ac_exeext" -if { (eval echo "$as_me:26034: \"$ac_link\"") >&5 +if { (eval echo "$as_me:26035: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:26037: \$? = $ac_status" >&5 + echo "$as_me:26038: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='"./conftest$ac_exeext"' - { (eval echo "$as_me:26039: \"$ac_try\"") >&5 + { (eval echo "$as_me:26040: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:26042: \$? = $ac_status" >&5 + echo "$as_me:26043: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_have_ncuconfig=yes else @@ -26056,7 +26057,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:26059: result: $cf_have_ncuconfig" >&5 + echo "$as_me:26060: 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" @@ -26072,7 +26073,7 @@ EOF NCURSES_CONFIG_PKG=$cf_ncuconfig_root -echo "$as_me:26075: checking for terminfo header" >&5 +echo "$as_me:26076: 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 @@ -26090,7 +26091,7 @@ esac for cf_test in $cf_term_header "ncurses/term.h" "ncursesw/term.h" do cat >"conftest.$ac_ext" <<_ACEOF -#line 26093 "configure" +#line 26094 "configure" #include "confdefs.h" #include <stdio.h> #include <${cf_cv_ncurses_header:-curses.h}> @@ -26105,16 +26106,16 @@ int x = auto_left_margin; (void)x } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:26108: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:26109: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:26111: \$? = $ac_status" >&5 + echo "$as_me:26112: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:26114: \"$ac_try\"") >&5 + { (eval echo "$as_me:26115: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:26117: \$? = $ac_status" >&5 + echo "$as_me:26118: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_term_header="$cf_test" @@ -26130,7 +26131,7 @@ rm -f "conftest.$ac_objext" "conftest.$ac_ext" done fi -echo "$as_me:26133: result: $cf_cv_term_header" >&5 +echo "$as_me:26134: result: $cf_cv_term_header" >&5 echo "${ECHO_T}$cf_cv_term_header" >&6 # Set definitions to allow ifdef'ing to accommodate subdirectories @@ -26165,7 +26166,7 @@ esac fi else - echo "$as_me:26168: result: no" >&5 + echo "$as_me:26169: result: no" >&5 echo "${ECHO_T}no" >&6 NCURSES_CONFIG_PKG=none fi @@ -26181,7 +26182,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:26184: checking for $ac_word" >&5 +echo "$as_me:26185: 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 @@ -26196,7 +26197,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:26199: found $ac_dir/$ac_word" >&5 +echo "$as_me:26200: found $ac_dir/$ac_word" >&5 break done @@ -26204,10 +26205,10 @@ fi fi NCURSES_CONFIG=$ac_cv_prog_NCURSES_CONFIG if test -n "$NCURSES_CONFIG"; then - echo "$as_me:26207: result: $NCURSES_CONFIG" >&5 + echo "$as_me:26208: result: $NCURSES_CONFIG" >&5 echo "${ECHO_T}$NCURSES_CONFIG" >&6 else - echo "$as_me:26210: result: no" >&5 + echo "$as_me:26211: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -26220,7 +26221,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:26223: checking for $ac_word" >&5 +echo "$as_me:26224: 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 @@ -26235,7 +26236,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:26238: found $ac_dir/$ac_word" >&5 +echo "$as_me:26239: found $ac_dir/$ac_word" >&5 break done @@ -26243,10 +26244,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:26246: result: $ac_ct_NCURSES_CONFIG" >&5 + echo "$as_me:26247: result: $ac_ct_NCURSES_CONFIG" >&5 echo "${ECHO_T}$ac_ct_NCURSES_CONFIG" >&6 else - echo "$as_me:26249: result: no" >&5 + echo "$as_me:26250: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -26403,7 +26404,7 @@ LIBS="$cf_add_libs" # even with config script, some packages use no-override for curses.h -echo "$as_me:26406: checking if we have identified curses headers" >&5 +echo "$as_me:26407: 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 @@ -26415,7 +26416,7 @@ for cf_header in \ curses.h $cf_cv_screen/curses.h do cat >"conftest.$ac_ext" <<_ACEOF -#line 26418 "configure" +#line 26419 "configure" #include "confdefs.h" #include <${cf_header}> int @@ -26427,16 +26428,16 @@ initscr(); endwin() } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:26430: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:26431: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:26433: \$? = $ac_status" >&5 + echo "$as_me:26434: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:26436: \"$ac_try\"") >&5 + { (eval echo "$as_me:26437: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:26439: \$? = $ac_status" >&5 + echo "$as_me:26440: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_ncurses_header=$cf_header; break else @@ -26447,11 +26448,11 @@ rm -f "conftest.$ac_objext" "conftest.$ac_ext" done fi -echo "$as_me:26450: result: $cf_cv_ncurses_header" >&5 +echo "$as_me:26451: 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:26454: error: No curses header-files found" >&5 + { { echo "$as_me:26455: error: No curses header-files found" >&5 echo "$as_me: error: No curses header-files found" >&2;} { (exit 1); exit 1; }; } fi @@ -26461,23 +26462,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:26464: checking for $ac_header" >&5 +echo "$as_me:26465: 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 26470 "configure" +#line 26471 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:26474: \"$ac_cpp "conftest.$ac_ext"\"") >&5 +if { (eval echo "$as_me:26475: \"$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:26480: \$? = $ac_status" >&5 + echo "$as_me:26481: \$? = $ac_status" >&5 (exit "$ac_status"); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -26496,7 +26497,7 @@ else fi rm -f conftest.err "conftest.$ac_ext" fi -echo "$as_me:26499: result: `eval echo '${'"$as_ac_Header"'}'`" >&5 +echo "$as_me:26500: 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 @@ -26552,7 +26553,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 26555 "configure" +#line 26556 "configure" #include "confdefs.h" #include <stdio.h> int @@ -26564,16 +26565,16 @@ printf("Hello") } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:26567: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:26568: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:26570: \$? = $ac_status" >&5 + echo "$as_me:26571: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:26573: \"$ac_try\"") >&5 + { (eval echo "$as_me:26574: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:26576: \$? = $ac_status" >&5 + echo "$as_me:26577: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then : else @@ -26590,7 +26591,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}:26593: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:26594: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -26609,7 +26610,7 @@ fi } -echo "$as_me:26612: checking for $cf_ncuhdr_root header in include-path" >&5 +echo "$as_me:26613: 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 @@ -26621,7 +26622,7 @@ else do cat >"conftest.$ac_ext" <<_ACEOF -#line 26624 "configure" +#line 26625 "configure" #include "confdefs.h" #include <$cf_header> @@ -26645,16 +26646,16 @@ printf("old\\n"); } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:26648: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:26649: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:26651: \$? = $ac_status" >&5 + echo "$as_me:26652: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:26654: \"$ac_try\"") >&5 + { (eval echo "$as_me:26655: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:26657: \$? = $ac_status" >&5 + echo "$as_me:26658: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_ncurses_h=$cf_header @@ -26669,14 +26670,14 @@ rm -f "conftest.$ac_objext" "conftest.$ac_ext" done fi -echo "$as_me:26672: result: $cf_cv_ncurses_h" >&5 +echo "$as_me:26673: 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:26679: checking for $cf_ncuhdr_root include-path" >&5 +echo "$as_me:26680: 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 @@ -26797,7 +26798,7 @@ if test -n "$cf_incdir" ; then CPPFLAGS="${CPPFLAGS}-I$cf_add_incdir" cat >"conftest.$ac_ext" <<_ACEOF -#line 26800 "configure" +#line 26801 "configure" #include "confdefs.h" #include <stdio.h> int @@ -26809,16 +26810,16 @@ printf("Hello") } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:26812: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:26813: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:26815: \$? = $ac_status" >&5 + echo "$as_me:26816: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:26818: \"$ac_try\"") >&5 + { (eval echo "$as_me:26819: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:26821: \$? = $ac_status" >&5 + echo "$as_me:26822: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then : else @@ -26835,7 +26836,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}:26838: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:26839: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -26858,7 +26859,7 @@ fi do cat >"conftest.$ac_ext" <<_ACEOF -#line 26861 "configure" +#line 26862 "configure" #include "confdefs.h" #include <$cf_header> @@ -26882,16 +26883,16 @@ printf("old\\n"); } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:26885: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:26886: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:26888: \$? = $ac_status" >&5 + echo "$as_me:26889: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:26891: \"$ac_try\"") >&5 + { (eval echo "$as_me:26892: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:26894: \$? = $ac_status" >&5 + echo "$as_me:26895: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_ncurses_h2=$cf_header @@ -26912,12 +26913,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:26915: error: not found" >&5 + test "$cf_cv_ncurses_h2" = no && { { echo "$as_me:26916: error: not found" >&5 echo "$as_me: error: not found" >&2;} { (exit 1); exit 1; }; } fi -echo "$as_me:26920: result: $cf_cv_ncurses_h2" >&5 +echo "$as_me:26921: 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%/[^/]*$%%'` @@ -26953,7 +26954,7 @@ if test -n "$cf_1st_incdir" ; then CPPFLAGS="${CPPFLAGS}-I$cf_add_incdir" cat >"conftest.$ac_ext" <<_ACEOF -#line 26956 "configure" +#line 26957 "configure" #include "confdefs.h" #include <stdio.h> int @@ -26965,16 +26966,16 @@ printf("Hello") } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:26968: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:26969: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:26971: \$? = $ac_status" >&5 + echo "$as_me:26972: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:26974: \"$ac_try\"") >&5 + { (eval echo "$as_me:26975: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:26977: \$? = $ac_status" >&5 + echo "$as_me:26978: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then : else @@ -26991,7 +26992,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}:26994: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:26995: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -27039,7 +27040,7 @@ EOF ;; esac -echo "$as_me:27042: checking for terminfo header" >&5 +echo "$as_me:27043: 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 @@ -27057,7 +27058,7 @@ esac for cf_test in $cf_term_header "ncurses/term.h" "ncursesw/term.h" do cat >"conftest.$ac_ext" <<_ACEOF -#line 27060 "configure" +#line 27061 "configure" #include "confdefs.h" #include <stdio.h> #include <${cf_cv_ncurses_header:-curses.h}> @@ -27072,16 +27073,16 @@ int x = auto_left_margin; (void)x } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:27075: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:27076: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:27078: \$? = $ac_status" >&5 + echo "$as_me:27079: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:27081: \"$ac_try\"") >&5 + { (eval echo "$as_me:27082: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27084: \$? = $ac_status" >&5 + echo "$as_me:27085: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_term_header="$cf_test" @@ -27097,7 +27098,7 @@ rm -f "conftest.$ac_objext" "conftest.$ac_ext" done fi -echo "$as_me:27100: result: $cf_cv_term_header" >&5 +echo "$as_me:27101: result: $cf_cv_term_header" >&5 echo "${ECHO_T}$cf_cv_term_header" >&6 # Set definitions to allow ifdef'ing to accommodate subdirectories @@ -27135,7 +27136,7 @@ cat >>confdefs.h <<\EOF #define NCURSES 1 EOF -echo "$as_me:27138: checking for ncurses version" >&5 +echo "$as_me:27139: 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 @@ -27161,10 +27162,10 @@ Autoconf "old" #endif EOF cf_try="$ac_cpp conftest.$ac_ext 2>&5 | grep '^Autoconf ' >conftest.out" - { (eval echo "$as_me:27164: \"$cf_try\"") >&5 + { (eval echo "$as_me:27165: \"$cf_try\"") >&5 (eval $cf_try) 2>&5 ac_status=$? - echo "$as_me:27167: \$? = $ac_status" >&5 + echo "$as_me:27168: \$? = $ac_status" >&5 (exit "$ac_status"); } if test -f conftest.out ; then cf_out=`sed -e 's%^Autoconf %%' -e 's%^[^"]*"%%' -e 's%".*%%' conftest.out` @@ -27174,7 +27175,7 @@ EOF else cat >"conftest.$ac_ext" <<_ACEOF -#line 27177 "configure" +#line 27178 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> @@ -27199,15 +27200,15 @@ int main(void) } _ACEOF rm -f "conftest$ac_exeext" -if { (eval echo "$as_me:27202: \"$ac_link\"") >&5 +if { (eval echo "$as_me:27203: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:27205: \$? = $ac_status" >&5 + echo "$as_me:27206: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='"./conftest$ac_exeext"' - { (eval echo "$as_me:27207: \"$ac_try\"") >&5 + { (eval echo "$as_me:27208: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27210: \$? = $ac_status" >&5 + echo "$as_me:27211: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_ncurses_version=`cat $cf_tempfile` @@ -27221,7 +27222,7 @@ fi rm -f "$cf_tempfile" fi -echo "$as_me:27224: result: $cf_cv_ncurses_version" >&5 +echo "$as_me:27225: result: $cf_cv_ncurses_version" >&5 echo "${ECHO_T}$cf_cv_ncurses_version" >&6 test "$cf_cv_ncurses_version" = no || cat >>confdefs.h <<\EOF @@ -27234,7 +27235,7 @@ cf_nculib_root=$cf_cv_screen # to link gpm. cf_ncurses_LIBS="" cf_ncurses_SAVE="$LIBS" -echo "$as_me:27237: checking for Gpm_Open in -lgpm" >&5 +echo "$as_me:27238: 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 @@ -27242,7 +27243,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lgpm $LIBS" cat >"conftest.$ac_ext" <<_ACEOF -#line 27245 "configure" +#line 27246 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -27261,16 +27262,16 @@ Gpm_Open (); } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:27264: \"$ac_link\"") >&5 +if { (eval echo "$as_me:27265: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:27267: \$? = $ac_status" >&5 + echo "$as_me:27268: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:27270: \"$ac_try\"") >&5 + { (eval echo "$as_me:27271: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27273: \$? = $ac_status" >&5 + echo "$as_me:27274: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_lib_gpm_Gpm_Open=yes else @@ -27281,10 +27282,10 @@ fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:27284: result: $ac_cv_lib_gpm_Gpm_Open" >&5 +echo "$as_me:27285: 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:27287: checking for initscr in -lgpm" >&5 + echo "$as_me:27288: 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 @@ -27292,7 +27293,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lgpm $LIBS" cat >"conftest.$ac_ext" <<_ACEOF -#line 27295 "configure" +#line 27296 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -27311,16 +27312,16 @@ initscr (); } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:27314: \"$ac_link\"") >&5 +if { (eval echo "$as_me:27315: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:27317: \$? = $ac_status" >&5 + echo "$as_me:27318: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:27320: \"$ac_try\"") >&5 + { (eval echo "$as_me:27321: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27323: \$? = $ac_status" >&5 + echo "$as_me:27324: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_lib_gpm_initscr=yes else @@ -27331,7 +27332,7 @@ fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:27334: result: $ac_cv_lib_gpm_initscr" >&5 +echo "$as_me:27335: 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" @@ -27346,7 +27347,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 is static). if test "$cf_nculib_root" = ncurses ; then - echo "$as_me:27349: checking for tgoto in -lmytinfo" >&5 + echo "$as_me:27350: 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 @@ -27354,7 +27355,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lmytinfo $LIBS" cat >"conftest.$ac_ext" <<_ACEOF -#line 27357 "configure" +#line 27358 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -27373,16 +27374,16 @@ tgoto (); } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:27376: \"$ac_link\"") >&5 +if { (eval echo "$as_me:27377: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:27379: \$? = $ac_status" >&5 + echo "$as_me:27380: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:27382: \"$ac_try\"") >&5 + { (eval echo "$as_me:27383: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27385: \$? = $ac_status" >&5 + echo "$as_me:27386: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_lib_mytinfo_tgoto=yes else @@ -27393,7 +27394,7 @@ fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:27396: result: $ac_cv_lib_mytinfo_tgoto" >&5 +echo "$as_me:27397: 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" @@ -27442,13 +27443,13 @@ else eval 'cf_cv_have_lib_'"$cf_nculib_root"'=no' cf_libdir="" - echo "$as_me:27445: checking for initscr" >&5 + echo "$as_me:27446: 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 27451 "configure" +#line 27452 "configure" #include "confdefs.h" #define initscr autoconf_temporary #include <limits.h> /* least-intrusive standard header which defines gcc2 __stub macros */ @@ -27479,16 +27480,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:27482: \"$ac_link\"") >&5 +if { (eval echo "$as_me:27483: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:27485: \$? = $ac_status" >&5 + echo "$as_me:27486: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:27488: \"$ac_try\"") >&5 + { (eval echo "$as_me:27489: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27491: \$? = $ac_status" >&5 + echo "$as_me:27492: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_func_initscr=yes else @@ -27498,18 +27499,18 @@ ac_cv_func_initscr=no fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:27501: result: $ac_cv_func_initscr" >&5 +echo "$as_me:27502: 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:27508: checking for initscr in -l$cf_nculib_root" >&5 + echo "$as_me:27509: 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 27512 "configure" +#line 27513 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> int @@ -27521,25 +27522,25 @@ initscr() } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:27524: \"$ac_link\"") >&5 +if { (eval echo "$as_me:27525: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:27527: \$? = $ac_status" >&5 + echo "$as_me:27528: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:27530: \"$ac_try\"") >&5 + { (eval echo "$as_me:27531: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27533: \$? = $ac_status" >&5 + echo "$as_me:27534: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then - echo "$as_me:27535: result: yes" >&5 + echo "$as_me:27536: 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:27542: result: no" >&5 +echo "$as_me:27543: result: no" >&5 echo "${ECHO_T}no" >&6 cf_search= @@ -27607,11 +27608,11 @@ cf_search="$cf_library_path_list $cf_search" for cf_libdir in $cf_search do - echo "$as_me:27610: checking for -l$cf_nculib_root in $cf_libdir" >&5 + echo "$as_me:27611: 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 27614 "configure" +#line 27615 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> int @@ -27623,25 +27624,25 @@ initscr() } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:27626: \"$ac_link\"") >&5 +if { (eval echo "$as_me:27627: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:27629: \$? = $ac_status" >&5 + echo "$as_me:27630: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:27632: \"$ac_try\"") >&5 + { (eval echo "$as_me:27633: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27635: \$? = $ac_status" >&5 + echo "$as_me:27636: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then - echo "$as_me:27637: result: yes" >&5 + echo "$as_me:27638: 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:27644: result: no" >&5 +echo "$as_me:27645: result: no" >&5 echo "${ECHO_T}no" >&6 LIBS="$cf_save_LIBS" fi @@ -27656,7 +27657,7 @@ fi eval 'cf_found_library="$cf_cv_have_lib_'"$cf_nculib_root"\" if test "$cf_found_library" = no ; then - { { echo "$as_me:27659: error: Cannot link $cf_nculib_root library" >&5 + { { echo "$as_me:27660: error: Cannot link $cf_nculib_root library" >&5 echo "$as_me: error: Cannot link $cf_nculib_root library" >&2;} { (exit 1); exit 1; }; } fi @@ -27664,7 +27665,7 @@ fi fi if test -n "$cf_ncurses_LIBS" ; then - echo "$as_me:27667: checking if we can link $cf_nculib_root without $cf_ncurses_LIBS" >&5 + echo "$as_me:27668: 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 @@ -27674,7 +27675,7 @@ echo $ECHO_N "checking if we can link $cf_nculib_root without $cf_ncurses_LIBS.. fi done cat >"conftest.$ac_ext" <<_ACEOF -#line 27677 "configure" +#line 27678 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> int @@ -27686,23 +27687,23 @@ initscr(); mousemask(0,0); tigetstr((char *)0); } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:27689: \"$ac_link\"") >&5 +if { (eval echo "$as_me:27690: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:27692: \$? = $ac_status" >&5 + echo "$as_me:27693: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:27695: \"$ac_try\"") >&5 + { (eval echo "$as_me:27696: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27698: \$? = $ac_status" >&5 + echo "$as_me:27699: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then - echo "$as_me:27700: result: yes" >&5 + echo "$as_me:27701: result: yes" >&5 echo "${ECHO_T}yes" >&6 else echo "$as_me: failed program was:" >&5 cat "conftest.$ac_ext" >&5 -echo "$as_me:27705: result: no" >&5 +echo "$as_me:27706: result: no" >&5 echo "${ECHO_T}no" >&6 LIBS="$cf_ncurses_SAVE" fi @@ -27734,7 +27735,7 @@ fi ;; (slang) -echo "$as_me:27737: checking for slang header file" >&5 +echo "$as_me:27738: 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 @@ -27742,7 +27743,7 @@ else cf_cv_slang_header=no cat >"conftest.$ac_ext" <<_ACEOF -#line 27745 "configure" +#line 27746 "configure" #include "confdefs.h" #include <slang.h> int @@ -27754,16 +27755,16 @@ printf("%s\\n", SLANG_VERSION) } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:27757: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:27758: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:27760: \$? = $ac_status" >&5 + echo "$as_me:27761: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:27763: \"$ac_try\"") >&5 + { (eval echo "$as_me:27764: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27766: \$? = $ac_status" >&5 + echo "$as_me:27767: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_slang_header=predefined else @@ -27868,7 +27869,7 @@ cf_search="$cf_search $cf_header_path_list" fi rm -f "conftest.$ac_objext" "conftest.$ac_ext" fi -echo "$as_me:27871: result: $cf_cv_slang_header" >&5 +echo "$as_me:27872: result: $cf_cv_slang_header" >&5 echo "${ECHO_T}$cf_cv_slang_header" >&6 if test "x$cf_cv_slang_header" != xno @@ -27912,7 +27913,7 @@ if test -n "$cf_incdir" ; then CPPFLAGS="${CPPFLAGS}-I$cf_add_incdir" cat >"conftest.$ac_ext" <<_ACEOF -#line 27915 "configure" +#line 27916 "configure" #include "confdefs.h" #include <stdio.h> int @@ -27924,16 +27925,16 @@ printf("Hello") } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:27927: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:27928: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:27930: \$? = $ac_status" >&5 + echo "$as_me:27931: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:27933: \"$ac_try\"") >&5 + { (eval echo "$as_me:27934: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27936: \$? = $ac_status" >&5 + echo "$as_me:27937: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then : else @@ -27950,7 +27951,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}:27953: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:27954: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -27982,52 +27983,52 @@ else cf_cv_termlib=none cat >"conftest.$ac_ext" <<_ACEOF -#line 27985 "configure" +#line 27986 "configure" #include "confdefs.h" extern char *tgoto(const char*,int,int); int main (void) { -char *x=tgoto("",0,0) +char *x=tgoto("",0,0); (void)x; ; return 0; } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:27997: \"$ac_link\"") >&5 +if { (eval echo "$as_me:27998: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:28000: \$? = $ac_status" >&5 + echo "$as_me:28001: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:28003: \"$ac_try\"") >&5 + { (eval echo "$as_me:28004: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28006: \$? = $ac_status" >&5 + echo "$as_me:28007: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cat >"conftest.$ac_ext" <<_ACEOF -#line 28009 "configure" +#line 28010 "configure" #include "confdefs.h" -extern char *tigetstr(const char *) +extern char *tigetstr(const char *); int main (void) { -char *x=tigetstr("") +char *x=tigetstr(""); (void)x; ; return 0; } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:28021: \"$ac_link\"") >&5 +if { (eval echo "$as_me:28022: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:28024: \$? = $ac_status" >&5 + echo "$as_me:28025: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:28027: \"$ac_try\"") >&5 + { (eval echo "$as_me:28028: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28030: \$? = $ac_status" >&5 + echo "$as_me:28031: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_termlib=terminfo else @@ -28038,7 +28039,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}:28041: testing using functions in predefined $cf_cv_termlib LIBS ..." 1>&5 +echo "${as_me:-configure}:28042: testing using functions in predefined $cf_cv_termlib LIBS ..." 1>&5 else echo "$as_me: failed program was:" >&5 @@ -28053,31 +28054,31 @@ if test "$cf_cv_termlib" = none; then LIBS="-l$cf_lib $cf_save_LIBS" for cf_func in tigetstr tgetstr do - echo "$as_me:28056: checking for $cf_func in -l$cf_lib" >&5 + echo "$as_me:28057: 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 28059 "configure" +#line 28060 "configure" #include "confdefs.h" - +extern char *$cf_func(const char *); int main (void) { -int x=$cf_func("") +int x=$cf_func(""); (void)x ; return 0; } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:28071: \"$ac_link\"") >&5 +if { (eval echo "$as_me:28072: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:28074: \$? = $ac_status" >&5 + echo "$as_me:28075: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:28077: \"$ac_try\"") >&5 + { (eval echo "$as_me:28078: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28080: \$? = $ac_status" >&5 + echo "$as_me:28081: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_result=yes else @@ -28086,7 +28087,7 @@ cat "conftest.$ac_ext" >&5 cf_result=no fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" - echo "$as_me:28089: result: $cf_result" >&5 + echo "$as_me:28090: result: $cf_result" >&5 echo "${ECHO_T}$cf_result" >&6 if test "$cf_result" = yes ; then if test "$cf_func" = tigetstr ; then @@ -28103,7 +28104,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:28106: checking for initscr in -lcurses" >&5 + echo "$as_me:28107: 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 @@ -28111,7 +28112,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lcurses $LIBS" cat >"conftest.$ac_ext" <<_ACEOF -#line 28114 "configure" +#line 28115 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -28130,16 +28131,16 @@ initscr (); } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:28133: \"$ac_link\"") >&5 +if { (eval echo "$as_me:28134: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:28136: \$? = $ac_status" >&5 + echo "$as_me:28137: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:28139: \"$ac_try\"") >&5 + { (eval echo "$as_me:28140: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28142: \$? = $ac_status" >&5 + echo "$as_me:28143: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_lib_curses_initscr=yes else @@ -28150,7 +28151,7 @@ fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:28153: result: $ac_cv_lib_curses_initscr" >&5 +echo "$as_me:28154: 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 @@ -28172,7 +28173,7 @@ LIBS="$cf_add_libs" fi - echo "$as_me:28175: checking for tgoto in -ltermcap" >&5 + echo "$as_me:28176: 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 @@ -28180,7 +28181,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-ltermcap $LIBS" cat >"conftest.$ac_ext" <<_ACEOF -#line 28183 "configure" +#line 28184 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -28199,16 +28200,16 @@ tgoto (); } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:28202: \"$ac_link\"") >&5 +if { (eval echo "$as_me:28203: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:28205: \$? = $ac_status" >&5 + echo "$as_me:28206: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:28208: \"$ac_try\"") >&5 + { (eval echo "$as_me:28209: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28211: \$? = $ac_status" >&5 + echo "$as_me:28212: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_lib_termcap_tgoto=yes else @@ -28219,7 +28220,7 @@ fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:28222: result: $ac_cv_lib_termcap_tgoto" >&5 +echo "$as_me:28223: 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 @@ -28246,20 +28247,20 @@ fi fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" if test "$cf_cv_termlib" = none; then - { echo "$as_me:28249: WARNING: Cannot find -ltermlib, -lcurses, or -ltermcap" >&5 + { echo "$as_me:28250: 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:28256: checking for acos" >&5 +echo "$as_me:28257: 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 28262 "configure" +#line 28263 "configure" #include "confdefs.h" #define acos autoconf_temporary #include <limits.h> /* least-intrusive standard header which defines gcc2 __stub macros */ @@ -28290,16 +28291,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:28293: \"$ac_link\"") >&5 +if { (eval echo "$as_me:28294: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:28296: \$? = $ac_status" >&5 + echo "$as_me:28297: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:28299: \"$ac_try\"") >&5 + { (eval echo "$as_me:28300: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28302: \$? = $ac_status" >&5 + echo "$as_me:28303: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_func_acos=yes else @@ -28309,13 +28310,13 @@ ac_cv_func_acos=no fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:28312: result: $ac_cv_func_acos" >&5 +echo "$as_me:28313: 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:28318: checking for acos in -lm" >&5 +echo "$as_me:28319: 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 @@ -28323,7 +28324,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lm $LIBS $LIBS" cat >"conftest.$ac_ext" <<_ACEOF -#line 28326 "configure" +#line 28327 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -28342,16 +28343,16 @@ acos (); } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:28345: \"$ac_link\"") >&5 +if { (eval echo "$as_me:28346: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:28348: \$? = $ac_status" >&5 + echo "$as_me:28349: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:28351: \"$ac_try\"") >&5 + { (eval echo "$as_me:28352: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28354: \$? = $ac_status" >&5 + echo "$as_me:28355: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_lib_m_acos=yes else @@ -28362,7 +28363,7 @@ fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:28365: result: $ac_cv_lib_m_acos" >&5 +echo "$as_me:28366: 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 @@ -28388,13 +28389,13 @@ case "$host_os" in eval 'cf_cv_have_lib_'"video"'=no' cf_libdir="" - echo "$as_me:28391: checking for v_init" >&5 + echo "$as_me:28392: 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 28397 "configure" +#line 28398 "configure" #include "confdefs.h" #define v_init autoconf_temporary #include <limits.h> /* least-intrusive standard header which defines gcc2 __stub macros */ @@ -28425,16 +28426,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:28428: \"$ac_link\"") >&5 +if { (eval echo "$as_me:28429: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:28431: \$? = $ac_status" >&5 + echo "$as_me:28432: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:28434: \"$ac_try\"") >&5 + { (eval echo "$as_me:28435: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28437: \$? = $ac_status" >&5 + echo "$as_me:28438: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_func_v_init=yes else @@ -28444,18 +28445,18 @@ ac_cv_func_v_init=no fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:28447: result: $ac_cv_func_v_init" >&5 +echo "$as_me:28448: 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:28454: checking for v_init in -lvideo" >&5 + echo "$as_me:28455: 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 28458 "configure" +#line 28459 "configure" #include "confdefs.h" #include <sys/video.h> int @@ -28467,25 +28468,25 @@ v_init() } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:28470: \"$ac_link\"") >&5 +if { (eval echo "$as_me:28471: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:28473: \$? = $ac_status" >&5 + echo "$as_me:28474: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:28476: \"$ac_try\"") >&5 + { (eval echo "$as_me:28477: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28479: \$? = $ac_status" >&5 + echo "$as_me:28480: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then - echo "$as_me:28481: result: yes" >&5 + echo "$as_me:28482: 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:28488: result: no" >&5 +echo "$as_me:28489: result: no" >&5 echo "${ECHO_T}no" >&6 cf_search= @@ -28553,11 +28554,11 @@ cf_search="$cf_library_path_list $cf_search" for cf_libdir in $cf_search do - echo "$as_me:28556: checking for -lvideo in $cf_libdir" >&5 + echo "$as_me:28557: 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 28560 "configure" +#line 28561 "configure" #include "confdefs.h" #include <sys/video.h> int @@ -28569,25 +28570,25 @@ v_init() } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:28572: \"$ac_link\"") >&5 +if { (eval echo "$as_me:28573: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:28575: \$? = $ac_status" >&5 + echo "$as_me:28576: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:28578: \"$ac_try\"") >&5 + { (eval echo "$as_me:28579: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28581: \$? = $ac_status" >&5 + echo "$as_me:28582: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then - echo "$as_me:28583: result: yes" >&5 + echo "$as_me:28584: 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:28590: result: no" >&5 +echo "$as_me:28591: result: no" >&5 echo "${ECHO_T}no" >&6 LIBS="$cf_save_LIBS" fi @@ -28602,7 +28603,7 @@ fi eval 'cf_found_library="$cf_cv_have_lib_'"video"\" if test "$cf_found_library" = no ; then - { { echo "$as_me:28605: error: Cannot link video library" >&5 + { { echo "$as_me:28606: error: Cannot link video library" >&5 echo "$as_me: error: Cannot link video library" >&2;} { (exit 1); exit 1; }; } fi @@ -28612,13 +28613,13 @@ esac eval 'cf_cv_have_lib_'"slang"'=no' cf_libdir="" - echo "$as_me:28615: checking for SLtt_get_screen_size" >&5 + echo "$as_me:28616: 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 28621 "configure" +#line 28622 "configure" #include "confdefs.h" #define SLtt_get_screen_size autoconf_temporary #include <limits.h> /* least-intrusive standard header which defines gcc2 __stub macros */ @@ -28649,16 +28650,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:28652: \"$ac_link\"") >&5 +if { (eval echo "$as_me:28653: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:28655: \$? = $ac_status" >&5 + echo "$as_me:28656: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:28658: \"$ac_try\"") >&5 + { (eval echo "$as_me:28659: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28661: \$? = $ac_status" >&5 + echo "$as_me:28662: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_func_SLtt_get_screen_size=yes else @@ -28668,18 +28669,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:28671: result: $ac_cv_func_SLtt_get_screen_size" >&5 +echo "$as_me:28672: 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:28678: checking for SLtt_get_screen_size in -lslang" >&5 + echo "$as_me:28679: 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 28682 "configure" +#line 28683 "configure" #include "confdefs.h" #include <slang.h> int @@ -28691,25 +28692,25 @@ SLtt_get_screen_size() } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:28694: \"$ac_link\"") >&5 +if { (eval echo "$as_me:28695: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:28697: \$? = $ac_status" >&5 + echo "$as_me:28698: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:28700: \"$ac_try\"") >&5 + { (eval echo "$as_me:28701: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28703: \$? = $ac_status" >&5 + echo "$as_me:28704: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then - echo "$as_me:28705: result: yes" >&5 + echo "$as_me:28706: 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:28712: result: no" >&5 +echo "$as_me:28713: result: no" >&5 echo "${ECHO_T}no" >&6 cf_search= @@ -28777,11 +28778,11 @@ cf_search="$cf_library_path_list $cf_search" for cf_libdir in $cf_search do - echo "$as_me:28780: checking for -lslang in $cf_libdir" >&5 + echo "$as_me:28781: 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 28784 "configure" +#line 28785 "configure" #include "confdefs.h" #include <slang.h> int @@ -28793,25 +28794,25 @@ SLtt_get_screen_size() } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:28796: \"$ac_link\"") >&5 +if { (eval echo "$as_me:28797: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:28799: \$? = $ac_status" >&5 + echo "$as_me:28800: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:28802: \"$ac_try\"") >&5 + { (eval echo "$as_me:28803: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28805: \$? = $ac_status" >&5 + echo "$as_me:28806: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then - echo "$as_me:28807: result: yes" >&5 + echo "$as_me:28808: 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:28814: result: no" >&5 +echo "$as_me:28815: result: no" >&5 echo "${ECHO_T}no" >&6 LIBS="$cf_save_LIBS" fi @@ -28826,13 +28827,13 @@ fi eval 'cf_found_library="$cf_cv_have_lib_'"slang"\" if test "$cf_found_library" = no ; then - { { echo "$as_me:28829: error: Cannot link slang library" >&5 + { { echo "$as_me:28830: 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:28835: checking if we can link slang without termcap" >&5 +echo "$as_me:28836: 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%^.%%'` @@ -28841,7 +28842,7 @@ else fi LIBS=`echo ".$cf_slang_LIBS3" | sed -e "s%$cf_exclude%%" -e 's%^.%%'` cat >"conftest.$ac_ext" <<_ACEOF -#line 28844 "configure" +#line 28845 "configure" #include "confdefs.h" #include <slang.h> int @@ -28853,16 +28854,16 @@ SLtt_get_screen_size() } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:28856: \"$ac_link\"") >&5 +if { (eval echo "$as_me:28857: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:28859: \$? = $ac_status" >&5 + echo "$as_me:28860: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:28862: \"$ac_try\"") >&5 + { (eval echo "$as_me:28863: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28865: \$? = $ac_status" >&5 + echo "$as_me:28866: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_result=yes else @@ -28871,13 +28872,13 @@ cat "conftest.$ac_ext" >&5 cf_result=no fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" -echo "$as_me:28874: result: $cf_result" >&5 +echo "$as_me:28875: result: $cf_result" >&5 echo "${ECHO_T}$cf_result" >&6 test "$cf_result" = no && LIBS="$cf_slang_LIBS3" else -echo "$as_me:28880: checking for slang2 header file" >&5 +echo "$as_me:28881: 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 @@ -28885,7 +28886,7 @@ else cf_cv_slang2_header=no cat >"conftest.$ac_ext" <<_ACEOF -#line 28888 "configure" +#line 28889 "configure" #include "confdefs.h" #include <slang.h> int @@ -28897,16 +28898,16 @@ printf("%s\\n", SLANG_VERSION) } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:28900: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:28901: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:28903: \$? = $ac_status" >&5 + echo "$as_me:28904: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:28906: \"$ac_try\"") >&5 + { (eval echo "$as_me:28907: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28909: \$? = $ac_status" >&5 + echo "$as_me:28910: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_slang2_header=predefined else @@ -29011,7 +29012,7 @@ cf_search="$cf_search $cf_header_path_list" fi rm -f "conftest.$ac_objext" "conftest.$ac_ext" fi -echo "$as_me:29014: result: $cf_cv_slang2_header" >&5 +echo "$as_me:29015: result: $cf_cv_slang2_header" >&5 echo "${ECHO_T}$cf_cv_slang2_header" >&6 if test "x$cf_cv_slang2_header" != xno @@ -29055,7 +29056,7 @@ if test -n "$cf_incdir" ; then CPPFLAGS="${CPPFLAGS}-I$cf_add_incdir" cat >"conftest.$ac_ext" <<_ACEOF -#line 29058 "configure" +#line 29059 "configure" #include "confdefs.h" #include <stdio.h> int @@ -29067,16 +29068,16 @@ printf("Hello") } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:29070: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:29071: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:29073: \$? = $ac_status" >&5 + echo "$as_me:29074: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:29076: \"$ac_try\"") >&5 + { (eval echo "$as_me:29077: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:29079: \$? = $ac_status" >&5 + echo "$as_me:29080: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then : else @@ -29093,7 +29094,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}:29096: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:29097: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -29125,52 +29126,52 @@ else cf_cv_termlib=none cat >"conftest.$ac_ext" <<_ACEOF -#line 29128 "configure" +#line 29129 "configure" #include "confdefs.h" extern char *tgoto(const char*,int,int); int main (void) { -char *x=tgoto("",0,0) +char *x=tgoto("",0,0); (void)x; ; return 0; } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:29140: \"$ac_link\"") >&5 +if { (eval echo "$as_me:29141: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:29143: \$? = $ac_status" >&5 + echo "$as_me:29144: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:29146: \"$ac_try\"") >&5 + { (eval echo "$as_me:29147: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:29149: \$? = $ac_status" >&5 + echo "$as_me:29150: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cat >"conftest.$ac_ext" <<_ACEOF -#line 29152 "configure" +#line 29153 "configure" #include "confdefs.h" -extern char *tigetstr(const char *) +extern char *tigetstr(const char *); int main (void) { -char *x=tigetstr("") +char *x=tigetstr(""); (void)x; ; return 0; } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:29164: \"$ac_link\"") >&5 +if { (eval echo "$as_me:29165: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:29167: \$? = $ac_status" >&5 + echo "$as_me:29168: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:29170: \"$ac_try\"") >&5 + { (eval echo "$as_me:29171: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:29173: \$? = $ac_status" >&5 + echo "$as_me:29174: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_termlib=terminfo else @@ -29181,7 +29182,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}:29184: testing using functions in predefined $cf_cv_termlib LIBS ..." 1>&5 +echo "${as_me:-configure}:29185: testing using functions in predefined $cf_cv_termlib LIBS ..." 1>&5 else echo "$as_me: failed program was:" >&5 @@ -29196,31 +29197,31 @@ if test "$cf_cv_termlib" = none; then LIBS="-l$cf_lib $cf_save_LIBS" for cf_func in tigetstr tgetstr do - echo "$as_me:29199: checking for $cf_func in -l$cf_lib" >&5 + echo "$as_me:29200: 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 29202 "configure" +#line 29203 "configure" #include "confdefs.h" - +extern char *$cf_func(const char *); int main (void) { -int x=$cf_func("") +int x=$cf_func(""); (void)x ; return 0; } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:29214: \"$ac_link\"") >&5 +if { (eval echo "$as_me:29215: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:29217: \$? = $ac_status" >&5 + echo "$as_me:29218: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:29220: \"$ac_try\"") >&5 + { (eval echo "$as_me:29221: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:29223: \$? = $ac_status" >&5 + echo "$as_me:29224: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_result=yes else @@ -29229,7 +29230,7 @@ cat "conftest.$ac_ext" >&5 cf_result=no fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" - echo "$as_me:29232: result: $cf_result" >&5 + echo "$as_me:29233: result: $cf_result" >&5 echo "${ECHO_T}$cf_result" >&6 if test "$cf_result" = yes ; then if test "$cf_func" = tigetstr ; then @@ -29246,7 +29247,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:29249: checking for initscr in -lcurses" >&5 + echo "$as_me:29250: 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 @@ -29254,7 +29255,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lcurses $LIBS" cat >"conftest.$ac_ext" <<_ACEOF -#line 29257 "configure" +#line 29258 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -29273,16 +29274,16 @@ initscr (); } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:29276: \"$ac_link\"") >&5 +if { (eval echo "$as_me:29277: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:29279: \$? = $ac_status" >&5 + echo "$as_me:29280: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:29282: \"$ac_try\"") >&5 + { (eval echo "$as_me:29283: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:29285: \$? = $ac_status" >&5 + echo "$as_me:29286: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_lib_curses_initscr=yes else @@ -29293,7 +29294,7 @@ fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:29296: result: $ac_cv_lib_curses_initscr" >&5 +echo "$as_me:29297: 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 @@ -29315,7 +29316,7 @@ LIBS="$cf_add_libs" fi - echo "$as_me:29318: checking for tgoto in -ltermcap" >&5 + echo "$as_me:29319: 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 @@ -29323,7 +29324,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-ltermcap $LIBS" cat >"conftest.$ac_ext" <<_ACEOF -#line 29326 "configure" +#line 29327 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -29342,16 +29343,16 @@ tgoto (); } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:29345: \"$ac_link\"") >&5 +if { (eval echo "$as_me:29346: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:29348: \$? = $ac_status" >&5 + echo "$as_me:29349: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:29351: \"$ac_try\"") >&5 + { (eval echo "$as_me:29352: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:29354: \$? = $ac_status" >&5 + echo "$as_me:29355: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_lib_termcap_tgoto=yes else @@ -29362,7 +29363,7 @@ fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:29365: result: $ac_cv_lib_termcap_tgoto" >&5 +echo "$as_me:29366: 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 @@ -29389,20 +29390,20 @@ fi fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" if test "$cf_cv_termlib" = none; then - { echo "$as_me:29392: WARNING: Cannot find -ltermlib, -lcurses, or -ltermcap" >&5 + { echo "$as_me:29393: 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:29399: checking for acos" >&5 +echo "$as_me:29400: 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 29405 "configure" +#line 29406 "configure" #include "confdefs.h" #define acos autoconf_temporary #include <limits.h> /* least-intrusive standard header which defines gcc2 __stub macros */ @@ -29433,16 +29434,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:29436: \"$ac_link\"") >&5 +if { (eval echo "$as_me:29437: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:29439: \$? = $ac_status" >&5 + echo "$as_me:29440: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:29442: \"$ac_try\"") >&5 + { (eval echo "$as_me:29443: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:29445: \$? = $ac_status" >&5 + echo "$as_me:29446: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_func_acos=yes else @@ -29452,13 +29453,13 @@ ac_cv_func_acos=no fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:29455: result: $ac_cv_func_acos" >&5 +echo "$as_me:29456: 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:29461: checking for acos in -lm" >&5 +echo "$as_me:29462: 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 @@ -29466,7 +29467,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lm $LIBS $LIBS" cat >"conftest.$ac_ext" <<_ACEOF -#line 29469 "configure" +#line 29470 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -29485,16 +29486,16 @@ acos (); } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:29488: \"$ac_link\"") >&5 +if { (eval echo "$as_me:29489: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:29491: \$? = $ac_status" >&5 + echo "$as_me:29492: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:29494: \"$ac_try\"") >&5 + { (eval echo "$as_me:29495: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:29497: \$? = $ac_status" >&5 + echo "$as_me:29498: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_lib_m_acos=yes else @@ -29505,7 +29506,7 @@ fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:29508: result: $ac_cv_lib_m_acos" >&5 +echo "$as_me:29509: 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 @@ -29531,13 +29532,13 @@ case "$host_os" in eval 'cf_cv_have_lib_'"video"'=no' cf_libdir="" - echo "$as_me:29534: checking for v_init" >&5 + echo "$as_me:29535: 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 29540 "configure" +#line 29541 "configure" #include "confdefs.h" #define v_init autoconf_temporary #include <limits.h> /* least-intrusive standard header which defines gcc2 __stub macros */ @@ -29568,16 +29569,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:29571: \"$ac_link\"") >&5 +if { (eval echo "$as_me:29572: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:29574: \$? = $ac_status" >&5 + echo "$as_me:29575: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:29577: \"$ac_try\"") >&5 + { (eval echo "$as_me:29578: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:29580: \$? = $ac_status" >&5 + echo "$as_me:29581: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_func_v_init=yes else @@ -29587,18 +29588,18 @@ ac_cv_func_v_init=no fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:29590: result: $ac_cv_func_v_init" >&5 +echo "$as_me:29591: 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:29597: checking for v_init in -lvideo" >&5 + echo "$as_me:29598: 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 29601 "configure" +#line 29602 "configure" #include "confdefs.h" #include <sys/video.h> int @@ -29610,25 +29611,25 @@ v_init() } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:29613: \"$ac_link\"") >&5 +if { (eval echo "$as_me:29614: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:29616: \$? = $ac_status" >&5 + echo "$as_me:29617: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:29619: \"$ac_try\"") >&5 + { (eval echo "$as_me:29620: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:29622: \$? = $ac_status" >&5 + echo "$as_me:29623: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then - echo "$as_me:29624: result: yes" >&5 + echo "$as_me:29625: 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:29631: result: no" >&5 +echo "$as_me:29632: result: no" >&5 echo "${ECHO_T}no" >&6 cf_search= @@ -29696,11 +29697,11 @@ cf_search="$cf_library_path_list $cf_search" for cf_libdir in $cf_search do - echo "$as_me:29699: checking for -lvideo in $cf_libdir" >&5 + echo "$as_me:29700: 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 29703 "configure" +#line 29704 "configure" #include "confdefs.h" #include <sys/video.h> int @@ -29712,25 +29713,25 @@ v_init() } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:29715: \"$ac_link\"") >&5 +if { (eval echo "$as_me:29716: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:29718: \$? = $ac_status" >&5 + echo "$as_me:29719: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:29721: \"$ac_try\"") >&5 + { (eval echo "$as_me:29722: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:29724: \$? = $ac_status" >&5 + echo "$as_me:29725: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then - echo "$as_me:29726: result: yes" >&5 + echo "$as_me:29727: 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:29733: result: no" >&5 +echo "$as_me:29734: result: no" >&5 echo "${ECHO_T}no" >&6 LIBS="$cf_save_LIBS" fi @@ -29745,7 +29746,7 @@ fi eval 'cf_found_library="$cf_cv_have_lib_'"video"\" if test "$cf_found_library" = no ; then - { { echo "$as_me:29748: error: Cannot link video library" >&5 + { { echo "$as_me:29749: error: Cannot link video library" >&5 echo "$as_me: error: Cannot link video library" >&2;} { (exit 1); exit 1; }; } fi @@ -29755,13 +29756,13 @@ esac eval 'cf_cv_have_lib_'"slang2"'=no' cf_libdir="" - echo "$as_me:29758: checking for SLtt_get_screen_size" >&5 + echo "$as_me:29759: 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 29764 "configure" +#line 29765 "configure" #include "confdefs.h" #define SLtt_get_screen_size autoconf_temporary #include <limits.h> /* least-intrusive standard header which defines gcc2 __stub macros */ @@ -29792,16 +29793,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:29795: \"$ac_link\"") >&5 +if { (eval echo "$as_me:29796: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:29798: \$? = $ac_status" >&5 + echo "$as_me:29799: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:29801: \"$ac_try\"") >&5 + { (eval echo "$as_me:29802: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:29804: \$? = $ac_status" >&5 + echo "$as_me:29805: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_func_SLtt_get_screen_size=yes else @@ -29811,18 +29812,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:29814: result: $ac_cv_func_SLtt_get_screen_size" >&5 +echo "$as_me:29815: 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:29821: checking for SLtt_get_screen_size in -lslang2" >&5 + echo "$as_me:29822: 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 29825 "configure" +#line 29826 "configure" #include "confdefs.h" #include <slang.h> int @@ -29834,25 +29835,25 @@ SLtt_get_screen_size() } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:29837: \"$ac_link\"") >&5 +if { (eval echo "$as_me:29838: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:29840: \$? = $ac_status" >&5 + echo "$as_me:29841: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:29843: \"$ac_try\"") >&5 + { (eval echo "$as_me:29844: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:29846: \$? = $ac_status" >&5 + echo "$as_me:29847: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then - echo "$as_me:29848: result: yes" >&5 + echo "$as_me:29849: 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:29855: result: no" >&5 +echo "$as_me:29856: result: no" >&5 echo "${ECHO_T}no" >&6 cf_search= @@ -29920,11 +29921,11 @@ cf_search="$cf_library_path_list $cf_search" for cf_libdir in $cf_search do - echo "$as_me:29923: checking for -lslang2 in $cf_libdir" >&5 + echo "$as_me:29924: 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 29927 "configure" +#line 29928 "configure" #include "confdefs.h" #include <slang.h> int @@ -29936,25 +29937,25 @@ SLtt_get_screen_size() } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:29939: \"$ac_link\"") >&5 +if { (eval echo "$as_me:29940: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:29942: \$? = $ac_status" >&5 + echo "$as_me:29943: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:29945: \"$ac_try\"") >&5 + { (eval echo "$as_me:29946: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:29948: \$? = $ac_status" >&5 + echo "$as_me:29949: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then - echo "$as_me:29950: result: yes" >&5 + echo "$as_me:29951: 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:29957: result: no" >&5 +echo "$as_me:29958: result: no" >&5 echo "${ECHO_T}no" >&6 LIBS="$cf_save_LIBS" fi @@ -29969,13 +29970,13 @@ fi eval 'cf_found_library="$cf_cv_have_lib_'"slang2"\" if test "$cf_found_library" = no ; then - { { echo "$as_me:29972: error: Cannot link slang2 library" >&5 + { { echo "$as_me:29973: 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:29978: checking if we can link slang2 without termcap" >&5 +echo "$as_me:29979: 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%^.%%'` @@ -29984,7 +29985,7 @@ else fi LIBS=`echo ".$cf_slang_LIBS3" | sed -e "s%$cf_exclude%%" -e 's%^.%%'` cat >"conftest.$ac_ext" <<_ACEOF -#line 29987 "configure" +#line 29988 "configure" #include "confdefs.h" #include <slang.h> int @@ -29996,16 +29997,16 @@ SLtt_get_screen_size() } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:29999: \"$ac_link\"") >&5 +if { (eval echo "$as_me:30000: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:30002: \$? = $ac_status" >&5 + echo "$as_me:30003: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:30005: \"$ac_try\"") >&5 + { (eval echo "$as_me:30006: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:30008: \$? = $ac_status" >&5 + echo "$as_me:30009: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_result=yes else @@ -30014,12 +30015,12 @@ cat "conftest.$ac_ext" >&5 cf_result=no fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" -echo "$as_me:30017: result: $cf_result" >&5 +echo "$as_me:30018: result: $cf_result" >&5 echo "${ECHO_T}$cf_result" >&6 test "$cf_result" = no && LIBS="$cf_slang_LIBS3" else - { { echo "$as_me:30022: error: cannot find slang headers" >&5 + { { echo "$as_me:30023: error: cannot find slang headers" >&5 echo "$as_me: error: cannot find slang headers" >&2;} { (exit 1); exit 1; }; } fi @@ -30027,14 +30028,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:30030: checking if we must define UTF8" >&5 +echo "$as_me:30031: 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 30037 "configure" +#line 30038 "configure" #include "confdefs.h" #include <slang.h> int @@ -30046,16 +30047,16 @@ SLtt_get_screen_size() } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:30049: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:30050: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:30052: \$? = $ac_status" >&5 + echo "$as_me:30053: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:30055: \"$ac_try\"") >&5 + { (eval echo "$as_me:30056: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:30058: \$? = $ac_status" >&5 + echo "$as_me:30059: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_slang_utf8=no else @@ -30063,7 +30064,7 @@ else cat "conftest.$ac_ext" >&5 cat >"conftest.$ac_ext" <<_ACEOF -#line 30066 "configure" +#line 30067 "configure" #include "confdefs.h" #define UTF8 @@ -30077,16 +30078,16 @@ SLtt_get_screen_size() } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:30080: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:30081: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:30083: \$? = $ac_status" >&5 + echo "$as_me:30084: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:30086: \"$ac_try\"") >&5 + { (eval echo "$as_me:30087: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:30089: \$? = $ac_status" >&5 + echo "$as_me:30090: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_slang_utf8=yes else @@ -30099,7 +30100,7 @@ fi rm -f "conftest.$ac_objext" "conftest.$ac_ext" fi -echo "$as_me:30102: result: $cf_cv_slang_utf8" >&5 +echo "$as_me:30103: result: $cf_cv_slang_utf8" >&5 echo "${ECHO_T}$cf_cv_slang_utf8" >&6 if test "$cf_cv_slang_utf8" = yes ; then @@ -30110,14 +30111,14 @@ EOF fi -echo "$as_me:30113: checking if we must tell slang this is UNIX" >&5 +echo "$as_me:30114: 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 30120 "configure" +#line 30121 "configure" #include "confdefs.h" #include <slang.h> int @@ -30136,16 +30137,16 @@ SLang_TT_Baud_Rate = 1 } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:30139: \"$ac_link\"") >&5 +if { (eval echo "$as_me:30140: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:30142: \$? = $ac_status" >&5 + echo "$as_me:30143: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:30145: \"$ac_try\"") >&5 + { (eval echo "$as_me:30146: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:30148: \$? = $ac_status" >&5 + echo "$as_me:30149: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_slang_unix=yes else @@ -30156,20 +30157,20 @@ fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:30159: result: $cf_cv_slang_unix" >&5 +echo "$as_me:30160: 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:30166: checking for SLsmg_Color_Type" >&5 + echo "$as_me:30167: 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 30172 "configure" +#line 30173 "configure" #include "confdefs.h" #include <slang.h> @@ -30185,16 +30186,16 @@ if (sizeof (SLsmg_Color_Type)) } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:30188: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:30189: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:30191: \$? = $ac_status" >&5 + echo "$as_me:30192: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:30194: \"$ac_try\"") >&5 + { (eval echo "$as_me:30195: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:30197: \$? = $ac_status" >&5 + echo "$as_me:30198: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_type_SLsmg_Color_Type=yes else @@ -30204,7 +30205,7 @@ ac_cv_type_SLsmg_Color_Type=no fi rm -f "conftest.$ac_objext" "conftest.$ac_ext" fi -echo "$as_me:30207: result: $ac_cv_type_SLsmg_Color_Type" >&5 +echo "$as_me:30208: 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 @@ -30220,13 +30221,13 @@ EOF fi - echo "$as_me:30223: checking for SLtt_Char_Type" >&5 + echo "$as_me:30224: 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 30229 "configure" +#line 30230 "configure" #include "confdefs.h" #include <slang.h> @@ -30242,16 +30243,16 @@ if (sizeof (SLtt_Char_Type)) } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:30245: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:30246: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:30248: \$? = $ac_status" >&5 + echo "$as_me:30249: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:30251: \"$ac_try\"") >&5 + { (eval echo "$as_me:30252: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:30254: \$? = $ac_status" >&5 + echo "$as_me:30255: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_type_SLtt_Char_Type=yes else @@ -30261,7 +30262,7 @@ ac_cv_type_SLtt_Char_Type=no fi rm -f "conftest.$ac_objext" "conftest.$ac_ext" fi -echo "$as_me:30264: result: $ac_cv_type_SLtt_Char_Type" >&5 +echo "$as_me:30265: 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 @@ -30284,7 +30285,7 @@ esac LD_RPATH_OPT= if test "x$cf_cv_enable_rpath" != xno then - echo "$as_me:30287: checking for an rpath option" >&5 + echo "$as_me:30288: checking for an rpath option" >&5 echo $ECHO_N "checking for an rpath option... $ECHO_C" >&6 case "$cf_cv_system_name" in (irix*) @@ -30315,12 +30316,12 @@ echo $ECHO_N "checking for an rpath option... $ECHO_C" >&6 (*) ;; esac - echo "$as_me:30318: result: $LD_RPATH_OPT" >&5 + echo "$as_me:30319: result: $LD_RPATH_OPT" >&5 echo "${ECHO_T}$LD_RPATH_OPT" >&6 case "x$LD_RPATH_OPT" in (x-R*) - echo "$as_me:30323: checking if we need a space after rpath option" >&5 + echo "$as_me:30324: 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" @@ -30341,7 +30342,7 @@ done LIBS="$cf_add_libs" cat >"conftest.$ac_ext" <<_ACEOF -#line 30344 "configure" +#line 30345 "configure" #include "confdefs.h" int @@ -30353,16 +30354,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:30356: \"$ac_link\"") >&5 +if { (eval echo "$as_me:30357: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:30359: \$? = $ac_status" >&5 + echo "$as_me:30360: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:30362: \"$ac_try\"") >&5 + { (eval echo "$as_me:30363: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:30365: \$? = $ac_status" >&5 + echo "$as_me:30366: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_rpath_space=no else @@ -30372,7 +30373,7 @@ cf_rpath_space=yes fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" LIBS="$cf_save_LIBS" - echo "$as_me:30375: result: $cf_rpath_space" >&5 + echo "$as_me:30376: result: $cf_rpath_space" >&5 echo "${ECHO_T}$cf_rpath_space" >&6 test "$cf_rpath_space" = yes && LD_RPATH_OPT="$LD_RPATH_OPT " ;; @@ -30383,13 +30384,13 @@ if test -z "$LD_RPATH_OPT" then test -n "$verbose" && echo " will not attempt to use rpath" 1>&6 -echo "${as_me:-configure}:30386: testing will not attempt to use rpath ..." 1>&5 +echo "${as_me:-configure}:30387: 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}:30392: testing rpath is disabled ..." 1>&5 +echo "${as_me:-configure}:30393: testing rpath is disabled ..." 1>&5 elif test -z "${LD_RUN_PATH}${LD_LIBRARY_PATH}" then @@ -30400,7 +30401,7 @@ if test "$cross_compiling" = yes; then cf_check_run=unknown else cat >"conftest.$ac_ext" <<_ACEOF -#line 30403 "configure" +#line 30404 "configure" #include "confdefs.h" #include <stdio.h> int main(void) { @@ -30409,15 +30410,15 @@ int main(void) { } _ACEOF rm -f "conftest$ac_exeext" -if { (eval echo "$as_me:30412: \"$ac_link\"") >&5 +if { (eval echo "$as_me:30413: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:30415: \$? = $ac_status" >&5 + echo "$as_me:30416: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='"./conftest$ac_exeext"' - { (eval echo "$as_me:30417: \"$ac_try\"") >&5 + { (eval echo "$as_me:30418: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:30420: \$? = $ac_status" >&5 + echo "$as_me:30421: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_check_run=yes else @@ -30433,7 +30434,7 @@ fi then test -n "$verbose" && echo " linkage is broken" 1>&6 -echo "${as_me:-configure}:30436: testing linkage is broken ..." 1>&5 +echo "${as_me:-configure}:30437: testing linkage is broken ..." 1>&5 cf_result= for cf_item in $LIBS @@ -30465,7 +30466,7 @@ if test "$cross_compiling" = yes; then cf_check_run=unknown else cat >"conftest.$ac_ext" <<_ACEOF -#line 30468 "configure" +#line 30469 "configure" #include "confdefs.h" #include <stdio.h> int main(void) { @@ -30474,15 +30475,15 @@ int main(void) { } _ACEOF rm -f "conftest$ac_exeext" -if { (eval echo "$as_me:30477: \"$ac_link\"") >&5 +if { (eval echo "$as_me:30478: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:30480: \$? = $ac_status" >&5 + echo "$as_me:30481: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='"./conftest$ac_exeext"' - { (eval echo "$as_me:30482: \"$ac_try\"") >&5 + { (eval echo "$as_me:30483: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:30485: \$? = $ac_status" >&5 + echo "$as_me:30486: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_check_run=yes else @@ -30498,12 +30499,12 @@ fi then test -n "$verbose" && echo " use rpath for $cf_save_LIBS" 1>&6 -echo "${as_me:-configure}:30501: testing use rpath for $cf_save_LIBS ..." 1>&5 +echo "${as_me:-configure}:30502: 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}:30506: testing result is now $LIBS ..." 1>&5 +echo "${as_me:-configure}:30507: testing result is now $LIBS ..." 1>&5 else LIBS="$cf_save_LIBS" @@ -30514,20 +30515,20 @@ echo "${as_me:-configure}:30506: testing result is now $LIBS ..." 1>&5 (*) test -n "$verbose" && echo " will not attempt to use rpath" 1>&6 -echo "${as_me:-configure}:30517: testing will not attempt to use rpath ..." 1>&5 +echo "${as_me:-configure}:30518: testing will not attempt to use rpath ..." 1>&5 ;; esac fi -echo "$as_me:30523: checking for chtype typedef" >&5 +echo "$as_me:30524: 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 30530 "configure" +#line 30531 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> int @@ -30539,16 +30540,16 @@ chtype foo; (void)foo } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:30542: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:30543: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:30545: \$? = $ac_status" >&5 + echo "$as_me:30546: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:30548: \"$ac_try\"") >&5 + { (eval echo "$as_me:30549: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:30551: \$? = $ac_status" >&5 + echo "$as_me:30552: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_chtype_decl=yes else @@ -30558,7 +30559,7 @@ cf_cv_chtype_decl=no fi rm -f "conftest.$ac_objext" "conftest.$ac_ext" fi -echo "$as_me:30561: result: $cf_cv_chtype_decl" >&5 +echo "$as_me:30562: result: $cf_cv_chtype_decl" >&5 echo "${ECHO_T}$cf_cv_chtype_decl" >&6 if test "$cf_cv_chtype_decl" = yes ; then @@ -30566,14 +30567,14 @@ cat >>confdefs.h <<\EOF #define HAVE_TYPE_CHTYPE 1 EOF - echo "$as_me:30569: checking if chtype is scalar or struct" >&5 + echo "$as_me:30570: 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 30576 "configure" +#line 30577 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> int @@ -30585,16 +30586,16 @@ static chtype foo; long x = foo; (void)x } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:30588: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:30589: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:30591: \$? = $ac_status" >&5 + echo "$as_me:30592: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:30594: \"$ac_try\"") >&5 + { (eval echo "$as_me:30595: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:30597: \$? = $ac_status" >&5 + echo "$as_me:30598: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_chtype_type=scalar else @@ -30604,7 +30605,7 @@ cf_cv_chtype_type=struct fi rm -f "conftest.$ac_objext" "conftest.$ac_ext" fi -echo "$as_me:30607: result: $cf_cv_chtype_type" >&5 +echo "$as_me:30608: result: $cf_cv_chtype_type" >&5 echo "${ECHO_T}$cf_cv_chtype_type" >&6 if test "$cf_cv_chtype_type" = scalar ; then @@ -30615,7 +30616,7 @@ EOF fi fi -echo "$as_me:30618: checking if you want the wide-curses features" >&5 +echo "$as_me:30619: 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. @@ -30632,10 +30633,10 @@ else use_wide_curses=$cf_wide_curses fi; -echo "$as_me:30635: result: $use_wide_curses" >&5 +echo "$as_me:30636: result: $use_wide_curses" >&5 echo "${ECHO_T}$use_wide_curses" >&6 -echo "$as_me:30638: checking if color-style code should be used" >&5 +echo "$as_me:30639: 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. @@ -30655,7 +30656,7 @@ fi; case "$use_color_style" in (no) - echo "$as_me:30658: result: no" >&5 + echo "$as_me:30659: result: no" >&5 echo "${ECHO_T}no" >&6 INSTALL_LSS= ;; @@ -30665,10 +30666,10 @@ cat >>confdefs.h <<\EOF #define USE_COLOR_STYLE 1 EOF - echo "$as_me:30668: result: yes" >&5 + echo "$as_me:30669: result: yes" >&5 echo "${ECHO_T}yes" >&6 - echo "$as_me:30671: checking for location of style-sheet file" >&5 + echo "$as_me:30672: 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. @@ -30704,7 +30705,7 @@ case ".$withval" in withval=`echo "$withval" | sed -e s%NONE%$cf_path_syntax%` ;; (*) - { { echo "$as_me:30707: error: expected a pathname, not \"$withval\"" >&5 + { { echo "$as_me:30708: error: expected a pathname, not \"$withval\"" >&5 echo "$as_me: error: expected a pathname, not \"$withval\"" >&2;} { (exit 1); exit 1; }; } ;; @@ -30713,7 +30714,7 @@ esac fi eval LYNX_LSS_FILE="$withval" - echo "$as_me:30716: result: $LYNX_LSS_FILE" >&5 + echo "$as_me:30717: result: $LYNX_LSS_FILE" >&5 echo "${ECHO_T}$LYNX_LSS_FILE" >&6 test "$LYNX_LSS_FILE" = no && LYNX_LSS_FILE= @@ -30726,7 +30727,7 @@ EOF ;; esac -echo "$as_me:30729: checking for the default configuration-file" >&5 +echo "$as_me:30730: 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. @@ -30762,7 +30763,7 @@ case ".$withval" in withval=`echo "$withval" | sed -e s%NONE%$cf_path_syntax%` ;; (*) - { { echo "$as_me:30765: error: expected a pathname, not \"$withval\"" >&5 + { { echo "$as_me:30766: error: expected a pathname, not \"$withval\"" >&5 echo "$as_me: error: expected a pathname, not \"$withval\"" >&2;} { (exit 1); exit 1; }; } ;; @@ -30771,7 +30772,7 @@ esac fi eval LYNX_CFG_FILE="$withval" -echo "$as_me:30774: result: $LYNX_CFG_FILE" >&5 +echo "$as_me:30775: result: $LYNX_CFG_FILE" >&5 echo "${ECHO_T}$LYNX_CFG_FILE" >&6 test "$LYNX_CFG_FILE" = no && LYNX_CFG_FILE= @@ -30780,7 +30781,7 @@ cat >>confdefs.h <<EOF #define LYNX_CFG_FILE "$LYNX_CFG_FILE" EOF -echo "$as_me:30783: checking for the default configuration-path" >&5 +echo "$as_me:30784: 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. @@ -30816,7 +30817,7 @@ case ".$withval" in withval=`echo "$withval" | sed -e s%NONE%$cf_path_syntax%` ;; (*) - { { echo "$as_me:30819: error: expected a pathname, not \"$withval\"" >&5 + { { echo "$as_me:30820: error: expected a pathname, not \"$withval\"" >&5 echo "$as_me: error: expected a pathname, not \"$withval\"" >&2;} { (exit 1); exit 1; }; } ;; @@ -30825,7 +30826,7 @@ esac fi eval LYNX_CFG_PATH="$withval" -echo "$as_me:30828: result: $LYNX_CFG_PATH" >&5 +echo "$as_me:30829: 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%/[^/]*$%%'`" @@ -30835,7 +30836,7 @@ cat >>confdefs.h <<EOF #define LYNX_CFG_PATH "$LYNX_CFG_PATH" EOF -echo "$as_me:30838: checking if htmlized lynx.cfg should be built" >&5 +echo "$as_me:30839: 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. @@ -30852,7 +30853,7 @@ else use_htmlized_cfg=no fi; -echo "$as_me:30855: result: $use_htmlized_cfg" >&5 +echo "$as_me:30856: result: $use_htmlized_cfg" >&5 echo "${ECHO_T}$use_htmlized_cfg" >&6 LYNXCFG_MAKE='' @@ -30863,7 +30864,7 @@ else LYNXCFG_NO_MAKE='#' fi -echo "$as_me:30866: checking if local doc directory should be linked to help page" >&5 +echo "$as_me:30867: 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. @@ -30880,7 +30881,7 @@ else use_local_docs=no fi; -echo "$as_me:30883: result: $use_local_docs" >&5 +echo "$as_me:30884: result: $use_local_docs" >&5 echo "${ECHO_T}$use_local_docs" >&6 LYNXDOC_MAKE='' @@ -30888,7 +30889,7 @@ if test "$use_local_docs" = no ; then LYNXDOC_MAKE='#' fi -echo "$as_me:30891: checking for MIME library directory" >&5 +echo "$as_me:30892: 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. @@ -30924,7 +30925,7 @@ case ".$withval" in withval=`echo "$withval" | sed -e s%NONE%$cf_path_syntax%` ;; (*) - { { echo "$as_me:30927: error: expected a pathname, not \"$withval\"" >&5 + { { echo "$as_me:30928: error: expected a pathname, not \"$withval\"" >&5 echo "$as_me: error: expected a pathname, not \"$withval\"" >&2;} { (exit 1); exit 1; }; } ;; @@ -30933,7 +30934,7 @@ esac fi eval MIME_LIBDIR="$withval" -echo "$as_me:30936: result: $MIME_LIBDIR" >&5 +echo "$as_me:30937: result: $MIME_LIBDIR" >&5 echo "${ECHO_T}$MIME_LIBDIR" >&6 MIME_LIBDIR=`echo "$MIME_LIBDIR" | sed -e 's,/$,,' -e 's,$,/,'` @@ -30941,7 +30942,7 @@ cat >>confdefs.h <<EOF #define MIME_LIBDIR "$MIME_LIBDIR" EOF -echo "$as_me:30944: checking if locale-charset selection logic should be used" >&5 +echo "$as_me:30945: 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. @@ -30958,7 +30959,7 @@ else use_locale_charset=yes fi; -echo "$as_me:30961: result: $use_locale_charset" >&5 +echo "$as_me:30962: result: $use_locale_charset" >&5 echo "${ECHO_T}$use_locale_charset" >&6 test "$use_locale_charset" != no && cat >>confdefs.h <<\EOF @@ -30967,7 +30968,7 @@ EOF CHARSET_DEFS= -echo "$as_me:30970: checking if you want only a few charsets" >&5 +echo "$as_me:30971: 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. @@ -30979,7 +30980,7 @@ else fi; if test -n "$cf_charsets" ; then - echo "$as_me:30982: result: yes" >&5 + echo "$as_me:30983: result: yes" >&5 echo "${ECHO_T}yes" >&6 cat >>confdefs.h <<\EOF @@ -30993,7 +30994,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}:30996: testing using minimal list of charsets: $cf_min_charsets ..." 1>&5 +echo "${as_me:-configure}:30997: 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'` @@ -31020,28 +31021,28 @@ echo "${as_me:-configure}:30996: testing using minimal list of charsets: $cf_min then test -n "$verbose" && echo " found $cf_charset" 1>&6 -echo "${as_me:-configure}:31023: testing found $cf_charset ..." 1>&5 +echo "${as_me:-configure}:31024: 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}:31029: testing not found $cf_charset ..." 1>&5 +echo "${as_me:-configure}:31030: testing not found $cf_charset ..." 1>&5 fi done else - echo "$as_me:31034: result: no" >&5 + echo "$as_me:31035: result: no" >&5 echo "${ECHO_T}no" >&6 fi -echo "$as_me:31038: checking for ANSI C header files" >&5 +echo "$as_me:31039: 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 31044 "configure" +#line 31045 "configure" #include "confdefs.h" #include <stdlib.h> #include <stdarg.h> @@ -31049,13 +31050,13 @@ else #include <float.h> _ACEOF -if { (eval echo "$as_me:31052: \"$ac_cpp "conftest.$ac_ext"\"") >&5 +if { (eval echo "$as_me:31053: \"$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:31058: \$? = $ac_status" >&5 + echo "$as_me:31059: \$? = $ac_status" >&5 (exit "$ac_status"); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -31077,7 +31078,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 31080 "configure" +#line 31081 "configure" #include "confdefs.h" #include <string.h> @@ -31095,7 +31096,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 31098 "configure" +#line 31099 "configure" #include "confdefs.h" #include <stdlib.h> @@ -31116,7 +31117,7 @@ if test $ac_cv_header_stdc = yes; then : else cat >"conftest.$ac_ext" <<_ACEOF -#line 31119 "configure" +#line 31120 "configure" #include "confdefs.h" #include <ctype.h> #if ((' ' & 0x0FF) == 0x020) @@ -31142,15 +31143,15 @@ main (void) } _ACEOF rm -f "conftest$ac_exeext" -if { (eval echo "$as_me:31145: \"$ac_link\"") >&5 +if { (eval echo "$as_me:31146: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:31148: \$? = $ac_status" >&5 + echo "$as_me:31149: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='"./conftest$ac_exeext"' - { (eval echo "$as_me:31150: \"$ac_try\"") >&5 + { (eval echo "$as_me:31151: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:31153: \$? = $ac_status" >&5 + echo "$as_me:31154: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then : else @@ -31163,7 +31164,7 @@ rm -f core ./core.* ./*.core "conftest$ac_exeext" "conftest.$ac_objext" "conftes fi fi fi -echo "$as_me:31166: result: $ac_cv_header_stdc" >&5 +echo "$as_me:31167: result: $ac_cv_header_stdc" >&5 echo "${ECHO_T}$ac_cv_header_stdc" >&6 if test $ac_cv_header_stdc = yes; then @@ -31173,13 +31174,13 @@ EOF fi -echo "$as_me:31176: checking whether time.h and sys/time.h may both be included" >&5 +echo "$as_me:31177: 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 31182 "configure" +#line 31183 "configure" #include "confdefs.h" #include <sys/types.h> #include <sys/time.h> @@ -31195,16 +31196,16 @@ return 0; } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:31198: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:31199: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:31201: \$? = $ac_status" >&5 + echo "$as_me:31202: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:31204: \"$ac_try\"") >&5 + { (eval echo "$as_me:31205: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:31207: \$? = $ac_status" >&5 + echo "$as_me:31208: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_header_time=yes else @@ -31214,7 +31215,7 @@ ac_cv_header_time=no fi rm -f "conftest.$ac_objext" "conftest.$ac_ext" fi -echo "$as_me:31217: result: $ac_cv_header_time" >&5 +echo "$as_me:31218: result: $ac_cv_header_time" >&5 echo "${ECHO_T}$ac_cv_header_time" >&6 if test $ac_cv_header_time = yes; then @@ -31227,13 +31228,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:31230: checking for $ac_hdr that defines DIR" >&5 +echo "$as_me:31231: 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 31236 "configure" +#line 31237 "configure" #include "confdefs.h" #include <sys/types.h> #include <$ac_hdr> @@ -31248,16 +31249,16 @@ return 0; } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:31251: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:31252: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:31254: \$? = $ac_status" >&5 + echo "$as_me:31255: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:31257: \"$ac_try\"") >&5 + { (eval echo "$as_me:31258: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:31260: \$? = $ac_status" >&5 + echo "$as_me:31261: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then eval "$as_ac_Header=yes" else @@ -31267,7 +31268,7 @@ eval "$as_ac_Header=no" fi rm -f "conftest.$ac_objext" "conftest.$ac_ext" fi -echo "$as_me:31270: result: `eval echo '${'"$as_ac_Header"'}'`" >&5 +echo "$as_me:31271: 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 @@ -31280,7 +31281,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:31283: checking for opendir in -ldir" >&5 + echo "$as_me:31284: 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 @@ -31288,7 +31289,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-ldir $LIBS" cat >"conftest.$ac_ext" <<_ACEOF -#line 31291 "configure" +#line 31292 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -31307,16 +31308,16 @@ opendir (); } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:31310: \"$ac_link\"") >&5 +if { (eval echo "$as_me:31311: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:31313: \$? = $ac_status" >&5 + echo "$as_me:31314: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:31316: \"$ac_try\"") >&5 + { (eval echo "$as_me:31317: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:31319: \$? = $ac_status" >&5 + echo "$as_me:31320: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_lib_dir_opendir=yes else @@ -31327,14 +31328,14 @@ fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:31330: result: $ac_cv_lib_dir_opendir" >&5 +echo "$as_me:31331: 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:31337: checking for opendir in -lx" >&5 + echo "$as_me:31338: 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 @@ -31342,7 +31343,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lx $LIBS" cat >"conftest.$ac_ext" <<_ACEOF -#line 31345 "configure" +#line 31346 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -31361,16 +31362,16 @@ opendir (); } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:31364: \"$ac_link\"") >&5 +if { (eval echo "$as_me:31365: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:31367: \$? = $ac_status" >&5 + echo "$as_me:31368: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:31370: \"$ac_try\"") >&5 + { (eval echo "$as_me:31371: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:31373: \$? = $ac_status" >&5 + echo "$as_me:31374: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_lib_x_opendir=yes else @@ -31381,7 +31382,7 @@ fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:31384: result: $ac_cv_lib_x_opendir" >&5 +echo "$as_me:31385: 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" @@ -31410,23 +31411,23 @@ for ac_header in \ do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` -echo "$as_me:31413: checking for $ac_header" >&5 +echo "$as_me:31414: 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 31419 "configure" +#line 31420 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:31423: \"$ac_cpp "conftest.$ac_ext"\"") >&5 +if { (eval echo "$as_me:31424: \"$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:31429: \$? = $ac_status" >&5 + echo "$as_me:31430: \$? = $ac_status" >&5 (exit "$ac_status"); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -31445,7 +31446,7 @@ else fi rm -f conftest.err "conftest.$ac_ext" fi -echo "$as_me:31448: result: `eval echo '${'"$as_ac_Header"'}'`" >&5 +echo "$as_me:31449: 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 @@ -31455,14 +31456,14 @@ EOF fi done -echo "$as_me:31458: checking termio.h and termios.h" >&5 +echo "$as_me:31459: 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 31465 "configure" +#line 31466 "configure" #include "confdefs.h" #include <stdio.h> @@ -31481,16 +31482,16 @@ putchar (0x0a) } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:31484: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:31485: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:31487: \$? = $ac_status" >&5 + echo "$as_me:31488: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:31490: \"$ac_try\"") >&5 + { (eval echo "$as_me:31491: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:31493: \$? = $ac_status" >&5 + echo "$as_me:31494: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_termio_and_termios=yes else @@ -31501,21 +31502,21 @@ fi rm -f "conftest.$ac_objext" "conftest.$ac_ext" fi -echo "$as_me:31504: result: $cf_cv_termio_and_termios" >&5 +echo "$as_me:31505: 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:31511: checking for sigaction and structs" >&5 +echo "$as_me:31512: 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 31518 "configure" +#line 31519 "configure" #include "confdefs.h" #include <sys/types.h> @@ -31535,16 +31536,16 @@ struct sigaction act; } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:31538: \"$ac_link\"") >&5 +if { (eval echo "$as_me:31539: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:31541: \$? = $ac_status" >&5 + echo "$as_me:31542: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:31544: \"$ac_try\"") >&5 + { (eval echo "$as_me:31545: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:31547: \$? = $ac_status" >&5 + echo "$as_me:31548: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_func_sigaction=yes else @@ -31555,7 +31556,7 @@ fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:31558: result: $cf_cv_func_sigaction" >&5 +echo "$as_me:31559: result: $cf_cv_func_sigaction" >&5 echo "${ECHO_T}$cf_cv_func_sigaction" >&6 test "$cf_cv_func_sigaction" = yes && cat >>confdefs.h <<\EOF @@ -31565,23 +31566,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:31568: checking for $ac_header" >&5 +echo "$as_me:31569: 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 31574 "configure" +#line 31575 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:31578: \"$ac_cpp "conftest.$ac_ext"\"") >&5 +if { (eval echo "$as_me:31579: \"$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:31584: \$? = $ac_status" >&5 + echo "$as_me:31585: \$? = $ac_status" >&5 (exit "$ac_status"); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -31600,7 +31601,7 @@ else fi rm -f conftest.err "conftest.$ac_ext" fi -echo "$as_me:31603: result: `eval echo '${'"$as_ac_Header"'}'`" >&5 +echo "$as_me:31604: 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 @@ -31621,23 +31622,23 @@ else for ac_header in wait.h do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` -echo "$as_me:31624: checking for $ac_header" >&5 +echo "$as_me:31625: 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 31630 "configure" +#line 31631 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:31634: \"$ac_cpp "conftest.$ac_ext"\"") >&5 +if { (eval echo "$as_me:31635: \"$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:31640: \$? = $ac_status" >&5 + echo "$as_me:31641: \$? = $ac_status" >&5 (exit "$ac_status"); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -31656,7 +31657,7 @@ else fi rm -f conftest.err "conftest.$ac_ext" fi -echo "$as_me:31659: result: `eval echo '${'"$as_ac_Header"'}'`" >&5 +echo "$as_me:31660: 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 @@ -31669,23 +31670,23 @@ done for ac_header in waitstatus.h do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` -echo "$as_me:31672: checking for $ac_header" >&5 +echo "$as_me:31673: 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 31678 "configure" +#line 31679 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:31682: \"$ac_cpp "conftest.$ac_ext"\"") >&5 +if { (eval echo "$as_me:31683: \"$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:31688: \$? = $ac_status" >&5 + echo "$as_me:31689: \$? = $ac_status" >&5 (exit "$ac_status"); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -31704,7 +31705,7 @@ else fi rm -f conftest.err "conftest.$ac_ext" fi -echo "$as_me:31707: result: `eval echo '${'"$as_ac_Header"'}'`" >&5 +echo "$as_me:31708: 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 @@ -31726,14 +31727,14 @@ cf_wait_headers="$cf_wait_headers fi fi -echo "$as_me:31729: checking for union wait" >&5 +echo "$as_me:31730: 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 31736 "configure" +#line 31737 "configure" #include "confdefs.h" $cf_wait_headers int @@ -31752,16 +31753,16 @@ static int x; } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:31755: \"$ac_link\"") >&5 +if { (eval echo "$as_me:31756: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:31758: \$? = $ac_status" >&5 + echo "$as_me:31759: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:31761: \"$ac_try\"") >&5 + { (eval echo "$as_me:31762: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:31764: \$? = $ac_status" >&5 + echo "$as_me:31765: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_type_unionwait=no echo compiles ok w/o union wait 1>&5 @@ -31771,7 +31772,7 @@ else cat "conftest.$ac_ext" >&5 cat >"conftest.$ac_ext" <<_ACEOF -#line 31774 "configure" +#line 31775 "configure" #include "confdefs.h" $cf_wait_headers int @@ -31798,16 +31799,16 @@ union wait x; } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:31801: \"$ac_link\"") >&5 +if { (eval echo "$as_me:31802: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:31804: \$? = $ac_status" >&5 + echo "$as_me:31805: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:31807: \"$ac_try\"") >&5 + { (eval echo "$as_me:31808: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:31810: \$? = $ac_status" >&5 + echo "$as_me:31811: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_type_unionwait=yes echo compiles ok with union wait and possibly macros too 1>&5 @@ -31822,7 +31823,7 @@ fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:31825: result: $cf_cv_type_unionwait" >&5 +echo "$as_me:31826: result: $cf_cv_type_unionwait" >&5 echo "${ECHO_T}$cf_cv_type_unionwait" >&6 test "$cf_cv_type_unionwait" = yes && cat >>confdefs.h <<\EOF @@ -31831,14 +31832,14 @@ EOF if test "$cf_cv_type_unionwait" = yes; then - echo "$as_me:31834: checking if union wait can be used as wait-arg" >&5 + echo "$as_me:31835: 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 31841 "configure" +#line 31842 "configure" #include "confdefs.h" $cf_wait_headers int @@ -31850,16 +31851,16 @@ union wait x; wait(&x) } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:31853: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:31854: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:31856: \$? = $ac_status" >&5 + echo "$as_me:31857: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:31859: \"$ac_try\"") >&5 + { (eval echo "$as_me:31860: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:31862: \$? = $ac_status" >&5 + echo "$as_me:31863: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_arg_union_wait=yes else @@ -31871,21 +31872,21 @@ rm -f "conftest.$ac_objext" "conftest.$ac_ext" fi - echo "$as_me:31874: result: $cf_cv_arg_union_wait" >&5 + echo "$as_me:31875: 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:31881: checking if union wait can be used as waitpid-arg" >&5 + echo "$as_me:31882: 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 31888 "configure" +#line 31889 "configure" #include "confdefs.h" $cf_wait_headers int @@ -31897,16 +31898,16 @@ union wait x; waitpid(0, &x, 0) } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:31900: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:31901: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:31903: \$? = $ac_status" >&5 + echo "$as_me:31904: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:31906: \"$ac_try\"") >&5 + { (eval echo "$as_me:31907: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:31909: \$? = $ac_status" >&5 + echo "$as_me:31910: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_arg_union_waitpid=yes else @@ -31918,7 +31919,7 @@ rm -f "conftest.$ac_objext" "conftest.$ac_ext" fi - echo "$as_me:31921: result: $cf_cv_arg_union_waitpid" >&5 + echo "$as_me:31922: 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 @@ -31927,13 +31928,13 @@ EOF fi -echo "$as_me:31930: checking for uid_t in sys/types.h" >&5 +echo "$as_me:31931: 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 31936 "configure" +#line 31937 "configure" #include "confdefs.h" #include <sys/types.h> @@ -31947,7 +31948,7 @@ fi rm -rf conftest* fi -echo "$as_me:31950: result: $ac_cv_type_uid_t" >&5 +echo "$as_me:31951: 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 @@ -31961,7 +31962,7 @@ EOF fi -echo "$as_me:31964: checking type of array argument to getgroups" >&5 +echo "$as_me:31965: 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 @@ -31970,7 +31971,7 @@ else ac_cv_type_getgroups=cross else cat >"conftest.$ac_ext" <<_ACEOF -#line 31973 "configure" +#line 31974 "configure" #include "confdefs.h" $ac_includes_default /* Thanks to Mike Rendell for this test. */ @@ -31997,15 +31998,15 @@ main (void) } _ACEOF rm -f "conftest$ac_exeext" -if { (eval echo "$as_me:32000: \"$ac_link\"") >&5 +if { (eval echo "$as_me:32001: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:32003: \$? = $ac_status" >&5 + echo "$as_me:32004: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='"./conftest$ac_exeext"' - { (eval echo "$as_me:32005: \"$ac_try\"") >&5 + { (eval echo "$as_me:32006: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:32008: \$? = $ac_status" >&5 + echo "$as_me:32009: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_type_getgroups=gid_t else @@ -32018,7 +32019,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 32021 "configure" +#line 32022 "configure" #include "confdefs.h" #include <unistd.h> @@ -32033,20 +32034,20 @@ rm -rf conftest* fi fi -echo "$as_me:32036: result: $ac_cv_type_getgroups" >&5 +echo "$as_me:32037: 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:32043: checking for off_t" >&5 +echo "$as_me:32044: 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 32049 "configure" +#line 32050 "configure" #include "confdefs.h" $ac_includes_default int @@ -32061,16 +32062,16 @@ if (sizeof (off_t)) } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:32064: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:32065: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:32067: \$? = $ac_status" >&5 + echo "$as_me:32068: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:32070: \"$ac_try\"") >&5 + { (eval echo "$as_me:32071: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:32073: \$? = $ac_status" >&5 + echo "$as_me:32074: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_type_off_t=yes else @@ -32080,7 +32081,7 @@ ac_cv_type_off_t=no fi rm -f "conftest.$ac_objext" "conftest.$ac_ext" fi -echo "$as_me:32083: result: $ac_cv_type_off_t" >&5 +echo "$as_me:32084: 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 : @@ -32092,13 +32093,13 @@ EOF fi -echo "$as_me:32095: checking for pid_t" >&5 +echo "$as_me:32096: 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 32101 "configure" +#line 32102 "configure" #include "confdefs.h" $ac_includes_default int @@ -32113,16 +32114,16 @@ if (sizeof (pid_t)) } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:32116: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:32117: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:32119: \$? = $ac_status" >&5 + echo "$as_me:32120: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:32122: \"$ac_try\"") >&5 + { (eval echo "$as_me:32123: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:32125: \$? = $ac_status" >&5 + echo "$as_me:32126: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_type_pid_t=yes else @@ -32132,7 +32133,7 @@ ac_cv_type_pid_t=no fi rm -f "conftest.$ac_objext" "conftest.$ac_ext" fi -echo "$as_me:32135: result: $ac_cv_type_pid_t" >&5 +echo "$as_me:32136: 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 : @@ -32144,13 +32145,13 @@ EOF fi -echo "$as_me:32147: checking for uid_t in sys/types.h" >&5 +echo "$as_me:32148: 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 32153 "configure" +#line 32154 "configure" #include "confdefs.h" #include <sys/types.h> @@ -32164,7 +32165,7 @@ fi rm -rf conftest* fi -echo "$as_me:32167: result: $ac_cv_type_uid_t" >&5 +echo "$as_me:32168: 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 @@ -32178,13 +32179,13 @@ EOF fi -echo "$as_me:32181: checking for mode_t" >&5 +echo "$as_me:32182: 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 32187 "configure" +#line 32188 "configure" #include "confdefs.h" $ac_includes_default int @@ -32199,16 +32200,16 @@ if (sizeof (mode_t)) } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:32202: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:32203: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:32205: \$? = $ac_status" >&5 + echo "$as_me:32206: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:32208: \"$ac_try\"") >&5 + { (eval echo "$as_me:32209: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:32211: \$? = $ac_status" >&5 + echo "$as_me:32212: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_type_mode_t=yes else @@ -32218,7 +32219,7 @@ ac_cv_type_mode_t=no fi rm -f "conftest.$ac_objext" "conftest.$ac_ext" fi -echo "$as_me:32221: result: $ac_cv_type_mode_t" >&5 +echo "$as_me:32222: 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 : @@ -32230,13 +32231,13 @@ EOF fi - echo "$as_me:32233: checking for ssize_t" >&5 + echo "$as_me:32234: 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 32239 "configure" +#line 32240 "configure" #include "confdefs.h" $ac_includes_default int @@ -32251,16 +32252,16 @@ if (sizeof (ssize_t)) } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:32254: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:32255: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:32257: \$? = $ac_status" >&5 + echo "$as_me:32258: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:32260: \"$ac_try\"") >&5 + { (eval echo "$as_me:32261: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:32263: \$? = $ac_status" >&5 + echo "$as_me:32264: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_type_ssize_t=yes else @@ -32270,7 +32271,7 @@ ac_cv_type_ssize_t=no fi rm -f "conftest.$ac_objext" "conftest.$ac_ext" fi -echo "$as_me:32273: result: $ac_cv_type_ssize_t" >&5 +echo "$as_me:32274: 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 @@ -32286,13 +32287,13 @@ EOF fi - echo "$as_me:32289: checking for socklen_t" >&5 + echo "$as_me:32290: 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 32295 "configure" +#line 32296 "configure" #include "confdefs.h" #include <sys/types.h> @@ -32310,16 +32311,16 @@ if (sizeof (socklen_t)) } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:32313: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:32314: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:32316: \$? = $ac_status" >&5 + echo "$as_me:32317: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:32319: \"$ac_try\"") >&5 + { (eval echo "$as_me:32320: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:32322: \$? = $ac_status" >&5 + echo "$as_me:32323: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_type_socklen_t=yes else @@ -32329,7 +32330,7 @@ ac_cv_type_socklen_t=no fi rm -f "conftest.$ac_objext" "conftest.$ac_ext" fi -echo "$as_me:32332: result: $ac_cv_type_socklen_t" >&5 +echo "$as_me:32333: 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 @@ -32345,7 +32346,7 @@ EOF fi -echo "$as_me:32348: checking for long long type" >&5 +echo "$as_me:32349: 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 @@ -32376,7 +32377,7 @@ _CFEOF rm -f conftest* fi -echo "$as_me:32379: result: $cf_cv_type_long_long" >&5 +echo "$as_me:32380: 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 @@ -32387,14 +32388,14 @@ EOF fi -echo "$as_me:32390: checking for tm.tm_gmtoff" >&5 +echo "$as_me:32391: 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 32397 "configure" +#line 32398 "configure" #include "confdefs.h" #ifdef TIME_WITH_SYS_TIME @@ -32419,16 +32420,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:32422: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:32423: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:32425: \$? = $ac_status" >&5 + echo "$as_me:32426: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:32428: \"$ac_try\"") >&5 + { (eval echo "$as_me:32429: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:32431: \$? = $ac_status" >&5 + echo "$as_me:32432: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_tm_gmtoff=yes else @@ -32439,20 +32440,20 @@ fi rm -f "conftest.$ac_objext" "conftest.$ac_ext" fi -echo "$as_me:32442: result: $cf_cv_tm_gmtoff" >&5 +echo "$as_me:32443: 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:32449: checking for int" >&5 +echo "$as_me:32450: 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 32455 "configure" +#line 32456 "configure" #include "confdefs.h" $ac_includes_default int @@ -32467,16 +32468,16 @@ if (sizeof (int)) } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:32470: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:32471: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:32473: \$? = $ac_status" >&5 + echo "$as_me:32474: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:32476: \"$ac_try\"") >&5 + { (eval echo "$as_me:32477: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:32479: \$? = $ac_status" >&5 + echo "$as_me:32480: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_type_int=yes else @@ -32486,10 +32487,10 @@ ac_cv_type_int=no fi rm -f "conftest.$ac_objext" "conftest.$ac_ext" fi -echo "$as_me:32489: result: $ac_cv_type_int" >&5 +echo "$as_me:32490: result: $ac_cv_type_int" >&5 echo "${ECHO_T}$ac_cv_type_int" >&6 -echo "$as_me:32492: checking size of int" >&5 +echo "$as_me:32493: 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 @@ -32498,7 +32499,7 @@ else if test "$cross_compiling" = yes; then # Depending upon the size, compute the lo and hi bounds. cat >"conftest.$ac_ext" <<_ACEOF -#line 32501 "configure" +#line 32502 "configure" #include "confdefs.h" $ac_includes_default int @@ -32510,21 +32511,21 @@ int _array_ [1 - 2 * !((sizeof (int)) >= 0)] } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:32513: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:32514: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:32516: \$? = $ac_status" >&5 + echo "$as_me:32517: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:32519: \"$ac_try\"") >&5 + { (eval echo "$as_me:32520: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:32522: \$? = $ac_status" >&5 + echo "$as_me:32523: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_lo=0 ac_mid=0 while :; do cat >"conftest.$ac_ext" <<_ACEOF -#line 32527 "configure" +#line 32528 "configure" #include "confdefs.h" $ac_includes_default int @@ -32536,16 +32537,16 @@ int _array_ [1 - 2 * !((sizeof (int)) <= $ac_mid)] } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:32539: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:32540: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:32542: \$? = $ac_status" >&5 + echo "$as_me:32543: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:32545: \"$ac_try\"") >&5 + { (eval echo "$as_me:32546: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:32548: \$? = $ac_status" >&5 + echo "$as_me:32549: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_hi=$ac_mid; break else @@ -32561,7 +32562,7 @@ cat "conftest.$ac_ext" >&5 ac_hi=-1 ac_mid=-1 while :; do cat >"conftest.$ac_ext" <<_ACEOF -#line 32564 "configure" +#line 32565 "configure" #include "confdefs.h" $ac_includes_default int @@ -32573,16 +32574,16 @@ int _array_ [1 - 2 * !((sizeof (int)) >= $ac_mid)] } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:32576: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:32577: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:32579: \$? = $ac_status" >&5 + echo "$as_me:32580: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:32582: \"$ac_try\"") >&5 + { (eval echo "$as_me:32583: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:32585: \$? = $ac_status" >&5 + echo "$as_me:32586: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_lo=$ac_mid; break else @@ -32598,7 +32599,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 32601 "configure" +#line 32602 "configure" #include "confdefs.h" $ac_includes_default int @@ -32610,16 +32611,16 @@ int _array_ [1 - 2 * !((sizeof (int)) <= $ac_mid)] } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:32613: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:32614: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:32616: \$? = $ac_status" >&5 + echo "$as_me:32617: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:32619: \"$ac_try\"") >&5 + { (eval echo "$as_me:32620: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:32622: \$? = $ac_status" >&5 + echo "$as_me:32623: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_hi=$ac_mid else @@ -32632,12 +32633,12 @@ done ac_cv_sizeof_int=$ac_lo else if test "$cross_compiling" = yes; then - { { echo "$as_me:32635: error: cannot run test program while cross compiling" >&5 + { { echo "$as_me:32636: 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 32640 "configure" +#line 32641 "configure" #include "confdefs.h" $ac_includes_default int @@ -32653,15 +32654,15 @@ fclose (f); } _ACEOF rm -f "conftest$ac_exeext" -if { (eval echo "$as_me:32656: \"$ac_link\"") >&5 +if { (eval echo "$as_me:32657: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:32659: \$? = $ac_status" >&5 + echo "$as_me:32660: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='"./conftest$ac_exeext"' - { (eval echo "$as_me:32661: \"$ac_try\"") >&5 + { (eval echo "$as_me:32662: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:32664: \$? = $ac_status" >&5 + echo "$as_me:32665: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_sizeof_int=`cat conftest.val` else @@ -32677,7 +32678,7 @@ else ac_cv_sizeof_int=0 fi fi -echo "$as_me:32680: result: $ac_cv_sizeof_int" >&5 +echo "$as_me:32681: 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 @@ -32686,11 +32687,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:32689: WARNING: using 4 for sizeof int" >&5 + { echo "$as_me:32690: 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:32693: WARNING: sizeof int not found, using 4" >&5 + { echo "$as_me:32694: 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 @@ -32704,13 +32705,13 @@ cf_cv_type=`echo "sizeof_int" | sed y%abcdefghijklmnopqrstuvwxyz./-%ABCDEFGHIJKL fi fi -echo "$as_me:32707: checking for long" >&5 +echo "$as_me:32708: 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 32713 "configure" +#line 32714 "configure" #include "confdefs.h" $ac_includes_default int @@ -32725,16 +32726,16 @@ if (sizeof (long)) } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:32728: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:32729: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:32731: \$? = $ac_status" >&5 + echo "$as_me:32732: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:32734: \"$ac_try\"") >&5 + { (eval echo "$as_me:32735: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:32737: \$? = $ac_status" >&5 + echo "$as_me:32738: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_type_long=yes else @@ -32744,10 +32745,10 @@ ac_cv_type_long=no fi rm -f "conftest.$ac_objext" "conftest.$ac_ext" fi -echo "$as_me:32747: result: $ac_cv_type_long" >&5 +echo "$as_me:32748: result: $ac_cv_type_long" >&5 echo "${ECHO_T}$ac_cv_type_long" >&6 -echo "$as_me:32750: checking size of long" >&5 +echo "$as_me:32751: 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 @@ -32756,7 +32757,7 @@ else if test "$cross_compiling" = yes; then # Depending upon the size, compute the lo and hi bounds. cat >"conftest.$ac_ext" <<_ACEOF -#line 32759 "configure" +#line 32760 "configure" #include "confdefs.h" $ac_includes_default int @@ -32768,21 +32769,21 @@ int _array_ [1 - 2 * !((sizeof (long)) >= 0)] } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:32771: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:32772: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:32774: \$? = $ac_status" >&5 + echo "$as_me:32775: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:32777: \"$ac_try\"") >&5 + { (eval echo "$as_me:32778: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:32780: \$? = $ac_status" >&5 + echo "$as_me:32781: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_lo=0 ac_mid=0 while :; do cat >"conftest.$ac_ext" <<_ACEOF -#line 32785 "configure" +#line 32786 "configure" #include "confdefs.h" $ac_includes_default int @@ -32794,16 +32795,16 @@ int _array_ [1 - 2 * !((sizeof (long)) <= $ac_mid)] } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:32797: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:32798: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:32800: \$? = $ac_status" >&5 + echo "$as_me:32801: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:32803: \"$ac_try\"") >&5 + { (eval echo "$as_me:32804: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:32806: \$? = $ac_status" >&5 + echo "$as_me:32807: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_hi=$ac_mid; break else @@ -32819,7 +32820,7 @@ cat "conftest.$ac_ext" >&5 ac_hi=-1 ac_mid=-1 while :; do cat >"conftest.$ac_ext" <<_ACEOF -#line 32822 "configure" +#line 32823 "configure" #include "confdefs.h" $ac_includes_default int @@ -32831,16 +32832,16 @@ int _array_ [1 - 2 * !((sizeof (long)) >= $ac_mid)] } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:32834: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:32835: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:32837: \$? = $ac_status" >&5 + echo "$as_me:32838: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:32840: \"$ac_try\"") >&5 + { (eval echo "$as_me:32841: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:32843: \$? = $ac_status" >&5 + echo "$as_me:32844: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_lo=$ac_mid; break else @@ -32856,7 +32857,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 32859 "configure" +#line 32860 "configure" #include "confdefs.h" $ac_includes_default int @@ -32868,16 +32869,16 @@ int _array_ [1 - 2 * !((sizeof (long)) <= $ac_mid)] } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:32871: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:32872: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:32874: \$? = $ac_status" >&5 + echo "$as_me:32875: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:32877: \"$ac_try\"") >&5 + { (eval echo "$as_me:32878: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:32880: \$? = $ac_status" >&5 + echo "$as_me:32881: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_hi=$ac_mid else @@ -32890,12 +32891,12 @@ done ac_cv_sizeof_long=$ac_lo else if test "$cross_compiling" = yes; then - { { echo "$as_me:32893: error: cannot run test program while cross compiling" >&5 + { { echo "$as_me:32894: 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 32898 "configure" +#line 32899 "configure" #include "confdefs.h" $ac_includes_default int @@ -32911,15 +32912,15 @@ fclose (f); } _ACEOF rm -f "conftest$ac_exeext" -if { (eval echo "$as_me:32914: \"$ac_link\"") >&5 +if { (eval echo "$as_me:32915: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:32917: \$? = $ac_status" >&5 + echo "$as_me:32918: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='"./conftest$ac_exeext"' - { (eval echo "$as_me:32919: \"$ac_try\"") >&5 + { (eval echo "$as_me:32920: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:32922: \$? = $ac_status" >&5 + echo "$as_me:32923: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_sizeof_long=`cat conftest.val` else @@ -32935,7 +32936,7 @@ else ac_cv_sizeof_long=0 fi fi -echo "$as_me:32938: result: $ac_cv_sizeof_long" >&5 +echo "$as_me:32939: 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 @@ -32944,11 +32945,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:32947: WARNING: using 4 for sizeof long" >&5 + { echo "$as_me:32948: 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:32951: WARNING: sizeof long not found, using 4" >&5 + { echo "$as_me:32952: 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 @@ -32962,13 +32963,13 @@ cf_cv_type=`echo "sizeof_long" | sed y%abcdefghijklmnopqrstuvwxyz./-%ABCDEFGHIJK fi fi -echo "$as_me:32965: checking for off_t" >&5 +echo "$as_me:32966: 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 32971 "configure" +#line 32972 "configure" #include "confdefs.h" $ac_includes_default int @@ -32983,16 +32984,16 @@ if (sizeof (off_t)) } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:32986: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:32987: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:32989: \$? = $ac_status" >&5 + echo "$as_me:32990: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:32992: \"$ac_try\"") >&5 + { (eval echo "$as_me:32993: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:32995: \$? = $ac_status" >&5 + echo "$as_me:32996: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_type_off_t=yes else @@ -33002,10 +33003,10 @@ ac_cv_type_off_t=no fi rm -f "conftest.$ac_objext" "conftest.$ac_ext" fi -echo "$as_me:33005: result: $ac_cv_type_off_t" >&5 +echo "$as_me:33006: result: $ac_cv_type_off_t" >&5 echo "${ECHO_T}$ac_cv_type_off_t" >&6 -echo "$as_me:33008: checking size of off_t" >&5 +echo "$as_me:33009: 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 @@ -33014,7 +33015,7 @@ else if test "$cross_compiling" = yes; then # Depending upon the size, compute the lo and hi bounds. cat >"conftest.$ac_ext" <<_ACEOF -#line 33017 "configure" +#line 33018 "configure" #include "confdefs.h" $ac_includes_default int @@ -33026,21 +33027,21 @@ int _array_ [1 - 2 * !((sizeof (off_t)) >= 0)] } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:33029: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:33030: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:33032: \$? = $ac_status" >&5 + echo "$as_me:33033: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:33035: \"$ac_try\"") >&5 + { (eval echo "$as_me:33036: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:33038: \$? = $ac_status" >&5 + echo "$as_me:33039: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_lo=0 ac_mid=0 while :; do cat >"conftest.$ac_ext" <<_ACEOF -#line 33043 "configure" +#line 33044 "configure" #include "confdefs.h" $ac_includes_default int @@ -33052,16 +33053,16 @@ int _array_ [1 - 2 * !((sizeof (off_t)) <= $ac_mid)] } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:33055: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:33056: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:33058: \$? = $ac_status" >&5 + echo "$as_me:33059: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:33061: \"$ac_try\"") >&5 + { (eval echo "$as_me:33062: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:33064: \$? = $ac_status" >&5 + echo "$as_me:33065: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_hi=$ac_mid; break else @@ -33077,7 +33078,7 @@ cat "conftest.$ac_ext" >&5 ac_hi=-1 ac_mid=-1 while :; do cat >"conftest.$ac_ext" <<_ACEOF -#line 33080 "configure" +#line 33081 "configure" #include "confdefs.h" $ac_includes_default int @@ -33089,16 +33090,16 @@ int _array_ [1 - 2 * !((sizeof (off_t)) >= $ac_mid)] } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:33092: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:33093: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:33095: \$? = $ac_status" >&5 + echo "$as_me:33096: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:33098: \"$ac_try\"") >&5 + { (eval echo "$as_me:33099: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:33101: \$? = $ac_status" >&5 + echo "$as_me:33102: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_lo=$ac_mid; break else @@ -33114,7 +33115,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 33117 "configure" +#line 33118 "configure" #include "confdefs.h" $ac_includes_default int @@ -33126,16 +33127,16 @@ int _array_ [1 - 2 * !((sizeof (off_t)) <= $ac_mid)] } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:33129: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:33130: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:33132: \$? = $ac_status" >&5 + echo "$as_me:33133: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:33135: \"$ac_try\"") >&5 + { (eval echo "$as_me:33136: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:33138: \$? = $ac_status" >&5 + echo "$as_me:33139: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_hi=$ac_mid else @@ -33148,12 +33149,12 @@ done ac_cv_sizeof_off_t=$ac_lo else if test "$cross_compiling" = yes; then - { { echo "$as_me:33151: error: cannot run test program while cross compiling" >&5 + { { echo "$as_me:33152: 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 33156 "configure" +#line 33157 "configure" #include "confdefs.h" $ac_includes_default int @@ -33169,15 +33170,15 @@ fclose (f); } _ACEOF rm -f "conftest$ac_exeext" -if { (eval echo "$as_me:33172: \"$ac_link\"") >&5 +if { (eval echo "$as_me:33173: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:33175: \$? = $ac_status" >&5 + echo "$as_me:33176: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='"./conftest$ac_exeext"' - { (eval echo "$as_me:33177: \"$ac_try\"") >&5 + { (eval echo "$as_me:33178: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:33180: \$? = $ac_status" >&5 + echo "$as_me:33181: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_sizeof_off_t=`cat conftest.val` else @@ -33193,7 +33194,7 @@ else ac_cv_sizeof_off_t=0 fi fi -echo "$as_me:33196: result: $ac_cv_sizeof_off_t" >&5 +echo "$as_me:33197: 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 @@ -33202,11 +33203,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:33205: WARNING: using 4 for sizeof off_t" >&5 + { echo "$as_me:33206: 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:33209: WARNING: sizeof off_t not found, using 4" >&5 + { echo "$as_me:33210: 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 @@ -33220,13 +33221,13 @@ cf_cv_type=`echo "sizeof_off_t" | sed y%abcdefghijklmnopqrstuvwxyz./-%ABCDEFGHIJ fi fi -echo "$as_me:33223: checking for size_t" >&5 +echo "$as_me:33224: 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 33229 "configure" +#line 33230 "configure" #include "confdefs.h" $ac_includes_default int @@ -33241,16 +33242,16 @@ if (sizeof (size_t)) } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:33244: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:33245: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:33247: \$? = $ac_status" >&5 + echo "$as_me:33248: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:33250: \"$ac_try\"") >&5 + { (eval echo "$as_me:33251: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:33253: \$? = $ac_status" >&5 + echo "$as_me:33254: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_type_size_t=yes else @@ -33260,10 +33261,10 @@ ac_cv_type_size_t=no fi rm -f "conftest.$ac_objext" "conftest.$ac_ext" fi -echo "$as_me:33263: result: $ac_cv_type_size_t" >&5 +echo "$as_me:33264: result: $ac_cv_type_size_t" >&5 echo "${ECHO_T}$ac_cv_type_size_t" >&6 -echo "$as_me:33266: checking size of size_t" >&5 +echo "$as_me:33267: 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 @@ -33272,7 +33273,7 @@ else if test "$cross_compiling" = yes; then # Depending upon the size, compute the lo and hi bounds. cat >"conftest.$ac_ext" <<_ACEOF -#line 33275 "configure" +#line 33276 "configure" #include "confdefs.h" $ac_includes_default int @@ -33284,21 +33285,21 @@ int _array_ [1 - 2 * !((sizeof (size_t)) >= 0)] } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:33287: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:33288: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:33290: \$? = $ac_status" >&5 + echo "$as_me:33291: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:33293: \"$ac_try\"") >&5 + { (eval echo "$as_me:33294: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:33296: \$? = $ac_status" >&5 + echo "$as_me:33297: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_lo=0 ac_mid=0 while :; do cat >"conftest.$ac_ext" <<_ACEOF -#line 33301 "configure" +#line 33302 "configure" #include "confdefs.h" $ac_includes_default int @@ -33310,16 +33311,16 @@ int _array_ [1 - 2 * !((sizeof (size_t)) <= $ac_mid)] } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:33313: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:33314: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:33316: \$? = $ac_status" >&5 + echo "$as_me:33317: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:33319: \"$ac_try\"") >&5 + { (eval echo "$as_me:33320: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:33322: \$? = $ac_status" >&5 + echo "$as_me:33323: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_hi=$ac_mid; break else @@ -33335,7 +33336,7 @@ cat "conftest.$ac_ext" >&5 ac_hi=-1 ac_mid=-1 while :; do cat >"conftest.$ac_ext" <<_ACEOF -#line 33338 "configure" +#line 33339 "configure" #include "confdefs.h" $ac_includes_default int @@ -33347,16 +33348,16 @@ int _array_ [1 - 2 * !((sizeof (size_t)) >= $ac_mid)] } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:33350: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:33351: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:33353: \$? = $ac_status" >&5 + echo "$as_me:33354: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:33356: \"$ac_try\"") >&5 + { (eval echo "$as_me:33357: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:33359: \$? = $ac_status" >&5 + echo "$as_me:33360: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_lo=$ac_mid; break else @@ -33372,7 +33373,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 33375 "configure" +#line 33376 "configure" #include "confdefs.h" $ac_includes_default int @@ -33384,16 +33385,16 @@ int _array_ [1 - 2 * !((sizeof (size_t)) <= $ac_mid)] } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:33387: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:33388: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:33390: \$? = $ac_status" >&5 + echo "$as_me:33391: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:33393: \"$ac_try\"") >&5 + { (eval echo "$as_me:33394: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:33396: \$? = $ac_status" >&5 + echo "$as_me:33397: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_hi=$ac_mid else @@ -33406,12 +33407,12 @@ done ac_cv_sizeof_size_t=$ac_lo else if test "$cross_compiling" = yes; then - { { echo "$as_me:33409: error: cannot run test program while cross compiling" >&5 + { { echo "$as_me:33410: 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 33414 "configure" +#line 33415 "configure" #include "confdefs.h" $ac_includes_default int @@ -33427,15 +33428,15 @@ fclose (f); } _ACEOF rm -f "conftest$ac_exeext" -if { (eval echo "$as_me:33430: \"$ac_link\"") >&5 +if { (eval echo "$as_me:33431: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:33433: \$? = $ac_status" >&5 + echo "$as_me:33434: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='"./conftest$ac_exeext"' - { (eval echo "$as_me:33435: \"$ac_try\"") >&5 + { (eval echo "$as_me:33436: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:33438: \$? = $ac_status" >&5 + echo "$as_me:33439: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_sizeof_size_t=`cat conftest.val` else @@ -33451,7 +33452,7 @@ else ac_cv_sizeof_size_t=0 fi fi -echo "$as_me:33454: result: $ac_cv_sizeof_size_t" >&5 +echo "$as_me:33455: 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 @@ -33460,11 +33461,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:33463: WARNING: using 4 for sizeof size_t" >&5 + { echo "$as_me:33464: 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:33467: WARNING: sizeof size_t not found, using 4" >&5 + { echo "$as_me:33468: 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 @@ -33478,13 +33479,13 @@ cf_cv_type=`echo "sizeof_size_t" | sed y%abcdefghijklmnopqrstuvwxyz./-%ABCDEFGHI fi fi -echo "$as_me:33481: checking for time_t" >&5 +echo "$as_me:33482: 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 33487 "configure" +#line 33488 "configure" #include "confdefs.h" $ac_includes_default int @@ -33499,16 +33500,16 @@ if (sizeof (time_t)) } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:33502: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:33503: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:33505: \$? = $ac_status" >&5 + echo "$as_me:33506: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:33508: \"$ac_try\"") >&5 + { (eval echo "$as_me:33509: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:33511: \$? = $ac_status" >&5 + echo "$as_me:33512: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_type_time_t=yes else @@ -33518,10 +33519,10 @@ ac_cv_type_time_t=no fi rm -f "conftest.$ac_objext" "conftest.$ac_ext" fi -echo "$as_me:33521: result: $ac_cv_type_time_t" >&5 +echo "$as_me:33522: result: $ac_cv_type_time_t" >&5 echo "${ECHO_T}$ac_cv_type_time_t" >&6 -echo "$as_me:33524: checking size of time_t" >&5 +echo "$as_me:33525: 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 @@ -33530,7 +33531,7 @@ else if test "$cross_compiling" = yes; then # Depending upon the size, compute the lo and hi bounds. cat >"conftest.$ac_ext" <<_ACEOF -#line 33533 "configure" +#line 33534 "configure" #include "confdefs.h" $ac_includes_default int @@ -33542,21 +33543,21 @@ int _array_ [1 - 2 * !((sizeof (time_t)) >= 0)] } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:33545: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:33546: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:33548: \$? = $ac_status" >&5 + echo "$as_me:33549: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:33551: \"$ac_try\"") >&5 + { (eval echo "$as_me:33552: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:33554: \$? = $ac_status" >&5 + echo "$as_me:33555: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_lo=0 ac_mid=0 while :; do cat >"conftest.$ac_ext" <<_ACEOF -#line 33559 "configure" +#line 33560 "configure" #include "confdefs.h" $ac_includes_default int @@ -33568,16 +33569,16 @@ int _array_ [1 - 2 * !((sizeof (time_t)) <= $ac_mid)] } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:33571: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:33572: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:33574: \$? = $ac_status" >&5 + echo "$as_me:33575: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:33577: \"$ac_try\"") >&5 + { (eval echo "$as_me:33578: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:33580: \$? = $ac_status" >&5 + echo "$as_me:33581: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_hi=$ac_mid; break else @@ -33593,7 +33594,7 @@ cat "conftest.$ac_ext" >&5 ac_hi=-1 ac_mid=-1 while :; do cat >"conftest.$ac_ext" <<_ACEOF -#line 33596 "configure" +#line 33597 "configure" #include "confdefs.h" $ac_includes_default int @@ -33605,16 +33606,16 @@ int _array_ [1 - 2 * !((sizeof (time_t)) >= $ac_mid)] } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:33608: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:33609: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:33611: \$? = $ac_status" >&5 + echo "$as_me:33612: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:33614: \"$ac_try\"") >&5 + { (eval echo "$as_me:33615: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:33617: \$? = $ac_status" >&5 + echo "$as_me:33618: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_lo=$ac_mid; break else @@ -33630,7 +33631,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 33633 "configure" +#line 33634 "configure" #include "confdefs.h" $ac_includes_default int @@ -33642,16 +33643,16 @@ int _array_ [1 - 2 * !((sizeof (time_t)) <= $ac_mid)] } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:33645: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:33646: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:33648: \$? = $ac_status" >&5 + echo "$as_me:33649: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:33651: \"$ac_try\"") >&5 + { (eval echo "$as_me:33652: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:33654: \$? = $ac_status" >&5 + echo "$as_me:33655: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_hi=$ac_mid else @@ -33664,12 +33665,12 @@ done ac_cv_sizeof_time_t=$ac_lo else if test "$cross_compiling" = yes; then - { { echo "$as_me:33667: error: cannot run test program while cross compiling" >&5 + { { echo "$as_me:33668: 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 33672 "configure" +#line 33673 "configure" #include "confdefs.h" $ac_includes_default int @@ -33685,15 +33686,15 @@ fclose (f); } _ACEOF rm -f "conftest$ac_exeext" -if { (eval echo "$as_me:33688: \"$ac_link\"") >&5 +if { (eval echo "$as_me:33689: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:33691: \$? = $ac_status" >&5 + echo "$as_me:33692: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='"./conftest$ac_exeext"' - { (eval echo "$as_me:33693: \"$ac_try\"") >&5 + { (eval echo "$as_me:33694: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:33696: \$? = $ac_status" >&5 + echo "$as_me:33697: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_sizeof_time_t=`cat conftest.val` else @@ -33709,7 +33710,7 @@ else ac_cv_sizeof_time_t=0 fi fi -echo "$as_me:33712: result: $ac_cv_sizeof_time_t" >&5 +echo "$as_me:33713: 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 @@ -33718,11 +33719,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:33721: WARNING: using 4 for sizeof time_t" >&5 + { echo "$as_me:33722: 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:33725: WARNING: sizeof time_t not found, using 4" >&5 + { echo "$as_me:33726: 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 @@ -33736,13 +33737,13 @@ cf_cv_type=`echo "sizeof_time_t" | sed y%abcdefghijklmnopqrstuvwxyz./-%ABCDEFGHI fi fi -echo "$as_me:33739: checking for intptr_t" >&5 +echo "$as_me:33740: 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 33745 "configure" +#line 33746 "configure" #include "confdefs.h" $ac_includes_default int @@ -33757,16 +33758,16 @@ if (sizeof (intptr_t)) } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:33760: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:33761: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:33763: \$? = $ac_status" >&5 + echo "$as_me:33764: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:33766: \"$ac_try\"") >&5 + { (eval echo "$as_me:33767: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:33769: \$? = $ac_status" >&5 + echo "$as_me:33770: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_type_intptr_t=yes else @@ -33776,7 +33777,7 @@ ac_cv_type_intptr_t=no fi rm -f "conftest.$ac_objext" "conftest.$ac_ext" fi -echo "$as_me:33779: result: $ac_cv_type_intptr_t" >&5 +echo "$as_me:33780: 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 : @@ -33790,13 +33791,13 @@ fi # The Ultrix 4.2 mips builtin alloca declared by alloca.h only works # for constant arguments. Useless! -echo "$as_me:33793: checking for working alloca.h" >&5 +echo "$as_me:33794: 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 33799 "configure" +#line 33800 "configure" #include "confdefs.h" #include <alloca.h> int @@ -33808,16 +33809,16 @@ char *p = (char *) alloca (2 * sizeof (int)); } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:33811: \"$ac_link\"") >&5 +if { (eval echo "$as_me:33812: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:33814: \$? = $ac_status" >&5 + echo "$as_me:33815: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:33817: \"$ac_try\"") >&5 + { (eval echo "$as_me:33818: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:33820: \$? = $ac_status" >&5 + echo "$as_me:33821: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_working_alloca_h=yes else @@ -33827,7 +33828,7 @@ ac_cv_working_alloca_h=no fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:33830: result: $ac_cv_working_alloca_h" >&5 +echo "$as_me:33831: 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 @@ -33837,13 +33838,13 @@ EOF fi -echo "$as_me:33840: checking for alloca" >&5 +echo "$as_me:33841: 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 33846 "configure" +#line 33847 "configure" #include "confdefs.h" #ifdef __GNUC__ # define alloca __builtin_alloca @@ -33875,16 +33876,16 @@ char *p = (char *) alloca (1); } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:33878: \"$ac_link\"") >&5 +if { (eval echo "$as_me:33879: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:33881: \$? = $ac_status" >&5 + echo "$as_me:33882: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:33884: \"$ac_try\"") >&5 + { (eval echo "$as_me:33885: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:33887: \$? = $ac_status" >&5 + echo "$as_me:33888: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_func_alloca_works=yes else @@ -33894,7 +33895,7 @@ ac_cv_func_alloca_works=no fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:33897: result: $ac_cv_func_alloca_works" >&5 +echo "$as_me:33898: 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 @@ -33915,13 +33916,13 @@ cat >>confdefs.h <<\EOF #define C_ALLOCA 1 EOF -echo "$as_me:33918: checking whether \`alloca.c' needs Cray hooks" >&5 +echo "$as_me:33919: 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 33924 "configure" +#line 33925 "configure" #include "confdefs.h" #if defined(CRAY) && ! defined(CRAY2) webecray @@ -33939,18 +33940,18 @@ fi rm -rf conftest* fi -echo "$as_me:33942: result: $ac_cv_os_cray" >&5 +echo "$as_me:33943: 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:33947: checking for $ac_func" >&5 +echo "$as_me:33948: 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 33953 "configure" +#line 33954 "configure" #include "confdefs.h" #define $ac_func autoconf_temporary #include <limits.h> /* least-intrusive standard header which defines gcc2 __stub macros */ @@ -33981,16 +33982,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:33984: \"$ac_link\"") >&5 +if { (eval echo "$as_me:33985: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:33987: \$? = $ac_status" >&5 + echo "$as_me:33988: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:33990: \"$ac_try\"") >&5 + { (eval echo "$as_me:33991: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:33993: \$? = $ac_status" >&5 + echo "$as_me:33994: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then eval "$as_ac_var=yes" else @@ -34000,7 +34001,7 @@ eval "$as_ac_var=no" fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:34003: result: `eval echo '${'"$as_ac_var"'}'`" >&5 +echo "$as_me:34004: 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 @@ -34014,7 +34015,7 @@ fi done fi -echo "$as_me:34017: checking stack direction for C alloca" >&5 +echo "$as_me:34018: 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 @@ -34023,7 +34024,7 @@ else ac_cv_c_stack_direction=0 else cat >"conftest.$ac_ext" <<_ACEOF -#line 34026 "configure" +#line 34027 "configure" #include "confdefs.h" int find_stack_direction (void) @@ -34046,15 +34047,15 @@ main (void) } _ACEOF rm -f "conftest$ac_exeext" -if { (eval echo "$as_me:34049: \"$ac_link\"") >&5 +if { (eval echo "$as_me:34050: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:34052: \$? = $ac_status" >&5 + echo "$as_me:34053: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='"./conftest$ac_exeext"' - { (eval echo "$as_me:34054: \"$ac_try\"") >&5 + { (eval echo "$as_me:34055: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:34057: \$? = $ac_status" >&5 + echo "$as_me:34058: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_c_stack_direction=1 else @@ -34066,7 +34067,7 @@ fi rm -f core ./core.* ./*.core "conftest$ac_exeext" "conftest.$ac_objext" "conftest.$ac_ext" fi fi -echo "$as_me:34069: result: $ac_cv_c_stack_direction" >&5 +echo "$as_me:34070: result: $ac_cv_c_stack_direction" >&5 echo "${ECHO_T}$ac_cv_c_stack_direction" >&6 cat >>confdefs.h <<EOF @@ -34078,23 +34079,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:34081: checking for $ac_header" >&5 +echo "$as_me:34082: 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 34087 "configure" +#line 34088 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:34091: \"$ac_cpp "conftest.$ac_ext"\"") >&5 +if { (eval echo "$as_me:34092: \"$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:34097: \$? = $ac_status" >&5 + echo "$as_me:34098: \$? = $ac_status" >&5 (exit "$ac_status"); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -34113,7 +34114,7 @@ else fi rm -f conftest.err "conftest.$ac_ext" fi -echo "$as_me:34116: result: `eval echo '${'"$as_ac_Header"'}'`" >&5 +echo "$as_me:34117: 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 @@ -34126,13 +34127,13 @@ done for ac_func in fork vfork do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` -echo "$as_me:34129: checking for $ac_func" >&5 +echo "$as_me:34130: 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 34135 "configure" +#line 34136 "configure" #include "confdefs.h" #define $ac_func autoconf_temporary #include <limits.h> /* least-intrusive standard header which defines gcc2 __stub macros */ @@ -34163,16 +34164,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:34166: \"$ac_link\"") >&5 +if { (eval echo "$as_me:34167: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:34169: \$? = $ac_status" >&5 + echo "$as_me:34170: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:34172: \"$ac_try\"") >&5 + { (eval echo "$as_me:34173: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:34175: \$? = $ac_status" >&5 + echo "$as_me:34176: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then eval "$as_ac_var=yes" else @@ -34182,7 +34183,7 @@ eval "$as_ac_var=no" fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:34185: result: `eval echo '${'"$as_ac_var"'}'`" >&5 +echo "$as_me:34186: 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 @@ -34194,7 +34195,7 @@ done ac_cv_func_fork_works=$ac_cv_func_fork if test "x$ac_cv_func_fork" = xyes; then - echo "$as_me:34197: checking for working fork" >&5 + echo "$as_me:34198: 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 @@ -34217,15 +34218,15 @@ else } _ACEOF rm -f "conftest$ac_exeext" -if { (eval echo "$as_me:34220: \"$ac_link\"") >&5 +if { (eval echo "$as_me:34221: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:34223: \$? = $ac_status" >&5 + echo "$as_me:34224: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='"./conftest$ac_exeext"' - { (eval echo "$as_me:34225: \"$ac_try\"") >&5 + { (eval echo "$as_me:34226: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:34228: \$? = $ac_status" >&5 + echo "$as_me:34229: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_func_fork_works=yes else @@ -34237,7 +34238,7 @@ fi rm -f core ./core.* ./*.core "conftest$ac_exeext" "conftest.$ac_objext" "conftest.$ac_ext" fi fi -echo "$as_me:34240: result: $ac_cv_func_fork_works" >&5 +echo "$as_me:34241: result: $ac_cv_func_fork_works" >&5 echo "${ECHO_T}$ac_cv_func_fork_works" >&6 fi @@ -34251,12 +34252,12 @@ if test "x$ac_cv_func_fork_works" = xcross; then ac_cv_func_fork_works=yes ;; esac - { echo "$as_me:34254: WARNING: CROSS: Result $ac_cv_func_fork_works guessed due to cross-compiling." >&5 + { echo "$as_me:34255: 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:34259: checking for working vfork" >&5 + echo "$as_me:34260: 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 @@ -34265,7 +34266,7 @@ else ac_cv_func_vfork_works=cross else cat >"conftest.$ac_ext" <<_ACEOF -#line 34268 "configure" +#line 34269 "configure" #include "confdefs.h" /* Thanks to Paul Eggert for this test. */ #include <stdio.h> @@ -34362,15 +34363,15 @@ main (void) } _ACEOF rm -f "conftest$ac_exeext" -if { (eval echo "$as_me:34365: \"$ac_link\"") >&5 +if { (eval echo "$as_me:34366: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:34368: \$? = $ac_status" >&5 + echo "$as_me:34369: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='"./conftest$ac_exeext"' - { (eval echo "$as_me:34370: \"$ac_try\"") >&5 + { (eval echo "$as_me:34371: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:34373: \$? = $ac_status" >&5 + echo "$as_me:34374: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_func_vfork_works=yes else @@ -34382,13 +34383,13 @@ fi rm -f core ./core.* ./*.core "conftest$ac_exeext" "conftest.$ac_objext" "conftest.$ac_ext" fi fi -echo "$as_me:34385: result: $ac_cv_func_vfork_works" >&5 +echo "$as_me:34386: 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:34391: WARNING: CROSS: Result $ac_cv_func_vfork_works guessed due to cross-compiling." >&5 + { echo "$as_me:34392: 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 @@ -34413,14 +34414,14 @@ EOF fi -echo "$as_me:34416: checking if we should use fcntl or ioctl" >&5 +echo "$as_me:34417: 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 34423 "configure" +#line 34424 "configure" #include "confdefs.h" #include <sys/types.h> @@ -34437,16 +34438,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:34440: \"$ac_link\"") >&5 +if { (eval echo "$as_me:34441: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:34443: \$? = $ac_status" >&5 + echo "$as_me:34444: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:34446: \"$ac_try\"") >&5 + { (eval echo "$as_me:34447: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:34449: \$? = $ac_status" >&5 + echo "$as_me:34450: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_fionbio=ioctl else @@ -34454,7 +34455,7 @@ else cat "conftest.$ac_ext" >&5 cat >"conftest.$ac_ext" <<_ACEOF -#line 34457 "configure" +#line 34458 "configure" #include "confdefs.h" #include <sys/types.h> @@ -34476,16 +34477,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:34479: \"$ac_link\"") >&5 +if { (eval echo "$as_me:34480: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:34482: \$? = $ac_status" >&5 + echo "$as_me:34483: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:34485: \"$ac_try\"") >&5 + { (eval echo "$as_me:34486: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:34488: \$? = $ac_status" >&5 + echo "$as_me:34489: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_fionbio=fcntl else @@ -34498,21 +34499,21 @@ fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:34501: result: $cf_cv_fionbio" >&5 +echo "$as_me:34502: 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:34508: checking for broken/missing definition of remove" >&5 +echo "$as_me:34509: 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 34515 "configure" +#line 34516 "configure" #include "confdefs.h" #include <stdio.h> int @@ -34524,23 +34525,23 @@ remove("dummy") } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:34527: \"$ac_link\"") >&5 +if { (eval echo "$as_me:34528: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:34530: \$? = $ac_status" >&5 + echo "$as_me:34531: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:34533: \"$ac_try\"") >&5 + { (eval echo "$as_me:34534: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:34536: \$? = $ac_status" >&5 + echo "$as_me:34537: \$? = $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 34543 "configure" +#line 34544 "configure" #include "confdefs.h" #include <stdio.h> int __unlink(name) { return unlink(name); } @@ -34553,16 +34554,16 @@ remove("dummy") } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:34556: \"$ac_link\"") >&5 +if { (eval echo "$as_me:34557: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:34559: \$? = $ac_status" >&5 + echo "$as_me:34560: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:34562: \"$ac_try\"") >&5 + { (eval echo "$as_me:34563: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:34565: \$? = $ac_status" >&5 + echo "$as_me:34566: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_baddef_remove=yes else @@ -34577,21 +34578,21 @@ rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:34580: result: $cf_cv_baddef_remove" >&5 +echo "$as_me:34581: 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:34587: checking for lstat" >&5 +echo "$as_me:34588: 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 34594 "configure" +#line 34595 "configure" #include "confdefs.h" #include <sys/types.h> @@ -34605,16 +34606,16 @@ struct stat sb; lstat(".", &sb); (void) sb } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:34608: \"$ac_link\"") >&5 +if { (eval echo "$as_me:34609: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:34611: \$? = $ac_status" >&5 + echo "$as_me:34612: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:34614: \"$ac_try\"") >&5 + { (eval echo "$as_me:34615: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:34617: \$? = $ac_status" >&5 + echo "$as_me:34618: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_func_lstat=yes else @@ -34626,7 +34627,7 @@ rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:34629: result: $ac_cv_func_lstat " >&5 +echo "$as_me:34630: result: $ac_cv_func_lstat " >&5 echo "${ECHO_T}$ac_cv_func_lstat " >&6 if test "$ac_cv_func_lstat" = yes; then @@ -34636,13 +34637,13 @@ EOF fi -echo "$as_me:34639: checking for vasprintf" >&5 +echo "$as_me:34640: 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 34645 "configure" +#line 34646 "configure" #include "confdefs.h" #define vasprintf autoconf_temporary #include <limits.h> /* least-intrusive standard header which defines gcc2 __stub macros */ @@ -34673,16 +34674,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:34676: \"$ac_link\"") >&5 +if { (eval echo "$as_me:34677: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:34679: \$? = $ac_status" >&5 + echo "$as_me:34680: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:34682: \"$ac_try\"") >&5 + { (eval echo "$as_me:34683: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:34685: \$? = $ac_status" >&5 + echo "$as_me:34686: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_func_vasprintf=yes else @@ -34692,7 +34693,7 @@ ac_cv_func_vasprintf=no fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:34695: result: $ac_cv_func_vasprintf" >&5 +echo "$as_me:34696: result: $ac_cv_func_vasprintf" >&5 echo "${ECHO_T}$ac_cv_func_vasprintf" >&6 if test "$ac_cv_func_vasprintf" = yes; then @@ -34700,10 +34701,10 @@ cat >>confdefs.h <<\EOF #define HAVE_VASPRINTF 1 EOF - echo "$as_me:34703: checking if vasprintf requires workaround" >&5 + echo "$as_me:34704: checking if vasprintf requires workaround" >&5 echo $ECHO_N "checking if vasprintf requires workaround... $ECHO_C" >&6 cat >"conftest.$ac_ext" <<_ACEOF -#line 34706 "configure" +#line 34707 "configure" #include "confdefs.h" #include <stdio.h> @@ -34719,19 +34720,19 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:34722: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:34723: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:34725: \$? = $ac_status" >&5 + echo "$as_me:34726: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:34728: \"$ac_try\"") >&5 + { (eval echo "$as_me:34729: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:34731: \$? = $ac_status" >&5 + echo "$as_me:34732: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then - echo "$as_me:34734: result: no" >&5 + echo "$as_me:34735: result: no" >&5 echo "${ECHO_T}no" >&6 else @@ -34739,7 +34740,7 @@ else cat "conftest.$ac_ext" >&5 cat >"conftest.$ac_ext" <<_ACEOF -#line 34742 "configure" +#line 34743 "configure" #include "confdefs.h" #ifndef _GNU_SOURCE @@ -34758,19 +34759,19 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:34761: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:34762: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:34764: \$? = $ac_status" >&5 + echo "$as_me:34765: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:34767: \"$ac_try\"") >&5 + { (eval echo "$as_me:34768: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:34770: \$? = $ac_status" >&5 + echo "$as_me:34771: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then - echo "$as_me:34773: result: yes" >&5 + echo "$as_me:34774: result: yes" >&5 echo "${ECHO_T}yes" >&6 test -n "$CPPFLAGS" && CPPFLAGS="$CPPFLAGS " @@ -34780,7 +34781,7 @@ else echo "$as_me: failed program was:" >&5 cat "conftest.$ac_ext" >&5 - echo "$as_me:34783: result: unknown" >&5 + echo "$as_me:34784: result: unknown" >&5 echo "${ECHO_T}unknown" >&6 fi @@ -34813,13 +34814,13 @@ for ac_func in \ do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` -echo "$as_me:34816: checking for $ac_func" >&5 +echo "$as_me:34817: 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 34822 "configure" +#line 34823 "configure" #include "confdefs.h" #define $ac_func autoconf_temporary #include <limits.h> /* least-intrusive standard header which defines gcc2 __stub macros */ @@ -34850,16 +34851,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:34853: \"$ac_link\"") >&5 +if { (eval echo "$as_me:34854: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:34856: \$? = $ac_status" >&5 + echo "$as_me:34857: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:34859: \"$ac_try\"") >&5 + { (eval echo "$as_me:34860: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:34862: \$? = $ac_status" >&5 + echo "$as_me:34863: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then eval "$as_ac_var=yes" else @@ -34869,7 +34870,7 @@ eval "$as_ac_var=no" fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:34872: result: `eval echo '${'"$as_ac_var"'}'`" >&5 +echo "$as_me:34873: 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 @@ -34883,13 +34884,13 @@ for ac_func in \ mkdtemp do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` -echo "$as_me:34886: checking for $ac_func" >&5 +echo "$as_me:34887: 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 34892 "configure" +#line 34893 "configure" #include "confdefs.h" #define $ac_func autoconf_temporary #include <limits.h> /* least-intrusive standard header which defines gcc2 __stub macros */ @@ -34920,16 +34921,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:34923: \"$ac_link\"") >&5 +if { (eval echo "$as_me:34924: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:34926: \$? = $ac_status" >&5 + echo "$as_me:34927: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:34929: \"$ac_try\"") >&5 + { (eval echo "$as_me:34930: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:34932: \$? = $ac_status" >&5 + echo "$as_me:34933: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then eval "$as_ac_var=yes" else @@ -34939,7 +34940,7 @@ eval "$as_ac_var=no" fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:34942: result: `eval echo '${'"$as_ac_var"'}'`" >&5 +echo "$as_me:34943: 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 @@ -34951,13 +34952,13 @@ else for ac_func in mktemp do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` -echo "$as_me:34954: checking for $ac_func" >&5 +echo "$as_me:34955: 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 34960 "configure" +#line 34961 "configure" #include "confdefs.h" #define $ac_func autoconf_temporary #include <limits.h> /* least-intrusive standard header which defines gcc2 __stub macros */ @@ -34988,16 +34989,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:34991: \"$ac_link\"") >&5 +if { (eval echo "$as_me:34992: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:34994: \$? = $ac_status" >&5 + echo "$as_me:34995: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:34997: \"$ac_try\"") >&5 + { (eval echo "$as_me:34998: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:35000: \$? = $ac_status" >&5 + echo "$as_me:35001: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then eval "$as_ac_var=yes" else @@ -35007,7 +35008,7 @@ eval "$as_ac_var=no" fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:35010: result: `eval echo '${'"$as_ac_var"'}'`" >&5 +echo "$as_me:35011: 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 @@ -35027,13 +35028,13 @@ for ac_func in \ do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` -echo "$as_me:35030: checking for $ac_func" >&5 +echo "$as_me:35031: 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 35036 "configure" +#line 35037 "configure" #include "confdefs.h" #define $ac_func autoconf_temporary #include <limits.h> /* least-intrusive standard header which defines gcc2 __stub macros */ @@ -35064,16 +35065,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:35067: \"$ac_link\"") >&5 +if { (eval echo "$as_me:35068: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:35070: \$? = $ac_status" >&5 + echo "$as_me:35071: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:35073: \"$ac_try\"") >&5 + { (eval echo "$as_me:35074: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:35076: \$? = $ac_status" >&5 + echo "$as_me:35077: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then eval "$as_ac_var=yes" else @@ -35083,7 +35084,7 @@ eval "$as_ac_var=no" fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:35086: result: `eval echo '${'"$as_ac_var"'}'`" >&5 +echo "$as_me:35087: 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 @@ -35095,7 +35096,7 @@ else fi done -echo "$as_me:35098: checking for random-integer functions" >&5 +echo "$as_me:35099: 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 @@ -35115,7 +35116,7 @@ do esac cat >"conftest.$ac_ext" <<_ACEOF -#line 35118 "configure" +#line 35119 "configure" #include "confdefs.h" $ac_includes_default @@ -35132,16 +35133,16 @@ long seed = 1; $cf_srand_func(seed); seed = $cf_rand_func(); (void)seed } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:35135: \"$ac_link\"") >&5 +if { (eval echo "$as_me:35136: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:35138: \$? = $ac_status" >&5 + echo "$as_me:35139: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:35141: \"$ac_try\"") >&5 + { (eval echo "$as_me:35142: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:35144: \$? = $ac_status" >&5 + echo "$as_me:35145: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_srand_func=$cf_func break @@ -35153,10 +35154,10 @@ rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" done fi -echo "$as_me:35156: result: $cf_cv_srand_func" >&5 +echo "$as_me:35157: 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:35159: checking for range of random-integers" >&5 + echo "$as_me:35160: 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 @@ -35177,7 +35178,7 @@ else ;; esac cat >"conftest.$ac_ext" <<_ACEOF -#line 35180 "configure" +#line 35181 "configure" #include "confdefs.h" #ifdef HAVE_STDLIB_H @@ -35196,16 +35197,16 @@ long x = $cf_cv_rand_max; (void)x } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:35199: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:35200: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:35202: \$? = $ac_status" >&5 + echo "$as_me:35203: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:35205: \"$ac_try\"") >&5 + { (eval echo "$as_me:35206: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:35208: \$? = $ac_status" >&5 + echo "$as_me:35209: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then : else @@ -35216,15 +35217,15 @@ fi rm -f "conftest.$ac_objext" "conftest.$ac_ext" fi -echo "$as_me:35219: result: $cf_cv_rand_max" >&5 +echo "$as_me:35220: result: $cf_cv_rand_max" >&5 echo "${ECHO_T}$cf_cv_rand_max" >&6 case "$cf_cv_srand_func" in (*/arc4random) - echo "$as_me:35224: checking if <bsd/stdlib.h> should be included" >&5 + echo "$as_me:35225: 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 35227 "configure" +#line 35228 "configure" #include "confdefs.h" #include <bsd/stdlib.h> int @@ -35237,23 +35238,23 @@ void *arc4random(int); } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:35240: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:35241: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:35243: \$? = $ac_status" >&5 + echo "$as_me:35244: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:35246: \"$ac_try\"") >&5 + { (eval echo "$as_me:35247: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:35249: \$? = $ac_status" >&5 + echo "$as_me:35250: \$? = $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 35256 "configure" +#line 35257 "configure" #include "confdefs.h" #include <bsd/stdlib.h> int @@ -35265,16 +35266,16 @@ unsigned x = arc4random(); (void)x } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:35268: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:35269: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:35271: \$? = $ac_status" >&5 + echo "$as_me:35272: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:35274: \"$ac_try\"") >&5 + { (eval echo "$as_me:35275: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:35277: \$? = $ac_status" >&5 + echo "$as_me:35278: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_bsd_stdlib_h=yes else @@ -35285,7 +35286,7 @@ fi rm -f "conftest.$ac_objext" "conftest.$ac_ext" fi rm -f "conftest.$ac_objext" "conftest.$ac_ext" - echo "$as_me:35288: result: $cf_bsd_stdlib_h" >&5 + echo "$as_me:35289: result: $cf_bsd_stdlib_h" >&5 echo "${ECHO_T}$cf_bsd_stdlib_h" >&6 if test "$cf_bsd_stdlib_h" = yes then @@ -35295,10 +35296,10 @@ cat >>confdefs.h <<\EOF EOF else - echo "$as_me:35298: checking if <bsd/random.h> should be included" >&5 + echo "$as_me:35299: 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 35301 "configure" +#line 35302 "configure" #include "confdefs.h" #include <bsd/random.h> int @@ -35311,23 +35312,23 @@ void *arc4random(int); } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:35314: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:35315: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:35317: \$? = $ac_status" >&5 + echo "$as_me:35318: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:35320: \"$ac_try\"") >&5 + { (eval echo "$as_me:35321: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:35323: \$? = $ac_status" >&5 + echo "$as_me:35324: \$? = $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 35330 "configure" +#line 35331 "configure" #include "confdefs.h" #include <bsd/random.h> int @@ -35339,16 +35340,16 @@ unsigned x = arc4random(); (void)x } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:35342: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:35343: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:35345: \$? = $ac_status" >&5 + echo "$as_me:35346: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:35348: \"$ac_try\"") >&5 + { (eval echo "$as_me:35349: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:35351: \$? = $ac_status" >&5 + echo "$as_me:35352: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_bsd_random_h=yes else @@ -35359,7 +35360,7 @@ fi rm -f "conftest.$ac_objext" "conftest.$ac_ext" fi rm -f "conftest.$ac_objext" "conftest.$ac_ext" - echo "$as_me:35362: result: $cf_bsd_random_h" >&5 + echo "$as_me:35363: result: $cf_bsd_random_h" >&5 echo "${ECHO_T}$cf_bsd_random_h" >&6 if test "$cf_bsd_random_h" = yes then @@ -35369,7 +35370,7 @@ cat >>confdefs.h <<\EOF EOF else - { echo "$as_me:35372: WARNING: no header file found for arc4random" >&5 + { echo "$as_me:35373: WARNING: no header file found for arc4random" >&5 echo "$as_me: WARNING: no header file found for arc4random" >&2;} fi fi @@ -35404,13 +35405,13 @@ fi for ac_func in sleep do -echo "$as_me:35407: checking for $ac_func declaration" >&5 +echo "$as_me:35408: 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 35413 "configure" +#line 35414 "configure" #include "confdefs.h" #ifdef HAVE_STDLIB_H @@ -35431,20 +35432,20 @@ extern int $ac_func(); } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:35434: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:35435: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:35437: \$? = $ac_status" >&5 + echo "$as_me:35438: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:35440: \"$ac_try\"") >&5 + { (eval echo "$as_me:35441: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:35443: \$? = $ac_status" >&5 + echo "$as_me:35444: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cat >"conftest.$ac_ext" <<_ACEOF -#line 35447 "configure" +#line 35448 "configure" #include "confdefs.h" #ifdef HAVE_STDLIB_H @@ -35465,16 +35466,16 @@ int (*p)() = $ac_func; } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:35468: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:35469: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:35471: \$? = $ac_status" >&5 + echo "$as_me:35472: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:35474: \"$ac_try\"") >&5 + { (eval echo "$as_me:35475: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:35477: \$? = $ac_status" >&5 + echo "$as_me:35478: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then eval "ac_cv_func_decl_$ac_func=yes" @@ -35495,11 +35496,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:35498: result: yes" >&5 + echo "$as_me:35499: result: yes" >&5 echo "${ECHO_T}yes" >&6 : else - echo "$as_me:35502: result: no" >&5 + echo "$as_me:35503: result: no" >&5 echo "${ECHO_T}no" >&6 ac_tr_func=`echo "DECL_$ac_func" | sed y%abcdefghijklmnopqrstuvwxyz./-%ABCDEFGHIJKLMNOPQRSTUVWXYZ___%` @@ -35514,13 +35515,13 @@ done for ac_func in strstr do -echo "$as_me:35517: checking for $ac_func declaration" >&5 +echo "$as_me:35518: 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 35523 "configure" +#line 35524 "configure" #include "confdefs.h" #include <string.h> int @@ -35534,20 +35535,20 @@ extern int $ac_func(); } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:35537: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:35538: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:35540: \$? = $ac_status" >&5 + echo "$as_me:35541: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:35543: \"$ac_try\"") >&5 + { (eval echo "$as_me:35544: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:35546: \$? = $ac_status" >&5 + echo "$as_me:35547: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cat >"conftest.$ac_ext" <<_ACEOF -#line 35550 "configure" +#line 35551 "configure" #include "confdefs.h" #include <string.h> int @@ -35561,16 +35562,16 @@ int (*p)() = $ac_func; } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:35564: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:35565: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:35567: \$? = $ac_status" >&5 + echo "$as_me:35568: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:35570: \"$ac_try\"") >&5 + { (eval echo "$as_me:35571: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:35573: \$? = $ac_status" >&5 + echo "$as_me:35574: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then eval "ac_cv_func_decl_$ac_func=yes" @@ -35591,11 +35592,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:35594: result: yes" >&5 + echo "$as_me:35595: result: yes" >&5 echo "${ECHO_T}yes" >&6 : else - echo "$as_me:35598: result: no" >&5 + echo "$as_me:35599: result: no" >&5 echo "${ECHO_T}no" >&6 ac_tr_func=`echo "DECL_$ac_func" | sed y%abcdefghijklmnopqrstuvwxyz./-%ABCDEFGHIJKLMNOPQRSTUVWXYZ___%` @@ -35610,13 +35611,13 @@ done for ac_func in getgrgid getgrnam do -echo "$as_me:35613: checking for $ac_func declaration" >&5 +echo "$as_me:35614: 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 35619 "configure" +#line 35620 "configure" #include "confdefs.h" #include <stdio.h> @@ -35632,20 +35633,20 @@ extern int $ac_func(); } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:35635: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:35636: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:35638: \$? = $ac_status" >&5 + echo "$as_me:35639: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:35641: \"$ac_try\"") >&5 + { (eval echo "$as_me:35642: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:35644: \$? = $ac_status" >&5 + echo "$as_me:35645: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cat >"conftest.$ac_ext" <<_ACEOF -#line 35648 "configure" +#line 35649 "configure" #include "confdefs.h" #include <stdio.h> @@ -35661,16 +35662,16 @@ int (*p)() = $ac_func; } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:35664: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:35665: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:35667: \$? = $ac_status" >&5 + echo "$as_me:35668: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:35670: \"$ac_try\"") >&5 + { (eval echo "$as_me:35671: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:35673: \$? = $ac_status" >&5 + echo "$as_me:35674: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then eval "ac_cv_func_decl_$ac_func=yes" @@ -35691,11 +35692,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:35694: result: yes" >&5 + echo "$as_me:35695: result: yes" >&5 echo "${ECHO_T}yes" >&6 : else - echo "$as_me:35698: result: no" >&5 + echo "$as_me:35699: result: no" >&5 echo "${ECHO_T}no" >&6 ac_tr_func=`echo "DECL_$ac_func" | sed y%abcdefghijklmnopqrstuvwxyz./-%ABCDEFGHIJKLMNOPQRSTUVWXYZ___%` @@ -35707,14 +35708,14 @@ EOF fi done -echo "$as_me:35710: checking if TRUE/FALSE are defined" >&5 +echo "$as_me:35711: 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 35717 "configure" +#line 35718 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> @@ -35728,16 +35729,16 @@ int x = TRUE, y = FALSE } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:35731: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:35732: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:35734: \$? = $ac_status" >&5 + echo "$as_me:35735: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:35737: \"$ac_try\"") >&5 + { (eval echo "$as_me:35738: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:35740: \$? = $ac_status" >&5 + echo "$as_me:35741: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_bool_defs=yes else @@ -35748,7 +35749,7 @@ fi rm -f "conftest.$ac_objext" "conftest.$ac_ext" fi -echo "$as_me:35751: result: $cf_cv_bool_defs" >&5 +echo "$as_me:35752: result: $cf_cv_bool_defs" >&5 echo "${ECHO_T}$cf_cv_bool_defs" >&6 if test "$cf_cv_bool_defs" = no ; then @@ -35762,14 +35763,14 @@ EOF fi -echo "$as_me:35765: checking if external errno is declared" >&5 +echo "$as_me:35766: 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 35772 "configure" +#line 35773 "configure" #include "confdefs.h" #ifdef HAVE_STDLIB_H @@ -35787,16 +35788,16 @@ int x = (int) errno; (void)x } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:35790: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:35791: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:35793: \$? = $ac_status" >&5 + echo "$as_me:35794: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:35796: \"$ac_try\"") >&5 + { (eval echo "$as_me:35797: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:35799: \$? = $ac_status" >&5 + echo "$as_me:35800: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_dcl_errno=yes else @@ -35807,7 +35808,7 @@ fi rm -f "conftest.$ac_objext" "conftest.$ac_ext" fi -echo "$as_me:35810: result: $cf_cv_dcl_errno" >&5 +echo "$as_me:35811: result: $cf_cv_dcl_errno" >&5 echo "${ECHO_T}$cf_cv_dcl_errno" >&6 if test "$cf_cv_dcl_errno" = no ; then @@ -35822,14 +35823,14 @@ fi # It's possible (for near-UNIX clones) that the data doesn't exist -echo "$as_me:35825: checking if external errno exists" >&5 +echo "$as_me:35826: 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 35832 "configure" +#line 35833 "configure" #include "confdefs.h" #undef errno @@ -35844,16 +35845,16 @@ errno = 2 } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:35847: \"$ac_link\"") >&5 +if { (eval echo "$as_me:35848: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:35850: \$? = $ac_status" >&5 + echo "$as_me:35851: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:35853: \"$ac_try\"") >&5 + { (eval echo "$as_me:35854: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:35856: \$? = $ac_status" >&5 + echo "$as_me:35857: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_have_errno=yes else @@ -35864,7 +35865,7 @@ fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:35867: result: $cf_cv_have_errno" >&5 +echo "$as_me:35868: result: $cf_cv_have_errno" >&5 echo "${ECHO_T}$cf_cv_have_errno" >&6 if test "$cf_cv_have_errno" = yes ; then @@ -35877,7 +35878,7 @@ EOF fi -echo "$as_me:35880: checking if we can set errno" >&5 +echo "$as_me:35881: 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 @@ -35885,7 +35886,7 @@ else if test "$cross_compiling" = yes; then cat >"conftest.$ac_ext" <<_ACEOF -#line 35888 "configure" +#line 35889 "configure" #include "confdefs.h" #include <errno.h> int @@ -35897,16 +35898,16 @@ errno = 255 } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:35900: \"$ac_link\"") >&5 +if { (eval echo "$as_me:35901: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:35903: \$? = $ac_status" >&5 + echo "$as_me:35904: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:35906: \"$ac_try\"") >&5 + { (eval echo "$as_me:35907: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:35909: \$? = $ac_status" >&5 + echo "$as_me:35910: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_set_errno=maybe else @@ -35917,7 +35918,7 @@ fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" else cat >"conftest.$ac_ext" <<_ACEOF -#line 35920 "configure" +#line 35921 "configure" #include "confdefs.h" #include <errno.h> @@ -35928,15 +35929,15 @@ int main(void) } _ACEOF rm -f "conftest$ac_exeext" -if { (eval echo "$as_me:35931: \"$ac_link\"") >&5 +if { (eval echo "$as_me:35932: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:35934: \$? = $ac_status" >&5 + echo "$as_me:35935: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='"./conftest$ac_exeext"' - { (eval echo "$as_me:35936: \"$ac_try\"") >&5 + { (eval echo "$as_me:35937: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:35939: \$? = $ac_status" >&5 + echo "$as_me:35940: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_set_errno=yes else @@ -35949,21 +35950,21 @@ rm -f core ./core.* ./*.core "conftest$ac_exeext" "conftest.$ac_objext" "conftes fi fi -echo "$as_me:35952: result: $cf_cv_set_errno" >&5 +echo "$as_me:35953: 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:35959: checking for setlocale()" >&5 +echo "$as_me:35960: 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 35966 "configure" +#line 35967 "configure" #include "confdefs.h" #include <locale.h> int @@ -35975,16 +35976,16 @@ setlocale(LC_ALL, "") } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:35978: \"$ac_link\"") >&5 +if { (eval echo "$as_me:35979: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:35981: \$? = $ac_status" >&5 + echo "$as_me:35982: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:35984: \"$ac_try\"") >&5 + { (eval echo "$as_me:35985: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:35987: \$? = $ac_status" >&5 + echo "$as_me:35988: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_locale=yes else @@ -35996,7 +35997,7 @@ rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:35999: result: $cf_cv_locale" >&5 +echo "$as_me:36000: result: $cf_cv_locale" >&5 echo "${ECHO_T}$cf_cv_locale" >&6 test "$cf_cv_locale" = yes && { cat >>confdefs.h <<\EOF @@ -36004,14 +36005,14 @@ cat >>confdefs.h <<\EOF EOF } -echo "$as_me:36007: checking if NGROUPS is defined" >&5 +echo "$as_me:36008: 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 36014 "configure" +#line 36015 "configure" #include "confdefs.h" #if HAVE_SYS_PARAM_H @@ -36030,23 +36031,23 @@ int x = NGROUPS } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:36033: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:36034: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:36036: \$? = $ac_status" >&5 + echo "$as_me:36037: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:36039: \"$ac_try\"") >&5 + { (eval echo "$as_me:36040: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:36042: \$? = $ac_status" >&5 + echo "$as_me:36043: \$? = $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 36049 "configure" +#line 36050 "configure" #include "confdefs.h" #if HAVE_SYS_PARAM_H @@ -36065,16 +36066,16 @@ int x = NGROUPS_MAX } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:36068: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:36069: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:36071: \$? = $ac_status" >&5 + echo "$as_me:36072: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:36074: \"$ac_try\"") >&5 + { (eval echo "$as_me:36075: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:36077: \$? = $ac_status" >&5 + echo "$as_me:36078: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_ngroups=NGROUPS_MAX else @@ -36086,7 +36087,7 @@ rm -f "conftest.$ac_objext" "conftest.$ac_ext" fi rm -f "conftest.$ac_objext" "conftest.$ac_ext" -echo "$as_me:36089: result: $cf_cv_ngroups" >&5 +echo "$as_me:36090: result: $cf_cv_ngroups" >&5 echo "${ECHO_T}$cf_cv_ngroups" >&6 fi @@ -36107,13 +36108,13 @@ fi for ac_func in strerror do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` -echo "$as_me:36110: checking for $ac_func" >&5 +echo "$as_me:36111: 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 36116 "configure" +#line 36117 "configure" #include "confdefs.h" #define $ac_func autoconf_temporary #include <limits.h> /* least-intrusive standard header which defines gcc2 __stub macros */ @@ -36144,16 +36145,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:36147: \"$ac_link\"") >&5 +if { (eval echo "$as_me:36148: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:36150: \$? = $ac_status" >&5 + echo "$as_me:36151: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:36153: \"$ac_try\"") >&5 + { (eval echo "$as_me:36154: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:36156: \$? = $ac_status" >&5 + echo "$as_me:36157: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then eval "$as_ac_var=yes" else @@ -36163,7 +36164,7 @@ eval "$as_ac_var=no" fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:36166: result: `eval echo '${'"$as_ac_var"'}'`" >&5 +echo "$as_me:36167: 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 @@ -36172,14 +36173,14 @@ EOF else -echo "$as_me:36175: checking if external sys_nerr is declared" >&5 +echo "$as_me:36176: 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 36182 "configure" +#line 36183 "configure" #include "confdefs.h" #ifdef HAVE_STDLIB_H @@ -36197,16 +36198,16 @@ int x = (int) sys_nerr; (void)x } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:36200: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:36201: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:36203: \$? = $ac_status" >&5 + echo "$as_me:36204: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:36206: \"$ac_try\"") >&5 + { (eval echo "$as_me:36207: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:36209: \$? = $ac_status" >&5 + echo "$as_me:36210: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_dcl_sys_nerr=yes else @@ -36217,7 +36218,7 @@ fi rm -f "conftest.$ac_objext" "conftest.$ac_ext" fi -echo "$as_me:36220: result: $cf_cv_dcl_sys_nerr" >&5 +echo "$as_me:36221: 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 @@ -36232,14 +36233,14 @@ fi # It's possible (for near-UNIX clones) that the data doesn't exist -echo "$as_me:36235: checking if external sys_nerr exists" >&5 +echo "$as_me:36236: 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 36242 "configure" +#line 36243 "configure" #include "confdefs.h" #undef sys_nerr @@ -36254,16 +36255,16 @@ sys_nerr = 2 } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:36257: \"$ac_link\"") >&5 +if { (eval echo "$as_me:36258: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:36260: \$? = $ac_status" >&5 + echo "$as_me:36261: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:36263: \"$ac_try\"") >&5 + { (eval echo "$as_me:36264: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:36266: \$? = $ac_status" >&5 + echo "$as_me:36267: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_have_sys_nerr=yes else @@ -36274,7 +36275,7 @@ fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:36277: result: $cf_cv_have_sys_nerr" >&5 +echo "$as_me:36278: 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 @@ -36287,14 +36288,14 @@ EOF fi -echo "$as_me:36290: checking if external sys_errlist is declared" >&5 +echo "$as_me:36291: 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 36297 "configure" +#line 36298 "configure" #include "confdefs.h" #ifdef HAVE_STDLIB_H @@ -36312,16 +36313,16 @@ int x = (int) sys_errlist; (void)x } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:36315: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:36316: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:36318: \$? = $ac_status" >&5 + echo "$as_me:36319: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:36321: \"$ac_try\"") >&5 + { (eval echo "$as_me:36322: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:36324: \$? = $ac_status" >&5 + echo "$as_me:36325: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_dcl_sys_errlist=yes else @@ -36332,7 +36333,7 @@ fi rm -f "conftest.$ac_objext" "conftest.$ac_ext" fi -echo "$as_me:36335: result: $cf_cv_dcl_sys_errlist" >&5 +echo "$as_me:36336: 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 @@ -36347,14 +36348,14 @@ fi # It's possible (for near-UNIX clones) that the data doesn't exist -echo "$as_me:36350: checking if external sys_errlist exists" >&5 +echo "$as_me:36351: 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 36357 "configure" +#line 36358 "configure" #include "confdefs.h" #undef sys_errlist @@ -36369,16 +36370,16 @@ sys_errlist = 2 } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:36372: \"$ac_link\"") >&5 +if { (eval echo "$as_me:36373: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:36375: \$? = $ac_status" >&5 + echo "$as_me:36376: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:36378: \"$ac_try\"") >&5 + { (eval echo "$as_me:36379: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:36381: \$? = $ac_status" >&5 + echo "$as_me:36382: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_have_sys_errlist=yes else @@ -36389,7 +36390,7 @@ fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:36392: result: $cf_cv_have_sys_errlist" >&5 +echo "$as_me:36393: 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 @@ -36408,23 +36409,23 @@ done for ac_header in lastlog.h paths.h do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` -echo "$as_me:36411: checking for $ac_header" >&5 +echo "$as_me:36412: 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 36417 "configure" +#line 36418 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:36421: \"$ac_cpp "conftest.$ac_ext"\"") >&5 +if { (eval echo "$as_me:36422: \"$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:36427: \$? = $ac_status" >&5 + echo "$as_me:36428: \$? = $ac_status" >&5 (exit "$ac_status"); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -36443,7 +36444,7 @@ else fi rm -f conftest.err "conftest.$ac_ext" fi -echo "$as_me:36446: result: `eval echo '${'"$as_ac_Header"'}'`" >&5 +echo "$as_me:36447: 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 @@ -36453,14 +36454,14 @@ EOF fi done -echo "$as_me:36456: checking for lastlog path" >&5 +echo "$as_me:36457: 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 36463 "configure" +#line 36464 "configure" #include "confdefs.h" #include <sys/types.h> @@ -36480,16 +36481,16 @@ char *path = _PATH_LASTLOG; (void)path } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:36483: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:36484: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:36486: \$? = $ac_status" >&5 + echo "$as_me:36487: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:36489: \"$ac_try\"") >&5 + { (eval echo "$as_me:36490: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:36492: \$? = $ac_status" >&5 + echo "$as_me:36493: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_path_lastlog="_PATH_LASTLOG" else @@ -36504,14 +36505,14 @@ fi rm -f "conftest.$ac_objext" "conftest.$ac_ext" fi -echo "$as_me:36507: result: $cf_cv_path_lastlog" >&5 +echo "$as_me:36508: 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:36514: checking for utmp implementation" >&5 +echo "$as_me:36515: 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 @@ -36528,7 +36529,7 @@ cf_utmp_includes=" #endif " cat >"conftest.$ac_ext" <<_ACEOF -#line 36531 "configure" +#line 36532 "configure" #include "confdefs.h" $cf_utmp_includes int @@ -36544,16 +36545,16 @@ struct $cf_header x; } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:36547: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:36548: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:36550: \$? = $ac_status" >&5 + echo "$as_me:36551: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:36553: \"$ac_try\"") >&5 + { (eval echo "$as_me:36554: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:36556: \$? = $ac_status" >&5 + echo "$as_me:36557: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_have_utmp=$cf_header break @@ -36562,7 +36563,7 @@ else cat "conftest.$ac_ext" >&5 cat >"conftest.$ac_ext" <<_ACEOF -#line 36565 "configure" +#line 36566 "configure" #include "confdefs.h" $cf_utmp_includes int @@ -36578,16 +36579,16 @@ struct $cf_header x; } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:36581: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:36582: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:36584: \$? = $ac_status" >&5 + echo "$as_me:36585: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:36587: \"$ac_try\"") >&5 + { (eval echo "$as_me:36588: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:36590: \$? = $ac_status" >&5 + echo "$as_me:36591: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_have_utmp=$cf_header break @@ -36602,7 +36603,7 @@ rm -f "conftest.$ac_objext" "conftest.$ac_ext" done fi -echo "$as_me:36605: result: $cf_cv_have_utmp" >&5 +echo "$as_me:36606: result: $cf_cv_have_utmp" >&5 echo "${ECHO_T}$cf_cv_have_utmp" >&6 if test "$cf_cv_have_utmp" != no ; then @@ -36617,14 +36618,14 @@ cat >>confdefs.h <<\EOF EOF if test "$cf_cv_have_utmp" != no ; then -echo "$as_me:36620: checking if ${cf_cv_have_utmp}.ut_host is declared" >&5 +echo "$as_me:36621: 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 36627 "configure" +#line 36628 "configure" #include "confdefs.h" #include <sys/types.h> @@ -36641,16 +36642,16 @@ struct $cf_cv_have_utmp x; } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:36644: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:36645: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:36647: \$? = $ac_status" >&5 + echo "$as_me:36648: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:36650: \"$ac_try\"") >&5 + { (eval echo "$as_me:36651: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:36653: \$? = $ac_status" >&5 + echo "$as_me:36654: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_have_utmp_ut_host=yes else @@ -36662,7 +36663,7 @@ rm -f "conftest.$ac_objext" "conftest.$ac_ext" fi -echo "$as_me:36665: result: $cf_cv_have_utmp_ut_host" >&5 +echo "$as_me:36666: 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 @@ -36672,14 +36673,14 @@ EOF fi if test "$cf_cv_have_utmp" != no ; then -echo "$as_me:36675: checking if ${cf_cv_have_utmp}.ut_syslen is declared" >&5 +echo "$as_me:36676: 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 36682 "configure" +#line 36683 "configure" #include "confdefs.h" #include <sys/types.h> @@ -36696,16 +36697,16 @@ struct $cf_cv_have_utmp x; } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:36699: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:36700: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:36702: \$? = $ac_status" >&5 + echo "$as_me:36703: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:36705: \"$ac_try\"") >&5 + { (eval echo "$as_me:36706: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:36708: \$? = $ac_status" >&5 + echo "$as_me:36709: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_have_utmp_ut_syslen=yes else @@ -36717,7 +36718,7 @@ rm -f "conftest.$ac_objext" "conftest.$ac_ext" fi -echo "$as_me:36720: result: $cf_cv_have_utmp_ut_syslen" >&5 +echo "$as_me:36721: 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 @@ -36727,7 +36728,7 @@ EOF fi if test "$cf_cv_have_utmp" != no ; then -echo "$as_me:36730: checking if ${cf_cv_have_utmp}.ut_name is declared" >&5 +echo "$as_me:36731: 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 @@ -36744,7 +36745,7 @@ cf_utmp_includes=" " for cf_header in ut_name ut_user ; do cat >"conftest.$ac_ext" <<_ACEOF -#line 36747 "configure" +#line 36748 "configure" #include "confdefs.h" $cf_utmp_includes int @@ -36760,16 +36761,16 @@ struct $cf_cv_have_utmp x; } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:36763: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:36764: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:36766: \$? = $ac_status" >&5 + echo "$as_me:36767: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:36769: \"$ac_try\"") >&5 + { (eval echo "$as_me:36770: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:36772: \$? = $ac_status" >&5 + echo "$as_me:36773: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_have_utmp_ut_name=$cf_header break @@ -36781,12 +36782,12 @@ rm -f "conftest.$ac_objext" "conftest.$ac_ext" done fi -echo "$as_me:36784: result: $cf_cv_have_utmp_ut_name" >&5 +echo "$as_me:36785: 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:36789: error: Cannot find declaration for ut.ut_name" >&5 + { { echo "$as_me:36790: 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; }; } ;; @@ -36801,7 +36802,7 @@ esac fi if test "$cf_cv_have_utmp" != no ; then -echo "$as_me:36804: checking for exit-status in $cf_cv_have_utmp" >&5 +echo "$as_me:36805: 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 @@ -36814,7 +36815,7 @@ for cf_result in \ ut_exit.ut_exit do cat >"conftest.$ac_ext" <<_ACEOF -#line 36817 "configure" +#line 36818 "configure" #include "confdefs.h" #include <sys/types.h> @@ -36831,16 +36832,16 @@ struct $cf_cv_have_utmp x; } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:36834: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:36835: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:36837: \$? = $ac_status" >&5 + echo "$as_me:36838: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:36840: \"$ac_try\"") >&5 + { (eval echo "$as_me:36841: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:36843: \$? = $ac_status" >&5 + echo "$as_me:36844: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_have_utmp_ut_xstatus=$cf_result break @@ -36853,7 +36854,7 @@ rm -f "conftest.$ac_objext" "conftest.$ac_ext" done fi -echo "$as_me:36856: result: $cf_cv_have_utmp_ut_xstatus" >&5 +echo "$as_me:36857: 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 @@ -36869,14 +36870,14 @@ fi fi if test "$cf_cv_have_utmp" != no ; then -echo "$as_me:36872: checking if ${cf_cv_have_utmp}.ut_xtime is declared" >&5 +echo "$as_me:36873: 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 36879 "configure" +#line 36880 "configure" #include "confdefs.h" #include <sys/types.h> @@ -36893,23 +36894,23 @@ struct $cf_cv_have_utmp x; } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:36896: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:36897: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:36899: \$? = $ac_status" >&5 + echo "$as_me:36900: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:36902: \"$ac_try\"") >&5 + { (eval echo "$as_me:36903: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:36905: \$? = $ac_status" >&5 + echo "$as_me:36906: \$? = $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 36912 "configure" +#line 36913 "configure" #include "confdefs.h" #include <sys/types.h> @@ -36926,16 +36927,16 @@ struct $cf_cv_have_utmp x; } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:36929: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:36930: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:36932: \$? = $ac_status" >&5 + echo "$as_me:36933: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:36935: \"$ac_try\"") >&5 + { (eval echo "$as_me:36936: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:36938: \$? = $ac_status" >&5 + echo "$as_me:36939: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_have_utmp_ut_xtime=define else @@ -36949,7 +36950,7 @@ fi rm -f "conftest.$ac_objext" "conftest.$ac_ext" fi -echo "$as_me:36952: result: $cf_cv_have_utmp_ut_xtime" >&5 +echo "$as_me:36953: 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 @@ -36968,14 +36969,14 @@ fi fi if test "$cf_cv_have_utmp" != no ; then -echo "$as_me:36971: checking if ${cf_cv_have_utmp}.ut_session is declared" >&5 +echo "$as_me:36972: 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 36978 "configure" +#line 36979 "configure" #include "confdefs.h" #include <sys/types.h> @@ -36992,16 +36993,16 @@ static struct $cf_cv_have_utmp x; } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:36995: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:36996: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:36998: \$? = $ac_status" >&5 + echo "$as_me:36999: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:37001: \"$ac_try\"") >&5 + { (eval echo "$as_me:37002: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:37004: \$? = $ac_status" >&5 + echo "$as_me:37005: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_have_utmp_ut_session=yes else @@ -37012,7 +37013,7 @@ fi rm -f "conftest.$ac_objext" "conftest.$ac_ext" fi -echo "$as_me:37015: result: $cf_cv_have_utmp_ut_session" >&5 +echo "$as_me:37016: 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 @@ -37023,7 +37024,7 @@ EOF fi fi -echo "$as_me:37026: checking if $cf_cv_have_utmp is SYSV flavor" >&5 +echo "$as_me:37027: 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 @@ -37031,7 +37032,7 @@ else test "$cf_cv_have_utmp" = "utmp" && cf_prefix="ut" || cf_prefix="utx" cat >"conftest.$ac_ext" <<_ACEOF -#line 37034 "configure" +#line 37035 "configure" #include "confdefs.h" #include <sys/types.h> @@ -37050,16 +37051,16 @@ struct $cf_cv_have_utmp x; } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:37053: \"$ac_link\"") >&5 +if { (eval echo "$as_me:37054: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:37056: \$? = $ac_status" >&5 + echo "$as_me:37057: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:37059: \"$ac_try\"") >&5 + { (eval echo "$as_me:37060: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:37062: \$? = $ac_status" >&5 + echo "$as_me:37063: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_sysv_utmp=yes else @@ -37070,7 +37071,7 @@ fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:37073: result: $cf_cv_sysv_utmp" >&5 +echo "$as_me:37074: result: $cf_cv_sysv_utmp" >&5 echo "${ECHO_T}$cf_cv_sysv_utmp" >&6 test "$cf_cv_sysv_utmp" = yes && cat >>confdefs.h <<\EOF @@ -37079,14 +37080,14 @@ EOF fi -echo "$as_me:37082: checking if external h_errno exists" >&5 +echo "$as_me:37083: 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 37089 "configure" +#line 37090 "configure" #include "confdefs.h" #undef h_errno @@ -37101,16 +37102,16 @@ h_errno = 2 } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:37104: \"$ac_link\"") >&5 +if { (eval echo "$as_me:37105: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:37107: \$? = $ac_status" >&5 + echo "$as_me:37108: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:37110: \"$ac_try\"") >&5 + { (eval echo "$as_me:37111: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:37113: \$? = $ac_status" >&5 + echo "$as_me:37114: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_have_h_errno=yes else @@ -37121,7 +37122,7 @@ fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:37124: result: $cf_cv_have_h_errno" >&5 +echo "$as_me:37125: 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 @@ -37134,7 +37135,7 @@ EOF fi -echo "$as_me:37137: checking if bibp: URLs should be supported" >&5 +echo "$as_me:37138: 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. @@ -37151,14 +37152,14 @@ else use_bibp_urls=yes fi; -echo "$as_me:37154: result: $use_bibp_urls" >&5 +echo "$as_me:37155: 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:37161: checking if configuration info should be browsable" >&5 +echo "$as_me:37162: 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. @@ -37175,14 +37176,14 @@ else use_config_info=yes fi; -echo "$as_me:37178: result: $use_config_info" >&5 +echo "$as_me:37179: 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:37185: checking if new-style forms-based options screen should be used" >&5 +echo "$as_me:37186: 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. @@ -37199,14 +37200,14 @@ else use_forms_options=yes fi; -echo "$as_me:37202: result: $use_forms_options" >&5 +echo "$as_me:37203: 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:37209: checking if old-style options menu should be used" >&5 +echo "$as_me:37210: 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. @@ -37223,14 +37224,14 @@ else use_menu_options=yes fi; -echo "$as_me:37226: result: $use_menu_options" >&5 +echo "$as_me:37227: 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:37233: checking if sessions code should be used" >&5 +echo "$as_me:37234: 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. @@ -37247,7 +37248,7 @@ else use_sessions=yes fi; -echo "$as_me:37250: result: $use_sessions" >&5 +echo "$as_me:37251: result: $use_sessions" >&5 echo "${ECHO_T}$use_sessions" >&6 if test "$use_sessions" != no ; then @@ -37258,7 +37259,7 @@ EOF EXTRA_OBJS="$EXTRA_OBJS LYSession\$o" fi -echo "$as_me:37261: checking if session-caching code should be used" >&5 +echo "$as_me:37262: 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. @@ -37275,7 +37276,7 @@ else use_session_cache=yes fi; -echo "$as_me:37278: result: $use_session_cache" >&5 +echo "$as_me:37279: result: $use_session_cache" >&5 echo "${ECHO_T}$use_session_cache" >&6 if test "$use_session_cache" != no ; then @@ -37285,7 +37286,7 @@ EOF fi -echo "$as_me:37288: checking if address-list page should be used" >&5 +echo "$as_me:37289: 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. @@ -37302,14 +37303,14 @@ else use_addrlist_page=yes fi; -echo "$as_me:37305: result: $use_addrlist_page" >&5 +echo "$as_me:37306: 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:37312: checking if support for CJK should be used" >&5 +echo "$as_me:37313: checking if support for CJK should be used" >&5 echo $ECHO_N "checking if support for CJK should be used... $ECHO_C" >&6 # Check whether --enable-cjk or --disable-cjk was given. @@ -37326,7 +37327,7 @@ else use_cjk=yes fi; -echo "$as_me:37329: result: $use_cjk" >&5 +echo "$as_me:37330: result: $use_cjk" >&5 echo "${ECHO_T}$use_cjk" >&6 test "$use_cjk" != no && cat >>confdefs.h <<\EOF @@ -37376,7 +37377,7 @@ if test -n "$cf_searchpath/include" ; then CPPFLAGS="${CPPFLAGS}-I$cf_add_incdir" cat >"conftest.$ac_ext" <<_ACEOF -#line 37379 "configure" +#line 37380 "configure" #include "confdefs.h" #include <stdio.h> int @@ -37388,16 +37389,16 @@ printf("Hello") } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:37391: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:37392: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:37394: \$? = $ac_status" >&5 + echo "$as_me:37395: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:37397: \"$ac_try\"") >&5 + { (eval echo "$as_me:37398: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:37400: \$? = $ac_status" >&5 + echo "$as_me:37401: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then : else @@ -37414,7 +37415,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}:37417: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:37418: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -37460,7 +37461,7 @@ if test -n "$cf_searchpath/../include" ; then CPPFLAGS="${CPPFLAGS}-I$cf_add_incdir" cat >"conftest.$ac_ext" <<_ACEOF -#line 37463 "configure" +#line 37464 "configure" #include "confdefs.h" #include <stdio.h> int @@ -37472,16 +37473,16 @@ printf("Hello") } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:37475: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:37476: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:37478: \$? = $ac_status" >&5 + echo "$as_me:37479: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:37481: \"$ac_try\"") >&5 + { (eval echo "$as_me:37482: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:37484: \$? = $ac_status" >&5 + echo "$as_me:37485: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then : else @@ -37498,7 +37499,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}:37501: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:37502: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -37516,7 +37517,7 @@ echo "${as_me:-configure}:37501: testing adding $cf_add_incdir to include-path . fi else -{ { echo "$as_me:37519: error: cannot find libiconv under $withval" >&5 +{ { echo "$as_me:37520: error: cannot find libiconv under $withval" >&5 echo "$as_me: error: cannot find libiconv under $withval" >&2;} { (exit 1); exit 1; }; } fi @@ -37541,7 +37542,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}:37544: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:37545: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -37570,7 +37571,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}:37573: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:37574: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -37579,7 +37580,7 @@ echo "${as_me:-configure}:37573: testing adding $cf_add_libdir to library-path . fi else -{ { echo "$as_me:37582: error: cannot find libiconv under $withval" >&5 +{ { echo "$as_me:37583: error: cannot find libiconv under $withval" >&5 echo "$as_me: error: cannot find libiconv under $withval" >&2;} { (exit 1); exit 1; }; } fi @@ -37590,7 +37591,7 @@ esac fi; - echo "$as_me:37593: checking for iconv" >&5 + echo "$as_me:37594: 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 @@ -37601,12 +37602,12 @@ else cf_cv_header_path_iconv= cf_cv_library_path_iconv= -echo "${as_me:-configure}:37604: testing Starting FIND_LINKAGE(iconv,) ..." 1>&5 +echo "${as_me:-configure}:37605: testing Starting FIND_LINKAGE(iconv,) ..." 1>&5 cf_save_LIBS="$LIBS" cat >"conftest.$ac_ext" <<_ACEOF -#line 37609 "configure" +#line 37610 "configure" #include "confdefs.h" #include <stdlib.h> @@ -37625,16 +37626,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:37628: \"$ac_link\"") >&5 +if { (eval echo "$as_me:37629: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:37631: \$? = $ac_status" >&5 + echo "$as_me:37632: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:37634: \"$ac_try\"") >&5 + { (eval echo "$as_me:37635: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:37637: \$? = $ac_status" >&5 + echo "$as_me:37638: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_find_linkage_iconv=yes @@ -37648,7 +37649,7 @@ cat "conftest.$ac_ext" >&5 LIBS="-liconv $cf_save_LIBS" cat >"conftest.$ac_ext" <<_ACEOF -#line 37651 "configure" +#line 37652 "configure" #include "confdefs.h" #include <stdlib.h> @@ -37667,16 +37668,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:37670: \"$ac_link\"") >&5 +if { (eval echo "$as_me:37671: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:37673: \$? = $ac_status" >&5 + echo "$as_me:37674: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:37676: \"$ac_try\"") >&5 + { (eval echo "$as_me:37677: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:37679: \$? = $ac_status" >&5 + echo "$as_me:37680: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_find_linkage_iconv=yes @@ -37693,9 +37694,9 @@ cat "conftest.$ac_ext" >&5 test -n "$verbose" && echo " find linkage for iconv library" 1>&6 -echo "${as_me:-configure}:37696: testing find linkage for iconv library ..." 1>&5 +echo "${as_me:-configure}:37697: testing find linkage for iconv library ..." 1>&5 -echo "${as_me:-configure}:37698: testing Searching for headers in FIND_LINKAGE(iconv,) ..." 1>&5 +echo "${as_me:-configure}:37699: testing Searching for headers in FIND_LINKAGE(iconv,) ..." 1>&5 cf_save_CPPFLAGS="$CPPFLAGS" cf_test_CPPFLAGS="$CPPFLAGS" @@ -37786,7 +37787,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}:37789: testing ... testing $cf_cv_header_path_iconv ..." 1>&5 +echo "${as_me:-configure}:37790: testing ... testing $cf_cv_header_path_iconv ..." 1>&5 CPPFLAGS="$cf_save_CPPFLAGS" @@ -37794,7 +37795,7 @@ echo "${as_me:-configure}:37789: testing ... testing $cf_cv_header_path_iconv .. CPPFLAGS="${CPPFLAGS}-I$cf_cv_header_path_iconv" cat >"conftest.$ac_ext" <<_ACEOF -#line 37797 "configure" +#line 37798 "configure" #include "confdefs.h" #include <stdlib.h> @@ -37813,21 +37814,21 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:37816: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:37817: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:37819: \$? = $ac_status" >&5 + echo "$as_me:37820: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:37822: \"$ac_try\"") >&5 + { (eval echo "$as_me:37823: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:37825: \$? = $ac_status" >&5 + echo "$as_me:37826: \$? = $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}:37830: testing ... found iconv headers in $cf_cv_header_path_iconv ..." 1>&5 +echo "${as_me:-configure}:37831: testing ... found iconv headers in $cf_cv_header_path_iconv ..." 1>&5 cf_cv_find_linkage_iconv=maybe cf_test_CPPFLAGS="$CPPFLAGS" @@ -37845,7 +37846,7 @@ rm -f "conftest.$ac_objext" "conftest.$ac_ext" if test "$cf_cv_find_linkage_iconv" = maybe ; then -echo "${as_me:-configure}:37848: testing Searching for iconv library in FIND_LINKAGE(iconv,) ..." 1>&5 +echo "${as_me:-configure}:37849: testing Searching for iconv library in FIND_LINKAGE(iconv,) ..." 1>&5 cf_save_LIBS="$LIBS" cf_save_LDFLAGS="$LDFLAGS" @@ -37920,13 +37921,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}:37923: testing ... testing $cf_cv_library_path_iconv ..." 1>&5 +echo "${as_me:-configure}:37924: 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 37929 "configure" +#line 37930 "configure" #include "confdefs.h" #include <stdlib.h> @@ -37945,21 +37946,21 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:37948: \"$ac_link\"") >&5 +if { (eval echo "$as_me:37949: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:37951: \$? = $ac_status" >&5 + echo "$as_me:37952: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:37954: \"$ac_try\"") >&5 + { (eval echo "$as_me:37955: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:37957: \$? = $ac_status" >&5 + echo "$as_me:37958: \$? = $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}:37962: testing ... found iconv library in $cf_cv_library_path_iconv ..." 1>&5 +echo "${as_me:-configure}:37963: testing ... found iconv library in $cf_cv_library_path_iconv ..." 1>&5 cf_cv_find_linkage_iconv=yes cf_cv_library_file_iconv="-liconv" @@ -37999,7 +38000,7 @@ am_cv_func_iconv="no, consider installing GNU libiconv" fi fi -echo "$as_me:38002: result: $am_cv_func_iconv" >&5 +echo "$as_me:38003: result: $am_cv_func_iconv" >&5 echo "${ECHO_T}$am_cv_func_iconv" >&6 if test "$am_cv_func_iconv" = yes; then @@ -38008,14 +38009,14 @@ cat >>confdefs.h <<\EOF #define HAVE_ICONV 1 EOF - echo "$as_me:38011: checking if the declaration of iconv() needs const." >&5 + echo "$as_me:38012: 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 38018 "configure" +#line 38019 "configure" #include "confdefs.h" #include <stdlib.h> @@ -38040,16 +38041,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:38043: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:38044: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:38046: \$? = $ac_status" >&5 + echo "$as_me:38047: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:38049: \"$ac_try\"") >&5 + { (eval echo "$as_me:38050: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:38052: \$? = $ac_status" >&5 + echo "$as_me:38053: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then am_cv_proto_iconv_const=no else @@ -38059,7 +38060,7 @@ am_cv_proto_iconv_const=yes fi rm -f "conftest.$ac_objext" "conftest.$ac_ext" fi -echo "$as_me:38062: result: $am_cv_proto_iconv_const" >&5 +echo "$as_me:38063: 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 @@ -38104,7 +38105,7 @@ if test -n "$cf_cv_header_path_iconv" ; then CPPFLAGS="${CPPFLAGS}-I$cf_add_incdir" cat >"conftest.$ac_ext" <<_ACEOF -#line 38107 "configure" +#line 38108 "configure" #include "confdefs.h" #include <stdio.h> int @@ -38116,16 +38117,16 @@ printf("Hello") } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:38119: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:38120: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:38122: \$? = $ac_status" >&5 + echo "$as_me:38123: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:38125: \"$ac_try\"") >&5 + { (eval echo "$as_me:38126: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:38128: \$? = $ac_status" >&5 + echo "$as_me:38129: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then : else @@ -38142,7 +38143,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}:38145: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:38146: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -38181,7 +38182,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}:38184: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:38185: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -38195,7 +38196,7 @@ fi if test "x$am_cv_func_iconv" = "xyes" then -echo "$as_me:38198: checking if experimental support for Chinese UTF-8 should be used" >&5 +echo "$as_me:38199: checking if experimental support for Chinese UTF-8 should be used" >&5 echo $ECHO_N "checking if experimental support for Chinese UTF-8 should be used... $ECHO_C" >&6 # Check whether --enable-chinese-utf8 or --disable-chinese-utf8 was given. @@ -38212,7 +38213,7 @@ else use_cn_utf8=yes fi; -echo "$as_me:38215: result: $use_cn_utf8" >&5 +echo "$as_me:38216: result: $use_cn_utf8" >&5 echo "${ECHO_T}$use_cn_utf8" >&6 if test "$use_cn_utf8" != no ; then @@ -38223,7 +38224,7 @@ EOF use_cjk_utf8=yes fi -echo "$as_me:38226: checking if support for Japanese UTF-8 should be used" >&5 +echo "$as_me:38227: checking if support for Japanese UTF-8 should be used" >&5 echo $ECHO_N "checking if support for Japanese UTF-8 should be used... $ECHO_C" >&6 # Check whether --enable-japanese-utf8 or --disable-japanese-utf8 was given. @@ -38240,7 +38241,7 @@ else use_ja_utf8=yes fi; -echo "$as_me:38243: result: $use_ja_utf8" >&5 +echo "$as_me:38244: result: $use_ja_utf8" >&5 echo "${ECHO_T}$use_ja_utf8" >&6 if test "$use_ja_utf8" != no ; then @@ -38261,11 +38262,11 @@ fi else test -n "$verbose" && echo " skipping CJK features which depend on iconv" 1>&6 -echo "${as_me:-configure}:38264: testing skipping CJK features which depend on iconv ..." 1>&5 +echo "${as_me:-configure}:38265: testing skipping CJK features which depend on iconv ..." 1>&5 fi -echo "$as_me:38268: checking if experimental wcwidth/UTF-8 logic should be used" >&5 +echo "$as_me:38269: 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. @@ -38282,7 +38283,7 @@ else use_wcwidth=no fi; -echo "$as_me:38285: result: $use_wcwidth" >&5 +echo "$as_me:38286: result: $use_wcwidth" >&5 echo "${ECHO_T}$use_wcwidth" >&6 test "$use_wcwidth" != no && cat >>confdefs.h <<\EOF @@ -38297,7 +38298,7 @@ case "$cf_cv_screen" in esac if test "$use_dft_colors" != no ; then -echo "$as_me:38300: checking if you want to use default-colors" >&5 +echo "$as_me:38301: 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. @@ -38314,7 +38315,7 @@ else use_dft_colors=no fi; -echo "$as_me:38317: result: $use_dft_colors" >&5 +echo "$as_me:38318: result: $use_dft_colors" >&5 echo "${ECHO_T}$use_dft_colors" >&6 test "$use_dft_colors" = "yes" && cat >>confdefs.h <<\EOF @@ -38323,7 +38324,7 @@ EOF fi -echo "$as_me:38326: checking if experimental keyboard-layout logic should be used" >&5 +echo "$as_me:38327: 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. @@ -38340,14 +38341,14 @@ else use_kbd_layout=no fi; -echo "$as_me:38343: result: $use_kbd_layout" >&5 +echo "$as_me:38344: 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:38350: checking if experimental nested-table logic should be used" >&5 +echo "$as_me:38351: 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. @@ -38364,14 +38365,14 @@ else use_nested_tables=no fi; -echo "$as_me:38367: result: $use_nested_tables" >&5 +echo "$as_me:38368: 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:38374: checking if alternative line-edit bindings should be used" >&5 +echo "$as_me:38375: 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. @@ -38388,14 +38389,14 @@ else use_alt_bindings=yes fi; -echo "$as_me:38391: result: $use_alt_bindings" >&5 +echo "$as_me:38392: 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:38398: checking if ascii case-conversion should be used" >&5 +echo "$as_me:38399: 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. @@ -38412,14 +38413,14 @@ else use_ascii_ctypes=yes fi; -echo "$as_me:38415: result: $use_ascii_ctypes" >&5 +echo "$as_me:38416: 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:38422: checking if you want to use extended HTML DTD logic" >&5 +echo "$as_me:38423: 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. @@ -38436,14 +38437,14 @@ else use_ext_htmldtd=yes fi; -echo "$as_me:38439: result: $use_ext_htmldtd" >&5 +echo "$as_me:38440: 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:38446: checking if file-upload logic should be used" >&5 +echo "$as_me:38447: 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. @@ -38460,14 +38461,14 @@ else use_file_upload=yes fi; -echo "$as_me:38463: result: $use_file_upload" >&5 +echo "$as_me:38464: 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:38470: checking if IDNA support should be used" >&5 +echo "$as_me:38471: 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. @@ -38484,7 +38485,7 @@ else use_idna=yes fi; -echo "$as_me:38487: result: $use_idna" >&5 +echo "$as_me:38488: result: $use_idna" >&5 echo "${ECHO_T}$use_idna" >&6 if test "$use_idna" = yes ; then @@ -38526,7 +38527,7 @@ if test -n "$cf_searchpath/include" ; then CPPFLAGS="${CPPFLAGS}-I$cf_add_incdir" cat >"conftest.$ac_ext" <<_ACEOF -#line 38529 "configure" +#line 38530 "configure" #include "confdefs.h" #include <stdio.h> int @@ -38538,16 +38539,16 @@ printf("Hello") } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:38541: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:38542: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:38544: \$? = $ac_status" >&5 + echo "$as_me:38545: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:38547: \"$ac_try\"") >&5 + { (eval echo "$as_me:38548: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:38550: \$? = $ac_status" >&5 + echo "$as_me:38551: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then : else @@ -38564,7 +38565,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}:38567: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:38568: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -38610,7 +38611,7 @@ if test -n "$cf_searchpath/../include" ; then CPPFLAGS="${CPPFLAGS}-I$cf_add_incdir" cat >"conftest.$ac_ext" <<_ACEOF -#line 38613 "configure" +#line 38614 "configure" #include "confdefs.h" #include <stdio.h> int @@ -38622,16 +38623,16 @@ printf("Hello") } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:38625: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:38626: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:38628: \$? = $ac_status" >&5 + echo "$as_me:38629: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:38631: \"$ac_try\"") >&5 + { (eval echo "$as_me:38632: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:38634: \$? = $ac_status" >&5 + echo "$as_me:38635: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then : else @@ -38648,7 +38649,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}:38651: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:38652: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -38666,7 +38667,7 @@ echo "${as_me:-configure}:38651: testing adding $cf_add_incdir to include-path . fi else -{ { echo "$as_me:38669: error: cannot find under $use_idna" >&5 +{ { echo "$as_me:38670: error: cannot find under $use_idna" >&5 echo "$as_me: error: cannot find under $use_idna" >&2;} { (exit 1); exit 1; }; } fi @@ -38691,7 +38692,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}:38694: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:38695: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -38720,7 +38721,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}:38723: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:38724: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -38729,7 +38730,7 @@ echo "${as_me:-configure}:38723: testing adding $cf_add_libdir to library-path . fi else -{ { echo "$as_me:38732: error: cannot find under $use_idna" >&5 +{ { echo "$as_me:38733: error: cannot find under $use_idna" >&5 echo "$as_me: error: cannot find under $use_idna" >&2;} { (exit 1); exit 1; }; } fi @@ -38743,12 +38744,12 @@ esac cf_cv_header_path_idn2= cf_cv_library_path_idn2= -echo "${as_me:-configure}:38746: testing Starting FIND_LINKAGE(idn2,) ..." 1>&5 +echo "${as_me:-configure}:38747: testing Starting FIND_LINKAGE(idn2,) ..." 1>&5 cf_save_LIBS="$LIBS" cat >"conftest.$ac_ext" <<_ACEOF -#line 38751 "configure" +#line 38752 "configure" #include "confdefs.h" #include <stdio.h> @@ -38767,16 +38768,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:38770: \"$ac_link\"") >&5 +if { (eval echo "$as_me:38771: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:38773: \$? = $ac_status" >&5 + echo "$as_me:38774: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:38776: \"$ac_try\"") >&5 + { (eval echo "$as_me:38777: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:38779: \$? = $ac_status" >&5 + echo "$as_me:38780: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_find_linkage_idn2=yes @@ -38790,7 +38791,7 @@ cat "conftest.$ac_ext" >&5 LIBS="-lidn2 $LIBICONV $cf_save_LIBS" cat >"conftest.$ac_ext" <<_ACEOF -#line 38793 "configure" +#line 38794 "configure" #include "confdefs.h" #include <stdio.h> @@ -38809,16 +38810,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:38812: \"$ac_link\"") >&5 +if { (eval echo "$as_me:38813: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:38815: \$? = $ac_status" >&5 + echo "$as_me:38816: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:38818: \"$ac_try\"") >&5 + { (eval echo "$as_me:38819: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:38821: \$? = $ac_status" >&5 + echo "$as_me:38822: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_find_linkage_idn2=yes @@ -38835,9 +38836,9 @@ cat "conftest.$ac_ext" >&5 test -n "$verbose" && echo " find linkage for idn2 library" 1>&6 -echo "${as_me:-configure}:38838: testing find linkage for idn2 library ..." 1>&5 +echo "${as_me:-configure}:38839: testing find linkage for idn2 library ..." 1>&5 -echo "${as_me:-configure}:38840: testing Searching for headers in FIND_LINKAGE(idn2,) ..." 1>&5 +echo "${as_me:-configure}:38841: testing Searching for headers in FIND_LINKAGE(idn2,) ..." 1>&5 cf_save_CPPFLAGS="$CPPFLAGS" cf_test_CPPFLAGS="$CPPFLAGS" @@ -38928,7 +38929,7 @@ cf_search="$cf_search $cf_header_path_list" if test -d "$cf_cv_header_path_idn2" ; then test -n "$verbose" && echo " ... testing $cf_cv_header_path_idn2" 1>&6 -echo "${as_me:-configure}:38931: testing ... testing $cf_cv_header_path_idn2 ..." 1>&5 +echo "${as_me:-configure}:38932: testing ... testing $cf_cv_header_path_idn2 ..." 1>&5 CPPFLAGS="$cf_save_CPPFLAGS" @@ -38936,7 +38937,7 @@ echo "${as_me:-configure}:38931: testing ... testing $cf_cv_header_path_idn2 ... CPPFLAGS="${CPPFLAGS}-I$cf_cv_header_path_idn2" cat >"conftest.$ac_ext" <<_ACEOF -#line 38939 "configure" +#line 38940 "configure" #include "confdefs.h" #include <stdio.h> @@ -38955,21 +38956,21 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:38958: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:38959: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:38961: \$? = $ac_status" >&5 + echo "$as_me:38962: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:38964: \"$ac_try\"") >&5 + { (eval echo "$as_me:38965: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:38967: \$? = $ac_status" >&5 + echo "$as_me:38968: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then test -n "$verbose" && echo " ... found idn2 headers in $cf_cv_header_path_idn2" 1>&6 -echo "${as_me:-configure}:38972: testing ... found idn2 headers in $cf_cv_header_path_idn2 ..." 1>&5 +echo "${as_me:-configure}:38973: testing ... found idn2 headers in $cf_cv_header_path_idn2 ..." 1>&5 cf_cv_find_linkage_idn2=maybe cf_test_CPPFLAGS="$CPPFLAGS" @@ -38987,7 +38988,7 @@ rm -f "conftest.$ac_objext" "conftest.$ac_ext" if test "$cf_cv_find_linkage_idn2" = maybe ; then -echo "${as_me:-configure}:38990: testing Searching for idn2 library in FIND_LINKAGE(idn2,) ..." 1>&5 +echo "${as_me:-configure}:38991: testing Searching for idn2 library in FIND_LINKAGE(idn2,) ..." 1>&5 cf_save_LIBS="$LIBS" cf_save_LDFLAGS="$LDFLAGS" @@ -39062,13 +39063,13 @@ cf_search="$cf_library_path_list $cf_search" if test -d "$cf_cv_library_path_idn2" ; then test -n "$verbose" && echo " ... testing $cf_cv_library_path_idn2" 1>&6 -echo "${as_me:-configure}:39065: testing ... testing $cf_cv_library_path_idn2 ..." 1>&5 +echo "${as_me:-configure}:39066: testing ... testing $cf_cv_library_path_idn2 ..." 1>&5 CPPFLAGS="$cf_test_CPPFLAGS" LIBS="-lidn2 $LIBICONV $cf_save_LIBS" LDFLAGS="$cf_save_LDFLAGS -L$cf_cv_library_path_idn2" cat >"conftest.$ac_ext" <<_ACEOF -#line 39071 "configure" +#line 39072 "configure" #include "confdefs.h" #include <stdio.h> @@ -39087,21 +39088,21 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:39090: \"$ac_link\"") >&5 +if { (eval echo "$as_me:39091: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:39093: \$? = $ac_status" >&5 + echo "$as_me:39094: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:39096: \"$ac_try\"") >&5 + { (eval echo "$as_me:39097: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:39099: \$? = $ac_status" >&5 + echo "$as_me:39100: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then test -n "$verbose" && echo " ... found idn2 library in $cf_cv_library_path_idn2" 1>&6 -echo "${as_me:-configure}:39104: testing ... found idn2 library in $cf_cv_library_path_idn2 ..." 1>&5 +echo "${as_me:-configure}:39105: testing ... found idn2 library in $cf_cv_library_path_idn2 ..." 1>&5 cf_cv_find_linkage_idn2=yes cf_cv_library_file_idn2="-lidn2" @@ -39163,7 +39164,7 @@ if test -n "$cf_cv_header_path_idn2" ; then CPPFLAGS="${CPPFLAGS}-I$cf_add_incdir" cat >"conftest.$ac_ext" <<_ACEOF -#line 39166 "configure" +#line 39167 "configure" #include "confdefs.h" #include <stdio.h> int @@ -39175,16 +39176,16 @@ printf("Hello") } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:39178: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:39179: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:39181: \$? = $ac_status" >&5 + echo "$as_me:39182: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:39184: \"$ac_try\"") >&5 + { (eval echo "$as_me:39185: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:39187: \$? = $ac_status" >&5 + echo "$as_me:39188: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then : else @@ -39201,7 +39202,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}:39204: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:39205: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -39237,7 +39238,7 @@ if test -n "$cf_cv_library_path_idn2" ; 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}:39240: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:39241: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -39264,14 +39265,14 @@ LIBS="$cf_add_libs" else test -n "$verbose" && echo " unsuccessful, will try idn (older)" 1>&6 -echo "${as_me:-configure}:39267: testing unsuccessful, will try idn (older) ..." 1>&5 +echo "${as_me:-configure}:39268: testing unsuccessful, will try idn (older) ..." 1>&5 fi if test "x$cf_cv_find_linkage_idn2" = xyes ; then test -n "$verbose" && echo " found idn2 library" 1>&6 -echo "${as_me:-configure}:39274: testing found idn2 library ..." 1>&5 +echo "${as_me:-configure}:39275: testing found idn2 library ..." 1>&5 cat >>confdefs.h <<\EOF #define USE_IDN2 1 @@ -39284,12 +39285,12 @@ else cf_cv_header_path_idn= cf_cv_library_path_idn= -echo "${as_me:-configure}:39287: testing Starting FIND_LINKAGE(idn,) ..." 1>&5 +echo "${as_me:-configure}:39288: testing Starting FIND_LINKAGE(idn,) ..." 1>&5 cf_save_LIBS="$LIBS" cat >"conftest.$ac_ext" <<_ACEOF -#line 39292 "configure" +#line 39293 "configure" #include "confdefs.h" #include <stdio.h> @@ -39308,16 +39309,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:39311: \"$ac_link\"") >&5 +if { (eval echo "$as_me:39312: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:39314: \$? = $ac_status" >&5 + echo "$as_me:39315: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:39317: \"$ac_try\"") >&5 + { (eval echo "$as_me:39318: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:39320: \$? = $ac_status" >&5 + echo "$as_me:39321: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_find_linkage_idn=yes @@ -39331,7 +39332,7 @@ cat "conftest.$ac_ext" >&5 LIBS="-lidn $LIBICONV $cf_save_LIBS" cat >"conftest.$ac_ext" <<_ACEOF -#line 39334 "configure" +#line 39335 "configure" #include "confdefs.h" #include <stdio.h> @@ -39350,16 +39351,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:39353: \"$ac_link\"") >&5 +if { (eval echo "$as_me:39354: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:39356: \$? = $ac_status" >&5 + echo "$as_me:39357: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:39359: \"$ac_try\"") >&5 + { (eval echo "$as_me:39360: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:39362: \$? = $ac_status" >&5 + echo "$as_me:39363: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_find_linkage_idn=yes @@ -39376,9 +39377,9 @@ cat "conftest.$ac_ext" >&5 test -n "$verbose" && echo " find linkage for idn library" 1>&6 -echo "${as_me:-configure}:39379: testing find linkage for idn library ..." 1>&5 +echo "${as_me:-configure}:39380: testing find linkage for idn library ..." 1>&5 -echo "${as_me:-configure}:39381: testing Searching for headers in FIND_LINKAGE(idn,) ..." 1>&5 +echo "${as_me:-configure}:39382: testing Searching for headers in FIND_LINKAGE(idn,) ..." 1>&5 cf_save_CPPFLAGS="$CPPFLAGS" cf_test_CPPFLAGS="$CPPFLAGS" @@ -39469,7 +39470,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}:39472: testing ... testing $cf_cv_header_path_idn ..." 1>&5 +echo "${as_me:-configure}:39473: testing ... testing $cf_cv_header_path_idn ..." 1>&5 CPPFLAGS="$cf_save_CPPFLAGS" @@ -39477,7 +39478,7 @@ echo "${as_me:-configure}:39472: testing ... testing $cf_cv_header_path_idn ..." CPPFLAGS="${CPPFLAGS}-I$cf_cv_header_path_idn" cat >"conftest.$ac_ext" <<_ACEOF -#line 39480 "configure" +#line 39481 "configure" #include "confdefs.h" #include <stdio.h> @@ -39496,21 +39497,21 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:39499: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:39500: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:39502: \$? = $ac_status" >&5 + echo "$as_me:39503: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:39505: \"$ac_try\"") >&5 + { (eval echo "$as_me:39506: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:39508: \$? = $ac_status" >&5 + echo "$as_me:39509: \$? = $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}:39513: testing ... found idn headers in $cf_cv_header_path_idn ..." 1>&5 +echo "${as_me:-configure}:39514: testing ... found idn headers in $cf_cv_header_path_idn ..." 1>&5 cf_cv_find_linkage_idn=maybe cf_test_CPPFLAGS="$CPPFLAGS" @@ -39528,7 +39529,7 @@ rm -f "conftest.$ac_objext" "conftest.$ac_ext" if test "$cf_cv_find_linkage_idn" = maybe ; then -echo "${as_me:-configure}:39531: testing Searching for idn library in FIND_LINKAGE(idn,) ..." 1>&5 +echo "${as_me:-configure}:39532: testing Searching for idn library in FIND_LINKAGE(idn,) ..." 1>&5 cf_save_LIBS="$LIBS" cf_save_LDFLAGS="$LDFLAGS" @@ -39603,13 +39604,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}:39606: testing ... testing $cf_cv_library_path_idn ..." 1>&5 +echo "${as_me:-configure}:39607: 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 39612 "configure" +#line 39613 "configure" #include "confdefs.h" #include <stdio.h> @@ -39628,21 +39629,21 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:39631: \"$ac_link\"") >&5 +if { (eval echo "$as_me:39632: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:39634: \$? = $ac_status" >&5 + echo "$as_me:39635: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:39637: \"$ac_try\"") >&5 + { (eval echo "$as_me:39638: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:39640: \$? = $ac_status" >&5 + echo "$as_me:39641: \$? = $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}:39645: testing ... found idn library in $cf_cv_library_path_idn ..." 1>&5 +echo "${as_me:-configure}:39646: testing ... found idn library in $cf_cv_library_path_idn ..." 1>&5 cf_cv_find_linkage_idn=yes cf_cv_library_file_idn="-lidn" @@ -39704,7 +39705,7 @@ if test -n "$cf_cv_header_path_idn" ; then CPPFLAGS="${CPPFLAGS}-I$cf_add_incdir" cat >"conftest.$ac_ext" <<_ACEOF -#line 39707 "configure" +#line 39708 "configure" #include "confdefs.h" #include <stdio.h> int @@ -39716,16 +39717,16 @@ printf("Hello") } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:39719: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:39720: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:39722: \$? = $ac_status" >&5 + echo "$as_me:39723: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:39725: \"$ac_try\"") >&5 + { (eval echo "$as_me:39726: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:39728: \$? = $ac_status" >&5 + echo "$as_me:39729: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then : else @@ -39742,7 +39743,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}:39745: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:39746: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -39778,7 +39779,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}:39781: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:39782: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -39803,14 +39804,14 @@ done LIBS="$cf_add_libs" else -{ echo "$as_me:39806: WARNING: Cannot find idn library" >&5 +{ echo "$as_me:39807: WARNING: Cannot find idn library" >&5 echo "$as_me: WARNING: Cannot find idn library" >&2;} fi if test "x$cf_cv_find_linkage_idn" = xyes ; then test -n "$verbose" && echo " found idn library" 1>&6 -echo "${as_me:-configure}:39813: testing found idn library ..." 1>&5 +echo "${as_me:-configure}:39814: testing found idn library ..." 1>&5 cat >>confdefs.h <<\EOF #define USE_IDNA 1 @@ -39821,7 +39822,7 @@ fi fi -echo "$as_me:39824: checking if element-justification logic should be used" >&5 +echo "$as_me:39825: 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. @@ -39838,14 +39839,14 @@ else use_justify_elts=yes fi; -echo "$as_me:39841: result: $use_justify_elts" >&5 +echo "$as_me:39842: 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:39848: checking if partial-display should be used" >&5 +echo "$as_me:39849: 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. @@ -39862,14 +39863,14 @@ else use_partial_display=yes fi; -echo "$as_me:39865: result: $use_partial_display" >&5 +echo "$as_me:39866: 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:39872: checking if persistent-cookie logic should be used" >&5 +echo "$as_me:39873: 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. @@ -39886,14 +39887,14 @@ else use_filed_cookies=yes fi; -echo "$as_me:39889: result: $use_filed_cookies" >&5 +echo "$as_me:39890: 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:39896: checking if html source should be colorized" >&5 +echo "$as_me:39897: 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. @@ -39910,14 +39911,14 @@ else use_prettysrc=yes fi; -echo "$as_me:39913: result: $use_prettysrc" >&5 +echo "$as_me:39914: 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:39920: checking if progress-bar code should be used" >&5 +echo "$as_me:39921: 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. @@ -39934,14 +39935,14 @@ else use_progressbar=yes fi; -echo "$as_me:39937: result: $use_progressbar" >&5 +echo "$as_me:39938: 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:39944: checking if read-progress message should show ETA" >&5 +echo "$as_me:39945: 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. @@ -39958,14 +39959,14 @@ else use_read_eta=yes fi; -echo "$as_me:39961: result: $use_read_eta" >&5 +echo "$as_me:39962: 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:39968: checking if source caching should be used" >&5 +echo "$as_me:39969: 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. @@ -39982,14 +39983,14 @@ else use_source_cache=yes fi; -echo "$as_me:39985: result: $use_source_cache" >&5 +echo "$as_me:39986: 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:39992: checking if scrollbar code should be used" >&5 +echo "$as_me:39993: 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. @@ -40006,10 +40007,10 @@ else use_scrollbar=yes fi; -echo "$as_me:40009: result: $use_scrollbar" >&5 +echo "$as_me:40010: result: $use_scrollbar" >&5 echo "${ECHO_T}$use_scrollbar" >&6 -echo "$as_me:40012: checking if charset-selection logic should be used" >&5 +echo "$as_me:40013: 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. @@ -40026,14 +40027,14 @@ else use_charset_choice=no fi; -echo "$as_me:40029: result: $use_charset_choice" >&5 +echo "$as_me:40030: 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:40036: checking if you want to use external commands" >&5 +echo "$as_me:40037: 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. @@ -40050,7 +40051,7 @@ else use_externs=no fi; -echo "$as_me:40053: result: $use_externs" >&5 +echo "$as_me:40054: result: $use_externs" >&5 echo "${ECHO_T}$use_externs" >&6 if test "$use_externs" != "no" ; then @@ -40061,7 +40062,7 @@ EOF EXTRA_OBJS="$EXTRA_OBJS LYExtern\$o" fi -echo "$as_me:40064: checking if you want to use setfont support" >&5 +echo "$as_me:40065: 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. @@ -40078,7 +40079,7 @@ else use_setfont=no fi; -echo "$as_me:40081: result: $use_setfont" >&5 +echo "$as_me:40082: result: $use_setfont" >&5 echo "${ECHO_T}$use_setfont" >&6 if test "$use_setfont" = yes ; then case "$host_os" in @@ -40089,7 +40090,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:40092: checking for $ac_word" >&5 +echo "$as_me:40093: 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 @@ -40106,7 +40107,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:40109: found $ac_dir/$ac_word" >&5 + echo "$as_me:40110: found $ac_dir/$ac_word" >&5 break fi done @@ -40117,10 +40118,10 @@ fi SETFONT=$ac_cv_path_SETFONT if test -n "$SETFONT"; then - echo "$as_me:40120: result: $SETFONT" >&5 + echo "$as_me:40121: result: $SETFONT" >&5 echo "${ECHO_T}$SETFONT" >&6 else - echo "$as_me:40123: result: no" >&5 + echo "$as_me:40124: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -40179,7 +40180,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me:-configure}:40182: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me:-configure}:40183: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define SETFONT_PATH "$cf_path_prog" @@ -40197,19 +40198,19 @@ fi SETFONT=built-in test -n "$verbose" && echo " Assume $host_os has font-switching" 1>&6 -echo "${as_me:-configure}:40200: testing Assume $host_os has font-switching ..." 1>&5 +echo "${as_me:-configure}:40201: 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}:40207: testing Assume $host_os has no font-switching ..." 1>&5 +echo "${as_me:-configure}:40208: testing Assume $host_os has no font-switching ..." 1>&5 ;; esac if test -z "$SETFONT" ; then - { echo "$as_me:40212: WARNING: Cannot find a font-setting program" >&5 + { echo "$as_me:40213: WARNING: Cannot find a font-setting program" >&5 echo "$as_me: WARNING: Cannot find a font-setting program" >&2;} elif test "$SETFONT" != unknown ; then @@ -40220,7 +40221,7 @@ EOF fi fi -echo "$as_me:40223: checking if you want cgi-link support" >&5 +echo "$as_me:40224: 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. @@ -40237,10 +40238,10 @@ EOF else enableval=no fi; -echo "$as_me:40240: result: $enableval" >&5 +echo "$as_me:40241: result: $enableval" >&5 echo "${ECHO_T}$enableval" >&6 -echo "$as_me:40243: checking if you want change-exec support" >&5 +echo "$as_me:40244: 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. @@ -40257,14 +40258,14 @@ else use_change_exec=no fi; -echo "$as_me:40260: result: $use_change_exec" >&5 +echo "$as_me:40261: 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:40267: checking if you want exec-links support" >&5 +echo "$as_me:40268: 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. @@ -40281,14 +40282,14 @@ else use_exec_links=$enableval fi; -echo "$as_me:40284: result: $use_exec_links" >&5 +echo "$as_me:40285: 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:40291: checking if you want exec-scripts support" >&5 +echo "$as_me:40292: 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. @@ -40305,14 +40306,14 @@ else use_exec_scripts=$enableval fi; -echo "$as_me:40308: result: $use_exec_scripts" >&5 +echo "$as_me:40309: 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:40315: checking if you want internal-links feature" >&5 +echo "$as_me:40316: 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. @@ -40329,14 +40330,14 @@ else use_internal_links=no fi; -echo "$as_me:40332: result: $use_internal_links" >&5 +echo "$as_me:40333: 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:40339: checking if you want to fork NSL requests" >&5 +echo "$as_me:40340: 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. @@ -40353,7 +40354,7 @@ else use_nsl_fork=no fi; -echo "$as_me:40356: result: $use_nsl_fork" >&5 +echo "$as_me:40357: result: $use_nsl_fork" >&5 echo "${ECHO_T}$use_nsl_fork" >&6 if test "$use_nsl_fork" = yes ; then case "$host_os" in @@ -40374,7 +40375,7 @@ EOF esac fi -echo "$as_me:40377: checking if you want to log URL requests via syslog" >&5 +echo "$as_me:40378: 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. @@ -40391,14 +40392,14 @@ else use_syslog=no fi; -echo "$as_me:40394: result: $use_syslog" >&5 +echo "$as_me:40395: 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:40401: checking if you want to underline links" >&5 +echo "$as_me:40402: 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. @@ -40415,7 +40416,7 @@ else use_underline=no fi; -echo "$as_me:40418: result: $use_underline" >&5 +echo "$as_me:40419: result: $use_underline" >&5 echo "${ECHO_T}$use_underline" >&6 test "$use_underline" = yes && cat >>confdefs.h <<\EOF @@ -40427,7 +40428,7 @@ cat >>confdefs.h <<\EOF #define UNDERLINE_LINKS 0 EOF -echo "$as_me:40430: checking if help files should be gzip'ed" >&5 +echo "$as_me:40431: 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. @@ -40444,10 +40445,10 @@ else use_gzip_help=no fi; -echo "$as_me:40447: result: $use_gzip_help" >&5 +echo "$as_me:40448: result: $use_gzip_help" >&5 echo "${ECHO_T}$use_gzip_help" >&6 -echo "$as_me:40450: checking if you want to use libbz2 for decompression of some bzip2 files" >&5 +echo "$as_me:40451: 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. @@ -40457,7 +40458,7 @@ if test "${with_bzlib+set}" = set; then else use_bzlib=no fi; -echo "$as_me:40460: result: $use_bzlib" >&5 +echo "$as_me:40461: result: $use_bzlib" >&5 echo "${ECHO_T}$use_bzlib" >&6 if test ".$use_bzlib" != ".no" ; then @@ -40499,7 +40500,7 @@ if test -n "$cf_searchpath/include" ; then CPPFLAGS="${CPPFLAGS}-I$cf_add_incdir" cat >"conftest.$ac_ext" <<_ACEOF -#line 40502 "configure" +#line 40503 "configure" #include "confdefs.h" #include <stdio.h> int @@ -40511,16 +40512,16 @@ printf("Hello") } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:40514: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:40515: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:40517: \$? = $ac_status" >&5 + echo "$as_me:40518: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:40520: \"$ac_try\"") >&5 + { (eval echo "$as_me:40521: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:40523: \$? = $ac_status" >&5 + echo "$as_me:40524: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then : else @@ -40537,7 +40538,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}:40540: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:40541: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -40583,7 +40584,7 @@ if test -n "$cf_searchpath/../include" ; then CPPFLAGS="${CPPFLAGS}-I$cf_add_incdir" cat >"conftest.$ac_ext" <<_ACEOF -#line 40586 "configure" +#line 40587 "configure" #include "confdefs.h" #include <stdio.h> int @@ -40595,16 +40596,16 @@ printf("Hello") } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:40598: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:40599: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:40601: \$? = $ac_status" >&5 + echo "$as_me:40602: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:40604: \"$ac_try\"") >&5 + { (eval echo "$as_me:40605: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:40607: \$? = $ac_status" >&5 + echo "$as_me:40608: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then : else @@ -40621,7 +40622,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}:40624: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:40625: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -40639,7 +40640,7 @@ echo "${as_me:-configure}:40624: testing adding $cf_add_incdir to include-path . fi else -{ { echo "$as_me:40642: error: cannot find under $use_bzlib" >&5 +{ { echo "$as_me:40643: error: cannot find under $use_bzlib" >&5 echo "$as_me: error: cannot find under $use_bzlib" >&2;} { (exit 1); exit 1; }; } fi @@ -40664,7 +40665,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}:40667: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:40668: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -40693,7 +40694,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}:40696: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:40697: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -40702,7 +40703,7 @@ echo "${as_me:-configure}:40696: testing adding $cf_add_libdir to library-path . fi else -{ { echo "$as_me:40705: error: cannot find under $use_bzlib" >&5 +{ { echo "$as_me:40706: error: cannot find under $use_bzlib" >&5 echo "$as_me: error: cannot find under $use_bzlib" >&2;} { (exit 1); exit 1; }; } fi @@ -40716,12 +40717,12 @@ esac cf_cv_header_path_bz2= cf_cv_library_path_bz2= -echo "${as_me:-configure}:40719: testing Starting FIND_LINKAGE(bz2,bzlib) ..." 1>&5 +echo "${as_me:-configure}:40720: testing Starting FIND_LINKAGE(bz2,bzlib) ..." 1>&5 cf_save_LIBS="$LIBS" cat >"conftest.$ac_ext" <<_ACEOF -#line 40724 "configure" +#line 40725 "configure" #include "confdefs.h" #include <stdio.h> @@ -40738,16 +40739,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:40741: \"$ac_link\"") >&5 +if { (eval echo "$as_me:40742: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:40744: \$? = $ac_status" >&5 + echo "$as_me:40745: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:40747: \"$ac_try\"") >&5 + { (eval echo "$as_me:40748: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:40750: \$? = $ac_status" >&5 + echo "$as_me:40751: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_find_linkage_bz2=yes @@ -40761,7 +40762,7 @@ cat "conftest.$ac_ext" >&5 LIBS="-lbz2 $cf_save_LIBS" cat >"conftest.$ac_ext" <<_ACEOF -#line 40764 "configure" +#line 40765 "configure" #include "confdefs.h" #include <stdio.h> @@ -40778,16 +40779,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:40781: \"$ac_link\"") >&5 +if { (eval echo "$as_me:40782: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:40784: \$? = $ac_status" >&5 + echo "$as_me:40785: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:40787: \"$ac_try\"") >&5 + { (eval echo "$as_me:40788: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:40790: \$? = $ac_status" >&5 + echo "$as_me:40791: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_find_linkage_bz2=yes @@ -40804,9 +40805,9 @@ cat "conftest.$ac_ext" >&5 test -n "$verbose" && echo " find linkage for bz2 library" 1>&6 -echo "${as_me:-configure}:40807: testing find linkage for bz2 library ..." 1>&5 +echo "${as_me:-configure}:40808: testing find linkage for bz2 library ..." 1>&5 -echo "${as_me:-configure}:40809: testing Searching for headers in FIND_LINKAGE(bz2,bzlib) ..." 1>&5 +echo "${as_me:-configure}:40810: testing Searching for headers in FIND_LINKAGE(bz2,bzlib) ..." 1>&5 cf_save_CPPFLAGS="$CPPFLAGS" cf_test_CPPFLAGS="$CPPFLAGS" @@ -40897,7 +40898,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}:40900: testing ... testing $cf_cv_header_path_bz2 ..." 1>&5 +echo "${as_me:-configure}:40901: testing ... testing $cf_cv_header_path_bz2 ..." 1>&5 CPPFLAGS="$cf_save_CPPFLAGS" @@ -40905,7 +40906,7 @@ echo "${as_me:-configure}:40900: testing ... testing $cf_cv_header_path_bz2 ..." CPPFLAGS="${CPPFLAGS}-I$cf_cv_header_path_bz2" cat >"conftest.$ac_ext" <<_ACEOF -#line 40908 "configure" +#line 40909 "configure" #include "confdefs.h" #include <stdio.h> @@ -40922,21 +40923,21 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:40925: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:40926: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:40928: \$? = $ac_status" >&5 + echo "$as_me:40929: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:40931: \"$ac_try\"") >&5 + { (eval echo "$as_me:40932: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:40934: \$? = $ac_status" >&5 + echo "$as_me:40935: \$? = $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}:40939: testing ... found bz2 headers in $cf_cv_header_path_bz2 ..." 1>&5 +echo "${as_me:-configure}:40940: testing ... found bz2 headers in $cf_cv_header_path_bz2 ..." 1>&5 cf_cv_find_linkage_bz2=maybe cf_test_CPPFLAGS="$CPPFLAGS" @@ -40954,7 +40955,7 @@ rm -f "conftest.$ac_objext" "conftest.$ac_ext" if test "$cf_cv_find_linkage_bz2" = maybe ; then -echo "${as_me:-configure}:40957: testing Searching for bz2 library in FIND_LINKAGE(bz2,bzlib) ..." 1>&5 +echo "${as_me:-configure}:40958: testing Searching for bz2 library in FIND_LINKAGE(bz2,bzlib) ..." 1>&5 cf_save_LIBS="$LIBS" cf_save_LDFLAGS="$LDFLAGS" @@ -40962,7 +40963,7 @@ echo "${as_me:-configure}:40957: testing Searching for bz2 library in FIND_LINKA CPPFLAGS="$cf_test_CPPFLAGS" LIBS="-lbz2 $cf_save_LIBS" cat >"conftest.$ac_ext" <<_ACEOF -#line 40965 "configure" +#line 40966 "configure" #include "confdefs.h" #include <stdio.h> @@ -40979,21 +40980,21 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:40982: \"$ac_link\"") >&5 +if { (eval echo "$as_me:40983: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:40985: \$? = $ac_status" >&5 + echo "$as_me:40986: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:40988: \"$ac_try\"") >&5 + { (eval echo "$as_me:40989: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:40991: \$? = $ac_status" >&5 + echo "$as_me:40992: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then test -n "$verbose" && echo " ... found bz2 library in system" 1>&6 -echo "${as_me:-configure}:40996: testing ... found bz2 library in system ..." 1>&5 +echo "${as_me:-configure}:40997: testing ... found bz2 library in system ..." 1>&5 cf_cv_find_linkage_bz2=yes else @@ -41074,13 +41075,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}:41077: testing ... testing $cf_cv_library_path_bz2 ..." 1>&5 +echo "${as_me:-configure}:41078: 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 41083 "configure" +#line 41084 "configure" #include "confdefs.h" #include <stdio.h> @@ -41097,21 +41098,21 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:41100: \"$ac_link\"") >&5 +if { (eval echo "$as_me:41101: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:41103: \$? = $ac_status" >&5 + echo "$as_me:41104: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:41106: \"$ac_try\"") >&5 + { (eval echo "$as_me:41107: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:41109: \$? = $ac_status" >&5 + echo "$as_me:41110: \$? = $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}:41114: testing ... found bz2 library in $cf_cv_library_path_bz2 ..." 1>&5 +echo "${as_me:-configure}:41115: testing ... found bz2 library in $cf_cv_library_path_bz2 ..." 1>&5 cf_cv_find_linkage_bz2=yes cf_cv_library_file_bz2="-lbz2" @@ -41173,7 +41174,7 @@ if test -n "$cf_cv_header_path_bz2" ; then CPPFLAGS="${CPPFLAGS}-I$cf_add_incdir" cat >"conftest.$ac_ext" <<_ACEOF -#line 41176 "configure" +#line 41177 "configure" #include "confdefs.h" #include <stdio.h> int @@ -41185,16 +41186,16 @@ printf("Hello") } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:41188: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:41189: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:41191: \$? = $ac_status" >&5 + echo "$as_me:41192: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:41194: \"$ac_try\"") >&5 + { (eval echo "$as_me:41195: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:41197: \$? = $ac_status" >&5 + echo "$as_me:41198: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then : else @@ -41211,7 +41212,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}:41214: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:41215: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -41247,7 +41248,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}:41250: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:41251: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -41272,7 +41273,7 @@ done LIBS="$cf_add_libs" else -{ echo "$as_me:41275: WARNING: Cannot find bz2 library" >&5 +{ echo "$as_me:41276: WARNING: Cannot find bz2 library" >&5 echo "$as_me: WARNING: Cannot find bz2 library" >&2;} fi @@ -41283,7 +41284,7 @@ EOF fi -echo "$as_me:41286: checking if you want to use zlib for decompression of some gzip files" >&5 +echo "$as_me:41287: 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. @@ -41293,7 +41294,7 @@ if test "${with_zlib+set}" = set; then else use_zlib=no fi; -echo "$as_me:41296: result: $use_zlib" >&5 +echo "$as_me:41297: result: $use_zlib" >&5 echo "${ECHO_T}$use_zlib" >&6 if test ".$use_zlib" != ".no" ; then @@ -41335,7 +41336,7 @@ if test -n "$cf_searchpath/include" ; then CPPFLAGS="${CPPFLAGS}-I$cf_add_incdir" cat >"conftest.$ac_ext" <<_ACEOF -#line 41338 "configure" +#line 41339 "configure" #include "confdefs.h" #include <stdio.h> int @@ -41347,16 +41348,16 @@ printf("Hello") } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:41350: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:41351: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:41353: \$? = $ac_status" >&5 + echo "$as_me:41354: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:41356: \"$ac_try\"") >&5 + { (eval echo "$as_me:41357: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:41359: \$? = $ac_status" >&5 + echo "$as_me:41360: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then : else @@ -41373,7 +41374,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}:41376: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:41377: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -41419,7 +41420,7 @@ if test -n "$cf_searchpath/../include" ; then CPPFLAGS="${CPPFLAGS}-I$cf_add_incdir" cat >"conftest.$ac_ext" <<_ACEOF -#line 41422 "configure" +#line 41423 "configure" #include "confdefs.h" #include <stdio.h> int @@ -41431,16 +41432,16 @@ printf("Hello") } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:41434: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:41435: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:41437: \$? = $ac_status" >&5 + echo "$as_me:41438: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:41440: \"$ac_try\"") >&5 + { (eval echo "$as_me:41441: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:41443: \$? = $ac_status" >&5 + echo "$as_me:41444: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then : else @@ -41457,7 +41458,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}:41460: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:41461: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -41475,7 +41476,7 @@ echo "${as_me:-configure}:41460: testing adding $cf_add_incdir to include-path . fi else -{ { echo "$as_me:41478: error: cannot find under $use_zlib" >&5 +{ { echo "$as_me:41479: error: cannot find under $use_zlib" >&5 echo "$as_me: error: cannot find under $use_zlib" >&2;} { (exit 1); exit 1; }; } fi @@ -41500,7 +41501,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}:41503: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:41504: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -41529,7 +41530,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}:41532: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:41533: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -41538,7 +41539,7 @@ echo "${as_me:-configure}:41532: testing adding $cf_add_libdir to library-path . fi else -{ { echo "$as_me:41541: error: cannot find under $use_zlib" >&5 +{ { echo "$as_me:41542: error: cannot find under $use_zlib" >&5 echo "$as_me: error: cannot find under $use_zlib" >&2;} { (exit 1); exit 1; }; } fi @@ -41552,12 +41553,12 @@ esac cf_cv_header_path_z= cf_cv_library_path_z= -echo "${as_me:-configure}:41555: testing Starting FIND_LINKAGE(z,zlib) ..." 1>&5 +echo "${as_me:-configure}:41556: testing Starting FIND_LINKAGE(z,zlib) ..." 1>&5 cf_save_LIBS="$LIBS" cat >"conftest.$ac_ext" <<_ACEOF -#line 41560 "configure" +#line 41561 "configure" #include "confdefs.h" #include <zlib.h> @@ -41573,16 +41574,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:41576: \"$ac_link\"") >&5 +if { (eval echo "$as_me:41577: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:41579: \$? = $ac_status" >&5 + echo "$as_me:41580: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:41582: \"$ac_try\"") >&5 + { (eval echo "$as_me:41583: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:41585: \$? = $ac_status" >&5 + echo "$as_me:41586: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_find_linkage_z=yes @@ -41596,7 +41597,7 @@ cat "conftest.$ac_ext" >&5 LIBS="-lz $cf_save_LIBS" cat >"conftest.$ac_ext" <<_ACEOF -#line 41599 "configure" +#line 41600 "configure" #include "confdefs.h" #include <zlib.h> @@ -41612,16 +41613,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:41615: \"$ac_link\"") >&5 +if { (eval echo "$as_me:41616: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:41618: \$? = $ac_status" >&5 + echo "$as_me:41619: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:41621: \"$ac_try\"") >&5 + { (eval echo "$as_me:41622: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:41624: \$? = $ac_status" >&5 + echo "$as_me:41625: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_find_linkage_z=yes @@ -41638,9 +41639,9 @@ cat "conftest.$ac_ext" >&5 test -n "$verbose" && echo " find linkage for z library" 1>&6 -echo "${as_me:-configure}:41641: testing find linkage for z library ..." 1>&5 +echo "${as_me:-configure}:41642: testing find linkage for z library ..." 1>&5 -echo "${as_me:-configure}:41643: testing Searching for headers in FIND_LINKAGE(z,zlib) ..." 1>&5 +echo "${as_me:-configure}:41644: testing Searching for headers in FIND_LINKAGE(z,zlib) ..." 1>&5 cf_save_CPPFLAGS="$CPPFLAGS" cf_test_CPPFLAGS="$CPPFLAGS" @@ -41731,7 +41732,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}:41734: testing ... testing $cf_cv_header_path_z ..." 1>&5 +echo "${as_me:-configure}:41735: testing ... testing $cf_cv_header_path_z ..." 1>&5 CPPFLAGS="$cf_save_CPPFLAGS" @@ -41739,7 +41740,7 @@ echo "${as_me:-configure}:41734: testing ... testing $cf_cv_header_path_z ..." 1 CPPFLAGS="${CPPFLAGS}-I$cf_cv_header_path_z" cat >"conftest.$ac_ext" <<_ACEOF -#line 41742 "configure" +#line 41743 "configure" #include "confdefs.h" #include <zlib.h> @@ -41755,21 +41756,21 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:41758: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:41759: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:41761: \$? = $ac_status" >&5 + echo "$as_me:41762: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:41764: \"$ac_try\"") >&5 + { (eval echo "$as_me:41765: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:41767: \$? = $ac_status" >&5 + echo "$as_me:41768: \$? = $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}:41772: testing ... found z headers in $cf_cv_header_path_z ..." 1>&5 +echo "${as_me:-configure}:41773: testing ... found z headers in $cf_cv_header_path_z ..." 1>&5 cf_cv_find_linkage_z=maybe cf_test_CPPFLAGS="$CPPFLAGS" @@ -41787,7 +41788,7 @@ rm -f "conftest.$ac_objext" "conftest.$ac_ext" if test "$cf_cv_find_linkage_z" = maybe ; then -echo "${as_me:-configure}:41790: testing Searching for z library in FIND_LINKAGE(z,zlib) ..." 1>&5 +echo "${as_me:-configure}:41791: testing Searching for z library in FIND_LINKAGE(z,zlib) ..." 1>&5 cf_save_LIBS="$LIBS" cf_save_LDFLAGS="$LDFLAGS" @@ -41795,7 +41796,7 @@ echo "${as_me:-configure}:41790: testing Searching for z library in FIND_LINKAGE CPPFLAGS="$cf_test_CPPFLAGS" LIBS="-lz $cf_save_LIBS" cat >"conftest.$ac_ext" <<_ACEOF -#line 41798 "configure" +#line 41799 "configure" #include "confdefs.h" #include <zlib.h> @@ -41811,21 +41812,21 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:41814: \"$ac_link\"") >&5 +if { (eval echo "$as_me:41815: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:41817: \$? = $ac_status" >&5 + echo "$as_me:41818: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:41820: \"$ac_try\"") >&5 + { (eval echo "$as_me:41821: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:41823: \$? = $ac_status" >&5 + echo "$as_me:41824: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then test -n "$verbose" && echo " ... found z library in system" 1>&6 -echo "${as_me:-configure}:41828: testing ... found z library in system ..." 1>&5 +echo "${as_me:-configure}:41829: testing ... found z library in system ..." 1>&5 cf_cv_find_linkage_z=yes else @@ -41906,13 +41907,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}:41909: testing ... testing $cf_cv_library_path_z ..." 1>&5 +echo "${as_me:-configure}:41910: 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 41915 "configure" +#line 41916 "configure" #include "confdefs.h" #include <zlib.h> @@ -41928,21 +41929,21 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:41931: \"$ac_link\"") >&5 +if { (eval echo "$as_me:41932: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:41934: \$? = $ac_status" >&5 + echo "$as_me:41935: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:41937: \"$ac_try\"") >&5 + { (eval echo "$as_me:41938: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:41940: \$? = $ac_status" >&5 + echo "$as_me:41941: \$? = $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}:41945: testing ... found z library in $cf_cv_library_path_z ..." 1>&5 +echo "${as_me:-configure}:41946: testing ... found z library in $cf_cv_library_path_z ..." 1>&5 cf_cv_find_linkage_z=yes cf_cv_library_file_z="-lz" @@ -42004,7 +42005,7 @@ if test -n "$cf_cv_header_path_z" ; then CPPFLAGS="${CPPFLAGS}-I$cf_add_incdir" cat >"conftest.$ac_ext" <<_ACEOF -#line 42007 "configure" +#line 42008 "configure" #include "confdefs.h" #include <stdio.h> int @@ -42016,16 +42017,16 @@ printf("Hello") } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:42019: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:42020: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:42022: \$? = $ac_status" >&5 + echo "$as_me:42023: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:42025: \"$ac_try\"") >&5 + { (eval echo "$as_me:42026: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:42028: \$? = $ac_status" >&5 + echo "$as_me:42029: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then : else @@ -42042,7 +42043,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}:42045: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:42046: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -42078,7 +42079,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}:42081: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:42082: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -42103,7 +42104,7 @@ done LIBS="$cf_add_libs" else -{ echo "$as_me:42106: WARNING: Cannot find z library" >&5 +{ echo "$as_me:42107: WARNING: Cannot find z library" >&5 echo "$as_me: WARNING: Cannot find z library" >&2;} fi @@ -42112,13 +42113,13 @@ for ac_func in \ do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` -echo "$as_me:42115: checking for $ac_func" >&5 +echo "$as_me:42116: 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 42121 "configure" +#line 42122 "configure" #include "confdefs.h" #define $ac_func autoconf_temporary #include <limits.h> /* least-intrusive standard header which defines gcc2 __stub macros */ @@ -42149,16 +42150,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:42152: \"$ac_link\"") >&5 +if { (eval echo "$as_me:42153: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:42155: \$? = $ac_status" >&5 + echo "$as_me:42156: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:42158: \"$ac_try\"") >&5 + { (eval echo "$as_me:42159: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:42161: \$? = $ac_status" >&5 + echo "$as_me:42162: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then eval "$as_ac_var=yes" else @@ -42168,7 +42169,7 @@ eval "$as_ac_var=no" fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:42171: result: `eval echo '${'"$as_ac_var"'}'`" >&5 +echo "$as_me:42172: 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 @@ -42185,7 +42186,7 @@ EOF fi -echo "$as_me:42188: checking if you want to use brotli decompression" >&5 +echo "$as_me:42189: checking if you want to use brotli decompression" >&5 echo $ECHO_N "checking if you want to use brotli decompression... $ECHO_C" >&6 # Check whether --with-brotli or --without-brotli was given. @@ -42195,7 +42196,7 @@ if test "${with_brotli+set}" = set; then else use_brotli=no fi; -echo "$as_me:42198: result: $use_brotli" >&5 +echo "$as_me:42199: result: $use_brotli" >&5 echo "${ECHO_T}$use_brotli" >&6 if test ".$use_brotli" != ".no" ; then @@ -42237,7 +42238,7 @@ if test -n "$cf_searchpath/include" ; then CPPFLAGS="${CPPFLAGS}-I$cf_add_incdir" cat >"conftest.$ac_ext" <<_ACEOF -#line 42240 "configure" +#line 42241 "configure" #include "confdefs.h" #include <stdio.h> int @@ -42249,16 +42250,16 @@ printf("Hello") } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:42252: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:42253: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:42255: \$? = $ac_status" >&5 + echo "$as_me:42256: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:42258: \"$ac_try\"") >&5 + { (eval echo "$as_me:42259: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:42261: \$? = $ac_status" >&5 + echo "$as_me:42262: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then : else @@ -42275,7 +42276,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}:42278: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:42279: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -42321,7 +42322,7 @@ if test -n "$cf_searchpath/../include" ; then CPPFLAGS="${CPPFLAGS}-I$cf_add_incdir" cat >"conftest.$ac_ext" <<_ACEOF -#line 42324 "configure" +#line 42325 "configure" #include "confdefs.h" #include <stdio.h> int @@ -42333,16 +42334,16 @@ printf("Hello") } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:42336: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:42337: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:42339: \$? = $ac_status" >&5 + echo "$as_me:42340: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:42342: \"$ac_try\"") >&5 + { (eval echo "$as_me:42343: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:42345: \$? = $ac_status" >&5 + echo "$as_me:42346: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then : else @@ -42359,7 +42360,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}:42362: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:42363: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -42377,7 +42378,7 @@ echo "${as_me:-configure}:42362: testing adding $cf_add_incdir to include-path . fi else -{ { echo "$as_me:42380: error: cannot find under $use_brotli" >&5 +{ { echo "$as_me:42381: error: cannot find under $use_brotli" >&5 echo "$as_me: error: cannot find under $use_brotli" >&2;} { (exit 1); exit 1; }; } fi @@ -42402,7 +42403,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}:42405: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:42406: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -42431,7 +42432,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}:42434: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:42435: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -42440,7 +42441,7 @@ echo "${as_me:-configure}:42434: testing adding $cf_add_libdir to library-path . fi else -{ { echo "$as_me:42443: error: cannot find under $use_brotli" >&5 +{ { echo "$as_me:42444: error: cannot find under $use_brotli" >&5 echo "$as_me: error: cannot find under $use_brotli" >&2;} { (exit 1); exit 1; }; } fi @@ -42454,12 +42455,12 @@ esac cf_cv_header_path_brotlidec= cf_cv_library_path_brotlidec= -echo "${as_me:-configure}:42457: testing Starting FIND_LINKAGE(brotlidec,brotlilib) ..." 1>&5 +echo "${as_me:-configure}:42458: testing Starting FIND_LINKAGE(brotlidec,brotlilib) ..." 1>&5 cf_save_LIBS="$LIBS" cat >"conftest.$ac_ext" <<_ACEOF -#line 42462 "configure" +#line 42463 "configure" #include "confdefs.h" #include <brotli/decode.h> @@ -42482,16 +42483,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:42485: \"$ac_link\"") >&5 +if { (eval echo "$as_me:42486: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:42488: \$? = $ac_status" >&5 + echo "$as_me:42489: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:42491: \"$ac_try\"") >&5 + { (eval echo "$as_me:42492: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:42494: \$? = $ac_status" >&5 + echo "$as_me:42495: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_find_linkage_brotlidec=yes @@ -42505,7 +42506,7 @@ cat "conftest.$ac_ext" >&5 LIBS="-lbrotlidec $cf_save_LIBS" cat >"conftest.$ac_ext" <<_ACEOF -#line 42508 "configure" +#line 42509 "configure" #include "confdefs.h" #include <brotli/decode.h> @@ -42528,16 +42529,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:42531: \"$ac_link\"") >&5 +if { (eval echo "$as_me:42532: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:42534: \$? = $ac_status" >&5 + echo "$as_me:42535: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:42537: \"$ac_try\"") >&5 + { (eval echo "$as_me:42538: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:42540: \$? = $ac_status" >&5 + echo "$as_me:42541: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_find_linkage_brotlidec=yes @@ -42554,9 +42555,9 @@ cat "conftest.$ac_ext" >&5 test -n "$verbose" && echo " find linkage for brotlidec library" 1>&6 -echo "${as_me:-configure}:42557: testing find linkage for brotlidec library ..." 1>&5 +echo "${as_me:-configure}:42558: testing find linkage for brotlidec library ..." 1>&5 -echo "${as_me:-configure}:42559: testing Searching for headers in FIND_LINKAGE(brotlidec,brotlilib) ..." 1>&5 +echo "${as_me:-configure}:42560: testing Searching for headers in FIND_LINKAGE(brotlidec,brotlilib) ..." 1>&5 cf_save_CPPFLAGS="$CPPFLAGS" cf_test_CPPFLAGS="$CPPFLAGS" @@ -42647,7 +42648,7 @@ cf_search="$cf_search $cf_header_path_list" if test -d "$cf_cv_header_path_brotlidec" ; then test -n "$verbose" && echo " ... testing $cf_cv_header_path_brotlidec" 1>&6 -echo "${as_me:-configure}:42650: testing ... testing $cf_cv_header_path_brotlidec ..." 1>&5 +echo "${as_me:-configure}:42651: testing ... testing $cf_cv_header_path_brotlidec ..." 1>&5 CPPFLAGS="$cf_save_CPPFLAGS" @@ -42655,7 +42656,7 @@ echo "${as_me:-configure}:42650: testing ... testing $cf_cv_header_path_brotlide CPPFLAGS="${CPPFLAGS}-I$cf_cv_header_path_brotlidec" cat >"conftest.$ac_ext" <<_ACEOF -#line 42658 "configure" +#line 42659 "configure" #include "confdefs.h" #include <brotli/decode.h> @@ -42678,21 +42679,21 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:42681: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:42682: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:42684: \$? = $ac_status" >&5 + echo "$as_me:42685: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:42687: \"$ac_try\"") >&5 + { (eval echo "$as_me:42688: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:42690: \$? = $ac_status" >&5 + echo "$as_me:42691: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then test -n "$verbose" && echo " ... found brotlidec headers in $cf_cv_header_path_brotlidec" 1>&6 -echo "${as_me:-configure}:42695: testing ... found brotlidec headers in $cf_cv_header_path_brotlidec ..." 1>&5 +echo "${as_me:-configure}:42696: testing ... found brotlidec headers in $cf_cv_header_path_brotlidec ..." 1>&5 cf_cv_find_linkage_brotlidec=maybe cf_test_CPPFLAGS="$CPPFLAGS" @@ -42710,7 +42711,7 @@ rm -f "conftest.$ac_objext" "conftest.$ac_ext" if test "$cf_cv_find_linkage_brotlidec" = maybe ; then -echo "${as_me:-configure}:42713: testing Searching for brotlidec library in FIND_LINKAGE(brotlidec,brotlilib) ..." 1>&5 +echo "${as_me:-configure}:42714: testing Searching for brotlidec library in FIND_LINKAGE(brotlidec,brotlilib) ..." 1>&5 cf_save_LIBS="$LIBS" cf_save_LDFLAGS="$LDFLAGS" @@ -42718,7 +42719,7 @@ echo "${as_me:-configure}:42713: testing Searching for brotlidec library in FIND CPPFLAGS="$cf_test_CPPFLAGS" LIBS="-lbrotlidec $cf_save_LIBS" cat >"conftest.$ac_ext" <<_ACEOF -#line 42721 "configure" +#line 42722 "configure" #include "confdefs.h" #include <brotli/decode.h> @@ -42741,21 +42742,21 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:42744: \"$ac_link\"") >&5 +if { (eval echo "$as_me:42745: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:42747: \$? = $ac_status" >&5 + echo "$as_me:42748: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:42750: \"$ac_try\"") >&5 + { (eval echo "$as_me:42751: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:42753: \$? = $ac_status" >&5 + echo "$as_me:42754: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then test -n "$verbose" && echo " ... found brotlidec library in system" 1>&6 -echo "${as_me:-configure}:42758: testing ... found brotlidec library in system ..." 1>&5 +echo "${as_me:-configure}:42759: testing ... found brotlidec library in system ..." 1>&5 cf_cv_find_linkage_brotlidec=yes else @@ -42836,13 +42837,13 @@ cf_search="$cf_library_path_list $cf_search" if test -d "$cf_cv_library_path_brotlidec" ; then test -n "$verbose" && echo " ... testing $cf_cv_library_path_brotlidec" 1>&6 -echo "${as_me:-configure}:42839: testing ... testing $cf_cv_library_path_brotlidec ..." 1>&5 +echo "${as_me:-configure}:42840: testing ... testing $cf_cv_library_path_brotlidec ..." 1>&5 CPPFLAGS="$cf_test_CPPFLAGS" LIBS="-lbrotlidec $cf_save_LIBS" LDFLAGS="$cf_save_LDFLAGS -L$cf_cv_library_path_brotlidec" cat >"conftest.$ac_ext" <<_ACEOF -#line 42845 "configure" +#line 42846 "configure" #include "confdefs.h" #include <brotli/decode.h> @@ -42865,21 +42866,21 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:42868: \"$ac_link\"") >&5 +if { (eval echo "$as_me:42869: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:42871: \$? = $ac_status" >&5 + echo "$as_me:42872: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:42874: \"$ac_try\"") >&5 + { (eval echo "$as_me:42875: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:42877: \$? = $ac_status" >&5 + echo "$as_me:42878: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then test -n "$verbose" && echo " ... found brotlidec library in $cf_cv_library_path_brotlidec" 1>&6 -echo "${as_me:-configure}:42882: testing ... found brotlidec library in $cf_cv_library_path_brotlidec ..." 1>&5 +echo "${as_me:-configure}:42883: testing ... found brotlidec library in $cf_cv_library_path_brotlidec ..." 1>&5 cf_cv_find_linkage_brotlidec=yes cf_cv_library_file_brotlidec="-lbrotlidec" @@ -42941,7 +42942,7 @@ if test -n "$cf_cv_header_path_brotlidec" ; then CPPFLAGS="${CPPFLAGS}-I$cf_add_incdir" cat >"conftest.$ac_ext" <<_ACEOF -#line 42944 "configure" +#line 42945 "configure" #include "confdefs.h" #include <stdio.h> int @@ -42953,16 +42954,16 @@ printf("Hello") } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:42956: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:42957: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:42959: \$? = $ac_status" >&5 + echo "$as_me:42960: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:42962: \"$ac_try\"") >&5 + { (eval echo "$as_me:42963: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:42965: \$? = $ac_status" >&5 + echo "$as_me:42966: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then : else @@ -42979,7 +42980,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}:42982: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:42983: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -43015,7 +43016,7 @@ if test -n "$cf_cv_library_path_brotlidec" ; 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}:43018: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:43019: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -43040,7 +43041,7 @@ done LIBS="$cf_add_libs" else -{ echo "$as_me:43043: WARNING: Cannot find brotlidec library" >&5 +{ echo "$as_me:43044: WARNING: Cannot find brotlidec library" >&5 echo "$as_me: WARNING: Cannot find brotlidec library" >&2;} fi @@ -43051,7 +43052,7 @@ EOF fi -echo "$as_me:43054: checking if you want to exclude FINGER code" >&5 +echo "$as_me:43055: 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. @@ -43068,14 +43069,14 @@ else use_finger=no fi; -echo "$as_me:43071: result: $use_finger" >&5 +echo "$as_me:43072: 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:43078: checking if you want to exclude GOPHER code" >&5 +echo "$as_me:43079: 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. @@ -43092,14 +43093,14 @@ else use_gopher=no fi; -echo "$as_me:43095: result: $use_gopher" >&5 +echo "$as_me:43096: 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:43102: checking if you want to exclude NEWS code" >&5 +echo "$as_me:43103: 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. @@ -43116,14 +43117,14 @@ else use_news=no fi; -echo "$as_me:43119: result: $use_news" >&5 +echo "$as_me:43120: 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:43126: checking if you want to exclude FTP code" >&5 +echo "$as_me:43127: 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. @@ -43140,14 +43141,14 @@ else use_ftp=no fi; -echo "$as_me:43143: result: $use_ftp" >&5 +echo "$as_me:43144: 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:43150: checking if you want to include WAIS code" >&5 +echo "$as_me:43151: 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. @@ -43164,13 +43165,13 @@ else use_wais=no fi; -echo "$as_me:43167: result: $use_wais" >&5 +echo "$as_me:43168: result: $use_wais" >&5 echo "${ECHO_T}$use_wais" >&6 MAKE_WAIS="#" if test "$use_wais" != "no" then - echo "$as_me:43173: checking for fs_free in -lwais" >&5 + echo "$as_me:43174: 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 @@ -43178,7 +43179,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lwais $LIBS" cat >"conftest.$ac_ext" <<_ACEOF -#line 43181 "configure" +#line 43182 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -43197,16 +43198,16 @@ fs_free (); } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:43200: \"$ac_link\"") >&5 +if { (eval echo "$as_me:43201: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:43203: \$? = $ac_status" >&5 + echo "$as_me:43204: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:43206: \"$ac_try\"") >&5 + { (eval echo "$as_me:43207: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:43209: \$? = $ac_status" >&5 + echo "$as_me:43210: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_lib_wais_fs_free=yes else @@ -43217,18 +43218,18 @@ fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:43220: result: $ac_cv_lib_wais_fs_free" >&5 +echo "$as_me:43221: 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:43224: checking if -lm needed for math functions" >&5 +echo "$as_me:43225: 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 43231 "configure" +#line 43232 "configure" #include "confdefs.h" #include <stdio.h> @@ -43244,16 +43245,16 @@ double x = rand(); printf("result = %g\\n", sin(x)) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:43247: \"$ac_link\"") >&5 +if { (eval echo "$as_me:43248: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:43250: \$? = $ac_status" >&5 + echo "$as_me:43251: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:43253: \"$ac_try\"") >&5 + { (eval echo "$as_me:43254: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:43256: \$? = $ac_status" >&5 + echo "$as_me:43257: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_need_libm=no else @@ -43263,7 +43264,7 @@ cf_cv_need_libm=yes fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:43266: result: $cf_cv_need_libm" >&5 +echo "$as_me:43267: result: $cf_cv_need_libm" >&5 echo "${ECHO_T}$cf_cv_need_libm" >&6 if test "$cf_cv_need_libm" = yes @@ -43271,14 +43272,14 @@ then cf_save_LIBS="$LIBS" LIBS="$LIBS -lm" - echo "$as_me:43274: checking if -lm is available for math functions" >&5 + echo "$as_me:43275: checking if -lm is available for math functions" >&5 echo $ECHO_N "checking if -lm is available for math functions... $ECHO_C" >&6 if test "${cf_cv_have_libm+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >"conftest.$ac_ext" <<_ACEOF -#line 43281 "configure" +#line 43282 "configure" #include "confdefs.h" #include <stdio.h> @@ -43294,16 +43295,16 @@ double x = rand(); printf("result = %g\\n", sin(x)) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:43297: \"$ac_link\"") >&5 +if { (eval echo "$as_me:43298: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:43300: \$? = $ac_status" >&5 + echo "$as_me:43301: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:43303: \"$ac_try\"") >&5 + { (eval echo "$as_me:43304: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:43306: \$? = $ac_status" >&5 + echo "$as_me:43307: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_have_libm=yes else @@ -43313,7 +43314,7 @@ cf_cv_have_libm=no fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:43316: result: $cf_cv_have_libm" >&5 +echo "$as_me:43317: result: $cf_cv_have_libm" >&5 echo "${ECHO_T}$cf_cv_have_libm" >&6 LIBS="$cf_save_LIBS" @@ -43369,23 +43370,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:43372: checking for $ac_header" >&5 +echo "$as_me:43373: 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 43378 "configure" +#line 43379 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:43382: \"$ac_cpp "conftest.$ac_ext"\"") >&5 +if { (eval echo "$as_me:43383: \"$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:43388: \$? = $ac_status" >&5 + echo "$as_me:43389: \$? = $ac_status" >&5 (exit "$ac_status"); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -43404,7 +43405,7 @@ else fi rm -f conftest.err "conftest.$ac_ext" fi -echo "$as_me:43407: result: `eval echo '${'"$as_ac_Header"'}'`" >&5 +echo "$as_me:43408: 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 @@ -43417,7 +43418,7 @@ done MAKE_WAIS= else - { echo "$as_me:43420: WARNING: could not find WAIS library" >&5 + { echo "$as_me:43421: WARNING: could not find WAIS library" >&5 echo "$as_me: WARNING: could not find WAIS library" >&2;} fi @@ -43425,7 +43426,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:43428: checking if directory-editor code should be used" >&5 +echo "$as_me:43429: 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. @@ -43442,7 +43443,7 @@ else use_dired=yes fi; -echo "$as_me:43445: result: $use_dired" >&5 +echo "$as_me:43446: result: $use_dired" >&5 echo "${ECHO_T}$use_dired" >&6 if test ".$use_dired" != ".no" ; then @@ -43452,7 +43453,7 @@ cat >>confdefs.h <<\EOF #define DIRED_SUPPORT 1 EOF - echo "$as_me:43455: checking if you wish to allow extracting from archives via DirEd" >&5 + echo "$as_me:43456: 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. @@ -43469,10 +43470,10 @@ EOF else enableval=yes fi; - echo "$as_me:43472: result: $enableval" >&5 + echo "$as_me:43473: result: $enableval" >&5 echo "${ECHO_T}$enableval" >&6 - echo "$as_me:43475: checking if DirEd mode should override keys" >&5 + echo "$as_me:43476: 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. @@ -43496,10 +43497,10 @@ cat >>confdefs.h <<\EOF EOF fi; - echo "$as_me:43499: result: $enableval" >&5 + echo "$as_me:43500: result: $enableval" >&5 echo "${ECHO_T}$enableval" >&6 - echo "$as_me:43502: checking if you wish to allow permissions commands via DirEd" >&5 + echo "$as_me:43503: 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. @@ -43523,10 +43524,10 @@ cat >>confdefs.h <<\EOF EOF fi; - echo "$as_me:43526: result: $enableval" >&5 + echo "$as_me:43527: result: $enableval" >&5 echo "${ECHO_T}$enableval" >&6 - echo "$as_me:43529: checking if you wish to allow executable-permission commands via DirEd" >&5 + echo "$as_me:43530: 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. @@ -43543,10 +43544,10 @@ EOF else enableval=yes fi; - echo "$as_me:43546: result: $enableval" >&5 + echo "$as_me:43547: result: $enableval" >&5 echo "${ECHO_T}$enableval" >&6 - echo "$as_me:43549: checking if you wish to allow \"tar\" commands from DirEd" >&5 + echo "$as_me:43550: 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. @@ -43570,10 +43571,10 @@ cat >>confdefs.h <<\EOF EOF fi; - echo "$as_me:43573: result: $enableval" >&5 + echo "$as_me:43574: result: $enableval" >&5 echo "${ECHO_T}$enableval" >&6 - echo "$as_me:43576: checking if you wish to allow \"uudecode\" commands from DirEd" >&5 + echo "$as_me:43577: 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. @@ -43597,10 +43598,10 @@ cat >>confdefs.h <<\EOF EOF fi; - echo "$as_me:43600: result: $enableval" >&5 + echo "$as_me:43601: result: $enableval" >&5 echo "${ECHO_T}$enableval" >&6 - echo "$as_me:43603: checking if you wish to allow \"zip\" and \"unzip\" commands from DirEd" >&5 + echo "$as_me:43604: 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. @@ -43624,10 +43625,10 @@ cat >>confdefs.h <<\EOF EOF fi; - echo "$as_me:43627: result: $enableval" >&5 + echo "$as_me:43628: result: $enableval" >&5 echo "${ECHO_T}$enableval" >&6 - echo "$as_me:43630: checking if you wish to allow \"gzip\" and \"gunzip\" commands from DirEd" >&5 + echo "$as_me:43631: 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. @@ -43651,11 +43652,11 @@ cat >>confdefs.h <<\EOF EOF fi; - echo "$as_me:43654: result: $enableval" >&5 + echo "$as_me:43655: result: $enableval" >&5 echo "${ECHO_T}$enableval" >&6 fi -echo "$as_me:43658: checking if you want long-directory listings" >&5 +echo "$as_me:43659: 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. @@ -43679,10 +43680,10 @@ cat >>confdefs.h <<\EOF EOF fi; -echo "$as_me:43682: result: $enableval" >&5 +echo "$as_me:43683: result: $enableval" >&5 echo "${ECHO_T}$enableval" >&6 -echo "$as_me:43685: checking if parent-directory references are permitted" >&5 +echo "$as_me:43686: 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. @@ -43699,7 +43700,7 @@ EOF else enableval=yes fi; -echo "$as_me:43702: result: $enableval" >&5 +echo "$as_me:43703: result: $enableval" >&5 echo "${ECHO_T}$enableval" >&6 test -z "$TELNET" && TELNET="telnet" @@ -43707,7 +43708,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:43710: checking for $ac_word" >&5 +echo "$as_me:43711: 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 @@ -43724,7 +43725,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:43727: found $ac_dir/$ac_word" >&5 + echo "$as_me:43728: found $ac_dir/$ac_word" >&5 break fi done @@ -43735,10 +43736,10 @@ fi TELNET=$ac_cv_path_TELNET if test -n "$TELNET"; then - echo "$as_me:43738: result: $TELNET" >&5 + echo "$as_me:43739: result: $TELNET" >&5 echo "${ECHO_T}$TELNET" >&6 else - echo "$as_me:43741: result: no" >&5 + echo "$as_me:43742: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -43797,7 +43798,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me:-configure}:43800: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me:-configure}:43801: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define TELNET_PATH "$cf_path_prog" @@ -43815,7 +43816,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:43818: checking for $ac_word" >&5 +echo "$as_me:43819: 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 @@ -43832,7 +43833,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:43835: found $ac_dir/$ac_word" >&5 + echo "$as_me:43836: found $ac_dir/$ac_word" >&5 break fi done @@ -43843,10 +43844,10 @@ fi TN3270=$ac_cv_path_TN3270 if test -n "$TN3270"; then - echo "$as_me:43846: result: $TN3270" >&5 + echo "$as_me:43847: result: $TN3270" >&5 echo "${ECHO_T}$TN3270" >&6 else - echo "$as_me:43849: result: no" >&5 + echo "$as_me:43850: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -43905,7 +43906,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me:-configure}:43908: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me:-configure}:43909: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define TN3270_PATH "$cf_path_prog" @@ -43923,7 +43924,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:43926: checking for $ac_word" >&5 +echo "$as_me:43927: 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 @@ -43940,7 +43941,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:43943: found $ac_dir/$ac_word" >&5 + echo "$as_me:43944: found $ac_dir/$ac_word" >&5 break fi done @@ -43951,10 +43952,10 @@ fi RLOGIN=$ac_cv_path_RLOGIN if test -n "$RLOGIN"; then - echo "$as_me:43954: result: $RLOGIN" >&5 + echo "$as_me:43955: result: $RLOGIN" >&5 echo "${ECHO_T}$RLOGIN" >&6 else - echo "$as_me:43957: result: no" >&5 + echo "$as_me:43958: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -44013,7 +44014,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me:-configure}:44016: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me:-configure}:44017: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define RLOGIN_PATH "$cf_path_prog" @@ -44031,7 +44032,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:44034: checking for $ac_word" >&5 +echo "$as_me:44035: 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 @@ -44048,7 +44049,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:44051: found $ac_dir/$ac_word" >&5 + echo "$as_me:44052: found $ac_dir/$ac_word" >&5 break fi done @@ -44059,10 +44060,10 @@ fi MV=$ac_cv_path_MV if test -n "$MV"; then - echo "$as_me:44062: result: $MV" >&5 + echo "$as_me:44063: result: $MV" >&5 echo "${ECHO_T}$MV" >&6 else - echo "$as_me:44065: result: no" >&5 + echo "$as_me:44066: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -44121,7 +44122,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me:-configure}:44124: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me:-configure}:44125: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define MV_PATH "$cf_path_prog" @@ -44139,7 +44140,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:44142: checking for $ac_word" >&5 +echo "$as_me:44143: 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 @@ -44156,7 +44157,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:44159: found $ac_dir/$ac_word" >&5 + echo "$as_me:44160: found $ac_dir/$ac_word" >&5 break fi done @@ -44167,10 +44168,10 @@ fi GZIP=$ac_cv_path_GZIP if test -n "$GZIP"; then - echo "$as_me:44170: result: $GZIP" >&5 + echo "$as_me:44171: result: $GZIP" >&5 echo "${ECHO_T}$GZIP" >&6 else - echo "$as_me:44173: result: no" >&5 + echo "$as_me:44174: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -44229,7 +44230,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me:-configure}:44232: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me:-configure}:44233: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define GZIP_PATH "$cf_path_prog" @@ -44247,7 +44248,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:44250: checking for $ac_word" >&5 +echo "$as_me:44251: 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 @@ -44264,7 +44265,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:44267: found $ac_dir/$ac_word" >&5 + echo "$as_me:44268: found $ac_dir/$ac_word" >&5 break fi done @@ -44275,10 +44276,10 @@ fi UNCOMPRESS=$ac_cv_path_UNCOMPRESS if test -n "$UNCOMPRESS"; then - echo "$as_me:44278: result: $UNCOMPRESS" >&5 + echo "$as_me:44279: result: $UNCOMPRESS" >&5 echo "${ECHO_T}$UNCOMPRESS" >&6 else - echo "$as_me:44281: result: no" >&5 + echo "$as_me:44282: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -44337,7 +44338,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me:-configure}:44340: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me:-configure}:44341: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define UNCOMPRESS_PATH "$cf_path_prog" @@ -44355,7 +44356,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:44358: checking for $ac_word" >&5 +echo "$as_me:44359: 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 @@ -44372,7 +44373,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:44375: found $ac_dir/$ac_word" >&5 + echo "$as_me:44376: found $ac_dir/$ac_word" >&5 break fi done @@ -44383,10 +44384,10 @@ fi UNZIP=$ac_cv_path_UNZIP if test -n "$UNZIP"; then - echo "$as_me:44386: result: $UNZIP" >&5 + echo "$as_me:44387: result: $UNZIP" >&5 echo "${ECHO_T}$UNZIP" >&6 else - echo "$as_me:44389: result: no" >&5 + echo "$as_me:44390: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -44445,7 +44446,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me:-configure}:44448: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me:-configure}:44449: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define UNZIP_PATH "$cf_path_prog" @@ -44463,7 +44464,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:44466: checking for $ac_word" >&5 +echo "$as_me:44467: 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 @@ -44480,7 +44481,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:44483: found $ac_dir/$ac_word" >&5 + echo "$as_me:44484: found $ac_dir/$ac_word" >&5 break fi done @@ -44491,10 +44492,10 @@ fi BZIP2=$ac_cv_path_BZIP2 if test -n "$BZIP2"; then - echo "$as_me:44494: result: $BZIP2" >&5 + echo "$as_me:44495: result: $BZIP2" >&5 echo "${ECHO_T}$BZIP2" >&6 else - echo "$as_me:44497: result: no" >&5 + echo "$as_me:44498: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -44553,7 +44554,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me:-configure}:44556: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me:-configure}:44557: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define BZIP2_PATH "$cf_path_prog" @@ -44571,7 +44572,7 @@ for ac_prog in $BROTLI brotli 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:44574: checking for $ac_word" >&5 +echo "$as_me:44575: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_path_BROTLI+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -44588,7 +44589,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_BROTLI="$ac_dir/$ac_word" - echo "$as_me:44591: found $ac_dir/$ac_word" >&5 + echo "$as_me:44592: found $ac_dir/$ac_word" >&5 break fi done @@ -44599,10 +44600,10 @@ fi BROTLI=$ac_cv_path_BROTLI if test -n "$BROTLI"; then - echo "$as_me:44602: result: $BROTLI" >&5 + echo "$as_me:44603: result: $BROTLI" >&5 echo "${ECHO_T}$BROTLI" >&6 else - echo "$as_me:44605: result: no" >&5 + echo "$as_me:44606: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -44661,7 +44662,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me:-configure}:44664: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me:-configure}:44665: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define BROTLI_PATH "$cf_path_prog" @@ -44679,7 +44680,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:44682: checking for $ac_word" >&5 +echo "$as_me:44683: 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 @@ -44696,7 +44697,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:44699: found $ac_dir/$ac_word" >&5 + echo "$as_me:44700: found $ac_dir/$ac_word" >&5 break fi done @@ -44707,10 +44708,10 @@ fi TAR=$ac_cv_path_TAR if test -n "$TAR"; then - echo "$as_me:44710: result: $TAR" >&5 + echo "$as_me:44711: result: $TAR" >&5 echo "${ECHO_T}$TAR" >&6 else - echo "$as_me:44713: result: no" >&5 + echo "$as_me:44714: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -44769,7 +44770,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me:-configure}:44772: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me:-configure}:44773: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define TAR_PATH "$cf_path_prog" @@ -44827,7 +44828,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:44830: checking for $ac_word" >&5 +echo "$as_me:44831: 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 @@ -44844,7 +44845,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:44847: found $ac_dir/$ac_word" >&5 + echo "$as_me:44848: found $ac_dir/$ac_word" >&5 break fi done @@ -44855,10 +44856,10 @@ fi COMPRESS=$ac_cv_path_COMPRESS if test -n "$COMPRESS"; then - echo "$as_me:44858: result: $COMPRESS" >&5 + echo "$as_me:44859: result: $COMPRESS" >&5 echo "${ECHO_T}$COMPRESS" >&6 else - echo "$as_me:44861: result: no" >&5 + echo "$as_me:44862: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -44917,7 +44918,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me:-configure}:44920: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me:-configure}:44921: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define COMPRESS_PATH "$cf_path_prog" @@ -44935,7 +44936,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:44938: checking for $ac_word" >&5 +echo "$as_me:44939: 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 @@ -44952,7 +44953,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:44955: found $ac_dir/$ac_word" >&5 + echo "$as_me:44956: found $ac_dir/$ac_word" >&5 break fi done @@ -44963,10 +44964,10 @@ fi RM=$ac_cv_path_RM if test -n "$RM"; then - echo "$as_me:44966: result: $RM" >&5 + echo "$as_me:44967: result: $RM" >&5 echo "${ECHO_T}$RM" >&6 else - echo "$as_me:44969: result: no" >&5 + echo "$as_me:44970: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -45025,7 +45026,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me:-configure}:45028: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me:-configure}:45029: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define RM_PATH "$cf_path_prog" @@ -45043,7 +45044,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:45046: checking for $ac_word" >&5 +echo "$as_me:45047: 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 @@ -45060,7 +45061,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:45063: found $ac_dir/$ac_word" >&5 + echo "$as_me:45064: found $ac_dir/$ac_word" >&5 break fi done @@ -45071,10 +45072,10 @@ fi UUDECODE=$ac_cv_path_UUDECODE if test -n "$UUDECODE"; then - echo "$as_me:45074: result: $UUDECODE" >&5 + echo "$as_me:45075: result: $UUDECODE" >&5 echo "${ECHO_T}$UUDECODE" >&6 else - echo "$as_me:45077: result: no" >&5 + echo "$as_me:45078: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -45133,7 +45134,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me:-configure}:45136: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me:-configure}:45137: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define UUDECODE_PATH "$cf_path_prog" @@ -45151,7 +45152,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:45154: checking for $ac_word" >&5 +echo "$as_me:45155: 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 @@ -45168,7 +45169,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:45171: found $ac_dir/$ac_word" >&5 + echo "$as_me:45172: found $ac_dir/$ac_word" >&5 break fi done @@ -45179,10 +45180,10 @@ fi ZCAT=$ac_cv_path_ZCAT if test -n "$ZCAT"; then - echo "$as_me:45182: result: $ZCAT" >&5 + echo "$as_me:45183: result: $ZCAT" >&5 echo "${ECHO_T}$ZCAT" >&6 else - echo "$as_me:45185: result: no" >&5 + echo "$as_me:45186: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -45241,7 +45242,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me:-configure}:45244: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me:-configure}:45245: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define ZCAT_PATH "$cf_path_prog" @@ -45259,7 +45260,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:45262: checking for $ac_word" >&5 +echo "$as_me:45263: 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 @@ -45276,7 +45277,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:45279: found $ac_dir/$ac_word" >&5 + echo "$as_me:45280: found $ac_dir/$ac_word" >&5 break fi done @@ -45287,10 +45288,10 @@ fi ZIP=$ac_cv_path_ZIP if test -n "$ZIP"; then - echo "$as_me:45290: result: $ZIP" >&5 + echo "$as_me:45291: result: $ZIP" >&5 echo "${ECHO_T}$ZIP" >&6 else - echo "$as_me:45293: result: no" >&5 + echo "$as_me:45294: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -45349,7 +45350,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me:-configure}:45352: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me:-configure}:45353: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define ZIP_PATH "$cf_path_prog" @@ -45377,7 +45378,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:45380: checking for $ac_word" >&5 +echo "$as_me:45381: 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 @@ -45394,7 +45395,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:45397: found $ac_dir/$ac_word" >&5 + echo "$as_me:45398: found $ac_dir/$ac_word" >&5 break fi done @@ -45405,10 +45406,10 @@ fi INSTALL=$ac_cv_path_INSTALL if test -n "$INSTALL"; then - echo "$as_me:45408: result: $INSTALL" >&5 + echo "$as_me:45409: result: $INSTALL" >&5 echo "${ECHO_T}$INSTALL" >&6 else - echo "$as_me:45411: result: no" >&5 + echo "$as_me:45412: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -45467,7 +45468,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me:-configure}:45470: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me:-configure}:45471: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define INSTALL_PATH "$cf_path_prog" @@ -45497,7 +45498,7 @@ if test "$cf_cv_screen" = pdcurses ; then case "$host_os" in (mingw*) -echo "$as_me:45500: checking for initscr in -lpdcurses" >&5 +echo "$as_me:45501: 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 @@ -45505,7 +45506,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lpdcurses $LIBS" cat >"conftest.$ac_ext" <<_ACEOF -#line 45508 "configure" +#line 45509 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -45524,16 +45525,16 @@ initscr (); } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:45527: \"$ac_link\"") >&5 +if { (eval echo "$as_me:45528: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:45530: \$? = $ac_status" >&5 + echo "$as_me:45531: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:45533: \"$ac_try\"") >&5 + { (eval echo "$as_me:45534: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:45536: \$? = $ac_status" >&5 + echo "$as_me:45537: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_lib_pdcurses_initscr=yes else @@ -45544,7 +45545,7 @@ fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:45547: result: $ac_cv_lib_pdcurses_initscr" >&5 +echo "$as_me:45548: 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 @@ -45566,13 +45567,13 @@ LIBS="$cf_add_libs" cf_cv_term_header=no cf_cv_unctrl_header=no - echo "$as_me:45569: checking for winwstr" >&5 + echo "$as_me:45570: 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 45575 "configure" +#line 45576 "configure" #include "confdefs.h" #define winwstr autoconf_temporary #include <limits.h> /* least-intrusive standard header which defines gcc2 __stub macros */ @@ -45603,16 +45604,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:45606: \"$ac_link\"") >&5 +if { (eval echo "$as_me:45607: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:45609: \$? = $ac_status" >&5 + echo "$as_me:45610: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:45612: \"$ac_try\"") >&5 + { (eval echo "$as_me:45613: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:45615: \$? = $ac_status" >&5 + echo "$as_me:45616: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_func_winwstr=yes else @@ -45622,7 +45623,7 @@ ac_cv_func_winwstr=no fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:45625: result: $ac_cv_func_winwstr" >&5 +echo "$as_me:45626: result: $ac_cv_func_winwstr" >&5 echo "${ECHO_T}$ac_cv_func_winwstr" >&6 if test "$ac_cv_func_winwstr" = yes; then @@ -45632,13 +45633,13 @@ EOF fi - echo "$as_me:45635: checking for pdcurses_dll_iname" >&5 + echo "$as_me:45636: 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 45641 "configure" +#line 45642 "configure" #include "confdefs.h" #define pdcurses_dll_iname autoconf_temporary #include <limits.h> /* least-intrusive standard header which defines gcc2 __stub macros */ @@ -45669,16 +45670,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:45672: \"$ac_link\"") >&5 +if { (eval echo "$as_me:45673: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:45675: \$? = $ac_status" >&5 + echo "$as_me:45676: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:45678: \"$ac_try\"") >&5 + { (eval echo "$as_me:45679: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:45681: \$? = $ac_status" >&5 + echo "$as_me:45682: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_func_pdcurses_dll_iname=yes else @@ -45688,7 +45689,7 @@ ac_cv_func_pdcurses_dll_iname=no fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:45691: result: $ac_cv_func_pdcurses_dll_iname" >&5 +echo "$as_me:45692: 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 @@ -45705,7 +45706,7 @@ fi cf_x_athena=${cf_x_athena:-Xaw} -echo "$as_me:45708: checking if you want to link with Xaw 3d library" >&5 +echo "$as_me:45709: 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= @@ -45716,14 +45717,14 @@ if test "${with_Xaw3d+set}" = set; then fi; if test "$withval" = yes ; then cf_x_athena=Xaw3d - echo "$as_me:45719: result: yes" >&5 + echo "$as_me:45720: result: yes" >&5 echo "${ECHO_T}yes" >&6 else - echo "$as_me:45722: result: no" >&5 + echo "$as_me:45723: result: no" >&5 echo "${ECHO_T}no" >&6 fi -echo "$as_me:45726: checking if you want to link with Xaw 3d xft library" >&5 +echo "$as_me:45727: 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= @@ -45734,14 +45735,14 @@ if test "${with_Xaw3dxft+set}" = set; then fi; if test "$withval" = yes ; then cf_x_athena=Xaw3dxft - echo "$as_me:45737: result: yes" >&5 + echo "$as_me:45738: result: yes" >&5 echo "${ECHO_T}yes" >&6 else - echo "$as_me:45740: result: no" >&5 + echo "$as_me:45741: result: no" >&5 echo "${ECHO_T}no" >&6 fi -echo "$as_me:45744: checking if you want to link with neXT Athena library" >&5 +echo "$as_me:45745: 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= @@ -45752,14 +45753,14 @@ if test "${with_neXtaw+set}" = set; then fi; if test "$withval" = yes ; then cf_x_athena=neXtaw - echo "$as_me:45755: result: yes" >&5 + echo "$as_me:45756: result: yes" >&5 echo "${ECHO_T}yes" >&6 else - echo "$as_me:45758: result: no" >&5 + echo "$as_me:45759: result: no" >&5 echo "${ECHO_T}no" >&6 fi -echo "$as_me:45762: checking if you want to link with Athena-Plus library" >&5 +echo "$as_me:45763: 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= @@ -45770,10 +45771,10 @@ if test "${with_XawPlus+set}" = set; then fi; if test "$withval" = yes ; then cf_x_athena=XawPlus - echo "$as_me:45773: result: yes" >&5 + echo "$as_me:45774: result: yes" >&5 echo "${ECHO_T}yes" >&6 else - echo "$as_me:45776: result: no" >&5 + echo "$as_me:45777: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -45793,17 +45794,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}:45796: testing found package $cf_athena_pkg ..." 1>&5 +echo "${as_me:-configure}:45797: 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}:45802: testing package $cf_athena_pkg CFLAGS: $cf_pkgconfig_incs ..." 1>&5 +echo "${as_me:-configure}:45803: 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}:45806: testing package $cf_athena_pkg LIBS: $cf_pkgconfig_libs ..." 1>&5 +echo "${as_me:-configure}:45807: testing package $cf_athena_pkg LIBS: $cf_pkgconfig_libs ..." 1>&5 cf_fix_cppflags=no cf_new_cflags= @@ -45934,20 +45935,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}:45937: testing ..trimmed $LIBS ..." 1>&5 +echo "${as_me:-configure}:45938: testing ..trimmed $LIBS ..." 1>&5 ;; esac done -echo "$as_me:45943: checking for usable $cf_x_athena/Xmu package" >&5 +echo "$as_me:45944: 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 45950 "configure" +#line 45951 "configure" #include "confdefs.h" #include <X11/Xmu/CharSet.h> @@ -45964,16 +45965,16 @@ int check = XmuCompareISOLatin1("big", "small"); } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:45967: \"$ac_link\"") >&5 +if { (eval echo "$as_me:45968: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:45970: \$? = $ac_status" >&5 + echo "$as_me:45971: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:45973: \"$ac_try\"") >&5 + { (eval echo "$as_me:45974: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:45976: \$? = $ac_status" >&5 + echo "$as_me:45977: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_xaw_compat=yes else @@ -45983,7 +45984,7 @@ cf_cv_xaw_compat=no fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:45986: result: $cf_cv_xaw_compat" >&5 +echo "$as_me:45987: result: $cf_cv_xaw_compat" >&5 echo "${ECHO_T}$cf_cv_xaw_compat" >&6 if test "$cf_cv_xaw_compat" = no @@ -45995,7 +45996,7 @@ echo "${ECHO_T}$cf_cv_xaw_compat" >&6 (*) test -n "$verbose" && echo " work around broken package" 1>&6 -echo "${as_me:-configure}:45998: testing work around broken package ..." 1>&5 +echo "${as_me:-configure}:45999: testing work around broken package ..." 1>&5 cf_save_xmu="$LIBS" cf_first_lib=`echo "$cf_save_xmu" | sed -e 's/^ *//' -e 's/ .*//'` @@ -46003,17 +46004,17 @@ echo "${as_me:-configure}:45998: 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}:46006: testing found package xmu ..." 1>&5 +echo "${as_me:-configure}:46007: 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}:46012: testing package xmu CFLAGS: $cf_pkgconfig_incs ..." 1>&5 +echo "${as_me:-configure}:46013: 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}:46016: testing package xmu LIBS: $cf_pkgconfig_libs ..." 1>&5 +echo "${as_me:-configure}:46017: testing package xmu LIBS: $cf_pkgconfig_libs ..." 1>&5 cf_fix_cppflags=no cf_new_cflags= @@ -46133,12 +46134,12 @@ LIBS="$cf_add_libs" test -n "$verbose" && echo " ...before $LIBS" 1>&6 -echo "${as_me:-configure}:46136: testing ...before $LIBS ..." 1>&5 +echo "${as_me:-configure}:46137: 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}:46141: testing ...after $LIBS ..." 1>&5 +echo "${as_me:-configure}:46142: testing ...after $LIBS ..." 1>&5 else cf_pkgconfig_incs= @@ -46146,12 +46147,12 @@ else test -n "$verbose" && echo " ...before $LIBS" 1>&6 -echo "${as_me:-configure}:46149: testing ...before $LIBS ..." 1>&5 +echo "${as_me:-configure}:46150: 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}:46154: testing ...after $LIBS ..." 1>&5 +echo "${as_me:-configure}:46155: testing ...after $LIBS ..." 1>&5 fi @@ -46162,7 +46163,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}:46165: testing ..trimmed $LIBS ..." 1>&5 +echo "${as_me:-configure}:46166: testing ..trimmed $LIBS ..." 1>&5 ;; esac @@ -46187,17 +46188,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}:46190: testing found package Xext ..." 1>&5 +echo "${as_me:-configure}:46191: 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}:46196: testing package Xext CFLAGS: $cf_pkgconfig_incs ..." 1>&5 +echo "${as_me:-configure}:46197: 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}:46200: testing package Xext LIBS: $cf_pkgconfig_libs ..." 1>&5 +echo "${as_me:-configure}:46201: testing package Xext LIBS: $cf_pkgconfig_libs ..." 1>&5 cf_fix_cppflags=no cf_new_cflags= @@ -46318,7 +46319,7 @@ else cf_pkgconfig_incs= cf_pkgconfig_libs= - echo "$as_me:46321: checking for XextCreateExtension in -lXext" >&5 + echo "$as_me:46322: 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 @@ -46326,7 +46327,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lXext $LIBS" cat >"conftest.$ac_ext" <<_ACEOF -#line 46329 "configure" +#line 46330 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -46345,16 +46346,16 @@ XextCreateExtension (); } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:46348: \"$ac_link\"") >&5 +if { (eval echo "$as_me:46349: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:46351: \$? = $ac_status" >&5 + echo "$as_me:46352: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:46354: \"$ac_try\"") >&5 + { (eval echo "$as_me:46355: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:46357: \$? = $ac_status" >&5 + echo "$as_me:46358: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_lib_Xext_XextCreateExtension=yes else @@ -46365,7 +46366,7 @@ fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:46368: result: $ac_cv_lib_Xext_XextCreateExtension" >&5 +echo "$as_me:46369: 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 @@ -46401,17 +46402,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}:46404: testing found package x11 ..." 1>&5 +echo "${as_me:-configure}:46405: 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}:46410: testing package x11 CFLAGS: $cf_pkgconfig_incs ..." 1>&5 +echo "${as_me:-configure}:46411: 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}:46414: testing package x11 LIBS: $cf_pkgconfig_libs ..." 1>&5 +echo "${as_me:-configure}:46415: testing package x11 LIBS: $cf_pkgconfig_libs ..." 1>&5 cf_fix_cppflags=no cf_new_cflags= @@ -46531,24 +46532,24 @@ LIBS="$cf_add_libs" else cf_pkgconfig_incs= cf_pkgconfig_libs= - { echo "$as_me:46534: WARNING: unable to find X11 library" >&5 + { echo "$as_me:46535: 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}:46541: testing found package ice ..." 1>&5 +echo "${as_me:-configure}:46542: 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}:46547: testing package ice CFLAGS: $cf_pkgconfig_incs ..." 1>&5 +echo "${as_me:-configure}:46548: 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}:46551: testing package ice LIBS: $cf_pkgconfig_libs ..." 1>&5 +echo "${as_me:-configure}:46552: testing package ice LIBS: $cf_pkgconfig_libs ..." 1>&5 cf_fix_cppflags=no cf_new_cflags= @@ -46668,24 +46669,24 @@ LIBS="$cf_add_libs" else cf_pkgconfig_incs= cf_pkgconfig_libs= - { echo "$as_me:46671: WARNING: unable to find ICE library" >&5 + { echo "$as_me:46672: 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}:46678: testing found package sm ..." 1>&5 +echo "${as_me:-configure}:46679: 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}:46684: testing package sm CFLAGS: $cf_pkgconfig_incs ..." 1>&5 +echo "${as_me:-configure}:46685: 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}:46688: testing package sm LIBS: $cf_pkgconfig_libs ..." 1>&5 +echo "${as_me:-configure}:46689: testing package sm LIBS: $cf_pkgconfig_libs ..." 1>&5 cf_fix_cppflags=no cf_new_cflags= @@ -46805,24 +46806,24 @@ LIBS="$cf_add_libs" else cf_pkgconfig_incs= cf_pkgconfig_libs= - { echo "$as_me:46808: WARNING: unable to find SM library" >&5 + { echo "$as_me:46809: 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}:46815: testing found package xt ..." 1>&5 +echo "${as_me:-configure}:46816: 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}:46821: testing package xt CFLAGS: $cf_pkgconfig_incs ..." 1>&5 +echo "${as_me:-configure}:46822: 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}:46825: testing package xt LIBS: $cf_pkgconfig_libs ..." 1>&5 +echo "${as_me:-configure}:46826: testing package xt LIBS: $cf_pkgconfig_libs ..." 1>&5 cf_fix_cppflags=no cf_new_cflags= @@ -46942,7 +46943,7 @@ LIBS="$cf_add_libs" else cf_pkgconfig_incs= cf_pkgconfig_libs= - { echo "$as_me:46945: WARNING: unable to find Xt library" >&5 + { echo "$as_me:46946: WARNING: unable to find Xt library" >&5 echo "$as_me: WARNING: unable to find Xt library" >&2;} fi @@ -46955,17 +46956,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}:46958: testing found package xt ..." 1>&5 +echo "${as_me:-configure}:46959: 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}:46964: testing package xt CFLAGS: $cf_pkgconfig_incs ..." 1>&5 +echo "${as_me:-configure}:46965: 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}:46968: testing package xt LIBS: $cf_pkgconfig_libs ..." 1>&5 +echo "${as_me:-configure}:46969: testing package xt LIBS: $cf_pkgconfig_libs ..." 1>&5 cf_fix_cppflags=no cf_new_cflags= @@ -47086,14 +47087,14 @@ LIBS="$cf_add_libs" ;; (*) # we have an "xt" package, but it may omit Xt's dependency on X11 -echo "$as_me:47089: checking for usable X dependency" >&5 +echo "$as_me:47090: 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 47096 "configure" +#line 47097 "configure" #include "confdefs.h" #include <X11/Xlib.h> @@ -47112,16 +47113,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:47115: \"$ac_link\"") >&5 +if { (eval echo "$as_me:47116: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:47118: \$? = $ac_status" >&5 + echo "$as_me:47119: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:47121: \"$ac_try\"") >&5 + { (eval echo "$as_me:47122: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:47124: \$? = $ac_status" >&5 + echo "$as_me:47125: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_xt_x11_compat=yes else @@ -47131,30 +47132,30 @@ cf_cv_xt_x11_compat=no fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:47134: result: $cf_cv_xt_x11_compat" >&5 +echo "$as_me:47135: 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}:47140: testing work around broken X11 dependency ..." 1>&5 +echo "${as_me:-configure}:47141: 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}:47147: testing found package x11 ..." 1>&5 +echo "${as_me:-configure}:47148: 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}:47153: testing package x11 CFLAGS: $cf_pkgconfig_incs ..." 1>&5 +echo "${as_me:-configure}:47154: 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}:47157: testing package x11 LIBS: $cf_pkgconfig_libs ..." 1>&5 +echo "${as_me:-configure}:47158: testing package x11 LIBS: $cf_pkgconfig_libs ..." 1>&5 cf_fix_cppflags=no cf_new_cflags= @@ -47277,12 +47278,12 @@ else test -n "$verbose" && echo " ...before $LIBS" 1>&6 -echo "${as_me:-configure}:47280: testing ...before $LIBS ..." 1>&5 +echo "${as_me:-configure}:47281: 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}:47285: testing ...after $LIBS ..." 1>&5 +echo "${as_me:-configure}:47286: testing ...after $LIBS ..." 1>&5 fi @@ -47290,14 +47291,14 @@ fi ;; esac -echo "$as_me:47293: checking for usable X Toolkit package" >&5 +echo "$as_me:47294: 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 47300 "configure" +#line 47301 "configure" #include "confdefs.h" #include <X11/Shell.h> @@ -47312,16 +47313,16 @@ int num = IceConnectionNumber(0); (void) num } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:47315: \"$ac_link\"") >&5 +if { (eval echo "$as_me:47316: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:47318: \$? = $ac_status" >&5 + echo "$as_me:47319: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:47321: \"$ac_try\"") >&5 + { (eval echo "$as_me:47322: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:47324: \$? = $ac_status" >&5 + echo "$as_me:47325: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_xt_ice_compat=yes else @@ -47331,7 +47332,7 @@ cf_cv_xt_ice_compat=no fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:47334: result: $cf_cv_xt_ice_compat" >&5 +echo "$as_me:47335: result: $cf_cv_xt_ice_compat" >&5 echo "${ECHO_T}$cf_cv_xt_ice_compat" >&6 if test "$cf_cv_xt_ice_compat" = no @@ -47345,22 +47346,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}:47348: testing work around broken ICE dependency ..." 1>&5 +echo "${as_me:-configure}:47349: 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}:47353: testing found package ice ..." 1>&5 +echo "${as_me:-configure}:47354: 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}:47359: testing package ice CFLAGS: $cf_pkgconfig_incs ..." 1>&5 +echo "${as_me:-configure}:47360: 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}:47363: testing package ice LIBS: $cf_pkgconfig_libs ..." 1>&5 +echo "${as_me:-configure}:47364: testing package ice LIBS: $cf_pkgconfig_libs ..." 1>&5 cf_fix_cppflags=no cf_new_cflags= @@ -47479,17 +47480,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}:47482: testing found package sm ..." 1>&5 +echo "${as_me:-configure}:47483: 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}:47488: testing package sm CFLAGS: $cf_pkgconfig_incs ..." 1>&5 +echo "${as_me:-configure}:47489: 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}:47492: testing package sm LIBS: $cf_pkgconfig_libs ..." 1>&5 +echo "${as_me:-configure}:47493: testing package sm LIBS: $cf_pkgconfig_libs ..." 1>&5 cf_fix_cppflags=no cf_new_cflags= @@ -47618,12 +47619,12 @@ else test -n "$verbose" && echo " ...before $LIBS" 1>&6 -echo "${as_me:-configure}:47621: testing ...before $LIBS ..." 1>&5 +echo "${as_me:-configure}:47622: 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}:47626: testing ...after $LIBS ..." 1>&5 +echo "${as_me:-configure}:47627: testing ...after $LIBS ..." 1>&5 fi @@ -47643,7 +47644,7 @@ else test -n "$verbose" && echo " checking additions to CFLAGS" 1>&6 -echo "${as_me:-configure}:47646: testing checking additions to CFLAGS ..." 1>&5 +echo "${as_me:-configure}:47647: testing checking additions to CFLAGS ..." 1>&5 cf_check_cflags="$CFLAGS" cf_check_cppflags="$CPPFLAGS" @@ -47728,7 +47729,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}:47731: testing add to \$CFLAGS $cf_new_cflags ..." 1>&5 +echo "${as_me:-configure}:47732: testing add to \$CFLAGS $cf_new_cflags ..." 1>&5 test -n "$CFLAGS" && CFLAGS="$CFLAGS " CFLAGS="${CFLAGS}$cf_new_cflags" @@ -47738,7 +47739,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}:47741: testing add to \$CPPFLAGS $cf_new_cppflags ..." 1>&5 +echo "${as_me:-configure}:47742: testing add to \$CPPFLAGS $cf_new_cppflags ..." 1>&5 test -n "$CPPFLAGS" && CPPFLAGS="$CPPFLAGS " CPPFLAGS="${CPPFLAGS}$cf_new_cppflags" @@ -47748,7 +47749,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}:47751: testing add to \$EXTRA_CPPFLAGS $cf_new_extra_cppflags ..." 1>&5 +echo "${as_me:-configure}:47752: 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" @@ -47757,7 +47758,7 @@ fi if test "x$cf_check_cflags" != "x$CFLAGS" ; then cat >"conftest.$ac_ext" <<_ACEOF -#line 47760 "configure" +#line 47761 "configure" #include "confdefs.h" #include <stdio.h> int @@ -47769,16 +47770,16 @@ printf("Hello world"); } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:47772: \"$ac_link\"") >&5 +if { (eval echo "$as_me:47773: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:47775: \$? = $ac_status" >&5 + echo "$as_me:47776: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:47778: \"$ac_try\"") >&5 + { (eval echo "$as_me:47779: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:47781: \$? = $ac_status" >&5 + echo "$as_me:47782: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then : else @@ -47786,12 +47787,12 @@ else cat "conftest.$ac_ext" >&5 test -n "$verbose" && echo " test-compile failed. Undoing change to \$CFLAGS" 1>&6 -echo "${as_me:-configure}:47789: testing test-compile failed. Undoing change to \$CFLAGS ..." 1>&5 +echo "${as_me:-configure}:47790: 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}:47794: testing but keeping change to \$CPPFLAGS ..." 1>&5 +echo "${as_me:-configure}:47795: testing but keeping change to \$CPPFLAGS ..." 1>&5 fi CFLAGS="$cf_check_cflags" @@ -47799,13 +47800,13 @@ fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi - echo "$as_me:47802: checking for XOpenDisplay" >&5 + echo "$as_me:47803: 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 47808 "configure" +#line 47809 "configure" #include "confdefs.h" #define XOpenDisplay autoconf_temporary #include <limits.h> /* least-intrusive standard header which defines gcc2 __stub macros */ @@ -47836,16 +47837,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:47839: \"$ac_link\"") >&5 +if { (eval echo "$as_me:47840: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:47842: \$? = $ac_status" >&5 + echo "$as_me:47843: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:47845: \"$ac_try\"") >&5 + { (eval echo "$as_me:47846: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:47848: \$? = $ac_status" >&5 + echo "$as_me:47849: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_func_XOpenDisplay=yes else @@ -47855,13 +47856,13 @@ ac_cv_func_XOpenDisplay=no fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:47858: result: $ac_cv_func_XOpenDisplay" >&5 +echo "$as_me:47859: 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:47864: checking for XOpenDisplay in -lX11" >&5 + echo "$as_me:47865: 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 @@ -47869,7 +47870,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lX11 $LIBS" cat >"conftest.$ac_ext" <<_ACEOF -#line 47872 "configure" +#line 47873 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -47888,16 +47889,16 @@ XOpenDisplay (); } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:47891: \"$ac_link\"") >&5 +if { (eval echo "$as_me:47892: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:47894: \$? = $ac_status" >&5 + echo "$as_me:47895: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:47897: \"$ac_try\"") >&5 + { (eval echo "$as_me:47898: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:47900: \$? = $ac_status" >&5 + echo "$as_me:47901: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_lib_X11_XOpenDisplay=yes else @@ -47908,7 +47909,7 @@ fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:47911: result: $ac_cv_lib_X11_XOpenDisplay" >&5 +echo "$as_me:47912: 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 @@ -47932,13 +47933,13 @@ fi fi - echo "$as_me:47935: checking for XtAppInitialize" >&5 + echo "$as_me:47936: 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 47941 "configure" +#line 47942 "configure" #include "confdefs.h" #define XtAppInitialize autoconf_temporary #include <limits.h> /* least-intrusive standard header which defines gcc2 __stub macros */ @@ -47969,16 +47970,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:47972: \"$ac_link\"") >&5 +if { (eval echo "$as_me:47973: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:47975: \$? = $ac_status" >&5 + echo "$as_me:47976: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:47978: \"$ac_try\"") >&5 + { (eval echo "$as_me:47979: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:47981: \$? = $ac_status" >&5 + echo "$as_me:47982: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_func_XtAppInitialize=yes else @@ -47988,13 +47989,13 @@ ac_cv_func_XtAppInitialize=no fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:47991: result: $ac_cv_func_XtAppInitialize" >&5 +echo "$as_me:47992: 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:47997: checking for XtAppInitialize in -lXt" >&5 + echo "$as_me:47998: 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 @@ -48002,7 +48003,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lXt $LIBS" cat >"conftest.$ac_ext" <<_ACEOF -#line 48005 "configure" +#line 48006 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -48021,16 +48022,16 @@ XtAppInitialize (); } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:48024: \"$ac_link\"") >&5 +if { (eval echo "$as_me:48025: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:48027: \$? = $ac_status" >&5 + echo "$as_me:48028: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:48030: \"$ac_try\"") >&5 + { (eval echo "$as_me:48031: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:48033: \$? = $ac_status" >&5 + echo "$as_me:48034: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_lib_Xt_XtAppInitialize=yes else @@ -48041,7 +48042,7 @@ fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:48044: result: $ac_cv_lib_Xt_XtAppInitialize" >&5 +echo "$as_me:48045: 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 @@ -48058,7 +48059,7 @@ fi fi if test "$cf_have_X_LIBS" = no ; then - { echo "$as_me:48061: WARNING: Unable to successfully link X Toolkit library (-lXt) with + { echo "$as_me:48062: 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 @@ -48099,14 +48100,14 @@ done test -n "$CPPFLAGS" && CPPFLAGS="$CPPFLAGS " CPPFLAGS="${CPPFLAGS}-I$cf_path/include" - echo "$as_me:48102: checking for $cf_test in $cf_path" >&5 + echo "$as_me:48103: 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:48105: checking for $cf_test" >&5 + echo "$as_me:48106: checking for $cf_test" >&5 echo $ECHO_N "checking for $cf_test... $ECHO_C" >&6 fi cat >"conftest.$ac_ext" <<_ACEOF -#line 48109 "configure" +#line 48110 "configure" #include "confdefs.h" #include <X11/Intrinsic.h> @@ -48120,16 +48121,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:48123: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:48124: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:48126: \$? = $ac_status" >&5 + echo "$as_me:48127: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:48129: \"$ac_try\"") >&5 + { (eval echo "$as_me:48130: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:48132: \$? = $ac_status" >&5 + echo "$as_me:48133: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_result=yes else @@ -48138,7 +48139,7 @@ cat "conftest.$ac_ext" >&5 cf_result=no fi rm -f "conftest.$ac_objext" "conftest.$ac_ext" - echo "$as_me:48141: result: $cf_result" >&5 + echo "$as_me:48142: result: $cf_result" >&5 echo "${ECHO_T}$cf_result" >&6 LIBS="$cf_save_LIBS_CF_X_ATHENA_CPPFLAGS" @@ -48154,7 +48155,7 @@ CPPFLAGS="$cf_save_CPPFLAGS_CF_X_ATHENA_CPPFLAGS" done if test -z "$cf_x_athena_inc" ; then - { echo "$as_me:48157: WARNING: Unable to find Athena header files" >&5 + { echo "$as_me:48158: 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 @@ -48219,10 +48220,10 @@ for cf_add_1lib in $cf_add_0lib; do done LIBS="$cf_add_libs" - echo "$as_me:48222: checking for $cf_test in $cf_libs" >&5 + echo "$as_me:48223: 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 48225 "configure" +#line 48226 "configure" #include "confdefs.h" #include <X11/Intrinsic.h> @@ -48238,16 +48239,16 @@ $cf_test((XtAppContext) 0) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:48241: \"$ac_link\"") >&5 +if { (eval echo "$as_me:48242: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:48244: \$? = $ac_status" >&5 + echo "$as_me:48245: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:48247: \"$ac_try\"") >&5 + { (eval echo "$as_me:48248: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:48250: \$? = $ac_status" >&5 + echo "$as_me:48251: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_result=yes else @@ -48256,7 +48257,7 @@ cat "conftest.$ac_ext" >&5 cf_result=no fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" - echo "$as_me:48259: result: $cf_result" >&5 + echo "$as_me:48260: result: $cf_result" >&5 echo "${ECHO_T}$cf_result" >&6 LIBS="$cf_save_LIBS_CF_X_ATHENA_LIBS" @@ -48273,7 +48274,7 @@ CPPFLAGS="$cf_save_CPPFLAGS_CF_X_ATHENA_LIBS" done if test -z "$cf_x_athena_lib" ; then - { { echo "$as_me:48276: error: Unable to successfully link Athena library (-l$cf_x_athena_root) with test program" >&5 + { { echo "$as_me:48277: 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 @@ -48307,7 +48308,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:48310: checking for $ac_word" >&5 +echo "$as_me:48311: 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 @@ -48322,7 +48323,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:48325: found $ac_dir/$ac_word" >&5 +echo "$as_me:48326: found $ac_dir/$ac_word" >&5 break done @@ -48330,10 +48331,10 @@ fi fi XCURSES_CONFIG=$ac_cv_prog_XCURSES_CONFIG if test -n "$XCURSES_CONFIG"; then - echo "$as_me:48333: result: $XCURSES_CONFIG" >&5 + echo "$as_me:48334: result: $XCURSES_CONFIG" >&5 echo "${ECHO_T}$XCURSES_CONFIG" >&6 else - echo "$as_me:48336: result: no" >&5 + echo "$as_me:48337: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -48346,7 +48347,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:48349: checking for $ac_word" >&5 +echo "$as_me:48350: 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 @@ -48361,7 +48362,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:48364: found $ac_dir/$ac_word" >&5 +echo "$as_me:48365: found $ac_dir/$ac_word" >&5 break done @@ -48369,10 +48370,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:48372: result: $ac_ct_XCURSES_CONFIG" >&5 + echo "$as_me:48373: result: $ac_ct_XCURSES_CONFIG" >&5 echo "${ECHO_T}$ac_ct_XCURSES_CONFIG" >&6 else - echo "$as_me:48375: result: no" >&5 + echo "$as_me:48376: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -48507,7 +48508,7 @@ LDFLAGS="$LDFLAGS $X_LIBS" test -n "$verbose" && echo " checking additions to CFLAGS" 1>&6 -echo "${as_me:-configure}:48510: testing checking additions to CFLAGS ..." 1>&5 +echo "${as_me:-configure}:48511: testing checking additions to CFLAGS ..." 1>&5 cf_check_cflags="$CFLAGS" cf_check_cppflags="$CPPFLAGS" @@ -48592,7 +48593,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}:48595: testing add to \$CFLAGS $cf_new_cflags ..." 1>&5 +echo "${as_me:-configure}:48596: testing add to \$CFLAGS $cf_new_cflags ..." 1>&5 test -n "$CFLAGS" && CFLAGS="$CFLAGS " CFLAGS="${CFLAGS}$cf_new_cflags" @@ -48602,7 +48603,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}:48605: testing add to \$CPPFLAGS $cf_new_cppflags ..." 1>&5 +echo "${as_me:-configure}:48606: testing add to \$CPPFLAGS $cf_new_cppflags ..." 1>&5 test -n "$CPPFLAGS" && CPPFLAGS="$CPPFLAGS " CPPFLAGS="${CPPFLAGS}$cf_new_cppflags" @@ -48612,7 +48613,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}:48615: testing add to \$EXTRA_CPPFLAGS $cf_new_extra_cppflags ..." 1>&5 +echo "${as_me:-configure}:48616: 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" @@ -48621,7 +48622,7 @@ fi if test "x$cf_check_cflags" != "x$CFLAGS" ; then cat >"conftest.$ac_ext" <<_ACEOF -#line 48624 "configure" +#line 48625 "configure" #include "confdefs.h" #include <stdio.h> int @@ -48633,16 +48634,16 @@ printf("Hello world"); } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:48636: \"$ac_link\"") >&5 +if { (eval echo "$as_me:48637: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:48639: \$? = $ac_status" >&5 + echo "$as_me:48640: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:48642: \"$ac_try\"") >&5 + { (eval echo "$as_me:48643: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:48645: \$? = $ac_status" >&5 + echo "$as_me:48646: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then : else @@ -48650,12 +48651,12 @@ else cat "conftest.$ac_ext" >&5 test -n "$verbose" && echo " test-compile failed. Undoing change to \$CFLAGS" 1>&6 -echo "${as_me:-configure}:48653: testing test-compile failed. Undoing change to \$CFLAGS ..." 1>&5 +echo "${as_me:-configure}:48654: 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}:48658: testing but keeping change to \$CPPFLAGS ..." 1>&5 +echo "${as_me:-configure}:48659: testing but keeping change to \$CPPFLAGS ..." 1>&5 fi CFLAGS="$cf_check_cflags" @@ -48663,7 +48664,7 @@ fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:48666: checking for XOpenDisplay in -lX11" >&5 +echo "$as_me:48667: 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 @@ -48671,7 +48672,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lX11 $X_PRE_LIBS $LIBS $X_EXTRA_LIBS $LIBS" cat >"conftest.$ac_ext" <<_ACEOF -#line 48674 "configure" +#line 48675 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -48690,16 +48691,16 @@ XOpenDisplay (); } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:48693: \"$ac_link\"") >&5 +if { (eval echo "$as_me:48694: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:48696: \$? = $ac_status" >&5 + echo "$as_me:48697: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:48699: \"$ac_try\"") >&5 + { (eval echo "$as_me:48700: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:48702: \$? = $ac_status" >&5 + echo "$as_me:48703: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_lib_X11_XOpenDisplay=yes else @@ -48710,7 +48711,7 @@ fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:48713: result: $ac_cv_lib_X11_XOpenDisplay" >&5 +echo "$as_me:48714: 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 @@ -48732,7 +48733,7 @@ LIBS="$cf_add_libs" fi -echo "$as_me:48735: checking for XCurses library" >&5 +echo "$as_me:48736: 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 @@ -48755,7 +48756,7 @@ done LIBS="$cf_add_libs" cat >"conftest.$ac_ext" <<_ACEOF -#line 48758 "configure" +#line 48759 "configure" #include "confdefs.h" #include <xcurses.h> @@ -48770,16 +48771,16 @@ XCursesExit(); } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:48773: \"$ac_link\"") >&5 +if { (eval echo "$as_me:48774: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:48776: \$? = $ac_status" >&5 + echo "$as_me:48777: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:48779: \"$ac_try\"") >&5 + { (eval echo "$as_me:48780: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:48782: \$? = $ac_status" >&5 + echo "$as_me:48783: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_lib_XCurses=yes else @@ -48790,7 +48791,7 @@ fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:48793: result: $cf_cv_lib_XCurses" >&5 +echo "$as_me:48794: result: $cf_cv_lib_XCurses" >&5 echo "${ECHO_T}$cf_cv_lib_XCurses" >&6 fi @@ -48805,23 +48806,23 @@ cat >>confdefs.h <<\EOF #define XCURSES 1 EOF - echo "$as_me:48808: checking for xcurses.h" >&5 + echo "$as_me:48809: 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 48814 "configure" +#line 48815 "configure" #include "confdefs.h" #include <xcurses.h> _ACEOF -if { (eval echo "$as_me:48818: \"$ac_cpp "conftest.$ac_ext"\"") >&5 +if { (eval echo "$as_me:48819: \"$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:48824: \$? = $ac_status" >&5 + echo "$as_me:48825: \$? = $ac_status" >&5 (exit "$ac_status"); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -48840,7 +48841,7 @@ else fi rm -f conftest.err "conftest.$ac_ext" fi -echo "$as_me:48843: result: $ac_cv_header_xcurses_h" >&5 +echo "$as_me:48844: 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 @@ -48851,7 +48852,7 @@ EOF fi else - { { echo "$as_me:48854: error: Cannot link with XCurses" >&5 + { { echo "$as_me:48855: error: Cannot link with XCurses" >&5 echo "$as_me: error: Cannot link with XCurses" >&2;} { (exit 1); exit 1; }; } fi @@ -48860,7 +48861,7 @@ fi esac else -echo "$as_me:48863: checking if we can include termio.h with curses" >&5 +echo "$as_me:48864: 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 @@ -48870,7 +48871,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 48873 "configure" +#line 48874 "configure" #include "confdefs.h" #include <LYCurses.h> @@ -48884,16 +48885,16 @@ putchar(0x0a) } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:48887: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:48888: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:48890: \$? = $ac_status" >&5 + echo "$as_me:48891: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:48893: \"$ac_try\"") >&5 + { (eval echo "$as_me:48894: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:48896: \$? = $ac_status" >&5 + echo "$as_me:48897: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_termio_and_curses=yes else @@ -48906,7 +48907,7 @@ rm -f "conftest.$ac_objext" "conftest.$ac_ext" rm -f lynx_cfg.h fi -echo "$as_me:48909: result: $cf_cv_termio_and_curses" >&5 +echo "$as_me:48910: result: $cf_cv_termio_and_curses" >&5 echo "${ECHO_T}$cf_cv_termio_and_curses" >&6 test "$cf_cv_termio_and_curses" = yes && @@ -48923,23 +48924,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:48926: checking for $ac_header" >&5 +echo "$as_me:48927: 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 48932 "configure" +#line 48933 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:48936: \"$ac_cpp "conftest.$ac_ext"\"") >&5 +if { (eval echo "$as_me:48937: \"$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:48942: \$? = $ac_status" >&5 + echo "$as_me:48943: \$? = $ac_status" >&5 (exit "$ac_status"); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -48958,7 +48959,7 @@ else fi rm -f conftest.err "conftest.$ac_ext" fi -echo "$as_me:48961: result: `eval echo '${'"$as_ac_Header"'}'`" >&5 +echo "$as_me:48962: 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 @@ -48970,7 +48971,7 @@ done fi -echo "$as_me:48973: checking if curses supports alternate-character set" >&5 +echo "$as_me:48974: 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 @@ -48979,7 +48980,7 @@ else for mapname in acs_map _acs_map do cat >"conftest.$ac_ext" <<_ACEOF -#line 48982 "configure" +#line 48983 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> @@ -48993,16 +48994,16 @@ chtype x = ${mapname}['l']; ${mapname}['m'] = 0; (void)x } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:48996: \"$ac_link\"") >&5 +if { (eval echo "$as_me:48997: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:48999: \$? = $ac_status" >&5 + echo "$as_me:49000: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:49002: \"$ac_try\"") >&5 + { (eval echo "$as_me:49003: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:49005: \$? = $ac_status" >&5 + echo "$as_me:49006: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_alt_char_set=$mapname break @@ -49016,21 +49017,21 @@ done fi -echo "$as_me:49019: result: $cf_cv_alt_char_set" >&5 +echo "$as_me:49020: 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:49026: checking if curses supports fancy attributes" >&5 +echo "$as_me:49027: 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 49033 "configure" +#line 49034 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> @@ -49048,16 +49049,16 @@ attrset(A_UNDERLINE|A_BOLD|A_REVERSE); } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:49051: \"$ac_link\"") >&5 +if { (eval echo "$as_me:49052: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:49054: \$? = $ac_status" >&5 + echo "$as_me:49055: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:49057: \"$ac_try\"") >&5 + { (eval echo "$as_me:49058: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:49060: \$? = $ac_status" >&5 + echo "$as_me:49061: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_fancy_curses=yes else @@ -49069,14 +49070,14 @@ rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:49072: result: $cf_cv_fancy_curses" >&5 +echo "$as_me:49073: 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:49079: checking for function curses_version" >&5 +echo "$as_me:49080: 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 @@ -49086,7 +49087,7 @@ if test "$cross_compiling" = yes; then cf_cv_func_curses_version=unknown else cat >"conftest.$ac_ext" <<_ACEOF -#line 49089 "configure" +#line 49090 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> @@ -49099,15 +49100,15 @@ int main(void) _ACEOF rm -f "conftest$ac_exeext" -if { (eval echo "$as_me:49102: \"$ac_link\"") >&5 +if { (eval echo "$as_me:49103: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:49105: \$? = $ac_status" >&5 + echo "$as_me:49106: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='"./conftest$ac_exeext"' - { (eval echo "$as_me:49107: \"$ac_try\"") >&5 + { (eval echo "$as_me:49108: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:49110: \$? = $ac_status" >&5 + echo "$as_me:49111: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_func_curses_version=yes @@ -49122,7 +49123,7 @@ rm -f core ./core.* ./*.core "conftest$ac_exeext" "conftest.$ac_objext" "conftes fi rm -f core fi -echo "$as_me:49125: result: $cf_cv_func_curses_version" >&5 +echo "$as_me:49126: 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 @@ -49130,14 +49131,14 @@ cat >>confdefs.h <<\EOF EOF if test "$cf_cv_ncurses_version" != no ; then -echo "$as_me:49133: checking for obsolete/broken version of ncurses" >&5 +echo "$as_me:49134: 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 49140 "configure" +#line 49141 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> @@ -49156,16 +49157,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:49159: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:49160: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:49162: \$? = $ac_status" >&5 + echo "$as_me:49163: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:49165: \"$ac_try\"") >&5 + { (eval echo "$as_me:49166: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:49168: \$? = $ac_status" >&5 + echo "$as_me:49169: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_ncurses_broken=no else @@ -49177,10 +49178,10 @@ rm -f "conftest.$ac_objext" "conftest.$ac_ext" fi -echo "$as_me:49180: result: $cf_cv_ncurses_broken" >&5 +echo "$as_me:49181: 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:49183: WARNING: hmm... you should get an up-to-date version of ncurses" >&5 + { echo "$as_me:49184: 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 @@ -49190,14 +49191,14 @@ EOF fi fi -echo "$as_me:49193: checking if curses supports color attributes" >&5 +echo "$as_me:49194: 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 49200 "configure" +#line 49201 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> @@ -49217,16 +49218,16 @@ chtype x = COLOR_BLUE; } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:49220: \"$ac_link\"") >&5 +if { (eval echo "$as_me:49221: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:49223: \$? = $ac_status" >&5 + echo "$as_me:49224: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:49226: \"$ac_try\"") >&5 + { (eval echo "$as_me:49227: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:49229: \$? = $ac_status" >&5 + echo "$as_me:49230: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_color_curses=yes else @@ -49238,7 +49239,7 @@ rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:49241: result: $cf_cv_color_curses" >&5 +echo "$as_me:49242: result: $cf_cv_color_curses" >&5 echo "${ECHO_T}$cf_cv_color_curses" >&6 if test "$cf_cv_color_curses" = yes ; then @@ -49262,23 +49263,23 @@ sys/termio.h \ do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` -echo "$as_me:49265: checking for $ac_header" >&5 +echo "$as_me:49266: 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 49271 "configure" +#line 49272 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:49275: \"$ac_cpp "conftest.$ac_ext"\"") >&5 +if { (eval echo "$as_me:49276: \"$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:49281: \$? = $ac_status" >&5 + echo "$as_me:49282: \$? = $ac_status" >&5 (exit "$ac_status"); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -49297,7 +49298,7 @@ else fi rm -f conftest.err "conftest.$ac_ext" fi -echo "$as_me:49300: result: `eval echo '${'"$as_ac_Header"'}'`" >&5 +echo "$as_me:49301: 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 @@ -49314,10 +49315,10 @@ if test "$ac_cv_header_termios_h" = yes ; then (*) termios_bad=maybe ;; esac if test "$termios_bad" = maybe ; then - echo "$as_me:49317: checking whether termios.h needs _POSIX_SOURCE" >&5 + echo "$as_me:49318: 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 49320 "configure" +#line 49321 "configure" #include "confdefs.h" #include <termios.h> int @@ -49329,16 +49330,16 @@ struct termios foo; int x = foo.c_iflag = 1; (void)x } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:49332: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:49333: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:49335: \$? = $ac_status" >&5 + echo "$as_me:49336: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:49338: \"$ac_try\"") >&5 + { (eval echo "$as_me:49339: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:49341: \$? = $ac_status" >&5 + echo "$as_me:49342: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then termios_bad=no else @@ -49346,7 +49347,7 @@ else cat "conftest.$ac_ext" >&5 cat >"conftest.$ac_ext" <<_ACEOF -#line 49349 "configure" +#line 49350 "configure" #include "confdefs.h" #define _POSIX_SOURCE @@ -49360,16 +49361,16 @@ struct termios foo; int x = foo.c_iflag = 2; (void)x } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:49363: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:49364: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:49366: \$? = $ac_status" >&5 + echo "$as_me:49367: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:49369: \"$ac_try\"") >&5 + { (eval echo "$as_me:49370: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:49372: \$? = $ac_status" >&5 + echo "$as_me:49373: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then termios_bad=unknown else @@ -49385,12 +49386,12 @@ rm -f "conftest.$ac_objext" "conftest.$ac_ext" fi rm -f "conftest.$ac_objext" "conftest.$ac_ext" - echo "$as_me:49388: result: $termios_bad" >&5 + echo "$as_me:49389: result: $termios_bad" >&5 echo "${ECHO_T}$termios_bad" >&6 fi fi -echo "$as_me:49393: checking declaration of size-change" >&5 +echo "$as_me:49394: 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 @@ -49411,7 +49412,7 @@ do fi cat >"conftest.$ac_ext" <<_ACEOF -#line 49414 "configure" +#line 49415 "configure" #include "confdefs.h" #include <sys/types.h> #ifdef HAVE_TERMIOS_H @@ -49461,16 +49462,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:49464: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:49465: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:49467: \$? = $ac_status" >&5 + echo "$as_me:49468: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:49470: \"$ac_try\"") >&5 + { (eval echo "$as_me:49471: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:49473: \$? = $ac_status" >&5 + echo "$as_me:49474: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_sizechange=yes else @@ -49489,7 +49490,7 @@ rm -f "conftest.$ac_objext" "conftest.$ac_ext" done fi -echo "$as_me:49492: result: $cf_cv_sizechange" >&5 +echo "$as_me:49493: result: $cf_cv_sizechange" >&5 echo "${ECHO_T}$cf_cv_sizechange" >&6 if test "$cf_cv_sizechange" != no ; then @@ -49507,14 +49508,14 @@ EOF esac fi -echo "$as_me:49510: checking if ttytype is declared in curses library" >&5 +echo "$as_me:49511: 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 49517 "configure" +#line 49518 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> int @@ -49526,16 +49527,16 @@ char *x = &ttytype[1]; *x = 1 } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:49529: \"$ac_link\"") >&5 +if { (eval echo "$as_me:49530: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:49532: \$? = $ac_status" >&5 + echo "$as_me:49533: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:49535: \"$ac_try\"") >&5 + { (eval echo "$as_me:49536: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:49538: \$? = $ac_status" >&5 + echo "$as_me:49539: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_have_ttytype=yes else @@ -49547,7 +49548,7 @@ rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:49550: result: $cf_cv_have_ttytype" >&5 +echo "$as_me:49551: result: $cf_cv_have_ttytype" >&5 echo "${ECHO_T}$cf_cv_have_ttytype" >&6 test "$cf_cv_have_ttytype" = yes && cat >>confdefs.h <<\EOF @@ -49556,14 +49557,14 @@ EOF if test "$use_wide_curses" = yes ; then -echo "$as_me:49559: checking if curses supports wide characters" >&5 +echo "$as_me:49560: 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 49566 "configure" +#line 49567 "configure" #include "confdefs.h" #include <stdlib.h> @@ -49582,16 +49583,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:49585: \"$ac_link\"") >&5 +if { (eval echo "$as_me:49586: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:49588: \$? = $ac_status" >&5 + echo "$as_me:49589: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:49591: \"$ac_try\"") >&5 + { (eval echo "$as_me:49592: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:49594: \$? = $ac_status" >&5 + echo "$as_me:49595: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_widec_curses=yes else @@ -49602,7 +49603,7 @@ fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:49605: result: $cf_cv_widec_curses" >&5 +echo "$as_me:49606: result: $cf_cv_widec_curses" >&5 echo "${ECHO_T}$cf_cv_widec_curses" >&6 if test "$cf_cv_widec_curses" = yes ; then @@ -49612,14 +49613,14 @@ cat >>confdefs.h <<\EOF EOF # This is needed on Tru64 5.0 to declare mbstate_t - echo "$as_me:49615: checking if we must include wchar.h to declare mbstate_t" >&5 + echo "$as_me:49616: 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 49622 "configure" +#line 49623 "configure" #include "confdefs.h" #include <stdlib.h> @@ -49633,23 +49634,23 @@ mbstate_t state; (void)state } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:49636: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:49637: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:49639: \$? = $ac_status" >&5 + echo "$as_me:49640: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:49642: \"$ac_try\"") >&5 + { (eval echo "$as_me:49643: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:49645: \$? = $ac_status" >&5 + echo "$as_me:49646: \$? = $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 49652 "configure" +#line 49653 "configure" #include "confdefs.h" #include <stdlib.h> @@ -49664,16 +49665,16 @@ mbstate_t state; (void)state } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:49667: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:49668: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:49670: \$? = $ac_status" >&5 + echo "$as_me:49671: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:49673: \"$ac_try\"") >&5 + { (eval echo "$as_me:49674: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:49676: \$? = $ac_status" >&5 + echo "$as_me:49677: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_widec_mbstate=yes else @@ -49685,7 +49686,7 @@ rm -f "conftest.$ac_objext" "conftest.$ac_ext" fi rm -f "conftest.$ac_objext" "conftest.$ac_ext" fi -echo "$as_me:49688: result: $cf_cv_widec_mbstate" >&5 +echo "$as_me:49689: result: $cf_cv_widec_mbstate" >&5 echo "${ECHO_T}$cf_cv_widec_mbstate" >&6 if test "$cf_cv_widec_mbstate" = yes ; then @@ -49708,7 +49709,7 @@ fi fi -echo "$as_me:49711: checking definition to turn on extended curses functions" >&5 +echo "$as_me:49712: 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 @@ -49716,7 +49717,7 @@ else cf_cv_need_xopen_extension=unknown cat >"conftest.$ac_ext" <<_ACEOF -#line 49719 "configure" +#line 49720 "configure" #include "confdefs.h" #include <stdlib.h> @@ -49748,16 +49749,16 @@ make an error /* prefer to fall-through on the second checks */ } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:49751: \"$ac_link\"") >&5 +if { (eval echo "$as_me:49752: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:49754: \$? = $ac_status" >&5 + echo "$as_me:49755: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:49757: \"$ac_try\"") >&5 + { (eval echo "$as_me:49758: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:49760: \$? = $ac_status" >&5 + echo "$as_me:49761: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_need_xopen_extension=none else @@ -49767,7 +49768,7 @@ cat "conftest.$ac_ext" >&5 for cf_try_xopen_extension in _XOPEN_SOURCE_EXTENDED NCURSES_WIDECHAR do cat >"conftest.$ac_ext" <<_ACEOF -#line 49770 "configure" +#line 49771 "configure" #include "confdefs.h" #define $cf_try_xopen_extension 1 @@ -49792,16 +49793,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:49795: \"$ac_link\"") >&5 +if { (eval echo "$as_me:49796: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:49798: \$? = $ac_status" >&5 + echo "$as_me:49799: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:49801: \"$ac_try\"") >&5 + { (eval echo "$as_me:49802: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:49804: \$? = $ac_status" >&5 + echo "$as_me:49805: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_need_xopen_extension=$cf_try_xopen_extension; break else @@ -49815,7 +49816,7 @@ fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:49818: result: $cf_cv_need_xopen_extension" >&5 +echo "$as_me:49819: result: $cf_cv_need_xopen_extension" >&5 echo "${ECHO_T}$cf_cv_need_xopen_extension" >&6 case "$cf_cv_need_xopen_extension" in @@ -49827,7 +49828,7 @@ case "$cf_cv_need_xopen_extension" in ;; esac -echo "$as_me:49830: checking for term.h" >&5 +echo "$as_me:49831: 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 @@ -49848,7 +49849,7 @@ esac for cf_header in $cf_header_list do cat >"conftest.$ac_ext" <<_ACEOF -#line 49851 "configure" +#line 49852 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> @@ -49862,16 +49863,16 @@ WINDOW *x; (void)x } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:49865: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:49866: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:49868: \$? = $ac_status" >&5 + echo "$as_me:49869: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:49871: \"$ac_try\"") >&5 + { (eval echo "$as_me:49872: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:49874: \$? = $ac_status" >&5 + echo "$as_me:49875: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_term_header=$cf_header break @@ -49890,7 +49891,7 @@ case "$cf_cv_term_header" in for cf_header in ncurses/term.h ncursesw/term.h do cat >"conftest.$ac_ext" <<_ACEOF -#line 49893 "configure" +#line 49894 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> @@ -49908,16 +49909,16 @@ WINDOW *x; (void)x } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:49911: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:49912: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:49914: \$? = $ac_status" >&5 + echo "$as_me:49915: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:49917: \"$ac_try\"") >&5 + { (eval echo "$as_me:49918: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:49920: \$? = $ac_status" >&5 + echo "$as_me:49921: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_term_header=$cf_header break @@ -49932,7 +49933,7 @@ rm -f "conftest.$ac_objext" "conftest.$ac_ext" esac fi -echo "$as_me:49935: result: $cf_cv_term_header" >&5 +echo "$as_me:49936: result: $cf_cv_term_header" >&5 echo "${ECHO_T}$cf_cv_term_header" >&6 case "$cf_cv_term_header" in @@ -49959,7 +49960,7 @@ EOF ;; esac -echo "$as_me:49962: checking for unctrl.h" >&5 +echo "$as_me:49963: 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 @@ -49980,7 +49981,7 @@ esac for cf_header in $cf_header_list do cat >"conftest.$ac_ext" <<_ACEOF -#line 49983 "configure" +#line 49984 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> @@ -49994,16 +49995,16 @@ WINDOW *x; (void)x } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:49997: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:49998: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:50000: \$? = $ac_status" >&5 + echo "$as_me:50001: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:50003: \"$ac_try\"") >&5 + { (eval echo "$as_me:50004: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:50006: \$? = $ac_status" >&5 + echo "$as_me:50007: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_unctrl_header=$cf_header break @@ -50016,12 +50017,12 @@ rm -f "conftest.$ac_objext" "conftest.$ac_ext" done fi -echo "$as_me:50019: result: $cf_cv_unctrl_header" >&5 +echo "$as_me:50020: result: $cf_cv_unctrl_header" >&5 echo "${ECHO_T}$cf_cv_unctrl_header" >&6 case "$cf_cv_unctrl_header" in (no) - { echo "$as_me:50024: WARNING: unctrl.h header not found" >&5 + { echo "$as_me:50025: WARNING: unctrl.h header not found" >&5 echo "$as_me: WARNING: unctrl.h header not found" >&2;} ;; esac @@ -50077,10 +50078,10 @@ do cf_tr_func=`echo "$cf_func" | sed y%abcdefghijklmnopqrstuvwxyz./-%ABCDEFGHIJKLMNOPQRSTUVWXYZ___%` - echo "$as_me:50080: checking for ${cf_func}" >&5 + echo "$as_me:50081: checking for ${cf_func}" >&5 echo $ECHO_N "checking for ${cf_func}... $ECHO_C" >&6 -echo "${as_me:-configure}:50083: testing ${cf_func} ..." 1>&5 +echo "${as_me:-configure}:50084: testing ${cf_func} ..." 1>&5 if eval "test \"\${cf_cv_func_$cf_func+set}\" = set"; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -50089,7 +50090,7 @@ else eval cf_result='$ac_cv_func_'$cf_func if test ".$cf_result" != ".no"; then cat >"conftest.$ac_ext" <<_ACEOF -#line 50092 "configure" +#line 50093 "configure" #include "confdefs.h" #ifdef HAVE_XCURSES @@ -50122,16 +50123,16 @@ if (foo + 1234L > 5678L) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:50125: \"$ac_link\"") >&5 +if { (eval echo "$as_me:50126: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:50128: \$? = $ac_status" >&5 + echo "$as_me:50129: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:50131: \"$ac_try\"") >&5 + { (eval echo "$as_me:50132: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:50134: \$? = $ac_status" >&5 + echo "$as_me:50135: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_result=yes else @@ -50147,7 +50148,7 @@ fi # use the computed/retrieved cache-value: eval 'cf_result=$cf_cv_func_'$cf_func - echo "$as_me:50150: result: $cf_result" >&5 + echo "$as_me:50151: result: $cf_result" >&5 echo "${ECHO_T}$cf_result" >&6 if test "$cf_result" != no; then cat >>confdefs.h <<EOF @@ -50164,13 +50165,13 @@ for ac_func in \ do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` -echo "$as_me:50167: checking for $ac_func" >&5 +echo "$as_me:50168: 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 50173 "configure" +#line 50174 "configure" #include "confdefs.h" #define $ac_func autoconf_temporary #include <limits.h> /* least-intrusive standard header which defines gcc2 __stub macros */ @@ -50201,16 +50202,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:50204: \"$ac_link\"") >&5 +if { (eval echo "$as_me:50205: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:50207: \$? = $ac_status" >&5 + echo "$as_me:50208: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:50210: \"$ac_try\"") >&5 + { (eval echo "$as_me:50211: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:50213: \$? = $ac_status" >&5 + echo "$as_me:50214: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then eval "$as_ac_var=yes" else @@ -50220,7 +50221,7 @@ eval "$as_ac_var=no" fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:50223: result: `eval echo '${'"$as_ac_var"'}'`" >&5 +echo "$as_me:50224: 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 @@ -50234,12 +50235,12 @@ fi if test "$use_color_style" != no ; then if test .$cf_cv_color_curses != .yes ; then - { { echo "$as_me:50237: error: Configuration does not support color-styles" >&5 + { { echo "$as_me:50238: 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:50242: error: Configuration does not support color-styles" >&5 + { { echo "$as_me:50243: error: Configuration does not support color-styles" >&5 echo "$as_me: error: Configuration does not support color-styles" >&2;} { (exit 1); exit 1; }; } fi @@ -50247,7 +50248,7 @@ fi if test "$use_scrollbar" != no ; then if test .$cf_cv_fancy_curses != .yes ; then - { echo "$as_me:50250: WARNING: Configuration does not support ACS_xxx definitions" >&5 + { echo "$as_me:50251: WARNING: Configuration does not support ACS_xxx definitions" >&5 echo "$as_me: WARNING: Configuration does not support ACS_xxx definitions" >&2;} else @@ -50260,7 +50261,7 @@ fi # use rpath for libraries in unusual places -echo "$as_me:50263: checking if rpath-hack should be disabled" >&5 +echo "$as_me:50264: 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. @@ -50278,22 +50279,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:50281: result: $cf_disable_rpath_hack" >&5 +echo "$as_me:50282: result: $cf_disable_rpath_hack" >&5 echo "${ECHO_T}$cf_disable_rpath_hack" >&6 if test "$enable_rpath_hack" = yes ; then -echo "$as_me:50286: checking for updated LDFLAGS" >&5 +echo "$as_me:50287: 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:50289: result: maybe" >&5 + echo "$as_me:50290: 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:50296: checking for $ac_word" >&5 +echo "$as_me:50297: 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 @@ -50308,7 +50309,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:50311: found $ac_dir/$ac_word" >&5 +echo "$as_me:50312: found $ac_dir/$ac_word" >&5 break done @@ -50316,10 +50317,10 @@ fi fi cf_ldd_prog=$ac_cv_prog_cf_ldd_prog if test -n "$cf_ldd_prog"; then - echo "$as_me:50319: result: $cf_ldd_prog" >&5 + echo "$as_me:50320: result: $cf_ldd_prog" >&5 echo "${ECHO_T}$cf_ldd_prog" >&6 else - echo "$as_me:50322: result: no" >&5 + echo "$as_me:50323: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -50333,7 +50334,7 @@ test -n "$cf_ldd_prog" || cf_ldd_prog="no" cf_rpath_oops= cat >"conftest.$ac_ext" <<_ACEOF -#line 50336 "configure" +#line 50337 "configure" #include "confdefs.h" #include <stdio.h> int @@ -50345,16 +50346,16 @@ printf("Hello"); } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:50348: \"$ac_link\"") >&5 +if { (eval echo "$as_me:50349: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:50351: \$? = $ac_status" >&5 + echo "$as_me:50352: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:50354: \"$ac_try\"") >&5 + { (eval echo "$as_me:50355: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:50357: \$? = $ac_status" >&5 + echo "$as_me:50358: \$? = $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` @@ -50382,7 +50383,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}:50385: testing ...adding -L$cf_rpath_dir/lib to LDFLAGS for $cf_rpath_src ..." 1>&5 +echo "${as_me:-configure}:50386: testing ...adding -L$cf_rpath_dir/lib to LDFLAGS for $cf_rpath_src ..." 1>&5 LDFLAGS="$LDFLAGS -L$cf_rpath_dir/lib" break @@ -50394,11 +50395,11 @@ echo "${as_me:-configure}:50385: testing ...adding -L$cf_rpath_dir/lib to LDFLAG test -n "$verbose" && echo " ...checking EXTRA_LDFLAGS $EXTRA_LDFLAGS" 1>&6 -echo "${as_me:-configure}:50397: testing ...checking EXTRA_LDFLAGS $EXTRA_LDFLAGS ..." 1>&5 +echo "${as_me:-configure}:50398: testing ...checking EXTRA_LDFLAGS $EXTRA_LDFLAGS ..." 1>&5 test -n "$verbose" && echo " ...checking LDFLAGS $LDFLAGS" 1>&6 -echo "${as_me:-configure}:50401: testing ...checking LDFLAGS $LDFLAGS ..." 1>&5 +echo "${as_me:-configure}:50402: testing ...checking LDFLAGS $LDFLAGS ..." 1>&5 cf_rpath_dst= for cf_rpath_src in $LDFLAGS @@ -50435,7 +50436,7 @@ do then test -n "$verbose" && echo " ...Filter $cf_rpath_src ->$cf_rpath_tmp" 1>&6 -echo "${as_me:-configure}:50438: testing ...Filter $cf_rpath_src ->$cf_rpath_tmp ..." 1>&5 +echo "${as_me:-configure}:50439: testing ...Filter $cf_rpath_src ->$cf_rpath_tmp ..." 1>&5 EXTRA_LDFLAGS="$cf_rpath_tmp $EXTRA_LDFLAGS" fi @@ -50448,11 +50449,11 @@ LDFLAGS=$cf_rpath_dst test -n "$verbose" && echo " ...checked LDFLAGS $LDFLAGS" 1>&6 -echo "${as_me:-configure}:50451: testing ...checked LDFLAGS $LDFLAGS ..." 1>&5 +echo "${as_me:-configure}:50452: testing ...checked LDFLAGS $LDFLAGS ..." 1>&5 test -n "$verbose" && echo " ...checking LIBS $LIBS" 1>&6 -echo "${as_me:-configure}:50455: testing ...checking LIBS $LIBS ..." 1>&5 +echo "${as_me:-configure}:50456: testing ...checking LIBS $LIBS ..." 1>&5 cf_rpath_dst= for cf_rpath_src in $LIBS @@ -50489,7 +50490,7 @@ do then test -n "$verbose" && echo " ...Filter $cf_rpath_src ->$cf_rpath_tmp" 1>&6 -echo "${as_me:-configure}:50492: testing ...Filter $cf_rpath_src ->$cf_rpath_tmp ..." 1>&5 +echo "${as_me:-configure}:50493: testing ...Filter $cf_rpath_src ->$cf_rpath_tmp ..." 1>&5 EXTRA_LDFLAGS="$cf_rpath_tmp $EXTRA_LDFLAGS" fi @@ -50502,14 +50503,14 @@ LIBS=$cf_rpath_dst test -n "$verbose" && echo " ...checked LIBS $LIBS" 1>&6 -echo "${as_me:-configure}:50505: testing ...checked LIBS $LIBS ..." 1>&5 +echo "${as_me:-configure}:50506: testing ...checked LIBS $LIBS ..." 1>&5 test -n "$verbose" && echo " ...checked EXTRA_LDFLAGS $EXTRA_LDFLAGS" 1>&6 -echo "${as_me:-configure}:50509: testing ...checked EXTRA_LDFLAGS $EXTRA_LDFLAGS ..." 1>&5 +echo "${as_me:-configure}:50510: testing ...checked EXTRA_LDFLAGS $EXTRA_LDFLAGS ..." 1>&5 else - echo "$as_me:50512: result: no" >&5 + echo "$as_me:50513: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -50624,7 +50625,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:50627: creating $CONFIG_STATUS" >&5 +{ echo "$as_me:50628: creating $CONFIG_STATUS" >&5 echo "$as_me: creating $CONFIG_STATUS" >&6;} cat >"$CONFIG_STATUS" <<_ACEOF #! $SHELL @@ -50805,7 +50806,7 @@ cat >>"$CONFIG_STATUS" <<\EOF echo "$ac_cs_version"; exit 0 ;; --he | --h) # Conflict between --help and --header - { { echo "$as_me:50808: error: ambiguous option: $1 + { { echo "$as_me:50809: 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;} @@ -50824,7 +50825,7 @@ Try \`$0 --help' for more information." >&2;} ac_need_defaults=false;; # This is an error. - -*) { { echo "$as_me:50827: error: unrecognized option: $1 + -*) { { echo "$as_me:50828: 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;} @@ -50877,7 +50878,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:50880: error: invalid argument: $ac_config_target" >&5 + *) { { echo "$as_me:50881: error: invalid argument: $ac_config_target" >&5 echo "$as_me: error: invalid argument: $ac_config_target" >&2;} { (exit 1); exit 1; }; };; esac @@ -51241,7 +51242,7 @@ done; } esac if test x"$ac_file" != x-; then - { echo "$as_me:51244: creating $ac_file" >&5 + { echo "$as_me:51245: creating $ac_file" >&5 echo "$as_me: creating $ac_file" >&6;} rm -f "$ac_file" fi @@ -51259,7 +51260,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:51262: error: cannot find input file: $f" >&5 + test -f "$f" || { { echo "$as_me:51263: error: cannot find input file: $f" >&5 echo "$as_me: error: cannot find input file: $f" >&2;} { (exit 1); exit 1; }; } echo "$f";; @@ -51272,7 +51273,7 @@ echo "$as_me: error: cannot find input file: $f" >&2;} echo "$srcdir/$f" else # /dev/null tree - { { echo "$as_me:51275: error: cannot find input file: $f" >&5 + { { echo "$as_me:51276: error: cannot find input file: $f" >&5 echo "$as_me: error: cannot find input file: $f" >&2;} { (exit 1); exit 1; }; } fi;; @@ -51288,7 +51289,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:51291: WARNING: datarootdir was used implicitly but not set: + { echo "$as_me:51292: 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;} @@ -51297,7 +51298,7 @@ $ac_seen" >&2;} fi ac_seen=`grep '${datarootdir}' "$ac_item"` if test -n "$ac_seen"; then - { echo "$as_me:51300: WARNING: datarootdir was used explicitly but not set: + { echo "$as_me:51301: 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;} @@ -51342,7 +51343,7 @@ cat >>"$CONFIG_STATUS" <<\EOF ac_init=`$EGREP '[ ]*'$ac_name'[ ]*=' "$ac_file"` if test -z "$ac_init"; then ac_seen=`echo "$ac_seen" |sed -e 's,^,'"$ac_file"':,'` - { echo "$as_me:51345: WARNING: Variable $ac_name is used but was not set: + { echo "$as_me:51346: 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;} @@ -51353,7 +51354,7 @@ $ac_seen" >&2;} $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:51356: WARNING: Some variables may not be substituted: + { echo "$as_me:51357: WARNING: Some variables may not be substituted: $ac_seen" >&5 echo "$as_me: WARNING: Some variables may not be substituted: $ac_seen" >&2;} @@ -51402,7 +51403,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:51405: creating $ac_file" >&5 + test x"$ac_file" != x- && { echo "$as_me:51406: creating $ac_file" >&5 echo "$as_me: creating $ac_file" >&6;} # First look for the input files in the build tree, otherwise in the @@ -51413,7 +51414,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:51416: error: cannot find input file: $f" >&5 + test -f "$f" || { { echo "$as_me:51417: error: cannot find input file: $f" >&5 echo "$as_me: error: cannot find input file: $f" >&2;} { (exit 1); exit 1; }; } echo $f;; @@ -51426,7 +51427,7 @@ echo "$as_me: error: cannot find input file: $f" >&2;} echo "$srcdir/$f" else # /dev/null tree - { { echo "$as_me:51429: error: cannot find input file: $f" >&5 + { { echo "$as_me:51430: error: cannot find input file: $f" >&5 echo "$as_me: error: cannot find input file: $f" >&2;} { (exit 1); exit 1; }; } fi;; @@ -51544,7 +51545,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:51547: $ac_file is unchanged" >&5 + { echo "$as_me:51548: $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/lynx.cfg b/lynx.cfg index 5e4ab246..cebe8c57 100644 --- a/lynx.cfg +++ b/lynx.cfg @@ -1,4 +1,4 @@ -# $LynxId: lynx.cfg,v 1.327 2022/03/17 23:22:35 tom Exp $ +# $LynxId: lynx.cfg,v 1.328 2022/12/28 13:43:09 tom Exp $ # lynx.cfg file. # The default placement for this file is /usr/local/lib/lynx.cfg (Unix) # or Lynx_Dir:lynx.cfg (VMS) @@ -1497,8 +1497,8 @@ DEFAULT_INDEX_FILE:http://scout.wisc.edu/ # pipe. # # Please read sendmail.txt in the LYNX_W32.ZIP distribution -.url http://invisible-mirror.net/archives/lynx/tarballs/lynx2.8.1_w32.zip -.url ftp://ftp.invisible-island.net/lynx/tarballs/lynx2.8.1_w32.zip +.url https://invisible-island.net/archives/lynx/tarballs/lynx2.8.1_w32.zip +.url https://invisible-mirror.net/archives/lynx/tarballs/lynx2.8.1_w32.zip # # As an alternative, the newer "sendmail for windows" may be useful: .url http://glob.com.au/sendmail/ diff --git a/makefile.in b/makefile.in index e0927bf3..a115a57f 100644 --- a/makefile.in +++ b/makefile.in @@ -1,4 +1,4 @@ -# $LynxId: makefile.in,v 1.191 2022/10/26 23:39:31 tom Exp $ +# $LynxId: makefile.in,v 1.192 2022/12/28 13:44:04 tom Exp $ ##makefile for lynx SHELL = @CONFIG_SHELL@ @@ -140,8 +140,8 @@ MAKE_RECUR = $(MAKE) @cf_cv_makeflags@ DESTDIR="$(DESTDIR)" CC="$(CC)" # !!!!!!!!!!!!! NCURSES Support (For color version of Lynx). !!!!!!!!!!!!!! # If you need ncurses, the latest version can always be found -# in ftp://ftp.invisible-island.net/ncurses/ -# or ftp://ftp.gnu.org/pub/gnu/ +# in https://invisible-island.net/ncurses/ +# or https://ftp.gnu.org/pub/gnu/ # Also be sure to check out the compilation symbols in userdefs.h # before building Lynx! |