diff options
-rw-r--r-- | CHANGES | 7 | ||||
-rw-r--r-- | aclocal.m4 | 3 | ||||
-rw-r--r-- | config.hin | 3 | ||||
-rwxr-xr-x | configure | 5292 | ||||
-rw-r--r-- | src/tidy_tls.c | 15 |
5 files changed, 2734 insertions, 2586 deletions
diff --git a/CHANGES b/CHANGES index 5424ecb3..8f8b0fd7 100644 --- a/CHANGES +++ b/CHANGES @@ -1,9 +1,12 @@ --- $LynxId: CHANGES,v 1.842 2016/04/11 08:48:54 tom Exp $ +-- $LynxId: CHANGES,v 1.843 2016/04/17 15:33:04 tom Exp $ =============================================================================== Changes since Lynx 2.8 release =============================================================================== -2016-04-10 (2.8.9dev.9) +2016-04-17 (2.8.9dev.9) +* fix build for current gnutls configuration which dropped the + gnutls_protocol_set_priority function (reported by Axel Beckert, Andreas + Metzler) -TD * modify CF_LD_RPATH_OPT configure macro, changing FreeBSD case to use -Wl,-rpath rather than -rpath option. According to FreeBSD #178732, either works since FreeBSD 4.x; however scons does not accept anything except the diff --git a/aclocal.m4 b/aclocal.m4 index 2e2ebed3..e9e4a810 100644 --- a/aclocal.m4 +++ b/aclocal.m4 @@ -1,4 +1,4 @@ -dnl $LynxId: aclocal.m4,v 1.232 2016/04/11 00:51:33 tom Exp $ +dnl $LynxId: aclocal.m4,v 1.233 2016/04/16 00:48:40 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> @@ -3173,6 +3173,7 @@ AC_DEFUN([CF_GNUTLS],[ CF_ADD_LIBDIR($cf_cv_library_path_gnutls) fi CF_ADD_LIBS(-lgnutls) + AC_CHECK_FUNCS(gnutls_protocol_set_priority) AC_CHECK_FUNC(gnutls_rnd, [AC_DEFINE(HAVE_GNUTLS_RND)], [CF_ADD_LIBS(-lgcrypt)]) diff --git a/config.hin b/config.hin index 85e4d016..bc2123f5 100644 --- a/config.hin +++ b/config.hin @@ -1,5 +1,5 @@ /* - * $LynxId: config.hin,v 1.138 2015/05/28 00:46:18 tom Exp $ + * $LynxId: config.hin,v 1.139 2016/04/16 00:47:08 tom Exp $ * vile:cmode * * The configure script translates "config.hin" into "lynx_cfg.h" @@ -80,6 +80,7 @@ #undef HAVE_GETTEXT /* defined if you want to use non-GNU gettext */ #undef HAVE_GETTIMEOFDAY #undef HAVE_GETUID +#undef HAVE_GNUTLS_PROTOCOL_SET_PRIORITY #undef HAVE_GNUTLS_RND #undef HAVE_H_ERRNO #undef HAVE_ICONV /* AM_ICONV */ diff --git a/configure b/configure index 24023ff1..75b927a4 100755 --- a/configure +++ b/configure @@ -15551,13 +15551,82 @@ do done LIBS="$cf_add_libs" - echo "$as_me:15554: checking for gnutls_rnd" >&5 +for ac_func in gnutls_protocol_set_priority +do +as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` +echo "$as_me:15557: 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 15563 "configure" +#include "confdefs.h" +/* System header to define __stub macros and hopefully few prototypes, + which can conflict with char $ac_func (); below. */ +#include <assert.h> +/* Override any gcc2 internal prototype to avoid an error. */ +#ifdef __cplusplus +extern "C" +#endif +/* We use char because int might match the return type of a gcc2 + builtin and then its argument prototype would still apply. */ +char $ac_func (); +char (*f) (); + +int +main () +{ +/* The GNU C library defines this for functions which it implements + to always fail with ENOSYS. Some functions are actually named + something starting with __ and the normal name is an alias. */ +#if defined (__stub_$ac_func) || defined (__stub___$ac_func) +choke me +#else +f = $ac_func; /* workaround for ICC 12.0.3 */ if (f == 0) return 1; +#endif + + ; + return 0; +} +_ACEOF +rm -f conftest.$ac_objext conftest$ac_exeext +if { (eval echo "$as_me:15594: \"$ac_link\"") >&5 + (eval $ac_link) 2>&5 + ac_status=$? + echo "$as_me:15597: \$? = $ac_status" >&5 + (exit $ac_status); } && + { ac_try='test -s conftest$ac_exeext' + { (eval echo "$as_me:15600: \"$ac_try\"") >&5 + (eval $ac_try) 2>&5 + ac_status=$? + echo "$as_me:15603: \$? = $ac_status" >&5 + (exit $ac_status); }; }; then + eval "$as_ac_var=yes" +else + echo "$as_me: failed program was:" >&5 +cat conftest.$ac_ext >&5 +eval "$as_ac_var=no" +fi +rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext +fi +echo "$as_me:15613: 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 +#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 +EOF + +fi +done + + echo "$as_me:15623: 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 15560 "configure" +#line 15629 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char gnutls_rnd (); below. */ @@ -15588,16 +15657,16 @@ f = gnutls_rnd; /* workaround for ICC 12.0.3 */ if (f == 0) return 1; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:15591: \"$ac_link\"") >&5 +if { (eval echo "$as_me:15660: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:15594: \$? = $ac_status" >&5 + echo "$as_me:15663: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:15597: \"$ac_try\"") >&5 + { (eval echo "$as_me:15666: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:15600: \$? = $ac_status" >&5 + echo "$as_me:15669: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_gnutls_rnd=yes else @@ -15607,7 +15676,7 @@ ac_cv_func_gnutls_rnd=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:15610: result: $ac_cv_func_gnutls_rnd" >&5 +echo "$as_me:15679: 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 cat >>confdefs.h <<\EOF @@ -15636,10 +15705,10 @@ fi EXTRA_OBJS="$EXTRA_OBJS tidy_tls\$o" -echo "$as_me:15639: checking for X509 support" >&5 +echo "$as_me:15708: checking for X509 support" >&5 echo $ECHO_N "checking for X509 support... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF -#line 15642 "configure" +#line 15711 "configure" #include "confdefs.h" #include <stdio.h> @@ -15668,16 +15737,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:15671: \"$ac_link\"") >&5 +if { (eval echo "$as_me:15740: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:15674: \$? = $ac_status" >&5 + echo "$as_me:15743: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:15677: \"$ac_try\"") >&5 + { (eval echo "$as_me:15746: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:15680: \$? = $ac_status" >&5 + echo "$as_me:15749: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_x509_support=yes else @@ -15686,7 +15755,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:15689: result: $cf_x509_support" >&5 +echo "$as_me:15758: result: $cf_x509_support" >&5 echo "${ECHO_T}$cf_x509_support" >&6 if test "$cf_x509_support" = yes ; then @@ -15737,7 +15806,7 @@ if test -n "$cf_searchpath/include" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 15740 "configure" +#line 15809 "configure" #include "confdefs.h" #include <stdio.h> int @@ -15749,16 +15818,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:15752: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:15821: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:15755: \$? = $ac_status" >&5 + echo "$as_me:15824: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:15758: \"$ac_try\"") >&5 + { (eval echo "$as_me:15827: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:15761: \$? = $ac_status" >&5 + echo "$as_me:15830: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -15775,7 +15844,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}:15778: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:15847: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -15818,7 +15887,7 @@ if test -n "$cf_searchpath/../include" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 15821 "configure" +#line 15890 "configure" #include "confdefs.h" #include <stdio.h> int @@ -15830,16 +15899,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:15833: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:15902: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:15836: \$? = $ac_status" >&5 + echo "$as_me:15905: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:15839: \"$ac_try\"") >&5 + { (eval echo "$as_me:15908: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:15842: \$? = $ac_status" >&5 + echo "$as_me:15911: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -15856,7 +15925,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}:15859: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:15928: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -15874,7 +15943,7 @@ echo "${as_me:-configure}:15859: testing adding $cf_add_incdir to include-path . fi else -{ { echo "$as_me:15877: error: cannot find ssl library under $cf_cv_use_libgnutls" >&5 +{ { echo "$as_me:15946: 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 @@ -15899,7 +15968,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}:15902: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:15971: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -15928,7 +15997,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}:15931: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:16000: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -15937,7 +16006,7 @@ echo "${as_me:-configure}:15931: testing adding $cf_add_libdir to library-path . fi else -{ { echo "$as_me:15940: error: cannot find ssl library under $cf_cv_use_libgnutls" >&5 +{ { echo "$as_me:16009: 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 @@ -15955,12 +16024,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}:15958: testing checking pkg-config for $cf_pkg_gnutls ..." 1>&5 +echo "${as_me:-configure}:16027: 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}:15963: testing ... found $cf_pkg_gnutls in pkg-config ..." 1>&5 +echo "${as_me:-configure}:16032: testing ... found $cf_pkg_gnutls in pkg-config ..." 1>&5 cf_cv_have_gnutls=yes cf_cv_pkg_config_ssl=yes @@ -16072,7 +16141,7 @@ fi esac test -n "$verbose" && echo " adding $cf_libs_ssl to LIBS" 1>&6 -echo "${as_me:-configure}:16075: testing adding $cf_libs_ssl to LIBS ..." 1>&5 +echo "${as_me:-configure}:16144: testing adding $cf_libs_ssl to LIBS ..." 1>&5 cf_add_libs="$cf_libs_ssl" # Filter out duplicates - this happens with badly-designed ".pc" files... @@ -16094,7 +16163,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}:16097: testing ... did not find $cf_pkg_gnutls in pkg-config ..." 1>&5 +echo "${as_me:-configure}:16166: testing ... did not find $cf_pkg_gnutls in pkg-config ..." 1>&5 cf_pkg_gnutls=none fi @@ -16114,12 +16183,12 @@ EOF cf_cv_header_path_gnutls= cf_cv_library_path_gnutls= -echo "${as_me:-configure}:16117: testing Starting FIND_LINKAGE(gnutls,) ..." 1>&5 +echo "${as_me:-configure}:16186: testing Starting FIND_LINKAGE(gnutls,) ..." 1>&5 cf_save_LIBS="$LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 16122 "configure" +#line 16191 "configure" #include "confdefs.h" #include <stdio.h> @@ -16148,16 +16217,16 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:16151: \"$ac_link\"") >&5 +if { (eval echo "$as_me:16220: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:16154: \$? = $ac_status" >&5 + echo "$as_me:16223: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:16157: \"$ac_try\"") >&5 + { (eval echo "$as_me:16226: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:16160: \$? = $ac_status" >&5 + echo "$as_me:16229: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_find_linkage_gnutls=yes @@ -16171,7 +16240,7 @@ cat conftest.$ac_ext >&5 LIBS="-lgnutls -lgnutls-openssl $cf_save_LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 16174 "configure" +#line 16243 "configure" #include "confdefs.h" #include <stdio.h> @@ -16200,16 +16269,16 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:16203: \"$ac_link\"") >&5 +if { (eval echo "$as_me:16272: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:16206: \$? = $ac_status" >&5 + echo "$as_me:16275: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:16209: \"$ac_try\"") >&5 + { (eval echo "$as_me:16278: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:16212: \$? = $ac_status" >&5 + echo "$as_me:16281: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_find_linkage_gnutls=yes @@ -16226,9 +16295,9 @@ cat conftest.$ac_ext >&5 test -n "$verbose" && echo " find linkage for gnutls library" 1>&6 -echo "${as_me:-configure}:16229: testing find linkage for gnutls library ..." 1>&5 +echo "${as_me:-configure}:16298: testing find linkage for gnutls library ..." 1>&5 -echo "${as_me:-configure}:16231: testing Searching for headers in FIND_LINKAGE(gnutls,) ..." 1>&5 +echo "${as_me:-configure}:16300: testing Searching for headers in FIND_LINKAGE(gnutls,) ..." 1>&5 cf_save_CPPFLAGS="$CPPFLAGS" cf_test_CPPFLAGS="$CPPFLAGS" @@ -16319,11 +16388,11 @@ 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}:16322: testing ... testing $cf_cv_header_path_gnutls ..." 1>&5 +echo "${as_me:-configure}:16391: testing ... testing $cf_cv_header_path_gnutls ..." 1>&5 CPPFLAGS="$cf_save_CPPFLAGS -I$cf_cv_header_path_gnutls" cat >conftest.$ac_ext <<_ACEOF -#line 16326 "configure" +#line 16395 "configure" #include "confdefs.h" #include <stdio.h> @@ -16352,21 +16421,21 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:16355: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:16424: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:16358: \$? = $ac_status" >&5 + echo "$as_me:16427: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:16361: \"$ac_try\"") >&5 + { (eval echo "$as_me:16430: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:16364: \$? = $ac_status" >&5 + echo "$as_me:16433: \$? = $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}:16369: testing ... found gnutls headers in $cf_cv_header_path_gnutls ..." 1>&5 +echo "${as_me:-configure}:16438: testing ... found gnutls headers in $cf_cv_header_path_gnutls ..." 1>&5 cf_cv_find_linkage_gnutls=maybe cf_test_CPPFLAGS="$CPPFLAGS" @@ -16384,7 +16453,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "$cf_cv_find_linkage_gnutls" = maybe ; then -echo "${as_me:-configure}:16387: testing Searching for gnutls library in FIND_LINKAGE(gnutls,) ..." 1>&5 +echo "${as_me:-configure}:16456: testing Searching for gnutls library in FIND_LINKAGE(gnutls,) ..." 1>&5 cf_save_LIBS="$LIBS" cf_save_LDFLAGS="$LDFLAGS" @@ -16459,13 +16528,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}:16462: testing ... testing $cf_cv_library_path_gnutls ..." 1>&5 +echo "${as_me:-configure}:16531: 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 16468 "configure" +#line 16537 "configure" #include "confdefs.h" #include <stdio.h> @@ -16494,21 +16563,21 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:16497: \"$ac_link\"") >&5 +if { (eval echo "$as_me:16566: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:16500: \$? = $ac_status" >&5 + echo "$as_me:16569: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:16503: \"$ac_try\"") >&5 + { (eval echo "$as_me:16572: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:16506: \$? = $ac_status" >&5 + echo "$as_me:16575: \$? = $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}:16511: testing ... found gnutls library in $cf_cv_library_path_gnutls ..." 1>&5 +echo "${as_me:-configure}:16580: testing ... found gnutls library in $cf_cv_library_path_gnutls ..." 1>&5 cf_cv_find_linkage_gnutls=yes cf_cv_library_file_gnutls="-lgnutls" @@ -16585,7 +16654,7 @@ if test -n "$cf_cv_header_path_gnutls" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 16588 "configure" +#line 16657 "configure" #include "confdefs.h" #include <stdio.h> int @@ -16597,16 +16666,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:16600: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:16669: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:16603: \$? = $ac_status" >&5 + echo "$as_me:16672: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:16606: \"$ac_try\"") >&5 + { (eval echo "$as_me:16675: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:16609: \$? = $ac_status" >&5 + echo "$as_me:16678: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -16623,7 +16692,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}:16626: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:16695: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -16664,7 +16733,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}:16667: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:16736: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -16690,13 +16759,82 @@ do done LIBS="$cf_add_libs" - echo "$as_me:16693: checking for gnutls_rnd" >&5 +for ac_func in gnutls_protocol_set_priority +do +as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` +echo "$as_me:16765: 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 16771 "configure" +#include "confdefs.h" +/* System header to define __stub macros and hopefully few prototypes, + which can conflict with char $ac_func (); below. */ +#include <assert.h> +/* Override any gcc2 internal prototype to avoid an error. */ +#ifdef __cplusplus +extern "C" +#endif +/* We use char because int might match the return type of a gcc2 + builtin and then its argument prototype would still apply. */ +char $ac_func (); +char (*f) (); + +int +main () +{ +/* The GNU C library defines this for functions which it implements + to always fail with ENOSYS. Some functions are actually named + something starting with __ and the normal name is an alias. */ +#if defined (__stub_$ac_func) || defined (__stub___$ac_func) +choke me +#else +f = $ac_func; /* workaround for ICC 12.0.3 */ if (f == 0) return 1; +#endif + + ; + return 0; +} +_ACEOF +rm -f conftest.$ac_objext conftest$ac_exeext +if { (eval echo "$as_me:16802: \"$ac_link\"") >&5 + (eval $ac_link) 2>&5 + ac_status=$? + echo "$as_me:16805: \$? = $ac_status" >&5 + (exit $ac_status); } && + { ac_try='test -s conftest$ac_exeext' + { (eval echo "$as_me:16808: \"$ac_try\"") >&5 + (eval $ac_try) 2>&5 + ac_status=$? + echo "$as_me:16811: \$? = $ac_status" >&5 + (exit $ac_status); }; }; then + eval "$as_ac_var=yes" +else + echo "$as_me: failed program was:" >&5 +cat conftest.$ac_ext >&5 +eval "$as_ac_var=no" +fi +rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext +fi +echo "$as_me:16821: 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 +#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 +EOF + +fi +done + + echo "$as_me:16831: 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 16699 "configure" +#line 16837 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char gnutls_rnd (); below. */ @@ -16727,16 +16865,16 @@ f = gnutls_rnd; /* workaround for ICC 12.0.3 */ if (f == 0) return 1; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:16730: \"$ac_link\"") >&5 +if { (eval echo "$as_me:16868: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:16733: \$? = $ac_status" >&5 + echo "$as_me:16871: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:16736: \"$ac_try\"") >&5 + { (eval echo "$as_me:16874: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:16739: \$? = $ac_status" >&5 + echo "$as_me:16877: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_gnutls_rnd=yes else @@ -16746,7 +16884,7 @@ ac_cv_func_gnutls_rnd=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:16749: result: $ac_cv_func_gnutls_rnd" >&5 +echo "$as_me:16887: 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 cat >>confdefs.h <<\EOF @@ -16774,7 +16912,7 @@ LIBS="$cf_add_libs" fi if test "$cf_pkg_gnutls" = none ; then - echo "$as_me:16777: checking for SSL_connect in -lgnutls-openssl" >&5 + echo "$as_me:16915: 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 @@ -16782,7 +16920,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lgnutls-openssl $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 16785 "configure" +#line 16923 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -16801,16 +16939,16 @@ SSL_connect (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:16804: \"$ac_link\"") >&5 +if { (eval echo "$as_me:16942: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:16807: \$? = $ac_status" >&5 + echo "$as_me:16945: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:16810: \"$ac_try\"") >&5 + { (eval echo "$as_me:16948: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:16813: \$? = $ac_status" >&5 + echo "$as_me:16951: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_gnutls_openssl_SSL_connect=yes else @@ -16821,7 +16959,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:16824: result: $ac_cv_lib_gnutls_openssl_SSL_connect" >&5 +echo "$as_me:16962: 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 @@ -16842,7 +16980,7 @@ done LIBS="$cf_add_libs" else - echo "$as_me:16845: checking for SSL_connect in -lgnutls-extra" >&5 + echo "$as_me:16983: 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 @@ -16850,7 +16988,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lgnutls-extra $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 16853 "configure" +#line 16991 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -16869,16 +17007,16 @@ SSL_connect (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:16872: \"$ac_link\"") >&5 +if { (eval echo "$as_me:17010: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:16875: \$? = $ac_status" >&5 + echo "$as_me:17013: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:16878: \"$ac_try\"") >&5 + { (eval echo "$as_me:17016: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:16881: \$? = $ac_status" >&5 + echo "$as_me:17019: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_gnutls_extra_SSL_connect=yes else @@ -16889,7 +17027,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:16892: result: $ac_cv_lib_gnutls_extra_SSL_connect" >&5 +echo "$as_me:17030: 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 @@ -16910,7 +17048,7 @@ done LIBS="$cf_add_libs" else - { { echo "$as_me:16913: error: cannot find gnutls openssl functions" >&5 + { { echo "$as_me:17051: error: cannot find gnutls openssl functions" >&5 echo "$as_me: error: cannot find gnutls openssl functions" >&2;} { (exit 1); exit 1; }; } fi @@ -16919,10 +17057,10 @@ fi fi -echo "$as_me:16922: checking for X509 support" >&5 +echo "$as_me:17060: checking for X509 support" >&5 echo $ECHO_N "checking for X509 support... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF -#line 16925 "configure" +#line 17063 "configure" #include "confdefs.h" #include <stdio.h> @@ -16951,16 +17089,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:16954: \"$ac_link\"") >&5 +if { (eval echo "$as_me:17092: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:16957: \$? = $ac_status" >&5 + echo "$as_me:17095: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:16960: \"$ac_try\"") >&5 + { (eval echo "$as_me:17098: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:16963: \$? = $ac_status" >&5 + echo "$as_me:17101: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_x509_support=yes else @@ -16969,7 +17107,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:16972: result: $cf_x509_support" >&5 +echo "$as_me:17110: result: $cf_x509_support" >&5 echo "${ECHO_T}$cf_x509_support" >&6 if test "$cf_x509_support" = yes ; then @@ -17001,7 +17139,7 @@ case "$cf_cv_use_libnss_compat" in ;; (yes) -echo "$as_me:17004: checking for SSL_get_version in -lnss_compat_ossl" >&5 +echo "$as_me:17142: 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 @@ -17009,7 +17147,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lnss_compat_ossl -lnss_compat_ossl $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 17012 "configure" +#line 17150 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -17028,16 +17166,16 @@ SSL_get_version (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:17031: \"$ac_link\"") >&5 +if { (eval echo "$as_me:17169: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:17034: \$? = $ac_status" >&5 + echo "$as_me:17172: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:17037: \"$ac_try\"") >&5 + { (eval echo "$as_me:17175: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:17040: \$? = $ac_status" >&5 + echo "$as_me:17178: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_nss_compat_ossl_SSL_get_version=yes else @@ -17048,7 +17186,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:17051: result: $ac_cv_lib_nss_compat_ossl_SSL_get_version" >&5 +echo "$as_me:17189: 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 @@ -17063,11 +17201,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}:17066: testing assume it is in $cf_ssl_root ..." 1>&5 +echo "${as_me:-configure}:17204: 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:17070: error: cannot find NSS compilant libraries" >&5 + { { echo "$as_me:17208: error: cannot find NSS compilant libraries" >&5 echo "$as_me: error: cannot find NSS compilant libraries" >&2;} { (exit 1); exit 1; }; } fi @@ -17082,13 +17220,13 @@ fi elif test -d $cf_cv_use_libnss_compat/../include ; then cf_ssl_root=$cf_cv_use_libnss_compat/.. else - { { echo "$as_me:17085: error: cannot find NSS compilant library under $cf_cv_use_libnss_compat" >&5 + { { echo "$as_me:17223: error: cannot find NSS compilant library under $cf_cv_use_libnss_compat" >&5 echo "$as_me: error: cannot find NSS compilant library under $cf_cv_use_libnss_compat" >&2;} { (exit 1); exit 1; }; } fi cf_ssl_library="-L$cf_ssl_root/lib $cf_ssl_library" else - { echo "$as_me:17091: WARNING: expected a directory: $cf_cv_use_libnss_compat" >&5 + { echo "$as_me:17229: WARNING: expected a directory: $cf_cv_use_libnss_compat" >&5 echo "$as_me: WARNING: expected a directory: $cf_cv_use_libnss_compat" >&2;} fi ;; @@ -17197,10 +17335,10 @@ if test -n "$cf_new_extra_cppflags" ; then fi if test "$cf_ssl_subincs" = yes ; then -echo "$as_me:17200: checking for NSS compilant include directory" >&5 +echo "$as_me:17338: checking for NSS compilant include directory" >&5 echo $ECHO_N "checking for NSS compilant include directory... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF -#line 17203 "configure" +#line 17341 "configure" #include "confdefs.h" #include <stdio.h> @@ -17214,16 +17352,16 @@ SSL_shutdown((SSL *)0) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:17217: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:17355: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:17220: \$? = $ac_status" >&5 + echo "$as_me:17358: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:17223: \"$ac_try\"") >&5 + { (eval echo "$as_me:17361: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:17226: \$? = $ac_status" >&5 + echo "$as_me:17364: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_ssl_incl=yes else @@ -17232,7 +17370,7 @@ cat conftest.$ac_ext >&5 cf_ssl_incl=no fi rm -f conftest.$ac_objext conftest.$ac_ext -echo "$as_me:17235: result: $cf_ssl_incl" >&5 +echo "$as_me:17373: result: $cf_ssl_incl" >&5 echo "${ECHO_T}$cf_ssl_incl" >&6 test "$cf_ssl_incl" = yes && cat >>confdefs.h <<\EOF @@ -17241,10 +17379,10 @@ EOF fi -echo "$as_me:17244: checking if we can link to NSS compilant library" >&5 +echo "$as_me:17382: checking if we can link to NSS compilant library" >&5 echo $ECHO_N "checking if we can link to NSS compilant library... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF -#line 17247 "configure" +#line 17385 "configure" #include "confdefs.h" #include <stdio.h> @@ -17263,16 +17401,16 @@ SSL_shutdown((SSL *)0) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:17266: \"$ac_link\"") >&5 +if { (eval echo "$as_me:17404: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:17269: \$? = $ac_status" >&5 + echo "$as_me:17407: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:17272: \"$ac_try\"") >&5 + { (eval echo "$as_me:17410: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:17275: \$? = $ac_status" >&5 + echo "$as_me:17413: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_ssl_library=yes else @@ -17281,7 +17419,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:17284: result: $cf_ssl_library" >&5 +echo "$as_me:17422: result: $cf_ssl_library" >&5 echo "${ECHO_T}$cf_ssl_library" >&6 if test "$cf_ssl_library" = yes ; then @@ -17294,7 +17432,7 @@ cat >>confdefs.h <<\EOF EOF else - { { echo "$as_me:17297: error: Cannot link with NSS compilant libraries" >&5 + { { echo "$as_me:17435: error: Cannot link with NSS compilant libraries" >&5 echo "$as_me: error: Cannot link with NSS compilant libraries" >&2;} { (exit 1); exit 1; }; } fi @@ -17302,7 +17440,7 @@ fi fi ### check for ipv6 support -echo "$as_me:17305: checking whether to enable ipv6" >&5 +echo "$as_me:17443: 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. @@ -17319,11 +17457,11 @@ EOF else enableval=no fi; -echo "$as_me:17322: result: $enableval" >&5 +echo "$as_me:17460: result: $enableval" >&5 echo "${ECHO_T}$enableval" >&6 if test "$enableval" = "yes"; then -echo "$as_me:17326: checking ipv6 stack type" >&5 +echo "$as_me:17464: 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 @@ -17344,7 +17482,7 @@ do ;; (inria) cat >conftest.$ac_ext <<_ACEOF -#line 17347 "configure" +#line 17485 "configure" #include "confdefs.h" #include <netinet/in.h> @@ -17361,7 +17499,7 @@ rm -rf conftest* ;; (kame) cat >conftest.$ac_ext <<_ACEOF -#line 17364 "configure" +#line 17502 "configure" #include "confdefs.h" #include <netinet/in.h> @@ -17378,7 +17516,7 @@ rm -rf conftest* ;; (linux-glibc) cat >conftest.$ac_ext <<_ACEOF -#line 17381 "configure" +#line 17519 "configure" #include "confdefs.h" #include <features.h> @@ -17404,7 +17542,7 @@ rm -rf conftest* ;; (toshiba) cat >conftest.$ac_ext <<_ACEOF -#line 17407 "configure" +#line 17545 "configure" #include "confdefs.h" #include <sys/param.h> @@ -17421,7 +17559,7 @@ rm -rf conftest* ;; (v6d) cat >conftest.$ac_ext <<_ACEOF -#line 17424 "configure" +#line 17562 "configure" #include "confdefs.h" #include </usr/local/v6/include/sys/v6config.h> @@ -17438,7 +17576,7 @@ rm -rf conftest* ;; (zeta) cat >conftest.$ac_ext <<_ACEOF -#line 17441 "configure" +#line 17579 "configure" #include "confdefs.h" #include <sys/param.h> @@ -17460,13 +17598,13 @@ rm -rf conftest* done fi -echo "$as_me:17463: result: $cf_cv_ipv6type" >&5 +echo "$as_me:17601: result: $cf_cv_ipv6type" >&5 echo "${ECHO_T}$cf_cv_ipv6type" >&6 cf_ipv6lib=none cf_ipv6dir=none -echo "$as_me:17469: checking for IPv6 library if required" >&5 +echo "$as_me:17607: 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) @@ -17496,13 +17634,13 @@ case $cf_cv_ipv6type in cf_ipv6dir=v6 ;; esac -echo "$as_me:17499: result: $cf_ipv6lib" >&5 +echo "$as_me:17637: result: $cf_ipv6lib" >&5 echo "${ECHO_T}$cf_ipv6lib" >&6 if test "$cf_ipv6lib" != "none"; then cat >conftest.$ac_ext <<_ACEOF -#line 17505 "configure" +#line 17643 "configure" #include "confdefs.h" #include <sys/types.h> @@ -17518,16 +17656,16 @@ getaddrinfo(0, 0, 0, 0) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:17521: \"$ac_link\"") >&5 +if { (eval echo "$as_me:17659: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:17524: \$? = $ac_status" >&5 + echo "$as_me:17662: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:17527: \"$ac_try\"") >&5 + { (eval echo "$as_me:17665: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:17530: \$? = $ac_status" >&5 + echo "$as_me:17668: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -17645,7 +17783,7 @@ if test -n "$cf_incdir" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 17648 "configure" +#line 17786 "configure" #include "confdefs.h" #include <stdio.h> int @@ -17657,16 +17795,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:17660: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:17798: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:17663: \$? = $ac_status" >&5 + echo "$as_me:17801: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:17666: \"$ac_try\"") >&5 + { (eval echo "$as_me:17804: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:17669: \$? = $ac_status" >&5 + echo "$as_me:17807: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -17683,7 +17821,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}:17686: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:17824: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -17711,13 +17849,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:17714: checking for getaddrinfo" >&5 + echo "$as_me:17852: 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 17720 "configure" +#line 17858 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char getaddrinfo (); below. */ @@ -17748,16 +17886,16 @@ f = getaddrinfo; /* workaround for ICC 12.0.3 */ if (f == 0) return 1; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:17751: \"$ac_link\"") >&5 +if { (eval echo "$as_me:17889: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:17754: \$? = $ac_status" >&5 + echo "$as_me:17892: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:17757: \"$ac_try\"") >&5 + { (eval echo "$as_me:17895: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:17760: \$? = $ac_status" >&5 + echo "$as_me:17898: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_getaddrinfo=yes else @@ -17767,18 +17905,18 @@ ac_cv_func_getaddrinfo=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:17770: result: $ac_cv_func_getaddrinfo" >&5 +echo "$as_me:17908: 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:17777: checking for getaddrinfo in -l$cf_ipv6lib" >&5 + echo "$as_me:17915: 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 17781 "configure" +#line 17919 "configure" #include "confdefs.h" #include <sys/types.h> @@ -17794,25 +17932,25 @@ getaddrinfo(0, 0, 0, 0) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:17797: \"$ac_link\"") >&5 +if { (eval echo "$as_me:17935: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:17800: \$? = $ac_status" >&5 + echo "$as_me:17938: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:17803: \"$ac_try\"") >&5 + { (eval echo "$as_me:17941: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:17806: \$? = $ac_status" >&5 + echo "$as_me:17944: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:17808: result: yes" >&5 + echo "$as_me:17946: 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:17815: result: no" >&5 +echo "$as_me:17953: result: no" >&5 echo "${ECHO_T}no" >&6 cf_search= @@ -17880,11 +18018,11 @@ cf_search="$cf_library_path_list $cf_search" for cf_libdir in $cf_search do - echo "$as_me:17883: checking for -l$cf_ipv6lib in $cf_libdir" >&5 + echo "$as_me:18021: 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 17887 "configure" +#line 18025 "configure" #include "confdefs.h" #include <sys/types.h> @@ -17900,25 +18038,25 @@ getaddrinfo(0, 0, 0, 0) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:17903: \"$ac_link\"") >&5 +if { (eval echo "$as_me:18041: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:17906: \$? = $ac_status" >&5 + echo "$as_me:18044: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:17909: \"$ac_try\"") >&5 + { (eval echo "$as_me:18047: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:17912: \$? = $ac_status" >&5 + echo "$as_me:18050: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:17914: result: yes" >&5 + echo "$as_me:18052: 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:17921: result: no" >&5 +echo "$as_me:18059: result: no" >&5 echo "${ECHO_T}no" >&6 LIBS="$cf_save_LIBS" fi @@ -17933,7 +18071,7 @@ fi eval 'cf_found_library=$cf_cv_have_lib_'$cf_ipv6lib if test $cf_found_library = no ; then - { { echo "$as_me:17936: error: No $cf_ipv6lib library found, cannot continue. You must fetch lib$cf_ipv6lib.a + { { echo "$as_me:18074: 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;} @@ -17941,7 +18079,7 @@ from an appropriate IPv6 kit and compile beforehand." >&2;} fi fi -echo "$as_me:17944: checking working getaddrinfo" >&5 +echo "$as_me:18082: 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 @@ -17951,7 +18089,7 @@ if test "$cross_compiling" = yes; then cf_cv_getaddrinfo=unknown else cat >conftest.$ac_ext <<_ACEOF -#line 17954 "configure" +#line 18092 "configure" #include "confdefs.h" #include <sys/types.h> @@ -18031,15 +18169,15 @@ int main() _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:18034: \"$ac_link\"") >&5 +if { (eval echo "$as_me:18172: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:18037: \$? = $ac_status" >&5 + echo "$as_me:18175: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:18039: \"$ac_try\"") >&5 + { (eval echo "$as_me:18177: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:18042: \$? = $ac_status" >&5 + echo "$as_me:18180: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_getaddrinfo=yes else @@ -18052,7 +18190,7 @@ rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext fi fi -echo "$as_me:18055: result: $cf_cv_getaddrinfo" >&5 +echo "$as_me:18193: result: $cf_cv_getaddrinfo" >&5 echo "${ECHO_T}$cf_cv_getaddrinfo" >&6 if test "$cf_cv_getaddrinfo" = yes ; then @@ -18068,12 +18206,12 @@ fi if test "$cf_cv_getaddrinfo" != "yes"; then if test "$cf_cv_ipv6type" != "linux"; then - { echo "$as_me:18071: WARNING: You must get working getaddrinfo() function, + { echo "$as_me:18209: 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:18076: WARNING: The getaddrinfo() implementation on your system seems be buggy. + { echo "$as_me:18214: 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. @@ -18084,7 +18222,7 @@ fi fi -echo "$as_me:18087: checking for screen type" >&5 +echo "$as_me:18225: 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 @@ -18098,7 +18236,7 @@ case $withval in (curses|ncurses*|pdcurses|slang) cf_cv_screen=$withval ;; -(*) { { echo "$as_me:18101: error: Unexpected value $withval" >&5 +(*) { { echo "$as_me:18239: error: Unexpected value $withval" >&5 echo "$as_me: error: Unexpected value $withval" >&2;} { (exit 1); exit 1; }; } ;; @@ -18107,13 +18245,13 @@ else cf_cv_screen=curses fi; fi -echo "$as_me:18110: result: $cf_cv_screen" >&5 +echo "$as_me:18248: result: $cf_cv_screen" >&5 echo "${ECHO_T}$cf_cv_screen" >&6 case $cf_cv_screen in (curses|ncurses*) -echo "$as_me:18116: checking for specific curses-directory" >&5 +echo "$as_me:18254: 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. @@ -18123,7 +18261,7 @@ if test "${with_curses_dir+set}" = set; then else cf_cv_curses_dir=no fi; -echo "$as_me:18126: result: $cf_cv_curses_dir" >&5 +echo "$as_me:18264: 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" ) @@ -18154,7 +18292,7 @@ case ".$withval" in withval=`echo $withval | sed -e s%NONE%$cf_path_syntax%` ;; (*) - { { echo "$as_me:18157: error: expected a pathname, not \"$withval\"" >&5 + { { echo "$as_me:18295: error: expected a pathname, not \"$withval\"" >&5 echo "$as_me: error: expected a pathname, not \"$withval\"" >&2;} { (exit 1); exit 1; }; } ;; @@ -18187,7 +18325,7 @@ if test -n "$cf_cv_curses_dir/include" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 18190 "configure" +#line 18328 "configure" #include "confdefs.h" #include <stdio.h> int @@ -18199,16 +18337,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:18202: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:18340: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:18205: \$? = $ac_status" >&5 + echo "$as_me:18343: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:18208: \"$ac_try\"") >&5 + { (eval echo "$as_me:18346: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:18211: \$? = $ac_status" >&5 + echo "$as_me:18349: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -18225,7 +18363,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}:18228: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:18366: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -18261,7 +18399,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}:18264: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:18402: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -18280,7 +18418,7 @@ dft_color_style=yes case $cf_cv_screen in (curses) -echo "$as_me:18283: checking for extra include directories" >&5 +echo "$as_me:18421: 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 @@ -18306,11 +18444,11 @@ case $host_os in esac fi -echo "$as_me:18309: result: $cf_cv_curses_incdir" >&5 +echo "$as_me:18447: result: $cf_cv_curses_incdir" >&5 echo "${ECHO_T}$cf_cv_curses_incdir" >&6 test "$cf_cv_curses_incdir" != no && CPPFLAGS="$CPPFLAGS $cf_cv_curses_incdir" -echo "$as_me:18313: checking if we have identified curses headers" >&5 +echo "$as_me:18451: 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 @@ -18322,7 +18460,7 @@ for cf_header in \ curses.h ncurses/ncurses.h ncurses/curses.h do cat >conftest.$ac_ext <<_ACEOF -#line 18325 "configure" +#line 18463 "configure" #include "confdefs.h" #include <${cf_header}> int @@ -18334,16 +18472,16 @@ initscr(); tgoto("?", 0,0) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:18337: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:18475: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:18340: \$? = $ac_status" >&5 + echo "$as_me:18478: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:18343: \"$ac_try\"") >&5 + { (eval echo "$as_me:18481: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:18346: \$? = $ac_status" >&5 + echo "$as_me:18484: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_ncurses_header=$cf_header; break else @@ -18354,11 +18492,11 @@ rm -f conftest.$ac_objext conftest.$ac_ext done fi -echo "$as_me:18357: result: $cf_cv_ncurses_header" >&5 +echo "$as_me:18495: 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:18361: error: No curses header-files found" >&5 + { { echo "$as_me:18499: error: No curses header-files found" >&5 echo "$as_me: error: No curses header-files found" >&2;} { (exit 1); exit 1; }; } fi @@ -18368,23 +18506,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:18371: checking for $ac_header" >&5 +echo "$as_me:18509: 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 18377 "configure" +#line 18515 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:18381: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:18519: \"$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:18387: \$? = $ac_status" >&5 + echo "$as_me:18525: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -18403,7 +18541,7 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:18406: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:18544: 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 @@ -18413,7 +18551,7 @@ EOF fi done -echo "$as_me:18416: checking for terminfo header" >&5 +echo "$as_me:18554: 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 @@ -18431,7 +18569,7 @@ esac for cf_test in $cf_term_header "ncurses/term.h" "ncursesw/term.h" do cat >conftest.$ac_ext <<_ACEOF -#line 18434 "configure" +#line 18572 "configure" #include "confdefs.h" #include <stdio.h> #include <${cf_cv_ncurses_header:-curses.h}> @@ -18446,16 +18584,16 @@ int x = auto_left_margin } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:18449: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:18587: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:18452: \$? = $ac_status" >&5 + echo "$as_me:18590: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:18455: \"$ac_try\"") >&5 + { (eval echo "$as_me:18593: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:18458: \$? = $ac_status" >&5 + echo "$as_me:18596: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_term_header="$cf_test" @@ -18471,7 +18609,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext done fi -echo "$as_me:18474: result: $cf_cv_term_header" >&5 +echo "$as_me:18612: result: $cf_cv_term_header" >&5 echo "${ECHO_T}$cf_cv_term_header" >&6 # Set definitions to allow ifdef'ing to accommodate subdirectories @@ -18503,7 +18641,7 @@ EOF ;; esac -echo "$as_me:18506: checking for ncurses version" >&5 +echo "$as_me:18644: 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 @@ -18529,10 +18667,10 @@ Autoconf "old" #endif EOF cf_try="$ac_cpp conftest.$ac_ext 2>&5 | grep '^Autoconf ' >conftest.out" - { (eval echo "$as_me:18532: \"$cf_try\"") >&5 + { (eval echo "$as_me:18670: \"$cf_try\"") >&5 (eval $cf_try) 2>&5 ac_status=$? - echo "$as_me:18535: \$? = $ac_status" >&5 + echo "$as_me:18673: \$? = $ac_status" >&5 (exit $ac_status); } if test -f conftest.out ; then cf_out=`cat conftest.out | sed -e 's%^Autoconf %%' -e 's%^[^"]*"%%' -e 's%".*%%'` @@ -18542,7 +18680,7 @@ EOF else cat >conftest.$ac_ext <<_ACEOF -#line 18545 "configure" +#line 18683 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> @@ -18567,15 +18705,15 @@ int main() } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:18570: \"$ac_link\"") >&5 +if { (eval echo "$as_me:18708: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:18573: \$? = $ac_status" >&5 + echo "$as_me:18711: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:18575: \"$ac_try\"") >&5 + { (eval echo "$as_me:18713: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:18578: \$? = $ac_status" >&5 + echo "$as_me:18716: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_ncurses_version=`cat $cf_tempfile` @@ -18589,17 +18727,17 @@ fi rm -f $cf_tempfile fi -echo "$as_me:18592: result: $cf_cv_ncurses_version" >&5 +echo "$as_me:18730: 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:18599: checking if we have identified curses libraries" >&5 +echo "$as_me:18737: 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 18602 "configure" +#line 18740 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> int @@ -18611,16 +18749,16 @@ initscr(); tgoto("?", 0,0) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:18614: \"$ac_link\"") >&5 +if { (eval echo "$as_me:18752: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:18617: \$? = $ac_status" >&5 + echo "$as_me:18755: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:18620: \"$ac_try\"") >&5 + { (eval echo "$as_me:18758: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:18623: \$? = $ac_status" >&5 + echo "$as_me:18761: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_result=yes else @@ -18629,13 +18767,13 @@ cat conftest.$ac_ext >&5 cf_result=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext -echo "$as_me:18632: result: $cf_result" >&5 +echo "$as_me:18770: result: $cf_result" >&5 echo "${ECHO_T}$cf_result" >&6 if test "$cf_result" = no ; then case $host_os in (freebsd*) - echo "$as_me:18638: checking for tgoto in -lmytinfo" >&5 + echo "$as_me:18776: 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 @@ -18643,7 +18781,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lmytinfo $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 18646 "configure" +#line 18784 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -18662,16 +18800,16 @@ tgoto (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:18665: \"$ac_link\"") >&5 +if { (eval echo "$as_me:18803: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:18668: \$? = $ac_status" >&5 + echo "$as_me:18806: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:18671: \"$ac_try\"") >&5 + { (eval echo "$as_me:18809: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:18674: \$? = $ac_status" >&5 + echo "$as_me:18812: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_mytinfo_tgoto=yes else @@ -18682,7 +18820,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:18685: result: $ac_cv_lib_mytinfo_tgoto" >&5 +echo "$as_me:18823: 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 @@ -18712,7 +18850,7 @@ fi # term.h) for cur_colr if test "x$cf_cv_screen" = "xcurses_colr" then - echo "$as_me:18715: checking for initscr in -lcur_colr" >&5 + echo "$as_me:18853: 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 @@ -18720,7 +18858,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lcur_colr $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 18723 "configure" +#line 18861 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -18739,16 +18877,16 @@ initscr (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:18742: \"$ac_link\"") >&5 +if { (eval echo "$as_me:18880: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:18745: \$? = $ac_status" >&5 + echo "$as_me:18883: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:18748: \"$ac_try\"") >&5 + { (eval echo "$as_me:18886: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:18751: \$? = $ac_status" >&5 + echo "$as_me:18889: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_cur_colr_initscr=yes else @@ -18759,7 +18897,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:18762: result: $ac_cv_lib_cur_colr_initscr" >&5 +echo "$as_me:18900: 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 @@ -18783,7 +18921,7 @@ LIBS="$cf_add_libs" else - echo "$as_me:18786: checking for initscr in -lHcurses" >&5 + echo "$as_me:18924: 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 @@ -18791,7 +18929,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lHcurses $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 18794 "configure" +#line 18932 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -18810,16 +18948,16 @@ initscr (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:18813: \"$ac_link\"") >&5 +if { (eval echo "$as_me:18951: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:18816: \$? = $ac_status" >&5 + echo "$as_me:18954: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:18819: \"$ac_try\"") >&5 + { (eval echo "$as_me:18957: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:18822: \$? = $ac_status" >&5 + echo "$as_me:18960: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_Hcurses_initscr=yes else @@ -18830,7 +18968,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:18833: result: $ac_cv_lib_Hcurses_initscr" >&5 +echo "$as_me:18971: 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 @@ -18886,7 +19024,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}:18889: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:19027: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -18915,7 +19053,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}:18918: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:19056: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -18946,7 +19084,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}:18949: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:19087: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -18981,7 +19119,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}:18984: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:19122: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -19025,13 +19163,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:19028: checking for tgoto" >&5 + echo "$as_me:19166: 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 19034 "configure" +#line 19172 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char tgoto (); below. */ @@ -19062,16 +19200,16 @@ f = tgoto; /* workaround for ICC 12.0.3 */ if (f == 0) return 1; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:19065: \"$ac_link\"") >&5 +if { (eval echo "$as_me:19203: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:19068: \$? = $ac_status" >&5 + echo "$as_me:19206: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:19071: \"$ac_try\"") >&5 + { (eval echo "$as_me:19209: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:19074: \$? = $ac_status" >&5 + echo "$as_me:19212: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_tgoto=yes else @@ -19081,7 +19219,7 @@ ac_cv_func_tgoto=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:19084: result: $ac_cv_func_tgoto" >&5 +echo "$as_me:19222: 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 @@ -19090,7 +19228,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:19093: checking for tgoto in -l$cf_term_lib" >&5 +echo "$as_me:19231: 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 @@ -19098,7 +19236,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-l$cf_term_lib $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 19101 "configure" +#line 19239 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -19117,16 +19255,16 @@ tgoto (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:19120: \"$ac_link\"") >&5 +if { (eval echo "$as_me:19258: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:19123: \$? = $ac_status" >&5 + echo "$as_me:19261: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:19126: \"$ac_try\"") >&5 + { (eval echo "$as_me:19264: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:19129: \$? = $ac_status" >&5 + echo "$as_me:19267: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_Lib=yes" else @@ -19137,7 +19275,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:19140: result: `eval echo '${'$as_ac_Lib'}'`" >&5 +echo "$as_me:19278: result: `eval echo '${'$as_ac_Lib'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_Lib'}'`" >&6 if test `eval echo '${'$as_ac_Lib'}'` = yes; then break @@ -19156,7 +19294,7 @@ fi for cf_curs_lib in $cf_check_list xcurses jcurses pdcurses unknown do as_ac_Lib=`echo "ac_cv_lib_$cf_curs_lib''_initscr" | $as_tr_sh` -echo "$as_me:19159: checking for initscr in -l$cf_curs_lib" >&5 +echo "$as_me:19297: checking for initscr in -l$cf_curs_lib" >&5 echo $ECHO_N "checking for initscr in -l$cf_curs_lib... $ECHO_C" >&6 if eval "test \"\${$as_ac_Lib+set}\" = set"; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -19164,7 +19302,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-l$cf_curs_lib $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 19167 "configure" +#line 19305 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -19183,16 +19321,16 @@ initscr (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:19186: \"$ac_link\"") >&5 +if { (eval echo "$as_me:19324: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:19189: \$? = $ac_status" >&5 + echo "$as_me:19327: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:19192: \"$ac_try\"") >&5 + { (eval echo "$as_me:19330: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:19195: \$? = $ac_status" >&5 + echo "$as_me:19333: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_Lib=yes" else @@ -19203,7 +19341,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:19206: result: `eval echo '${'$as_ac_Lib'}'`" >&5 +echo "$as_me:19344: result: `eval echo '${'$as_ac_Lib'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_Lib'}'`" >&6 if test `eval echo '${'$as_ac_Lib'}'` = yes; then break @@ -19211,16 +19349,16 @@ fi done fi - test $cf_curs_lib = unknown && { { echo "$as_me:19214: error: no curses library found" >&5 + test $cf_curs_lib = unknown && { { echo "$as_me:19352: error: no curses library found" >&5 echo "$as_me: error: no curses library found" >&2;} { (exit 1); exit 1; }; } LIBS="-l$cf_curs_lib $cf_save_LIBS" if test "$cf_term_lib" = unknown ; then - echo "$as_me:19220: checking if we can link with $cf_curs_lib library" >&5 + echo "$as_me:19358: 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 19223 "configure" +#line 19361 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> int @@ -19232,16 +19370,16 @@ initscr() } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:19235: \"$ac_link\"") >&5 +if { (eval echo "$as_me:19373: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:19238: \$? = $ac_status" >&5 + echo "$as_me:19376: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:19241: \"$ac_try\"") >&5 + { (eval echo "$as_me:19379: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:19244: \$? = $ac_status" >&5 + echo "$as_me:19382: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_result=yes else @@ -19250,18 +19388,18 @@ cat conftest.$ac_ext >&5 cf_result=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext - echo "$as_me:19253: result: $cf_result" >&5 + echo "$as_me:19391: result: $cf_result" >&5 echo "${ECHO_T}$cf_result" >&6 - test $cf_result = no && { { echo "$as_me:19255: error: Cannot link curses library" >&5 + test $cf_result = no && { { echo "$as_me:19393: error: Cannot link curses library" >&5 echo "$as_me: error: Cannot link curses library" >&2;} { (exit 1); exit 1; }; } elif test "$cf_curs_lib" = "$cf_term_lib" ; then : elif test "$cf_term_lib" != predefined ; then - echo "$as_me:19261: checking if we need both $cf_curs_lib and $cf_term_lib libraries" >&5 + echo "$as_me:19399: 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 19264 "configure" +#line 19402 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> int @@ -19273,16 +19411,16 @@ initscr(); tgoto((char *)0, 0, 0); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:19276: \"$ac_link\"") >&5 +if { (eval echo "$as_me:19414: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:19279: \$? = $ac_status" >&5 + echo "$as_me:19417: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:19282: \"$ac_try\"") >&5 + { (eval echo "$as_me:19420: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:19285: \$? = $ac_status" >&5 + echo "$as_me:19423: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_result=no else @@ -19291,7 +19429,7 @@ cat conftest.$ac_ext >&5 LIBS="-l$cf_curs_lib -l$cf_term_lib $cf_save_LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 19294 "configure" +#line 19432 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> int @@ -19303,16 +19441,16 @@ initscr() } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:19306: \"$ac_link\"") >&5 +if { (eval echo "$as_me:19444: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:19309: \$? = $ac_status" >&5 + echo "$as_me:19447: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:19312: \"$ac_try\"") >&5 + { (eval echo "$as_me:19450: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:19315: \$? = $ac_status" >&5 + echo "$as_me:19453: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_result=yes else @@ -19324,13 +19462,13 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext - echo "$as_me:19327: result: $cf_result" >&5 + echo "$as_me:19465: result: $cf_result" >&5 echo "${ECHO_T}$cf_result" >&6 fi fi fi -echo "$as_me:19333: checking for curses performance tradeoff" >&5 +echo "$as_me:19471: 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 @@ -19338,7 +19476,7 @@ else cf_cv_curs_performance=no cat >conftest.$ac_ext <<_ACEOF -#line 19341 "configure" +#line 19479 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> @@ -19357,20 +19495,20 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:19360: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:19498: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:19363: \$? = $ac_status" >&5 + echo "$as_me:19501: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:19366: \"$ac_try\"") >&5 + { (eval echo "$as_me:19504: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:19369: \$? = $ac_status" >&5 + echo "$as_me:19507: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cat >conftest.$ac_ext <<_ACEOF -#line 19373 "configure" +#line 19511 "configure" #include "confdefs.h" #define CURS_PERFORMANCE @@ -19390,16 +19528,16 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:19393: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:19531: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:19396: \$? = $ac_status" >&5 + echo "$as_me:19534: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:19399: \"$ac_try\"") >&5 + { (eval echo "$as_me:19537: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:19402: \$? = $ac_status" >&5 + echo "$as_me:19540: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_curs_performance=yes else @@ -19414,21 +19552,21 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:19417: result: $cf_cv_curs_performance" >&5 +echo "$as_me:19555: 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:19424: checking for curses touchline function" >&5 +echo "$as_me:19562: 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 19431 "configure" +#line 19569 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> @@ -19441,23 +19579,23 @@ touchline(stdscr, 1,2,3); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:19444: \"$ac_link\"") >&5 +if { (eval echo "$as_me:19582: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:19447: \$? = $ac_status" >&5 + echo "$as_me:19585: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:19450: \"$ac_try\"") >&5 + { (eval echo "$as_me:19588: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:19453: \$? = $ac_status" >&5 + echo "$as_me:19591: \$? = $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 19460 "configure" +#line 19598 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> @@ -19470,16 +19608,16 @@ touchline(stdscr, 1,2); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:19473: \"$ac_link\"") >&5 +if { (eval echo "$as_me:19611: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:19476: \$? = $ac_status" >&5 + echo "$as_me:19614: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:19479: \"$ac_try\"") >&5 + { (eval echo "$as_me:19617: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:19482: \$? = $ac_status" >&5 + echo "$as_me:19620: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_curs_touchline=sysv else @@ -19491,7 +19629,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:19494: result: $cf_cv_curs_touchline" >&5 +echo "$as_me:19632: result: $cf_cv_curs_touchline" >&5 echo "${ECHO_T}$cf_cv_curs_touchline" >&6 case "$cf_cv_curs_touchline" in (bsd) @@ -19513,7 +19651,7 @@ esac ;; (ncursesw*) -echo "$as_me:19516: checking for multibyte character support" >&5 +echo "$as_me:19654: 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 @@ -19521,7 +19659,7 @@ else cf_save_LIBS="$LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 19524 "configure" +#line 19662 "configure" #include "confdefs.h" #include <stdlib.h> @@ -19534,16 +19672,16 @@ putwc(0,0); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:19537: \"$ac_link\"") >&5 +if { (eval echo "$as_me:19675: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:19540: \$? = $ac_status" >&5 + echo "$as_me:19678: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:19543: \"$ac_try\"") >&5 + { (eval echo "$as_me:19681: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:19546: \$? = $ac_status" >&5 + echo "$as_me:19684: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_utf8_lib=yes else @@ -19555,12 +19693,12 @@ cat conftest.$ac_ext >&5 cf_cv_header_path_utf8= cf_cv_library_path_utf8= -echo "${as_me:-configure}:19558: testing Starting FIND_LINKAGE(utf8,) ..." 1>&5 +echo "${as_me:-configure}:19696: testing Starting FIND_LINKAGE(utf8,) ..." 1>&5 cf_save_LIBS="$LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 19563 "configure" +#line 19701 "configure" #include "confdefs.h" #include <libutf8.h> @@ -19573,16 +19711,16 @@ putwc(0,0); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:19576: \"$ac_link\"") >&5 +if { (eval echo "$as_me:19714: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:19579: \$? = $ac_status" >&5 + echo "$as_me:19717: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:19582: \"$ac_try\"") >&5 + { (eval echo "$as_me:19720: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:19585: \$? = $ac_status" >&5 + echo "$as_me:19723: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_find_linkage_utf8=yes @@ -19596,7 +19734,7 @@ cat conftest.$ac_ext >&5 LIBS="-lutf8 $cf_save_LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 19599 "configure" +#line 19737 "configure" #include "confdefs.h" #include <libutf8.h> @@ -19609,16 +19747,16 @@ putwc(0,0); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:19612: \"$ac_link\"") >&5 +if { (eval echo "$as_me:19750: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:19615: \$? = $ac_status" >&5 + echo "$as_me:19753: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:19618: \"$ac_try\"") >&5 + { (eval echo "$as_me:19756: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:19621: \$? = $ac_status" >&5 + echo "$as_me:19759: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_find_linkage_utf8=yes @@ -19635,9 +19773,9 @@ cat conftest.$ac_ext >&5 test -n "$verbose" && echo " find linkage for utf8 library" 1>&6 -echo "${as_me:-configure}:19638: testing find linkage for utf8 library ..." 1>&5 +echo "${as_me:-configure}:19776: testing find linkage for utf8 library ..." 1>&5 -echo "${as_me:-configure}:19640: testing Searching for headers in FIND_LINKAGE(utf8,) ..." 1>&5 +echo "${as_me:-configure}:19778: testing Searching for headers in FIND_LINKAGE(utf8,) ..." 1>&5 cf_save_CPPFLAGS="$CPPFLAGS" cf_test_CPPFLAGS="$CPPFLAGS" @@ -19728,11 +19866,11 @@ 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}:19731: testing ... testing $cf_cv_header_path_utf8 ..." 1>&5 +echo "${as_me:-configure}:19869: testing ... testing $cf_cv_header_path_utf8 ..." 1>&5 CPPFLAGS="$cf_save_CPPFLAGS -I$cf_cv_header_path_utf8" cat >conftest.$ac_ext <<_ACEOF -#line 19735 "configure" +#line 19873 "configure" #include "confdefs.h" #include <libutf8.h> @@ -19745,21 +19883,21 @@ putwc(0,0); } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:19748: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:19886: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:19751: \$? = $ac_status" >&5 + echo "$as_me:19889: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:19754: \"$ac_try\"") >&5 + { (eval echo "$as_me:19892: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:19757: \$? = $ac_status" >&5 + echo "$as_me:19895: \$? = $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}:19762: testing ... found utf8 headers in $cf_cv_header_path_utf8 ..." 1>&5 +echo "${as_me:-configure}:19900: testing ... found utf8 headers in $cf_cv_header_path_utf8 ..." 1>&5 cf_cv_find_linkage_utf8=maybe cf_test_CPPFLAGS="$CPPFLAGS" @@ -19777,7 +19915,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "$cf_cv_find_linkage_utf8" = maybe ; then -echo "${as_me:-configure}:19780: testing Searching for utf8 library in FIND_LINKAGE(utf8,) ..." 1>&5 +echo "${as_me:-configure}:19918: testing Searching for utf8 library in FIND_LINKAGE(utf8,) ..." 1>&5 cf_save_LIBS="$LIBS" cf_save_LDFLAGS="$LDFLAGS" @@ -19852,13 +19990,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}:19855: testing ... testing $cf_cv_library_path_utf8 ..." 1>&5 +echo "${as_me:-configure}:19993: 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 19861 "configure" +#line 19999 "configure" #include "confdefs.h" #include <libutf8.h> @@ -19871,21 +20009,21 @@ putwc(0,0); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:19874: \"$ac_link\"") >&5 +if { (eval echo "$as_me:20012: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:19877: \$? = $ac_status" >&5 + echo "$as_me:20015: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:19880: \"$ac_try\"") >&5 + { (eval echo "$as_me:20018: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:19883: \$? = $ac_status" >&5 + echo "$as_me:20021: \$? = $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}:19888: testing ... found utf8 library in $cf_cv_library_path_utf8 ..." 1>&5 +echo "${as_me:-configure}:20026: testing ... found utf8 library in $cf_cv_library_path_utf8 ..." 1>&5 cf_cv_find_linkage_utf8=yes cf_cv_library_file_utf8="-lutf8" @@ -19927,7 +20065,7 @@ fi fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:19930: result: $cf_cv_utf8_lib" >&5 +echo "$as_me:20068: 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 @@ -19962,7 +20100,7 @@ if test -n "$cf_cv_header_path_utf8" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 19965 "configure" +#line 20103 "configure" #include "confdefs.h" #include <stdio.h> int @@ -19974,16 +20112,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:19977: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:20115: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:19980: \$? = $ac_status" >&5 + echo "$as_me:20118: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:19983: \"$ac_try\"") >&5 + { (eval echo "$as_me:20121: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:19986: \$? = $ac_status" >&5 + echo "$as_me:20124: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -20000,7 +20138,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}:20003: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:20141: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -20036,7 +20174,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}:20039: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:20177: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -20066,13 +20204,13 @@ cf_ncuconfig_root=$cf_cv_screen cf_have_ncuconfig=no if test "x${PKG_CONFIG:=none}" != xnone; then - echo "$as_me:20069: checking pkg-config for $cf_ncuconfig_root" >&5 + echo "$as_me:20207: 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:20072: result: yes" >&5 + echo "$as_me:20210: result: yes" >&5 echo "${ECHO_T}yes" >&6 - echo "$as_me:20075: checking if the $cf_ncuconfig_root package files work" >&5 + echo "$as_me:20213: 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 @@ -20098,7 +20236,7 @@ done LIBS="$cf_add_libs" cat >conftest.$ac_ext <<_ACEOF -#line 20101 "configure" +#line 20239 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> int @@ -20110,37 +20248,37 @@ initscr(); mousemask(0,0); tgoto((char *)0, 0, 0); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:20113: \"$ac_link\"") >&5 +if { (eval echo "$as_me:20251: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:20116: \$? = $ac_status" >&5 + echo "$as_me:20254: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:20119: \"$ac_try\"") >&5 + { (eval echo "$as_me:20257: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:20122: \$? = $ac_status" >&5 + echo "$as_me:20260: \$? = $ac_status" >&5 (exit $ac_status); }; }; then if test "$cross_compiling" = yes; then cf_have_ncuconfig=maybe else cat >conftest.$ac_ext <<_ACEOF -#line 20128 "configure" +#line 20266 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> int main(void) { char *xx = curses_version(); return (xx == 0); } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:20135: \"$ac_link\"") >&5 +if { (eval echo "$as_me:20273: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:20138: \$? = $ac_status" >&5 + echo "$as_me:20276: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:20140: \"$ac_try\"") >&5 + { (eval echo "$as_me:20278: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:20143: \$? = $ac_status" >&5 + echo "$as_me:20281: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_have_ncuconfig=yes else @@ -20157,7 +20295,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:20160: result: $cf_have_ncuconfig" >&5 + echo "$as_me:20298: 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" @@ -20175,7 +20313,7 @@ EOF fi else - echo "$as_me:20178: result: no" >&5 + echo "$as_me:20316: result: no" >&5 echo "${ECHO_T}no" >&6 NCURSES_CONFIG_PKG=none fi @@ -20191,7 +20329,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:20194: checking for $ac_word" >&5 +echo "$as_me:20332: 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 @@ -20206,7 +20344,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:20209: found $ac_dir/$ac_word" >&5 +echo "$as_me:20347: found $ac_dir/$ac_word" >&5 break done @@ -20214,10 +20352,10 @@ fi fi NCURSES_CONFIG=$ac_cv_prog_NCURSES_CONFIG if test -n "$NCURSES_CONFIG"; then - echo "$as_me:20217: result: $NCURSES_CONFIG" >&5 + echo "$as_me:20355: result: $NCURSES_CONFIG" >&5 echo "${ECHO_T}$NCURSES_CONFIG" >&6 else - echo "$as_me:20220: result: no" >&5 + echo "$as_me:20358: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -20230,7 +20368,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:20233: checking for $ac_word" >&5 +echo "$as_me:20371: 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 @@ -20245,7 +20383,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:20248: found $ac_dir/$ac_word" >&5 +echo "$as_me:20386: found $ac_dir/$ac_word" >&5 break done @@ -20253,10 +20391,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:20256: result: $ac_ct_NCURSES_CONFIG" >&5 + echo "$as_me:20394: result: $ac_ct_NCURSES_CONFIG" >&5 echo "${ECHO_T}$ac_ct_NCURSES_CONFIG" >&6 else - echo "$as_me:20259: result: no" >&5 + echo "$as_me:20397: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -20289,7 +20427,7 @@ LIBS="$cf_add_libs" # even with config script, some packages use no-override for curses.h -echo "$as_me:20292: checking if we have identified curses headers" >&5 +echo "$as_me:20430: 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 @@ -20301,7 +20439,7 @@ for cf_header in \ curses.h $cf_cv_screen/curses.h do cat >conftest.$ac_ext <<_ACEOF -#line 20304 "configure" +#line 20442 "configure" #include "confdefs.h" #include <${cf_header}> int @@ -20313,16 +20451,16 @@ initscr(); tgoto("?", 0,0) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:20316: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:20454: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:20319: \$? = $ac_status" >&5 + echo "$as_me:20457: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:20322: \"$ac_try\"") >&5 + { (eval echo "$as_me:20460: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:20325: \$? = $ac_status" >&5 + echo "$as_me:20463: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_ncurses_header=$cf_header; break else @@ -20333,11 +20471,11 @@ rm -f conftest.$ac_objext conftest.$ac_ext done fi -echo "$as_me:20336: result: $cf_cv_ncurses_header" >&5 +echo "$as_me:20474: 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:20340: error: No curses header-files found" >&5 + { { echo "$as_me:20478: error: No curses header-files found" >&5 echo "$as_me: error: No curses header-files found" >&2;} { (exit 1); exit 1; }; } fi @@ -20347,23 +20485,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:20350: checking for $ac_header" >&5 +echo "$as_me:20488: 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 20356 "configure" +#line 20494 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:20360: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:20498: \"$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:20366: \$? = $ac_status" >&5 + echo "$as_me:20504: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -20382,7 +20520,7 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:20385: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:20523: 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 @@ -20435,7 +20573,7 @@ if test -n "$cf_cv_curses_dir/include/$cf_ncuhdr_root" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 20438 "configure" +#line 20576 "configure" #include "confdefs.h" #include <stdio.h> int @@ -20447,16 +20585,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:20450: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:20588: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:20453: \$? = $ac_status" >&5 + echo "$as_me:20591: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:20456: \"$ac_try\"") >&5 + { (eval echo "$as_me:20594: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:20459: \$? = $ac_status" >&5 + echo "$as_me:20597: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -20473,7 +20611,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}:20476: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:20614: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -20492,7 +20630,7 @@ fi } -echo "$as_me:20495: checking for $cf_ncuhdr_root header in include-path" >&5 +echo "$as_me:20633: 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 @@ -20504,7 +20642,7 @@ else do cat >conftest.$ac_ext <<_ACEOF -#line 20507 "configure" +#line 20645 "configure" #include "confdefs.h" #include <$cf_header> @@ -20528,16 +20666,16 @@ printf("old\n"); } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:20531: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:20669: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:20534: \$? = $ac_status" >&5 + echo "$as_me:20672: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:20537: \"$ac_try\"") >&5 + { (eval echo "$as_me:20675: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:20540: \$? = $ac_status" >&5 + echo "$as_me:20678: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_ncurses_h=$cf_header @@ -20552,14 +20690,14 @@ rm -f conftest.$ac_objext conftest.$ac_ext done fi -echo "$as_me:20555: result: $cf_cv_ncurses_h" >&5 +echo "$as_me:20693: 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:20562: checking for $cf_ncuhdr_root include-path" >&5 +echo "$as_me:20700: 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 @@ -20677,7 +20815,7 @@ if test -n "$cf_incdir" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 20680 "configure" +#line 20818 "configure" #include "confdefs.h" #include <stdio.h> int @@ -20689,16 +20827,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:20692: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:20830: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:20695: \$? = $ac_status" >&5 + echo "$as_me:20833: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:20698: \"$ac_try\"") >&5 + { (eval echo "$as_me:20836: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:20701: \$? = $ac_status" >&5 + echo "$as_me:20839: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -20715,7 +20853,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}:20718: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:20856: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -20738,7 +20876,7 @@ fi do cat >conftest.$ac_ext <<_ACEOF -#line 20741 "configure" +#line 20879 "configure" #include "confdefs.h" #include <$cf_header> @@ -20762,16 +20900,16 @@ printf("old\n"); } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:20765: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:20903: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:20768: \$? = $ac_status" >&5 + echo "$as_me:20906: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:20771: \"$ac_try\"") >&5 + { (eval echo "$as_me:20909: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:20774: \$? = $ac_status" >&5 + echo "$as_me:20912: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_ncurses_h2=$cf_header @@ -20792,12 +20930,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:20795: error: not found" >&5 + test "$cf_cv_ncurses_h2" = no && { { echo "$as_me:20933: error: not found" >&5 echo "$as_me: error: not found" >&2;} { (exit 1); exit 1; }; } fi -echo "$as_me:20800: result: $cf_cv_ncurses_h2" >&5 +echo "$as_me:20938: 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%/[^/]*$%%'` @@ -20830,7 +20968,7 @@ if test -n "$cf_1st_incdir" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 20833 "configure" +#line 20971 "configure" #include "confdefs.h" #include <stdio.h> int @@ -20842,16 +20980,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:20845: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:20983: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:20848: \$? = $ac_status" >&5 + echo "$as_me:20986: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:20851: \"$ac_try\"") >&5 + { (eval echo "$as_me:20989: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:20854: \$? = $ac_status" >&5 + echo "$as_me:20992: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -20868,7 +21006,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}:20871: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:21009: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -20916,7 +21054,7 @@ EOF ;; esac -echo "$as_me:20919: checking for terminfo header" >&5 +echo "$as_me:21057: 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 @@ -20934,7 +21072,7 @@ esac for cf_test in $cf_term_header "ncurses/term.h" "ncursesw/term.h" do cat >conftest.$ac_ext <<_ACEOF -#line 20937 "configure" +#line 21075 "configure" #include "confdefs.h" #include <stdio.h> #include <${cf_cv_ncurses_header:-curses.h}> @@ -20949,16 +21087,16 @@ int x = auto_left_margin } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:20952: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:21090: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:20955: \$? = $ac_status" >&5 + echo "$as_me:21093: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:20958: \"$ac_try\"") >&5 + { (eval echo "$as_me:21096: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:20961: \$? = $ac_status" >&5 + echo "$as_me:21099: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_term_header="$cf_test" @@ -20974,7 +21112,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext done fi -echo "$as_me:20977: result: $cf_cv_term_header" >&5 +echo "$as_me:21115: result: $cf_cv_term_header" >&5 echo "${ECHO_T}$cf_cv_term_header" >&6 # Set definitions to allow ifdef'ing to accommodate subdirectories @@ -21012,7 +21150,7 @@ cat >>confdefs.h <<\EOF #define NCURSES 1 EOF -echo "$as_me:21015: checking for ncurses version" >&5 +echo "$as_me:21153: 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 @@ -21038,10 +21176,10 @@ Autoconf "old" #endif EOF cf_try="$ac_cpp conftest.$ac_ext 2>&5 | grep '^Autoconf ' >conftest.out" - { (eval echo "$as_me:21041: \"$cf_try\"") >&5 + { (eval echo "$as_me:21179: \"$cf_try\"") >&5 (eval $cf_try) 2>&5 ac_status=$? - echo "$as_me:21044: \$? = $ac_status" >&5 + echo "$as_me:21182: \$? = $ac_status" >&5 (exit $ac_status); } if test -f conftest.out ; then cf_out=`cat conftest.out | sed -e 's%^Autoconf %%' -e 's%^[^"]*"%%' -e 's%".*%%'` @@ -21051,7 +21189,7 @@ EOF else cat >conftest.$ac_ext <<_ACEOF -#line 21054 "configure" +#line 21192 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> @@ -21076,15 +21214,15 @@ int main() } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:21079: \"$ac_link\"") >&5 +if { (eval echo "$as_me:21217: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:21082: \$? = $ac_status" >&5 + echo "$as_me:21220: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:21084: \"$ac_try\"") >&5 + { (eval echo "$as_me:21222: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:21087: \$? = $ac_status" >&5 + echo "$as_me:21225: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_ncurses_version=`cat $cf_tempfile` @@ -21098,7 +21236,7 @@ fi rm -f $cf_tempfile fi -echo "$as_me:21101: result: $cf_cv_ncurses_version" >&5 +echo "$as_me:21239: result: $cf_cv_ncurses_version" >&5 echo "${ECHO_T}$cf_cv_ncurses_version" >&6 test "$cf_cv_ncurses_version" = no || cat >>confdefs.h <<\EOF @@ -21111,7 +21249,7 @@ cf_nculib_root=$cf_cv_screen # to link gpm. cf_ncurses_LIBS="" cf_ncurses_SAVE="$LIBS" -echo "$as_me:21114: checking for Gpm_Open in -lgpm" >&5 +echo "$as_me:21252: 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 @@ -21119,7 +21257,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lgpm $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 21122 "configure" +#line 21260 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -21138,16 +21276,16 @@ Gpm_Open (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:21141: \"$ac_link\"") >&5 +if { (eval echo "$as_me:21279: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:21144: \$? = $ac_status" >&5 + echo "$as_me:21282: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:21147: \"$ac_try\"") >&5 + { (eval echo "$as_me:21285: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:21150: \$? = $ac_status" >&5 + echo "$as_me:21288: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_gpm_Gpm_Open=yes else @@ -21158,10 +21296,10 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:21161: result: $ac_cv_lib_gpm_Gpm_Open" >&5 +echo "$as_me:21299: 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:21164: checking for initscr in -lgpm" >&5 + echo "$as_me:21302: 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 @@ -21169,7 +21307,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lgpm $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 21172 "configure" +#line 21310 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -21188,16 +21326,16 @@ initscr (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:21191: \"$ac_link\"") >&5 +if { (eval echo "$as_me:21329: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:21194: \$? = $ac_status" >&5 + echo "$as_me:21332: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:21197: \"$ac_try\"") >&5 + { (eval echo "$as_me:21335: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:21200: \$? = $ac_status" >&5 + echo "$as_me:21338: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_gpm_initscr=yes else @@ -21208,7 +21346,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:21211: result: $ac_cv_lib_gpm_initscr" >&5 +echo "$as_me:21349: 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" @@ -21223,7 +21361,7 @@ case $host_os in # This is only necessary if you are linking against an obsolete # version of ncurses (but it should do no harm, since it's static). if test "$cf_nculib_root" = ncurses ; then - echo "$as_me:21226: checking for tgoto in -lmytinfo" >&5 + echo "$as_me:21364: 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 @@ -21231,7 +21369,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lmytinfo $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 21234 "configure" +#line 21372 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -21250,16 +21388,16 @@ tgoto (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:21253: \"$ac_link\"") >&5 +if { (eval echo "$as_me:21391: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:21256: \$? = $ac_status" >&5 + echo "$as_me:21394: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:21259: \"$ac_try\"") >&5 + { (eval echo "$as_me:21397: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:21262: \$? = $ac_status" >&5 + echo "$as_me:21400: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_mytinfo_tgoto=yes else @@ -21270,7 +21408,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:21273: result: $ac_cv_lib_mytinfo_tgoto" >&5 +echo "$as_me:21411: 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" @@ -21319,13 +21457,13 @@ else eval 'cf_cv_have_lib_'$cf_nculib_root'=no' cf_libdir="" - echo "$as_me:21322: checking for initscr" >&5 + echo "$as_me:21460: 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 21328 "configure" +#line 21466 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char initscr (); below. */ @@ -21356,16 +21494,16 @@ f = initscr; /* workaround for ICC 12.0.3 */ if (f == 0) return 1; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:21359: \"$ac_link\"") >&5 +if { (eval echo "$as_me:21497: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:21362: \$? = $ac_status" >&5 + echo "$as_me:21500: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:21365: \"$ac_try\"") >&5 + { (eval echo "$as_me:21503: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:21368: \$? = $ac_status" >&5 + echo "$as_me:21506: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_initscr=yes else @@ -21375,18 +21513,18 @@ ac_cv_func_initscr=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:21378: result: $ac_cv_func_initscr" >&5 +echo "$as_me:21516: 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:21385: checking for initscr in -l$cf_nculib_root" >&5 + echo "$as_me:21523: 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 21389 "configure" +#line 21527 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> int @@ -21398,25 +21536,25 @@ initscr() } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:21401: \"$ac_link\"") >&5 +if { (eval echo "$as_me:21539: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:21404: \$? = $ac_status" >&5 + echo "$as_me:21542: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:21407: \"$ac_try\"") >&5 + { (eval echo "$as_me:21545: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:21410: \$? = $ac_status" >&5 + echo "$as_me:21548: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:21412: result: yes" >&5 + echo "$as_me:21550: 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:21419: result: no" >&5 +echo "$as_me:21557: result: no" >&5 echo "${ECHO_T}no" >&6 cf_search= @@ -21484,11 +21622,11 @@ cf_search="$cf_library_path_list $cf_search" for cf_libdir in $cf_search do - echo "$as_me:21487: checking for -l$cf_nculib_root in $cf_libdir" >&5 + echo "$as_me:21625: 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 21491 "configure" +#line 21629 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> int @@ -21500,25 +21638,25 @@ initscr() } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:21503: \"$ac_link\"") >&5 +if { (eval echo "$as_me:21641: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:21506: \$? = $ac_status" >&5 + echo "$as_me:21644: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:21509: \"$ac_try\"") >&5 + { (eval echo "$as_me:21647: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:21512: \$? = $ac_status" >&5 + echo "$as_me:21650: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:21514: result: yes" >&5 + echo "$as_me:21652: 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:21521: result: no" >&5 +echo "$as_me:21659: result: no" >&5 echo "${ECHO_T}no" >&6 LIBS="$cf_save_LIBS" fi @@ -21533,7 +21671,7 @@ fi eval 'cf_found_library=$cf_cv_have_lib_'$cf_nculib_root if test $cf_found_library = no ; then - { { echo "$as_me:21536: error: Cannot link $cf_nculib_root library" >&5 + { { echo "$as_me:21674: error: Cannot link $cf_nculib_root library" >&5 echo "$as_me: error: Cannot link $cf_nculib_root library" >&2;} { (exit 1); exit 1; }; } fi @@ -21541,7 +21679,7 @@ fi fi if test -n "$cf_ncurses_LIBS" ; then - echo "$as_me:21544: checking if we can link $cf_nculib_root without $cf_ncurses_LIBS" >&5 + echo "$as_me:21682: 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 @@ -21551,7 +21689,7 @@ echo $ECHO_N "checking if we can link $cf_nculib_root without $cf_ncurses_LIBS.. fi done cat >conftest.$ac_ext <<_ACEOF -#line 21554 "configure" +#line 21692 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> int @@ -21563,23 +21701,23 @@ initscr(); mousemask(0,0); tgoto((char *)0, 0, 0); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:21566: \"$ac_link\"") >&5 +if { (eval echo "$as_me:21704: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:21569: \$? = $ac_status" >&5 + echo "$as_me:21707: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:21572: \"$ac_try\"") >&5 + { (eval echo "$as_me:21710: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:21575: \$? = $ac_status" >&5 + echo "$as_me:21713: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:21577: result: yes" >&5 + echo "$as_me:21715: result: yes" >&5 echo "${ECHO_T}yes" >&6 else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 -echo "$as_me:21582: result: no" >&5 +echo "$as_me:21720: result: no" >&5 echo "${ECHO_T}no" >&6 LIBS="$cf_ncurses_SAVE" fi @@ -21605,13 +21743,13 @@ cf_ncuconfig_root=$cf_cv_screen cf_have_ncuconfig=no if test "x${PKG_CONFIG:=none}" != xnone; then - echo "$as_me:21608: checking pkg-config for $cf_ncuconfig_root" >&5 + echo "$as_me:21746: 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:21611: result: yes" >&5 + echo "$as_me:21749: result: yes" >&5 echo "${ECHO_T}yes" >&6 - echo "$as_me:21614: checking if the $cf_ncuconfig_root package files work" >&5 + echo "$as_me:21752: 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 @@ -21637,7 +21775,7 @@ done LIBS="$cf_add_libs" cat >conftest.$ac_ext <<_ACEOF -#line 21640 "configure" +#line 21778 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> int @@ -21649,37 +21787,37 @@ initscr(); mousemask(0,0); tgoto((char *)0, 0, 0); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:21652: \"$ac_link\"") >&5 +if { (eval echo "$as_me:21790: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:21655: \$? = $ac_status" >&5 + echo "$as_me:21793: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:21658: \"$ac_try\"") >&5 + { (eval echo "$as_me:21796: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:21661: \$? = $ac_status" >&5 + echo "$as_me:21799: \$? = $ac_status" >&5 (exit $ac_status); }; }; then if test "$cross_compiling" = yes; then cf_have_ncuconfig=maybe else cat >conftest.$ac_ext <<_ACEOF -#line 21667 "configure" +#line 21805 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> int main(void) { char *xx = curses_version(); return (xx == 0); } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:21674: \"$ac_link\"") >&5 +if { (eval echo "$as_me:21812: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:21677: \$? = $ac_status" >&5 + echo "$as_me:21815: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:21679: \"$ac_try\"") >&5 + { (eval echo "$as_me:21817: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:21682: \$? = $ac_status" >&5 + echo "$as_me:21820: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_have_ncuconfig=yes else @@ -21696,7 +21834,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:21699: result: $cf_have_ncuconfig" >&5 + echo "$as_me:21837: 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" @@ -21714,7 +21852,7 @@ EOF fi else - echo "$as_me:21717: result: no" >&5 + echo "$as_me:21855: result: no" >&5 echo "${ECHO_T}no" >&6 NCURSES_CONFIG_PKG=none fi @@ -21730,7 +21868,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:21733: checking for $ac_word" >&5 +echo "$as_me:21871: 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 @@ -21745,7 +21883,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:21748: found $ac_dir/$ac_word" >&5 +echo "$as_me:21886: found $ac_dir/$ac_word" >&5 break done @@ -21753,10 +21891,10 @@ fi fi NCURSES_CONFIG=$ac_cv_prog_NCURSES_CONFIG if test -n "$NCURSES_CONFIG"; then - echo "$as_me:21756: result: $NCURSES_CONFIG" >&5 + echo "$as_me:21894: result: $NCURSES_CONFIG" >&5 echo "${ECHO_T}$NCURSES_CONFIG" >&6 else - echo "$as_me:21759: result: no" >&5 + echo "$as_me:21897: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -21769,7 +21907,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:21772: checking for $ac_word" >&5 +echo "$as_me:21910: 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 @@ -21784,7 +21922,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:21787: found $ac_dir/$ac_word" >&5 +echo "$as_me:21925: found $ac_dir/$ac_word" >&5 break done @@ -21792,10 +21930,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:21795: result: $ac_ct_NCURSES_CONFIG" >&5 + echo "$as_me:21933: result: $ac_ct_NCURSES_CONFIG" >&5 echo "${ECHO_T}$ac_ct_NCURSES_CONFIG" >&6 else - echo "$as_me:21798: result: no" >&5 + echo "$as_me:21936: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -21828,7 +21966,7 @@ LIBS="$cf_add_libs" # even with config script, some packages use no-override for curses.h -echo "$as_me:21831: checking if we have identified curses headers" >&5 +echo "$as_me:21969: 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 @@ -21840,7 +21978,7 @@ for cf_header in \ curses.h $cf_cv_screen/curses.h do cat >conftest.$ac_ext <<_ACEOF -#line 21843 "configure" +#line 21981 "configure" #include "confdefs.h" #include <${cf_header}> int @@ -21852,16 +21990,16 @@ initscr(); tgoto("?", 0,0) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:21855: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:21993: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:21858: \$? = $ac_status" >&5 + echo "$as_me:21996: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:21861: \"$ac_try\"") >&5 + { (eval echo "$as_me:21999: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:21864: \$? = $ac_status" >&5 + echo "$as_me:22002: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_ncurses_header=$cf_header; break else @@ -21872,11 +22010,11 @@ rm -f conftest.$ac_objext conftest.$ac_ext done fi -echo "$as_me:21875: result: $cf_cv_ncurses_header" >&5 +echo "$as_me:22013: 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:21879: error: No curses header-files found" >&5 + { { echo "$as_me:22017: error: No curses header-files found" >&5 echo "$as_me: error: No curses header-files found" >&2;} { (exit 1); exit 1; }; } fi @@ -21886,23 +22024,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:21889: checking for $ac_header" >&5 +echo "$as_me:22027: 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 21895 "configure" +#line 22033 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:21899: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:22037: \"$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:21905: \$? = $ac_status" >&5 + echo "$as_me:22043: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -21921,7 +22059,7 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:21924: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:22062: 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 @@ -21974,7 +22112,7 @@ if test -n "$cf_cv_curses_dir/include/$cf_ncuhdr_root" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 21977 "configure" +#line 22115 "configure" #include "confdefs.h" #include <stdio.h> int @@ -21986,16 +22124,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:21989: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:22127: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:21992: \$? = $ac_status" >&5 + echo "$as_me:22130: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:21995: \"$ac_try\"") >&5 + { (eval echo "$as_me:22133: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:21998: \$? = $ac_status" >&5 + echo "$as_me:22136: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -22012,7 +22150,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}:22015: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:22153: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -22031,7 +22169,7 @@ fi } -echo "$as_me:22034: checking for $cf_ncuhdr_root header in include-path" >&5 +echo "$as_me:22172: 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 @@ -22043,7 +22181,7 @@ else do cat >conftest.$ac_ext <<_ACEOF -#line 22046 "configure" +#line 22184 "configure" #include "confdefs.h" #include <$cf_header> @@ -22067,16 +22205,16 @@ printf("old\n"); } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:22070: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:22208: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:22073: \$? = $ac_status" >&5 + echo "$as_me:22211: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:22076: \"$ac_try\"") >&5 + { (eval echo "$as_me:22214: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:22079: \$? = $ac_status" >&5 + echo "$as_me:22217: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_ncurses_h=$cf_header @@ -22091,14 +22229,14 @@ rm -f conftest.$ac_objext conftest.$ac_ext done fi -echo "$as_me:22094: result: $cf_cv_ncurses_h" >&5 +echo "$as_me:22232: 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:22101: checking for $cf_ncuhdr_root include-path" >&5 +echo "$as_me:22239: 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 @@ -22216,7 +22354,7 @@ if test -n "$cf_incdir" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 22219 "configure" +#line 22357 "configure" #include "confdefs.h" #include <stdio.h> int @@ -22228,16 +22366,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:22231: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:22369: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:22234: \$? = $ac_status" >&5 + echo "$as_me:22372: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:22237: \"$ac_try\"") >&5 + { (eval echo "$as_me:22375: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:22240: \$? = $ac_status" >&5 + echo "$as_me:22378: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -22254,7 +22392,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}:22257: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:22395: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -22277,7 +22415,7 @@ fi do cat >conftest.$ac_ext <<_ACEOF -#line 22280 "configure" +#line 22418 "configure" #include "confdefs.h" #include <$cf_header> @@ -22301,16 +22439,16 @@ printf("old\n"); } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:22304: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:22442: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:22307: \$? = $ac_status" >&5 + echo "$as_me:22445: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:22310: \"$ac_try\"") >&5 + { (eval echo "$as_me:22448: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:22313: \$? = $ac_status" >&5 + echo "$as_me:22451: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_ncurses_h2=$cf_header @@ -22331,12 +22469,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:22334: error: not found" >&5 + test "$cf_cv_ncurses_h2" = no && { { echo "$as_me:22472: error: not found" >&5 echo "$as_me: error: not found" >&2;} { (exit 1); exit 1; }; } fi -echo "$as_me:22339: result: $cf_cv_ncurses_h2" >&5 +echo "$as_me:22477: 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%/[^/]*$%%'` @@ -22369,7 +22507,7 @@ if test -n "$cf_1st_incdir" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 22372 "configure" +#line 22510 "configure" #include "confdefs.h" #include <stdio.h> int @@ -22381,16 +22519,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:22384: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:22522: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:22387: \$? = $ac_status" >&5 + echo "$as_me:22525: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:22390: \"$ac_try\"") >&5 + { (eval echo "$as_me:22528: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:22393: \$? = $ac_status" >&5 + echo "$as_me:22531: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -22407,7 +22545,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}:22410: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:22548: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -22455,7 +22593,7 @@ EOF ;; esac -echo "$as_me:22458: checking for terminfo header" >&5 +echo "$as_me:22596: 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 @@ -22473,7 +22611,7 @@ esac for cf_test in $cf_term_header "ncurses/term.h" "ncursesw/term.h" do cat >conftest.$ac_ext <<_ACEOF -#line 22476 "configure" +#line 22614 "configure" #include "confdefs.h" #include <stdio.h> #include <${cf_cv_ncurses_header:-curses.h}> @@ -22488,16 +22626,16 @@ int x = auto_left_margin } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:22491: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:22629: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:22494: \$? = $ac_status" >&5 + echo "$as_me:22632: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:22497: \"$ac_try\"") >&5 + { (eval echo "$as_me:22635: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:22500: \$? = $ac_status" >&5 + echo "$as_me:22638: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_term_header="$cf_test" @@ -22513,7 +22651,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext done fi -echo "$as_me:22516: result: $cf_cv_term_header" >&5 +echo "$as_me:22654: result: $cf_cv_term_header" >&5 echo "${ECHO_T}$cf_cv_term_header" >&6 # Set definitions to allow ifdef'ing to accommodate subdirectories @@ -22551,7 +22689,7 @@ cat >>confdefs.h <<\EOF #define NCURSES 1 EOF -echo "$as_me:22554: checking for ncurses version" >&5 +echo "$as_me:22692: 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 @@ -22577,10 +22715,10 @@ Autoconf "old" #endif EOF cf_try="$ac_cpp conftest.$ac_ext 2>&5 | grep '^Autoconf ' >conftest.out" - { (eval echo "$as_me:22580: \"$cf_try\"") >&5 + { (eval echo "$as_me:22718: \"$cf_try\"") >&5 (eval $cf_try) 2>&5 ac_status=$? - echo "$as_me:22583: \$? = $ac_status" >&5 + echo "$as_me:22721: \$? = $ac_status" >&5 (exit $ac_status); } if test -f conftest.out ; then cf_out=`cat conftest.out | sed -e 's%^Autoconf %%' -e 's%^[^"]*"%%' -e 's%".*%%'` @@ -22590,7 +22728,7 @@ EOF else cat >conftest.$ac_ext <<_ACEOF -#line 22593 "configure" +#line 22731 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> @@ -22615,15 +22753,15 @@ int main() } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:22618: \"$ac_link\"") >&5 +if { (eval echo "$as_me:22756: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:22621: \$? = $ac_status" >&5 + echo "$as_me:22759: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:22623: \"$ac_try\"") >&5 + { (eval echo "$as_me:22761: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:22626: \$? = $ac_status" >&5 + echo "$as_me:22764: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_ncurses_version=`cat $cf_tempfile` @@ -22637,7 +22775,7 @@ fi rm -f $cf_tempfile fi -echo "$as_me:22640: result: $cf_cv_ncurses_version" >&5 +echo "$as_me:22778: result: $cf_cv_ncurses_version" >&5 echo "${ECHO_T}$cf_cv_ncurses_version" >&6 test "$cf_cv_ncurses_version" = no || cat >>confdefs.h <<\EOF @@ -22650,7 +22788,7 @@ cf_nculib_root=$cf_cv_screen # to link gpm. cf_ncurses_LIBS="" cf_ncurses_SAVE="$LIBS" -echo "$as_me:22653: checking for Gpm_Open in -lgpm" >&5 +echo "$as_me:22791: 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 @@ -22658,7 +22796,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lgpm $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 22661 "configure" +#line 22799 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -22677,16 +22815,16 @@ Gpm_Open (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:22680: \"$ac_link\"") >&5 +if { (eval echo "$as_me:22818: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:22683: \$? = $ac_status" >&5 + echo "$as_me:22821: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:22686: \"$ac_try\"") >&5 + { (eval echo "$as_me:22824: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:22689: \$? = $ac_status" >&5 + echo "$as_me:22827: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_gpm_Gpm_Open=yes else @@ -22697,10 +22835,10 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:22700: result: $ac_cv_lib_gpm_Gpm_Open" >&5 +echo "$as_me:22838: 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:22703: checking for initscr in -lgpm" >&5 + echo "$as_me:22841: 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 @@ -22708,7 +22846,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lgpm $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 22711 "configure" +#line 22849 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -22727,16 +22865,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:22868: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:22733: \$? = $ac_status" >&5 + echo "$as_me:22871: \$? = $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:22874: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:22739: \$? = $ac_status" >&5 + echo "$as_me:22877: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_gpm_initscr=yes else @@ -22747,7 +22885,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:22750: result: $ac_cv_lib_gpm_initscr" >&5 +echo "$as_me:22888: 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" @@ -22762,7 +22900,7 @@ case $host_os in # This is only necessary if you are linking against an obsolete # version of ncurses (but it should do no harm, since it's static). if test "$cf_nculib_root" = ncurses ; then - echo "$as_me:22765: checking for tgoto in -lmytinfo" >&5 + echo "$as_me:22903: 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 @@ -22770,7 +22908,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lmytinfo $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 22773 "configure" +#line 22911 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -22789,16 +22927,16 @@ tgoto (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:22792: \"$ac_link\"") >&5 +if { (eval echo "$as_me:22930: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:22795: \$? = $ac_status" >&5 + echo "$as_me:22933: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:22798: \"$ac_try\"") >&5 + { (eval echo "$as_me:22936: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:22801: \$? = $ac_status" >&5 + echo "$as_me:22939: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_mytinfo_tgoto=yes else @@ -22809,7 +22947,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:22812: result: $ac_cv_lib_mytinfo_tgoto" >&5 +echo "$as_me:22950: 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" @@ -22858,13 +22996,13 @@ else eval 'cf_cv_have_lib_'$cf_nculib_root'=no' cf_libdir="" - echo "$as_me:22861: checking for initscr" >&5 + echo "$as_me:22999: 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 22867 "configure" +#line 23005 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char initscr (); below. */ @@ -22895,16 +23033,16 @@ f = initscr; /* workaround for ICC 12.0.3 */ if (f == 0) return 1; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:22898: \"$ac_link\"") >&5 +if { (eval echo "$as_me:23036: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:22901: \$? = $ac_status" >&5 + echo "$as_me:23039: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:22904: \"$ac_try\"") >&5 + { (eval echo "$as_me:23042: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:22907: \$? = $ac_status" >&5 + echo "$as_me:23045: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_initscr=yes else @@ -22914,18 +23052,18 @@ ac_cv_func_initscr=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:22917: result: $ac_cv_func_initscr" >&5 +echo "$as_me:23055: 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:22924: checking for initscr in -l$cf_nculib_root" >&5 + echo "$as_me:23062: 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 22928 "configure" +#line 23066 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> int @@ -22937,25 +23075,25 @@ initscr() } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:22940: \"$ac_link\"") >&5 +if { (eval echo "$as_me:23078: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:22943: \$? = $ac_status" >&5 + echo "$as_me:23081: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:22946: \"$ac_try\"") >&5 + { (eval echo "$as_me:23084: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:22949: \$? = $ac_status" >&5 + echo "$as_me:23087: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:22951: result: yes" >&5 + echo "$as_me:23089: 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:22958: result: no" >&5 +echo "$as_me:23096: result: no" >&5 echo "${ECHO_T}no" >&6 cf_search= @@ -23023,11 +23161,11 @@ cf_search="$cf_library_path_list $cf_search" for cf_libdir in $cf_search do - echo "$as_me:23026: checking for -l$cf_nculib_root in $cf_libdir" >&5 + echo "$as_me:23164: 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 23030 "configure" +#line 23168 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> int @@ -23039,25 +23177,25 @@ initscr() } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:23042: \"$ac_link\"") >&5 +if { (eval echo "$as_me:23180: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:23045: \$? = $ac_status" >&5 + echo "$as_me:23183: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:23048: \"$ac_try\"") >&5 + { (eval echo "$as_me:23186: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23051: \$? = $ac_status" >&5 + echo "$as_me:23189: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:23053: result: yes" >&5 + echo "$as_me:23191: 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:23060: result: no" >&5 +echo "$as_me:23198: result: no" >&5 echo "${ECHO_T}no" >&6 LIBS="$cf_save_LIBS" fi @@ -23072,7 +23210,7 @@ fi eval 'cf_found_library=$cf_cv_have_lib_'$cf_nculib_root if test $cf_found_library = no ; then - { { echo "$as_me:23075: error: Cannot link $cf_nculib_root library" >&5 + { { echo "$as_me:23213: error: Cannot link $cf_nculib_root library" >&5 echo "$as_me: error: Cannot link $cf_nculib_root library" >&2;} { (exit 1); exit 1; }; } fi @@ -23080,7 +23218,7 @@ fi fi if test -n "$cf_ncurses_LIBS" ; then - echo "$as_me:23083: checking if we can link $cf_nculib_root without $cf_ncurses_LIBS" >&5 + echo "$as_me:23221: 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 @@ -23090,7 +23228,7 @@ echo $ECHO_N "checking if we can link $cf_nculib_root without $cf_ncurses_LIBS.. fi done cat >conftest.$ac_ext <<_ACEOF -#line 23093 "configure" +#line 23231 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> int @@ -23102,23 +23240,23 @@ initscr(); mousemask(0,0); tgoto((char *)0, 0, 0); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:23105: \"$ac_link\"") >&5 +if { (eval echo "$as_me:23243: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:23108: \$? = $ac_status" >&5 + echo "$as_me:23246: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:23111: \"$ac_try\"") >&5 + { (eval echo "$as_me:23249: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23114: \$? = $ac_status" >&5 + echo "$as_me:23252: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:23116: result: yes" >&5 + echo "$as_me:23254: result: yes" >&5 echo "${ECHO_T}yes" >&6 else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 -echo "$as_me:23121: result: no" >&5 +echo "$as_me:23259: result: no" >&5 echo "${ECHO_T}no" >&6 LIBS="$cf_ncurses_SAVE" fi @@ -23150,7 +23288,7 @@ fi ;; (slang) -echo "$as_me:23153: checking for slang header file" >&5 +echo "$as_me:23291: 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 @@ -23158,7 +23296,7 @@ else cf_cv_slang_header=no cat >conftest.$ac_ext <<_ACEOF -#line 23161 "configure" +#line 23299 "configure" #include "confdefs.h" #include <slang.h> int @@ -23170,16 +23308,16 @@ printf("%s\n", SLANG_VERSION) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:23173: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:23311: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:23176: \$? = $ac_status" >&5 + echo "$as_me:23314: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:23179: \"$ac_try\"") >&5 + { (eval echo "$as_me:23317: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23182: \$? = $ac_status" >&5 + echo "$as_me:23320: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_slang_header=predefined else @@ -23284,7 +23422,7 @@ cf_search="$cf_search $cf_header_path_list" fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:23287: result: $cf_cv_slang_header" >&5 +echo "$as_me:23425: result: $cf_cv_slang_header" >&5 echo "${ECHO_T}$cf_cv_slang_header" >&6 if test "x$cf_cv_slang_header" != xno @@ -23325,7 +23463,7 @@ if test -n "$cf_incdir" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 23328 "configure" +#line 23466 "configure" #include "confdefs.h" #include <stdio.h> int @@ -23337,16 +23475,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:23340: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:23478: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:23343: \$? = $ac_status" >&5 + echo "$as_me:23481: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:23346: \"$ac_try\"") >&5 + { (eval echo "$as_me:23484: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23349: \$? = $ac_status" >&5 + echo "$as_me:23487: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -23363,7 +23501,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}:23366: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:23504: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -23395,7 +23533,7 @@ else cf_cv_termlib=none cat >conftest.$ac_ext <<_ACEOF -#line 23398 "configure" +#line 23536 "configure" #include "confdefs.h" int @@ -23407,19 +23545,19 @@ char *x=(char*)tgoto("",0,0) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:23410: \"$ac_link\"") >&5 +if { (eval echo "$as_me:23548: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:23413: \$? = $ac_status" >&5 + echo "$as_me:23551: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:23416: \"$ac_try\"") >&5 + { (eval echo "$as_me:23554: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23419: \$? = $ac_status" >&5 + echo "$as_me:23557: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cat >conftest.$ac_ext <<_ACEOF -#line 23422 "configure" +#line 23560 "configure" #include "confdefs.h" int @@ -23431,16 +23569,16 @@ int x=tigetstr("") } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:23434: \"$ac_link\"") >&5 +if { (eval echo "$as_me:23572: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:23437: \$? = $ac_status" >&5 + echo "$as_me:23575: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:23440: \"$ac_try\"") >&5 + { (eval echo "$as_me:23578: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23443: \$? = $ac_status" >&5 + echo "$as_me:23581: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_termlib=terminfo else @@ -23451,7 +23589,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}:23454: testing using functions in predefined $cf_cv_termlib LIBS ..." 1>&5 +echo "${as_me:-configure}:23592: testing using functions in predefined $cf_cv_termlib LIBS ..." 1>&5 else echo "$as_me: failed program was:" >&5 @@ -23466,10 +23604,10 @@ if test "$cf_cv_termlib" = none; then LIBS="-l$cf_lib $cf_save_LIBS" for cf_func in tigetstr tgetstr do - echo "$as_me:23469: checking for $cf_func in -l$cf_lib" >&5 + echo "$as_me:23607: 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 23472 "configure" +#line 23610 "configure" #include "confdefs.h" int @@ -23481,16 +23619,16 @@ int x=$cf_func("") } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:23484: \"$ac_link\"") >&5 +if { (eval echo "$as_me:23622: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:23487: \$? = $ac_status" >&5 + echo "$as_me:23625: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:23490: \"$ac_try\"") >&5 + { (eval echo "$as_me:23628: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23493: \$? = $ac_status" >&5 + echo "$as_me:23631: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_result=yes else @@ -23499,7 +23637,7 @@ cat conftest.$ac_ext >&5 cf_result=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext - echo "$as_me:23502: result: $cf_result" >&5 + echo "$as_me:23640: result: $cf_result" >&5 echo "${ECHO_T}$cf_result" >&6 if test "$cf_result" = yes ; then if test "$cf_func" = tigetstr ; then @@ -23516,7 +23654,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:23519: checking for initscr in -lcurses" >&5 + echo "$as_me:23657: 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 @@ -23524,7 +23662,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lcurses $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 23527 "configure" +#line 23665 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -23543,16 +23681,16 @@ initscr (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:23546: \"$ac_link\"") >&5 +if { (eval echo "$as_me:23684: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:23549: \$? = $ac_status" >&5 + echo "$as_me:23687: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:23552: \"$ac_try\"") >&5 + { (eval echo "$as_me:23690: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23555: \$? = $ac_status" >&5 + echo "$as_me:23693: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_curses_initscr=yes else @@ -23563,7 +23701,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:23566: result: $ac_cv_lib_curses_initscr" >&5 +echo "$as_me:23704: 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 @@ -23585,7 +23723,7 @@ LIBS="$cf_add_libs" fi - echo "$as_me:23588: checking for tgoto in -ltermcap" >&5 + echo "$as_me:23726: 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 @@ -23593,7 +23731,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-ltermcap $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 23596 "configure" +#line 23734 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -23612,16 +23750,16 @@ tgoto (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:23615: \"$ac_link\"") >&5 +if { (eval echo "$as_me:23753: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:23618: \$? = $ac_status" >&5 + echo "$as_me:23756: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:23621: \"$ac_try\"") >&5 + { (eval echo "$as_me:23759: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23624: \$? = $ac_status" >&5 + echo "$as_me:23762: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_termcap_tgoto=yes else @@ -23632,7 +23770,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:23635: result: $ac_cv_lib_termcap_tgoto" >&5 +echo "$as_me:23773: 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 @@ -23659,20 +23797,20 @@ fi fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext if test "$cf_cv_termlib" = none; then - { echo "$as_me:23662: WARNING: Cannot find -ltermlib, -lcurses, or -ltermcap" >&5 + { echo "$as_me:23800: 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:23669: checking for acos" >&5 +echo "$as_me:23807: 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 23675 "configure" +#line 23813 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char acos (); below. */ @@ -23703,16 +23841,16 @@ f = acos; /* workaround for ICC 12.0.3 */ if (f == 0) return 1; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:23706: \"$ac_link\"") >&5 +if { (eval echo "$as_me:23844: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:23709: \$? = $ac_status" >&5 + echo "$as_me:23847: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:23712: \"$ac_try\"") >&5 + { (eval echo "$as_me:23850: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23715: \$? = $ac_status" >&5 + echo "$as_me:23853: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_acos=yes else @@ -23722,13 +23860,13 @@ ac_cv_func_acos=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:23725: result: $ac_cv_func_acos" >&5 +echo "$as_me:23863: 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:23731: checking for acos in -lm" >&5 +echo "$as_me:23869: 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 @@ -23736,7 +23874,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lm $LIBS $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 23739 "configure" +#line 23877 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -23755,16 +23893,16 @@ acos (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:23758: \"$ac_link\"") >&5 +if { (eval echo "$as_me:23896: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:23761: \$? = $ac_status" >&5 + echo "$as_me:23899: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:23764: \"$ac_try\"") >&5 + { (eval echo "$as_me:23902: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23767: \$? = $ac_status" >&5 + echo "$as_me:23905: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_m_acos=yes else @@ -23775,7 +23913,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:23778: result: $ac_cv_lib_m_acos" >&5 +echo "$as_me:23916: 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 @@ -23801,13 +23939,13 @@ case $host_os in eval 'cf_cv_have_lib_'video'=no' cf_libdir="" - echo "$as_me:23804: checking for v_init" >&5 + echo "$as_me:23942: 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 23810 "configure" +#line 23948 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char v_init (); below. */ @@ -23838,16 +23976,16 @@ f = v_init; /* workaround for ICC 12.0.3 */ if (f == 0) return 1; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:23841: \"$ac_link\"") >&5 +if { (eval echo "$as_me:23979: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:23844: \$? = $ac_status" >&5 + echo "$as_me:23982: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:23847: \"$ac_try\"") >&5 + { (eval echo "$as_me:23985: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23850: \$? = $ac_status" >&5 + echo "$as_me:23988: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_v_init=yes else @@ -23857,18 +23995,18 @@ ac_cv_func_v_init=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:23860: result: $ac_cv_func_v_init" >&5 +echo "$as_me:23998: 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:23867: checking for v_init in -lvideo" >&5 + echo "$as_me:24005: 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 23871 "configure" +#line 24009 "configure" #include "confdefs.h" #include <sys/video.h> int @@ -23880,25 +24018,25 @@ v_init() } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:23883: \"$ac_link\"") >&5 +if { (eval echo "$as_me:24021: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:23886: \$? = $ac_status" >&5 + echo "$as_me:24024: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:23889: \"$ac_try\"") >&5 + { (eval echo "$as_me:24027: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23892: \$? = $ac_status" >&5 + echo "$as_me:24030: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:23894: result: yes" >&5 + echo "$as_me:24032: 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:23901: result: no" >&5 +echo "$as_me:24039: result: no" >&5 echo "${ECHO_T}no" >&6 cf_search= @@ -23966,11 +24104,11 @@ cf_search="$cf_library_path_list $cf_search" for cf_libdir in $cf_search do - echo "$as_me:23969: checking for -lvideo in $cf_libdir" >&5 + echo "$as_me:24107: 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 23973 "configure" +#line 24111 "configure" #include "confdefs.h" #include <sys/video.h> int @@ -23982,25 +24120,25 @@ v_init() } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:23985: \"$ac_link\"") >&5 +if { (eval echo "$as_me:24123: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:23988: \$? = $ac_status" >&5 + echo "$as_me:24126: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:23991: \"$ac_try\"") >&5 + { (eval echo "$as_me:24129: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23994: \$? = $ac_status" >&5 + echo "$as_me:24132: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:23996: result: yes" >&5 + echo "$as_me:24134: 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:24003: result: no" >&5 +echo "$as_me:24141: result: no" >&5 echo "${ECHO_T}no" >&6 LIBS="$cf_save_LIBS" fi @@ -24015,7 +24153,7 @@ fi eval 'cf_found_library=$cf_cv_have_lib_'video if test $cf_found_library = no ; then - { { echo "$as_me:24018: error: Cannot link video library" >&5 + { { echo "$as_me:24156: error: Cannot link video library" >&5 echo "$as_me: error: Cannot link video library" >&2;} { (exit 1); exit 1; }; } fi @@ -24025,13 +24163,13 @@ esac eval 'cf_cv_have_lib_'slang'=no' cf_libdir="" - echo "$as_me:24028: checking for SLtt_get_screen_size" >&5 + echo "$as_me:24166: 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 24034 "configure" +#line 24172 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char SLtt_get_screen_size (); below. */ @@ -24062,16 +24200,16 @@ f = SLtt_get_screen_size; /* workaround for ICC 12.0.3 */ if (f == 0) return 1; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:24065: \"$ac_link\"") >&5 +if { (eval echo "$as_me:24203: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:24068: \$? = $ac_status" >&5 + echo "$as_me:24206: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:24071: \"$ac_try\"") >&5 + { (eval echo "$as_me:24209: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:24074: \$? = $ac_status" >&5 + echo "$as_me:24212: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_SLtt_get_screen_size=yes else @@ -24081,18 +24219,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:24084: result: $ac_cv_func_SLtt_get_screen_size" >&5 +echo "$as_me:24222: 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:24091: checking for SLtt_get_screen_size in -lslang" >&5 + echo "$as_me:24229: 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 24095 "configure" +#line 24233 "configure" #include "confdefs.h" #include <slang.h> int @@ -24104,25 +24242,25 @@ SLtt_get_screen_size() } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:24107: \"$ac_link\"") >&5 +if { (eval echo "$as_me:24245: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:24110: \$? = $ac_status" >&5 + echo "$as_me:24248: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:24113: \"$ac_try\"") >&5 + { (eval echo "$as_me:24251: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:24116: \$? = $ac_status" >&5 + echo "$as_me:24254: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:24118: result: yes" >&5 + echo "$as_me:24256: 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:24125: result: no" >&5 +echo "$as_me:24263: result: no" >&5 echo "${ECHO_T}no" >&6 cf_search= @@ -24190,11 +24328,11 @@ cf_search="$cf_library_path_list $cf_search" for cf_libdir in $cf_search do - echo "$as_me:24193: checking for -lslang in $cf_libdir" >&5 + echo "$as_me:24331: 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 24197 "configure" +#line 24335 "configure" #include "confdefs.h" #include <slang.h> int @@ -24206,25 +24344,25 @@ SLtt_get_screen_size() } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:24209: \"$ac_link\"") >&5 +if { (eval echo "$as_me:24347: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:24212: \$? = $ac_status" >&5 + echo "$as_me:24350: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:24215: \"$ac_try\"") >&5 + { (eval echo "$as_me:24353: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:24218: \$? = $ac_status" >&5 + echo "$as_me:24356: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:24220: result: yes" >&5 + echo "$as_me:24358: 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:24227: result: no" >&5 +echo "$as_me:24365: result: no" >&5 echo "${ECHO_T}no" >&6 LIBS="$cf_save_LIBS" fi @@ -24239,13 +24377,13 @@ fi eval 'cf_found_library=$cf_cv_have_lib_'slang if test $cf_found_library = no ; then - { { echo "$as_me:24242: error: Cannot link slang library" >&5 + { { echo "$as_me:24380: 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:24248: checking if we can link slang without termcap" >&5 +echo "$as_me:24386: 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%^.%%'` @@ -24254,7 +24392,7 @@ else fi LIBS=`echo ".$cf_slang_LIBS3" | sed -e "s%$cf_exclude%%" -e 's%^.%%'` cat >conftest.$ac_ext <<_ACEOF -#line 24257 "configure" +#line 24395 "configure" #include "confdefs.h" #include <slang.h> int @@ -24266,16 +24404,16 @@ SLtt_get_screen_size() } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:24269: \"$ac_link\"") >&5 +if { (eval echo "$as_me:24407: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:24272: \$? = $ac_status" >&5 + echo "$as_me:24410: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:24275: \"$ac_try\"") >&5 + { (eval echo "$as_me:24413: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:24278: \$? = $ac_status" >&5 + echo "$as_me:24416: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_result=yes else @@ -24284,13 +24422,13 @@ cat conftest.$ac_ext >&5 cf_result=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext -echo "$as_me:24287: result: $cf_result" >&5 +echo "$as_me:24425: result: $cf_result" >&5 echo "${ECHO_T}$cf_result" >&6 test $cf_result = no && LIBS="$cf_slang_LIBS3" else -echo "$as_me:24293: checking for slang2 header file" >&5 +echo "$as_me:24431: 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 @@ -24298,7 +24436,7 @@ else cf_cv_slang2_header=no cat >conftest.$ac_ext <<_ACEOF -#line 24301 "configure" +#line 24439 "configure" #include "confdefs.h" #include <slang.h> int @@ -24310,16 +24448,16 @@ printf("%s\n", SLANG_VERSION) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:24313: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:24451: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:24316: \$? = $ac_status" >&5 + echo "$as_me:24454: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:24319: \"$ac_try\"") >&5 + { (eval echo "$as_me:24457: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:24322: \$? = $ac_status" >&5 + echo "$as_me:24460: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_slang2_header=predefined else @@ -24424,7 +24562,7 @@ cf_search="$cf_search $cf_header_path_list" fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:24427: result: $cf_cv_slang2_header" >&5 +echo "$as_me:24565: result: $cf_cv_slang2_header" >&5 echo "${ECHO_T}$cf_cv_slang2_header" >&6 if test "x$cf_cv_slang2_header" != xno @@ -24465,7 +24603,7 @@ if test -n "$cf_incdir" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 24468 "configure" +#line 24606 "configure" #include "confdefs.h" #include <stdio.h> int @@ -24477,16 +24615,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:24480: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:24618: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:24483: \$? = $ac_status" >&5 + echo "$as_me:24621: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:24486: \"$ac_try\"") >&5 + { (eval echo "$as_me:24624: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:24489: \$? = $ac_status" >&5 + echo "$as_me:24627: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -24503,7 +24641,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}:24506: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:24644: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -24535,7 +24673,7 @@ else cf_cv_termlib=none cat >conftest.$ac_ext <<_ACEOF -#line 24538 "configure" +#line 24676 "configure" #include "confdefs.h" int @@ -24547,19 +24685,19 @@ char *x=(char*)tgoto("",0,0) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:24550: \"$ac_link\"") >&5 +if { (eval echo "$as_me:24688: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:24553: \$? = $ac_status" >&5 + echo "$as_me:24691: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:24556: \"$ac_try\"") >&5 + { (eval echo "$as_me:24694: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:24559: \$? = $ac_status" >&5 + echo "$as_me:24697: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cat >conftest.$ac_ext <<_ACEOF -#line 24562 "configure" +#line 24700 "configure" #include "confdefs.h" int @@ -24571,16 +24709,16 @@ int x=tigetstr("") } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:24574: \"$ac_link\"") >&5 +if { (eval echo "$as_me:24712: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:24577: \$? = $ac_status" >&5 + echo "$as_me:24715: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:24580: \"$ac_try\"") >&5 + { (eval echo "$as_me:24718: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:24583: \$? = $ac_status" >&5 + echo "$as_me:24721: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_termlib=terminfo else @@ -24591,7 +24729,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}:24594: testing using functions in predefined $cf_cv_termlib LIBS ..." 1>&5 +echo "${as_me:-configure}:24732: testing using functions in predefined $cf_cv_termlib LIBS ..." 1>&5 else echo "$as_me: failed program was:" >&5 @@ -24606,10 +24744,10 @@ if test "$cf_cv_termlib" = none; then LIBS="-l$cf_lib $cf_save_LIBS" for cf_func in tigetstr tgetstr do - echo "$as_me:24609: checking for $cf_func in -l$cf_lib" >&5 + echo "$as_me:24747: 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 24612 "configure" +#line 24750 "configure" #include "confdefs.h" int @@ -24621,16 +24759,16 @@ int x=$cf_func("") } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:24624: \"$ac_link\"") >&5 +if { (eval echo "$as_me:24762: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:24627: \$? = $ac_status" >&5 + echo "$as_me:24765: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:24630: \"$ac_try\"") >&5 + { (eval echo "$as_me:24768: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:24633: \$? = $ac_status" >&5 + echo "$as_me:24771: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_result=yes else @@ -24639,7 +24777,7 @@ cat conftest.$ac_ext >&5 cf_result=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext - echo "$as_me:24642: result: $cf_result" >&5 + echo "$as_me:24780: result: $cf_result" >&5 echo "${ECHO_T}$cf_result" >&6 if test "$cf_result" = yes ; then if test "$cf_func" = tigetstr ; then @@ -24656,7 +24794,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:24659: checking for initscr in -lcurses" >&5 + echo "$as_me:24797: 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 @@ -24664,7 +24802,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lcurses $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 24667 "configure" +#line 24805 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -24683,16 +24821,16 @@ initscr (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:24686: \"$ac_link\"") >&5 +if { (eval echo "$as_me:24824: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:24689: \$? = $ac_status" >&5 + echo "$as_me:24827: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:24692: \"$ac_try\"") >&5 + { (eval echo "$as_me:24830: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:24695: \$? = $ac_status" >&5 + echo "$as_me:24833: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_curses_initscr=yes else @@ -24703,7 +24841,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:24706: result: $ac_cv_lib_curses_initscr" >&5 +echo "$as_me:24844: 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 @@ -24725,7 +24863,7 @@ LIBS="$cf_add_libs" fi - echo "$as_me:24728: checking for tgoto in -ltermcap" >&5 + echo "$as_me:24866: 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 @@ -24733,7 +24871,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-ltermcap $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 24736 "configure" +#line 24874 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -24752,16 +24890,16 @@ tgoto (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:24755: \"$ac_link\"") >&5 +if { (eval echo "$as_me:24893: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:24758: \$? = $ac_status" >&5 + echo "$as_me:24896: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:24761: \"$ac_try\"") >&5 + { (eval echo "$as_me:24899: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:24764: \$? = $ac_status" >&5 + echo "$as_me:24902: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_termcap_tgoto=yes else @@ -24772,7 +24910,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:24775: result: $ac_cv_lib_termcap_tgoto" >&5 +echo "$as_me:24913: 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 @@ -24799,20 +24937,20 @@ fi fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext if test "$cf_cv_termlib" = none; then - { echo "$as_me:24802: WARNING: Cannot find -ltermlib, -lcurses, or -ltermcap" >&5 + { echo "$as_me:24940: 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:24809: checking for acos" >&5 +echo "$as_me:24947: 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 24815 "configure" +#line 24953 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char acos (); below. */ @@ -24843,16 +24981,16 @@ f = acos; /* workaround for ICC 12.0.3 */ if (f == 0) return 1; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:24846: \"$ac_link\"") >&5 +if { (eval echo "$as_me:24984: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:24849: \$? = $ac_status" >&5 + echo "$as_me:24987: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:24852: \"$ac_try\"") >&5 + { (eval echo "$as_me:24990: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:24855: \$? = $ac_status" >&5 + echo "$as_me:24993: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_acos=yes else @@ -24862,13 +25000,13 @@ ac_cv_func_acos=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:24865: result: $ac_cv_func_acos" >&5 +echo "$as_me:25003: 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:24871: checking for acos in -lm" >&5 +echo "$as_me:25009: 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 @@ -24876,7 +25014,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lm $LIBS $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 24879 "configure" +#line 25017 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -24895,16 +25033,16 @@ acos (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:24898: \"$ac_link\"") >&5 +if { (eval echo "$as_me:25036: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:24901: \$? = $ac_status" >&5 + echo "$as_me:25039: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:24904: \"$ac_try\"") >&5 + { (eval echo "$as_me:25042: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:24907: \$? = $ac_status" >&5 + echo "$as_me:25045: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_m_acos=yes else @@ -24915,7 +25053,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:24918: result: $ac_cv_lib_m_acos" >&5 +echo "$as_me:25056: 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 @@ -24941,13 +25079,13 @@ case $host_os in eval 'cf_cv_have_lib_'video'=no' cf_libdir="" - echo "$as_me:24944: checking for v_init" >&5 + echo "$as_me:25082: 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 24950 "configure" +#line 25088 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char v_init (); below. */ @@ -24978,16 +25116,16 @@ f = v_init; /* workaround for ICC 12.0.3 */ if (f == 0) return 1; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:24981: \"$ac_link\"") >&5 +if { (eval echo "$as_me:25119: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:24984: \$? = $ac_status" >&5 + echo "$as_me:25122: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:24987: \"$ac_try\"") >&5 + { (eval echo "$as_me:25125: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:24990: \$? = $ac_status" >&5 + echo "$as_me:25128: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_v_init=yes else @@ -24997,18 +25135,18 @@ ac_cv_func_v_init=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:25000: result: $ac_cv_func_v_init" >&5 +echo "$as_me:25138: 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:25007: checking for v_init in -lvideo" >&5 + echo "$as_me:25145: 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 25011 "configure" +#line 25149 "configure" #include "confdefs.h" #include <sys/video.h> int @@ -25020,25 +25158,25 @@ v_init() } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:25023: \"$ac_link\"") >&5 +if { (eval echo "$as_me:25161: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:25026: \$? = $ac_status" >&5 + echo "$as_me:25164: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:25029: \"$ac_try\"") >&5 + { (eval echo "$as_me:25167: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25032: \$? = $ac_status" >&5 + echo "$as_me:25170: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:25034: result: yes" >&5 + echo "$as_me:25172: 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:25041: result: no" >&5 +echo "$as_me:25179: result: no" >&5 echo "${ECHO_T}no" >&6 cf_search= @@ -25106,11 +25244,11 @@ cf_search="$cf_library_path_list $cf_search" for cf_libdir in $cf_search do - echo "$as_me:25109: checking for -lvideo in $cf_libdir" >&5 + echo "$as_me:25247: 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 25113 "configure" +#line 25251 "configure" #include "confdefs.h" #include <sys/video.h> int @@ -25122,25 +25260,25 @@ v_init() } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:25125: \"$ac_link\"") >&5 +if { (eval echo "$as_me:25263: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:25128: \$? = $ac_status" >&5 + echo "$as_me:25266: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:25131: \"$ac_try\"") >&5 + { (eval echo "$as_me:25269: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25134: \$? = $ac_status" >&5 + echo "$as_me:25272: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:25136: result: yes" >&5 + echo "$as_me:25274: 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:25143: result: no" >&5 +echo "$as_me:25281: result: no" >&5 echo "${ECHO_T}no" >&6 LIBS="$cf_save_LIBS" fi @@ -25155,7 +25293,7 @@ fi eval 'cf_found_library=$cf_cv_have_lib_'video if test $cf_found_library = no ; then - { { echo "$as_me:25158: error: Cannot link video library" >&5 + { { echo "$as_me:25296: error: Cannot link video library" >&5 echo "$as_me: error: Cannot link video library" >&2;} { (exit 1); exit 1; }; } fi @@ -25165,13 +25303,13 @@ esac eval 'cf_cv_have_lib_'slang2'=no' cf_libdir="" - echo "$as_me:25168: checking for SLtt_get_screen_size" >&5 + echo "$as_me:25306: 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 25174 "configure" +#line 25312 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char SLtt_get_screen_size (); below. */ @@ -25202,16 +25340,16 @@ f = SLtt_get_screen_size; /* workaround for ICC 12.0.3 */ if (f == 0) return 1; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:25205: \"$ac_link\"") >&5 +if { (eval echo "$as_me:25343: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:25208: \$? = $ac_status" >&5 + echo "$as_me:25346: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:25211: \"$ac_try\"") >&5 + { (eval echo "$as_me:25349: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25214: \$? = $ac_status" >&5 + echo "$as_me:25352: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_SLtt_get_screen_size=yes else @@ -25221,18 +25359,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:25224: result: $ac_cv_func_SLtt_get_screen_size" >&5 +echo "$as_me:25362: 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:25231: checking for SLtt_get_screen_size in -lslang2" >&5 + echo "$as_me:25369: 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 25235 "configure" +#line 25373 "configure" #include "confdefs.h" #include <slang.h> int @@ -25244,25 +25382,25 @@ SLtt_get_screen_size() } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:25247: \"$ac_link\"") >&5 +if { (eval echo "$as_me:25385: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:25250: \$? = $ac_status" >&5 + echo "$as_me:25388: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:25253: \"$ac_try\"") >&5 + { (eval echo "$as_me:25391: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25256: \$? = $ac_status" >&5 + echo "$as_me:25394: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:25258: result: yes" >&5 + echo "$as_me:25396: 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:25265: result: no" >&5 +echo "$as_me:25403: result: no" >&5 echo "${ECHO_T}no" >&6 cf_search= @@ -25330,11 +25468,11 @@ cf_search="$cf_library_path_list $cf_search" for cf_libdir in $cf_search do - echo "$as_me:25333: checking for -lslang2 in $cf_libdir" >&5 + echo "$as_me:25471: 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 25337 "configure" +#line 25475 "configure" #include "confdefs.h" #include <slang.h> int @@ -25346,25 +25484,25 @@ SLtt_get_screen_size() } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:25349: \"$ac_link\"") >&5 +if { (eval echo "$as_me:25487: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:25352: \$? = $ac_status" >&5 + echo "$as_me:25490: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:25355: \"$ac_try\"") >&5 + { (eval echo "$as_me:25493: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25358: \$? = $ac_status" >&5 + echo "$as_me:25496: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:25360: result: yes" >&5 + echo "$as_me:25498: 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:25367: result: no" >&5 +echo "$as_me:25505: result: no" >&5 echo "${ECHO_T}no" >&6 LIBS="$cf_save_LIBS" fi @@ -25379,13 +25517,13 @@ fi eval 'cf_found_library=$cf_cv_have_lib_'slang2 if test $cf_found_library = no ; then - { { echo "$as_me:25382: error: Cannot link slang2 library" >&5 + { { echo "$as_me:25520: 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:25388: checking if we can link slang2 without termcap" >&5 +echo "$as_me:25526: 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%^.%%'` @@ -25394,7 +25532,7 @@ else fi LIBS=`echo ".$cf_slang_LIBS3" | sed -e "s%$cf_exclude%%" -e 's%^.%%'` cat >conftest.$ac_ext <<_ACEOF -#line 25397 "configure" +#line 25535 "configure" #include "confdefs.h" #include <slang.h> int @@ -25406,16 +25544,16 @@ SLtt_get_screen_size() } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:25409: \"$ac_link\"") >&5 +if { (eval echo "$as_me:25547: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:25412: \$? = $ac_status" >&5 + echo "$as_me:25550: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:25415: \"$ac_try\"") >&5 + { (eval echo "$as_me:25553: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25418: \$? = $ac_status" >&5 + echo "$as_me:25556: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_result=yes else @@ -25424,12 +25562,12 @@ cat conftest.$ac_ext >&5 cf_result=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext -echo "$as_me:25427: result: $cf_result" >&5 +echo "$as_me:25565: result: $cf_result" >&5 echo "${ECHO_T}$cf_result" >&6 test $cf_result = no && LIBS="$cf_slang_LIBS3" else - { { echo "$as_me:25432: error: cannot find slang headers" >&5 + { { echo "$as_me:25570: error: cannot find slang headers" >&5 echo "$as_me: error: cannot find slang headers" >&2;} { (exit 1); exit 1; }; } fi @@ -25437,14 +25575,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:25440: checking if we must define UTF8" >&5 +echo "$as_me:25578: 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 25447 "configure" +#line 25585 "configure" #include "confdefs.h" #include <slang.h> int @@ -25456,16 +25594,16 @@ SLtt_get_screen_size() } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:25459: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:25597: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:25462: \$? = $ac_status" >&5 + echo "$as_me:25600: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:25465: \"$ac_try\"") >&5 + { (eval echo "$as_me:25603: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25468: \$? = $ac_status" >&5 + echo "$as_me:25606: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_slang_utf8=no else @@ -25473,7 +25611,7 @@ else cat conftest.$ac_ext >&5 cat >conftest.$ac_ext <<_ACEOF -#line 25476 "configure" +#line 25614 "configure" #include "confdefs.h" #define UTF8 @@ -25487,16 +25625,16 @@ SLtt_get_screen_size() } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:25490: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:25628: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:25493: \$? = $ac_status" >&5 + echo "$as_me:25631: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:25496: \"$ac_try\"") >&5 + { (eval echo "$as_me:25634: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25499: \$? = $ac_status" >&5 + echo "$as_me:25637: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_slang_utf8=yes else @@ -25509,7 +25647,7 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:25512: result: $cf_cv_slang_utf8" >&5 +echo "$as_me:25650: result: $cf_cv_slang_utf8" >&5 echo "${ECHO_T}$cf_cv_slang_utf8" >&6 if test "$cf_cv_slang_utf8" = yes ; then @@ -25520,14 +25658,14 @@ EOF fi -echo "$as_me:25523: checking if we must tell slang this is UNIX" >&5 +echo "$as_me:25661: 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 25530 "configure" +#line 25668 "configure" #include "confdefs.h" #include <slang.h> int @@ -25546,16 +25684,16 @@ SLang_TT_Baud_Rate = 1 } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:25549: \"$ac_link\"") >&5 +if { (eval echo "$as_me:25687: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:25552: \$? = $ac_status" >&5 + echo "$as_me:25690: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:25555: \"$ac_try\"") >&5 + { (eval echo "$as_me:25693: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25558: \$? = $ac_status" >&5 + echo "$as_me:25696: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_slang_unix=yes else @@ -25566,20 +25704,20 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:25569: result: $cf_cv_slang_unix" >&5 +echo "$as_me:25707: 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:25576: checking for SLsmg_Color_Type" >&5 + echo "$as_me:25714: 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 25582 "configure" +#line 25720 "configure" #include "confdefs.h" #include <slang.h> @@ -25595,16 +25733,16 @@ if (sizeof (SLsmg_Color_Type)) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:25598: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:25736: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:25601: \$? = $ac_status" >&5 + echo "$as_me:25739: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:25604: \"$ac_try\"") >&5 + { (eval echo "$as_me:25742: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25607: \$? = $ac_status" >&5 + echo "$as_me:25745: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_type_SLsmg_Color_Type=yes else @@ -25614,7 +25752,7 @@ ac_cv_type_SLsmg_Color_Type=no fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:25617: result: $ac_cv_type_SLsmg_Color_Type" >&5 +echo "$as_me:25755: 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 @@ -25630,13 +25768,13 @@ EOF fi - echo "$as_me:25633: checking for SLtt_Char_Type" >&5 + echo "$as_me:25771: 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 25639 "configure" +#line 25777 "configure" #include "confdefs.h" #include <slang.h> @@ -25652,16 +25790,16 @@ if (sizeof (SLtt_Char_Type)) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:25655: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:25793: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:25658: \$? = $ac_status" >&5 + echo "$as_me:25796: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:25661: \"$ac_try\"") >&5 + { (eval echo "$as_me:25799: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25664: \$? = $ac_status" >&5 + echo "$as_me:25802: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_type_SLtt_Char_Type=yes else @@ -25671,7 +25809,7 @@ ac_cv_type_SLtt_Char_Type=no fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:25674: result: $ac_cv_type_SLtt_Char_Type" >&5 +echo "$as_me:25812: 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 @@ -25691,14 +25829,14 @@ fi ;; esac -echo "$as_me:25694: checking for chtype typedef" >&5 +echo "$as_me:25832: 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 25701 "configure" +#line 25839 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> int @@ -25710,16 +25848,16 @@ chtype foo } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:25713: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:25851: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:25716: \$? = $ac_status" >&5 + echo "$as_me:25854: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:25719: \"$ac_try\"") >&5 + { (eval echo "$as_me:25857: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25722: \$? = $ac_status" >&5 + echo "$as_me:25860: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_chtype_decl=yes else @@ -25729,7 +25867,7 @@ cf_cv_chtype_decl=no fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:25732: result: $cf_cv_chtype_decl" >&5 +echo "$as_me:25870: result: $cf_cv_chtype_decl" >&5 echo "${ECHO_T}$cf_cv_chtype_decl" >&6 if test $cf_cv_chtype_decl = yes ; then @@ -25737,14 +25875,14 @@ cat >>confdefs.h <<\EOF #define HAVE_TYPE_CHTYPE 1 EOF - echo "$as_me:25740: checking if chtype is scalar or struct" >&5 + echo "$as_me:25878: 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 25747 "configure" +#line 25885 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> int @@ -25756,16 +25894,16 @@ chtype foo; long x = foo } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:25759: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:25897: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:25762: \$? = $ac_status" >&5 + echo "$as_me:25900: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:25765: \"$ac_try\"") >&5 + { (eval echo "$as_me:25903: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25768: \$? = $ac_status" >&5 + echo "$as_me:25906: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_chtype_type=scalar else @@ -25775,7 +25913,7 @@ cf_cv_chtype_type=struct fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:25778: result: $cf_cv_chtype_type" >&5 +echo "$as_me:25916: result: $cf_cv_chtype_type" >&5 echo "${ECHO_T}$cf_cv_chtype_type" >&6 if test $cf_cv_chtype_type = scalar ; then @@ -25786,7 +25924,7 @@ EOF fi fi -echo "$as_me:25789: checking if you want the wide-curses features" >&5 +echo "$as_me:25927: 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. @@ -25803,10 +25941,10 @@ else use_wide_curses=$cf_wide_curses fi; -echo "$as_me:25806: result: $use_wide_curses" >&5 +echo "$as_me:25944: result: $use_wide_curses" >&5 echo "${ECHO_T}$use_wide_curses" >&6 -echo "$as_me:25809: checking if color-style code should be used" >&5 +echo "$as_me:25947: 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. @@ -25826,7 +25964,7 @@ fi; case $use_color_style in (no) - echo "$as_me:25829: result: no" >&5 + echo "$as_me:25967: result: no" >&5 echo "${ECHO_T}no" >&6 INSTALL_LSS= ;; @@ -25836,10 +25974,10 @@ cat >>confdefs.h <<\EOF #define USE_COLOR_STYLE 1 EOF - echo "$as_me:25839: result: yes" >&5 + echo "$as_me:25977: result: yes" >&5 echo "${ECHO_T}yes" >&6 - echo "$as_me:25842: checking for location of style-sheet file" >&5 + echo "$as_me:25980: 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. @@ -25875,7 +26013,7 @@ case ".$withval" in withval=`echo $withval | sed -e s%NONE%$cf_path_syntax%` ;; (*) - { { echo "$as_me:25878: error: expected a pathname, not \"$withval\"" >&5 + { { echo "$as_me:26016: error: expected a pathname, not \"$withval\"" >&5 echo "$as_me: error: expected a pathname, not \"$withval\"" >&2;} { (exit 1); exit 1; }; } ;; @@ -25884,7 +26022,7 @@ esac fi eval LYNX_LSS_FILE="$withval" - echo "$as_me:25887: result: $LYNX_LSS_FILE" >&5 + echo "$as_me:26025: result: $LYNX_LSS_FILE" >&5 echo "${ECHO_T}$LYNX_LSS_FILE" >&6 test "$LYNX_LSS_FILE" = no && LYNX_LSS_FILE= @@ -25897,7 +26035,7 @@ EOF ;; esac -echo "$as_me:25900: checking for the default configuration-file" >&5 +echo "$as_me:26038: 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. @@ -25933,7 +26071,7 @@ case ".$withval" in withval=`echo $withval | sed -e s%NONE%$cf_path_syntax%` ;; (*) - { { echo "$as_me:25936: error: expected a pathname, not \"$withval\"" >&5 + { { echo "$as_me:26074: error: expected a pathname, not \"$withval\"" >&5 echo "$as_me: error: expected a pathname, not \"$withval\"" >&2;} { (exit 1); exit 1; }; } ;; @@ -25942,7 +26080,7 @@ esac fi eval LYNX_CFG_FILE="$withval" -echo "$as_me:25945: result: $LYNX_CFG_FILE" >&5 +echo "$as_me:26083: result: $LYNX_CFG_FILE" >&5 echo "${ECHO_T}$LYNX_CFG_FILE" >&6 test "$LYNX_CFG_FILE" = no && LYNX_CFG_FILE= @@ -25951,7 +26089,7 @@ cat >>confdefs.h <<EOF #define LYNX_CFG_FILE "$LYNX_CFG_FILE" EOF -echo "$as_me:25954: checking for the default configuration-path" >&5 +echo "$as_me:26092: 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. @@ -25987,7 +26125,7 @@ case ".$withval" in withval=`echo $withval | sed -e s%NONE%$cf_path_syntax%` ;; (*) - { { echo "$as_me:25990: error: expected a pathname, not \"$withval\"" >&5 + { { echo "$as_me:26128: error: expected a pathname, not \"$withval\"" >&5 echo "$as_me: error: expected a pathname, not \"$withval\"" >&2;} { (exit 1); exit 1; }; } ;; @@ -25996,7 +26134,7 @@ esac fi eval LYNX_CFG_PATH="$withval" -echo "$as_me:25999: result: $LYNX_CFG_PATH" >&5 +echo "$as_me:26137: result: $LYNX_CFG_PATH" >&5 echo "${ECHO_T}$LYNX_CFG_PATH" >&6 test -z "$LYNX_CFG_PATH" && `echo "$LYNX_CFG_FILE" | sed -e 's%/[^/]*$%%'` @@ -26006,7 +26144,7 @@ cat >>confdefs.h <<EOF #define LYNX_CFG_PATH "$LYNX_CFG_PATH" EOF -echo "$as_me:26009: checking if htmlized lynx.cfg should be built" >&5 +echo "$as_me:26147: 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. @@ -26023,7 +26161,7 @@ else use_htmlized_cfg=no fi; -echo "$as_me:26026: result: $use_htmlized_cfg" >&5 +echo "$as_me:26164: result: $use_htmlized_cfg" >&5 echo "${ECHO_T}$use_htmlized_cfg" >&6 LYNXCFG_MAKE='' @@ -26031,7 +26169,7 @@ if test $use_htmlized_cfg = no ; then LYNXCFG_MAKE='#' fi -echo "$as_me:26034: checking if local doc directory should be linked to help page" >&5 +echo "$as_me:26172: 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. @@ -26048,7 +26186,7 @@ else use_local_docs=no fi; -echo "$as_me:26051: result: $use_local_docs" >&5 +echo "$as_me:26189: result: $use_local_docs" >&5 echo "${ECHO_T}$use_local_docs" >&6 LYNXDOC_MAKE='' @@ -26056,7 +26194,7 @@ if test $use_local_docs = no ; then LYNXDOC_MAKE='#' fi -echo "$as_me:26059: checking for MIME library directory" >&5 +echo "$as_me:26197: 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. @@ -26092,7 +26230,7 @@ case ".$withval" in withval=`echo $withval | sed -e s%NONE%$cf_path_syntax%` ;; (*) - { { echo "$as_me:26095: error: expected a pathname, not \"$withval\"" >&5 + { { echo "$as_me:26233: error: expected a pathname, not \"$withval\"" >&5 echo "$as_me: error: expected a pathname, not \"$withval\"" >&2;} { (exit 1); exit 1; }; } ;; @@ -26101,7 +26239,7 @@ esac fi eval MIME_LIBDIR="$withval" -echo "$as_me:26104: result: $MIME_LIBDIR" >&5 +echo "$as_me:26242: result: $MIME_LIBDIR" >&5 echo "${ECHO_T}$MIME_LIBDIR" >&6 MIME_LIBDIR=`echo "$MIME_LIBDIR" | sed -e 's,/$,,' -e 's,$,/,'` @@ -26109,7 +26247,7 @@ cat >>confdefs.h <<EOF #define MIME_LIBDIR "$MIME_LIBDIR" EOF -echo "$as_me:26112: checking if locale-charset selection logic should be used" >&5 +echo "$as_me:26250: 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. @@ -26126,7 +26264,7 @@ else use_locale_charset=yes fi; -echo "$as_me:26129: result: $use_locale_charset" >&5 +echo "$as_me:26267: result: $use_locale_charset" >&5 echo "${ECHO_T}$use_locale_charset" >&6 test $use_locale_charset != no && cat >>confdefs.h <<\EOF @@ -26135,7 +26273,7 @@ EOF CHARSET_DEFS= -echo "$as_me:26138: checking if you want only a few charsets" >&5 +echo "$as_me:26276: 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. @@ -26147,7 +26285,7 @@ else fi; if test -n "$cf_charsets" ; then - echo "$as_me:26150: result: yes" >&5 + echo "$as_me:26288: result: yes" >&5 echo "${ECHO_T}yes" >&6 cat >>confdefs.h <<\EOF @@ -26161,7 +26299,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}:26164: testing using minimal list of charsets: $cf_min_charsets ..." 1>&5 +echo "${as_me:-configure}:26302: 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'` @@ -26188,28 +26326,28 @@ echo "${as_me:-configure}:26164: testing using minimal list of charsets: $cf_min then test -n "$verbose" && echo " found $cf_charset" 1>&6 -echo "${as_me:-configure}:26191: testing found $cf_charset ..." 1>&5 +echo "${as_me:-configure}:26329: 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}:26197: testing not found $cf_charset ..." 1>&5 +echo "${as_me:-configure}:26335: testing not found $cf_charset ..." 1>&5 fi done else - echo "$as_me:26202: result: no" >&5 + echo "$as_me:26340: result: no" >&5 echo "${ECHO_T}no" >&6 fi -echo "$as_me:26206: checking for ANSI C header files" >&5 +echo "$as_me:26344: 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 26212 "configure" +#line 26350 "configure" #include "confdefs.h" #include <stdlib.h> #include <stdarg.h> @@ -26217,13 +26355,13 @@ else #include <float.h> _ACEOF -if { (eval echo "$as_me:26220: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:26358: \"$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:26226: \$? = $ac_status" >&5 + echo "$as_me:26364: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -26245,7 +26383,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 26248 "configure" +#line 26386 "configure" #include "confdefs.h" #include <string.h> @@ -26263,7 +26401,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 26266 "configure" +#line 26404 "configure" #include "confdefs.h" #include <stdlib.h> @@ -26284,7 +26422,7 @@ if test $ac_cv_header_stdc = yes; then : else cat >conftest.$ac_ext <<_ACEOF -#line 26287 "configure" +#line 26425 "configure" #include "confdefs.h" #include <ctype.h> #if ((' ' & 0x0FF) == 0x020) @@ -26310,15 +26448,15 @@ main () } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:26313: \"$ac_link\"") >&5 +if { (eval echo "$as_me:26451: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:26316: \$? = $ac_status" >&5 + echo "$as_me:26454: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:26318: \"$ac_try\"") >&5 + { (eval echo "$as_me:26456: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:26321: \$? = $ac_status" >&5 + echo "$as_me:26459: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -26331,7 +26469,7 @@ rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext fi fi fi -echo "$as_me:26334: result: $ac_cv_header_stdc" >&5 +echo "$as_me:26472: result: $ac_cv_header_stdc" >&5 echo "${ECHO_T}$ac_cv_header_stdc" >&6 if test $ac_cv_header_stdc = yes; then @@ -26341,13 +26479,13 @@ EOF fi -echo "$as_me:26344: checking whether time.h and sys/time.h may both be included" >&5 +echo "$as_me:26482: 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 26350 "configure" +#line 26488 "configure" #include "confdefs.h" #include <sys/types.h> #include <sys/time.h> @@ -26363,16 +26501,16 @@ return 0; } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:26366: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:26504: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:26369: \$? = $ac_status" >&5 + echo "$as_me:26507: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:26372: \"$ac_try\"") >&5 + { (eval echo "$as_me:26510: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:26375: \$? = $ac_status" >&5 + echo "$as_me:26513: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_header_time=yes else @@ -26382,7 +26520,7 @@ ac_cv_header_time=no fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:26385: result: $ac_cv_header_time" >&5 +echo "$as_me:26523: result: $ac_cv_header_time" >&5 echo "${ECHO_T}$ac_cv_header_time" >&6 if test $ac_cv_header_time = yes; then @@ -26395,13 +26533,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:26398: checking for $ac_hdr that defines DIR" >&5 +echo "$as_me:26536: 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 26404 "configure" +#line 26542 "configure" #include "confdefs.h" #include <sys/types.h> #include <$ac_hdr> @@ -26416,16 +26554,16 @@ return 0; } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:26419: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:26557: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:26422: \$? = $ac_status" >&5 + echo "$as_me:26560: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:26425: \"$ac_try\"") >&5 + { (eval echo "$as_me:26563: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:26428: \$? = $ac_status" >&5 + echo "$as_me:26566: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_Header=yes" else @@ -26435,7 +26573,7 @@ eval "$as_ac_Header=no" fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:26438: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:26576: 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 @@ -26448,7 +26586,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:26451: checking for opendir in -ldir" >&5 + echo "$as_me:26589: 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 @@ -26456,7 +26594,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-ldir $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 26459 "configure" +#line 26597 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -26475,16 +26613,16 @@ opendir (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:26478: \"$ac_link\"") >&5 +if { (eval echo "$as_me:26616: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:26481: \$? = $ac_status" >&5 + echo "$as_me:26619: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:26484: \"$ac_try\"") >&5 + { (eval echo "$as_me:26622: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:26487: \$? = $ac_status" >&5 + echo "$as_me:26625: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_dir_opendir=yes else @@ -26495,14 +26633,14 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:26498: result: $ac_cv_lib_dir_opendir" >&5 +echo "$as_me:26636: 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:26505: checking for opendir in -lx" >&5 + echo "$as_me:26643: 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 @@ -26510,7 +26648,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lx $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 26513 "configure" +#line 26651 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -26529,16 +26667,16 @@ opendir (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:26532: \"$ac_link\"") >&5 +if { (eval echo "$as_me:26670: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:26535: \$? = $ac_status" >&5 + echo "$as_me:26673: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:26538: \"$ac_try\"") >&5 + { (eval echo "$as_me:26676: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:26541: \$? = $ac_status" >&5 + echo "$as_me:26679: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_x_opendir=yes else @@ -26549,7 +26687,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:26552: result: $ac_cv_lib_x_opendir" >&5 +echo "$as_me:26690: 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" @@ -26577,23 +26715,23 @@ for ac_header in \ do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` -echo "$as_me:26580: checking for $ac_header" >&5 +echo "$as_me:26718: 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 26586 "configure" +#line 26724 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:26590: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:26728: \"$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:26596: \$? = $ac_status" >&5 + echo "$as_me:26734: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -26612,7 +26750,7 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:26615: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:26753: 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 @@ -26622,14 +26760,14 @@ EOF fi done -echo "$as_me:26625: checking termio.h and termios.h" >&5 +echo "$as_me:26763: 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 26632 "configure" +#line 26770 "configure" #include "confdefs.h" #if HAVE_TERMIO_H @@ -26647,16 +26785,16 @@ putchar (0x0a) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:26650: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:26788: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:26653: \$? = $ac_status" >&5 + echo "$as_me:26791: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:26656: \"$ac_try\"") >&5 + { (eval echo "$as_me:26794: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:26659: \$? = $ac_status" >&5 + echo "$as_me:26797: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_termio_and_termios=yes else @@ -26667,21 +26805,21 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:26670: result: $cf_cv_termio_and_termios" >&5 +echo "$as_me:26808: 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:26677: checking for sigaction and structs" >&5 +echo "$as_me:26815: 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 26684 "configure" +#line 26822 "configure" #include "confdefs.h" #include <sys/types.h> @@ -26701,16 +26839,16 @@ struct sigaction act; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:26704: \"$ac_link\"") >&5 +if { (eval echo "$as_me:26842: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:26707: \$? = $ac_status" >&5 + echo "$as_me:26845: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:26710: \"$ac_try\"") >&5 + { (eval echo "$as_me:26848: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:26713: \$? = $ac_status" >&5 + echo "$as_me:26851: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_func_sigaction=yes else @@ -26721,7 +26859,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:26724: result: $cf_cv_func_sigaction" >&5 +echo "$as_me:26862: result: $cf_cv_func_sigaction" >&5 echo "${ECHO_T}$cf_cv_func_sigaction" >&6 test "$cf_cv_func_sigaction" = yes && cat >>confdefs.h <<\EOF @@ -26731,23 +26869,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:26734: checking for $ac_header" >&5 +echo "$as_me:26872: 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 26740 "configure" +#line 26878 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:26744: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:26882: \"$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:26750: \$? = $ac_status" >&5 + echo "$as_me:26888: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -26766,7 +26904,7 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:26769: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:26907: 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 @@ -26787,23 +26925,23 @@ else for ac_header in wait.h do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` -echo "$as_me:26790: checking for $ac_header" >&5 +echo "$as_me:26928: 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 26796 "configure" +#line 26934 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:26800: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:26938: \"$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:26806: \$? = $ac_status" >&5 + echo "$as_me:26944: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -26822,7 +26960,7 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:26825: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:26963: 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 @@ -26835,23 +26973,23 @@ done for ac_header in waitstatus.h do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` -echo "$as_me:26838: checking for $ac_header" >&5 +echo "$as_me:26976: 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 26844 "configure" +#line 26982 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:26848: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:26986: \"$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:26854: \$? = $ac_status" >&5 + echo "$as_me:26992: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -26870,7 +27008,7 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:26873: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:27011: 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 @@ -26892,14 +27030,14 @@ cf_wait_headers="$cf_wait_headers fi fi -echo "$as_me:26895: checking for union wait" >&5 +echo "$as_me:27033: 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 26902 "configure" +#line 27040 "configure" #include "confdefs.h" $cf_wait_headers int @@ -26915,16 +27053,16 @@ int x; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:26918: \"$ac_link\"") >&5 +if { (eval echo "$as_me:27056: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:26921: \$? = $ac_status" >&5 + echo "$as_me:27059: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:26924: \"$ac_try\"") >&5 + { (eval echo "$as_me:27062: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:26927: \$? = $ac_status" >&5 + echo "$as_me:27065: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_type_unionwait=no echo compiles ok w/o union wait 1>&5 @@ -26934,7 +27072,7 @@ else cat conftest.$ac_ext >&5 cat >conftest.$ac_ext <<_ACEOF -#line 26937 "configure" +#line 27075 "configure" #include "confdefs.h" $cf_wait_headers int @@ -26954,16 +27092,16 @@ union wait x; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:26957: \"$ac_link\"") >&5 +if { (eval echo "$as_me:27095: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:26960: \$? = $ac_status" >&5 + echo "$as_me:27098: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:26963: \"$ac_try\"") >&5 + { (eval echo "$as_me:27101: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:26966: \$? = $ac_status" >&5 + echo "$as_me:27104: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_type_unionwait=yes echo compiles ok with union wait and possibly macros too 1>&5 @@ -26978,7 +27116,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:26981: result: $cf_cv_type_unionwait" >&5 +echo "$as_me:27119: result: $cf_cv_type_unionwait" >&5 echo "${ECHO_T}$cf_cv_type_unionwait" >&6 test $cf_cv_type_unionwait = yes && cat >>confdefs.h <<\EOF @@ -26987,14 +27125,14 @@ EOF if test $cf_cv_type_unionwait = yes; then - echo "$as_me:26990: checking if union wait can be used as wait-arg" >&5 + echo "$as_me:27128: 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 26997 "configure" +#line 27135 "configure" #include "confdefs.h" $cf_wait_headers int @@ -27006,16 +27144,16 @@ union wait x; wait(&x) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:27009: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:27147: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:27012: \$? = $ac_status" >&5 + echo "$as_me:27150: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:27015: \"$ac_try\"") >&5 + { (eval echo "$as_me:27153: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27018: \$? = $ac_status" >&5 + echo "$as_me:27156: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_arg_union_wait=yes else @@ -27027,21 +27165,21 @@ rm -f conftest.$ac_objext conftest.$ac_ext fi - echo "$as_me:27030: result: $cf_cv_arg_union_wait" >&5 + echo "$as_me:27168: 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:27037: checking if union wait can be used as waitpid-arg" >&5 + echo "$as_me:27175: 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 27044 "configure" +#line 27182 "configure" #include "confdefs.h" $cf_wait_headers int @@ -27053,16 +27191,16 @@ union wait x; waitpid(0, &x, 0) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:27056: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:27194: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:27059: \$? = $ac_status" >&5 + echo "$as_me:27197: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:27062: \"$ac_try\"") >&5 + { (eval echo "$as_me:27200: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27065: \$? = $ac_status" >&5 + echo "$as_me:27203: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_arg_union_waitpid=yes else @@ -27074,7 +27212,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext fi - echo "$as_me:27077: result: $cf_cv_arg_union_waitpid" >&5 + echo "$as_me:27215: 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 @@ -27083,13 +27221,13 @@ EOF fi -echo "$as_me:27086: checking for uid_t in sys/types.h" >&5 +echo "$as_me:27224: 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 27092 "configure" +#line 27230 "configure" #include "confdefs.h" #include <sys/types.h> @@ -27103,7 +27241,7 @@ fi rm -rf conftest* fi -echo "$as_me:27106: result: $ac_cv_type_uid_t" >&5 +echo "$as_me:27244: 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 @@ -27117,7 +27255,7 @@ EOF fi -echo "$as_me:27120: checking type of array argument to getgroups" >&5 +echo "$as_me:27258: 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 @@ -27126,7 +27264,7 @@ else ac_cv_type_getgroups=cross else cat >conftest.$ac_ext <<_ACEOF -#line 27129 "configure" +#line 27267 "configure" #include "confdefs.h" /* Thanks to Mike Rendell for this test. */ #include <sys/types.h> @@ -27152,15 +27290,15 @@ main () } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:27155: \"$ac_link\"") >&5 +if { (eval echo "$as_me:27293: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:27158: \$? = $ac_status" >&5 + echo "$as_me:27296: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:27160: \"$ac_try\"") >&5 + { (eval echo "$as_me:27298: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27163: \$? = $ac_status" >&5 + echo "$as_me:27301: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_type_getgroups=gid_t else @@ -27173,7 +27311,7 @@ rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext fi if test $ac_cv_type_getgroups = cross; then cat >conftest.$ac_ext <<_ACEOF -#line 27176 "configure" +#line 27314 "configure" #include "confdefs.h" #include <unistd.h> @@ -27188,20 +27326,20 @@ rm -rf conftest* fi fi -echo "$as_me:27191: result: $ac_cv_type_getgroups" >&5 +echo "$as_me:27329: 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:27198: checking for off_t" >&5 +echo "$as_me:27336: 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 27204 "configure" +#line 27342 "configure" #include "confdefs.h" $ac_includes_default int @@ -27216,16 +27354,16 @@ if (sizeof (off_t)) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:27219: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:27357: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:27222: \$? = $ac_status" >&5 + echo "$as_me:27360: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:27225: \"$ac_try\"") >&5 + { (eval echo "$as_me:27363: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27228: \$? = $ac_status" >&5 + echo "$as_me:27366: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_type_off_t=yes else @@ -27235,7 +27373,7 @@ ac_cv_type_off_t=no fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:27238: result: $ac_cv_type_off_t" >&5 +echo "$as_me:27376: 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 : @@ -27247,13 +27385,13 @@ EOF fi -echo "$as_me:27250: checking for pid_t" >&5 +echo "$as_me:27388: 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 27256 "configure" +#line 27394 "configure" #include "confdefs.h" $ac_includes_default int @@ -27268,16 +27406,16 @@ if (sizeof (pid_t)) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:27271: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:27409: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:27274: \$? = $ac_status" >&5 + echo "$as_me:27412: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:27277: \"$ac_try\"") >&5 + { (eval echo "$as_me:27415: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27280: \$? = $ac_status" >&5 + echo "$as_me:27418: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_type_pid_t=yes else @@ -27287,7 +27425,7 @@ ac_cv_type_pid_t=no fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:27290: result: $ac_cv_type_pid_t" >&5 +echo "$as_me:27428: 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 : @@ -27299,13 +27437,13 @@ EOF fi -echo "$as_me:27302: checking for uid_t in sys/types.h" >&5 +echo "$as_me:27440: 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 27308 "configure" +#line 27446 "configure" #include "confdefs.h" #include <sys/types.h> @@ -27319,7 +27457,7 @@ fi rm -rf conftest* fi -echo "$as_me:27322: result: $ac_cv_type_uid_t" >&5 +echo "$as_me:27460: 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 @@ -27333,13 +27471,13 @@ EOF fi -echo "$as_me:27336: checking for mode_t" >&5 +echo "$as_me:27474: 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 27342 "configure" +#line 27480 "configure" #include "confdefs.h" $ac_includes_default int @@ -27354,16 +27492,16 @@ if (sizeof (mode_t)) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:27357: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:27495: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:27360: \$? = $ac_status" >&5 + echo "$as_me:27498: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:27363: \"$ac_try\"") >&5 + { (eval echo "$as_me:27501: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27366: \$? = $ac_status" >&5 + echo "$as_me:27504: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_type_mode_t=yes else @@ -27373,7 +27511,7 @@ ac_cv_type_mode_t=no fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:27376: result: $ac_cv_type_mode_t" >&5 +echo "$as_me:27514: 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 : @@ -27385,13 +27523,13 @@ EOF fi - echo "$as_me:27388: checking for ssize_t" >&5 + echo "$as_me:27526: 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 27394 "configure" +#line 27532 "configure" #include "confdefs.h" $ac_includes_default int @@ -27406,16 +27544,16 @@ if (sizeof (ssize_t)) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:27409: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:27547: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:27412: \$? = $ac_status" >&5 + echo "$as_me:27550: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:27415: \"$ac_try\"") >&5 + { (eval echo "$as_me:27553: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27418: \$? = $ac_status" >&5 + echo "$as_me:27556: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_type_ssize_t=yes else @@ -27425,7 +27563,7 @@ ac_cv_type_ssize_t=no fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:27428: result: $ac_cv_type_ssize_t" >&5 +echo "$as_me:27566: 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 @@ -27441,13 +27579,13 @@ EOF fi - echo "$as_me:27444: checking for socklen_t" >&5 + echo "$as_me:27582: 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 27450 "configure" +#line 27588 "configure" #include "confdefs.h" #include <sys/types.h> @@ -27465,16 +27603,16 @@ if (sizeof (socklen_t)) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:27468: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:27606: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:27471: \$? = $ac_status" >&5 + echo "$as_me:27609: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:27474: \"$ac_try\"") >&5 + { (eval echo "$as_me:27612: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27477: \$? = $ac_status" >&5 + echo "$as_me:27615: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_type_socklen_t=yes else @@ -27484,7 +27622,7 @@ ac_cv_type_socklen_t=no fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:27487: result: $ac_cv_type_socklen_t" >&5 +echo "$as_me:27625: 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 @@ -27500,7 +27638,7 @@ EOF fi -echo "$as_me:27503: checking for long long type" >&5 +echo "$as_me:27641: 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 @@ -27531,7 +27669,7 @@ _CFEOF rm -f conftest* fi -echo "$as_me:27534: result: $cf_cv_type_long_long" >&5 +echo "$as_me:27672: 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 @@ -27542,14 +27680,14 @@ EOF fi -echo "$as_me:27545: checking for tm.tm_gmtoff" >&5 +echo "$as_me:27683: 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 27552 "configure" +#line 27690 "configure" #include "confdefs.h" #ifdef TIME_WITH_SYS_TIME @@ -27574,16 +27712,16 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:27577: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:27715: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:27580: \$? = $ac_status" >&5 + echo "$as_me:27718: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:27583: \"$ac_try\"") >&5 + { (eval echo "$as_me:27721: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27586: \$? = $ac_status" >&5 + echo "$as_me:27724: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_tm_gmtoff=yes else @@ -27594,20 +27732,20 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:27597: result: $cf_cv_tm_gmtoff" >&5 +echo "$as_me:27735: 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:27604: checking for int" >&5 +echo "$as_me:27742: 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 27610 "configure" +#line 27748 "configure" #include "confdefs.h" $ac_includes_default int @@ -27622,16 +27760,16 @@ if (sizeof (int)) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:27625: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:27763: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:27628: \$? = $ac_status" >&5 + echo "$as_me:27766: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:27631: \"$ac_try\"") >&5 + { (eval echo "$as_me:27769: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27634: \$? = $ac_status" >&5 + echo "$as_me:27772: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_type_int=yes else @@ -27641,10 +27779,10 @@ ac_cv_type_int=no fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:27644: result: $ac_cv_type_int" >&5 +echo "$as_me:27782: result: $ac_cv_type_int" >&5 echo "${ECHO_T}$ac_cv_type_int" >&6 -echo "$as_me:27647: checking size of int" >&5 +echo "$as_me:27785: 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 @@ -27653,7 +27791,7 @@ else if test "$cross_compiling" = yes; then # Depending upon the size, compute the lo and hi bounds. cat >conftest.$ac_ext <<_ACEOF -#line 27656 "configure" +#line 27794 "configure" #include "confdefs.h" $ac_includes_default int @@ -27665,21 +27803,21 @@ int _array_ [1 - 2 * !((sizeof (int)) >= 0)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:27668: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:27806: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:27671: \$? = $ac_status" >&5 + echo "$as_me:27809: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:27674: \"$ac_try\"") >&5 + { (eval echo "$as_me:27812: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27677: \$? = $ac_status" >&5 + echo "$as_me:27815: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_lo=0 ac_mid=0 while :; do cat >conftest.$ac_ext <<_ACEOF -#line 27682 "configure" +#line 27820 "configure" #include "confdefs.h" $ac_includes_default int @@ -27691,16 +27829,16 @@ int _array_ [1 - 2 * !((sizeof (int)) <= $ac_mid)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:27694: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:27832: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:27697: \$? = $ac_status" >&5 + echo "$as_me:27835: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:27700: \"$ac_try\"") >&5 + { (eval echo "$as_me:27838: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27703: \$? = $ac_status" >&5 + echo "$as_me:27841: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_hi=$ac_mid; break else @@ -27716,7 +27854,7 @@ cat conftest.$ac_ext >&5 ac_hi=-1 ac_mid=-1 while :; do cat >conftest.$ac_ext <<_ACEOF -#line 27719 "configure" +#line 27857 "configure" #include "confdefs.h" $ac_includes_default int @@ -27728,16 +27866,16 @@ int _array_ [1 - 2 * !((sizeof (int)) >= $ac_mid)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:27731: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:27869: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:27734: \$? = $ac_status" >&5 + echo "$as_me:27872: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:27737: \"$ac_try\"") >&5 + { (eval echo "$as_me:27875: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27740: \$? = $ac_status" >&5 + echo "$as_me:27878: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_lo=$ac_mid; break else @@ -27753,7 +27891,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 27756 "configure" +#line 27894 "configure" #include "confdefs.h" $ac_includes_default int @@ -27765,16 +27903,16 @@ int _array_ [1 - 2 * !((sizeof (int)) <= $ac_mid)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:27768: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:27906: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:27771: \$? = $ac_status" >&5 + echo "$as_me:27909: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:27774: \"$ac_try\"") >&5 + { (eval echo "$as_me:27912: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27777: \$? = $ac_status" >&5 + echo "$as_me:27915: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_hi=$ac_mid else @@ -27787,12 +27925,12 @@ done ac_cv_sizeof_int=$ac_lo else if test "$cross_compiling" = yes; then - { { echo "$as_me:27790: error: cannot run test program while cross compiling" >&5 + { { echo "$as_me:27928: 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 27795 "configure" +#line 27933 "configure" #include "confdefs.h" $ac_includes_default int @@ -27808,15 +27946,15 @@ fclose (f); } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:27811: \"$ac_link\"") >&5 +if { (eval echo "$as_me:27949: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:27814: \$? = $ac_status" >&5 + echo "$as_me:27952: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:27816: \"$ac_try\"") >&5 + { (eval echo "$as_me:27954: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27819: \$? = $ac_status" >&5 + echo "$as_me:27957: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_sizeof_int=`cat conftest.val` else @@ -27832,7 +27970,7 @@ else ac_cv_sizeof_int=0 fi fi -echo "$as_me:27835: result: $ac_cv_sizeof_int" >&5 +echo "$as_me:27973: 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 @@ -27840,23 +27978,23 @@ EOF if test "${ac_cv_type_int+set}" = set; then if test "${ac_cv_sizeof_int+set}" != set; then - { echo "$as_me:27843: WARNING: using 4 for sizeof int" >&5 + { echo "$as_me:27981: 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:27847: WARNING: sizeof int not found, using 4" >&5 + { echo "$as_me:27985: 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 fi -echo "$as_me:27853: checking for long" >&5 +echo "$as_me:27991: 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 27859 "configure" +#line 27997 "configure" #include "confdefs.h" $ac_includes_default int @@ -27871,16 +28009,16 @@ if (sizeof (long)) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:27874: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:28012: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:27877: \$? = $ac_status" >&5 + echo "$as_me:28015: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:27880: \"$ac_try\"") >&5 + { (eval echo "$as_me:28018: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27883: \$? = $ac_status" >&5 + echo "$as_me:28021: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_type_long=yes else @@ -27890,10 +28028,10 @@ ac_cv_type_long=no fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:27893: result: $ac_cv_type_long" >&5 +echo "$as_me:28031: result: $ac_cv_type_long" >&5 echo "${ECHO_T}$ac_cv_type_long" >&6 -echo "$as_me:27896: checking size of long" >&5 +echo "$as_me:28034: 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 @@ -27902,7 +28040,7 @@ else if test "$cross_compiling" = yes; then # Depending upon the size, compute the lo and hi bounds. cat >conftest.$ac_ext <<_ACEOF -#line 27905 "configure" +#line 28043 "configure" #include "confdefs.h" $ac_includes_default int @@ -27914,21 +28052,21 @@ int _array_ [1 - 2 * !((sizeof (long)) >= 0)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:27917: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:28055: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:27920: \$? = $ac_status" >&5 + echo "$as_me:28058: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:27923: \"$ac_try\"") >&5 + { (eval echo "$as_me:28061: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27926: \$? = $ac_status" >&5 + echo "$as_me:28064: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_lo=0 ac_mid=0 while :; do cat >conftest.$ac_ext <<_ACEOF -#line 27931 "configure" +#line 28069 "configure" #include "confdefs.h" $ac_includes_default int @@ -27940,16 +28078,16 @@ int _array_ [1 - 2 * !((sizeof (long)) <= $ac_mid)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:27943: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:28081: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:27946: \$? = $ac_status" >&5 + echo "$as_me:28084: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:27949: \"$ac_try\"") >&5 + { (eval echo "$as_me:28087: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27952: \$? = $ac_status" >&5 + echo "$as_me:28090: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_hi=$ac_mid; break else @@ -27965,7 +28103,7 @@ cat conftest.$ac_ext >&5 ac_hi=-1 ac_mid=-1 while :; do cat >conftest.$ac_ext <<_ACEOF -#line 27968 "configure" +#line 28106 "configure" #include "confdefs.h" $ac_includes_default int @@ -27977,16 +28115,16 @@ int _array_ [1 - 2 * !((sizeof (long)) >= $ac_mid)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:27980: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:28118: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:27983: \$? = $ac_status" >&5 + echo "$as_me:28121: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:27986: \"$ac_try\"") >&5 + { (eval echo "$as_me:28124: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27989: \$? = $ac_status" >&5 + echo "$as_me:28127: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_lo=$ac_mid; break else @@ -28002,7 +28140,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 28005 "configure" +#line 28143 "configure" #include "confdefs.h" $ac_includes_default int @@ -28014,16 +28152,16 @@ int _array_ [1 - 2 * !((sizeof (long)) <= $ac_mid)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:28017: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:28155: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:28020: \$? = $ac_status" >&5 + echo "$as_me:28158: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:28023: \"$ac_try\"") >&5 + { (eval echo "$as_me:28161: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28026: \$? = $ac_status" >&5 + echo "$as_me:28164: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_hi=$ac_mid else @@ -28036,12 +28174,12 @@ done ac_cv_sizeof_long=$ac_lo else if test "$cross_compiling" = yes; then - { { echo "$as_me:28039: error: cannot run test program while cross compiling" >&5 + { { echo "$as_me:28177: 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 28044 "configure" +#line 28182 "configure" #include "confdefs.h" $ac_includes_default int @@ -28057,15 +28195,15 @@ fclose (f); } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:28060: \"$ac_link\"") >&5 +if { (eval echo "$as_me:28198: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:28063: \$? = $ac_status" >&5 + echo "$as_me:28201: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:28065: \"$ac_try\"") >&5 + { (eval echo "$as_me:28203: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28068: \$? = $ac_status" >&5 + echo "$as_me:28206: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_sizeof_long=`cat conftest.val` else @@ -28081,7 +28219,7 @@ else ac_cv_sizeof_long=0 fi fi -echo "$as_me:28084: result: $ac_cv_sizeof_long" >&5 +echo "$as_me:28222: 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 @@ -28089,23 +28227,23 @@ EOF if test "${ac_cv_type_long+set}" = set; then if test "${ac_cv_sizeof_long+set}" != set; then - { echo "$as_me:28092: WARNING: using 4 for sizeof long" >&5 + { echo "$as_me:28230: 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:28096: WARNING: sizeof long not found, using 4" >&5 + { echo "$as_me:28234: 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 fi -echo "$as_me:28102: checking for off_t" >&5 +echo "$as_me:28240: 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 28108 "configure" +#line 28246 "configure" #include "confdefs.h" $ac_includes_default int @@ -28120,16 +28258,16 @@ if (sizeof (off_t)) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:28123: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:28261: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:28126: \$? = $ac_status" >&5 + echo "$as_me:28264: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:28129: \"$ac_try\"") >&5 + { (eval echo "$as_me:28267: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28132: \$? = $ac_status" >&5 + echo "$as_me:28270: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_type_off_t=yes else @@ -28139,10 +28277,10 @@ ac_cv_type_off_t=no fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:28142: result: $ac_cv_type_off_t" >&5 +echo "$as_me:28280: result: $ac_cv_type_off_t" >&5 echo "${ECHO_T}$ac_cv_type_off_t" >&6 -echo "$as_me:28145: checking size of off_t" >&5 +echo "$as_me:28283: 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 @@ -28151,7 +28289,7 @@ else if test "$cross_compiling" = yes; then # Depending upon the size, compute the lo and hi bounds. cat >conftest.$ac_ext <<_ACEOF -#line 28154 "configure" +#line 28292 "configure" #include "confdefs.h" $ac_includes_default int @@ -28163,21 +28301,21 @@ int _array_ [1 - 2 * !((sizeof (off_t)) >= 0)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:28166: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:28304: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:28169: \$? = $ac_status" >&5 + echo "$as_me:28307: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:28172: \"$ac_try\"") >&5 + { (eval echo "$as_me:28310: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28175: \$? = $ac_status" >&5 + echo "$as_me:28313: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_lo=0 ac_mid=0 while :; do cat >conftest.$ac_ext <<_ACEOF -#line 28180 "configure" +#line 28318 "configure" #include "confdefs.h" $ac_includes_default int @@ -28189,16 +28327,16 @@ int _array_ [1 - 2 * !((sizeof (off_t)) <= $ac_mid)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:28192: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:28330: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:28195: \$? = $ac_status" >&5 + echo "$as_me:28333: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:28198: \"$ac_try\"") >&5 + { (eval echo "$as_me:28336: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28201: \$? = $ac_status" >&5 + echo "$as_me:28339: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_hi=$ac_mid; break else @@ -28214,7 +28352,7 @@ cat conftest.$ac_ext >&5 ac_hi=-1 ac_mid=-1 while :; do cat >conftest.$ac_ext <<_ACEOF -#line 28217 "configure" +#line 28355 "configure" #include "confdefs.h" $ac_includes_default int @@ -28226,16 +28364,16 @@ int _array_ [1 - 2 * !((sizeof (off_t)) >= $ac_mid)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:28229: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:28367: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:28232: \$? = $ac_status" >&5 + echo "$as_me:28370: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:28235: \"$ac_try\"") >&5 + { (eval echo "$as_me:28373: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28238: \$? = $ac_status" >&5 + echo "$as_me:28376: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_lo=$ac_mid; break else @@ -28251,7 +28389,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 28254 "configure" +#line 28392 "configure" #include "confdefs.h" $ac_includes_default int @@ -28263,16 +28401,16 @@ int _array_ [1 - 2 * !((sizeof (off_t)) <= $ac_mid)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:28266: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:28404: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:28269: \$? = $ac_status" >&5 + echo "$as_me:28407: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:28272: \"$ac_try\"") >&5 + { (eval echo "$as_me:28410: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28275: \$? = $ac_status" >&5 + echo "$as_me:28413: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_hi=$ac_mid else @@ -28285,12 +28423,12 @@ done ac_cv_sizeof_off_t=$ac_lo else if test "$cross_compiling" = yes; then - { { echo "$as_me:28288: error: cannot run test program while cross compiling" >&5 + { { echo "$as_me:28426: 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 28293 "configure" +#line 28431 "configure" #include "confdefs.h" $ac_includes_default int @@ -28306,15 +28444,15 @@ fclose (f); } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:28309: \"$ac_link\"") >&5 +if { (eval echo "$as_me:28447: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:28312: \$? = $ac_status" >&5 + echo "$as_me:28450: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:28314: \"$ac_try\"") >&5 + { (eval echo "$as_me:28452: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28317: \$? = $ac_status" >&5 + echo "$as_me:28455: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_sizeof_off_t=`cat conftest.val` else @@ -28330,7 +28468,7 @@ else ac_cv_sizeof_off_t=0 fi fi -echo "$as_me:28333: result: $ac_cv_sizeof_off_t" >&5 +echo "$as_me:28471: 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 @@ -28338,23 +28476,23 @@ EOF if test "${ac_cv_type_off_t+set}" = set; then if test "${ac_cv_sizeof_off_t+set}" != set; then - { echo "$as_me:28341: WARNING: using 4 for sizeof off_t" >&5 + { echo "$as_me:28479: 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:28345: WARNING: sizeof off_t not found, using 4" >&5 + { echo "$as_me:28483: 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 fi -echo "$as_me:28351: checking for time_t" >&5 +echo "$as_me:28489: 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 28357 "configure" +#line 28495 "configure" #include "confdefs.h" $ac_includes_default int @@ -28369,16 +28507,16 @@ if (sizeof (time_t)) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:28372: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:28510: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:28375: \$? = $ac_status" >&5 + echo "$as_me:28513: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:28378: \"$ac_try\"") >&5 + { (eval echo "$as_me:28516: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28381: \$? = $ac_status" >&5 + echo "$as_me:28519: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_type_time_t=yes else @@ -28388,10 +28526,10 @@ ac_cv_type_time_t=no fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:28391: result: $ac_cv_type_time_t" >&5 +echo "$as_me:28529: result: $ac_cv_type_time_t" >&5 echo "${ECHO_T}$ac_cv_type_time_t" >&6 -echo "$as_me:28394: checking size of time_t" >&5 +echo "$as_me:28532: 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 @@ -28400,7 +28538,7 @@ else if test "$cross_compiling" = yes; then # Depending upon the size, compute the lo and hi bounds. cat >conftest.$ac_ext <<_ACEOF -#line 28403 "configure" +#line 28541 "configure" #include "confdefs.h" $ac_includes_default int @@ -28412,21 +28550,21 @@ int _array_ [1 - 2 * !((sizeof (time_t)) >= 0)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:28415: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:28553: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:28418: \$? = $ac_status" >&5 + echo "$as_me:28556: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:28421: \"$ac_try\"") >&5 + { (eval echo "$as_me:28559: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28424: \$? = $ac_status" >&5 + echo "$as_me:28562: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_lo=0 ac_mid=0 while :; do cat >conftest.$ac_ext <<_ACEOF -#line 28429 "configure" +#line 28567 "configure" #include "confdefs.h" $ac_includes_default int @@ -28438,16 +28576,16 @@ int _array_ [1 - 2 * !((sizeof (time_t)) <= $ac_mid)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:28441: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:28579: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:28444: \$? = $ac_status" >&5 + echo "$as_me:28582: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:28447: \"$ac_try\"") >&5 + { (eval echo "$as_me:28585: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28450: \$? = $ac_status" >&5 + echo "$as_me:28588: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_hi=$ac_mid; break else @@ -28463,7 +28601,7 @@ cat conftest.$ac_ext >&5 ac_hi=-1 ac_mid=-1 while :; do cat >conftest.$ac_ext <<_ACEOF -#line 28466 "configure" +#line 28604 "configure" #include "confdefs.h" $ac_includes_default int @@ -28475,16 +28613,16 @@ int _array_ [1 - 2 * !((sizeof (time_t)) >= $ac_mid)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:28478: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:28616: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:28481: \$? = $ac_status" >&5 + echo "$as_me:28619: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:28484: \"$ac_try\"") >&5 + { (eval echo "$as_me:28622: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28487: \$? = $ac_status" >&5 + echo "$as_me:28625: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_lo=$ac_mid; break else @@ -28500,7 +28638,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 28503 "configure" +#line 28641 "configure" #include "confdefs.h" $ac_includes_default int @@ -28512,16 +28650,16 @@ int _array_ [1 - 2 * !((sizeof (time_t)) <= $ac_mid)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:28515: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:28653: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:28518: \$? = $ac_status" >&5 + echo "$as_me:28656: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:28521: \"$ac_try\"") >&5 + { (eval echo "$as_me:28659: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28524: \$? = $ac_status" >&5 + echo "$as_me:28662: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_hi=$ac_mid else @@ -28534,12 +28672,12 @@ done ac_cv_sizeof_time_t=$ac_lo else if test "$cross_compiling" = yes; then - { { echo "$as_me:28537: error: cannot run test program while cross compiling" >&5 + { { echo "$as_me:28675: 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 28542 "configure" +#line 28680 "configure" #include "confdefs.h" $ac_includes_default int @@ -28555,15 +28693,15 @@ fclose (f); } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:28558: \"$ac_link\"") >&5 +if { (eval echo "$as_me:28696: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:28561: \$? = $ac_status" >&5 + echo "$as_me:28699: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:28563: \"$ac_try\"") >&5 + { (eval echo "$as_me:28701: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28566: \$? = $ac_status" >&5 + echo "$as_me:28704: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_sizeof_time_t=`cat conftest.val` else @@ -28579,7 +28717,7 @@ else ac_cv_sizeof_time_t=0 fi fi -echo "$as_me:28582: result: $ac_cv_sizeof_time_t" >&5 +echo "$as_me:28720: 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 @@ -28587,23 +28725,23 @@ EOF if test "${ac_cv_type_time_t+set}" = set; then if test "${ac_cv_sizeof_time_t+set}" != set; then - { echo "$as_me:28590: WARNING: using 4 for sizeof time_t" >&5 + { echo "$as_me:28728: 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:28594: WARNING: sizeof time_t not found, using 4" >&5 + { echo "$as_me:28732: 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 fi -echo "$as_me:28600: checking for intptr_t" >&5 +echo "$as_me:28738: 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 28606 "configure" +#line 28744 "configure" #include "confdefs.h" $ac_includes_default int @@ -28618,16 +28756,16 @@ if (sizeof (intptr_t)) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:28621: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:28759: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:28624: \$? = $ac_status" >&5 + echo "$as_me:28762: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:28627: \"$ac_try\"") >&5 + { (eval echo "$as_me:28765: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28630: \$? = $ac_status" >&5 + echo "$as_me:28768: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_type_intptr_t=yes else @@ -28637,7 +28775,7 @@ ac_cv_type_intptr_t=no fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:28640: result: $ac_cv_type_intptr_t" >&5 +echo "$as_me:28778: 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 : @@ -28651,13 +28789,13 @@ fi # The Ultrix 4.2 mips builtin alloca declared by alloca.h only works # for constant arguments. Useless! -echo "$as_me:28654: checking for working alloca.h" >&5 +echo "$as_me:28792: 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 28660 "configure" +#line 28798 "configure" #include "confdefs.h" #include <alloca.h> int @@ -28669,16 +28807,16 @@ char *p = (char *) alloca (2 * sizeof (int)); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:28672: \"$ac_link\"") >&5 +if { (eval echo "$as_me:28810: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:28675: \$? = $ac_status" >&5 + echo "$as_me:28813: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:28678: \"$ac_try\"") >&5 + { (eval echo "$as_me:28816: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28681: \$? = $ac_status" >&5 + echo "$as_me:28819: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_working_alloca_h=yes else @@ -28688,7 +28826,7 @@ ac_cv_working_alloca_h=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:28691: result: $ac_cv_working_alloca_h" >&5 +echo "$as_me:28829: 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 @@ -28698,13 +28836,13 @@ EOF fi -echo "$as_me:28701: checking for alloca" >&5 +echo "$as_me:28839: 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 28707 "configure" +#line 28845 "configure" #include "confdefs.h" #ifdef __GNUC__ # define alloca __builtin_alloca @@ -28736,16 +28874,16 @@ char *p = (char *) alloca (1); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:28739: \"$ac_link\"") >&5 +if { (eval echo "$as_me:28877: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:28742: \$? = $ac_status" >&5 + echo "$as_me:28880: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:28745: \"$ac_try\"") >&5 + { (eval echo "$as_me:28883: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28748: \$? = $ac_status" >&5 + echo "$as_me:28886: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_alloca_works=yes else @@ -28755,7 +28893,7 @@ ac_cv_func_alloca_works=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:28758: result: $ac_cv_func_alloca_works" >&5 +echo "$as_me:28896: 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 @@ -28776,13 +28914,13 @@ cat >>confdefs.h <<\EOF #define C_ALLOCA 1 EOF -echo "$as_me:28779: checking whether \`alloca.c' needs Cray hooks" >&5 +echo "$as_me:28917: 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 28785 "configure" +#line 28923 "configure" #include "confdefs.h" #if defined(CRAY) && ! defined(CRAY2) webecray @@ -28800,18 +28938,18 @@ fi rm -rf conftest* fi -echo "$as_me:28803: result: $ac_cv_os_cray" >&5 +echo "$as_me:28941: 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:28808: checking for $ac_func" >&5 +echo "$as_me:28946: 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 28814 "configure" +#line 28952 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. */ @@ -28842,16 +28980,16 @@ f = $ac_func; /* workaround for ICC 12.0.3 */ if (f == 0) return 1; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:28845: \"$ac_link\"") >&5 +if { (eval echo "$as_me:28983: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:28848: \$? = $ac_status" >&5 + echo "$as_me:28986: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:28851: \"$ac_try\"") >&5 + { (eval echo "$as_me:28989: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28854: \$? = $ac_status" >&5 + echo "$as_me:28992: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else @@ -28861,7 +28999,7 @@ eval "$as_ac_var=no" fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:28864: result: `eval echo '${'$as_ac_var'}'`" >&5 +echo "$as_me:29002: 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 @@ -28875,7 +29013,7 @@ fi done fi -echo "$as_me:28878: checking stack direction for C alloca" >&5 +echo "$as_me:29016: 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 @@ -28884,7 +29022,7 @@ else ac_cv_c_stack_direction=0 else cat >conftest.$ac_ext <<_ACEOF -#line 28887 "configure" +#line 29025 "configure" #include "confdefs.h" int find_stack_direction () @@ -28907,15 +29045,15 @@ main () } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:28910: \"$ac_link\"") >&5 +if { (eval echo "$as_me:29048: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:28913: \$? = $ac_status" >&5 + echo "$as_me:29051: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:28915: \"$ac_try\"") >&5 + { (eval echo "$as_me:29053: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28918: \$? = $ac_status" >&5 + echo "$as_me:29056: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_c_stack_direction=1 else @@ -28927,7 +29065,7 @@ fi rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext fi fi -echo "$as_me:28930: result: $ac_cv_c_stack_direction" >&5 +echo "$as_me:29068: result: $ac_cv_c_stack_direction" >&5 echo "${ECHO_T}$ac_cv_c_stack_direction" >&6 cat >>confdefs.h <<EOF @@ -28939,23 +29077,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:28942: checking for $ac_header" >&5 +echo "$as_me:29080: 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 28948 "configure" +#line 29086 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:28952: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:29090: \"$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:28958: \$? = $ac_status" >&5 + echo "$as_me:29096: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -28974,7 +29112,7 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:28977: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:29115: 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 @@ -28987,13 +29125,13 @@ done for ac_func in fork vfork do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` -echo "$as_me:28990: checking for $ac_func" >&5 +echo "$as_me:29128: 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 28996 "configure" +#line 29134 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. */ @@ -29024,16 +29162,16 @@ f = $ac_func; /* workaround for ICC 12.0.3 */ if (f == 0) return 1; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:29027: \"$ac_link\"") >&5 +if { (eval echo "$as_me:29165: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:29030: \$? = $ac_status" >&5 + echo "$as_me:29168: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:29033: \"$ac_try\"") >&5 + { (eval echo "$as_me:29171: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:29036: \$? = $ac_status" >&5 + echo "$as_me:29174: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else @@ -29043,7 +29181,7 @@ eval "$as_ac_var=no" fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:29046: result: `eval echo '${'$as_ac_var'}'`" >&5 +echo "$as_me:29184: 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 @@ -29055,7 +29193,7 @@ done ac_cv_func_fork_works=$ac_cv_func_fork if test "x$ac_cv_func_fork" = xyes; then - echo "$as_me:29058: checking for working fork" >&5 + echo "$as_me:29196: 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 @@ -29078,15 +29216,15 @@ else } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:29081: \"$ac_link\"") >&5 +if { (eval echo "$as_me:29219: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:29084: \$? = $ac_status" >&5 + echo "$as_me:29222: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:29086: \"$ac_try\"") >&5 + { (eval echo "$as_me:29224: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:29089: \$? = $ac_status" >&5 + echo "$as_me:29227: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_fork_works=yes else @@ -29098,7 +29236,7 @@ fi rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext fi fi -echo "$as_me:29101: result: $ac_cv_func_fork_works" >&5 +echo "$as_me:29239: result: $ac_cv_func_fork_works" >&5 echo "${ECHO_T}$ac_cv_func_fork_works" >&6 fi @@ -29112,12 +29250,12 @@ if test "x$ac_cv_func_fork_works" = xcross; then ac_cv_func_fork_works=yes ;; esac - { echo "$as_me:29115: WARNING: CROSS: Result $ac_cv_func_fork_works guessed due to cross-compiling." >&5 + { echo "$as_me:29253: 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:29120: checking for working vfork" >&5 + echo "$as_me:29258: 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 @@ -29126,7 +29264,7 @@ else ac_cv_func_vfork_works=cross else cat >conftest.$ac_ext <<_ACEOF -#line 29129 "configure" +#line 29267 "configure" #include "confdefs.h" /* Thanks to Paul Eggert for this test. */ #include <stdio.h> @@ -29223,15 +29361,15 @@ main () } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:29226: \"$ac_link\"") >&5 +if { (eval echo "$as_me:29364: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:29229: \$? = $ac_status" >&5 + echo "$as_me:29367: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:29231: \"$ac_try\"") >&5 + { (eval echo "$as_me:29369: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:29234: \$? = $ac_status" >&5 + echo "$as_me:29372: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_vfork_works=yes else @@ -29243,13 +29381,13 @@ fi rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext fi fi -echo "$as_me:29246: result: $ac_cv_func_vfork_works" >&5 +echo "$as_me:29384: 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:29252: WARNING: CROSS: Result $ac_cv_func_vfork_works guessed due to cross-compiling." >&5 + { echo "$as_me:29390: 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 @@ -29274,14 +29412,14 @@ EOF fi -echo "$as_me:29277: checking if we should use fcntl or ioctl" >&5 +echo "$as_me:29415: 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 29284 "configure" +#line 29422 "configure" #include "confdefs.h" #include <sys/types.h> @@ -29298,16 +29436,16 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:29301: \"$ac_link\"") >&5 +if { (eval echo "$as_me:29439: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:29304: \$? = $ac_status" >&5 + echo "$as_me:29442: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:29307: \"$ac_try\"") >&5 + { (eval echo "$as_me:29445: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:29310: \$? = $ac_status" >&5 + echo "$as_me:29448: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_fionbio=ioctl else @@ -29315,7 +29453,7 @@ else cat conftest.$ac_ext >&5 cat >conftest.$ac_ext <<_ACEOF -#line 29318 "configure" +#line 29456 "configure" #include "confdefs.h" #include <sys/types.h> @@ -29337,16 +29475,16 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:29340: \"$ac_link\"") >&5 +if { (eval echo "$as_me:29478: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:29343: \$? = $ac_status" >&5 + echo "$as_me:29481: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:29346: \"$ac_try\"") >&5 + { (eval echo "$as_me:29484: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:29349: \$? = $ac_status" >&5 + echo "$as_me:29487: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_fionbio=fcntl else @@ -29359,21 +29497,21 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:29362: result: $cf_cv_fionbio" >&5 +echo "$as_me:29500: 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:29369: checking for broken/missing definition of remove" >&5 +echo "$as_me:29507: 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 29376 "configure" +#line 29514 "configure" #include "confdefs.h" #include <stdio.h> int @@ -29385,23 +29523,23 @@ remove("dummy") } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:29388: \"$ac_link\"") >&5 +if { (eval echo "$as_me:29526: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:29391: \$? = $ac_status" >&5 + echo "$as_me:29529: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:29394: \"$ac_try\"") >&5 + { (eval echo "$as_me:29532: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:29397: \$? = $ac_status" >&5 + echo "$as_me:29535: \$? = $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 29404 "configure" +#line 29542 "configure" #include "confdefs.h" #include <stdio.h> int __unlink(name) { return unlink(name); } @@ -29414,16 +29552,16 @@ remove("dummy") } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:29417: \"$ac_link\"") >&5 +if { (eval echo "$as_me:29555: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:29420: \$? = $ac_status" >&5 + echo "$as_me:29558: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:29423: \"$ac_try\"") >&5 + { (eval echo "$as_me:29561: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:29426: \$? = $ac_status" >&5 + echo "$as_me:29564: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_baddef_remove=yes else @@ -29438,21 +29576,21 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:29441: result: $cf_cv_baddef_remove" >&5 +echo "$as_me:29579: 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:29448: checking for lstat" >&5 +echo "$as_me:29586: 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 29455 "configure" +#line 29593 "configure" #include "confdefs.h" #include <sys/types.h> @@ -29466,16 +29604,16 @@ lstat(".", (struct stat *)0) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:29469: \"$ac_link\"") >&5 +if { (eval echo "$as_me:29607: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:29472: \$? = $ac_status" >&5 + echo "$as_me:29610: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:29475: \"$ac_try\"") >&5 + { (eval echo "$as_me:29613: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:29478: \$? = $ac_status" >&5 + echo "$as_me:29616: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_lstat=yes else @@ -29487,7 +29625,7 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:29490: result: $ac_cv_func_lstat " >&5 +echo "$as_me:29628: result: $ac_cv_func_lstat " >&5 echo "${ECHO_T}$ac_cv_func_lstat " >&6 if test $ac_cv_func_lstat = yes; then @@ -29522,13 +29660,13 @@ for ac_func in \ do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` -echo "$as_me:29525: checking for $ac_func" >&5 +echo "$as_me:29663: 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 29531 "configure" +#line 29669 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. */ @@ -29559,16 +29697,16 @@ f = $ac_func; /* workaround for ICC 12.0.3 */ if (f == 0) return 1; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:29562: \"$ac_link\"") >&5 +if { (eval echo "$as_me:29700: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:29565: \$? = $ac_status" >&5 + echo "$as_me:29703: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:29568: \"$ac_try\"") >&5 + { (eval echo "$as_me:29706: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:29571: \$? = $ac_status" >&5 + echo "$as_me:29709: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else @@ -29578,7 +29716,7 @@ eval "$as_ac_var=no" fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:29581: result: `eval echo '${'$as_ac_var'}'`" >&5 +echo "$as_me:29719: 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 @@ -29594,13 +29732,13 @@ for ac_func in \ do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` -echo "$as_me:29597: checking for $ac_func" >&5 +echo "$as_me:29735: 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 29603 "configure" +#line 29741 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. */ @@ -29631,16 +29769,16 @@ f = $ac_func; /* workaround for ICC 12.0.3 */ if (f == 0) return 1; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:29634: \"$ac_link\"") >&5 +if { (eval echo "$as_me:29772: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:29637: \$? = $ac_status" >&5 + echo "$as_me:29775: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:29640: \"$ac_try\"") >&5 + { (eval echo "$as_me:29778: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:29643: \$? = $ac_status" >&5 + echo "$as_me:29781: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else @@ -29650,7 +29788,7 @@ eval "$as_ac_var=no" fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:29653: result: `eval echo '${'$as_ac_var'}'`" >&5 +echo "$as_me:29791: 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 @@ -29662,7 +29800,7 @@ else fi done -echo "$as_me:29665: checking for random-integer functions" >&5 +echo "$as_me:29803: 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 @@ -29682,7 +29820,7 @@ do esac cat >conftest.$ac_ext <<_ACEOF -#line 29685 "configure" +#line 29823 "configure" #include "confdefs.h" #ifdef HAVE_STDLIB_H @@ -29701,16 +29839,16 @@ long seed = 1; $cf_srand_func(seed); seed = $cf_rand_func() } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:29704: \"$ac_link\"") >&5 +if { (eval echo "$as_me:29842: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:29707: \$? = $ac_status" >&5 + echo "$as_me:29845: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:29710: \"$ac_try\"") >&5 + { (eval echo "$as_me:29848: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:29713: \$? = $ac_status" >&5 + echo "$as_me:29851: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_srand_func=$cf_func break @@ -29722,10 +29860,10 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext done fi -echo "$as_me:29725: result: $cf_cv_srand_func" >&5 +echo "$as_me:29863: 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:29728: checking for range of random-integers" >&5 + echo "$as_me:29866: 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 @@ -29746,7 +29884,7 @@ else ;; esac cat >conftest.$ac_ext <<_ACEOF -#line 29749 "configure" +#line 29887 "configure" #include "confdefs.h" #ifdef HAVE_STDLIB_H @@ -29765,16 +29903,16 @@ long x = $cf_cv_rand_max } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:29768: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:29906: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:29771: \$? = $ac_status" >&5 + echo "$as_me:29909: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:29774: \"$ac_try\"") >&5 + { (eval echo "$as_me:29912: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:29777: \$? = $ac_status" >&5 + echo "$as_me:29915: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -29785,15 +29923,15 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:29788: result: $cf_cv_rand_max" >&5 +echo "$as_me:29926: result: $cf_cv_rand_max" >&5 echo "${ECHO_T}$cf_cv_rand_max" >&6 case $cf_cv_srand_func in (*/arc4random) - echo "$as_me:29793: checking if <bsd/stdlib.h> should be included" >&5 + echo "$as_me:29931: 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 29796 "configure" +#line 29934 "configure" #include "confdefs.h" #include <bsd/stdlib.h> int @@ -29806,23 +29944,23 @@ void *arc4random(int); } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:29809: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:29947: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:29812: \$? = $ac_status" >&5 + echo "$as_me:29950: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:29815: \"$ac_try\"") >&5 + { (eval echo "$as_me:29953: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:29818: \$? = $ac_status" >&5 + echo "$as_me:29956: \$? = $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 29825 "configure" +#line 29963 "configure" #include "confdefs.h" #include <bsd/stdlib.h> int @@ -29834,16 +29972,16 @@ unsigned x = arc4random() } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:29837: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:29975: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:29840: \$? = $ac_status" >&5 + echo "$as_me:29978: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:29843: \"$ac_try\"") >&5 + { (eval echo "$as_me:29981: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:29846: \$? = $ac_status" >&5 + echo "$as_me:29984: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_bsd_stdlib_h=yes else @@ -29854,7 +29992,7 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi rm -f conftest.$ac_objext conftest.$ac_ext - echo "$as_me:29857: result: $cf_bsd_stdlib_h" >&5 + echo "$as_me:29995: result: $cf_bsd_stdlib_h" >&5 echo "${ECHO_T}$cf_bsd_stdlib_h" >&6 if test "$cf_bsd_stdlib_h" = yes then @@ -29864,10 +30002,10 @@ cat >>confdefs.h <<\EOF EOF else - echo "$as_me:29867: checking if <bsd/random.h> should be included" >&5 + echo "$as_me:30005: 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 29870 "configure" +#line 30008 "configure" #include "confdefs.h" #include <bsd/random.h> int @@ -29880,23 +30018,23 @@ void *arc4random(int); } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:29883: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:30021: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:29886: \$? = $ac_status" >&5 + echo "$as_me:30024: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:29889: \"$ac_try\"") >&5 + { (eval echo "$as_me:30027: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:29892: \$? = $ac_status" >&5 + echo "$as_me:30030: \$? = $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 29899 "configure" +#line 30037 "configure" #include "confdefs.h" #include <bsd/random.h> int @@ -29908,16 +30046,16 @@ unsigned x = arc4random() } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:29911: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:30049: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:29914: \$? = $ac_status" >&5 + echo "$as_me:30052: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:29917: \"$ac_try\"") >&5 + { (eval echo "$as_me:30055: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:29920: \$? = $ac_status" >&5 + echo "$as_me:30058: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_bsd_random_h=yes else @@ -29928,7 +30066,7 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi rm -f conftest.$ac_objext conftest.$ac_ext - echo "$as_me:29931: result: $cf_bsd_random_h" >&5 + echo "$as_me:30069: result: $cf_bsd_random_h" >&5 echo "${ECHO_T}$cf_bsd_random_h" >&6 if test "$cf_bsd_random_h" = yes then @@ -29938,7 +30076,7 @@ cat >>confdefs.h <<\EOF EOF else - { echo "$as_me:29941: WARNING: no header file found for arc4random" >&5 + { echo "$as_me:30079: WARNING: no header file found for arc4random" >&5 echo "$as_me: WARNING: no header file found for arc4random" >&2;} fi fi @@ -29973,13 +30111,13 @@ fi for ac_func in sleep do -echo "$as_me:29976: checking for $ac_func declaration" >&5 +echo "$as_me:30114: 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 29982 "configure" +#line 30120 "configure" #include "confdefs.h" #ifdef HAVE_STDLIB_H @@ -30000,20 +30138,20 @@ extern int $ac_func(); } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:30003: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:30141: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:30006: \$? = $ac_status" >&5 + echo "$as_me:30144: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:30009: \"$ac_try\"") >&5 + { (eval echo "$as_me:30147: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:30012: \$? = $ac_status" >&5 + echo "$as_me:30150: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cat >conftest.$ac_ext <<_ACEOF -#line 30016 "configure" +#line 30154 "configure" #include "confdefs.h" #ifdef HAVE_STDLIB_H @@ -30034,16 +30172,16 @@ int (*p)() = $ac_func; } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:30037: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:30175: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:30040: \$? = $ac_status" >&5 + echo "$as_me:30178: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:30043: \"$ac_try\"") >&5 + { (eval echo "$as_me:30181: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:30046: \$? = $ac_status" >&5 + echo "$as_me:30184: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "ac_cv_func_decl_$ac_func=yes" @@ -30064,11 +30202,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:30067: result: yes" >&5 + echo "$as_me:30205: result: yes" >&5 echo "${ECHO_T}yes" >&6 : else - echo "$as_me:30071: result: no" >&5 + echo "$as_me:30209: result: no" >&5 echo "${ECHO_T}no" >&6 ac_tr_func=`echo "DECL_$ac_func" | sed y%abcdefghijklmnopqrstuvwxyz./-%ABCDEFGHIJKLMNOPQRSTUVWXYZ___%` @@ -30083,13 +30221,13 @@ done for ac_func in strstr do -echo "$as_me:30086: checking for $ac_func declaration" >&5 +echo "$as_me:30224: 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 30092 "configure" +#line 30230 "configure" #include "confdefs.h" #include <string.h> int @@ -30103,20 +30241,20 @@ extern int $ac_func(); } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:30106: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:30244: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:30109: \$? = $ac_status" >&5 + echo "$as_me:30247: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:30112: \"$ac_try\"") >&5 + { (eval echo "$as_me:30250: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:30115: \$? = $ac_status" >&5 + echo "$as_me:30253: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cat >conftest.$ac_ext <<_ACEOF -#line 30119 "configure" +#line 30257 "configure" #include "confdefs.h" #include <string.h> int @@ -30130,16 +30268,16 @@ int (*p)() = $ac_func; } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:30133: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:30271: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:30136: \$? = $ac_status" >&5 + echo "$as_me:30274: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:30139: \"$ac_try\"") >&5 + { (eval echo "$as_me:30277: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:30142: \$? = $ac_status" >&5 + echo "$as_me:30280: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "ac_cv_func_decl_$ac_func=yes" @@ -30160,11 +30298,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:30163: result: yes" >&5 + echo "$as_me:30301: result: yes" >&5 echo "${ECHO_T}yes" >&6 : else - echo "$as_me:30167: result: no" >&5 + echo "$as_me:30305: result: no" >&5 echo "${ECHO_T}no" >&6 ac_tr_func=`echo "DECL_$ac_func" | sed y%abcdefghijklmnopqrstuvwxyz./-%ABCDEFGHIJKLMNOPQRSTUVWXYZ___%` @@ -30179,13 +30317,13 @@ done for ac_func in getgrgid getgrnam do -echo "$as_me:30182: checking for $ac_func declaration" >&5 +echo "$as_me:30320: 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 30188 "configure" +#line 30326 "configure" #include "confdefs.h" #include <stdio.h> @@ -30201,20 +30339,20 @@ extern int $ac_func(); } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:30204: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:30342: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:30207: \$? = $ac_status" >&5 + echo "$as_me:30345: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:30210: \"$ac_try\"") >&5 + { (eval echo "$as_me:30348: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:30213: \$? = $ac_status" >&5 + echo "$as_me:30351: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cat >conftest.$ac_ext <<_ACEOF -#line 30217 "configure" +#line 30355 "configure" #include "confdefs.h" #include <stdio.h> @@ -30230,16 +30368,16 @@ int (*p)() = $ac_func; } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:30233: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:30371: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:30236: \$? = $ac_status" >&5 + echo "$as_me:30374: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:30239: \"$ac_try\"") >&5 + { (eval echo "$as_me:30377: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:30242: \$? = $ac_status" >&5 + echo "$as_me:30380: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "ac_cv_func_decl_$ac_func=yes" @@ -30260,11 +30398,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:30263: result: yes" >&5 + echo "$as_me:30401: result: yes" >&5 echo "${ECHO_T}yes" >&6 : else - echo "$as_me:30267: result: no" >&5 + echo "$as_me:30405: result: no" >&5 echo "${ECHO_T}no" >&6 ac_tr_func=`echo "DECL_$ac_func" | sed y%abcdefghijklmnopqrstuvwxyz./-%ABCDEFGHIJKLMNOPQRSTUVWXYZ___%` @@ -30276,14 +30414,14 @@ EOF fi done -echo "$as_me:30279: checking if TRUE/FALSE are defined" >&5 +echo "$as_me:30417: 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 30286 "configure" +#line 30424 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> @@ -30297,16 +30435,16 @@ int x = TRUE, y = FALSE } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:30300: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:30438: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:30303: \$? = $ac_status" >&5 + echo "$as_me:30441: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:30306: \"$ac_try\"") >&5 + { (eval echo "$as_me:30444: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:30309: \$? = $ac_status" >&5 + echo "$as_me:30447: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_bool_defs=yes else @@ -30317,7 +30455,7 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:30320: result: $cf_cv_bool_defs" >&5 +echo "$as_me:30458: result: $cf_cv_bool_defs" >&5 echo "${ECHO_T}$cf_cv_bool_defs" >&6 if test "$cf_cv_bool_defs" = no ; then @@ -30331,14 +30469,14 @@ EOF fi -echo "$as_me:30334: checking if external errno is declared" >&5 +echo "$as_me:30472: 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 30341 "configure" +#line 30479 "configure" #include "confdefs.h" #ifdef HAVE_STDLIB_H @@ -30356,16 +30494,16 @@ int x = (int) errno } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:30359: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:30497: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:30362: \$? = $ac_status" >&5 + echo "$as_me:30500: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:30365: \"$ac_try\"") >&5 + { (eval echo "$as_me:30503: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:30368: \$? = $ac_status" >&5 + echo "$as_me:30506: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_dcl_errno=yes else @@ -30376,7 +30514,7 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:30379: result: $cf_cv_dcl_errno" >&5 +echo "$as_me:30517: result: $cf_cv_dcl_errno" >&5 echo "${ECHO_T}$cf_cv_dcl_errno" >&6 if test "$cf_cv_dcl_errno" = no ; then @@ -30391,14 +30529,14 @@ fi # It's possible (for near-UNIX clones) that the data doesn't exist -echo "$as_me:30394: checking if external errno exists" >&5 +echo "$as_me:30532: 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 30401 "configure" +#line 30539 "configure" #include "confdefs.h" #undef errno @@ -30413,16 +30551,16 @@ errno = 2 } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:30416: \"$ac_link\"") >&5 +if { (eval echo "$as_me:30554: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:30419: \$? = $ac_status" >&5 + echo "$as_me:30557: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:30422: \"$ac_try\"") >&5 + { (eval echo "$as_me:30560: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:30425: \$? = $ac_status" >&5 + echo "$as_me:30563: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_have_errno=yes else @@ -30433,7 +30571,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:30436: result: $cf_cv_have_errno" >&5 +echo "$as_me:30574: result: $cf_cv_have_errno" >&5 echo "${ECHO_T}$cf_cv_have_errno" >&6 if test "$cf_cv_have_errno" = yes ; then @@ -30446,7 +30584,7 @@ EOF fi -echo "$as_me:30449: checking if we can set errno" >&5 +echo "$as_me:30587: 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 @@ -30454,7 +30592,7 @@ else if test "$cross_compiling" = yes; then cat >conftest.$ac_ext <<_ACEOF -#line 30457 "configure" +#line 30595 "configure" #include "confdefs.h" #include <errno.h> int @@ -30466,16 +30604,16 @@ errno = 255 } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:30469: \"$ac_link\"") >&5 +if { (eval echo "$as_me:30607: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:30472: \$? = $ac_status" >&5 + echo "$as_me:30610: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:30475: \"$ac_try\"") >&5 + { (eval echo "$as_me:30613: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:30478: \$? = $ac_status" >&5 + echo "$as_me:30616: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_set_errno=maybe else @@ -30486,7 +30624,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext else cat >conftest.$ac_ext <<_ACEOF -#line 30489 "configure" +#line 30627 "configure" #include "confdefs.h" #include <errno.h> @@ -30497,15 +30635,15 @@ int main() } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:30500: \"$ac_link\"") >&5 +if { (eval echo "$as_me:30638: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:30503: \$? = $ac_status" >&5 + echo "$as_me:30641: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:30505: \"$ac_try\"") >&5 + { (eval echo "$as_me:30643: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:30508: \$? = $ac_status" >&5 + echo "$as_me:30646: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_set_errno=yes else @@ -30518,21 +30656,21 @@ rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext fi fi -echo "$as_me:30521: result: $cf_cv_set_errno" >&5 +echo "$as_me:30659: 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:30528: checking for setlocale()" >&5 +echo "$as_me:30666: 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 30535 "configure" +#line 30673 "configure" #include "confdefs.h" #include <locale.h> int @@ -30544,16 +30682,16 @@ setlocale(LC_ALL, "") } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:30547: \"$ac_link\"") >&5 +if { (eval echo "$as_me:30685: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:30550: \$? = $ac_status" >&5 + echo "$as_me:30688: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:30553: \"$ac_try\"") >&5 + { (eval echo "$as_me:30691: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:30556: \$? = $ac_status" >&5 + echo "$as_me:30694: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_locale=yes else @@ -30565,7 +30703,7 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:30568: result: $cf_cv_locale" >&5 +echo "$as_me:30706: result: $cf_cv_locale" >&5 echo "${ECHO_T}$cf_cv_locale" >&6 test $cf_cv_locale = yes && { cat >>confdefs.h <<\EOF @@ -30573,14 +30711,14 @@ cat >>confdefs.h <<\EOF EOF } -echo "$as_me:30576: checking if NGROUPS is defined" >&5 +echo "$as_me:30714: 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 30583 "configure" +#line 30721 "configure" #include "confdefs.h" #if HAVE_SYS_PARAM_H @@ -30599,23 +30737,23 @@ int x = NGROUPS } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:30602: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:30740: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:30605: \$? = $ac_status" >&5 + echo "$as_me:30743: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:30608: \"$ac_try\"") >&5 + { (eval echo "$as_me:30746: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:30611: \$? = $ac_status" >&5 + echo "$as_me:30749: \$? = $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 30618 "configure" +#line 30756 "configure" #include "confdefs.h" #if HAVE_SYS_PARAM_H @@ -30634,16 +30772,16 @@ int x = NGROUPS_MAX } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:30637: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:30775: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:30640: \$? = $ac_status" >&5 + echo "$as_me:30778: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:30643: \"$ac_try\"") >&5 + { (eval echo "$as_me:30781: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:30646: \$? = $ac_status" >&5 + echo "$as_me:30784: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_ngroups=NGROUPS_MAX else @@ -30655,7 +30793,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext fi rm -f conftest.$ac_objext conftest.$ac_ext -echo "$as_me:30658: result: $cf_cv_ngroups" >&5 +echo "$as_me:30796: result: $cf_cv_ngroups" >&5 echo "${ECHO_T}$cf_cv_ngroups" >&6 fi @@ -30673,14 +30811,14 @@ EOF fi -echo "$as_me:30676: checking if external sys_nerr is declared" >&5 +echo "$as_me:30814: 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 30683 "configure" +#line 30821 "configure" #include "confdefs.h" #ifdef HAVE_STDLIB_H @@ -30698,16 +30836,16 @@ int x = (int) sys_nerr } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:30701: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:30839: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:30704: \$? = $ac_status" >&5 + echo "$as_me:30842: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:30707: \"$ac_try\"") >&5 + { (eval echo "$as_me:30845: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:30710: \$? = $ac_status" >&5 + echo "$as_me:30848: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_dcl_sys_nerr=yes else @@ -30718,7 +30856,7 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:30721: result: $cf_cv_dcl_sys_nerr" >&5 +echo "$as_me:30859: 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 @@ -30733,14 +30871,14 @@ fi # It's possible (for near-UNIX clones) that the data doesn't exist -echo "$as_me:30736: checking if external sys_nerr exists" >&5 +echo "$as_me:30874: 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 30743 "configure" +#line 30881 "configure" #include "confdefs.h" #undef sys_nerr @@ -30755,16 +30893,16 @@ sys_nerr = 2 } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:30758: \"$ac_link\"") >&5 +if { (eval echo "$as_me:30896: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:30761: \$? = $ac_status" >&5 + echo "$as_me:30899: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:30764: \"$ac_try\"") >&5 + { (eval echo "$as_me:30902: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:30767: \$? = $ac_status" >&5 + echo "$as_me:30905: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_have_sys_nerr=yes else @@ -30775,7 +30913,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:30778: result: $cf_cv_have_sys_nerr" >&5 +echo "$as_me:30916: 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 @@ -30788,14 +30926,14 @@ EOF fi -echo "$as_me:30791: checking if external sys_errlist is declared" >&5 +echo "$as_me:30929: 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 30798 "configure" +#line 30936 "configure" #include "confdefs.h" #ifdef HAVE_STDLIB_H @@ -30813,16 +30951,16 @@ int x = (int) sys_errlist } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:30816: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:30954: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:30819: \$? = $ac_status" >&5 + echo "$as_me:30957: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:30822: \"$ac_try\"") >&5 + { (eval echo "$as_me:30960: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:30825: \$? = $ac_status" >&5 + echo "$as_me:30963: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_dcl_sys_errlist=yes else @@ -30833,7 +30971,7 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:30836: result: $cf_cv_dcl_sys_errlist" >&5 +echo "$as_me:30974: 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 @@ -30848,14 +30986,14 @@ fi # It's possible (for near-UNIX clones) that the data doesn't exist -echo "$as_me:30851: checking if external sys_errlist exists" >&5 +echo "$as_me:30989: 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 30858 "configure" +#line 30996 "configure" #include "confdefs.h" #undef sys_errlist @@ -30870,16 +31008,16 @@ sys_errlist = 2 } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:30873: \"$ac_link\"") >&5 +if { (eval echo "$as_me:31011: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:30876: \$? = $ac_status" >&5 + echo "$as_me:31014: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:30879: \"$ac_try\"") >&5 + { (eval echo "$as_me:31017: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:30882: \$? = $ac_status" >&5 + echo "$as_me:31020: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_have_sys_errlist=yes else @@ -30890,7 +31028,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:30893: result: $cf_cv_have_sys_errlist" >&5 +echo "$as_me:31031: 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 @@ -30906,23 +31044,23 @@ fi for ac_header in lastlog.h paths.h do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` -echo "$as_me:30909: checking for $ac_header" >&5 +echo "$as_me:31047: 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 30915 "configure" +#line 31053 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:30919: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:31057: \"$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:30925: \$? = $ac_status" >&5 + echo "$as_me:31063: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -30941,7 +31079,7 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:30944: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:31082: 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 @@ -30951,14 +31089,14 @@ EOF fi done -echo "$as_me:30954: checking for lastlog path" >&5 +echo "$as_me:31092: 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 30961 "configure" +#line 31099 "configure" #include "confdefs.h" #include <sys/types.h> @@ -30978,16 +31116,16 @@ char *path = _PATH_LASTLOG } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:30981: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:31119: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:30984: \$? = $ac_status" >&5 + echo "$as_me:31122: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:30987: \"$ac_try\"") >&5 + { (eval echo "$as_me:31125: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:30990: \$? = $ac_status" >&5 + echo "$as_me:31128: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_path_lastlog="_PATH_LASTLOG" else @@ -31002,14 +31140,14 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:31005: result: $cf_cv_path_lastlog" >&5 +echo "$as_me:31143: 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:31012: checking for utmp implementation" >&5 +echo "$as_me:31150: 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 @@ -31026,7 +31164,7 @@ cf_utmp_includes=" #endif " cat >conftest.$ac_ext <<_ACEOF -#line 31029 "configure" +#line 31167 "configure" #include "confdefs.h" $cf_utmp_includes int @@ -31040,16 +31178,16 @@ struct $cf_header x; } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:31043: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:31181: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:31046: \$? = $ac_status" >&5 + echo "$as_me:31184: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:31049: \"$ac_try\"") >&5 + { (eval echo "$as_me:31187: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:31052: \$? = $ac_status" >&5 + echo "$as_me:31190: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_have_utmp=$cf_header break @@ -31058,7 +31196,7 @@ else cat conftest.$ac_ext >&5 cat >conftest.$ac_ext <<_ACEOF -#line 31061 "configure" +#line 31199 "configure" #include "confdefs.h" $cf_utmp_includes int @@ -31072,16 +31210,16 @@ struct $cf_header x; } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:31075: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:31213: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:31078: \$? = $ac_status" >&5 + echo "$as_me:31216: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:31081: \"$ac_try\"") >&5 + { (eval echo "$as_me:31219: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:31084: \$? = $ac_status" >&5 + echo "$as_me:31222: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_have_utmp=$cf_header break @@ -31096,7 +31234,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext done fi -echo "$as_me:31099: result: $cf_cv_have_utmp" >&5 +echo "$as_me:31237: result: $cf_cv_have_utmp" >&5 echo "${ECHO_T}$cf_cv_have_utmp" >&6 if test $cf_cv_have_utmp != no ; then @@ -31111,14 +31249,14 @@ cat >>confdefs.h <<\EOF EOF if test $cf_cv_have_utmp != no ; then -echo "$as_me:31114: checking if ${cf_cv_have_utmp}.ut_host is declared" >&5 +echo "$as_me:31252: 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 31121 "configure" +#line 31259 "configure" #include "confdefs.h" #include <sys/types.h> @@ -31132,16 +31270,16 @@ struct $cf_cv_have_utmp x; char *y = &x.ut_host[0] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:31135: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:31273: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:31138: \$? = $ac_status" >&5 + echo "$as_me:31276: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:31141: \"$ac_try\"") >&5 + { (eval echo "$as_me:31279: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:31144: \$? = $ac_status" >&5 + echo "$as_me:31282: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_have_utmp_ut_host=yes else @@ -31153,7 +31291,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:31156: result: $cf_cv_have_utmp_ut_host" >&5 +echo "$as_me:31294: 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 @@ -31163,14 +31301,14 @@ EOF fi if test $cf_cv_have_utmp != no ; then -echo "$as_me:31166: checking if ${cf_cv_have_utmp}.ut_syslen is declared" >&5 +echo "$as_me:31304: 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 31173 "configure" +#line 31311 "configure" #include "confdefs.h" #include <sys/types.h> @@ -31184,16 +31322,16 @@ struct $cf_cv_have_utmp x; int y = x.ut_syslen } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:31187: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:31325: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:31190: \$? = $ac_status" >&5 + echo "$as_me:31328: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:31193: \"$ac_try\"") >&5 + { (eval echo "$as_me:31331: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:31196: \$? = $ac_status" >&5 + echo "$as_me:31334: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_have_utmp_ut_syslen=yes else @@ -31205,7 +31343,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:31208: result: $cf_cv_have_utmp_ut_syslen" >&5 +echo "$as_me:31346: 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 @@ -31215,7 +31353,7 @@ EOF fi if test $cf_cv_have_utmp != no ; then -echo "$as_me:31218: checking if ${cf_cv_have_utmp}.ut_name is declared" >&5 +echo "$as_me:31356: 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 @@ -31232,7 +31370,7 @@ cf_utmp_includes=" " for cf_header in ut_name ut_user ; do cat >conftest.$ac_ext <<_ACEOF -#line 31235 "configure" +#line 31373 "configure" #include "confdefs.h" $cf_utmp_includes int @@ -31246,16 +31384,16 @@ struct $cf_cv_have_utmp x; } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:31249: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:31387: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:31252: \$? = $ac_status" >&5 + echo "$as_me:31390: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:31255: \"$ac_try\"") >&5 + { (eval echo "$as_me:31393: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:31258: \$? = $ac_status" >&5 + echo "$as_me:31396: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_have_utmp_ut_name=$cf_header break @@ -31267,12 +31405,12 @@ rm -f conftest.$ac_objext conftest.$ac_ext done fi -echo "$as_me:31270: result: $cf_cv_have_utmp_ut_name" >&5 +echo "$as_me:31408: 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:31275: error: Cannot find declaration for ut.ut_name" >&5 + { { echo "$as_me:31413: 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; }; } ;; @@ -31287,7 +31425,7 @@ esac fi if test $cf_cv_have_utmp != no ; then -echo "$as_me:31290: checking for exit-status in $cf_cv_have_utmp" >&5 +echo "$as_me:31428: 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 @@ -31300,7 +31438,7 @@ for cf_result in \ ut_exit.ut_exit do cat >conftest.$ac_ext <<_ACEOF -#line 31303 "configure" +#line 31441 "configure" #include "confdefs.h" #include <sys/types.h> @@ -31314,16 +31452,16 @@ struct $cf_cv_have_utmp x; long y = x.$cf_result = 0 } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:31317: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:31455: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:31320: \$? = $ac_status" >&5 + echo "$as_me:31458: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:31323: \"$ac_try\"") >&5 + { (eval echo "$as_me:31461: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:31326: \$? = $ac_status" >&5 + echo "$as_me:31464: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_have_utmp_ut_xstatus=$cf_result break @@ -31336,7 +31474,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext done fi -echo "$as_me:31339: result: $cf_cv_have_utmp_ut_xstatus" >&5 +echo "$as_me:31477: 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 @@ -31352,14 +31490,14 @@ fi fi if test $cf_cv_have_utmp != no ; then -echo "$as_me:31355: checking if ${cf_cv_have_utmp}.ut_xtime is declared" >&5 +echo "$as_me:31493: 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 31362 "configure" +#line 31500 "configure" #include "confdefs.h" #include <sys/types.h> @@ -31373,23 +31511,23 @@ struct $cf_cv_have_utmp x; long y = x.ut_xtime = 0 } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:31376: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:31514: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:31379: \$? = $ac_status" >&5 + echo "$as_me:31517: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:31382: \"$ac_try\"") >&5 + { (eval echo "$as_me:31520: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:31385: \$? = $ac_status" >&5 + echo "$as_me:31523: \$? = $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 31392 "configure" +#line 31530 "configure" #include "confdefs.h" #include <sys/types.h> @@ -31403,16 +31541,16 @@ struct $cf_cv_have_utmp x; long y = x.ut_tv.tv_sec } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:31406: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:31544: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:31409: \$? = $ac_status" >&5 + echo "$as_me:31547: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:31412: \"$ac_try\"") >&5 + { (eval echo "$as_me:31550: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:31415: \$? = $ac_status" >&5 + echo "$as_me:31553: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_have_utmp_ut_xtime=define else @@ -31426,7 +31564,7 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:31429: result: $cf_cv_have_utmp_ut_xtime" >&5 +echo "$as_me:31567: 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 @@ -31445,14 +31583,14 @@ fi fi if test $cf_cv_have_utmp != no ; then -echo "$as_me:31448: checking if ${cf_cv_have_utmp}.ut_session is declared" >&5 +echo "$as_me:31586: 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 31455 "configure" +#line 31593 "configure" #include "confdefs.h" #include <sys/types.h> @@ -31466,16 +31604,16 @@ struct $cf_cv_have_utmp x; long y = x.ut_session } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:31469: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:31607: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:31472: \$? = $ac_status" >&5 + echo "$as_me:31610: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:31475: \"$ac_try\"") >&5 + { (eval echo "$as_me:31613: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:31478: \$? = $ac_status" >&5 + echo "$as_me:31616: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_have_utmp_ut_session=yes else @@ -31486,7 +31624,7 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:31489: result: $cf_cv_have_utmp_ut_session" >&5 +echo "$as_me:31627: 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 @@ -31497,7 +31635,7 @@ EOF fi fi -echo "$as_me:31500: checking if $cf_cv_have_utmp is SYSV flavor" >&5 +echo "$as_me:31638: 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 @@ -31505,7 +31643,7 @@ else test "$cf_cv_have_utmp" = "utmp" && cf_prefix="ut" || cf_prefix="utx" cat >conftest.$ac_ext <<_ACEOF -#line 31508 "configure" +#line 31646 "configure" #include "confdefs.h" #include <sys/types.h> @@ -31524,16 +31662,16 @@ struct $cf_cv_have_utmp x; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:31527: \"$ac_link\"") >&5 +if { (eval echo "$as_me:31665: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:31530: \$? = $ac_status" >&5 + echo "$as_me:31668: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:31533: \"$ac_try\"") >&5 + { (eval echo "$as_me:31671: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:31536: \$? = $ac_status" >&5 + echo "$as_me:31674: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_sysv_utmp=yes else @@ -31544,7 +31682,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:31547: result: $cf_cv_sysv_utmp" >&5 +echo "$as_me:31685: result: $cf_cv_sysv_utmp" >&5 echo "${ECHO_T}$cf_cv_sysv_utmp" >&6 test $cf_cv_sysv_utmp = yes && cat >>confdefs.h <<\EOF @@ -31553,14 +31691,14 @@ EOF fi -echo "$as_me:31556: checking if external h_errno exists" >&5 +echo "$as_me:31694: 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 31563 "configure" +#line 31701 "configure" #include "confdefs.h" #undef h_errno @@ -31575,16 +31713,16 @@ h_errno = 2 } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:31578: \"$ac_link\"") >&5 +if { (eval echo "$as_me:31716: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:31581: \$? = $ac_status" >&5 + echo "$as_me:31719: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:31584: \"$ac_try\"") >&5 + { (eval echo "$as_me:31722: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:31587: \$? = $ac_status" >&5 + echo "$as_me:31725: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_have_h_errno=yes else @@ -31595,7 +31733,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:31598: result: $cf_cv_have_h_errno" >&5 +echo "$as_me:31736: 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 @@ -31608,7 +31746,7 @@ EOF fi -echo "$as_me:31611: checking if bibp: URLs should be supported" >&5 +echo "$as_me:31749: 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. @@ -31625,14 +31763,14 @@ else use_bibp_urls=yes fi; -echo "$as_me:31628: result: $use_bibp_urls" >&5 +echo "$as_me:31766: 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:31635: checking if configuration info should be browsable" >&5 +echo "$as_me:31773: 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. @@ -31649,14 +31787,14 @@ else use_config_info=yes fi; -echo "$as_me:31652: result: $use_config_info" >&5 +echo "$as_me:31790: 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:31659: checking if new-style forms-based options screen should be used" >&5 +echo "$as_me:31797: 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. @@ -31673,14 +31811,14 @@ else use_forms_options=yes fi; -echo "$as_me:31676: result: $use_forms_options" >&5 +echo "$as_me:31814: 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:31683: checking if old-style options menu should be used" >&5 +echo "$as_me:31821: 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. @@ -31697,14 +31835,14 @@ else use_menu_options=yes fi; -echo "$as_me:31700: result: $use_menu_options" >&5 +echo "$as_me:31838: 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:31707: checking if sessions code should be used" >&5 +echo "$as_me:31845: 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. @@ -31721,7 +31859,7 @@ else use_sessions=yes fi; -echo "$as_me:31724: result: $use_sessions" >&5 +echo "$as_me:31862: result: $use_sessions" >&5 echo "${ECHO_T}$use_sessions" >&6 if test $use_sessions != no ; then @@ -31732,7 +31870,7 @@ EOF EXTRA_OBJS="$EXTRA_OBJS LYSession\$o" fi -echo "$as_me:31735: checking if session-caching code should be used" >&5 +echo "$as_me:31873: 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. @@ -31749,7 +31887,7 @@ else use_session_cache=yes fi; -echo "$as_me:31752: result: $use_session_cache" >&5 +echo "$as_me:31890: result: $use_session_cache" >&5 echo "${ECHO_T}$use_session_cache" >&6 if test $use_session_cache != no ; then @@ -31759,7 +31897,7 @@ EOF fi -echo "$as_me:31762: checking if address-list page should be used" >&5 +echo "$as_me:31900: 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. @@ -31776,14 +31914,14 @@ else use_addrlist_page=yes fi; -echo "$as_me:31779: result: $use_addrlist_page" >&5 +echo "$as_me:31917: 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:31786: checking if experimental CJK logic should be used" >&5 +echo "$as_me:31924: checking if experimental CJK logic should be used" >&5 echo $ECHO_N "checking if experimental CJK logic should be used... $ECHO_C" >&6 # Check whether --enable-cjk or --disable-cjk was given. @@ -31800,14 +31938,14 @@ else use_cjk=no fi; -echo "$as_me:31803: result: $use_cjk" >&5 +echo "$as_me:31941: result: $use_cjk" >&5 echo "${ECHO_T}$use_cjk" >&6 test $use_cjk != no && cat >>confdefs.h <<\EOF #define CJK_EX 1 EOF -echo "$as_me:31810: checking if experimental Japanese UTF-8 logic should be used" >&5 +echo "$as_me:31948: checking if experimental Japanese UTF-8 logic should be used" >&5 echo $ECHO_N "checking if experimental Japanese UTF-8 logic should be used... $ECHO_C" >&6 # Check whether --enable-japanese-utf8 or --disable-japanese-utf8 was given. @@ -31824,7 +31962,7 @@ else use_ja_utf8=no fi; -echo "$as_me:31827: result: $use_ja_utf8" >&5 +echo "$as_me:31965: result: $use_ja_utf8" >&5 echo "${ECHO_T}$use_ja_utf8" >&6 if test $use_ja_utf8 != no ; then @@ -31870,7 +32008,7 @@ if test -n "$cf_searchpath/include" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 31873 "configure" +#line 32011 "configure" #include "confdefs.h" #include <stdio.h> int @@ -31882,16 +32020,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:31885: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:32023: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:31888: \$? = $ac_status" >&5 + echo "$as_me:32026: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:31891: \"$ac_try\"") >&5 + { (eval echo "$as_me:32029: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:31894: \$? = $ac_status" >&5 + echo "$as_me:32032: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -31908,7 +32046,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}:31911: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:32049: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -31951,7 +32089,7 @@ if test -n "$cf_searchpath/../include" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 31954 "configure" +#line 32092 "configure" #include "confdefs.h" #include <stdio.h> int @@ -31963,16 +32101,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:31966: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:32104: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:31969: \$? = $ac_status" >&5 + echo "$as_me:32107: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:31972: \"$ac_try\"") >&5 + { (eval echo "$as_me:32110: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:31975: \$? = $ac_status" >&5 + echo "$as_me:32113: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -31989,7 +32127,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}:31992: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:32130: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -32007,7 +32145,7 @@ echo "${as_me:-configure}:31992: testing adding $cf_add_incdir to include-path . fi else -{ { echo "$as_me:32010: error: cannot find libiconv under $withval" >&5 +{ { echo "$as_me:32148: error: cannot find libiconv under $withval" >&5 echo "$as_me: error: cannot find libiconv under $withval" >&2;} { (exit 1); exit 1; }; } fi @@ -32032,7 +32170,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}:32035: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:32173: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -32061,7 +32199,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}:32064: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:32202: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -32070,7 +32208,7 @@ echo "${as_me:-configure}:32064: testing adding $cf_add_libdir to library-path . fi else -{ { echo "$as_me:32073: error: cannot find libiconv under $withval" >&5 +{ { echo "$as_me:32211: error: cannot find libiconv under $withval" >&5 echo "$as_me: error: cannot find libiconv under $withval" >&2;} { (exit 1); exit 1; }; } fi @@ -32081,7 +32219,7 @@ esac fi; - echo "$as_me:32084: checking for iconv" >&5 + echo "$as_me:32222: 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 @@ -32092,12 +32230,12 @@ else cf_cv_header_path_iconv= cf_cv_library_path_iconv= -echo "${as_me:-configure}:32095: testing Starting FIND_LINKAGE(iconv,) ..." 1>&5 +echo "${as_me:-configure}:32233: testing Starting FIND_LINKAGE(iconv,) ..." 1>&5 cf_save_LIBS="$LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 32100 "configure" +#line 32238 "configure" #include "confdefs.h" #include <stdlib.h> @@ -32116,16 +32254,16 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:32119: \"$ac_link\"") >&5 +if { (eval echo "$as_me:32257: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:32122: \$? = $ac_status" >&5 + echo "$as_me:32260: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:32125: \"$ac_try\"") >&5 + { (eval echo "$as_me:32263: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:32128: \$? = $ac_status" >&5 + echo "$as_me:32266: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_find_linkage_iconv=yes @@ -32139,7 +32277,7 @@ cat conftest.$ac_ext >&5 LIBS="-liconv $cf_save_LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 32142 "configure" +#line 32280 "configure" #include "confdefs.h" #include <stdlib.h> @@ -32158,16 +32296,16 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:32161: \"$ac_link\"") >&5 +if { (eval echo "$as_me:32299: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:32164: \$? = $ac_status" >&5 + echo "$as_me:32302: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:32167: \"$ac_try\"") >&5 + { (eval echo "$as_me:32305: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:32170: \$? = $ac_status" >&5 + echo "$as_me:32308: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_find_linkage_iconv=yes @@ -32184,9 +32322,9 @@ cat conftest.$ac_ext >&5 test -n "$verbose" && echo " find linkage for iconv library" 1>&6 -echo "${as_me:-configure}:32187: testing find linkage for iconv library ..." 1>&5 +echo "${as_me:-configure}:32325: testing find linkage for iconv library ..." 1>&5 -echo "${as_me:-configure}:32189: testing Searching for headers in FIND_LINKAGE(iconv,) ..." 1>&5 +echo "${as_me:-configure}:32327: testing Searching for headers in FIND_LINKAGE(iconv,) ..." 1>&5 cf_save_CPPFLAGS="$CPPFLAGS" cf_test_CPPFLAGS="$CPPFLAGS" @@ -32277,11 +32415,11 @@ 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}:32280: testing ... testing $cf_cv_header_path_iconv ..." 1>&5 +echo "${as_me:-configure}:32418: testing ... testing $cf_cv_header_path_iconv ..." 1>&5 CPPFLAGS="$cf_save_CPPFLAGS -I$cf_cv_header_path_iconv" cat >conftest.$ac_ext <<_ACEOF -#line 32284 "configure" +#line 32422 "configure" #include "confdefs.h" #include <stdlib.h> @@ -32300,21 +32438,21 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:32303: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:32441: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:32306: \$? = $ac_status" >&5 + echo "$as_me:32444: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:32309: \"$ac_try\"") >&5 + { (eval echo "$as_me:32447: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:32312: \$? = $ac_status" >&5 + echo "$as_me:32450: \$? = $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}:32317: testing ... found iconv headers in $cf_cv_header_path_iconv ..." 1>&5 +echo "${as_me:-configure}:32455: testing ... found iconv headers in $cf_cv_header_path_iconv ..." 1>&5 cf_cv_find_linkage_iconv=maybe cf_test_CPPFLAGS="$CPPFLAGS" @@ -32332,7 +32470,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "$cf_cv_find_linkage_iconv" = maybe ; then -echo "${as_me:-configure}:32335: testing Searching for iconv library in FIND_LINKAGE(iconv,) ..." 1>&5 +echo "${as_me:-configure}:32473: testing Searching for iconv library in FIND_LINKAGE(iconv,) ..." 1>&5 cf_save_LIBS="$LIBS" cf_save_LDFLAGS="$LDFLAGS" @@ -32407,13 +32545,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}:32410: testing ... testing $cf_cv_library_path_iconv ..." 1>&5 +echo "${as_me:-configure}:32548: 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 32416 "configure" +#line 32554 "configure" #include "confdefs.h" #include <stdlib.h> @@ -32432,21 +32570,21 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:32435: \"$ac_link\"") >&5 +if { (eval echo "$as_me:32573: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:32438: \$? = $ac_status" >&5 + echo "$as_me:32576: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:32441: \"$ac_try\"") >&5 + { (eval echo "$as_me:32579: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:32444: \$? = $ac_status" >&5 + echo "$as_me:32582: \$? = $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}:32449: testing ... found iconv library in $cf_cv_library_path_iconv ..." 1>&5 +echo "${as_me:-configure}:32587: testing ... found iconv library in $cf_cv_library_path_iconv ..." 1>&5 cf_cv_find_linkage_iconv=yes cf_cv_library_file_iconv="-liconv" @@ -32486,7 +32624,7 @@ am_cv_func_iconv="no, consider installing GNU libiconv" fi fi -echo "$as_me:32489: result: $am_cv_func_iconv" >&5 +echo "$as_me:32627: result: $am_cv_func_iconv" >&5 echo "${ECHO_T}$am_cv_func_iconv" >&6 if test "$am_cv_func_iconv" = yes; then @@ -32495,14 +32633,14 @@ cat >>confdefs.h <<\EOF #define HAVE_ICONV 1 EOF - echo "$as_me:32498: checking if the declaration of iconv() needs const." >&5 + echo "$as_me:32636: 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 32505 "configure" +#line 32643 "configure" #include "confdefs.h" #include <stdlib.h> @@ -32527,16 +32665,16 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:32530: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:32668: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:32533: \$? = $ac_status" >&5 + echo "$as_me:32671: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:32536: \"$ac_try\"") >&5 + { (eval echo "$as_me:32674: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:32539: \$? = $ac_status" >&5 + echo "$as_me:32677: \$? = $ac_status" >&5 (exit $ac_status); }; }; then am_cv_proto_iconv_const=no else @@ -32546,7 +32684,7 @@ am_cv_proto_iconv_const=yes fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:32549: result: $am_cv_proto_iconv_const" >&5 +echo "$as_me:32687: 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 @@ -32588,7 +32726,7 @@ if test -n "$cf_cv_header_path_iconv" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 32591 "configure" +#line 32729 "configure" #include "confdefs.h" #include <stdio.h> int @@ -32600,16 +32738,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:32603: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:32741: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:32606: \$? = $ac_status" >&5 + echo "$as_me:32744: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:32609: \"$ac_try\"") >&5 + { (eval echo "$as_me:32747: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:32612: \$? = $ac_status" >&5 + echo "$as_me:32750: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -32626,7 +32764,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}:32629: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:32767: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -32665,7 +32803,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}:32668: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:32806: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -32689,7 +32827,7 @@ case $cf_cv_screen in esac if test "$use_dft_colors" != no ; then -echo "$as_me:32692: checking if you want to use default-colors" >&5 +echo "$as_me:32830: 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. @@ -32706,7 +32844,7 @@ else use_dft_colors=no fi; -echo "$as_me:32709: result: $use_dft_colors" >&5 +echo "$as_me:32847: result: $use_dft_colors" >&5 echo "${ECHO_T}$use_dft_colors" >&6 test $use_dft_colors = "yes" && cat >>confdefs.h <<\EOF @@ -32715,7 +32853,7 @@ EOF fi -echo "$as_me:32718: checking if experimental keyboard-layout logic should be used" >&5 +echo "$as_me:32856: 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. @@ -32732,14 +32870,14 @@ else use_kbd_layout=no fi; -echo "$as_me:32735: result: $use_kbd_layout" >&5 +echo "$as_me:32873: 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:32742: checking if experimental nested-table logic should be used" >&5 +echo "$as_me:32880: 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. @@ -32756,14 +32894,14 @@ else use_nested_tables=no fi; -echo "$as_me:32759: result: $use_nested_tables" >&5 +echo "$as_me:32897: 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:32766: checking if alternative line-edit bindings should be used" >&5 +echo "$as_me:32904: 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. @@ -32780,14 +32918,14 @@ else use_alt_bindings=yes fi; -echo "$as_me:32783: result: $use_alt_bindings" >&5 +echo "$as_me:32921: 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:32790: checking if ascii case-conversion should be used" >&5 +echo "$as_me:32928: 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. @@ -32804,14 +32942,14 @@ else use_ascii_ctypes=yes fi; -echo "$as_me:32807: result: $use_ascii_ctypes" >&5 +echo "$as_me:32945: 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:32814: checking if you want to use extended HTML DTD logic" >&5 +echo "$as_me:32952: 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. @@ -32828,14 +32966,14 @@ else use_ext_htmldtd=yes fi; -echo "$as_me:32831: result: $use_ext_htmldtd" >&5 +echo "$as_me:32969: 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:32838: checking if file-upload logic should be used" >&5 +echo "$as_me:32976: 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. @@ -32852,14 +32990,14 @@ else use_file_upload=yes fi; -echo "$as_me:32855: result: $use_file_upload" >&5 +echo "$as_me:32993: 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:32862: checking if IDNA support should be used" >&5 +echo "$as_me:33000: 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. @@ -32876,7 +33014,7 @@ else use_idna=yes fi; -echo "$as_me:32879: result: $use_idna" >&5 +echo "$as_me:33017: result: $use_idna" >&5 echo "${ECHO_T}$use_idna" >&6 if test "$use_idna" = yes ; then @@ -32915,7 +33053,7 @@ if test -n "$cf_searchpath/include" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 32918 "configure" +#line 33056 "configure" #include "confdefs.h" #include <stdio.h> int @@ -32927,16 +33065,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:32930: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:33068: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:32933: \$? = $ac_status" >&5 + echo "$as_me:33071: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:32936: \"$ac_try\"") >&5 + { (eval echo "$as_me:33074: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:32939: \$? = $ac_status" >&5 + echo "$as_me:33077: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -32953,7 +33091,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}:32956: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:33094: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -32996,7 +33134,7 @@ if test -n "$cf_searchpath/../include" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 32999 "configure" +#line 33137 "configure" #include "confdefs.h" #include <stdio.h> int @@ -33008,16 +33146,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:33011: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:33149: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:33014: \$? = $ac_status" >&5 + echo "$as_me:33152: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:33017: \"$ac_try\"") >&5 + { (eval echo "$as_me:33155: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:33020: \$? = $ac_status" >&5 + echo "$as_me:33158: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -33034,7 +33172,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}:33037: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:33175: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -33052,7 +33190,7 @@ echo "${as_me:-configure}:33037: testing adding $cf_add_incdir to include-path . fi else -{ { echo "$as_me:33055: error: cannot find under $use_idna" >&5 +{ { echo "$as_me:33193: error: cannot find under $use_idna" >&5 echo "$as_me: error: cannot find under $use_idna" >&2;} { (exit 1); exit 1; }; } fi @@ -33077,7 +33215,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}:33080: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:33218: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -33106,7 +33244,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}:33109: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:33247: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -33115,7 +33253,7 @@ echo "${as_me:-configure}:33109: testing adding $cf_add_libdir to library-path . fi else -{ { echo "$as_me:33118: error: cannot find under $use_idna" >&5 +{ { echo "$as_me:33256: error: cannot find under $use_idna" >&5 echo "$as_me: error: cannot find under $use_idna" >&2;} { (exit 1); exit 1; }; } fi @@ -33129,12 +33267,12 @@ esac cf_cv_header_path_idn= cf_cv_library_path_idn= -echo "${as_me:-configure}:33132: testing Starting FIND_LINKAGE(idn,) ..." 1>&5 +echo "${as_me:-configure}:33270: testing Starting FIND_LINKAGE(idn,) ..." 1>&5 cf_save_LIBS="$LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 33137 "configure" +#line 33275 "configure" #include "confdefs.h" #include <stdio.h> @@ -33152,16 +33290,16 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:33155: \"$ac_link\"") >&5 +if { (eval echo "$as_me:33293: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:33158: \$? = $ac_status" >&5 + echo "$as_me:33296: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:33161: \"$ac_try\"") >&5 + { (eval echo "$as_me:33299: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:33164: \$? = $ac_status" >&5 + echo "$as_me:33302: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_find_linkage_idn=yes @@ -33175,7 +33313,7 @@ cat conftest.$ac_ext >&5 LIBS="-lidn $LIBICONV $cf_save_LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 33178 "configure" +#line 33316 "configure" #include "confdefs.h" #include <stdio.h> @@ -33193,16 +33331,16 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:33196: \"$ac_link\"") >&5 +if { (eval echo "$as_me:33334: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:33199: \$? = $ac_status" >&5 + echo "$as_me:33337: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:33202: \"$ac_try\"") >&5 + { (eval echo "$as_me:33340: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:33205: \$? = $ac_status" >&5 + echo "$as_me:33343: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_find_linkage_idn=yes @@ -33219,9 +33357,9 @@ cat conftest.$ac_ext >&5 test -n "$verbose" && echo " find linkage for idn library" 1>&6 -echo "${as_me:-configure}:33222: testing find linkage for idn library ..." 1>&5 +echo "${as_me:-configure}:33360: testing find linkage for idn library ..." 1>&5 -echo "${as_me:-configure}:33224: testing Searching for headers in FIND_LINKAGE(idn,) ..." 1>&5 +echo "${as_me:-configure}:33362: testing Searching for headers in FIND_LINKAGE(idn,) ..." 1>&5 cf_save_CPPFLAGS="$CPPFLAGS" cf_test_CPPFLAGS="$CPPFLAGS" @@ -33312,11 +33450,11 @@ 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}:33315: testing ... testing $cf_cv_header_path_idn ..." 1>&5 +echo "${as_me:-configure}:33453: testing ... testing $cf_cv_header_path_idn ..." 1>&5 CPPFLAGS="$cf_save_CPPFLAGS -I$cf_cv_header_path_idn" cat >conftest.$ac_ext <<_ACEOF -#line 33319 "configure" +#line 33457 "configure" #include "confdefs.h" #include <stdio.h> @@ -33334,21 +33472,21 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:33337: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:33475: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:33340: \$? = $ac_status" >&5 + echo "$as_me:33478: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:33343: \"$ac_try\"") >&5 + { (eval echo "$as_me:33481: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:33346: \$? = $ac_status" >&5 + echo "$as_me:33484: \$? = $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}:33351: testing ... found idn headers in $cf_cv_header_path_idn ..." 1>&5 +echo "${as_me:-configure}:33489: testing ... found idn headers in $cf_cv_header_path_idn ..." 1>&5 cf_cv_find_linkage_idn=maybe cf_test_CPPFLAGS="$CPPFLAGS" @@ -33366,7 +33504,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "$cf_cv_find_linkage_idn" = maybe ; then -echo "${as_me:-configure}:33369: testing Searching for idn library in FIND_LINKAGE(idn,) ..." 1>&5 +echo "${as_me:-configure}:33507: testing Searching for idn library in FIND_LINKAGE(idn,) ..." 1>&5 cf_save_LIBS="$LIBS" cf_save_LDFLAGS="$LDFLAGS" @@ -33441,13 +33579,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}:33444: testing ... testing $cf_cv_library_path_idn ..." 1>&5 +echo "${as_me:-configure}:33582: 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 33450 "configure" +#line 33588 "configure" #include "confdefs.h" #include <stdio.h> @@ -33465,21 +33603,21 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:33468: \"$ac_link\"") >&5 +if { (eval echo "$as_me:33606: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:33471: \$? = $ac_status" >&5 + echo "$as_me:33609: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:33474: \"$ac_try\"") >&5 + { (eval echo "$as_me:33612: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:33477: \$? = $ac_status" >&5 + echo "$as_me:33615: \$? = $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}:33482: testing ... found idn library in $cf_cv_library_path_idn ..." 1>&5 +echo "${as_me:-configure}:33620: testing ... found idn library in $cf_cv_library_path_idn ..." 1>&5 cf_cv_find_linkage_idn=yes cf_cv_library_file_idn="-lidn" @@ -33538,7 +33676,7 @@ if test -n "$cf_cv_header_path_idn" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 33541 "configure" +#line 33679 "configure" #include "confdefs.h" #include <stdio.h> int @@ -33550,16 +33688,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:33553: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:33691: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:33556: \$? = $ac_status" >&5 + echo "$as_me:33694: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:33559: \"$ac_try\"") >&5 + { (eval echo "$as_me:33697: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:33562: \$? = $ac_status" >&5 + echo "$as_me:33700: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -33576,7 +33714,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}:33579: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:33717: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -33612,7 +33750,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}:33615: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:33753: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -33637,7 +33775,7 @@ done LIBS="$cf_add_libs" else -{ echo "$as_me:33640: WARNING: Cannot find idn library" >&5 +{ echo "$as_me:33778: WARNING: Cannot find idn library" >&5 echo "$as_me: WARNING: Cannot find idn library" >&2;} fi @@ -33651,7 +33789,7 @@ fi fi -echo "$as_me:33654: checking if element-justification logic should be used" >&5 +echo "$as_me:33792: 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. @@ -33668,14 +33806,14 @@ else use_justify_elts=yes fi; -echo "$as_me:33671: result: $use_justify_elts" >&5 +echo "$as_me:33809: 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:33678: checking if partial-display should be used" >&5 +echo "$as_me:33816: 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. @@ -33692,14 +33830,14 @@ else use_partial_display=yes fi; -echo "$as_me:33695: result: $use_partial_display" >&5 +echo "$as_me:33833: 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:33702: checking if persistent-cookie logic should be used" >&5 +echo "$as_me:33840: 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. @@ -33716,14 +33854,14 @@ else use_filed_cookies=yes fi; -echo "$as_me:33719: result: $use_filed_cookies" >&5 +echo "$as_me:33857: 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:33726: checking if html source should be colorized" >&5 +echo "$as_me:33864: 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. @@ -33740,14 +33878,14 @@ else use_prettysrc=yes fi; -echo "$as_me:33743: result: $use_prettysrc" >&5 +echo "$as_me:33881: 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:33750: checking if progress-bar code should be used" >&5 +echo "$as_me:33888: 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. @@ -33764,14 +33902,14 @@ else use_progressbar=yes fi; -echo "$as_me:33767: result: $use_progressbar" >&5 +echo "$as_me:33905: 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:33774: checking if read-progress message should show ETA" >&5 +echo "$as_me:33912: 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. @@ -33788,14 +33926,14 @@ else use_read_eta=yes fi; -echo "$as_me:33791: result: $use_read_eta" >&5 +echo "$as_me:33929: 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:33798: checking if source caching should be used" >&5 +echo "$as_me:33936: 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. @@ -33812,14 +33950,14 @@ else use_source_cache=yes fi; -echo "$as_me:33815: result: $use_source_cache" >&5 +echo "$as_me:33953: 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:33822: checking if scrollbar code should be used" >&5 +echo "$as_me:33960: 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. @@ -33836,10 +33974,10 @@ else use_scrollbar=yes fi; -echo "$as_me:33839: result: $use_scrollbar" >&5 +echo "$as_me:33977: result: $use_scrollbar" >&5 echo "${ECHO_T}$use_scrollbar" >&6 -echo "$as_me:33842: checking if charset-selection logic should be used" >&5 +echo "$as_me:33980: 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. @@ -33856,14 +33994,14 @@ else use_charset_choice=no fi; -echo "$as_me:33859: result: $use_charset_choice" >&5 +echo "$as_me:33997: 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:33866: checking if you want to use external commands" >&5 +echo "$as_me:34004: 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. @@ -33880,7 +34018,7 @@ else use_externs=no fi; -echo "$as_me:33883: result: $use_externs" >&5 +echo "$as_me:34021: result: $use_externs" >&5 echo "${ECHO_T}$use_externs" >&6 if test $use_externs != "no" ; then @@ -33891,7 +34029,7 @@ EOF EXTRA_OBJS="$EXTRA_OBJS LYExtern\$o" fi -echo "$as_me:33894: checking if you want to use setfont support" >&5 +echo "$as_me:34032: 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. @@ -33908,7 +34046,7 @@ else use_setfont=no fi; -echo "$as_me:33911: result: $use_setfont" >&5 +echo "$as_me:34049: result: $use_setfont" >&5 echo "${ECHO_T}$use_setfont" >&6 if test $use_setfont = yes ; then case $host_os in @@ -33919,7 +34057,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:33922: checking for $ac_word" >&5 +echo "$as_me:34060: 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 @@ -33936,7 +34074,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:33939: found $ac_dir/$ac_word" >&5 + echo "$as_me:34077: found $ac_dir/$ac_word" >&5 break fi done @@ -33947,10 +34085,10 @@ fi SETFONT=$ac_cv_path_SETFONT if test -n "$SETFONT"; then - echo "$as_me:33950: result: $SETFONT" >&5 + echo "$as_me:34088: result: $SETFONT" >&5 echo "${ECHO_T}$SETFONT" >&6 else - echo "$as_me:33953: result: no" >&5 + echo "$as_me:34091: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -34009,7 +34147,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me:-configure}:34012: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me:-configure}:34150: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define SETFONT_PATH "$cf_path_prog" @@ -34027,19 +34165,19 @@ fi SETFONT=built-in test -n "$verbose" && echo " Assume $host_os has font-switching" 1>&6 -echo "${as_me:-configure}:34030: testing Assume $host_os has font-switching ..." 1>&5 +echo "${as_me:-configure}:34168: 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}:34037: testing Assume $host_os has no font-switching ..." 1>&5 +echo "${as_me:-configure}:34175: testing Assume $host_os has no font-switching ..." 1>&5 ;; esac if test -z "$SETFONT" ; then - { echo "$as_me:34042: WARNING: Cannot find a font-setting program" >&5 + { echo "$as_me:34180: WARNING: Cannot find a font-setting program" >&5 echo "$as_me: WARNING: Cannot find a font-setting program" >&2;} elif test "$SETFONT" != unknown ; then @@ -34050,7 +34188,7 @@ EOF fi fi -echo "$as_me:34053: checking if you want cgi-link support" >&5 +echo "$as_me:34191: 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. @@ -34067,10 +34205,10 @@ EOF else enableval=no fi; -echo "$as_me:34070: result: $enableval" >&5 +echo "$as_me:34208: result: $enableval" >&5 echo "${ECHO_T}$enableval" >&6 -echo "$as_me:34073: checking if you want change-exec support" >&5 +echo "$as_me:34211: 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. @@ -34087,14 +34225,14 @@ else use_change_exec=no fi; -echo "$as_me:34090: result: $use_change_exec" >&5 +echo "$as_me:34228: 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:34097: checking if you want exec-links support" >&5 +echo "$as_me:34235: 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. @@ -34111,14 +34249,14 @@ else use_exec_links=$enableval fi; -echo "$as_me:34114: result: $use_exec_links" >&5 +echo "$as_me:34252: 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:34121: checking if you want exec-scripts support" >&5 +echo "$as_me:34259: 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. @@ -34135,14 +34273,14 @@ else use_exec_scripts=$enableval fi; -echo "$as_me:34138: result: $use_exec_scripts" >&5 +echo "$as_me:34276: 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:34145: checking if you want internal-links feature" >&5 +echo "$as_me:34283: 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. @@ -34159,14 +34297,14 @@ else use_internal_links=no fi; -echo "$as_me:34162: result: $use_internal_links" >&5 +echo "$as_me:34300: 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:34169: checking if you want to fork NSL requests" >&5 +echo "$as_me:34307: 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. @@ -34183,7 +34321,7 @@ else use_nsl_fork=no fi; -echo "$as_me:34186: result: $use_nsl_fork" >&5 +echo "$as_me:34324: result: $use_nsl_fork" >&5 echo "${ECHO_T}$use_nsl_fork" >&6 if test $use_nsl_fork = yes ; then case $host_os in @@ -34204,7 +34342,7 @@ EOF esac fi -echo "$as_me:34207: checking if you want to log URL requests via syslog" >&5 +echo "$as_me:34345: 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. @@ -34221,14 +34359,14 @@ else use_syslog=no fi; -echo "$as_me:34224: result: $use_syslog" >&5 +echo "$as_me:34362: 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:34231: checking if you want to underline links" >&5 +echo "$as_me:34369: 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. @@ -34245,7 +34383,7 @@ else use_underline=no fi; -echo "$as_me:34248: result: $use_underline" >&5 +echo "$as_me:34386: result: $use_underline" >&5 echo "${ECHO_T}$use_underline" >&6 test $use_underline = yes && cat >>confdefs.h <<\EOF @@ -34257,7 +34395,7 @@ cat >>confdefs.h <<\EOF #define UNDERLINE_LINKS 0 EOF -echo "$as_me:34260: checking if help files should be gzip'ed" >&5 +echo "$as_me:34398: 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. @@ -34274,10 +34412,10 @@ else use_gzip_help=no fi; -echo "$as_me:34277: result: $use_gzip_help" >&5 +echo "$as_me:34415: result: $use_gzip_help" >&5 echo "${ECHO_T}$use_gzip_help" >&6 -echo "$as_me:34280: checking if you want to use libbz2 for decompression of some bzip2 files" >&5 +echo "$as_me:34418: 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. @@ -34287,7 +34425,7 @@ if test "${with_bzlib+set}" = set; then else use_bzlib=no fi; -echo "$as_me:34290: result: $use_bzlib" >&5 +echo "$as_me:34428: result: $use_bzlib" >&5 echo "${ECHO_T}$use_bzlib" >&6 if test ".$use_bzlib" != ".no" ; then @@ -34326,7 +34464,7 @@ if test -n "$cf_searchpath/include" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 34329 "configure" +#line 34467 "configure" #include "confdefs.h" #include <stdio.h> int @@ -34338,16 +34476,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:34341: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:34479: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:34344: \$? = $ac_status" >&5 + echo "$as_me:34482: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:34347: \"$ac_try\"") >&5 + { (eval echo "$as_me:34485: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:34350: \$? = $ac_status" >&5 + echo "$as_me:34488: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -34364,7 +34502,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}:34367: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:34505: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -34407,7 +34545,7 @@ if test -n "$cf_searchpath/../include" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 34410 "configure" +#line 34548 "configure" #include "confdefs.h" #include <stdio.h> int @@ -34419,16 +34557,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:34422: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:34560: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:34425: \$? = $ac_status" >&5 + echo "$as_me:34563: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:34428: \"$ac_try\"") >&5 + { (eval echo "$as_me:34566: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:34431: \$? = $ac_status" >&5 + echo "$as_me:34569: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -34445,7 +34583,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}:34448: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:34586: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -34463,7 +34601,7 @@ echo "${as_me:-configure}:34448: testing adding $cf_add_incdir to include-path . fi else -{ { echo "$as_me:34466: error: cannot find under $use_bzlib" >&5 +{ { echo "$as_me:34604: error: cannot find under $use_bzlib" >&5 echo "$as_me: error: cannot find under $use_bzlib" >&2;} { (exit 1); exit 1; }; } fi @@ -34488,7 +34626,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}:34491: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:34629: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -34517,7 +34655,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}:34520: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:34658: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -34526,7 +34664,7 @@ echo "${as_me:-configure}:34520: testing adding $cf_add_libdir to library-path . fi else -{ { echo "$as_me:34529: error: cannot find under $use_bzlib" >&5 +{ { echo "$as_me:34667: error: cannot find under $use_bzlib" >&5 echo "$as_me: error: cannot find under $use_bzlib" >&2;} { (exit 1); exit 1; }; } fi @@ -34540,12 +34678,12 @@ esac cf_cv_header_path_bz2= cf_cv_library_path_bz2= -echo "${as_me:-configure}:34543: testing Starting FIND_LINKAGE(bz2,bzlib) ..." 1>&5 +echo "${as_me:-configure}:34681: testing Starting FIND_LINKAGE(bz2,bzlib) ..." 1>&5 cf_save_LIBS="$LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 34548 "configure" +#line 34686 "configure" #include "confdefs.h" #include <stdio.h> @@ -34562,16 +34700,16 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:34565: \"$ac_link\"") >&5 +if { (eval echo "$as_me:34703: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:34568: \$? = $ac_status" >&5 + echo "$as_me:34706: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:34571: \"$ac_try\"") >&5 + { (eval echo "$as_me:34709: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:34574: \$? = $ac_status" >&5 + echo "$as_me:34712: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_find_linkage_bz2=yes @@ -34585,7 +34723,7 @@ cat conftest.$ac_ext >&5 LIBS="-lbz2 $cf_save_LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 34588 "configure" +#line 34726 "configure" #include "confdefs.h" #include <stdio.h> @@ -34602,16 +34740,16 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:34605: \"$ac_link\"") >&5 +if { (eval echo "$as_me:34743: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:34608: \$? = $ac_status" >&5 + echo "$as_me:34746: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:34611: \"$ac_try\"") >&5 + { (eval echo "$as_me:34749: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:34614: \$? = $ac_status" >&5 + echo "$as_me:34752: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_find_linkage_bz2=yes @@ -34628,9 +34766,9 @@ cat conftest.$ac_ext >&5 test -n "$verbose" && echo " find linkage for bz2 library" 1>&6 -echo "${as_me:-configure}:34631: testing find linkage for bz2 library ..." 1>&5 +echo "${as_me:-configure}:34769: testing find linkage for bz2 library ..." 1>&5 -echo "${as_me:-configure}:34633: testing Searching for headers in FIND_LINKAGE(bz2,bzlib) ..." 1>&5 +echo "${as_me:-configure}:34771: testing Searching for headers in FIND_LINKAGE(bz2,bzlib) ..." 1>&5 cf_save_CPPFLAGS="$CPPFLAGS" cf_test_CPPFLAGS="$CPPFLAGS" @@ -34721,11 +34859,11 @@ 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}:34724: testing ... testing $cf_cv_header_path_bz2 ..." 1>&5 +echo "${as_me:-configure}:34862: testing ... testing $cf_cv_header_path_bz2 ..." 1>&5 CPPFLAGS="$cf_save_CPPFLAGS -I$cf_cv_header_path_bz2" cat >conftest.$ac_ext <<_ACEOF -#line 34728 "configure" +#line 34866 "configure" #include "confdefs.h" #include <stdio.h> @@ -34742,21 +34880,21 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:34745: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:34883: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:34748: \$? = $ac_status" >&5 + echo "$as_me:34886: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:34751: \"$ac_try\"") >&5 + { (eval echo "$as_me:34889: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:34754: \$? = $ac_status" >&5 + echo "$as_me:34892: \$? = $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}:34759: testing ... found bz2 headers in $cf_cv_header_path_bz2 ..." 1>&5 +echo "${as_me:-configure}:34897: testing ... found bz2 headers in $cf_cv_header_path_bz2 ..." 1>&5 cf_cv_find_linkage_bz2=maybe cf_test_CPPFLAGS="$CPPFLAGS" @@ -34774,7 +34912,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "$cf_cv_find_linkage_bz2" = maybe ; then -echo "${as_me:-configure}:34777: testing Searching for bz2 library in FIND_LINKAGE(bz2,bzlib) ..." 1>&5 +echo "${as_me:-configure}:34915: testing Searching for bz2 library in FIND_LINKAGE(bz2,bzlib) ..." 1>&5 cf_save_LIBS="$LIBS" cf_save_LDFLAGS="$LDFLAGS" @@ -34782,7 +34920,7 @@ echo "${as_me:-configure}:34777: testing Searching for bz2 library in FIND_LINKA CPPFLAGS="$cf_test_CPPFLAGS" LIBS="-lbz2 $cf_save_LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 34785 "configure" +#line 34923 "configure" #include "confdefs.h" #include <stdio.h> @@ -34799,21 +34937,21 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:34802: \"$ac_link\"") >&5 +if { (eval echo "$as_me:34940: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:34805: \$? = $ac_status" >&5 + echo "$as_me:34943: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:34808: \"$ac_try\"") >&5 + { (eval echo "$as_me:34946: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:34811: \$? = $ac_status" >&5 + echo "$as_me:34949: \$? = $ac_status" >&5 (exit $ac_status); }; }; then test -n "$verbose" && echo " ... found bz2 library in system" 1>&6 -echo "${as_me:-configure}:34816: testing ... found bz2 library in system ..." 1>&5 +echo "${as_me:-configure}:34954: testing ... found bz2 library in system ..." 1>&5 cf_cv_find_linkage_bz2=yes else @@ -34894,13 +35032,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}:34897: testing ... testing $cf_cv_library_path_bz2 ..." 1>&5 +echo "${as_me:-configure}:35035: 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 34903 "configure" +#line 35041 "configure" #include "confdefs.h" #include <stdio.h> @@ -34917,21 +35055,21 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:34920: \"$ac_link\"") >&5 +if { (eval echo "$as_me:35058: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:34923: \$? = $ac_status" >&5 + echo "$as_me:35061: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:34926: \"$ac_try\"") >&5 + { (eval echo "$as_me:35064: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:34929: \$? = $ac_status" >&5 + echo "$as_me:35067: \$? = $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}:34934: testing ... found bz2 library in $cf_cv_library_path_bz2 ..." 1>&5 +echo "${as_me:-configure}:35072: testing ... found bz2 library in $cf_cv_library_path_bz2 ..." 1>&5 cf_cv_find_linkage_bz2=yes cf_cv_library_file_bz2="-lbz2" @@ -34990,7 +35128,7 @@ if test -n "$cf_cv_header_path_bz2" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 34993 "configure" +#line 35131 "configure" #include "confdefs.h" #include <stdio.h> int @@ -35002,16 +35140,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:35005: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:35143: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:35008: \$? = $ac_status" >&5 + echo "$as_me:35146: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:35011: \"$ac_try\"") >&5 + { (eval echo "$as_me:35149: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:35014: \$? = $ac_status" >&5 + echo "$as_me:35152: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -35028,7 +35166,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}:35031: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:35169: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -35064,7 +35202,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}:35067: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:35205: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -35089,7 +35227,7 @@ done LIBS="$cf_add_libs" else -{ echo "$as_me:35092: WARNING: Cannot find bz2 library" >&5 +{ echo "$as_me:35230: WARNING: Cannot find bz2 library" >&5 echo "$as_me: WARNING: Cannot find bz2 library" >&2;} fi @@ -35100,7 +35238,7 @@ EOF fi -echo "$as_me:35103: checking if you want to use zlib for decompression of some gzip files" >&5 +echo "$as_me:35241: 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. @@ -35110,7 +35248,7 @@ if test "${with_zlib+set}" = set; then else use_zlib=no fi; -echo "$as_me:35113: result: $use_zlib" >&5 +echo "$as_me:35251: result: $use_zlib" >&5 echo "${ECHO_T}$use_zlib" >&6 if test ".$use_zlib" != ".no" ; then @@ -35149,7 +35287,7 @@ if test -n "$cf_searchpath/include" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 35152 "configure" +#line 35290 "configure" #include "confdefs.h" #include <stdio.h> int @@ -35161,16 +35299,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:35164: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:35302: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:35167: \$? = $ac_status" >&5 + echo "$as_me:35305: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:35170: \"$ac_try\"") >&5 + { (eval echo "$as_me:35308: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:35173: \$? = $ac_status" >&5 + echo "$as_me:35311: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -35187,7 +35325,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}:35190: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:35328: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -35230,7 +35368,7 @@ if test -n "$cf_searchpath/../include" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 35233 "configure" +#line 35371 "configure" #include "confdefs.h" #include <stdio.h> int @@ -35242,16 +35380,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:35245: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:35383: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:35248: \$? = $ac_status" >&5 + echo "$as_me:35386: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:35251: \"$ac_try\"") >&5 + { (eval echo "$as_me:35389: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:35254: \$? = $ac_status" >&5 + echo "$as_me:35392: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -35268,7 +35406,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}:35271: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:35409: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -35286,7 +35424,7 @@ echo "${as_me:-configure}:35271: testing adding $cf_add_incdir to include-path . fi else -{ { echo "$as_me:35289: error: cannot find under $use_zlib" >&5 +{ { echo "$as_me:35427: error: cannot find under $use_zlib" >&5 echo "$as_me: error: cannot find under $use_zlib" >&2;} { (exit 1); exit 1; }; } fi @@ -35311,7 +35449,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}:35314: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:35452: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -35340,7 +35478,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}:35343: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:35481: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -35349,7 +35487,7 @@ echo "${as_me:-configure}:35343: testing adding $cf_add_libdir to library-path . fi else -{ { echo "$as_me:35352: error: cannot find under $use_zlib" >&5 +{ { echo "$as_me:35490: error: cannot find under $use_zlib" >&5 echo "$as_me: error: cannot find under $use_zlib" >&2;} { (exit 1); exit 1; }; } fi @@ -35363,12 +35501,12 @@ esac cf_cv_header_path_z= cf_cv_library_path_z= -echo "${as_me:-configure}:35366: testing Starting FIND_LINKAGE(z,zlib) ..." 1>&5 +echo "${as_me:-configure}:35504: testing Starting FIND_LINKAGE(z,zlib) ..." 1>&5 cf_save_LIBS="$LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 35371 "configure" +#line 35509 "configure" #include "confdefs.h" #include <zlib.h> @@ -35384,16 +35522,16 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:35387: \"$ac_link\"") >&5 +if { (eval echo "$as_me:35525: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:35390: \$? = $ac_status" >&5 + echo "$as_me:35528: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:35393: \"$ac_try\"") >&5 + { (eval echo "$as_me:35531: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:35396: \$? = $ac_status" >&5 + echo "$as_me:35534: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_find_linkage_z=yes @@ -35407,7 +35545,7 @@ cat conftest.$ac_ext >&5 LIBS="-lz $cf_save_LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 35410 "configure" +#line 35548 "configure" #include "confdefs.h" #include <zlib.h> @@ -35423,16 +35561,16 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:35426: \"$ac_link\"") >&5 +if { (eval echo "$as_me:35564: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:35429: \$? = $ac_status" >&5 + echo "$as_me:35567: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:35432: \"$ac_try\"") >&5 + { (eval echo "$as_me:35570: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:35435: \$? = $ac_status" >&5 + echo "$as_me:35573: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_find_linkage_z=yes @@ -35449,9 +35587,9 @@ cat conftest.$ac_ext >&5 test -n "$verbose" && echo " find linkage for z library" 1>&6 -echo "${as_me:-configure}:35452: testing find linkage for z library ..." 1>&5 +echo "${as_me:-configure}:35590: testing find linkage for z library ..." 1>&5 -echo "${as_me:-configure}:35454: testing Searching for headers in FIND_LINKAGE(z,zlib) ..." 1>&5 +echo "${as_me:-configure}:35592: testing Searching for headers in FIND_LINKAGE(z,zlib) ..." 1>&5 cf_save_CPPFLAGS="$CPPFLAGS" cf_test_CPPFLAGS="$CPPFLAGS" @@ -35542,11 +35680,11 @@ 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}:35545: testing ... testing $cf_cv_header_path_z ..." 1>&5 +echo "${as_me:-configure}:35683: testing ... testing $cf_cv_header_path_z ..." 1>&5 CPPFLAGS="$cf_save_CPPFLAGS -I$cf_cv_header_path_z" cat >conftest.$ac_ext <<_ACEOF -#line 35549 "configure" +#line 35687 "configure" #include "confdefs.h" #include <zlib.h> @@ -35562,21 +35700,21 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:35565: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:35703: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:35568: \$? = $ac_status" >&5 + echo "$as_me:35706: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:35571: \"$ac_try\"") >&5 + { (eval echo "$as_me:35709: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:35574: \$? = $ac_status" >&5 + echo "$as_me:35712: \$? = $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}:35579: testing ... found z headers in $cf_cv_header_path_z ..." 1>&5 +echo "${as_me:-configure}:35717: testing ... found z headers in $cf_cv_header_path_z ..." 1>&5 cf_cv_find_linkage_z=maybe cf_test_CPPFLAGS="$CPPFLAGS" @@ -35594,7 +35732,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "$cf_cv_find_linkage_z" = maybe ; then -echo "${as_me:-configure}:35597: testing Searching for z library in FIND_LINKAGE(z,zlib) ..." 1>&5 +echo "${as_me:-configure}:35735: testing Searching for z library in FIND_LINKAGE(z,zlib) ..." 1>&5 cf_save_LIBS="$LIBS" cf_save_LDFLAGS="$LDFLAGS" @@ -35602,7 +35740,7 @@ echo "${as_me:-configure}:35597: testing Searching for z library in FIND_LINKAGE CPPFLAGS="$cf_test_CPPFLAGS" LIBS="-lz $cf_save_LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 35605 "configure" +#line 35743 "configure" #include "confdefs.h" #include <zlib.h> @@ -35618,21 +35756,21 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:35621: \"$ac_link\"") >&5 +if { (eval echo "$as_me:35759: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:35624: \$? = $ac_status" >&5 + echo "$as_me:35762: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:35627: \"$ac_try\"") >&5 + { (eval echo "$as_me:35765: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:35630: \$? = $ac_status" >&5 + echo "$as_me:35768: \$? = $ac_status" >&5 (exit $ac_status); }; }; then test -n "$verbose" && echo " ... found z library in system" 1>&6 -echo "${as_me:-configure}:35635: testing ... found z library in system ..." 1>&5 +echo "${as_me:-configure}:35773: testing ... found z library in system ..." 1>&5 cf_cv_find_linkage_z=yes else @@ -35713,13 +35851,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}:35716: testing ... testing $cf_cv_library_path_z ..." 1>&5 +echo "${as_me:-configure}:35854: 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 35722 "configure" +#line 35860 "configure" #include "confdefs.h" #include <zlib.h> @@ -35735,21 +35873,21 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:35738: \"$ac_link\"") >&5 +if { (eval echo "$as_me:35876: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:35741: \$? = $ac_status" >&5 + echo "$as_me:35879: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:35744: \"$ac_try\"") >&5 + { (eval echo "$as_me:35882: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:35747: \$? = $ac_status" >&5 + echo "$as_me:35885: \$? = $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}:35752: testing ... found z library in $cf_cv_library_path_z ..." 1>&5 +echo "${as_me:-configure}:35890: testing ... found z library in $cf_cv_library_path_z ..." 1>&5 cf_cv_find_linkage_z=yes cf_cv_library_file_z="-lz" @@ -35808,7 +35946,7 @@ if test -n "$cf_cv_header_path_z" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 35811 "configure" +#line 35949 "configure" #include "confdefs.h" #include <stdio.h> int @@ -35820,16 +35958,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:35823: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:35961: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:35826: \$? = $ac_status" >&5 + echo "$as_me:35964: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:35829: \"$ac_try\"") >&5 + { (eval echo "$as_me:35967: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:35832: \$? = $ac_status" >&5 + echo "$as_me:35970: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -35846,7 +35984,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}:35849: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:35987: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -35882,7 +36020,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}:35885: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:36023: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -35907,7 +36045,7 @@ done LIBS="$cf_add_libs" else -{ echo "$as_me:35910: WARNING: Cannot find z library" >&5 +{ echo "$as_me:36048: WARNING: Cannot find z library" >&5 echo "$as_me: WARNING: Cannot find z library" >&2;} fi @@ -35916,13 +36054,13 @@ for ac_func in \ do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` -echo "$as_me:35919: checking for $ac_func" >&5 +echo "$as_me:36057: 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 35925 "configure" +#line 36063 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. */ @@ -35953,16 +36091,16 @@ f = $ac_func; /* workaround for ICC 12.0.3 */ if (f == 0) return 1; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:35956: \"$ac_link\"") >&5 +if { (eval echo "$as_me:36094: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:35959: \$? = $ac_status" >&5 + echo "$as_me:36097: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:35962: \"$ac_try\"") >&5 + { (eval echo "$as_me:36100: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:35965: \$? = $ac_status" >&5 + echo "$as_me:36103: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else @@ -35972,7 +36110,7 @@ eval "$as_ac_var=no" fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:35975: result: `eval echo '${'$as_ac_var'}'`" >&5 +echo "$as_me:36113: 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 @@ -35989,7 +36127,7 @@ EOF fi -echo "$as_me:35992: checking if you want to exclude FINGER code" >&5 +echo "$as_me:36130: 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. @@ -36006,14 +36144,14 @@ else use_finger=no fi; -echo "$as_me:36009: result: $use_finger" >&5 +echo "$as_me:36147: 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:36016: checking if you want to exclude GOPHER code" >&5 +echo "$as_me:36154: 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. @@ -36030,14 +36168,14 @@ else use_gopher=no fi; -echo "$as_me:36033: result: $use_gopher" >&5 +echo "$as_me:36171: 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:36040: checking if you want to exclude NEWS code" >&5 +echo "$as_me:36178: 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. @@ -36054,14 +36192,14 @@ else use_news=no fi; -echo "$as_me:36057: result: $use_news" >&5 +echo "$as_me:36195: 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:36064: checking if you want to exclude FTP code" >&5 +echo "$as_me:36202: 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. @@ -36078,14 +36216,14 @@ else use_ftp=no fi; -echo "$as_me:36081: result: $use_ftp" >&5 +echo "$as_me:36219: 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:36088: checking if you want to include WAIS code" >&5 +echo "$as_me:36226: 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. @@ -36102,13 +36240,13 @@ else use_wais=no fi; -echo "$as_me:36105: result: $use_wais" >&5 +echo "$as_me:36243: result: $use_wais" >&5 echo "${ECHO_T}$use_wais" >&6 MAKE_WAIS="#" if test $use_wais != "no" then - echo "$as_me:36111: checking for fs_free in -lwais" >&5 + echo "$as_me:36249: 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 @@ -36116,7 +36254,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lwais $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 36119 "configure" +#line 36257 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -36135,16 +36273,16 @@ fs_free (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:36138: \"$ac_link\"") >&5 +if { (eval echo "$as_me:36276: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:36141: \$? = $ac_status" >&5 + echo "$as_me:36279: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:36144: \"$ac_try\"") >&5 + { (eval echo "$as_me:36282: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:36147: \$? = $ac_status" >&5 + echo "$as_me:36285: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_wais_fs_free=yes else @@ -36155,18 +36293,18 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:36158: result: $ac_cv_lib_wais_fs_free" >&5 +echo "$as_me:36296: 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:36162: checking if -lm needed for math functions" >&5 +echo "$as_me:36300: 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 36169 "configure" +#line 36307 "configure" #include "confdefs.h" #include <stdio.h> @@ -36181,16 +36319,16 @@ double x = rand(); printf("result = %g\n", sin(x)) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:36184: \"$ac_link\"") >&5 +if { (eval echo "$as_me:36322: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:36187: \$? = $ac_status" >&5 + echo "$as_me:36325: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:36190: \"$ac_try\"") >&5 + { (eval echo "$as_me:36328: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:36193: \$? = $ac_status" >&5 + echo "$as_me:36331: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_need_libm=no else @@ -36200,7 +36338,7 @@ cf_cv_need_libm=yes fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:36203: result: $cf_cv_need_libm" >&5 +echo "$as_me:36341: result: $cf_cv_need_libm" >&5 echo "${ECHO_T}$cf_cv_need_libm" >&6 if test "$cf_cv_need_libm" = yes then @@ -36242,23 +36380,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:36245: checking for $ac_header" >&5 +echo "$as_me:36383: 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 36251 "configure" +#line 36389 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:36255: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:36393: \"$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:36261: \$? = $ac_status" >&5 + echo "$as_me:36399: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -36277,7 +36415,7 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:36280: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:36418: 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 @@ -36290,7 +36428,7 @@ done MAKE_WAIS= else - { echo "$as_me:36293: WARNING: could not find WAIS library" >&5 + { echo "$as_me:36431: WARNING: could not find WAIS library" >&5 echo "$as_me: WARNING: could not find WAIS library" >&2;} fi @@ -36298,7 +36436,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:36301: checking if directory-editor code should be used" >&5 +echo "$as_me:36439: 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. @@ -36315,7 +36453,7 @@ else use_dired=yes fi; -echo "$as_me:36318: result: $use_dired" >&5 +echo "$as_me:36456: result: $use_dired" >&5 echo "${ECHO_T}$use_dired" >&6 if test ".$use_dired" != ".no" ; then @@ -36325,7 +36463,7 @@ cat >>confdefs.h <<\EOF #define DIRED_SUPPORT 1 EOF - echo "$as_me:36328: checking if you wish to allow extracting from archives via DirEd" >&5 + echo "$as_me:36466: 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. @@ -36342,10 +36480,10 @@ EOF else enableval=yes fi; - echo "$as_me:36345: result: $enableval" >&5 + echo "$as_me:36483: result: $enableval" >&5 echo "${ECHO_T}$enableval" >&6 - echo "$as_me:36348: checking if DirEd mode should override keys" >&5 + echo "$as_me:36486: 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. @@ -36369,10 +36507,10 @@ cat >>confdefs.h <<\EOF EOF fi; - echo "$as_me:36372: result: $enableval" >&5 + echo "$as_me:36510: result: $enableval" >&5 echo "${ECHO_T}$enableval" >&6 - echo "$as_me:36375: checking if you wish to allow permissions commands via DirEd" >&5 + echo "$as_me:36513: 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. @@ -36396,10 +36534,10 @@ cat >>confdefs.h <<\EOF EOF fi; - echo "$as_me:36399: result: $enableval" >&5 + echo "$as_me:36537: result: $enableval" >&5 echo "${ECHO_T}$enableval" >&6 - echo "$as_me:36402: checking if you wish to allow executable-permission commands via DirEd" >&5 + echo "$as_me:36540: 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. @@ -36416,10 +36554,10 @@ EOF else enableval=yes fi; - echo "$as_me:36419: result: $enableval" >&5 + echo "$as_me:36557: result: $enableval" >&5 echo "${ECHO_T}$enableval" >&6 - echo "$as_me:36422: checking if you wish to allow \"tar\" commands from DirEd" >&5 + echo "$as_me:36560: 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. @@ -36443,10 +36581,10 @@ cat >>confdefs.h <<\EOF EOF fi; - echo "$as_me:36446: result: $enableval" >&5 + echo "$as_me:36584: result: $enableval" >&5 echo "${ECHO_T}$enableval" >&6 - echo "$as_me:36449: checking if you wish to allow \"uudecode\" commands from DirEd" >&5 + echo "$as_me:36587: 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. @@ -36470,10 +36608,10 @@ cat >>confdefs.h <<\EOF EOF fi; - echo "$as_me:36473: result: $enableval" >&5 + echo "$as_me:36611: result: $enableval" >&5 echo "${ECHO_T}$enableval" >&6 - echo "$as_me:36476: checking if you wish to allow \"zip\" and \"unzip\" commands from DirEd" >&5 + echo "$as_me:36614: 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. @@ -36497,10 +36635,10 @@ cat >>confdefs.h <<\EOF EOF fi; - echo "$as_me:36500: result: $enableval" >&5 + echo "$as_me:36638: result: $enableval" >&5 echo "${ECHO_T}$enableval" >&6 - echo "$as_me:36503: checking if you wish to allow \"gzip\" and \"gunzip\" commands from DirEd" >&5 + echo "$as_me:36641: 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. @@ -36524,11 +36662,11 @@ cat >>confdefs.h <<\EOF EOF fi; - echo "$as_me:36527: result: $enableval" >&5 + echo "$as_me:36665: result: $enableval" >&5 echo "${ECHO_T}$enableval" >&6 fi -echo "$as_me:36531: checking if you want long-directory listings" >&5 +echo "$as_me:36669: 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. @@ -36552,10 +36690,10 @@ cat >>confdefs.h <<\EOF EOF fi; -echo "$as_me:36555: result: $enableval" >&5 +echo "$as_me:36693: result: $enableval" >&5 echo "${ECHO_T}$enableval" >&6 -echo "$as_me:36558: checking if parent-directory references are permitted" >&5 +echo "$as_me:36696: 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. @@ -36572,7 +36710,7 @@ EOF else enableval=yes fi; -echo "$as_me:36575: result: $enableval" >&5 +echo "$as_me:36713: result: $enableval" >&5 echo "${ECHO_T}$enableval" >&6 test -z "$TELNET" && TELNET=telnet @@ -36580,7 +36718,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:36583: checking for $ac_word" >&5 +echo "$as_me:36721: 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 @@ -36597,7 +36735,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:36600: found $ac_dir/$ac_word" >&5 + echo "$as_me:36738: found $ac_dir/$ac_word" >&5 break fi done @@ -36608,10 +36746,10 @@ fi TELNET=$ac_cv_path_TELNET if test -n "$TELNET"; then - echo "$as_me:36611: result: $TELNET" >&5 + echo "$as_me:36749: result: $TELNET" >&5 echo "${ECHO_T}$TELNET" >&6 else - echo "$as_me:36614: result: no" >&5 + echo "$as_me:36752: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -36670,7 +36808,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me:-configure}:36673: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me:-configure}:36811: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define TELNET_PATH "$cf_path_prog" @@ -36688,7 +36826,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:36691: checking for $ac_word" >&5 +echo "$as_me:36829: 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 @@ -36705,7 +36843,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:36708: found $ac_dir/$ac_word" >&5 + echo "$as_me:36846: found $ac_dir/$ac_word" >&5 break fi done @@ -36716,10 +36854,10 @@ fi TN3270=$ac_cv_path_TN3270 if test -n "$TN3270"; then - echo "$as_me:36719: result: $TN3270" >&5 + echo "$as_me:36857: result: $TN3270" >&5 echo "${ECHO_T}$TN3270" >&6 else - echo "$as_me:36722: result: no" >&5 + echo "$as_me:36860: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -36778,7 +36916,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me:-configure}:36781: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me:-configure}:36919: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define TN3270_PATH "$cf_path_prog" @@ -36796,7 +36934,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:36799: checking for $ac_word" >&5 +echo "$as_me:36937: 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 @@ -36813,7 +36951,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:36816: found $ac_dir/$ac_word" >&5 + echo "$as_me:36954: found $ac_dir/$ac_word" >&5 break fi done @@ -36824,10 +36962,10 @@ fi RLOGIN=$ac_cv_path_RLOGIN if test -n "$RLOGIN"; then - echo "$as_me:36827: result: $RLOGIN" >&5 + echo "$as_me:36965: result: $RLOGIN" >&5 echo "${ECHO_T}$RLOGIN" >&6 else - echo "$as_me:36830: result: no" >&5 + echo "$as_me:36968: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -36886,7 +37024,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me:-configure}:36889: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me:-configure}:37027: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define RLOGIN_PATH "$cf_path_prog" @@ -36904,7 +37042,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:36907: checking for $ac_word" >&5 +echo "$as_me:37045: 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 @@ -36921,7 +37059,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:36924: found $ac_dir/$ac_word" >&5 + echo "$as_me:37062: found $ac_dir/$ac_word" >&5 break fi done @@ -36932,10 +37070,10 @@ fi MV=$ac_cv_path_MV if test -n "$MV"; then - echo "$as_me:36935: result: $MV" >&5 + echo "$as_me:37073: result: $MV" >&5 echo "${ECHO_T}$MV" >&6 else - echo "$as_me:36938: result: no" >&5 + echo "$as_me:37076: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -36994,7 +37132,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me:-configure}:36997: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me:-configure}:37135: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define MV_PATH "$cf_path_prog" @@ -37012,7 +37150,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:37015: checking for $ac_word" >&5 +echo "$as_me:37153: 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 @@ -37029,7 +37167,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:37032: found $ac_dir/$ac_word" >&5 + echo "$as_me:37170: found $ac_dir/$ac_word" >&5 break fi done @@ -37040,10 +37178,10 @@ fi GZIP=$ac_cv_path_GZIP if test -n "$GZIP"; then - echo "$as_me:37043: result: $GZIP" >&5 + echo "$as_me:37181: result: $GZIP" >&5 echo "${ECHO_T}$GZIP" >&6 else - echo "$as_me:37046: result: no" >&5 + echo "$as_me:37184: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -37102,7 +37240,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me:-configure}:37105: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me:-configure}:37243: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define GZIP_PATH "$cf_path_prog" @@ -37120,7 +37258,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:37123: checking for $ac_word" >&5 +echo "$as_me:37261: 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 @@ -37137,7 +37275,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:37140: found $ac_dir/$ac_word" >&5 + echo "$as_me:37278: found $ac_dir/$ac_word" >&5 break fi done @@ -37148,10 +37286,10 @@ fi UNCOMPRESS=$ac_cv_path_UNCOMPRESS if test -n "$UNCOMPRESS"; then - echo "$as_me:37151: result: $UNCOMPRESS" >&5 + echo "$as_me:37289: result: $UNCOMPRESS" >&5 echo "${ECHO_T}$UNCOMPRESS" >&6 else - echo "$as_me:37154: result: no" >&5 + echo "$as_me:37292: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -37210,7 +37348,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me:-configure}:37213: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me:-configure}:37351: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define UNCOMPRESS_PATH "$cf_path_prog" @@ -37228,7 +37366,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:37231: checking for $ac_word" >&5 +echo "$as_me:37369: 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 @@ -37245,7 +37383,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:37248: found $ac_dir/$ac_word" >&5 + echo "$as_me:37386: found $ac_dir/$ac_word" >&5 break fi done @@ -37256,10 +37394,10 @@ fi UNZIP=$ac_cv_path_UNZIP if test -n "$UNZIP"; then - echo "$as_me:37259: result: $UNZIP" >&5 + echo "$as_me:37397: result: $UNZIP" >&5 echo "${ECHO_T}$UNZIP" >&6 else - echo "$as_me:37262: result: no" >&5 + echo "$as_me:37400: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -37318,7 +37456,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me:-configure}:37321: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me:-configure}:37459: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define UNZIP_PATH "$cf_path_prog" @@ -37336,7 +37474,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:37339: checking for $ac_word" >&5 +echo "$as_me:37477: 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 @@ -37353,7 +37491,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:37356: found $ac_dir/$ac_word" >&5 + echo "$as_me:37494: found $ac_dir/$ac_word" >&5 break fi done @@ -37364,10 +37502,10 @@ fi BZIP2=$ac_cv_path_BZIP2 if test -n "$BZIP2"; then - echo "$as_me:37367: result: $BZIP2" >&5 + echo "$as_me:37505: result: $BZIP2" >&5 echo "${ECHO_T}$BZIP2" >&6 else - echo "$as_me:37370: result: no" >&5 + echo "$as_me:37508: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -37426,7 +37564,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me:-configure}:37429: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me:-configure}:37567: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define BZIP2_PATH "$cf_path_prog" @@ -37444,7 +37582,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:37447: checking for $ac_word" >&5 +echo "$as_me:37585: 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 @@ -37461,7 +37599,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:37464: found $ac_dir/$ac_word" >&5 + echo "$as_me:37602: found $ac_dir/$ac_word" >&5 break fi done @@ -37472,10 +37610,10 @@ fi TAR=$ac_cv_path_TAR if test -n "$TAR"; then - echo "$as_me:37475: result: $TAR" >&5 + echo "$as_me:37613: result: $TAR" >&5 echo "${ECHO_T}$TAR" >&6 else - echo "$as_me:37478: result: no" >&5 + echo "$as_me:37616: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -37534,7 +37672,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me:-configure}:37537: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me:-configure}:37675: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define TAR_PATH "$cf_path_prog" @@ -37592,7 +37730,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:37595: checking for $ac_word" >&5 +echo "$as_me:37733: 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 @@ -37609,7 +37747,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:37612: found $ac_dir/$ac_word" >&5 + echo "$as_me:37750: found $ac_dir/$ac_word" >&5 break fi done @@ -37620,10 +37758,10 @@ fi COMPRESS=$ac_cv_path_COMPRESS if test -n "$COMPRESS"; then - echo "$as_me:37623: result: $COMPRESS" >&5 + echo "$as_me:37761: result: $COMPRESS" >&5 echo "${ECHO_T}$COMPRESS" >&6 else - echo "$as_me:37626: result: no" >&5 + echo "$as_me:37764: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -37682,7 +37820,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me:-configure}:37685: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me:-configure}:37823: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define COMPRESS_PATH "$cf_path_prog" @@ -37700,7 +37838,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:37703: checking for $ac_word" >&5 +echo "$as_me:37841: 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 @@ -37717,7 +37855,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:37720: found $ac_dir/$ac_word" >&5 + echo "$as_me:37858: found $ac_dir/$ac_word" >&5 break fi done @@ -37728,10 +37866,10 @@ fi RM=$ac_cv_path_RM if test -n "$RM"; then - echo "$as_me:37731: result: $RM" >&5 + echo "$as_me:37869: result: $RM" >&5 echo "${ECHO_T}$RM" >&6 else - echo "$as_me:37734: result: no" >&5 + echo "$as_me:37872: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -37790,7 +37928,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me:-configure}:37793: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me:-configure}:37931: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define RM_PATH "$cf_path_prog" @@ -37808,7 +37946,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:37811: checking for $ac_word" >&5 +echo "$as_me:37949: 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 @@ -37825,7 +37963,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:37828: found $ac_dir/$ac_word" >&5 + echo "$as_me:37966: found $ac_dir/$ac_word" >&5 break fi done @@ -37836,10 +37974,10 @@ fi UUDECODE=$ac_cv_path_UUDECODE if test -n "$UUDECODE"; then - echo "$as_me:37839: result: $UUDECODE" >&5 + echo "$as_me:37977: result: $UUDECODE" >&5 echo "${ECHO_T}$UUDECODE" >&6 else - echo "$as_me:37842: result: no" >&5 + echo "$as_me:37980: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -37898,7 +38036,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me:-configure}:37901: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me:-configure}:38039: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define UUDECODE_PATH "$cf_path_prog" @@ -37916,7 +38054,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:37919: checking for $ac_word" >&5 +echo "$as_me:38057: 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 @@ -37933,7 +38071,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:37936: found $ac_dir/$ac_word" >&5 + echo "$as_me:38074: found $ac_dir/$ac_word" >&5 break fi done @@ -37944,10 +38082,10 @@ fi ZCAT=$ac_cv_path_ZCAT if test -n "$ZCAT"; then - echo "$as_me:37947: result: $ZCAT" >&5 + echo "$as_me:38085: result: $ZCAT" >&5 echo "${ECHO_T}$ZCAT" >&6 else - echo "$as_me:37950: result: no" >&5 + echo "$as_me:38088: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -38006,7 +38144,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me:-configure}:38009: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me:-configure}:38147: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define ZCAT_PATH "$cf_path_prog" @@ -38024,7 +38162,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:38027: checking for $ac_word" >&5 +echo "$as_me:38165: 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 @@ -38041,7 +38179,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:38044: found $ac_dir/$ac_word" >&5 + echo "$as_me:38182: found $ac_dir/$ac_word" >&5 break fi done @@ -38052,10 +38190,10 @@ fi ZIP=$ac_cv_path_ZIP if test -n "$ZIP"; then - echo "$as_me:38055: result: $ZIP" >&5 + echo "$as_me:38193: result: $ZIP" >&5 echo "${ECHO_T}$ZIP" >&6 else - echo "$as_me:38058: result: no" >&5 + echo "$as_me:38196: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -38114,7 +38252,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me:-configure}:38117: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me:-configure}:38255: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define ZIP_PATH "$cf_path_prog" @@ -38142,7 +38280,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:38145: checking for $ac_word" >&5 +echo "$as_me:38283: 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 @@ -38159,7 +38297,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:38162: found $ac_dir/$ac_word" >&5 + echo "$as_me:38300: found $ac_dir/$ac_word" >&5 break fi done @@ -38170,10 +38308,10 @@ fi INSTALL=$ac_cv_path_INSTALL if test -n "$INSTALL"; then - echo "$as_me:38173: result: $INSTALL" >&5 + echo "$as_me:38311: result: $INSTALL" >&5 echo "${ECHO_T}$INSTALL" >&6 else - echo "$as_me:38176: result: no" >&5 + echo "$as_me:38314: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -38232,7 +38370,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me:-configure}:38235: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me:-configure}:38373: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define INSTALL_PATH "$cf_path_prog" @@ -38262,7 +38400,7 @@ if test $cf_cv_screen = pdcurses ; then case $host_os in (mingw*) -echo "$as_me:38265: checking for initscr in -lpdcurses" >&5 +echo "$as_me:38403: 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 @@ -38270,7 +38408,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lpdcurses $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 38273 "configure" +#line 38411 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -38289,16 +38427,16 @@ initscr (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:38292: \"$ac_link\"") >&5 +if { (eval echo "$as_me:38430: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:38295: \$? = $ac_status" >&5 + echo "$as_me:38433: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:38298: \"$ac_try\"") >&5 + { (eval echo "$as_me:38436: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:38301: \$? = $ac_status" >&5 + echo "$as_me:38439: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_pdcurses_initscr=yes else @@ -38309,7 +38447,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:38312: result: $ac_cv_lib_pdcurses_initscr" >&5 +echo "$as_me:38450: 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 @@ -38331,13 +38469,13 @@ LIBS="$cf_add_libs" cf_cv_term_header=no cf_cv_unctrl_header=no - echo "$as_me:38334: checking for winwstr" >&5 + echo "$as_me:38472: 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 38340 "configure" +#line 38478 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char winwstr (); below. */ @@ -38368,16 +38506,16 @@ f = winwstr; /* workaround for ICC 12.0.3 */ if (f == 0) return 1; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:38371: \"$ac_link\"") >&5 +if { (eval echo "$as_me:38509: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:38374: \$? = $ac_status" >&5 + echo "$as_me:38512: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:38377: \"$ac_try\"") >&5 + { (eval echo "$as_me:38515: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:38380: \$? = $ac_status" >&5 + echo "$as_me:38518: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_winwstr=yes else @@ -38387,7 +38525,7 @@ ac_cv_func_winwstr=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:38390: result: $ac_cv_func_winwstr" >&5 +echo "$as_me:38528: result: $ac_cv_func_winwstr" >&5 echo "${ECHO_T}$ac_cv_func_winwstr" >&6 if test $ac_cv_func_winwstr = yes; then cat >>confdefs.h <<\EOF @@ -38396,13 +38534,13 @@ EOF fi - echo "$as_me:38399: checking for pdcurses_dll_iname" >&5 + echo "$as_me:38537: 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 38405 "configure" +#line 38543 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char pdcurses_dll_iname (); below. */ @@ -38433,16 +38571,16 @@ f = pdcurses_dll_iname; /* workaround for ICC 12.0.3 */ if (f == 0) return 1; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:38436: \"$ac_link\"") >&5 +if { (eval echo "$as_me:38574: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:38439: \$? = $ac_status" >&5 + echo "$as_me:38577: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:38442: \"$ac_try\"") >&5 + { (eval echo "$as_me:38580: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:38445: \$? = $ac_status" >&5 + echo "$as_me:38583: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_pdcurses_dll_iname=yes else @@ -38452,7 +38590,7 @@ ac_cv_func_pdcurses_dll_iname=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:38455: result: $ac_cv_func_pdcurses_dll_iname" >&5 +echo "$as_me:38593: 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 cat >>confdefs.h <<\EOF @@ -38465,7 +38603,7 @@ fi ;; (*) - echo "$as_me:38468: checking for X" >&5 + echo "$as_me:38606: checking for X" >&5 echo $ECHO_N "checking for X... $ECHO_C" >&6 # Check whether --with-x or --without-x was given. @@ -38562,17 +38700,17 @@ if test "$ac_x_includes" = no; then # Guess where to find include files, by looking for Intrinsic.h. # First, try using that file with no special directory specified. cat >conftest.$ac_ext <<_ACEOF -#line 38565 "configure" +#line 38703 "configure" #include "confdefs.h" #include <X11/Intrinsic.h> _ACEOF -if { (eval echo "$as_me:38569: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:38707: \"$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:38575: \$? = $ac_status" >&5 + echo "$as_me:38713: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -38605,7 +38743,7 @@ if test "$ac_x_libraries" = no; then ac_save_LIBS=$LIBS LIBS="-lXt $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 38608 "configure" +#line 38746 "configure" #include "confdefs.h" #include <X11/Intrinsic.h> int @@ -38617,16 +38755,16 @@ XtMalloc (0) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:38620: \"$ac_link\"") >&5 +if { (eval echo "$as_me:38758: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:38623: \$? = $ac_status" >&5 + echo "$as_me:38761: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:38626: \"$ac_try\"") >&5 + { (eval echo "$as_me:38764: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:38629: \$? = $ac_status" >&5 + echo "$as_me:38767: \$? = $ac_status" >&5 (exit $ac_status); }; }; then LIBS=$ac_save_LIBS # We can link X programs with no special library path. @@ -38664,7 +38802,7 @@ fi fi # $with_x != no if test "$have_x" != yes; then - echo "$as_me:38667: result: $have_x" >&5 + echo "$as_me:38805: result: $have_x" >&5 echo "${ECHO_T}$have_x" >&6 no_x=yes else @@ -38674,7 +38812,7 @@ else # Update the cache value to reflect the command line values. ac_cv_have_x="have_x=yes \ ac_x_includes=$x_includes ac_x_libraries=$x_libraries" - echo "$as_me:38677: result: libraries $x_libraries, headers $x_includes" >&5 + echo "$as_me:38815: result: libraries $x_libraries, headers $x_includes" >&5 echo "${ECHO_T}libraries $x_libraries, headers $x_includes" >&6 fi @@ -38698,11 +38836,11 @@ else # others require no space. Words are not sufficient . . . . case `(uname -sr) 2>/dev/null` in "SunOS 5"*) - echo "$as_me:38701: checking whether -R must be followed by a space" >&5 + echo "$as_me:38839: checking whether -R must be followed by a space" >&5 echo $ECHO_N "checking whether -R must be followed by a space... $ECHO_C" >&6 ac_xsave_LIBS=$LIBS; LIBS="$LIBS -R$x_libraries" cat >conftest.$ac_ext <<_ACEOF -#line 38705 "configure" +#line 38843 "configure" #include "confdefs.h" int @@ -38714,16 +38852,16 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:38717: \"$ac_link\"") >&5 +if { (eval echo "$as_me:38855: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:38720: \$? = $ac_status" >&5 + echo "$as_me:38858: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:38723: \"$ac_try\"") >&5 + { (eval echo "$as_me:38861: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:38726: \$? = $ac_status" >&5 + echo "$as_me:38864: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_R_nospace=yes else @@ -38733,13 +38871,13 @@ ac_R_nospace=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext if test $ac_R_nospace = yes; then - echo "$as_me:38736: result: no" >&5 + echo "$as_me:38874: result: no" >&5 echo "${ECHO_T}no" >&6 X_LIBS="$X_LIBS -R$x_libraries" else LIBS="$ac_xsave_LIBS -R $x_libraries" cat >conftest.$ac_ext <<_ACEOF -#line 38742 "configure" +#line 38880 "configure" #include "confdefs.h" int @@ -38751,16 +38889,16 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:38754: \"$ac_link\"") >&5 +if { (eval echo "$as_me:38892: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:38757: \$? = $ac_status" >&5 + echo "$as_me:38895: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:38760: \"$ac_try\"") >&5 + { (eval echo "$as_me:38898: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:38763: \$? = $ac_status" >&5 + echo "$as_me:38901: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_R_space=yes else @@ -38770,11 +38908,11 @@ ac_R_space=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext if test $ac_R_space = yes; then - echo "$as_me:38773: result: yes" >&5 + echo "$as_me:38911: result: yes" >&5 echo "${ECHO_T}yes" >&6 X_LIBS="$X_LIBS -R $x_libraries" else - echo "$as_me:38777: result: neither works" >&5 + echo "$as_me:38915: result: neither works" >&5 echo "${ECHO_T}neither works" >&6 fi fi @@ -38794,7 +38932,7 @@ echo "${ECHO_T}neither works" >&6 # the Alpha needs dnet_stub (dnet does not exist). ac_xsave_LIBS="$LIBS"; LIBS="$LIBS $X_LIBS -lX11" cat >conftest.$ac_ext <<_ACEOF -#line 38797 "configure" +#line 38935 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -38813,22 +38951,22 @@ XOpenDisplay (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:38816: \"$ac_link\"") >&5 +if { (eval echo "$as_me:38954: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:38819: \$? = $ac_status" >&5 + echo "$as_me:38957: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:38822: \"$ac_try\"") >&5 + { (eval echo "$as_me:38960: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:38825: \$? = $ac_status" >&5 + echo "$as_me:38963: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 -echo "$as_me:38831: checking for dnet_ntoa in -ldnet" >&5 +echo "$as_me:38969: checking for dnet_ntoa in -ldnet" >&5 echo $ECHO_N "checking for dnet_ntoa in -ldnet... $ECHO_C" >&6 if test "${ac_cv_lib_dnet_dnet_ntoa+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -38836,7 +38974,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-ldnet $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 38839 "configure" +#line 38977 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -38855,16 +38993,16 @@ dnet_ntoa (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:38858: \"$ac_link\"") >&5 +if { (eval echo "$as_me:38996: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:38861: \$? = $ac_status" >&5 + echo "$as_me:38999: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:38864: \"$ac_try\"") >&5 + { (eval echo "$as_me:39002: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:38867: \$? = $ac_status" >&5 + echo "$as_me:39005: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_dnet_dnet_ntoa=yes else @@ -38875,14 +39013,14 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:38878: result: $ac_cv_lib_dnet_dnet_ntoa" >&5 +echo "$as_me:39016: result: $ac_cv_lib_dnet_dnet_ntoa" >&5 echo "${ECHO_T}$ac_cv_lib_dnet_dnet_ntoa" >&6 if test $ac_cv_lib_dnet_dnet_ntoa = yes; then X_EXTRA_LIBS="$X_EXTRA_LIBS -ldnet" fi if test $ac_cv_lib_dnet_dnet_ntoa = no; then - echo "$as_me:38885: checking for dnet_ntoa in -ldnet_stub" >&5 + echo "$as_me:39023: checking for dnet_ntoa in -ldnet_stub" >&5 echo $ECHO_N "checking for dnet_ntoa in -ldnet_stub... $ECHO_C" >&6 if test "${ac_cv_lib_dnet_stub_dnet_ntoa+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -38890,7 +39028,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-ldnet_stub $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 38893 "configure" +#line 39031 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -38909,16 +39047,16 @@ dnet_ntoa (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:38912: \"$ac_link\"") >&5 +if { (eval echo "$as_me:39050: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:38915: \$? = $ac_status" >&5 + echo "$as_me:39053: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:38918: \"$ac_try\"") >&5 + { (eval echo "$as_me:39056: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:38921: \$? = $ac_status" >&5 + echo "$as_me:39059: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_dnet_stub_dnet_ntoa=yes else @@ -38929,7 +39067,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:38932: result: $ac_cv_lib_dnet_stub_dnet_ntoa" >&5 +echo "$as_me:39070: result: $ac_cv_lib_dnet_stub_dnet_ntoa" >&5 echo "${ECHO_T}$ac_cv_lib_dnet_stub_dnet_ntoa" >&6 if test $ac_cv_lib_dnet_stub_dnet_ntoa = yes; then X_EXTRA_LIBS="$X_EXTRA_LIBS -ldnet_stub" @@ -38948,13 +39086,13 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext # on Irix 5.2, according to T.E. Dickey. # The functions gethostbyname, getservbyname, and inet_addr are # in -lbsd on LynxOS 3.0.1/i386, according to Lars Hecking. - echo "$as_me:38951: checking for gethostbyname" >&5 + echo "$as_me:39089: checking for gethostbyname" >&5 echo $ECHO_N "checking for gethostbyname... $ECHO_C" >&6 if test "${ac_cv_func_gethostbyname+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 38957 "configure" +#line 39095 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char gethostbyname (); below. */ @@ -38985,16 +39123,16 @@ f = gethostbyname; /* workaround for ICC 12.0.3 */ if (f == 0) return 1; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:38988: \"$ac_link\"") >&5 +if { (eval echo "$as_me:39126: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:38991: \$? = $ac_status" >&5 + echo "$as_me:39129: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:38994: \"$ac_try\"") >&5 + { (eval echo "$as_me:39132: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:38997: \$? = $ac_status" >&5 + echo "$as_me:39135: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_gethostbyname=yes else @@ -39004,11 +39142,11 @@ ac_cv_func_gethostbyname=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:39007: result: $ac_cv_func_gethostbyname" >&5 +echo "$as_me:39145: result: $ac_cv_func_gethostbyname" >&5 echo "${ECHO_T}$ac_cv_func_gethostbyname" >&6 if test $ac_cv_func_gethostbyname = no; then - echo "$as_me:39011: checking for gethostbyname in -lnsl" >&5 + echo "$as_me:39149: 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 @@ -39016,7 +39154,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lnsl $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 39019 "configure" +#line 39157 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -39035,16 +39173,16 @@ gethostbyname (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:39038: \"$ac_link\"") >&5 +if { (eval echo "$as_me:39176: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:39041: \$? = $ac_status" >&5 + echo "$as_me:39179: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:39044: \"$ac_try\"") >&5 + { (eval echo "$as_me:39182: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:39047: \$? = $ac_status" >&5 + echo "$as_me:39185: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_nsl_gethostbyname=yes else @@ -39055,14 +39193,14 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:39058: result: $ac_cv_lib_nsl_gethostbyname" >&5 +echo "$as_me:39196: result: $ac_cv_lib_nsl_gethostbyname" >&5 echo "${ECHO_T}$ac_cv_lib_nsl_gethostbyname" >&6 if test $ac_cv_lib_nsl_gethostbyname = yes; then X_EXTRA_LIBS="$X_EXTRA_LIBS -lnsl" fi if test $ac_cv_lib_nsl_gethostbyname = no; then - echo "$as_me:39065: checking for gethostbyname in -lbsd" >&5 + echo "$as_me:39203: checking for gethostbyname in -lbsd" >&5 echo $ECHO_N "checking for gethostbyname in -lbsd... $ECHO_C" >&6 if test "${ac_cv_lib_bsd_gethostbyname+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -39070,7 +39208,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lbsd $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 39073 "configure" +#line 39211 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -39089,16 +39227,16 @@ gethostbyname (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:39092: \"$ac_link\"") >&5 +if { (eval echo "$as_me:39230: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:39095: \$? = $ac_status" >&5 + echo "$as_me:39233: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:39098: \"$ac_try\"") >&5 + { (eval echo "$as_me:39236: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:39101: \$? = $ac_status" >&5 + echo "$as_me:39239: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_bsd_gethostbyname=yes else @@ -39109,7 +39247,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:39112: result: $ac_cv_lib_bsd_gethostbyname" >&5 +echo "$as_me:39250: result: $ac_cv_lib_bsd_gethostbyname" >&5 echo "${ECHO_T}$ac_cv_lib_bsd_gethostbyname" >&6 if test $ac_cv_lib_bsd_gethostbyname = yes; then X_EXTRA_LIBS="$X_EXTRA_LIBS -lbsd" @@ -39125,13 +39263,13 @@ fi # variants that don't use the nameserver (or something). -lsocket # must be given before -lnsl if both are needed. We assume that # if connect needs -lnsl, so does gethostbyname. - echo "$as_me:39128: checking for connect" >&5 + echo "$as_me:39266: checking for connect" >&5 echo $ECHO_N "checking for connect... $ECHO_C" >&6 if test "${ac_cv_func_connect+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 39134 "configure" +#line 39272 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char connect (); below. */ @@ -39162,16 +39300,16 @@ f = connect; /* workaround for ICC 12.0.3 */ if (f == 0) return 1; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:39165: \"$ac_link\"") >&5 +if { (eval echo "$as_me:39303: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:39168: \$? = $ac_status" >&5 + echo "$as_me:39306: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:39171: \"$ac_try\"") >&5 + { (eval echo "$as_me:39309: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:39174: \$? = $ac_status" >&5 + echo "$as_me:39312: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_connect=yes else @@ -39181,11 +39319,11 @@ ac_cv_func_connect=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:39184: result: $ac_cv_func_connect" >&5 +echo "$as_me:39322: result: $ac_cv_func_connect" >&5 echo "${ECHO_T}$ac_cv_func_connect" >&6 if test $ac_cv_func_connect = no; then - echo "$as_me:39188: checking for connect in -lsocket" >&5 + echo "$as_me:39326: checking for connect in -lsocket" >&5 echo $ECHO_N "checking for connect in -lsocket... $ECHO_C" >&6 if test "${ac_cv_lib_socket_connect+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -39193,7 +39331,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lsocket $X_EXTRA_LIBS $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 39196 "configure" +#line 39334 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -39212,16 +39350,16 @@ connect (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:39215: \"$ac_link\"") >&5 +if { (eval echo "$as_me:39353: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:39218: \$? = $ac_status" >&5 + echo "$as_me:39356: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:39221: \"$ac_try\"") >&5 + { (eval echo "$as_me:39359: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:39224: \$? = $ac_status" >&5 + echo "$as_me:39362: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_socket_connect=yes else @@ -39232,7 +39370,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:39235: result: $ac_cv_lib_socket_connect" >&5 +echo "$as_me:39373: result: $ac_cv_lib_socket_connect" >&5 echo "${ECHO_T}$ac_cv_lib_socket_connect" >&6 if test $ac_cv_lib_socket_connect = yes; then X_EXTRA_LIBS="-lsocket $X_EXTRA_LIBS" @@ -39241,13 +39379,13 @@ fi fi # Guillermo Gomez says -lposix is necessary on A/UX. - echo "$as_me:39244: checking for remove" >&5 + echo "$as_me:39382: checking for remove" >&5 echo $ECHO_N "checking for remove... $ECHO_C" >&6 if test "${ac_cv_func_remove+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 39250 "configure" +#line 39388 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char remove (); below. */ @@ -39278,16 +39416,16 @@ f = remove; /* workaround for ICC 12.0.3 */ if (f == 0) return 1; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:39281: \"$ac_link\"") >&5 +if { (eval echo "$as_me:39419: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:39284: \$? = $ac_status" >&5 + echo "$as_me:39422: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:39287: \"$ac_try\"") >&5 + { (eval echo "$as_me:39425: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:39290: \$? = $ac_status" >&5 + echo "$as_me:39428: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_remove=yes else @@ -39297,11 +39435,11 @@ ac_cv_func_remove=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:39300: result: $ac_cv_func_remove" >&5 +echo "$as_me:39438: result: $ac_cv_func_remove" >&5 echo "${ECHO_T}$ac_cv_func_remove" >&6 if test $ac_cv_func_remove = no; then - echo "$as_me:39304: checking for remove in -lposix" >&5 + echo "$as_me:39442: checking for remove in -lposix" >&5 echo $ECHO_N "checking for remove in -lposix... $ECHO_C" >&6 if test "${ac_cv_lib_posix_remove+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -39309,7 +39447,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lposix $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 39312 "configure" +#line 39450 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -39328,16 +39466,16 @@ remove (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:39331: \"$ac_link\"") >&5 +if { (eval echo "$as_me:39469: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:39334: \$? = $ac_status" >&5 + echo "$as_me:39472: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:39337: \"$ac_try\"") >&5 + { (eval echo "$as_me:39475: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:39340: \$? = $ac_status" >&5 + echo "$as_me:39478: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_posix_remove=yes else @@ -39348,7 +39486,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:39351: result: $ac_cv_lib_posix_remove" >&5 +echo "$as_me:39489: result: $ac_cv_lib_posix_remove" >&5 echo "${ECHO_T}$ac_cv_lib_posix_remove" >&6 if test $ac_cv_lib_posix_remove = yes; then X_EXTRA_LIBS="$X_EXTRA_LIBS -lposix" @@ -39357,13 +39495,13 @@ fi fi # BSDI BSD/OS 2.1 needs -lipc for XOpenDisplay. - echo "$as_me:39360: checking for shmat" >&5 + echo "$as_me:39498: checking for shmat" >&5 echo $ECHO_N "checking for shmat... $ECHO_C" >&6 if test "${ac_cv_func_shmat+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 39366 "configure" +#line 39504 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char shmat (); below. */ @@ -39394,16 +39532,16 @@ f = shmat; /* workaround for ICC 12.0.3 */ if (f == 0) return 1; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:39397: \"$ac_link\"") >&5 +if { (eval echo "$as_me:39535: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:39400: \$? = $ac_status" >&5 + echo "$as_me:39538: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:39403: \"$ac_try\"") >&5 + { (eval echo "$as_me:39541: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:39406: \$? = $ac_status" >&5 + echo "$as_me:39544: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_shmat=yes else @@ -39413,11 +39551,11 @@ ac_cv_func_shmat=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:39416: result: $ac_cv_func_shmat" >&5 +echo "$as_me:39554: result: $ac_cv_func_shmat" >&5 echo "${ECHO_T}$ac_cv_func_shmat" >&6 if test $ac_cv_func_shmat = no; then - echo "$as_me:39420: checking for shmat in -lipc" >&5 + echo "$as_me:39558: checking for shmat in -lipc" >&5 echo $ECHO_N "checking for shmat in -lipc... $ECHO_C" >&6 if test "${ac_cv_lib_ipc_shmat+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -39425,7 +39563,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lipc $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 39428 "configure" +#line 39566 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -39444,16 +39582,16 @@ shmat (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:39447: \"$ac_link\"") >&5 +if { (eval echo "$as_me:39585: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:39450: \$? = $ac_status" >&5 + echo "$as_me:39588: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:39453: \"$ac_try\"") >&5 + { (eval echo "$as_me:39591: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:39456: \$? = $ac_status" >&5 + echo "$as_me:39594: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_ipc_shmat=yes else @@ -39464,7 +39602,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:39467: result: $ac_cv_lib_ipc_shmat" >&5 +echo "$as_me:39605: result: $ac_cv_lib_ipc_shmat" >&5 echo "${ECHO_T}$ac_cv_lib_ipc_shmat" >&6 if test $ac_cv_lib_ipc_shmat = yes; then X_EXTRA_LIBS="$X_EXTRA_LIBS -lipc" @@ -39482,7 +39620,7 @@ fi # These have to be linked with before -lX11, unlike the other # libraries we check for below, so use a different variable. # John Interrante, Karl Berry - echo "$as_me:39485: checking for IceConnectionNumber in -lICE" >&5 + echo "$as_me:39623: checking for IceConnectionNumber in -lICE" >&5 echo $ECHO_N "checking for IceConnectionNumber in -lICE... $ECHO_C" >&6 if test "${ac_cv_lib_ICE_IceConnectionNumber+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -39490,7 +39628,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lICE $X_EXTRA_LIBS $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 39493 "configure" +#line 39631 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -39509,16 +39647,16 @@ IceConnectionNumber (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:39512: \"$ac_link\"") >&5 +if { (eval echo "$as_me:39650: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:39515: \$? = $ac_status" >&5 + echo "$as_me:39653: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:39518: \"$ac_try\"") >&5 + { (eval echo "$as_me:39656: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:39521: \$? = $ac_status" >&5 + echo "$as_me:39659: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_ICE_IceConnectionNumber=yes else @@ -39529,7 +39667,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:39532: result: $ac_cv_lib_ICE_IceConnectionNumber" >&5 +echo "$as_me:39670: result: $ac_cv_lib_ICE_IceConnectionNumber" >&5 echo "${ECHO_T}$ac_cv_lib_ICE_IceConnectionNumber" >&6 if test $ac_cv_lib_ICE_IceConnectionNumber = yes; then X_PRE_LIBS="$X_PRE_LIBS -lSM -lICE" @@ -39541,7 +39679,7 @@ fi cf_x_athena=${cf_x_athena:-Xaw} -echo "$as_me:39544: checking if you want to link with Xaw 3d library" >&5 +echo "$as_me:39682: 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= @@ -39552,14 +39690,14 @@ if test "${with_Xaw3d+set}" = set; then fi; if test "$withval" = yes ; then cf_x_athena=Xaw3d - echo "$as_me:39555: result: yes" >&5 + echo "$as_me:39693: result: yes" >&5 echo "${ECHO_T}yes" >&6 else - echo "$as_me:39558: result: no" >&5 + echo "$as_me:39696: result: no" >&5 echo "${ECHO_T}no" >&6 fi -echo "$as_me:39562: checking if you want to link with Xaw 3d xft library" >&5 +echo "$as_me:39700: 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= @@ -39570,14 +39708,14 @@ if test "${with_Xaw3dxft+set}" = set; then fi; if test "$withval" = yes ; then cf_x_athena=Xaw3dxft - echo "$as_me:39573: result: yes" >&5 + echo "$as_me:39711: result: yes" >&5 echo "${ECHO_T}yes" >&6 else - echo "$as_me:39576: result: no" >&5 + echo "$as_me:39714: result: no" >&5 echo "${ECHO_T}no" >&6 fi -echo "$as_me:39580: checking if you want to link with neXT Athena library" >&5 +echo "$as_me:39718: 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= @@ -39588,14 +39726,14 @@ if test "${with_neXtaw+set}" = set; then fi; if test "$withval" = yes ; then cf_x_athena=neXtaw - echo "$as_me:39591: result: yes" >&5 + echo "$as_me:39729: result: yes" >&5 echo "${ECHO_T}yes" >&6 else - echo "$as_me:39594: result: no" >&5 + echo "$as_me:39732: result: no" >&5 echo "${ECHO_T}no" >&6 fi -echo "$as_me:39598: checking if you want to link with Athena-Plus library" >&5 +echo "$as_me:39736: 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= @@ -39606,10 +39744,10 @@ if test "${with_XawPlus+set}" = set; then fi; if test "$withval" = yes ; then cf_x_athena=XawPlus - echo "$as_me:39609: result: yes" >&5 + echo "$as_me:39747: result: yes" >&5 echo "${ECHO_T}yes" >&6 else - echo "$as_me:39612: result: no" >&5 + echo "$as_me:39750: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -39629,17 +39767,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}:39632: testing found package $cf_athena_pkg ..." 1>&5 +echo "${as_me:-configure}:39770: 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}:39638: testing package $cf_athena_pkg CFLAGS: $cf_pkgconfig_incs ..." 1>&5 +echo "${as_me:-configure}:39776: 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}:39642: testing package $cf_athena_pkg LIBS: $cf_pkgconfig_libs ..." 1>&5 +echo "${as_me:-configure}:39780: testing package $cf_athena_pkg LIBS: $cf_pkgconfig_libs ..." 1>&5 cf_fix_cppflags=no cf_new_cflags= @@ -39750,20 +39888,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}:39753: testing ..trimmed $LIBS ..." 1>&5 +echo "${as_me:-configure}:39891: testing ..trimmed $LIBS ..." 1>&5 ;; esac done -echo "$as_me:39759: checking for usable $cf_x_athena/Xmu package" >&5 +echo "$as_me:39897: 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 39766 "configure" +#line 39904 "configure" #include "confdefs.h" #include <X11/Xmu/CharSet.h> @@ -39779,16 +39917,16 @@ int check = XmuCompareISOLatin1("big", "small") } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:39782: \"$ac_link\"") >&5 +if { (eval echo "$as_me:39920: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:39785: \$? = $ac_status" >&5 + echo "$as_me:39923: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:39788: \"$ac_try\"") >&5 + { (eval echo "$as_me:39926: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:39791: \$? = $ac_status" >&5 + echo "$as_me:39929: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_xaw_compat=yes else @@ -39798,7 +39936,7 @@ cf_cv_xaw_compat=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:39801: result: $cf_cv_xaw_compat" >&5 +echo "$as_me:39939: result: $cf_cv_xaw_compat" >&5 echo "${ECHO_T}$cf_cv_xaw_compat" >&6 if test "$cf_cv_xaw_compat" = no @@ -39810,7 +39948,7 @@ echo "${ECHO_T}$cf_cv_xaw_compat" >&6 (*) test -n "$verbose" && echo " work around broken package" 1>&6 -echo "${as_me:-configure}:39813: testing work around broken package ..." 1>&5 +echo "${as_me:-configure}:39951: testing work around broken package ..." 1>&5 cf_save_xmu="$LIBS" cf_first_lib=`echo "$cf_save_xmu" | sed -e 's/^ *//' -e 's/ .*//'` @@ -39818,17 +39956,17 @@ echo "${as_me:-configure}:39813: 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}:39821: testing found package xmu ..." 1>&5 +echo "${as_me:-configure}:39959: 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}:39827: testing package xmu CFLAGS: $cf_pkgconfig_incs ..." 1>&5 +echo "${as_me:-configure}:39965: 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}:39831: testing package xmu LIBS: $cf_pkgconfig_libs ..." 1>&5 +echo "${as_me:-configure}:39969: testing package xmu LIBS: $cf_pkgconfig_libs ..." 1>&5 cf_fix_cppflags=no cf_new_cflags= @@ -39928,12 +40066,12 @@ LIBS="$cf_add_libs" test -n "$verbose" && echo " ...before $LIBS" 1>&6 -echo "${as_me:-configure}:39931: testing ...before $LIBS ..." 1>&5 +echo "${as_me:-configure}:40069: 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}:39936: testing ...after $LIBS ..." 1>&5 +echo "${as_me:-configure}:40074: testing ...after $LIBS ..." 1>&5 else cf_pkgconfig_incs= @@ -39941,12 +40079,12 @@ else test -n "$verbose" && echo " ...before $LIBS" 1>&6 -echo "${as_me:-configure}:39944: testing ...before $LIBS ..." 1>&5 +echo "${as_me:-configure}:40082: 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}:39949: testing ...after $LIBS ..." 1>&5 +echo "${as_me:-configure}:40087: testing ...after $LIBS ..." 1>&5 fi @@ -39957,7 +40095,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}:39960: testing ..trimmed $LIBS ..." 1>&5 +echo "${as_me:-configure}:40098: testing ..trimmed $LIBS ..." 1>&5 ;; esac @@ -39982,17 +40120,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}:39985: testing found package Xext ..." 1>&5 +echo "${as_me:-configure}:40123: 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}:39991: testing package Xext CFLAGS: $cf_pkgconfig_incs ..." 1>&5 +echo "${as_me:-configure}:40129: 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}:39995: testing package Xext LIBS: $cf_pkgconfig_libs ..." 1>&5 +echo "${as_me:-configure}:40133: testing package Xext LIBS: $cf_pkgconfig_libs ..." 1>&5 cf_fix_cppflags=no cf_new_cflags= @@ -40093,7 +40231,7 @@ else cf_pkgconfig_incs= cf_pkgconfig_libs= - echo "$as_me:40096: checking for XextCreateExtension in -lXext" >&5 + echo "$as_me:40234: 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 @@ -40101,7 +40239,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lXext $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 40104 "configure" +#line 40242 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -40120,16 +40258,16 @@ XextCreateExtension (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:40123: \"$ac_link\"") >&5 +if { (eval echo "$as_me:40261: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:40126: \$? = $ac_status" >&5 + echo "$as_me:40264: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:40129: \"$ac_try\"") >&5 + { (eval echo "$as_me:40267: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:40132: \$? = $ac_status" >&5 + echo "$as_me:40270: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_Xext_XextCreateExtension=yes else @@ -40140,7 +40278,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:40143: result: $ac_cv_lib_Xext_XextCreateExtension" >&5 +echo "$as_me:40281: 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 @@ -40176,17 +40314,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}:40179: testing found package x11 ..." 1>&5 +echo "${as_me:-configure}:40317: 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}:40185: testing package x11 CFLAGS: $cf_pkgconfig_incs ..." 1>&5 +echo "${as_me:-configure}:40323: 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}:40189: testing package x11 LIBS: $cf_pkgconfig_libs ..." 1>&5 +echo "${as_me:-configure}:40327: testing package x11 LIBS: $cf_pkgconfig_libs ..." 1>&5 cf_fix_cppflags=no cf_new_cflags= @@ -40286,24 +40424,24 @@ LIBS="$cf_add_libs" else cf_pkgconfig_incs= cf_pkgconfig_libs= - { echo "$as_me:40289: WARNING: unable to find X11 library" >&5 + { echo "$as_me:40427: 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}:40296: testing found package ice ..." 1>&5 +echo "${as_me:-configure}:40434: 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}:40302: testing package ice CFLAGS: $cf_pkgconfig_incs ..." 1>&5 +echo "${as_me:-configure}:40440: 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}:40306: testing package ice LIBS: $cf_pkgconfig_libs ..." 1>&5 +echo "${as_me:-configure}:40444: testing package ice LIBS: $cf_pkgconfig_libs ..." 1>&5 cf_fix_cppflags=no cf_new_cflags= @@ -40403,24 +40541,24 @@ LIBS="$cf_add_libs" else cf_pkgconfig_incs= cf_pkgconfig_libs= - { echo "$as_me:40406: WARNING: unable to find ICE library" >&5 + { echo "$as_me:40544: 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}:40413: testing found package sm ..." 1>&5 +echo "${as_me:-configure}:40551: 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}:40419: testing package sm CFLAGS: $cf_pkgconfig_incs ..." 1>&5 +echo "${as_me:-configure}:40557: 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}:40423: testing package sm LIBS: $cf_pkgconfig_libs ..." 1>&5 +echo "${as_me:-configure}:40561: testing package sm LIBS: $cf_pkgconfig_libs ..." 1>&5 cf_fix_cppflags=no cf_new_cflags= @@ -40520,24 +40658,24 @@ LIBS="$cf_add_libs" else cf_pkgconfig_incs= cf_pkgconfig_libs= - { echo "$as_me:40523: WARNING: unable to find SM library" >&5 + { echo "$as_me:40661: 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}:40530: testing found package xt ..." 1>&5 +echo "${as_me:-configure}:40668: 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}:40536: testing package xt CFLAGS: $cf_pkgconfig_incs ..." 1>&5 +echo "${as_me:-configure}:40674: 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}:40540: testing package xt LIBS: $cf_pkgconfig_libs ..." 1>&5 +echo "${as_me:-configure}:40678: testing package xt LIBS: $cf_pkgconfig_libs ..." 1>&5 cf_fix_cppflags=no cf_new_cflags= @@ -40637,7 +40775,7 @@ LIBS="$cf_add_libs" else cf_pkgconfig_incs= cf_pkgconfig_libs= - { echo "$as_me:40640: WARNING: unable to find Xt library" >&5 + { echo "$as_me:40778: WARNING: unable to find Xt library" >&5 echo "$as_me: WARNING: unable to find Xt library" >&2;} fi @@ -40648,17 +40786,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}:40651: testing found package xt ..." 1>&5 +echo "${as_me:-configure}:40789: 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}:40657: testing package xt CFLAGS: $cf_pkgconfig_incs ..." 1>&5 +echo "${as_me:-configure}:40795: 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}:40661: testing package xt LIBS: $cf_pkgconfig_libs ..." 1>&5 +echo "${as_me:-configure}:40799: testing package xt LIBS: $cf_pkgconfig_libs ..." 1>&5 cf_fix_cppflags=no cf_new_cflags= @@ -40759,14 +40897,14 @@ LIBS="$cf_add_libs" ;; (*) # we have an "xt" package, but it may omit Xt's dependency on X11 -echo "$as_me:40762: checking for usable X dependency" >&5 +echo "$as_me:40900: 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 40769 "configure" +#line 40907 "configure" #include "confdefs.h" #include <X11/Xlib.h> @@ -40785,16 +40923,16 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:40788: \"$ac_link\"") >&5 +if { (eval echo "$as_me:40926: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:40791: \$? = $ac_status" >&5 + echo "$as_me:40929: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:40794: \"$ac_try\"") >&5 + { (eval echo "$as_me:40932: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:40797: \$? = $ac_status" >&5 + echo "$as_me:40935: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_xt_x11_compat=yes else @@ -40804,30 +40942,30 @@ cf_cv_xt_x11_compat=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:40807: result: $cf_cv_xt_x11_compat" >&5 +echo "$as_me:40945: 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}:40813: testing work around broken X11 dependency ..." 1>&5 +echo "${as_me:-configure}:40951: 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}:40820: testing found package x11 ..." 1>&5 +echo "${as_me:-configure}:40958: 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}:40826: testing package x11 CFLAGS: $cf_pkgconfig_incs ..." 1>&5 +echo "${as_me:-configure}:40964: 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}:40830: testing package x11 LIBS: $cf_pkgconfig_libs ..." 1>&5 +echo "${as_me:-configure}:40968: testing package x11 LIBS: $cf_pkgconfig_libs ..." 1>&5 cf_fix_cppflags=no cf_new_cflags= @@ -40930,12 +41068,12 @@ else test -n "$verbose" && echo " ...before $LIBS" 1>&6 -echo "${as_me:-configure}:40933: testing ...before $LIBS ..." 1>&5 +echo "${as_me:-configure}:41071: 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}:40938: testing ...after $LIBS ..." 1>&5 +echo "${as_me:-configure}:41076: testing ...after $LIBS ..." 1>&5 fi @@ -40943,14 +41081,14 @@ fi ;; esac -echo "$as_me:40946: checking for usable X Toolkit package" >&5 +echo "$as_me:41084: 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 40953 "configure" +#line 41091 "configure" #include "confdefs.h" #include <X11/Shell.h> @@ -40965,16 +41103,16 @@ int num = IceConnectionNumber(0) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:40968: \"$ac_link\"") >&5 +if { (eval echo "$as_me:41106: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:40971: \$? = $ac_status" >&5 + echo "$as_me:41109: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:40974: \"$ac_try\"") >&5 + { (eval echo "$as_me:41112: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:40977: \$? = $ac_status" >&5 + echo "$as_me:41115: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_xt_ice_compat=yes else @@ -40984,7 +41122,7 @@ cf_cv_xt_ice_compat=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:40987: result: $cf_cv_xt_ice_compat" >&5 +echo "$as_me:41125: result: $cf_cv_xt_ice_compat" >&5 echo "${ECHO_T}$cf_cv_xt_ice_compat" >&6 if test "$cf_cv_xt_ice_compat" = no @@ -40998,22 +41136,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}:41001: testing work around broken ICE dependency ..." 1>&5 +echo "${as_me:-configure}:41139: 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}:41006: testing found package ice ..." 1>&5 +echo "${as_me:-configure}:41144: 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}:41012: testing package ice CFLAGS: $cf_pkgconfig_incs ..." 1>&5 +echo "${as_me:-configure}:41150: 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}:41016: testing package ice LIBS: $cf_pkgconfig_libs ..." 1>&5 +echo "${as_me:-configure}:41154: testing package ice LIBS: $cf_pkgconfig_libs ..." 1>&5 cf_fix_cppflags=no cf_new_cflags= @@ -41112,17 +41250,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}:41115: testing found package sm ..." 1>&5 +echo "${as_me:-configure}:41253: 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}:41121: testing package sm CFLAGS: $cf_pkgconfig_incs ..." 1>&5 +echo "${as_me:-configure}:41259: 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}:41125: testing package sm LIBS: $cf_pkgconfig_libs ..." 1>&5 +echo "${as_me:-configure}:41263: testing package sm LIBS: $cf_pkgconfig_libs ..." 1>&5 cf_fix_cppflags=no cf_new_cflags= @@ -41231,12 +41369,12 @@ else test -n "$verbose" && echo " ...before $LIBS" 1>&6 -echo "${as_me:-configure}:41234: testing ...before $LIBS ..." 1>&5 +echo "${as_me:-configure}:41372: 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}:41239: testing ...after $LIBS ..." 1>&5 +echo "${as_me:-configure}:41377: testing ...after $LIBS ..." 1>&5 fi @@ -41256,7 +41394,7 @@ else test -n "$verbose" && echo " checking additions to CFLAGS" 1>&6 -echo "${as_me:-configure}:41259: testing checking additions to CFLAGS ..." 1>&5 +echo "${as_me:-configure}:41397: testing checking additions to CFLAGS ..." 1>&5 cf_check_cflags="$CFLAGS" cf_check_cppflags="$CPPFLAGS" @@ -41327,7 +41465,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}:41330: testing add to \$CFLAGS $cf_new_cflags ..." 1>&5 +echo "${as_me:-configure}:41468: testing add to \$CFLAGS $cf_new_cflags ..." 1>&5 CFLAGS="$CFLAGS $cf_new_cflags" fi @@ -41335,7 +41473,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}:41338: testing add to \$CPPFLAGS $cf_new_cppflags ..." 1>&5 +echo "${as_me:-configure}:41476: testing add to \$CPPFLAGS $cf_new_cppflags ..." 1>&5 CPPFLAGS="$CPPFLAGS $cf_new_cppflags" fi @@ -41343,14 +41481,14 @@ fi if test -n "$cf_new_extra_cppflags" ; then test -n "$verbose" && echo " add to \$EXTRA_CPPFLAGS $cf_new_extra_cppflags" 1>&6 -echo "${as_me:-configure}:41346: testing add to \$EXTRA_CPPFLAGS $cf_new_extra_cppflags ..." 1>&5 +echo "${as_me:-configure}:41484: testing add to \$EXTRA_CPPFLAGS $cf_new_extra_cppflags ..." 1>&5 EXTRA_CPPFLAGS="$cf_new_extra_cppflags $EXTRA_CPPFLAGS" fi if test "x$cf_check_cflags" != "x$CFLAGS" ; then cat >conftest.$ac_ext <<_ACEOF -#line 41353 "configure" +#line 41491 "configure" #include "confdefs.h" #include <stdio.h> int @@ -41362,16 +41500,16 @@ printf("Hello world"); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:41365: \"$ac_link\"") >&5 +if { (eval echo "$as_me:41503: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:41368: \$? = $ac_status" >&5 + echo "$as_me:41506: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:41371: \"$ac_try\"") >&5 + { (eval echo "$as_me:41509: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:41374: \$? = $ac_status" >&5 + echo "$as_me:41512: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -41379,12 +41517,12 @@ else cat conftest.$ac_ext >&5 test -n "$verbose" && echo " test-compile failed. Undoing change to \$CFLAGS" 1>&6 -echo "${as_me:-configure}:41382: testing test-compile failed. Undoing change to \$CFLAGS ..." 1>&5 +echo "${as_me:-configure}:41520: 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}:41387: testing but keeping change to \$CPPFLAGS ..." 1>&5 +echo "${as_me:-configure}:41525: testing but keeping change to \$CPPFLAGS ..." 1>&5 fi CFLAGS="$cf_check_flags" @@ -41392,13 +41530,13 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi - echo "$as_me:41395: checking for XOpenDisplay" >&5 + echo "$as_me:41533: 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 41401 "configure" +#line 41539 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char XOpenDisplay (); below. */ @@ -41429,16 +41567,16 @@ f = XOpenDisplay; /* workaround for ICC 12.0.3 */ if (f == 0) return 1; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:41432: \"$ac_link\"") >&5 +if { (eval echo "$as_me:41570: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:41435: \$? = $ac_status" >&5 + echo "$as_me:41573: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:41438: \"$ac_try\"") >&5 + { (eval echo "$as_me:41576: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:41441: \$? = $ac_status" >&5 + echo "$as_me:41579: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_XOpenDisplay=yes else @@ -41448,13 +41586,13 @@ ac_cv_func_XOpenDisplay=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:41451: result: $ac_cv_func_XOpenDisplay" >&5 +echo "$as_me:41589: 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:41457: checking for XOpenDisplay in -lX11" >&5 + echo "$as_me:41595: 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 @@ -41462,7 +41600,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lX11 $X_PRE_LIBS $LIBS $X_EXTRA_LIBS $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 41465 "configure" +#line 41603 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -41481,16 +41619,16 @@ XOpenDisplay (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:41484: \"$ac_link\"") >&5 +if { (eval echo "$as_me:41622: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:41487: \$? = $ac_status" >&5 + echo "$as_me:41625: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:41490: \"$ac_try\"") >&5 + { (eval echo "$as_me:41628: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:41493: \$? = $ac_status" >&5 + echo "$as_me:41631: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_X11_XOpenDisplay=yes else @@ -41501,7 +41639,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:41504: result: $ac_cv_lib_X11_XOpenDisplay" >&5 +echo "$as_me:41642: 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 @@ -41525,13 +41663,13 @@ fi fi - echo "$as_me:41528: checking for XtAppInitialize" >&5 + echo "$as_me:41666: 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 41534 "configure" +#line 41672 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char XtAppInitialize (); below. */ @@ -41562,16 +41700,16 @@ f = XtAppInitialize; /* workaround for ICC 12.0.3 */ if (f == 0) return 1; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:41565: \"$ac_link\"") >&5 +if { (eval echo "$as_me:41703: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:41568: \$? = $ac_status" >&5 + echo "$as_me:41706: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:41571: \"$ac_try\"") >&5 + { (eval echo "$as_me:41709: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:41574: \$? = $ac_status" >&5 + echo "$as_me:41712: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_XtAppInitialize=yes else @@ -41581,13 +41719,13 @@ ac_cv_func_XtAppInitialize=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:41584: result: $ac_cv_func_XtAppInitialize" >&5 +echo "$as_me:41722: 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:41590: checking for XtAppInitialize in -lXt" >&5 + echo "$as_me:41728: 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 @@ -41595,7 +41733,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lXt $X_PRE_LIBS $LIBS $X_EXTRA_LIBS $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 41598 "configure" +#line 41736 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -41614,16 +41752,16 @@ XtAppInitialize (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:41617: \"$ac_link\"") >&5 +if { (eval echo "$as_me:41755: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:41620: \$? = $ac_status" >&5 + echo "$as_me:41758: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:41623: \"$ac_try\"") >&5 + { (eval echo "$as_me:41761: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:41626: \$? = $ac_status" >&5 + echo "$as_me:41764: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_Xt_XtAppInitialize=yes else @@ -41634,7 +41772,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:41637: result: $ac_cv_lib_Xt_XtAppInitialize" >&5 +echo "$as_me:41775: 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 @@ -41651,7 +41789,7 @@ fi fi if test $cf_have_X_LIBS = no ; then - { echo "$as_me:41654: WARNING: Unable to successfully link X Toolkit library (-lXt) with + { echo "$as_me:41792: 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 @@ -41673,14 +41811,14 @@ do cf_test=X11/$cf_x_athena_root/SimpleMenu.h if test $cf_path != default ; then CPPFLAGS="$cf_save -I$cf_path/include" - echo "$as_me:41676: checking for $cf_test in $cf_path" >&5 + echo "$as_me:41814: 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:41679: checking for $cf_test" >&5 + echo "$as_me:41817: checking for $cf_test" >&5 echo $ECHO_N "checking for $cf_test... $ECHO_C" >&6 fi cat >conftest.$ac_ext <<_ACEOF -#line 41683 "configure" +#line 41821 "configure" #include "confdefs.h" #include <X11/Intrinsic.h> @@ -41694,16 +41832,16 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:41697: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:41835: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:41700: \$? = $ac_status" >&5 + echo "$as_me:41838: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:41703: \"$ac_try\"") >&5 + { (eval echo "$as_me:41841: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:41706: \$? = $ac_status" >&5 + echo "$as_me:41844: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_result=yes else @@ -41712,7 +41850,7 @@ cat conftest.$ac_ext >&5 cf_result=no fi rm -f conftest.$ac_objext conftest.$ac_ext - echo "$as_me:41715: result: $cf_result" >&5 + echo "$as_me:41853: result: $cf_result" >&5 echo "${ECHO_T}$cf_result" >&6 if test "$cf_result" = yes ; then cf_x_athena_inc=$cf_path @@ -41724,7 +41862,7 @@ echo "${ECHO_T}$cf_result" >&6 done if test -z "$cf_x_athena_inc" ; then - { echo "$as_me:41727: WARNING: Unable to successfully find Athena header files with test program" >&5 + { echo "$as_me:41865: WARNING: Unable to successfully find Athena header files with test program" >&5 echo "$as_me: WARNING: Unable to successfully find Athena header files with test program" >&2;} elif test "$cf_x_athena_inc" != default ; then CPPFLAGS="$CPPFLAGS -I$cf_x_athena_inc" @@ -41770,7 +41908,7 @@ do done LIBS="$cf_add_libs" - echo "$as_me:41773: checking for $cf_libs in $cf_path" >&5 + echo "$as_me:41911: checking for $cf_libs in $cf_path" >&5 echo $ECHO_N "checking for $cf_libs in $cf_path... $ECHO_C" >&6 else @@ -41790,11 +41928,11 @@ do done LIBS="$cf_add_libs" - echo "$as_me:41793: checking for $cf_test in $cf_libs" >&5 + echo "$as_me:41931: checking for $cf_test in $cf_libs" >&5 echo $ECHO_N "checking for $cf_test in $cf_libs... $ECHO_C" >&6 fi cat >conftest.$ac_ext <<_ACEOF -#line 41797 "configure" +#line 41935 "configure" #include "confdefs.h" #include <X11/Intrinsic.h> @@ -41810,16 +41948,16 @@ $cf_test((XtAppContext) 0) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:41813: \"$ac_link\"") >&5 +if { (eval echo "$as_me:41951: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:41816: \$? = $ac_status" >&5 + echo "$as_me:41954: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:41819: \"$ac_try\"") >&5 + { (eval echo "$as_me:41957: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:41822: \$? = $ac_status" >&5 + echo "$as_me:41960: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_result=yes else @@ -41828,7 +41966,7 @@ cat conftest.$ac_ext >&5 cf_result=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext - echo "$as_me:41831: result: $cf_result" >&5 + echo "$as_me:41969: result: $cf_result" >&5 echo "${ECHO_T}$cf_result" >&6 if test "$cf_result" = yes ; then cf_x_athena_lib="$cf_libs" @@ -41842,7 +41980,7 @@ echo "${ECHO_T}$cf_result" >&6 done if test -z "$cf_x_athena_lib" ; then - { { echo "$as_me:41845: error: Unable to successfully link Athena library (-l$cf_x_athena_root) with test program" >&5 + { { echo "$as_me:41983: 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 @@ -41860,7 +41998,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:41863: checking for $ac_word" >&5 +echo "$as_me:42001: 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 @@ -41875,7 +42013,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:41878: found $ac_dir/$ac_word" >&5 +echo "$as_me:42016: found $ac_dir/$ac_word" >&5 break done @@ -41883,10 +42021,10 @@ fi fi XCURSES_CONFIG=$ac_cv_prog_XCURSES_CONFIG if test -n "$XCURSES_CONFIG"; then - echo "$as_me:41886: result: $XCURSES_CONFIG" >&5 + echo "$as_me:42024: result: $XCURSES_CONFIG" >&5 echo "${ECHO_T}$XCURSES_CONFIG" >&6 else - echo "$as_me:41889: result: no" >&5 + echo "$as_me:42027: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -41899,7 +42037,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:41902: checking for $ac_word" >&5 +echo "$as_me:42040: 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 @@ -41914,7 +42052,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:41917: found $ac_dir/$ac_word" >&5 +echo "$as_me:42055: found $ac_dir/$ac_word" >&5 break done @@ -41922,10 +42060,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:41925: result: $ac_ct_XCURSES_CONFIG" >&5 + echo "$as_me:42063: result: $ac_ct_XCURSES_CONFIG" >&5 echo "${ECHO_T}$ac_ct_XCURSES_CONFIG" >&6 else - echo "$as_me:41928: result: no" >&5 + echo "$as_me:42066: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -41964,7 +42102,7 @@ LDFLAGS="$LDFLAGS $X_LIBS" test -n "$verbose" && echo " checking additions to CFLAGS" 1>&6 -echo "${as_me:-configure}:41967: testing checking additions to CFLAGS ..." 1>&5 +echo "${as_me:-configure}:42105: testing checking additions to CFLAGS ..." 1>&5 cf_check_cflags="$CFLAGS" cf_check_cppflags="$CPPFLAGS" @@ -42035,7 +42173,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}:42038: testing add to \$CFLAGS $cf_new_cflags ..." 1>&5 +echo "${as_me:-configure}:42176: testing add to \$CFLAGS $cf_new_cflags ..." 1>&5 CFLAGS="$CFLAGS $cf_new_cflags" fi @@ -42043,7 +42181,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}:42046: testing add to \$CPPFLAGS $cf_new_cppflags ..." 1>&5 +echo "${as_me:-configure}:42184: testing add to \$CPPFLAGS $cf_new_cppflags ..." 1>&5 CPPFLAGS="$CPPFLAGS $cf_new_cppflags" fi @@ -42051,14 +42189,14 @@ fi if test -n "$cf_new_extra_cppflags" ; then test -n "$verbose" && echo " add to \$EXTRA_CPPFLAGS $cf_new_extra_cppflags" 1>&6 -echo "${as_me:-configure}:42054: testing add to \$EXTRA_CPPFLAGS $cf_new_extra_cppflags ..." 1>&5 +echo "${as_me:-configure}:42192: testing add to \$EXTRA_CPPFLAGS $cf_new_extra_cppflags ..." 1>&5 EXTRA_CPPFLAGS="$cf_new_extra_cppflags $EXTRA_CPPFLAGS" fi if test "x$cf_check_cflags" != "x$CFLAGS" ; then cat >conftest.$ac_ext <<_ACEOF -#line 42061 "configure" +#line 42199 "configure" #include "confdefs.h" #include <stdio.h> int @@ -42070,16 +42208,16 @@ printf("Hello world"); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:42073: \"$ac_link\"") >&5 +if { (eval echo "$as_me:42211: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:42076: \$? = $ac_status" >&5 + echo "$as_me:42214: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:42079: \"$ac_try\"") >&5 + { (eval echo "$as_me:42217: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:42082: \$? = $ac_status" >&5 + echo "$as_me:42220: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -42087,12 +42225,12 @@ else cat conftest.$ac_ext >&5 test -n "$verbose" && echo " test-compile failed. Undoing change to \$CFLAGS" 1>&6 -echo "${as_me:-configure}:42090: testing test-compile failed. Undoing change to \$CFLAGS ..." 1>&5 +echo "${as_me:-configure}:42228: 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}:42095: testing but keeping change to \$CPPFLAGS ..." 1>&5 +echo "${as_me:-configure}:42233: testing but keeping change to \$CPPFLAGS ..." 1>&5 fi CFLAGS="$cf_check_flags" @@ -42100,7 +42238,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:42103: checking for XOpenDisplay in -lX11" >&5 +echo "$as_me:42241: 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 @@ -42108,7 +42246,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lX11 $X_PRE_LIBS $LIBS $X_EXTRA_LIBS $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 42111 "configure" +#line 42249 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -42127,16 +42265,16 @@ XOpenDisplay (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:42130: \"$ac_link\"") >&5 +if { (eval echo "$as_me:42268: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:42133: \$? = $ac_status" >&5 + echo "$as_me:42271: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:42136: \"$ac_try\"") >&5 + { (eval echo "$as_me:42274: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:42139: \$? = $ac_status" >&5 + echo "$as_me:42277: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_X11_XOpenDisplay=yes else @@ -42147,7 +42285,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:42150: result: $ac_cv_lib_X11_XOpenDisplay" >&5 +echo "$as_me:42288: 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 @@ -42169,7 +42307,7 @@ LIBS="$cf_add_libs" fi -echo "$as_me:42172: checking for XCurses library" >&5 +echo "$as_me:42310: 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 @@ -42192,7 +42330,7 @@ done LIBS="$cf_add_libs" cat >conftest.$ac_ext <<_ACEOF -#line 42195 "configure" +#line 42333 "configure" #include "confdefs.h" #include <xcurses.h> @@ -42207,16 +42345,16 @@ XCursesExit(); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:42210: \"$ac_link\"") >&5 +if { (eval echo "$as_me:42348: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:42213: \$? = $ac_status" >&5 + echo "$as_me:42351: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:42216: \"$ac_try\"") >&5 + { (eval echo "$as_me:42354: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:42219: \$? = $ac_status" >&5 + echo "$as_me:42357: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_lib_XCurses=yes else @@ -42227,7 +42365,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:42230: result: $cf_cv_lib_XCurses" >&5 +echo "$as_me:42368: result: $cf_cv_lib_XCurses" >&5 echo "${ECHO_T}$cf_cv_lib_XCurses" >&6 fi @@ -42242,23 +42380,23 @@ cat >>confdefs.h <<\EOF #define XCURSES 1 EOF - echo "$as_me:42245: checking for xcurses.h" >&5 + echo "$as_me:42383: 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 42251 "configure" +#line 42389 "configure" #include "confdefs.h" #include <xcurses.h> _ACEOF -if { (eval echo "$as_me:42255: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:42393: \"$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:42261: \$? = $ac_status" >&5 + echo "$as_me:42399: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -42277,7 +42415,7 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:42280: result: $ac_cv_header_xcurses_h" >&5 +echo "$as_me:42418: 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 @@ -42288,7 +42426,7 @@ EOF fi else - { { echo "$as_me:42291: error: Cannot link with XCurses" >&5 + { { echo "$as_me:42429: error: Cannot link with XCurses" >&5 echo "$as_me: error: Cannot link with XCurses" >&2;} { (exit 1); exit 1; }; } fi @@ -42297,7 +42435,7 @@ fi esac else -echo "$as_me:42300: checking if we can include termio.h with curses" >&5 +echo "$as_me:42438: 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 @@ -42307,7 +42445,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 42310 "configure" +#line 42448 "configure" #include "confdefs.h" #include <LYCurses.h> @@ -42321,16 +42459,16 @@ putchar(0x0a) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:42324: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:42462: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:42327: \$? = $ac_status" >&5 + echo "$as_me:42465: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:42330: \"$ac_try\"") >&5 + { (eval echo "$as_me:42468: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:42333: \$? = $ac_status" >&5 + echo "$as_me:42471: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_termio_and_curses=yes else @@ -42343,7 +42481,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext rm -f lynx_cfg.h fi -echo "$as_me:42346: result: $cf_cv_termio_and_curses" >&5 +echo "$as_me:42484: result: $cf_cv_termio_and_curses" >&5 echo "${ECHO_T}$cf_cv_termio_and_curses" >&6 test $cf_cv_termio_and_curses = yes && @@ -42360,23 +42498,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:42363: checking for $ac_header" >&5 +echo "$as_me:42501: 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 42369 "configure" +#line 42507 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:42373: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:42511: \"$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:42379: \$? = $ac_status" >&5 + echo "$as_me:42517: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -42395,7 +42533,7 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:42398: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:42536: 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 @@ -42407,7 +42545,7 @@ done fi -echo "$as_me:42410: checking if curses supports alternate-character set" >&5 +echo "$as_me:42548: 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 @@ -42416,7 +42554,7 @@ else for mapname in acs_map _acs_map do cat >conftest.$ac_ext <<_ACEOF -#line 42419 "configure" +#line 42557 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> @@ -42430,16 +42568,16 @@ chtype x = $mapname['l']; $mapname['m'] = 0 } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:42433: \"$ac_link\"") >&5 +if { (eval echo "$as_me:42571: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:42436: \$? = $ac_status" >&5 + echo "$as_me:42574: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:42439: \"$ac_try\"") >&5 + { (eval echo "$as_me:42577: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:42442: \$? = $ac_status" >&5 + echo "$as_me:42580: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_alt_char_set=$mapname break @@ -42453,21 +42591,21 @@ done fi -echo "$as_me:42456: result: $cf_cv_alt_char_set" >&5 +echo "$as_me:42594: 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:42463: checking if curses supports fancy attributes" >&5 +echo "$as_me:42601: 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 42470 "configure" +#line 42608 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> @@ -42485,16 +42623,16 @@ attrset(A_UNDERLINE|A_BOLD|A_REVERSE); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:42488: \"$ac_link\"") >&5 +if { (eval echo "$as_me:42626: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:42491: \$? = $ac_status" >&5 + echo "$as_me:42629: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:42494: \"$ac_try\"") >&5 + { (eval echo "$as_me:42632: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:42497: \$? = $ac_status" >&5 + echo "$as_me:42635: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_fancy_curses=yes else @@ -42506,14 +42644,14 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:42509: result: $cf_cv_fancy_curses" >&5 +echo "$as_me:42647: 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:42516: checking for function curses_version" >&5 +echo "$as_me:42654: 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 @@ -42523,7 +42661,7 @@ if test "$cross_compiling" = yes; then cf_cv_func_curses_version=unknown else cat >conftest.$ac_ext <<_ACEOF -#line 42526 "configure" +#line 42664 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> @@ -42536,15 +42674,15 @@ int main() _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:42539: \"$ac_link\"") >&5 +if { (eval echo "$as_me:42677: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:42542: \$? = $ac_status" >&5 + echo "$as_me:42680: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:42544: \"$ac_try\"") >&5 + { (eval echo "$as_me:42682: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:42547: \$? = $ac_status" >&5 + echo "$as_me:42685: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_func_curses_version=yes @@ -42559,7 +42697,7 @@ rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext fi rm -f core fi -echo "$as_me:42562: result: $cf_cv_func_curses_version" >&5 +echo "$as_me:42700: 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 @@ -42567,14 +42705,14 @@ cat >>confdefs.h <<\EOF EOF if test "$cf_cv_ncurses_version" != no ; then -echo "$as_me:42570: checking for obsolete/broken version of ncurses" >&5 +echo "$as_me:42708: 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 42577 "configure" +#line 42715 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> @@ -42593,16 +42731,16 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:42596: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:42734: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:42599: \$? = $ac_status" >&5 + echo "$as_me:42737: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:42602: \"$ac_try\"") >&5 + { (eval echo "$as_me:42740: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:42605: \$? = $ac_status" >&5 + echo "$as_me:42743: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_ncurses_broken=no else @@ -42614,10 +42752,10 @@ rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:42617: result: $cf_cv_ncurses_broken" >&5 +echo "$as_me:42755: 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:42620: WARNING: hmm... you should get an up-to-date version of ncurses" >&5 + { echo "$as_me:42758: 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 @@ -42627,14 +42765,14 @@ EOF fi fi -echo "$as_me:42630: checking if curses supports color attributes" >&5 +echo "$as_me:42768: 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 42637 "configure" +#line 42775 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> @@ -42654,16 +42792,16 @@ chtype x = COLOR_BLUE; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:42657: \"$ac_link\"") >&5 +if { (eval echo "$as_me:42795: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:42660: \$? = $ac_status" >&5 + echo "$as_me:42798: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:42663: \"$ac_try\"") >&5 + { (eval echo "$as_me:42801: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:42666: \$? = $ac_status" >&5 + echo "$as_me:42804: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_color_curses=yes else @@ -42675,7 +42813,7 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:42678: result: $cf_cv_color_curses" >&5 +echo "$as_me:42816: result: $cf_cv_color_curses" >&5 echo "${ECHO_T}$cf_cv_color_curses" >&6 if test $cf_cv_color_curses = yes ; then @@ -42697,23 +42835,23 @@ unistd.h \ do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` -echo "$as_me:42700: checking for $ac_header" >&5 +echo "$as_me:42838: 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 42706 "configure" +#line 42844 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:42710: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:42848: \"$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:42716: \$? = $ac_status" >&5 + echo "$as_me:42854: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -42732,7 +42870,7 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:42735: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:42873: 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 @@ -42747,23 +42885,23 @@ if test "$ISC" = yes ; then for ac_header in sys/termio.h do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` -echo "$as_me:42750: checking for $ac_header" >&5 +echo "$as_me:42888: 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 42756 "configure" +#line 42894 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:42760: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:42898: \"$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:42766: \$? = $ac_status" >&5 + echo "$as_me:42904: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -42782,7 +42920,7 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:42785: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:42923: 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 @@ -42800,10 +42938,10 @@ if test "$ac_cv_header_termios_h" = yes ; then (*) termios_bad=maybe ;; esac if test "$termios_bad" = maybe ; then - echo "$as_me:42803: checking whether termios.h needs _POSIX_SOURCE" >&5 + echo "$as_me:42941: 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 42806 "configure" +#line 42944 "configure" #include "confdefs.h" #include <termios.h> int @@ -42815,16 +42953,16 @@ struct termios foo; int x = foo.c_iflag } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:42818: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:42956: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:42821: \$? = $ac_status" >&5 + echo "$as_me:42959: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:42824: \"$ac_try\"") >&5 + { (eval echo "$as_me:42962: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:42827: \$? = $ac_status" >&5 + echo "$as_me:42965: \$? = $ac_status" >&5 (exit $ac_status); }; }; then termios_bad=no else @@ -42832,7 +42970,7 @@ else cat conftest.$ac_ext >&5 cat >conftest.$ac_ext <<_ACEOF -#line 42835 "configure" +#line 42973 "configure" #include "confdefs.h" #define _POSIX_SOURCE @@ -42846,16 +42984,16 @@ struct termios foo; int x = foo.c_iflag } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:42849: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:42987: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:42852: \$? = $ac_status" >&5 + echo "$as_me:42990: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:42855: \"$ac_try\"") >&5 + { (eval echo "$as_me:42993: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:42858: \$? = $ac_status" >&5 + echo "$as_me:42996: \$? = $ac_status" >&5 (exit $ac_status); }; }; then termios_bad=unknown else @@ -42871,12 +43009,12 @@ rm -f conftest.$ac_objext conftest.$ac_ext fi rm -f conftest.$ac_objext conftest.$ac_ext - echo "$as_me:42874: result: $termios_bad" >&5 + echo "$as_me:43012: result: $termios_bad" >&5 echo "${ECHO_T}$termios_bad" >&6 fi fi -echo "$as_me:42879: checking declaration of size-change" >&5 +echo "$as_me:43017: 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 @@ -42891,7 +43029,7 @@ do CPPFLAGS="$cf_save_CPPFLAGS" test -n "$cf_opts" && CPPFLAGS="$CPPFLAGS -D$cf_opts" cat >conftest.$ac_ext <<_ACEOF -#line 42894 "configure" +#line 43032 "configure" #include "confdefs.h" #include <sys/types.h> #ifdef HAVE_TERMIOS_H @@ -42935,16 +43073,16 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:42938: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:43076: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:42941: \$? = $ac_status" >&5 + echo "$as_me:43079: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:42944: \"$ac_try\"") >&5 + { (eval echo "$as_me:43082: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:42947: \$? = $ac_status" >&5 + echo "$as_me:43085: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_sizechange=yes else @@ -42963,7 +43101,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext done fi -echo "$as_me:42966: result: $cf_cv_sizechange" >&5 +echo "$as_me:43104: result: $cf_cv_sizechange" >&5 echo "${ECHO_T}$cf_cv_sizechange" >&6 if test "$cf_cv_sizechange" != no ; then @@ -42981,14 +43119,14 @@ EOF esac fi -echo "$as_me:42984: checking if ttytype is declared in curses library" >&5 +echo "$as_me:43122: 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 42991 "configure" +#line 43129 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> int @@ -43000,16 +43138,16 @@ char *x = &ttytype[1]; *x = 1 } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:43003: \"$ac_link\"") >&5 +if { (eval echo "$as_me:43141: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:43006: \$? = $ac_status" >&5 + echo "$as_me:43144: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:43009: \"$ac_try\"") >&5 + { (eval echo "$as_me:43147: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:43012: \$? = $ac_status" >&5 + echo "$as_me:43150: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_have_ttytype=yes else @@ -43021,7 +43159,7 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:43024: result: $cf_cv_have_ttytype" >&5 +echo "$as_me:43162: result: $cf_cv_have_ttytype" >&5 echo "${ECHO_T}$cf_cv_have_ttytype" >&6 test $cf_cv_have_ttytype = yes && cat >>confdefs.h <<\EOF @@ -43030,14 +43168,14 @@ EOF if test "$use_wide_curses" = yes ; then -echo "$as_me:43033: checking if curses supports wide characters" >&5 +echo "$as_me:43171: 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 43040 "configure" +#line 43178 "configure" #include "confdefs.h" #include <stdlib.h> @@ -43056,16 +43194,16 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:43059: \"$ac_link\"") >&5 +if { (eval echo "$as_me:43197: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:43062: \$? = $ac_status" >&5 + echo "$as_me:43200: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:43065: \"$ac_try\"") >&5 + { (eval echo "$as_me:43203: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:43068: \$? = $ac_status" >&5 + echo "$as_me:43206: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_widec_curses=yes else @@ -43076,7 +43214,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:43079: result: $cf_cv_widec_curses" >&5 +echo "$as_me:43217: result: $cf_cv_widec_curses" >&5 echo "${ECHO_T}$cf_cv_widec_curses" >&6 if test "$cf_cv_widec_curses" = yes ; then @@ -43086,14 +43224,14 @@ cat >>confdefs.h <<\EOF EOF # This is needed on Tru64 5.0 to declare mbstate_t - echo "$as_me:43089: checking if we must include wchar.h to declare mbstate_t" >&5 + echo "$as_me:43227: 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 43096 "configure" +#line 43234 "configure" #include "confdefs.h" #include <stdlib.h> @@ -43107,23 +43245,23 @@ mbstate_t state } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:43110: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:43248: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:43113: \$? = $ac_status" >&5 + echo "$as_me:43251: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:43116: \"$ac_try\"") >&5 + { (eval echo "$as_me:43254: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:43119: \$? = $ac_status" >&5 + echo "$as_me:43257: \$? = $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 43126 "configure" +#line 43264 "configure" #include "confdefs.h" #include <stdlib.h> @@ -43138,16 +43276,16 @@ mbstate_t state } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:43141: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:43279: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:43144: \$? = $ac_status" >&5 + echo "$as_me:43282: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:43147: \"$ac_try\"") >&5 + { (eval echo "$as_me:43285: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:43150: \$? = $ac_status" >&5 + echo "$as_me:43288: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_widec_mbstate=yes else @@ -43159,7 +43297,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:43162: result: $cf_cv_widec_mbstate" >&5 +echo "$as_me:43300: result: $cf_cv_widec_mbstate" >&5 echo "${ECHO_T}$cf_cv_widec_mbstate" >&6 if test "$cf_cv_widec_mbstate" = yes ; then @@ -43182,7 +43320,7 @@ fi fi -echo "$as_me:43185: checking definition to turn on extended curses functions" >&5 +echo "$as_me:43323: 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 @@ -43190,7 +43328,7 @@ else cf_cv_need_xopen_extension=unknown cat >conftest.$ac_ext <<_ACEOF -#line 43193 "configure" +#line 43331 "configure" #include "confdefs.h" #include <stdlib.h> @@ -43216,16 +43354,16 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:43219: \"$ac_link\"") >&5 +if { (eval echo "$as_me:43357: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:43222: \$? = $ac_status" >&5 + echo "$as_me:43360: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:43225: \"$ac_try\"") >&5 + { (eval echo "$as_me:43363: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:43228: \$? = $ac_status" >&5 + echo "$as_me:43366: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_need_xopen_extension=none else @@ -43235,7 +43373,7 @@ cat conftest.$ac_ext >&5 for cf_try_xopen_extension in _XOPEN_SOURCE_EXTENDED NCURSES_WIDECHAR do cat >conftest.$ac_ext <<_ACEOF -#line 43238 "configure" +#line 43376 "configure" #include "confdefs.h" #define $cf_try_xopen_extension 1 @@ -43257,16 +43395,16 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:43260: \"$ac_link\"") >&5 +if { (eval echo "$as_me:43398: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:43263: \$? = $ac_status" >&5 + echo "$as_me:43401: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:43266: \"$ac_try\"") >&5 + { (eval echo "$as_me:43404: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:43269: \$? = $ac_status" >&5 + echo "$as_me:43407: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_need_xopen_extension=$cf_try_xopen_extension; break else @@ -43280,7 +43418,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:43283: result: $cf_cv_need_xopen_extension" >&5 +echo "$as_me:43421: result: $cf_cv_need_xopen_extension" >&5 echo "${ECHO_T}$cf_cv_need_xopen_extension" >&6 case $cf_cv_need_xopen_extension in @@ -43289,7 +43427,7 @@ case $cf_cv_need_xopen_extension in ;; esac -echo "$as_me:43292: checking for term.h" >&5 +echo "$as_me:43430: 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 @@ -43310,7 +43448,7 @@ esac for cf_header in $cf_header_list do cat >conftest.$ac_ext <<_ACEOF -#line 43313 "configure" +#line 43451 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> @@ -43324,16 +43462,16 @@ WINDOW *x } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:43327: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:43465: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:43330: \$? = $ac_status" >&5 + echo "$as_me:43468: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:43333: \"$ac_try\"") >&5 + { (eval echo "$as_me:43471: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:43336: \$? = $ac_status" >&5 + echo "$as_me:43474: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_term_header=$cf_header break @@ -43352,7 +43490,7 @@ case $cf_cv_term_header in for cf_header in ncurses/term.h ncursesw/term.h do cat >conftest.$ac_ext <<_ACEOF -#line 43355 "configure" +#line 43493 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> @@ -43370,16 +43508,16 @@ WINDOW *x } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:43373: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:43511: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:43376: \$? = $ac_status" >&5 + echo "$as_me:43514: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:43379: \"$ac_try\"") >&5 + { (eval echo "$as_me:43517: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:43382: \$? = $ac_status" >&5 + echo "$as_me:43520: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_term_header=$cf_header break @@ -43394,7 +43532,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext esac fi -echo "$as_me:43397: result: $cf_cv_term_header" >&5 +echo "$as_me:43535: result: $cf_cv_term_header" >&5 echo "${ECHO_T}$cf_cv_term_header" >&6 case $cf_cv_term_header in @@ -43421,7 +43559,7 @@ EOF ;; esac -echo "$as_me:43424: checking for unctrl.h" >&5 +echo "$as_me:43562: 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 @@ -43442,7 +43580,7 @@ esac for cf_header in $cf_header_list do cat >conftest.$ac_ext <<_ACEOF -#line 43445 "configure" +#line 43583 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> @@ -43456,16 +43594,16 @@ WINDOW *x } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:43459: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:43597: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:43462: \$? = $ac_status" >&5 + echo "$as_me:43600: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:43465: \"$ac_try\"") >&5 + { (eval echo "$as_me:43603: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:43468: \$? = $ac_status" >&5 + echo "$as_me:43606: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_unctrl_header=$cf_header break @@ -43478,12 +43616,12 @@ rm -f conftest.$ac_objext conftest.$ac_ext done fi -echo "$as_me:43481: result: $cf_cv_unctrl_header" >&5 +echo "$as_me:43619: result: $cf_cv_unctrl_header" >&5 echo "${ECHO_T}$cf_cv_unctrl_header" >&6 case $cf_cv_unctrl_header in (no) - { echo "$as_me:43486: WARNING: unctrl.h header not found" >&5 + { echo "$as_me:43624: WARNING: unctrl.h header not found" >&5 echo "$as_me: WARNING: unctrl.h header not found" >&2;} ;; esac @@ -43539,10 +43677,10 @@ do cf_tr_func=`echo "$cf_func" | sed y%abcdefghijklmnopqrstuvwxyz./-%ABCDEFGHIJKLMNOPQRSTUVWXYZ___%` - echo "$as_me:43542: checking for ${cf_func}" >&5 + echo "$as_me:43680: checking for ${cf_func}" >&5 echo $ECHO_N "checking for ${cf_func}... $ECHO_C" >&6 -echo "${as_me:-configure}:43545: testing ${cf_func} ..." 1>&5 +echo "${as_me:-configure}:43683: testing ${cf_func} ..." 1>&5 if eval "test \"\${cf_cv_func_$cf_func+set}\" = set"; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -43551,7 +43689,7 @@ else eval cf_result='$ac_cv_func_'$cf_func if test ".$cf_result" != ".no"; then cat >conftest.$ac_ext <<_ACEOF -#line 43554 "configure" +#line 43692 "configure" #include "confdefs.h" #ifdef HAVE_XCURSES @@ -43584,16 +43722,16 @@ if (foo + 1234 > 5678) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:43587: \"$ac_link\"") >&5 +if { (eval echo "$as_me:43725: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:43590: \$? = $ac_status" >&5 + echo "$as_me:43728: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:43593: \"$ac_try\"") >&5 + { (eval echo "$as_me:43731: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:43596: \$? = $ac_status" >&5 + echo "$as_me:43734: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_result=yes else @@ -43609,7 +43747,7 @@ fi # use the computed/retrieved cache-value: eval 'cf_result=$cf_cv_func_'$cf_func - echo "$as_me:43612: result: $cf_result" >&5 + echo "$as_me:43750: result: $cf_result" >&5 echo "${ECHO_T}$cf_result" >&6 if test $cf_result != no; then cat >>confdefs.h <<EOF @@ -43625,13 +43763,13 @@ for ac_func in \ do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` -echo "$as_me:43628: checking for $ac_func" >&5 +echo "$as_me:43766: 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 43634 "configure" +#line 43772 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. */ @@ -43662,16 +43800,16 @@ f = $ac_func; /* workaround for ICC 12.0.3 */ if (f == 0) return 1; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:43665: \"$ac_link\"") >&5 +if { (eval echo "$as_me:43803: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:43668: \$? = $ac_status" >&5 + echo "$as_me:43806: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:43671: \"$ac_try\"") >&5 + { (eval echo "$as_me:43809: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:43674: \$? = $ac_status" >&5 + echo "$as_me:43812: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else @@ -43681,7 +43819,7 @@ eval "$as_ac_var=no" fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:43684: result: `eval echo '${'$as_ac_var'}'`" >&5 +echo "$as_me:43822: 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 @@ -43695,12 +43833,12 @@ fi if test $use_color_style != no ; then if test .$cf_cv_color_curses != .yes ; then - { { echo "$as_me:43698: error: Configuration does not support color-styles" >&5 + { { echo "$as_me:43836: 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:43703: error: Configuration does not support color-styles" >&5 + { { echo "$as_me:43841: error: Configuration does not support color-styles" >&5 echo "$as_me: error: Configuration does not support color-styles" >&2;} { (exit 1); exit 1; }; } fi @@ -43708,7 +43846,7 @@ fi if test $use_scrollbar != no ; then if test .$cf_cv_fancy_curses != .yes ; then - { echo "$as_me:43711: WARNING: Configuration does not support ACS_xxx definitions" >&5 + { echo "$as_me:43849: WARNING: Configuration does not support ACS_xxx definitions" >&5 echo "$as_me: WARNING: Configuration does not support ACS_xxx definitions" >&2;} else @@ -43722,7 +43860,7 @@ fi # use rpath for libraries in unusual places LD_RPATH_OPT= -echo "$as_me:43725: checking for an rpath option" >&5 +echo "$as_me:43863: checking for an rpath option" >&5 echo $ECHO_N "checking for an rpath option... $ECHO_C" >&6 case $cf_cv_system_name in (irix*) @@ -43753,12 +43891,12 @@ case $cf_cv_system_name in (*) ;; esac -echo "$as_me:43756: result: $LD_RPATH_OPT" >&5 +echo "$as_me:43894: result: $LD_RPATH_OPT" >&5 echo "${ECHO_T}$LD_RPATH_OPT" >&6 case "x$LD_RPATH_OPT" in (x-R*) - echo "$as_me:43761: checking if we need a space after rpath option" >&5 + echo "$as_me:43899: 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" @@ -43779,7 +43917,7 @@ done LIBS="$cf_add_libs" cat >conftest.$ac_ext <<_ACEOF -#line 43782 "configure" +#line 43920 "configure" #include "confdefs.h" int @@ -43791,16 +43929,16 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:43794: \"$ac_link\"") >&5 +if { (eval echo "$as_me:43932: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:43797: \$? = $ac_status" >&5 + echo "$as_me:43935: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:43800: \"$ac_try\"") >&5 + { (eval echo "$as_me:43938: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:43803: \$? = $ac_status" >&5 + echo "$as_me:43941: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_rpath_space=no else @@ -43810,13 +43948,13 @@ cf_rpath_space=yes fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS="$cf_save_LIBS" - echo "$as_me:43813: result: $cf_rpath_space" >&5 + echo "$as_me:43951: result: $cf_rpath_space" >&5 echo "${ECHO_T}$cf_rpath_space" >&6 test "$cf_rpath_space" = yes && LD_RPATH_OPT="$LD_RPATH_OPT " ;; esac -echo "$as_me:43819: checking if rpath-hack should be disabled" >&5 +echo "$as_me:43957: 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. @@ -43833,21 +43971,21 @@ else cf_disable_rpath_hack=no fi; -echo "$as_me:43836: result: $cf_disable_rpath_hack" >&5 +echo "$as_me:43974: result: $cf_disable_rpath_hack" >&5 echo "${ECHO_T}$cf_disable_rpath_hack" >&6 if test "$cf_disable_rpath_hack" = no ; then -echo "$as_me:43840: checking for updated LDFLAGS" >&5 +echo "$as_me:43978: 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:43843: result: maybe" >&5 + echo "$as_me:43981: 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:43850: checking for $ac_word" >&5 +echo "$as_me:43988: 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 @@ -43862,7 +44000,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:43865: found $ac_dir/$ac_word" >&5 +echo "$as_me:44003: found $ac_dir/$ac_word" >&5 break done @@ -43870,10 +44008,10 @@ fi fi cf_ldd_prog=$ac_cv_prog_cf_ldd_prog if test -n "$cf_ldd_prog"; then - echo "$as_me:43873: result: $cf_ldd_prog" >&5 + echo "$as_me:44011: result: $cf_ldd_prog" >&5 echo "${ECHO_T}$cf_ldd_prog" >&6 else - echo "$as_me:43876: result: no" >&5 + echo "$as_me:44014: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -43887,7 +44025,7 @@ test -n "$cf_ldd_prog" || cf_ldd_prog="no" cf_rpath_oops= cat >conftest.$ac_ext <<_ACEOF -#line 43890 "configure" +#line 44028 "configure" #include "confdefs.h" #include <stdio.h> int @@ -43899,16 +44037,16 @@ printf("Hello"); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:43902: \"$ac_link\"") >&5 +if { (eval echo "$as_me:44040: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:43905: \$? = $ac_status" >&5 + echo "$as_me:44043: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:43908: \"$ac_try\"") >&5 + { (eval echo "$as_me:44046: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:43911: \$? = $ac_status" >&5 + echo "$as_me:44049: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_rpath_oops=`$cf_ldd_prog conftest$ac_exeext | fgrep ' not found' | sed -e 's% =>.*$%%' |sort | uniq` cf_rpath_list=`$cf_ldd_prog conftest$ac_exeext | fgrep / | sed -e 's%^.*[ ]/%/%' -e 's%/[^/][^/]*$%%' |sort | uniq` @@ -43936,7 +44074,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}:43939: testing ...adding -L$cf_rpath_dir/lib to LDFLAGS for $cf_rpath_src ..." 1>&5 +echo "${as_me:-configure}:44077: testing ...adding -L$cf_rpath_dir/lib to LDFLAGS for $cf_rpath_src ..." 1>&5 LDFLAGS="$LDFLAGS -L$cf_rpath_dir/lib" break @@ -43948,11 +44086,11 @@ echo "${as_me:-configure}:43939: testing ...adding -L$cf_rpath_dir/lib to LDFLAG test -n "$verbose" && echo " ...checking EXTRA_LDFLAGS $EXTRA_LDFLAGS" 1>&6 -echo "${as_me:-configure}:43951: testing ...checking EXTRA_LDFLAGS $EXTRA_LDFLAGS ..." 1>&5 +echo "${as_me:-configure}:44089: testing ...checking EXTRA_LDFLAGS $EXTRA_LDFLAGS ..." 1>&5 test -n "$verbose" && echo " ...checking LDFLAGS $LDFLAGS" 1>&6 -echo "${as_me:-configure}:43955: testing ...checking LDFLAGS $LDFLAGS ..." 1>&5 +echo "${as_me:-configure}:44093: testing ...checking LDFLAGS $LDFLAGS ..." 1>&5 cf_rpath_dst= for cf_rpath_src in $LDFLAGS @@ -43989,7 +44127,7 @@ do then test -n "$verbose" && echo " ...Filter $cf_rpath_src ->$cf_rpath_tmp" 1>&6 -echo "${as_me:-configure}:43992: testing ...Filter $cf_rpath_src ->$cf_rpath_tmp ..." 1>&5 +echo "${as_me:-configure}:44130: testing ...Filter $cf_rpath_src ->$cf_rpath_tmp ..." 1>&5 EXTRA_LDFLAGS="$cf_rpath_tmp $EXTRA_LDFLAGS" fi @@ -44002,11 +44140,11 @@ LDFLAGS=$cf_rpath_dst test -n "$verbose" && echo " ...checked LDFLAGS $LDFLAGS" 1>&6 -echo "${as_me:-configure}:44005: testing ...checked LDFLAGS $LDFLAGS ..." 1>&5 +echo "${as_me:-configure}:44143: testing ...checked LDFLAGS $LDFLAGS ..." 1>&5 test -n "$verbose" && echo " ...checking LIBS $LIBS" 1>&6 -echo "${as_me:-configure}:44009: testing ...checking LIBS $LIBS ..." 1>&5 +echo "${as_me:-configure}:44147: testing ...checking LIBS $LIBS ..." 1>&5 cf_rpath_dst= for cf_rpath_src in $LIBS @@ -44043,7 +44181,7 @@ do then test -n "$verbose" && echo " ...Filter $cf_rpath_src ->$cf_rpath_tmp" 1>&6 -echo "${as_me:-configure}:44046: testing ...Filter $cf_rpath_src ->$cf_rpath_tmp ..." 1>&5 +echo "${as_me:-configure}:44184: testing ...Filter $cf_rpath_src ->$cf_rpath_tmp ..." 1>&5 EXTRA_LDFLAGS="$cf_rpath_tmp $EXTRA_LDFLAGS" fi @@ -44056,14 +44194,14 @@ LIBS=$cf_rpath_dst test -n "$verbose" && echo " ...checked LIBS $LIBS" 1>&6 -echo "${as_me:-configure}:44059: testing ...checked LIBS $LIBS ..." 1>&5 +echo "${as_me:-configure}:44197: testing ...checked LIBS $LIBS ..." 1>&5 test -n "$verbose" && echo " ...checked EXTRA_LDFLAGS $EXTRA_LDFLAGS" 1>&6 -echo "${as_me:-configure}:44063: testing ...checked EXTRA_LDFLAGS $EXTRA_LDFLAGS ..." 1>&5 +echo "${as_me:-configure}:44201: testing ...checked EXTRA_LDFLAGS $EXTRA_LDFLAGS ..." 1>&5 else - echo "$as_me:44066: result: no" >&5 + echo "$as_me:44204: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -44164,7 +44302,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:44167: creating $CONFIG_STATUS" >&5 +{ echo "$as_me:44305: creating $CONFIG_STATUS" >&5 echo "$as_me: creating $CONFIG_STATUS" >&6;} cat >$CONFIG_STATUS <<_ACEOF #! $SHELL @@ -44340,7 +44478,7 @@ cat >>$CONFIG_STATUS <<\EOF echo "$ac_cs_version"; exit 0 ;; --he | --h) # Conflict between --help and --header - { { echo "$as_me:44343: error: ambiguous option: $1 + { { echo "$as_me:44481: 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;} @@ -44359,7 +44497,7 @@ Try \`$0 --help' for more information." >&2;} ac_need_defaults=false;; # This is an error. - -*) { { echo "$as_me:44362: error: unrecognized option: $1 + -*) { { echo "$as_me:44500: 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;} @@ -44412,7 +44550,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:44415: error: invalid argument: $ac_config_target" >&5 + *) { { echo "$as_me:44553: error: invalid argument: $ac_config_target" >&5 echo "$as_me: error: invalid argument: $ac_config_target" >&2;} { (exit 1); exit 1; }; };; esac @@ -44764,7 +44902,7 @@ done; } esac if test x"$ac_file" != x-; then - { echo "$as_me:44767: creating $ac_file" >&5 + { echo "$as_me:44905: creating $ac_file" >&5 echo "$as_me: creating $ac_file" >&6;} rm -f "$ac_file" fi @@ -44782,7 +44920,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:44785: error: cannot find input file: $f" >&5 + test -f "$f" || { { echo "$as_me:44923: error: cannot find input file: $f" >&5 echo "$as_me: error: cannot find input file: $f" >&2;} { (exit 1); exit 1; }; } echo $f;; @@ -44795,7 +44933,7 @@ echo "$as_me: error: cannot find input file: $f" >&2;} echo $srcdir/$f else # /dev/null tree - { { echo "$as_me:44798: error: cannot find input file: $f" >&5 + { { echo "$as_me:44936: error: cannot find input file: $f" >&5 echo "$as_me: error: cannot find input file: $f" >&2;} { (exit 1); exit 1; }; } fi;; @@ -44811,7 +44949,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:44814: WARNING: datarootdir was used implicitly but not set: + { echo "$as_me:44952: 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;} @@ -44820,7 +44958,7 @@ $ac_seen" >&2;} fi ac_seen=`grep '${datarootdir}' $ac_item` if test -n "$ac_seen"; then - { echo "$as_me:44823: WARNING: datarootdir was used explicitly but not set: + { echo "$as_me:44961: 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;} @@ -44857,7 +44995,7 @@ s,@INSTALL@,$ac_INSTALL,;t t 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:44860: WARNING: Variable $ac_name is used but was not set: + { echo "$as_me:44998: 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;} @@ -44868,7 +45006,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:44871: WARNING: Some variables may not be substituted: + { echo "$as_me:45009: WARNING: Some variables may not be substituted: $ac_seen" >&5 echo "$as_me: WARNING: Some variables may not be substituted: $ac_seen" >&2;} @@ -44917,7 +45055,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:44920: creating $ac_file" >&5 + test x"$ac_file" != x- && { echo "$as_me:45058: creating $ac_file" >&5 echo "$as_me: creating $ac_file" >&6;} # First look for the input files in the build tree, otherwise in the @@ -44928,7 +45066,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:44931: error: cannot find input file: $f" >&5 + test -f "$f" || { { echo "$as_me:45069: error: cannot find input file: $f" >&5 echo "$as_me: error: cannot find input file: $f" >&2;} { (exit 1); exit 1; }; } echo $f;; @@ -44941,7 +45079,7 @@ echo "$as_me: error: cannot find input file: $f" >&2;} echo $srcdir/$f else # /dev/null tree - { { echo "$as_me:44944: error: cannot find input file: $f" >&5 + { { echo "$as_me:45082: error: cannot find input file: $f" >&5 echo "$as_me: error: cannot find input file: $f" >&2;} { (exit 1); exit 1; }; } fi;; @@ -45059,7 +45197,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:45062: $ac_file is unchanged" >&5 + { echo "$as_me:45200: $ac_file is unchanged" >&5 echo "$as_me: $ac_file is unchanged" >&6;} else ac_dir=`$as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ diff --git a/src/tidy_tls.c b/src/tidy_tls.c index af5d07d5..f2e7334f 100644 --- a/src/tidy_tls.c +++ b/src/tidy_tls.c @@ -1,6 +1,6 @@ /* - * $LynxId: tidy_tls.c,v 1.33 2015/12/16 01:23:11 tom Exp $ - * Copyright 2008-2014,2015 Thomas E. Dickey + * $LynxId: tidy_tls.c,v 1.34 2016/04/17 15:15:06 tom Exp $ + * Copyright 2008-2015,2016 Thomas E. Dickey * with fix Copyright 2008 by Thomas Viehmann * * Required libraries: @@ -262,6 +262,7 @@ void SSL_CTX_set_verify(SSL_CTX * ctx, int verify_mode, ctx->verify_callback = verify_callback; } +#ifdef HAVE_GNUTLS_PROTOCOL_SET_PRIORITY static void RemoveProtocol(SSL * ssl, int protocol) { int j, k; @@ -282,6 +283,7 @@ static void RemoveProtocol(SSL * ssl, int protocol) gnutls_protocol_set_priority(ssl->gnutls_state, protocols); } } +#endif /* * Initiate the TLS/SSL handshake with an TLS/SSL server. @@ -293,10 +295,13 @@ int SSL_connect(SSL * ssl) gnutls_alert_description_t alert; const char *aname; - if (ssl->options & SSL_OP_NO_TLSv1) + if (ssl->options & SSL_OP_NO_TLSv1) { +#ifdef HAVE_GNUTLS_PROTOCOL_SET_PRIORITY RemoveProtocol(ssl, GNUTLS_TLS1); - if (ssl->options & SSL_OP_NO_SSLv3) - RemoveProtocol(ssl, GNUTLS_SSL3); +#else + gnutls_priority_set_direct(ssl->gnutls_state, "NORMAL:-VERS-TLS1.0", NULL); +#endif + } while ((rc = gnutls_handshake(ssl->gnutls_state)) < 0 && !gnutls_error_is_fatal(rc)) { |