diff options
-rw-r--r-- | CHANGES | 15 | ||||
-rw-r--r-- | WWW/Library/Implementation/HTTP.c | 6 | ||||
-rw-r--r-- | aclocal.m4 | 26 | ||||
-rw-r--r-- | config.hin | 3 | ||||
-rwxr-xr-x | config.sub | 12 | ||||
-rwxr-xr-x | configure | 6223 | ||||
-rw-r--r-- | src/LYCookie.c | 7 | ||||
-rw-r--r-- | src/tidy_tls.c | 15 |
8 files changed, 3268 insertions, 3039 deletions
diff --git a/CHANGES b/CHANGES index 80ed77b7..7f4143e7 100644 --- a/CHANGES +++ b/CHANGES @@ -1,9 +1,15 @@ --- $LynxId: CHANGES,v 1.753 2014/08/25 00:34:35 tom Exp $ +-- $LynxId: CHANGES,v 1.758 2014/11/30 23:25:52 tom Exp $ =============================================================================== Changes since Lynx 2.8 release =============================================================================== -2014-08-24 (2.8.9dev.2) +2014-11-30 (2.8.9dev.2) +* drop libgnutls-extra when using --with-gnutls-compat option -TD +* drop libgcrypt dependency when building with gnutls, using gnutls_rnd() + rather than gcry_randomize() (adapted from patch by Andreas Metzler, + Debian #753699) -TD +* fix a reference-after-free in scan_cookie_sublist(), probably fixing RedHat + #1120925 (patch by Mike Gorse). * update eo.po, id.po from http://translationproject.org/latest/lynx * improve workaround for too-long pathnames in LYPrint.c SetupFilename() -TD @@ -26,12 +32,13 @@ Changes since Lynx 2.8 release + CF_XOPEN_SOURCE: Minix3.2 ifdef's the POSIX.1-2001 functions inside _NETBSD_SOURCE, even though it was released 2012-02-29 - appease it. At the same time, turn on the verbose flag to show that most platforms need - platform-specific define's to get POSIX (sic). + platform-specific define's to get POSIX (sic). Also, add case for UnixWare + (report/discussion with Mark Ryan). + CF_X_ATHENA: add --with-Xaw3dxft option + CF_X_TOOLKIT: add workaround for breakage in XQuartz upgrades * add check to ensure that "submit" command from 2.8.8dev.10 is performed in a form (report by Karen Lewellen) -TD -* update config.guess (2014-03-23), config.sub (2014-04-03) +* update config.guess (2014-03-23), config.sub (2014-07-28) 2014-03-12 (2.8.9dev.1) diff --git a/WWW/Library/Implementation/HTTP.c b/WWW/Library/Implementation/HTTP.c index 1527e5c2..bc3adff5 100644 --- a/WWW/Library/Implementation/HTTP.c +++ b/WWW/Library/Implementation/HTTP.c @@ -1,5 +1,5 @@ /* - * $LynxId: HTTP.c,v 1.135 2014/01/11 16:52:29 tom Exp $ + * $LynxId: HTTP.c,v 1.136 2014/11/30 22:51:30 tom Exp $ * * HyperText Tranfer Protocol - Client implementation HTTP.c * ========================== @@ -119,7 +119,11 @@ SSL *HTGetSSLHandle(void) #else SSLeay_add_ssl_algorithms(); ssl_ctx = SSL_CTX_new(SSLv23_client_method()); +#ifdef SSL_OP_NO_SSLv2 SSL_CTX_set_options(ssl_ctx, SSL_OP_ALL | SSL_OP_NO_SSLv2); +#else + SSL_CTX_set_options(ssl_ctx, SSL_OP_ALL); +#endif #ifdef SSL_OP_NO_COMPRESSION SSL_CTX_set_options(ssl_ctx, SSL_OP_NO_COMPRESSION); #endif diff --git a/aclocal.m4 b/aclocal.m4 index 5eb159ee..13986070 100644 --- a/aclocal.m4 +++ b/aclocal.m4 @@ -1,4 +1,4 @@ -dnl $LynxId: aclocal.m4,v 1.211 2014/07/24 08:25:17 tom Exp $ +dnl $LynxId: aclocal.m4,v 1.214 2014/11/30 23:23:25 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> @@ -1583,13 +1583,18 @@ if test "${ac_cv_type_$1:+set}" = set; then fi ])dnl dnl --------------------------------------------------------------------------- -dnl CF_CHECK_SSL_X509 version: 4 updated: 2008/12/11 19:00:39 +dnl CF_CHECK_SSL_X509 version: 5 updated: 2014/11/30 18:19:56 dnl ----------------- dnl Check for X509 support in the SSL library. define([CF_CHECK_SSL_X509],[ AC_MSG_CHECKING(for X509 support) AC_TRY_LINK(CF__SSL_HEAD [ -#include <openssl/x509.h>], +#if defined(USE_GNUTLS_INCL) +#include <gnutls/x509.h> +#else +#include <openssl/x509.h> +#endif +], [X509_verify_cert_error_string(X509_STORE_CTX_get_error(NULL))], [cf_x509_support=yes], [cf_x509_support=no]) @@ -3067,7 +3072,7 @@ rm -rf conftest* AC_SUBST(EXTRA_CFLAGS) ])dnl dnl --------------------------------------------------------------------------- -dnl CF_GNUTLS version: 22 updated: 2012/11/08 20:57:52 +dnl CF_GNUTLS version: 23 updated: 2014/11/30 18:19:56 dnl --------- dnl Check for gnutls library (TLS "is" SSL) dnl $1 = the [optional] directory in which the library may be found @@ -3143,7 +3148,7 @@ AC_DEFUN([CF_GNUTLS],[ cf_cv_have_gnutls=yes, cf_cv_have_gnutls=no, , - ifelse([$2],,[-lgnutls-openssl -lgnutls-extra -lgnutls -lgcrypt],[-lgnutls -lgcrypt])) + ifelse([$2],,[-lgnutls-openssl])) CPPFLAGS=$cf_gnutls_CPPFLAGS fi @@ -3162,7 +3167,10 @@ AC_DEFUN([CF_GNUTLS],[ if test -n "$cf_cv_library_path_gnutls" ; then CF_ADD_LIBDIR($cf_cv_library_path_gnutls) fi - CF_ADD_LIBS(-lgnutls -lgcrypt) + CF_ADD_LIBS(-lgnutls) + AC_CHECK_FUNC(gnutls_rnd, + [AC_DEFINE(HAVE_GNUTLS_RND)], + [CF_ADD_LIBS(-lgcrypt)]) ifelse([$2],, [if test "$cf_pkg_gnutls" = none ; then @@ -6451,7 +6459,7 @@ AC_TRY_LINK([ test $cf_cv_need_xopen_extension = yes && CPPFLAGS="$CPPFLAGS -D_XOPEN_SOURCE_EXTENDED" ])dnl dnl --------------------------------------------------------------------------- -dnl CF_XOPEN_SOURCE version: 47 updated: 2014/07/23 17:11:49 +dnl CF_XOPEN_SOURCE version: 48 updated: 2014/09/01 12:29:14 dnl --------------- dnl Try to get _XOPEN_SOURCE defined properly that we can use POSIX functions, dnl or adapt to the vendor's definitions to get equivalent functionality, @@ -6534,6 +6542,10 @@ solaris2.*) #(vi cf_xopen_source="-D__EXTENSIONS__" cf_cv_xopen_source=broken ;; +sysv4.2uw2.*) # Novell/SCO UnixWare 2.x (tested on 2.1.2) + cf_XOPEN_SOURCE= + cf_POSIX_C_SOURCE= + ;; *) CF_TRY_XOPEN_SOURCE CF_POSIX_C_SOURCE($cf_POSIX_C_SOURCE) diff --git a/config.hin b/config.hin index 2644f5b1..25c38b6a 100644 --- a/config.hin +++ b/config.hin @@ -1,5 +1,5 @@ /* - * $LynxId: config.hin,v 1.136 2014/03/09 14:08:59 tom Exp $ + * $LynxId: config.hin,v 1.137 2014/11/30 23:05:04 tom Exp $ * vile:cmode * * The configure script translates "config.hin" into "lynx_cfg.h" @@ -81,6 +81,7 @@ #undef HAVE_GETTIMEOFDAY #undef HAVE_GETUID #undef HAVE_GNUTLS_PRIORITY_SET_DIRECT +#undef HAVE_GNUTLS_RND #undef HAVE_H_ERRNO #undef HAVE_ICONV /* AM_ICONV */ #undef HAVE_INET_ATON /* CF_INET_ADDR */ diff --git a/config.sub b/config.sub index 6acbfacd..88a0cb46 100755 --- a/config.sub +++ b/config.sub @@ -2,7 +2,7 @@ # Configuration validation subroutine script. # Copyright 1992-2014 Free Software Foundation, Inc. -timestamp='2014-04-03' +timestamp='2014-07-28' # This file is free software; you can redistribute it and/or modify it # under the terms of the GNU General Public License as published by @@ -283,8 +283,10 @@ case $basic_machine in | mips64vr5900 | mips64vr5900el \ | mipsisa32 | mipsisa32el \ | mipsisa32r2 | mipsisa32r2el \ + | mipsisa32r6 | mipsisa32r6el \ | mipsisa64 | mipsisa64el \ | mipsisa64r2 | mipsisa64r2el \ + | mipsisa64r6 | mipsisa64r6el \ | mipsisa64sb1 | mipsisa64sb1el \ | mipsisa64sr71k | mipsisa64sr71kel \ | mipsr5900 | mipsr5900el \ @@ -401,8 +403,10 @@ case $basic_machine in | mips64vr5900-* | mips64vr5900el-* \ | mipsisa32-* | mipsisa32el-* \ | mipsisa32r2-* | mipsisa32r2el-* \ + | mipsisa32r6-* | mipsisa32r6el-* \ | mipsisa64-* | mipsisa64el-* \ | mipsisa64r2-* | mipsisa64r2el-* \ + | mipsisa64r6-* | mipsisa64r6el-* \ | mipsisa64sb1-* | mipsisa64sb1el-* \ | mipsisa64sr71k-* | mipsisa64sr71kel-* \ | mipsr5900-* | mipsr5900el-* \ @@ -824,6 +828,10 @@ case $basic_machine in basic_machine=powerpc-unknown os=-morphos ;; + moxiebox) + basic_machine=moxie-unknown + os=-moxiebox + ;; msdos) basic_machine=i386-pc os=-msdos @@ -1369,7 +1377,7 @@ case $os in | -cygwin* | -msys* | -pe* | -psos* | -moss* | -proelf* | -rtems* \ | -mingw32* | -mingw64* | -linux-gnu* | -linux-android* \ | -linux-newlib* | -linux-musl* | -linux-uclibc* \ - | -uxpv* | -beos* | -mpeix* | -udk* \ + | -uxpv* | -beos* | -mpeix* | -udk* | -moxiebox* \ | -interix* | -uwin* | -mks* | -rhapsody* | -darwin* | -opened* \ | -openstep* | -oskit* | -conix* | -pw32* | -nonstopux* \ | -storm-chaos* | -tops10* | -tenex* | -tops20* | -its* \ diff --git a/configure b/configure index 53f7fbbd..a472b1f7 100755 --- a/configure +++ b/configure @@ -9463,16 +9463,20 @@ solaris2.*) #(vi cf_xopen_source="-D__EXTENSIONS__" cf_cv_xopen_source=broken ;; +sysv4.2uw2.*) # Novell/SCO UnixWare 2.x (tested on 2.1.2) + cf_XOPEN_SOURCE= + cf_POSIX_C_SOURCE= + ;; *) -echo "$as_me:9468: checking if we should define _XOPEN_SOURCE" >&5 +echo "$as_me:9472: checking if we should define _XOPEN_SOURCE" >&5 echo $ECHO_N "checking if we should define _XOPEN_SOURCE... $ECHO_C" >&6 if test "${cf_cv_xopen_source+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 9475 "configure" +#line 9479 "configure" #include "confdefs.h" #include <stdlib.h> @@ -9491,16 +9495,16 @@ make an error } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:9494: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:9498: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:9497: \$? = $ac_status" >&5 + echo "$as_me:9501: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:9500: \"$ac_try\"") >&5 + { (eval echo "$as_me:9504: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:9503: \$? = $ac_status" >&5 + echo "$as_me:9507: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_xopen_source=no else @@ -9509,7 +9513,7 @@ cat conftest.$ac_ext >&5 cf_save="$CPPFLAGS" CPPFLAGS="$CPPFLAGS -D_XOPEN_SOURCE=$cf_XOPEN_SOURCE" cat >conftest.$ac_ext <<_ACEOF -#line 9512 "configure" +#line 9516 "configure" #include "confdefs.h" #include <stdlib.h> @@ -9528,16 +9532,16 @@ make an error } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:9531: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:9535: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:9534: \$? = $ac_status" >&5 + echo "$as_me:9538: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:9537: \"$ac_try\"") >&5 + { (eval echo "$as_me:9541: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:9540: \$? = $ac_status" >&5 + echo "$as_me:9544: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_xopen_source=no else @@ -9552,7 +9556,7 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:9555: result: $cf_cv_xopen_source" >&5 +echo "$as_me:9559: result: $cf_cv_xopen_source" >&5 echo "${ECHO_T}$cf_cv_xopen_source" >&6 if test "$cf_cv_xopen_source" != no ; then @@ -9660,16 +9664,16 @@ cf_trim_CPPFLAGS=`echo "$cf_save_CPPFLAGS" | \ sed -e 's/-[UD]'"_POSIX_C_SOURCE"'\(=[^ ]*\)\?[ ]/ /g' \ -e 's/-[UD]'"_POSIX_C_SOURCE"'\(=[^ ]*\)\?$//g'` -echo "$as_me:9663: checking if we should define _POSIX_C_SOURCE" >&5 +echo "$as_me:9667: checking if we should define _POSIX_C_SOURCE" >&5 echo $ECHO_N "checking if we should define _POSIX_C_SOURCE... $ECHO_C" >&6 if test "${cf_cv_posix_c_source+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else -echo "${as_me:-configure}:9669: testing if the symbol is already defined go no further ..." 1>&5 +echo "${as_me:-configure}:9673: testing if the symbol is already defined go no further ..." 1>&5 cat >conftest.$ac_ext <<_ACEOF -#line 9672 "configure" +#line 9676 "configure" #include "confdefs.h" #include <sys/types.h> int @@ -9684,16 +9688,16 @@ make an error } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:9687: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:9691: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:9690: \$? = $ac_status" >&5 + echo "$as_me:9694: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:9693: \"$ac_try\"") >&5 + { (eval echo "$as_me:9697: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:9696: \$? = $ac_status" >&5 + echo "$as_me:9700: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_posix_c_source=no else @@ -9714,7 +9718,7 @@ cf_want_posix_source=no esac if test "$cf_want_posix_source" = yes ; then cat >conftest.$ac_ext <<_ACEOF -#line 9717 "configure" +#line 9721 "configure" #include "confdefs.h" #include <sys/types.h> int @@ -9729,16 +9733,16 @@ make an error } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:9732: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:9736: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:9735: \$? = $ac_status" >&5 + echo "$as_me:9739: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:9738: \"$ac_try\"") >&5 + { (eval echo "$as_me:9742: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:9741: \$? = $ac_status" >&5 + echo "$as_me:9745: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -9749,15 +9753,15 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "${as_me:-configure}:9752: testing ifdef from value $cf_POSIX_C_SOURCE ..." 1>&5 +echo "${as_me:-configure}:9756: testing ifdef from value $cf_POSIX_C_SOURCE ..." 1>&5 CFLAGS="$cf_trim_CFLAGS" CPPFLAGS="$cf_trim_CPPFLAGS $cf_cv_posix_c_source" -echo "${as_me:-configure}:9757: testing if the second compile does not leave our definition intact error ..." 1>&5 +echo "${as_me:-configure}:9761: testing if the second compile does not leave our definition intact error ..." 1>&5 cat >conftest.$ac_ext <<_ACEOF -#line 9760 "configure" +#line 9764 "configure" #include "confdefs.h" #include <sys/types.h> int @@ -9772,16 +9776,16 @@ make an error } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:9775: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:9779: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:9778: \$? = $ac_status" >&5 + echo "$as_me:9782: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:9781: \"$ac_try\"") >&5 + { (eval echo "$as_me:9785: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:9784: \$? = $ac_status" >&5 + echo "$as_me:9788: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -9797,7 +9801,7 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:9800: result: $cf_cv_posix_c_source" >&5 +echo "$as_me:9804: result: $cf_cv_posix_c_source" >&5 echo "${ECHO_T}$cf_cv_posix_c_source" >&6 if test "$cf_cv_posix_c_source" != no ; then @@ -9955,7 +9959,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}:9958: testing add to \$CFLAGS $cf_new_cflags ..." 1>&5 +echo "${as_me:-configure}:9962: testing add to \$CFLAGS $cf_new_cflags ..." 1>&5 CFLAGS="$CFLAGS $cf_new_cflags" fi @@ -9963,7 +9967,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}:9966: testing add to \$CPPFLAGS $cf_new_cppflags ..." 1>&5 +echo "${as_me:-configure}:9970: testing add to \$CPPFLAGS $cf_new_cppflags ..." 1>&5 CPPFLAGS="$CPPFLAGS $cf_new_cppflags" fi @@ -9971,7 +9975,7 @@ fi if test -n "$cf_new_extra_cppflags" ; then test -n "$verbose" && echo " add to \$EXTRA_CPPFLAGS $cf_new_extra_cppflags" 1>&6 -echo "${as_me:-configure}:9974: testing add to \$EXTRA_CPPFLAGS $cf_new_extra_cppflags ..." 1>&5 +echo "${as_me:-configure}:9978: testing add to \$EXTRA_CPPFLAGS $cf_new_extra_cppflags ..." 1>&5 EXTRA_CPPFLAGS="$cf_new_extra_cppflags $EXTRA_CPPFLAGS" fi @@ -9979,10 +9983,10 @@ fi fi if test -n "$cf_XOPEN_SOURCE" && test -z "$cf_cv_xopen_source" ; then - echo "$as_me:9982: checking if _XOPEN_SOURCE really is set" >&5 + echo "$as_me:9986: checking if _XOPEN_SOURCE really is set" >&5 echo $ECHO_N "checking if _XOPEN_SOURCE really is set... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF -#line 9985 "configure" +#line 9989 "configure" #include "confdefs.h" #include <stdlib.h> int @@ -9997,16 +10001,16 @@ make an error } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:10000: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:10004: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:10003: \$? = $ac_status" >&5 + echo "$as_me:10007: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:10006: \"$ac_try\"") >&5 + { (eval echo "$as_me:10010: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:10009: \$? = $ac_status" >&5 + echo "$as_me:10013: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_XOPEN_SOURCE_set=yes else @@ -10015,12 +10019,12 @@ cat conftest.$ac_ext >&5 cf_XOPEN_SOURCE_set=no fi rm -f conftest.$ac_objext conftest.$ac_ext - echo "$as_me:10018: result: $cf_XOPEN_SOURCE_set" >&5 + echo "$as_me:10022: result: $cf_XOPEN_SOURCE_set" >&5 echo "${ECHO_T}$cf_XOPEN_SOURCE_set" >&6 if test $cf_XOPEN_SOURCE_set = yes then cat >conftest.$ac_ext <<_ACEOF -#line 10023 "configure" +#line 10027 "configure" #include "confdefs.h" #include <stdlib.h> int @@ -10035,16 +10039,16 @@ make an error } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:10038: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:10042: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:10041: \$? = $ac_status" >&5 + echo "$as_me:10045: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:10044: \"$ac_try\"") >&5 + { (eval echo "$as_me:10048: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:10047: \$? = $ac_status" >&5 + echo "$as_me:10051: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_XOPEN_SOURCE_set_ok=yes else @@ -10055,19 +10059,19 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext if test $cf_XOPEN_SOURCE_set_ok = no then - { echo "$as_me:10058: WARNING: _XOPEN_SOURCE is lower than requested" >&5 + { echo "$as_me:10062: WARNING: _XOPEN_SOURCE is lower than requested" >&5 echo "$as_me: WARNING: _XOPEN_SOURCE is lower than requested" >&2;} fi else -echo "$as_me:10063: checking if we should define _XOPEN_SOURCE" >&5 +echo "$as_me:10067: checking if we should define _XOPEN_SOURCE" >&5 echo $ECHO_N "checking if we should define _XOPEN_SOURCE... $ECHO_C" >&6 if test "${cf_cv_xopen_source+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 10070 "configure" +#line 10074 "configure" #include "confdefs.h" #include <stdlib.h> @@ -10086,16 +10090,16 @@ make an error } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:10089: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:10093: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:10092: \$? = $ac_status" >&5 + echo "$as_me:10096: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:10095: \"$ac_try\"") >&5 + { (eval echo "$as_me:10099: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:10098: \$? = $ac_status" >&5 + echo "$as_me:10102: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_xopen_source=no else @@ -10104,7 +10108,7 @@ cat conftest.$ac_ext >&5 cf_save="$CPPFLAGS" CPPFLAGS="$CPPFLAGS -D_XOPEN_SOURCE=$cf_XOPEN_SOURCE" cat >conftest.$ac_ext <<_ACEOF -#line 10107 "configure" +#line 10111 "configure" #include "confdefs.h" #include <stdlib.h> @@ -10123,16 +10127,16 @@ make an error } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:10126: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:10130: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:10129: \$? = $ac_status" >&5 + echo "$as_me:10133: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:10132: \"$ac_try\"") >&5 + { (eval echo "$as_me:10136: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:10135: \$? = $ac_status" >&5 + echo "$as_me:10139: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_xopen_source=no else @@ -10147,7 +10151,7 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:10150: result: $cf_cv_xopen_source" >&5 +echo "$as_me:10154: result: $cf_cv_xopen_source" >&5 echo "${ECHO_T}$cf_cv_xopen_source" >&6 if test "$cf_cv_xopen_source" != no ; then @@ -10245,14 +10249,14 @@ fi fi fi -echo "$as_me:10248: checking if SIGWINCH is defined" >&5 +echo "$as_me:10252: checking if SIGWINCH is defined" >&5 echo $ECHO_N "checking if SIGWINCH is defined... $ECHO_C" >&6 if test "${cf_cv_define_sigwinch+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 10255 "configure" +#line 10259 "configure" #include "confdefs.h" #include <sys/types.h> @@ -10267,23 +10271,23 @@ int x = SIGWINCH } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:10270: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:10274: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:10273: \$? = $ac_status" >&5 + echo "$as_me:10277: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:10276: \"$ac_try\"") >&5 + { (eval echo "$as_me:10280: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:10279: \$? = $ac_status" >&5 + echo "$as_me:10283: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_define_sigwinch=yes else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 cat >conftest.$ac_ext <<_ACEOF -#line 10286 "configure" +#line 10290 "configure" #include "confdefs.h" #undef _XOPEN_SOURCE @@ -10301,16 +10305,16 @@ int x = SIGWINCH } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:10304: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:10308: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:10307: \$? = $ac_status" >&5 + echo "$as_me:10311: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:10310: \"$ac_try\"") >&5 + { (eval echo "$as_me:10314: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:10313: \$? = $ac_status" >&5 + echo "$as_me:10317: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_define_sigwinch=maybe else @@ -10324,11 +10328,11 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:10327: result: $cf_cv_define_sigwinch" >&5 +echo "$as_me:10331: result: $cf_cv_define_sigwinch" >&5 echo "${ECHO_T}$cf_cv_define_sigwinch" >&6 if test "$cf_cv_define_sigwinch" = maybe ; then -echo "$as_me:10331: checking for actual SIGWINCH definition" >&5 +echo "$as_me:10335: checking for actual SIGWINCH definition" >&5 echo $ECHO_N "checking for actual SIGWINCH definition... $ECHO_C" >&6 if test "${cf_cv_fixup_sigwinch+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -10339,7 +10343,7 @@ cf_sigwinch=32 while test $cf_sigwinch != 1 do cat >conftest.$ac_ext <<_ACEOF -#line 10342 "configure" +#line 10346 "configure" #include "confdefs.h" #undef _XOPEN_SOURCE @@ -10361,16 +10365,16 @@ int x = SIGWINCH } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:10364: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:10368: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:10367: \$? = $ac_status" >&5 + echo "$as_me:10371: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:10370: \"$ac_try\"") >&5 + { (eval echo "$as_me:10374: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:10373: \$? = $ac_status" >&5 + echo "$as_me:10377: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_fixup_sigwinch=$cf_sigwinch break @@ -10384,7 +10388,7 @@ cf_sigwinch=`expr $cf_sigwinch - 1` done fi -echo "$as_me:10387: result: $cf_cv_fixup_sigwinch" >&5 +echo "$as_me:10391: result: $cf_cv_fixup_sigwinch" >&5 echo "${ECHO_T}$cf_cv_fixup_sigwinch" >&6 if test "$cf_cv_fixup_sigwinch" != unknown ; then @@ -10396,7 +10400,7 @@ if test -n "$TRY_CFLAGS" ; then test -n "$verbose" && echo " checking additions to CFLAGS" 1>&6 -echo "${as_me:-configure}:10399: testing checking additions to CFLAGS ..." 1>&5 +echo "${as_me:-configure}:10403: testing checking additions to CFLAGS ..." 1>&5 cf_check_cflags="$CFLAGS" cf_check_cppflags="$CPPFLAGS" @@ -10467,7 +10471,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}:10470: testing add to \$CFLAGS $cf_new_cflags ..." 1>&5 +echo "${as_me:-configure}:10474: testing add to \$CFLAGS $cf_new_cflags ..." 1>&5 CFLAGS="$CFLAGS $cf_new_cflags" fi @@ -10475,7 +10479,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}:10478: testing add to \$CPPFLAGS $cf_new_cppflags ..." 1>&5 +echo "${as_me:-configure}:10482: testing add to \$CPPFLAGS $cf_new_cppflags ..." 1>&5 CPPFLAGS="$CPPFLAGS $cf_new_cppflags" fi @@ -10483,14 +10487,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}:10486: testing add to \$EXTRA_CPPFLAGS $cf_new_extra_cppflags ..." 1>&5 +echo "${as_me:-configure}:10490: 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 10493 "configure" +#line 10497 "configure" #include "confdefs.h" #include <stdio.h> int @@ -10502,16 +10506,16 @@ printf("Hello world"); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:10505: \"$ac_link\"") >&5 +if { (eval echo "$as_me:10509: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:10508: \$? = $ac_status" >&5 + echo "$as_me:10512: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:10511: \"$ac_try\"") >&5 + { (eval echo "$as_me:10515: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:10514: \$? = $ac_status" >&5 + echo "$as_me:10518: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -10519,12 +10523,12 @@ else cat conftest.$ac_ext >&5 test -n "$verbose" && echo " test-compile failed. Undoing change to \$CFLAGS" 1>&6 -echo "${as_me:-configure}:10522: testing test-compile failed. Undoing change to \$CFLAGS ..." 1>&5 +echo "${as_me:-configure}:10526: 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}:10527: testing but keeping change to \$CPPFLAGS ..." 1>&5 +echo "${as_me:-configure}:10531: testing but keeping change to \$CPPFLAGS ..." 1>&5 fi CFLAGS="$cf_check_flags" @@ -10536,7 +10540,7 @@ fi ### Look for network libraries first, since some functions (such as gethostname) ### are used in a lot of places. -echo "$as_me:10539: checking if you want NSS compatible SSL libraries" >&5 +echo "$as_me:10543: checking if you want NSS compatible SSL libraries" >&5 echo $ECHO_N "checking if you want NSS compatible SSL libraries... $ECHO_C" >&6 if test "${cf_cv_use_libnss_compat+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -10551,10 +10555,10 @@ else fi; fi -echo "$as_me:10554: result: $cf_cv_use_libnss_compat" >&5 +echo "$as_me:10558: result: $cf_cv_use_libnss_compat" >&5 echo "${ECHO_T}$cf_cv_use_libnss_compat" >&6 -echo "$as_me:10557: checking if you want ssl library" >&5 +echo "$as_me:10561: checking if you want ssl library" >&5 echo $ECHO_N "checking if you want ssl library... $ECHO_C" >&6 if test "${cf_cv_use_libssl+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -10569,10 +10573,10 @@ else fi; fi -echo "$as_me:10572: result: $cf_cv_use_libssl" >&5 +echo "$as_me:10576: result: $cf_cv_use_libssl" >&5 echo "${ECHO_T}$cf_cv_use_libssl" >&6 -echo "$as_me:10575: checking if you want gnutls support" >&5 +echo "$as_me:10579: checking if you want gnutls support" >&5 echo $ECHO_N "checking if you want gnutls support... $ECHO_C" >&6 if test "${cf_cv_use_libgnutls+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -10587,11 +10591,11 @@ else fi; fi -echo "$as_me:10590: result: $cf_cv_use_libgnutls" >&5 +echo "$as_me:10594: result: $cf_cv_use_libgnutls" >&5 echo "${ECHO_T}$cf_cv_use_libgnutls" >&6 # this option is mainly for comparing with/without Lynx's wrapper for GNUTLS. -echo "$as_me:10594: checking if you want gnutls-openssl compat" >&5 +echo "$as_me:10598: checking if you want gnutls-openssl compat" >&5 echo $ECHO_N "checking if you want gnutls-openssl compat... $ECHO_C" >&6 if test "${cf_cv_gnutls_compat+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -10606,10 +10610,10 @@ else fi; fi -echo "$as_me:10609: result: $cf_cv_gnutls_compat" >&5 +echo "$as_me:10613: result: $cf_cv_gnutls_compat" >&5 echo "${ECHO_T}$cf_cv_gnutls_compat" >&6 -echo "$as_me:10612: checking if you want socks library" >&5 +echo "$as_me:10616: checking if you want socks library" >&5 echo $ECHO_N "checking if you want socks library... $ECHO_C" >&6 if test "${cf_cv_use_libsocks+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -10624,10 +10628,10 @@ else fi; fi -echo "$as_me:10627: result: $cf_cv_use_libsocks" >&5 +echo "$as_me:10631: result: $cf_cv_use_libsocks" >&5 echo "${ECHO_T}$cf_cv_use_libsocks" >&6 -echo "$as_me:10630: checking if you want socks5 library" >&5 +echo "$as_me:10634: checking if you want socks5 library" >&5 echo $ECHO_N "checking if you want socks5 library... $ECHO_C" >&6 if test "${cf_cv_use_libsocks5+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -10642,7 +10646,7 @@ else fi; fi -echo "$as_me:10645: result: $cf_cv_use_libsocks5" >&5 +echo "$as_me:10649: result: $cf_cv_use_libsocks5" >&5 echo "${ECHO_T}$cf_cv_use_libsocks5" >&6 if test "x$cf_cv_use_libsocks" != xno ; then @@ -10681,7 +10685,7 @@ if test -n "$cf_searchpath/include" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 10684 "configure" +#line 10688 "configure" #include "confdefs.h" #include <stdio.h> int @@ -10693,16 +10697,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:10696: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:10700: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:10699: \$? = $ac_status" >&5 + echo "$as_me:10703: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:10702: \"$ac_try\"") >&5 + { (eval echo "$as_me:10706: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:10705: \$? = $ac_status" >&5 + echo "$as_me:10709: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -10719,7 +10723,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}:10722: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:10726: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -10760,7 +10764,7 @@ if test -n "$cf_searchpath/../include" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 10763 "configure" +#line 10767 "configure" #include "confdefs.h" #include <stdio.h> int @@ -10772,16 +10776,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:10775: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:10779: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:10778: \$? = $ac_status" >&5 + echo "$as_me:10782: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:10781: \"$ac_try\"") >&5 + { (eval echo "$as_me:10785: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:10784: \$? = $ac_status" >&5 + echo "$as_me:10788: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -10798,7 +10802,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}:10801: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:10805: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -10814,7 +10818,7 @@ echo "${as_me:-configure}:10801: testing adding $cf_add_incdir to include-path . fi else -{ { echo "$as_me:10817: error: cannot find socks library under $cf_cv_use_libsocks" >&5 +{ { echo "$as_me:10821: error: cannot find socks library under $cf_cv_use_libsocks" >&5 echo "$as_me: error: cannot find socks library under $cf_cv_use_libsocks" >&2;} { (exit 1); exit 1; }; } fi @@ -10839,7 +10843,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}:10842: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:10846: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -10868,7 +10872,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}:10871: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:10875: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -10877,7 +10881,7 @@ echo "${as_me:-configure}:10871: testing adding $cf_add_libdir to library-path . fi else -{ { echo "$as_me:10880: error: cannot find socks library under $cf_cv_use_libsocks" >&5 +{ { echo "$as_me:10884: error: cannot find socks library under $cf_cv_use_libsocks" >&5 echo "$as_me: error: cannot find socks library under $cf_cv_use_libsocks" >&2;} { (exit 1); exit 1; }; } fi @@ -10891,12 +10895,12 @@ done cf_cv_header_path_socks= cf_cv_library_path_socks= -echo "${as_me:-configure}:10894: testing Starting FIND_LINKAGE(socks,) ..." 1>&5 +echo "${as_me:-configure}:10898: testing Starting FIND_LINKAGE(socks,) ..." 1>&5 cf_save_LIBS="$LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 10899 "configure" +#line 10903 "configure" #include "confdefs.h" #include <stdio.h> @@ -10912,16 +10916,16 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:10915: \"$ac_link\"") >&5 +if { (eval echo "$as_me:10919: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:10918: \$? = $ac_status" >&5 + echo "$as_me:10922: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:10921: \"$ac_try\"") >&5 + { (eval echo "$as_me:10925: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:10924: \$? = $ac_status" >&5 + echo "$as_me:10928: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_find_linkage_socks=yes @@ -10935,7 +10939,7 @@ cat conftest.$ac_ext >&5 LIBS="-lsocks $cf_save_LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 10938 "configure" +#line 10942 "configure" #include "confdefs.h" #include <stdio.h> @@ -10951,16 +10955,16 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:10954: \"$ac_link\"") >&5 +if { (eval echo "$as_me:10958: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:10957: \$? = $ac_status" >&5 + echo "$as_me:10961: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:10960: \"$ac_try\"") >&5 + { (eval echo "$as_me:10964: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:10963: \$? = $ac_status" >&5 + echo "$as_me:10967: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_find_linkage_socks=yes @@ -10977,9 +10981,9 @@ cat conftest.$ac_ext >&5 test -n "$verbose" && echo " find linkage for socks library" 1>&6 -echo "${as_me:-configure}:10980: testing find linkage for socks library ..." 1>&5 +echo "${as_me:-configure}:10984: testing find linkage for socks library ..." 1>&5 -echo "${as_me:-configure}:10982: testing Searching for headers in FIND_LINKAGE(socks,) ..." 1>&5 +echo "${as_me:-configure}:10986: testing Searching for headers in FIND_LINKAGE(socks,) ..." 1>&5 cf_save_CPPFLAGS="$CPPFLAGS" cf_test_CPPFLAGS="$CPPFLAGS" @@ -11092,11 +11096,11 @@ cf_search="$cf_search $cf_header_path_list" if test -d $cf_cv_header_path_socks ; then test -n "$verbose" && echo " ... testing $cf_cv_header_path_socks" 1>&6 -echo "${as_me:-configure}:11095: testing ... testing $cf_cv_header_path_socks ..." 1>&5 +echo "${as_me:-configure}:11099: testing ... testing $cf_cv_header_path_socks ..." 1>&5 CPPFLAGS="$cf_save_CPPFLAGS -I$cf_cv_header_path_socks" cat >conftest.$ac_ext <<_ACEOF -#line 11099 "configure" +#line 11103 "configure" #include "confdefs.h" #include <stdio.h> @@ -11112,21 +11116,21 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:11115: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:11119: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:11118: \$? = $ac_status" >&5 + echo "$as_me:11122: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:11121: \"$ac_try\"") >&5 + { (eval echo "$as_me:11125: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:11124: \$? = $ac_status" >&5 + echo "$as_me:11128: \$? = $ac_status" >&5 (exit $ac_status); }; }; then test -n "$verbose" && echo " ... found socks headers in $cf_cv_header_path_socks" 1>&6 -echo "${as_me:-configure}:11129: testing ... found socks headers in $cf_cv_header_path_socks ..." 1>&5 +echo "${as_me:-configure}:11133: testing ... found socks headers in $cf_cv_header_path_socks ..." 1>&5 cf_cv_find_linkage_socks=maybe cf_test_CPPFLAGS="$CPPFLAGS" @@ -11144,7 +11148,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "$cf_cv_find_linkage_socks" = maybe ; then -echo "${as_me:-configure}:11147: testing Searching for socks library in FIND_LINKAGE(socks,) ..." 1>&5 +echo "${as_me:-configure}:11151: testing Searching for socks library in FIND_LINKAGE(socks,) ..." 1>&5 cf_save_LIBS="$LIBS" cf_save_LDFLAGS="$LDFLAGS" @@ -11241,13 +11245,13 @@ cf_search="$cf_library_path_list $cf_search" if test -d $cf_cv_library_path_socks ; then test -n "$verbose" && echo " ... testing $cf_cv_library_path_socks" 1>&6 -echo "${as_me:-configure}:11244: testing ... testing $cf_cv_library_path_socks ..." 1>&5 +echo "${as_me:-configure}:11248: testing ... testing $cf_cv_library_path_socks ..." 1>&5 CPPFLAGS="$cf_test_CPPFLAGS" LIBS="-lsocks $cf_save_LIBS" LDFLAGS="$cf_save_LDFLAGS -L$cf_cv_library_path_socks" cat >conftest.$ac_ext <<_ACEOF -#line 11250 "configure" +#line 11254 "configure" #include "confdefs.h" #include <stdio.h> @@ -11263,21 +11267,21 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:11266: \"$ac_link\"") >&5 +if { (eval echo "$as_me:11270: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:11269: \$? = $ac_status" >&5 + echo "$as_me:11273: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:11272: \"$ac_try\"") >&5 + { (eval echo "$as_me:11276: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:11275: \$? = $ac_status" >&5 + echo "$as_me:11279: \$? = $ac_status" >&5 (exit $ac_status); }; }; then test -n "$verbose" && echo " ... found socks library in $cf_cv_library_path_socks" 1>&6 -echo "${as_me:-configure}:11280: testing ... found socks library in $cf_cv_library_path_socks ..." 1>&5 +echo "${as_me:-configure}:11284: testing ... found socks library in $cf_cv_library_path_socks ..." 1>&5 cf_cv_find_linkage_socks=yes cf_cv_library_file_socks="-lsocks" @@ -11336,7 +11340,7 @@ if test -n "$cf_cv_header_path_socks" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 11339 "configure" +#line 11343 "configure" #include "confdefs.h" #include <stdio.h> int @@ -11348,16 +11352,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:11351: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:11355: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:11354: \$? = $ac_status" >&5 + echo "$as_me:11358: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:11357: \"$ac_try\"") >&5 + { (eval echo "$as_me:11361: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:11360: \$? = $ac_status" >&5 + echo "$as_me:11364: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -11374,7 +11378,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}:11377: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:11381: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -11408,7 +11412,7 @@ if test -n "$cf_cv_library_path_socks" ; then if test "$cf_have_libdir" = no ; then test -n "$verbose" && echo " adding $cf_add_libdir to library-path" 1>&6 -echo "${as_me:-configure}:11411: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:11415: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -11433,7 +11437,7 @@ done LIBS="$cf_add_libs" else -{ echo "$as_me:11436: WARNING: Cannot find socks library" >&5 +{ echo "$as_me:11440: WARNING: Cannot find socks library" >&5 echo "$as_me: WARNING: Cannot find socks library" >&2;} fi @@ -11476,7 +11480,7 @@ cat >>confdefs.h <<\EOF EOF else - { { echo "$as_me:11479: error: cannot link with socks library" >&5 + { { echo "$as_me:11483: error: cannot link with socks library" >&5 echo "$as_me: error: cannot link with socks library" >&2;} { (exit 1); exit 1; }; } fi @@ -11517,7 +11521,7 @@ if test -n "$cf_searchpath/include" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 11520 "configure" +#line 11524 "configure" #include "confdefs.h" #include <stdio.h> int @@ -11529,16 +11533,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:11532: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:11536: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:11535: \$? = $ac_status" >&5 + echo "$as_me:11539: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:11538: \"$ac_try\"") >&5 + { (eval echo "$as_me:11542: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:11541: \$? = $ac_status" >&5 + echo "$as_me:11545: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -11555,7 +11559,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}:11558: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:11562: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -11596,7 +11600,7 @@ if test -n "$cf_searchpath/../include" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 11599 "configure" +#line 11603 "configure" #include "confdefs.h" #include <stdio.h> int @@ -11608,16 +11612,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:11611: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:11615: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:11614: \$? = $ac_status" >&5 + echo "$as_me:11618: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:11617: \"$ac_try\"") >&5 + { (eval echo "$as_me:11621: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:11620: \$? = $ac_status" >&5 + echo "$as_me:11624: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -11634,7 +11638,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}:11637: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:11641: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -11650,7 +11654,7 @@ echo "${as_me:-configure}:11637: testing adding $cf_add_incdir to include-path . fi else -{ { echo "$as_me:11653: error: cannot find socks5 library under $cf_cv_use_libsocks5" >&5 +{ { echo "$as_me:11657: error: cannot find socks5 library under $cf_cv_use_libsocks5" >&5 echo "$as_me: error: cannot find socks5 library under $cf_cv_use_libsocks5" >&2;} { (exit 1); exit 1; }; } fi @@ -11675,7 +11679,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}:11678: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:11682: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -11704,7 +11708,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}:11707: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:11711: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -11713,7 +11717,7 @@ echo "${as_me:-configure}:11707: testing adding $cf_add_libdir to library-path . fi else -{ { echo "$as_me:11716: error: cannot find socks5 library under $cf_cv_use_libsocks5" >&5 +{ { echo "$as_me:11720: error: cannot find socks5 library under $cf_cv_use_libsocks5" >&5 echo "$as_me: error: cannot find socks5 library under $cf_cv_use_libsocks5" >&2;} { (exit 1); exit 1; }; } fi @@ -11746,11 +11750,11 @@ cat >>confdefs.h <<\EOF #define SOCKS 1 EOF -echo "$as_me:11749: checking if the socks library uses socks4 prefix" >&5 +echo "$as_me:11753: checking if the socks library uses socks4 prefix" >&5 echo $ECHO_N "checking if the socks library uses socks4 prefix... $ECHO_C" >&6 cf_use_socks4=error cat >conftest.$ac_ext <<_ACEOF -#line 11753 "configure" +#line 11757 "configure" #include "confdefs.h" #include <socks.h> @@ -11764,16 +11768,16 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:11767: \"$ac_link\"") >&5 +if { (eval echo "$as_me:11771: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:11770: \$? = $ac_status" >&5 + echo "$as_me:11774: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:11773: \"$ac_try\"") >&5 + { (eval echo "$as_me:11777: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:11776: \$? = $ac_status" >&5 + echo "$as_me:11780: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cat >>confdefs.h <<\EOF @@ -11785,7 +11789,7 @@ else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 cat >conftest.$ac_ext <<_ACEOF -#line 11788 "configure" +#line 11792 "configure" #include "confdefs.h" #include <socks.h> int @@ -11797,29 +11801,29 @@ SOCKSinit((char *)0) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:11800: \"$ac_link\"") >&5 +if { (eval echo "$as_me:11804: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:11803: \$? = $ac_status" >&5 + echo "$as_me:11807: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:11806: \"$ac_try\"") >&5 + { (eval echo "$as_me:11810: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:11809: \$? = $ac_status" >&5 + echo "$as_me:11813: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_use_socks4=no else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 -{ { echo "$as_me:11815: error: Cannot link with socks5 library" >&5 +{ { echo "$as_me:11819: error: Cannot link with socks5 library" >&5 echo "$as_me: error: Cannot link with socks5 library" >&2;} { (exit 1); exit 1; }; } fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext -echo "$as_me:11822: result: $cf_use_socks4" >&5 +echo "$as_me:11826: result: $cf_use_socks4" >&5 echo "${ECHO_T}$cf_use_socks4" >&6 if test "$cf_use_socks4" = "yes" ; then @@ -11874,10 +11878,10 @@ EOF fi -echo "$as_me:11877: checking if socks5p.h is available" >&5 +echo "$as_me:11881: checking if socks5p.h is available" >&5 echo $ECHO_N "checking if socks5p.h is available... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF -#line 11880 "configure" +#line 11884 "configure" #include "confdefs.h" #define INCLUDE_PROTOTYPES @@ -11892,16 +11896,16 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:11895: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:11899: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:11898: \$? = $ac_status" >&5 + echo "$as_me:11902: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:11901: \"$ac_try\"") >&5 + { (eval echo "$as_me:11905: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:11904: \$? = $ac_status" >&5 + echo "$as_me:11908: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_use_socks5p_h=yes else @@ -11910,7 +11914,7 @@ cat conftest.$ac_ext >&5 cf_use_socks5p_h=no fi rm -f conftest.$ac_objext conftest.$ac_ext -echo "$as_me:11913: result: $cf_use_socks5p_h" >&5 +echo "$as_me:11917: result: $cf_use_socks5p_h" >&5 echo "${ECHO_T}$cf_use_socks5p_h" >&6 test "$cf_use_socks5p_h" = yes && @@ -11922,14 +11926,14 @@ else cf_test_netlibs=no -echo "$as_me:11925: checking for network libraries" >&5 +echo "$as_me:11929: checking for network libraries" >&5 echo $ECHO_N "checking for network libraries... $ECHO_C" >&6 if test "${cf_cv_netlibs+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else -echo "$as_me:11932: result: working..." >&5 +echo "$as_me:11936: result: working..." >&5 echo "${ECHO_T}working..." >&6 cf_cv_netlibs="" @@ -11941,23 +11945,23 @@ mingw*) # (vi for ac_header in windows.h winsock.h winsock2.h do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` -echo "$as_me:11944: checking for $ac_header" >&5 +echo "$as_me:11948: 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 11950 "configure" +#line 11954 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:11954: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:11958: \"$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:11960: \$? = $ac_status" >&5 + echo "$as_me:11964: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -11976,7 +11980,7 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:11979: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:11983: 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 @@ -12011,7 +12015,7 @@ done LIBS="$cf_add_libs" cat >conftest.$ac_ext <<_ACEOF -#line 12014 "configure" +#line 12018 "configure" #include "confdefs.h" #ifdef HAVE_WINDOWS_H @@ -12038,22 +12042,22 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:12041: \"$ac_link\"") >&5 +if { (eval echo "$as_me:12045: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:12044: \$? = $ac_status" >&5 + echo "$as_me:12048: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:12047: \"$ac_try\"") >&5 + { (eval echo "$as_me:12051: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:12050: \$? = $ac_status" >&5 + echo "$as_me:12054: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_netlibs="$cf_winsock_lib $cf_cv_netlibs" else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 -{ { echo "$as_me:12056: error: Cannot link against winsock library" >&5 +{ { echo "$as_me:12060: error: Cannot link against winsock library" >&5 echo "$as_me: error: Cannot link against winsock library" >&2;} { (exit 1); exit 1; }; } fi @@ -12066,13 +12070,13 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext for ac_func in gethostname do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` -echo "$as_me:12069: checking for $ac_func" >&5 +echo "$as_me:12073: 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 12075 "configure" +#line 12079 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. */ @@ -12103,16 +12107,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:12106: \"$ac_link\"") >&5 +if { (eval echo "$as_me:12110: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:12109: \$? = $ac_status" >&5 + echo "$as_me:12113: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:12112: \"$ac_try\"") >&5 + { (eval echo "$as_me:12116: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:12115: \$? = $ac_status" >&5 + echo "$as_me:12119: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else @@ -12122,7 +12126,7 @@ eval "$as_ac_var=no" fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:12125: result: `eval echo '${'$as_ac_var'}'`" >&5 +echo "$as_me:12129: 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 @@ -12131,7 +12135,7 @@ EOF else -echo "$as_me:12134: checking for gethostname in -lnsl" >&5 +echo "$as_me:12138: checking for gethostname in -lnsl" >&5 echo $ECHO_N "checking for gethostname in -lnsl... $ECHO_C" >&6 if test "${ac_cv_lib_nsl_gethostname+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -12139,7 +12143,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lnsl $cf_cv_netlibs $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 12142 "configure" +#line 12146 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -12158,16 +12162,16 @@ gethostname (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:12161: \"$ac_link\"") >&5 +if { (eval echo "$as_me:12165: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:12164: \$? = $ac_status" >&5 + echo "$as_me:12168: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:12167: \"$ac_try\"") >&5 + { (eval echo "$as_me:12171: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:12170: \$? = $ac_status" >&5 + echo "$as_me:12174: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_nsl_gethostname=yes else @@ -12178,7 +12182,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:12181: result: $ac_cv_lib_nsl_gethostname" >&5 +echo "$as_me:12185: result: $ac_cv_lib_nsl_gethostname" >&5 echo "${ECHO_T}$ac_cv_lib_nsl_gethostname" >&6 if test $ac_cv_lib_nsl_gethostname = yes; then @@ -12195,7 +12199,7 @@ else ac_cv_func_gethostname=unknown unset ac_cv_func_gethostname 2>/dev/null -echo "$as_me:12198: checking for gethostname in -lsocket" >&5 +echo "$as_me:12202: checking for gethostname in -lsocket" >&5 echo $ECHO_N "checking for gethostname in -lsocket... $ECHO_C" >&6 if test "${ac_cv_lib_socket_gethostname+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -12203,7 +12207,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lsocket $cf_cv_netlibs $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 12206 "configure" +#line 12210 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -12222,16 +12226,16 @@ gethostname (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:12225: \"$ac_link\"") >&5 +if { (eval echo "$as_me:12229: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:12228: \$? = $ac_status" >&5 + echo "$as_me:12232: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:12231: \"$ac_try\"") >&5 + { (eval echo "$as_me:12235: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:12234: \$? = $ac_status" >&5 + echo "$as_me:12238: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_socket_gethostname=yes else @@ -12242,7 +12246,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:12245: result: $ac_cv_lib_socket_gethostname" >&5 +echo "$as_me:12249: result: $ac_cv_lib_socket_gethostname" >&5 echo "${ECHO_T}$ac_cv_lib_socket_gethostname" >&6 if test $ac_cv_lib_socket_gethostname = yes; then @@ -12266,7 +12270,7 @@ fi fi done - echo "$as_me:12269: checking for main in -linet" >&5 + echo "$as_me:12273: checking for main in -linet" >&5 echo $ECHO_N "checking for main in -linet... $ECHO_C" >&6 if test "${ac_cv_lib_inet_main+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -12274,7 +12278,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-linet $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 12277 "configure" +#line 12281 "configure" #include "confdefs.h" int @@ -12286,16 +12290,16 @@ main (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:12289: \"$ac_link\"") >&5 +if { (eval echo "$as_me:12293: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:12292: \$? = $ac_status" >&5 + echo "$as_me:12296: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:12295: \"$ac_try\"") >&5 + { (eval echo "$as_me:12299: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:12298: \$? = $ac_status" >&5 + echo "$as_me:12302: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_inet_main=yes else @@ -12306,7 +12310,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:12309: result: $ac_cv_lib_inet_main" >&5 +echo "$as_me:12313: result: $ac_cv_lib_inet_main" >&5 echo "${ECHO_T}$ac_cv_lib_inet_main" >&6 if test $ac_cv_lib_inet_main = yes; then cf_cv_netlibs="-linet $cf_cv_netlibs" @@ -12317,13 +12321,13 @@ fi for ac_func in socket do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` -echo "$as_me:12320: checking for $ac_func" >&5 +echo "$as_me:12324: 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 12326 "configure" +#line 12330 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. */ @@ -12354,16 +12358,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:12357: \"$ac_link\"") >&5 +if { (eval echo "$as_me:12361: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:12360: \$? = $ac_status" >&5 + echo "$as_me:12364: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:12363: \"$ac_try\"") >&5 + { (eval echo "$as_me:12367: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:12366: \$? = $ac_status" >&5 + echo "$as_me:12370: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else @@ -12373,7 +12377,7 @@ eval "$as_ac_var=no" fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:12376: result: `eval echo '${'$as_ac_var'}'`" >&5 +echo "$as_me:12380: 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 @@ -12382,7 +12386,7 @@ EOF else -echo "$as_me:12385: checking for socket in -lsocket" >&5 +echo "$as_me:12389: checking for socket in -lsocket" >&5 echo $ECHO_N "checking for socket in -lsocket... $ECHO_C" >&6 if test "${ac_cv_lib_socket_socket+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -12390,7 +12394,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lsocket $cf_cv_netlibs $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 12393 "configure" +#line 12397 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -12409,16 +12413,16 @@ socket (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:12412: \"$ac_link\"") >&5 +if { (eval echo "$as_me:12416: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:12415: \$? = $ac_status" >&5 + echo "$as_me:12419: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:12418: \"$ac_try\"") >&5 + { (eval echo "$as_me:12422: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:12421: \$? = $ac_status" >&5 + echo "$as_me:12425: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_socket_socket=yes else @@ -12429,7 +12433,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:12432: result: $ac_cv_lib_socket_socket" >&5 +echo "$as_me:12436: result: $ac_cv_lib_socket_socket" >&5 echo "${ECHO_T}$ac_cv_lib_socket_socket" >&6 if test $ac_cv_lib_socket_socket = yes; then @@ -12446,7 +12450,7 @@ else ac_cv_func_socket=unknown unset ac_cv_func_socket 2>/dev/null -echo "$as_me:12449: checking for socket in -lbsd" >&5 +echo "$as_me:12453: checking for socket in -lbsd" >&5 echo $ECHO_N "checking for socket in -lbsd... $ECHO_C" >&6 if test "${ac_cv_lib_bsd_socket+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -12454,7 +12458,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lbsd $cf_cv_netlibs $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 12457 "configure" +#line 12461 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -12473,16 +12477,16 @@ socket (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:12476: \"$ac_link\"") >&5 +if { (eval echo "$as_me:12480: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:12479: \$? = $ac_status" >&5 + echo "$as_me:12483: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:12482: \"$ac_try\"") >&5 + { (eval echo "$as_me:12486: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:12485: \$? = $ac_status" >&5 + echo "$as_me:12489: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_bsd_socket=yes else @@ -12493,7 +12497,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:12496: result: $ac_cv_lib_bsd_socket" >&5 +echo "$as_me:12500: result: $ac_cv_lib_bsd_socket" >&5 echo "${ECHO_T}$ac_cv_lib_bsd_socket" >&6 if test $ac_cv_lib_bsd_socket = yes; then @@ -12522,13 +12526,13 @@ done for ac_func in gethostbyname do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` -echo "$as_me:12525: checking for $ac_func" >&5 +echo "$as_me:12529: 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 12531 "configure" +#line 12535 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. */ @@ -12559,16 +12563,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:12562: \"$ac_link\"") >&5 +if { (eval echo "$as_me:12566: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:12565: \$? = $ac_status" >&5 + echo "$as_me:12569: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:12568: \"$ac_try\"") >&5 + { (eval echo "$as_me:12572: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:12571: \$? = $ac_status" >&5 + echo "$as_me:12575: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else @@ -12578,7 +12582,7 @@ eval "$as_ac_var=no" fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:12581: result: `eval echo '${'$as_ac_var'}'`" >&5 +echo "$as_me:12585: 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 @@ -12587,7 +12591,7 @@ EOF else -echo "$as_me:12590: checking for gethostbyname in -lnsl" >&5 +echo "$as_me:12594: 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 @@ -12595,7 +12599,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lnsl $cf_cv_netlibs $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 12598 "configure" +#line 12602 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -12614,16 +12618,16 @@ gethostbyname (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:12617: \"$ac_link\"") >&5 +if { (eval echo "$as_me:12621: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:12620: \$? = $ac_status" >&5 + echo "$as_me:12624: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:12623: \"$ac_try\"") >&5 + { (eval echo "$as_me:12627: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:12626: \$? = $ac_status" >&5 + echo "$as_me:12630: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_nsl_gethostbyname=yes else @@ -12634,7 +12638,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:12637: result: $ac_cv_lib_nsl_gethostbyname" >&5 +echo "$as_me:12641: 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 @@ -12659,13 +12663,13 @@ done for ac_func in inet_ntoa do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` -echo "$as_me:12662: checking for $ac_func" >&5 +echo "$as_me:12666: 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 12668 "configure" +#line 12672 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. */ @@ -12696,16 +12700,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:12699: \"$ac_link\"") >&5 +if { (eval echo "$as_me:12703: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:12702: \$? = $ac_status" >&5 + echo "$as_me:12706: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:12705: \"$ac_try\"") >&5 + { (eval echo "$as_me:12709: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:12708: \$? = $ac_status" >&5 + echo "$as_me:12712: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else @@ -12715,7 +12719,7 @@ eval "$as_ac_var=no" fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:12718: result: `eval echo '${'$as_ac_var'}'`" >&5 +echo "$as_me:12722: 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 @@ -12724,7 +12728,7 @@ EOF else -echo "$as_me:12727: checking for inet_ntoa in -lnsl" >&5 +echo "$as_me:12731: checking for inet_ntoa in -lnsl" >&5 echo $ECHO_N "checking for inet_ntoa in -lnsl... $ECHO_C" >&6 if test "${ac_cv_lib_nsl_inet_ntoa+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -12732,7 +12736,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lnsl $cf_cv_netlibs $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 12735 "configure" +#line 12739 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -12751,16 +12755,16 @@ inet_ntoa (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:12754: \"$ac_link\"") >&5 +if { (eval echo "$as_me:12758: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:12757: \$? = $ac_status" >&5 + echo "$as_me:12761: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:12760: \"$ac_try\"") >&5 + { (eval echo "$as_me:12764: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:12763: \$? = $ac_status" >&5 + echo "$as_me:12767: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_nsl_inet_ntoa=yes else @@ -12771,7 +12775,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:12774: result: $ac_cv_lib_nsl_inet_ntoa" >&5 +echo "$as_me:12778: result: $ac_cv_lib_nsl_inet_ntoa" >&5 echo "${ECHO_T}$ac_cv_lib_nsl_inet_ntoa" >&6 if test $ac_cv_lib_nsl_inet_ntoa = yes; then @@ -12796,13 +12800,13 @@ done for ac_func in gethostbyname do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` -echo "$as_me:12799: checking for $ac_func" >&5 +echo "$as_me:12803: 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 12805 "configure" +#line 12809 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. */ @@ -12833,16 +12837,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:12836: \"$ac_link\"") >&5 +if { (eval echo "$as_me:12840: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:12839: \$? = $ac_status" >&5 + echo "$as_me:12843: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:12842: \"$ac_try\"") >&5 + { (eval echo "$as_me:12846: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:12845: \$? = $ac_status" >&5 + echo "$as_me:12849: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else @@ -12852,7 +12856,7 @@ eval "$as_ac_var=no" fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:12855: result: `eval echo '${'$as_ac_var'}'`" >&5 +echo "$as_me:12859: 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 @@ -12861,7 +12865,7 @@ EOF else -echo "$as_me:12864: checking for gethostbyname in -lnetwork" >&5 +echo "$as_me:12868: checking for gethostbyname in -lnetwork" >&5 echo $ECHO_N "checking for gethostbyname in -lnetwork... $ECHO_C" >&6 if test "${ac_cv_lib_network_gethostbyname+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -12869,7 +12873,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lnetwork $cf_cv_netlibs $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 12872 "configure" +#line 12876 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -12888,16 +12892,16 @@ gethostbyname (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:12891: \"$ac_link\"") >&5 +if { (eval echo "$as_me:12895: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:12894: \$? = $ac_status" >&5 + echo "$as_me:12898: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:12897: \"$ac_try\"") >&5 + { (eval echo "$as_me:12901: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:12900: \$? = $ac_status" >&5 + echo "$as_me:12904: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_network_gethostbyname=yes else @@ -12908,7 +12912,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:12911: result: $ac_cv_lib_network_gethostbyname" >&5 +echo "$as_me:12915: result: $ac_cv_lib_network_gethostbyname" >&5 echo "${ECHO_T}$ac_cv_lib_network_gethostbyname" >&6 if test $ac_cv_lib_network_gethostbyname = yes; then @@ -12933,13 +12937,13 @@ done for ac_func in strcasecmp do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` -echo "$as_me:12936: checking for $ac_func" >&5 +echo "$as_me:12940: 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 12942 "configure" +#line 12946 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. */ @@ -12970,16 +12974,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:12973: \"$ac_link\"") >&5 +if { (eval echo "$as_me:12977: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:12976: \$? = $ac_status" >&5 + echo "$as_me:12980: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:12979: \"$ac_try\"") >&5 + { (eval echo "$as_me:12983: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:12982: \$? = $ac_status" >&5 + echo "$as_me:12986: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else @@ -12989,7 +12993,7 @@ eval "$as_ac_var=no" fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:12992: result: `eval echo '${'$as_ac_var'}'`" >&5 +echo "$as_me:12996: 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 @@ -12998,7 +13002,7 @@ EOF else -echo "$as_me:13001: checking for strcasecmp in -lresolv" >&5 +echo "$as_me:13005: checking for strcasecmp in -lresolv" >&5 echo $ECHO_N "checking for strcasecmp in -lresolv... $ECHO_C" >&6 if test "${ac_cv_lib_resolv_strcasecmp+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -13006,7 +13010,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lresolv $cf_cv_netlibs $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 13009 "configure" +#line 13013 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -13025,16 +13029,16 @@ strcasecmp (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:13028: \"$ac_link\"") >&5 +if { (eval echo "$as_me:13032: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:13031: \$? = $ac_status" >&5 + echo "$as_me:13035: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:13034: \"$ac_try\"") >&5 + { (eval echo "$as_me:13038: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:13037: \$? = $ac_status" >&5 + echo "$as_me:13041: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_resolv_strcasecmp=yes else @@ -13045,7 +13049,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:13048: result: $ac_cv_lib_resolv_strcasecmp" >&5 +echo "$as_me:13052: result: $ac_cv_lib_resolv_strcasecmp" >&5 echo "${ECHO_T}$ac_cv_lib_resolv_strcasecmp" >&6 if test $ac_cv_lib_resolv_strcasecmp = yes; then @@ -13102,14 +13106,14 @@ test $cf_test_netlibs = no && echo "$cf_cv_netlibs" >&6 fi -echo "$as_me:13105: checking for inet_aton function" >&5 +echo "$as_me:13109: checking for inet_aton function" >&5 echo $ECHO_N "checking for inet_aton function... $ECHO_C" >&6 if test "${cf_cv_have_inet_aton+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 13112 "configure" +#line 13116 "configure" #include "confdefs.h" #if defined(__MINGW32__) @@ -13144,16 +13148,16 @@ inet_aton(0, (struct in_addr *)0) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:13147: \"$ac_link\"") >&5 +if { (eval echo "$as_me:13151: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:13150: \$? = $ac_status" >&5 + echo "$as_me:13154: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:13153: \"$ac_try\"") >&5 + { (eval echo "$as_me:13157: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:13156: \$? = $ac_status" >&5 + echo "$as_me:13160: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_have_inet_aton=yes else @@ -13163,7 +13167,7 @@ cf_cv_have_inet_aton=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:13166: result: $cf_cv_have_inet_aton" >&5 +echo "$as_me:13170: result: $cf_cv_have_inet_aton" >&5 echo "${ECHO_T}$cf_cv_have_inet_aton" >&6 if test "$cf_cv_have_inet_aton" = yes ; then @@ -13172,14 +13176,14 @@ cat >>confdefs.h <<\EOF EOF else - echo "$as_me:13175: checking for inet_addr function" >&5 + echo "$as_me:13179: checking for inet_addr function" >&5 echo $ECHO_N "checking for inet_addr function... $ECHO_C" >&6 if test "${cf_cv_have_inet_addr+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 13182 "configure" +#line 13186 "configure" #include "confdefs.h" #if defined(__MINGW32__) @@ -13214,16 +13218,16 @@ inet_addr(0) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:13217: \"$ac_link\"") >&5 +if { (eval echo "$as_me:13221: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:13220: \$? = $ac_status" >&5 + echo "$as_me:13224: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:13223: \"$ac_try\"") >&5 + { (eval echo "$as_me:13227: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:13226: \$? = $ac_status" >&5 + echo "$as_me:13230: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_have_inet_addr=yes else @@ -13233,10 +13237,10 @@ cf_cv_have_inet_addr=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:13236: result: $cf_cv_have_inet_addr" >&5 +echo "$as_me:13240: result: $cf_cv_have_inet_addr" >&5 echo "${ECHO_T}$cf_cv_have_inet_addr" >&6 if test "$cf_cv_have_inet_addr" = no ; then - echo "$as_me:13239: checking for library with inet_addr" >&5 + echo "$as_me:13243: checking for library with inet_addr" >&5 echo $ECHO_N "checking for library with inet_addr... $ECHO_C" >&6 if test "${cf_cv_lib_inet_addr+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -13247,7 +13251,7 @@ else do LIBS="$cf_save_LIBS $cf_inetlib" cat >conftest.$ac_ext <<_ACEOF -#line 13250 "configure" +#line 13254 "configure" #include "confdefs.h" #include <sys/types.h> #include <sys/socket.h> @@ -13263,16 +13267,16 @@ inet_addr(0) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:13266: \"$ac_link\"") >&5 +if { (eval echo "$as_me:13270: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:13269: \$? = $ac_status" >&5 + echo "$as_me:13273: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:13272: \"$ac_try\"") >&5 + { (eval echo "$as_me:13276: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:13275: \$? = $ac_status" >&5 + echo "$as_me:13279: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_lib_inet_addr=$cf_inetlib else @@ -13286,7 +13290,7 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext done fi -echo "$as_me:13289: result: $cf_cv_lib_inet_addr" >&5 +echo "$as_me:13293: result: $cf_cv_lib_inet_addr" >&5 echo "${ECHO_T}$cf_cv_lib_inet_addr" >&6 if test "$cf_cv_lib_inet_addr" != no ; then @@ -13307,13 +13311,13 @@ done LIBS="$cf_add_libs" else - { echo "$as_me:13310: WARNING: Unable to find library for inet_addr function" >&5 + { echo "$as_me:13314: WARNING: Unable to find library for inet_addr function" >&5 echo "$as_me: WARNING: Unable to find library for inet_addr function" >&2;} fi fi fi -echo "$as_me:13316: checking if you want to use pkg-config" >&5 +echo "$as_me:13320: checking if you want to use pkg-config" >&5 echo $ECHO_N "checking if you want to use pkg-config... $ECHO_C" >&6 # Check whether --with-pkg-config or --without-pkg-config was given. @@ -13323,7 +13327,7 @@ if test "${with_pkg_config+set}" = set; then else cf_pkg_config=yes fi; -echo "$as_me:13326: result: $cf_pkg_config" >&5 +echo "$as_me:13330: result: $cf_pkg_config" >&5 echo "${ECHO_T}$cf_pkg_config" >&6 case $cf_pkg_config in #(vi @@ -13335,7 +13339,7 @@ yes) #(vi if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}pkg-config", so it can be a program name with args. set dummy ${ac_tool_prefix}pkg-config; ac_word=$2 -echo "$as_me:13338: checking for $ac_word" >&5 +echo "$as_me:13342: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_path_PKG_CONFIG+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -13352,7 +13356,7 @@ for ac_dir in $ac_dummy; do test -z "$ac_dir" && ac_dir=. if $as_executable_p "$ac_dir/$ac_word"; then ac_cv_path_PKG_CONFIG="$ac_dir/$ac_word" - echo "$as_me:13355: found $ac_dir/$ac_word" >&5 + echo "$as_me:13359: found $ac_dir/$ac_word" >&5 break fi done @@ -13363,10 +13367,10 @@ fi PKG_CONFIG=$ac_cv_path_PKG_CONFIG if test -n "$PKG_CONFIG"; then - echo "$as_me:13366: result: $PKG_CONFIG" >&5 + echo "$as_me:13370: result: $PKG_CONFIG" >&5 echo "${ECHO_T}$PKG_CONFIG" >&6 else - echo "$as_me:13369: result: no" >&5 + echo "$as_me:13373: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -13375,7 +13379,7 @@ if test -z "$ac_cv_path_PKG_CONFIG"; then ac_pt_PKG_CONFIG=$PKG_CONFIG # Extract the first word of "pkg-config", so it can be a program name with args. set dummy pkg-config; ac_word=$2 -echo "$as_me:13378: checking for $ac_word" >&5 +echo "$as_me:13382: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_path_ac_pt_PKG_CONFIG+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -13392,7 +13396,7 @@ for ac_dir in $ac_dummy; do test -z "$ac_dir" && ac_dir=. if $as_executable_p "$ac_dir/$ac_word"; then ac_cv_path_ac_pt_PKG_CONFIG="$ac_dir/$ac_word" - echo "$as_me:13395: found $ac_dir/$ac_word" >&5 + echo "$as_me:13399: found $ac_dir/$ac_word" >&5 break fi done @@ -13404,10 +13408,10 @@ fi ac_pt_PKG_CONFIG=$ac_cv_path_ac_pt_PKG_CONFIG if test -n "$ac_pt_PKG_CONFIG"; then - echo "$as_me:13407: result: $ac_pt_PKG_CONFIG" >&5 + echo "$as_me:13411: result: $ac_pt_PKG_CONFIG" >&5 echo "${ECHO_T}$ac_pt_PKG_CONFIG" >&6 else - echo "$as_me:13410: result: no" >&5 + echo "$as_me:13414: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -13450,7 +13454,7 @@ case ".$PKG_CONFIG" in #(vi PKG_CONFIG=`echo $PKG_CONFIG | sed -e s%NONE%$cf_path_syntax%` ;; *) - { { echo "$as_me:13453: error: expected a pathname, not \"$PKG_CONFIG\"" >&5 + { { echo "$as_me:13457: error: expected a pathname, not \"$PKG_CONFIG\"" >&5 echo "$as_me: error: expected a pathname, not \"$PKG_CONFIG\"" >&2;} { (exit 1); exit 1; }; } ;; @@ -13499,7 +13503,7 @@ if test -n "$cf_searchpath/include" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 13502 "configure" +#line 13506 "configure" #include "confdefs.h" #include <stdio.h> int @@ -13511,16 +13515,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:13514: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:13518: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:13517: \$? = $ac_status" >&5 + echo "$as_me:13521: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:13520: \"$ac_try\"") >&5 + { (eval echo "$as_me:13524: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:13523: \$? = $ac_status" >&5 + echo "$as_me:13527: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -13537,7 +13541,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}:13540: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:13544: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -13578,7 +13582,7 @@ if test -n "$cf_searchpath/../include" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 13581 "configure" +#line 13585 "configure" #include "confdefs.h" #include <stdio.h> int @@ -13590,16 +13594,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:13593: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:13597: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:13596: \$? = $ac_status" >&5 + echo "$as_me:13600: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:13599: \"$ac_try\"") >&5 + { (eval echo "$as_me:13603: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:13602: \$? = $ac_status" >&5 + echo "$as_me:13606: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -13616,7 +13620,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}:13619: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:13623: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -13632,7 +13636,7 @@ echo "${as_me:-configure}:13619: testing adding $cf_add_incdir to include-path . fi else -{ { echo "$as_me:13635: error: cannot find ssl library under $cf_cv_use_libssl" >&5 +{ { echo "$as_me:13639: error: cannot find ssl library under $cf_cv_use_libssl" >&5 echo "$as_me: error: cannot find ssl library under $cf_cv_use_libssl" >&2;} { (exit 1); exit 1; }; } fi @@ -13657,7 +13661,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}:13660: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:13664: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -13686,7 +13690,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}:13689: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:13693: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -13695,7 +13699,7 @@ echo "${as_me:-configure}:13689: testing adding $cf_add_libdir to library-path . fi else -{ { echo "$as_me:13698: error: cannot find ssl library under $cf_cv_use_libssl" >&5 +{ { echo "$as_me:13702: error: cannot find ssl library under $cf_cv_use_libssl" >&5 echo "$as_me: error: cannot find ssl library under $cf_cv_use_libssl" >&2;} { (exit 1); exit 1; }; } fi @@ -13712,15 +13716,15 @@ done cf_cv_pkg_ssl= for cf_try_package in openssl libssl do - echo "$as_me:13715: checking pkg-config for $cf_try_package" >&5 + echo "$as_me:13719: checking pkg-config for $cf_try_package" >&5 echo $ECHO_N "checking pkg-config for $cf_try_package... $ECHO_C" >&6 if "$PKG_CONFIG" --exists $cf_try_package ; then cf_cv_pkg_ssl=$cf_try_package - echo "$as_me:13719: result: yes" >&5 + echo "$as_me:13723: result: yes" >&5 echo "${ECHO_T}yes" >&6 break else - echo "$as_me:13723: result: no" >&5 + echo "$as_me:13727: result: no" >&5 echo "${ECHO_T}no" >&6 fi done @@ -13844,7 +13848,7 @@ fi esac test -n "$verbose" && echo " adding $cf_libs_ssl to LIBS" 1>&6 -echo "${as_me:-configure}:13847: testing adding $cf_libs_ssl to LIBS ..." 1>&5 +echo "${as_me:-configure}:13851: 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... @@ -13880,7 +13884,7 @@ LIBS="$cf_add_libs" *-ldl) #(vi ;; *) - echo "$as_me:13883: checking for dlsym in -ldl" >&5 + echo "$as_me:13887: checking for dlsym in -ldl" >&5 echo $ECHO_N "checking for dlsym in -ldl... $ECHO_C" >&6 if test "${ac_cv_lib_dl_dlsym+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -13888,7 +13892,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-ldl $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 13891 "configure" +#line 13895 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -13907,16 +13911,16 @@ dlsym (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:13910: \"$ac_link\"") >&5 +if { (eval echo "$as_me:13914: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:13913: \$? = $ac_status" >&5 + echo "$as_me:13917: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:13916: \"$ac_try\"") >&5 + { (eval echo "$as_me:13920: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:13919: \$? = $ac_status" >&5 + echo "$as_me:13923: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_dl_dlsym=yes else @@ -13927,7 +13931,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:13930: result: $ac_cv_lib_dl_dlsym" >&5 +echo "$as_me:13934: result: $ac_cv_lib_dl_dlsym" >&5 echo "${ECHO_T}$ac_cv_lib_dl_dlsym" >&6 if test $ac_cv_lib_dl_dlsym = yes; then cf_extra_ssl_libs="$cf_extra_ssl_libs -ldl" @@ -13943,12 +13947,12 @@ fi cf_cv_header_path_ssl= cf_cv_library_path_ssl= -echo "${as_me:-configure}:13946: testing Starting FIND_LINKAGE(ssl,openssl) ..." 1>&5 +echo "${as_me:-configure}:13950: testing Starting FIND_LINKAGE(ssl,openssl) ..." 1>&5 cf_save_LIBS="$LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 13951 "configure" +#line 13955 "configure" #include "confdefs.h" #include <stdio.h> @@ -13977,16 +13981,16 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:13980: \"$ac_link\"") >&5 +if { (eval echo "$as_me:13984: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:13983: \$? = $ac_status" >&5 + echo "$as_me:13987: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:13986: \"$ac_try\"") >&5 + { (eval echo "$as_me:13990: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:13989: \$? = $ac_status" >&5 + echo "$as_me:13993: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_find_linkage_ssl=yes @@ -14000,7 +14004,7 @@ cat conftest.$ac_ext >&5 LIBS="-lssl $cf_extra_ssl_libs $cf_save_LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 14003 "configure" +#line 14007 "configure" #include "confdefs.h" #include <stdio.h> @@ -14029,16 +14033,16 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:14032: \"$ac_link\"") >&5 +if { (eval echo "$as_me:14036: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:14035: \$? = $ac_status" >&5 + echo "$as_me:14039: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:14038: \"$ac_try\"") >&5 + { (eval echo "$as_me:14042: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:14041: \$? = $ac_status" >&5 + echo "$as_me:14045: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_find_linkage_ssl=yes @@ -14055,9 +14059,9 @@ cat conftest.$ac_ext >&5 test -n "$verbose" && echo " find linkage for ssl library" 1>&6 -echo "${as_me:-configure}:14058: testing find linkage for ssl library ..." 1>&5 +echo "${as_me:-configure}:14062: testing find linkage for ssl library ..." 1>&5 -echo "${as_me:-configure}:14060: testing Searching for headers in FIND_LINKAGE(ssl,openssl) ..." 1>&5 +echo "${as_me:-configure}:14064: testing Searching for headers in FIND_LINKAGE(ssl,openssl) ..." 1>&5 cf_save_CPPFLAGS="$CPPFLAGS" cf_test_CPPFLAGS="$CPPFLAGS" @@ -14170,11 +14174,11 @@ cf_search="$cf_search $cf_header_path_list" if test -d $cf_cv_header_path_ssl ; then test -n "$verbose" && echo " ... testing $cf_cv_header_path_ssl" 1>&6 -echo "${as_me:-configure}:14173: testing ... testing $cf_cv_header_path_ssl ..." 1>&5 +echo "${as_me:-configure}:14177: testing ... testing $cf_cv_header_path_ssl ..." 1>&5 CPPFLAGS="$cf_save_CPPFLAGS -I$cf_cv_header_path_ssl" cat >conftest.$ac_ext <<_ACEOF -#line 14177 "configure" +#line 14181 "configure" #include "confdefs.h" #include <stdio.h> @@ -14203,21 +14207,21 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:14206: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:14210: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:14209: \$? = $ac_status" >&5 + echo "$as_me:14213: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:14212: \"$ac_try\"") >&5 + { (eval echo "$as_me:14216: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:14215: \$? = $ac_status" >&5 + echo "$as_me:14219: \$? = $ac_status" >&5 (exit $ac_status); }; }; then test -n "$verbose" && echo " ... found ssl headers in $cf_cv_header_path_ssl" 1>&6 -echo "${as_me:-configure}:14220: testing ... found ssl headers in $cf_cv_header_path_ssl ..." 1>&5 +echo "${as_me:-configure}:14224: testing ... found ssl headers in $cf_cv_header_path_ssl ..." 1>&5 cf_cv_find_linkage_ssl=maybe cf_test_CPPFLAGS="$CPPFLAGS" @@ -14235,7 +14239,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "$cf_cv_find_linkage_ssl" = maybe ; then -echo "${as_me:-configure}:14238: testing Searching for ssl library in FIND_LINKAGE(ssl,openssl) ..." 1>&5 +echo "${as_me:-configure}:14242: testing Searching for ssl library in FIND_LINKAGE(ssl,openssl) ..." 1>&5 cf_save_LIBS="$LIBS" cf_save_LDFLAGS="$LDFLAGS" @@ -14243,7 +14247,7 @@ echo "${as_me:-configure}:14238: testing Searching for ssl library in FIND_LINKA CPPFLAGS="$cf_test_CPPFLAGS" LIBS="-lssl $cf_extra_ssl_libs $cf_save_LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 14246 "configure" +#line 14250 "configure" #include "confdefs.h" #include <stdio.h> @@ -14272,21 +14276,21 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:14275: \"$ac_link\"") >&5 +if { (eval echo "$as_me:14279: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:14278: \$? = $ac_status" >&5 + echo "$as_me:14282: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:14281: \"$ac_try\"") >&5 + { (eval echo "$as_me:14285: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:14284: \$? = $ac_status" >&5 + echo "$as_me:14288: \$? = $ac_status" >&5 (exit $ac_status); }; }; then test -n "$verbose" && echo " ... found ssl library in system" 1>&6 -echo "${as_me:-configure}:14289: testing ... found ssl library in system ..." 1>&5 +echo "${as_me:-configure}:14293: testing ... found ssl library in system ..." 1>&5 cf_cv_find_linkage_ssl=yes else @@ -14389,13 +14393,13 @@ cf_search="$cf_library_path_list $cf_search" if test -d $cf_cv_library_path_ssl ; then test -n "$verbose" && echo " ... testing $cf_cv_library_path_ssl" 1>&6 -echo "${as_me:-configure}:14392: testing ... testing $cf_cv_library_path_ssl ..." 1>&5 +echo "${as_me:-configure}:14396: testing ... testing $cf_cv_library_path_ssl ..." 1>&5 CPPFLAGS="$cf_test_CPPFLAGS" LIBS="-lssl $cf_extra_ssl_libs $cf_save_LIBS" LDFLAGS="$cf_save_LDFLAGS -L$cf_cv_library_path_ssl" cat >conftest.$ac_ext <<_ACEOF -#line 14398 "configure" +#line 14402 "configure" #include "confdefs.h" #include <stdio.h> @@ -14424,21 +14428,21 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:14427: \"$ac_link\"") >&5 +if { (eval echo "$as_me:14431: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:14430: \$? = $ac_status" >&5 + echo "$as_me:14434: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:14433: \"$ac_try\"") >&5 + { (eval echo "$as_me:14437: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:14436: \$? = $ac_status" >&5 + echo "$as_me:14440: \$? = $ac_status" >&5 (exit $ac_status); }; }; then test -n "$verbose" && echo " ... found ssl library in $cf_cv_library_path_ssl" 1>&6 -echo "${as_me:-configure}:14441: testing ... found ssl library in $cf_cv_library_path_ssl ..." 1>&5 +echo "${as_me:-configure}:14445: testing ... found ssl library in $cf_cv_library_path_ssl ..." 1>&5 cf_cv_find_linkage_ssl=yes cf_cv_library_file_ssl="-lssl" @@ -14500,7 +14504,7 @@ if test -n "$cf_cv_library_path_ssl" ; then if test "$cf_have_libdir" = no ; then test -n "$verbose" && echo " adding $cf_add_libdir to library-path" 1>&6 -echo "${as_me:-configure}:14503: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:14507: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -14556,7 +14560,7 @@ if test -n "$cf_cv_header_path_ssl" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 14559 "configure" +#line 14563 "configure" #include "confdefs.h" #include <stdio.h> int @@ -14568,16 +14572,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:14571: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:14575: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:14574: \$? = $ac_status" >&5 + echo "$as_me:14578: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:14577: \"$ac_try\"") >&5 + { (eval echo "$as_me:14581: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:14580: \$? = $ac_status" >&5 + echo "$as_me:14584: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -14594,7 +14598,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}:14597: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:14601: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -14625,7 +14629,7 @@ EOF if test -n "$cf_cv_header_path_ssl" ; then test -n "$verbose" && echo " checking ssl header-path $cf_cv_header_path_ssl" 1>&6 -echo "${as_me:-configure}:14628: testing checking ssl header-path $cf_cv_header_path_ssl ..." 1>&5 +echo "${as_me:-configure}:14632: testing checking ssl header-path $cf_cv_header_path_ssl ..." 1>&5 case $cf_cv_header_path_ssl in #(vi */openssl) @@ -14638,10 +14642,10 @@ EOF esac fi -echo "$as_me:14641: checking for X509 support" >&5 +echo "$as_me:14645: checking for X509 support" >&5 echo $ECHO_N "checking for X509 support... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF -#line 14644 "configure" +#line 14648 "configure" #include "confdefs.h" #include <stdio.h> @@ -14655,7 +14659,12 @@ cat >conftest.$ac_ext <<_ACEOF #include <ssl.h> #endif +#if defined(USE_GNUTLS_INCL) +#include <gnutls/x509.h> +#else #include <openssl/x509.h> +#endif + int main () { @@ -14665,16 +14674,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:14668: \"$ac_link\"") >&5 +if { (eval echo "$as_me:14677: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:14671: \$? = $ac_status" >&5 + echo "$as_me:14680: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:14674: \"$ac_try\"") >&5 + { (eval echo "$as_me:14683: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:14677: \$? = $ac_status" >&5 + echo "$as_me:14686: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_x509_support=yes else @@ -14683,7 +14692,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:14686: result: $cf_x509_support" >&5 +echo "$as_me:14695: result: $cf_x509_support" >&5 echo "${ECHO_T}$cf_x509_support" >&6 if test "$cf_x509_support" = yes ; then @@ -14735,7 +14744,7 @@ if test -n "$cf_searchpath/include" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 14738 "configure" +#line 14747 "configure" #include "confdefs.h" #include <stdio.h> int @@ -14747,16 +14756,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:14750: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:14759: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:14753: \$? = $ac_status" >&5 + echo "$as_me:14762: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:14756: \"$ac_try\"") >&5 + { (eval echo "$as_me:14765: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:14759: \$? = $ac_status" >&5 + echo "$as_me:14768: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -14773,7 +14782,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}:14776: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:14785: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -14814,7 +14823,7 @@ if test -n "$cf_searchpath/../include" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 14817 "configure" +#line 14826 "configure" #include "confdefs.h" #include <stdio.h> int @@ -14826,16 +14835,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:14829: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:14838: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:14832: \$? = $ac_status" >&5 + echo "$as_me:14841: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:14835: \"$ac_try\"") >&5 + { (eval echo "$as_me:14844: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:14838: \$? = $ac_status" >&5 + echo "$as_me:14847: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -14852,7 +14861,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}:14855: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:14864: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -14868,7 +14877,7 @@ echo "${as_me:-configure}:14855: testing adding $cf_add_incdir to include-path . fi else -{ { echo "$as_me:14871: error: cannot find ssl library under $cf_cv_use_libgnutls" >&5 +{ { echo "$as_me:14880: 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 @@ -14893,7 +14902,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}:14896: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:14905: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -14922,7 +14931,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}:14925: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:14934: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -14931,7 +14940,7 @@ echo "${as_me:-configure}:14925: testing adding $cf_add_libdir to library-path . fi else -{ { echo "$as_me:14934: error: cannot find ssl library under $cf_cv_use_libgnutls" >&5 +{ { echo "$as_me:14943: 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 @@ -14949,12 +14958,12 @@ done yes) # if no explicit directory given, try pkg-config test -n "$verbose" && echo " checking pkg-config for $cf_pkg_gnutls" 1>&6 -echo "${as_me:-configure}:14952: testing checking pkg-config for $cf_pkg_gnutls ..." 1>&5 +echo "${as_me:-configure}:14961: 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}:14957: testing ... found $cf_pkg_gnutls in pkg-config ..." 1>&5 +echo "${as_me:-configure}:14966: testing ... found $cf_pkg_gnutls in pkg-config ..." 1>&5 cf_cv_have_gnutls=yes cf_cv_pkg_config_ssl=yes @@ -15066,7 +15075,7 @@ fi esac test -n "$verbose" && echo " adding $cf_libs_ssl to LIBS" 1>&6 -echo "${as_me:-configure}:15069: testing adding $cf_libs_ssl to LIBS ..." 1>&5 +echo "${as_me:-configure}:15078: 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... @@ -15088,7 +15097,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}:15091: testing ... did not find $cf_pkg_gnutls in pkg-config ..." 1>&5 +echo "${as_me:-configure}:15100: testing ... did not find $cf_pkg_gnutls in pkg-config ..." 1>&5 cf_pkg_gnutls=none fi @@ -15108,12 +15117,12 @@ EOF cf_cv_header_path_gnutls= cf_cv_library_path_gnutls= -echo "${as_me:-configure}:15111: testing Starting FIND_LINKAGE(gnutls,) ..." 1>&5 +echo "${as_me:-configure}:15120: testing Starting FIND_LINKAGE(gnutls,) ..." 1>&5 cf_save_LIBS="$LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 15116 "configure" +#line 15125 "configure" #include "confdefs.h" #include <stdio.h> @@ -15142,16 +15151,16 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:15145: \"$ac_link\"") >&5 +if { (eval echo "$as_me:15154: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:15148: \$? = $ac_status" >&5 + echo "$as_me:15157: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:15151: \"$ac_try\"") >&5 + { (eval echo "$as_me:15160: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:15154: \$? = $ac_status" >&5 + echo "$as_me:15163: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_find_linkage_gnutls=yes @@ -15162,10 +15171,10 @@ else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 -LIBS="-lgnutls -lgnutls -lgcrypt $cf_save_LIBS" +LIBS="-lgnutls $cf_save_LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 15168 "configure" +#line 15177 "configure" #include "confdefs.h" #include <stdio.h> @@ -15194,16 +15203,16 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:15197: \"$ac_link\"") >&5 +if { (eval echo "$as_me:15206: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:15200: \$? = $ac_status" >&5 + echo "$as_me:15209: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:15203: \"$ac_try\"") >&5 + { (eval echo "$as_me:15212: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:15206: \$? = $ac_status" >&5 + echo "$as_me:15215: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_find_linkage_gnutls=yes @@ -15220,9 +15229,9 @@ cat conftest.$ac_ext >&5 test -n "$verbose" && echo " find linkage for gnutls library" 1>&6 -echo "${as_me:-configure}:15223: testing find linkage for gnutls library ..." 1>&5 +echo "${as_me:-configure}:15232: testing find linkage for gnutls library ..." 1>&5 -echo "${as_me:-configure}:15225: testing Searching for headers in FIND_LINKAGE(gnutls,) ..." 1>&5 +echo "${as_me:-configure}:15234: testing Searching for headers in FIND_LINKAGE(gnutls,) ..." 1>&5 cf_save_CPPFLAGS="$CPPFLAGS" cf_test_CPPFLAGS="$CPPFLAGS" @@ -15335,11 +15344,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}:15338: testing ... testing $cf_cv_header_path_gnutls ..." 1>&5 +echo "${as_me:-configure}:15347: 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 15342 "configure" +#line 15351 "configure" #include "confdefs.h" #include <stdio.h> @@ -15368,21 +15377,21 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:15371: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:15380: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:15374: \$? = $ac_status" >&5 + echo "$as_me:15383: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:15377: \"$ac_try\"") >&5 + { (eval echo "$as_me:15386: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:15380: \$? = $ac_status" >&5 + echo "$as_me:15389: \$? = $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}:15385: testing ... found gnutls headers in $cf_cv_header_path_gnutls ..." 1>&5 +echo "${as_me:-configure}:15394: testing ... found gnutls headers in $cf_cv_header_path_gnutls ..." 1>&5 cf_cv_find_linkage_gnutls=maybe cf_test_CPPFLAGS="$CPPFLAGS" @@ -15400,7 +15409,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "$cf_cv_find_linkage_gnutls" = maybe ; then -echo "${as_me:-configure}:15403: testing Searching for gnutls library in FIND_LINKAGE(gnutls,) ..." 1>&5 +echo "${as_me:-configure}:15412: testing Searching for gnutls library in FIND_LINKAGE(gnutls,) ..." 1>&5 cf_save_LIBS="$LIBS" cf_save_LDFLAGS="$LDFLAGS" @@ -15497,13 +15506,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}:15500: testing ... testing $cf_cv_library_path_gnutls ..." 1>&5 +echo "${as_me:-configure}:15509: testing ... testing $cf_cv_library_path_gnutls ..." 1>&5 CPPFLAGS="$cf_test_CPPFLAGS" - LIBS="-lgnutls -lgnutls -lgcrypt $cf_save_LIBS" + LIBS="-lgnutls $cf_save_LIBS" LDFLAGS="$cf_save_LDFLAGS -L$cf_cv_library_path_gnutls" cat >conftest.$ac_ext <<_ACEOF -#line 15506 "configure" +#line 15515 "configure" #include "confdefs.h" #include <stdio.h> @@ -15532,21 +15541,21 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:15535: \"$ac_link\"") >&5 +if { (eval echo "$as_me:15544: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:15538: \$? = $ac_status" >&5 + echo "$as_me:15547: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:15541: \"$ac_try\"") >&5 + { (eval echo "$as_me:15550: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:15544: \$? = $ac_status" >&5 + echo "$as_me:15553: \$? = $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}:15549: testing ... found gnutls library in $cf_cv_library_path_gnutls ..." 1>&5 +echo "${as_me:-configure}:15558: testing ... found gnutls library in $cf_cv_library_path_gnutls ..." 1>&5 cf_cv_find_linkage_gnutls=yes cf_cv_library_file_gnutls="-lgnutls" @@ -15623,7 +15632,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 15626 "configure" +#line 15635 "configure" #include "confdefs.h" #include <stdio.h> int @@ -15635,16 +15644,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:15638: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:15647: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:15641: \$? = $ac_status" >&5 + echo "$as_me:15650: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:15644: \"$ac_try\"") >&5 + { (eval echo "$as_me:15653: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:15647: \$? = $ac_status" >&5 + echo "$as_me:15656: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -15661,7 +15670,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}:15664: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:15673: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -15700,7 +15709,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}:15703: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:15712: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -15710,7 +15719,7 @@ fi fi -cf_add_libs="-lgnutls -lgcrypt" +cf_add_libs="-lgnutls" # Filter out duplicates - this happens with badly-designed ".pc" files... for cf_add_1lib in $LIBS do @@ -15726,12 +15735,95 @@ do done LIBS="$cf_add_libs" + echo "$as_me:15738: 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 15744 "configure" +#include "confdefs.h" +/* System header to define __stub macros and hopefully few prototypes, + which can conflict with char gnutls_rnd (); 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 gnutls_rnd (); +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_gnutls_rnd) || defined (__stub___gnutls_rnd) +choke me +#else +f = gnutls_rnd; /* 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:15775: \"$ac_link\"") >&5 + (eval $ac_link) 2>&5 + ac_status=$? + echo "$as_me:15778: \$? = $ac_status" >&5 + (exit $ac_status); } && + { ac_try='test -s conftest$ac_exeext' + { (eval echo "$as_me:15781: \"$ac_try\"") >&5 + (eval $ac_try) 2>&5 + ac_status=$? + echo "$as_me:15784: \$? = $ac_status" >&5 + (exit $ac_status); }; }; then + ac_cv_func_gnutls_rnd=yes +else + echo "$as_me: failed program was:" >&5 +cat conftest.$ac_ext >&5 +ac_cv_func_gnutls_rnd=no +fi +rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext +fi +echo "$as_me:15794: 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 +#define HAVE_GNUTLS_RND 1 +EOF + +else + +cf_add_libs="-lgcrypt" +# Filter out duplicates - this happens with badly-designed ".pc" files... +for cf_add_1lib in $LIBS +do + for cf_add_2lib in $cf_add_libs + do + if test "x$cf_add_1lib" = "x$cf_add_2lib" + then + cf_add_1lib= + break + fi + done + test -n "$cf_add_1lib" && cf_add_libs="$cf_add_libs $cf_add_1lib" +done +LIBS="$cf_add_libs" + +fi + EXTRA_OBJS="$EXTRA_OBJS tidy_tls\$o" -echo "$as_me:15731: checking for X509 support" >&5 +echo "$as_me:15823: checking for X509 support" >&5 echo $ECHO_N "checking for X509 support... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF -#line 15734 "configure" +#line 15826 "configure" #include "confdefs.h" #include <stdio.h> @@ -15745,7 +15837,12 @@ cat >conftest.$ac_ext <<_ACEOF #include <ssl.h> #endif +#if defined(USE_GNUTLS_INCL) +#include <gnutls/x509.h> +#else #include <openssl/x509.h> +#endif + int main () { @@ -15755,16 +15852,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:15758: \"$ac_link\"") >&5 +if { (eval echo "$as_me:15855: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:15761: \$? = $ac_status" >&5 + echo "$as_me:15858: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:15764: \"$ac_try\"") >&5 + { (eval echo "$as_me:15861: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:15767: \$? = $ac_status" >&5 + echo "$as_me:15864: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_x509_support=yes else @@ -15773,7 +15870,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:15776: result: $cf_x509_support" >&5 +echo "$as_me:15873: result: $cf_x509_support" >&5 echo "${ECHO_T}$cf_x509_support" >&6 if test "$cf_x509_support" = yes ; then @@ -15788,13 +15885,13 @@ fi for ac_func in gnutls_priority_set_direct do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` -echo "$as_me:15791: checking for $ac_func" >&5 +echo "$as_me:15888: 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 15797 "configure" +#line 15894 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. */ @@ -15825,16 +15922,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:15828: \"$ac_link\"") >&5 +if { (eval echo "$as_me:15925: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:15831: \$? = $ac_status" >&5 + echo "$as_me:15928: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:15834: \"$ac_try\"") >&5 + { (eval echo "$as_me:15931: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:15837: \$? = $ac_status" >&5 + echo "$as_me:15934: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else @@ -15844,7 +15941,7 @@ eval "$as_ac_var=no" fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:15847: result: `eval echo '${'$as_ac_var'}'`" >&5 +echo "$as_me:15944: 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 @@ -15893,7 +15990,7 @@ if test -n "$cf_searchpath/include" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 15896 "configure" +#line 15993 "configure" #include "confdefs.h" #include <stdio.h> int @@ -15905,16 +16002,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:15908: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:16005: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:15911: \$? = $ac_status" >&5 + echo "$as_me:16008: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:15914: \"$ac_try\"") >&5 + { (eval echo "$as_me:16011: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:15917: \$? = $ac_status" >&5 + echo "$as_me:16014: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -15931,7 +16028,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}:15934: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:16031: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -15972,7 +16069,7 @@ if test -n "$cf_searchpath/../include" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 15975 "configure" +#line 16072 "configure" #include "confdefs.h" #include <stdio.h> int @@ -15984,16 +16081,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:15987: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:16084: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:15990: \$? = $ac_status" >&5 + echo "$as_me:16087: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:15993: \"$ac_try\"") >&5 + { (eval echo "$as_me:16090: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:15996: \$? = $ac_status" >&5 + echo "$as_me:16093: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -16010,7 +16107,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}:16013: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:16110: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -16026,7 +16123,7 @@ echo "${as_me:-configure}:16013: testing adding $cf_add_incdir to include-path . fi else -{ { echo "$as_me:16029: error: cannot find ssl library under $cf_cv_use_libgnutls" >&5 +{ { echo "$as_me:16126: 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 @@ -16051,7 +16148,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}:16054: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:16151: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -16080,7 +16177,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}:16083: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:16180: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -16089,7 +16186,7 @@ echo "${as_me:-configure}:16083: testing adding $cf_add_libdir to library-path . fi else -{ { echo "$as_me:16092: error: cannot find ssl library under $cf_cv_use_libgnutls" >&5 +{ { echo "$as_me:16189: 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 @@ -16107,12 +16204,12 @@ done yes) # if no explicit directory given, try pkg-config test -n "$verbose" && echo " checking pkg-config for $cf_pkg_gnutls" 1>&6 -echo "${as_me:-configure}:16110: testing checking pkg-config for $cf_pkg_gnutls ..." 1>&5 +echo "${as_me:-configure}:16207: 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}:16115: testing ... found $cf_pkg_gnutls in pkg-config ..." 1>&5 +echo "${as_me:-configure}:16212: testing ... found $cf_pkg_gnutls in pkg-config ..." 1>&5 cf_cv_have_gnutls=yes cf_cv_pkg_config_ssl=yes @@ -16224,7 +16321,7 @@ fi esac test -n "$verbose" && echo " adding $cf_libs_ssl to LIBS" 1>&6 -echo "${as_me:-configure}:16227: testing adding $cf_libs_ssl to LIBS ..." 1>&5 +echo "${as_me:-configure}:16324: 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... @@ -16246,7 +16343,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}:16249: testing ... did not find $cf_pkg_gnutls in pkg-config ..." 1>&5 +echo "${as_me:-configure}:16346: testing ... did not find $cf_pkg_gnutls in pkg-config ..." 1>&5 cf_pkg_gnutls=none fi @@ -16266,12 +16363,12 @@ EOF cf_cv_header_path_gnutls= cf_cv_library_path_gnutls= -echo "${as_me:-configure}:16269: testing Starting FIND_LINKAGE(gnutls,) ..." 1>&5 +echo "${as_me:-configure}:16366: testing Starting FIND_LINKAGE(gnutls,) ..." 1>&5 cf_save_LIBS="$LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 16274 "configure" +#line 16371 "configure" #include "confdefs.h" #include <stdio.h> @@ -16300,16 +16397,16 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:16303: \"$ac_link\"") >&5 +if { (eval echo "$as_me:16400: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:16306: \$? = $ac_status" >&5 + echo "$as_me:16403: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:16309: \"$ac_try\"") >&5 + { (eval echo "$as_me:16406: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:16312: \$? = $ac_status" >&5 + echo "$as_me:16409: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_find_linkage_gnutls=yes @@ -16320,10 +16417,10 @@ else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 -LIBS="-lgnutls -lgnutls-openssl -lgnutls-extra -lgnutls -lgcrypt $cf_save_LIBS" +LIBS="-lgnutls -lgnutls-openssl $cf_save_LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 16326 "configure" +#line 16423 "configure" #include "confdefs.h" #include <stdio.h> @@ -16352,16 +16449,16 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:16355: \"$ac_link\"") >&5 +if { (eval echo "$as_me:16452: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:16358: \$? = $ac_status" >&5 + echo "$as_me:16455: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:16361: \"$ac_try\"") >&5 + { (eval echo "$as_me:16458: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:16364: \$? = $ac_status" >&5 + echo "$as_me:16461: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_find_linkage_gnutls=yes @@ -16378,9 +16475,9 @@ cat conftest.$ac_ext >&5 test -n "$verbose" && echo " find linkage for gnutls library" 1>&6 -echo "${as_me:-configure}:16381: testing find linkage for gnutls library ..." 1>&5 +echo "${as_me:-configure}:16478: testing find linkage for gnutls library ..." 1>&5 -echo "${as_me:-configure}:16383: testing Searching for headers in FIND_LINKAGE(gnutls,) ..." 1>&5 +echo "${as_me:-configure}:16480: testing Searching for headers in FIND_LINKAGE(gnutls,) ..." 1>&5 cf_save_CPPFLAGS="$CPPFLAGS" cf_test_CPPFLAGS="$CPPFLAGS" @@ -16493,11 +16590,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}:16496: testing ... testing $cf_cv_header_path_gnutls ..." 1>&5 +echo "${as_me:-configure}:16593: 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 16500 "configure" +#line 16597 "configure" #include "confdefs.h" #include <stdio.h> @@ -16526,21 +16623,21 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:16529: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:16626: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:16532: \$? = $ac_status" >&5 + echo "$as_me:16629: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:16535: \"$ac_try\"") >&5 + { (eval echo "$as_me:16632: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:16538: \$? = $ac_status" >&5 + echo "$as_me:16635: \$? = $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}:16543: testing ... found gnutls headers in $cf_cv_header_path_gnutls ..." 1>&5 +echo "${as_me:-configure}:16640: testing ... found gnutls headers in $cf_cv_header_path_gnutls ..." 1>&5 cf_cv_find_linkage_gnutls=maybe cf_test_CPPFLAGS="$CPPFLAGS" @@ -16558,7 +16655,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "$cf_cv_find_linkage_gnutls" = maybe ; then -echo "${as_me:-configure}:16561: testing Searching for gnutls library in FIND_LINKAGE(gnutls,) ..." 1>&5 +echo "${as_me:-configure}:16658: testing Searching for gnutls library in FIND_LINKAGE(gnutls,) ..." 1>&5 cf_save_LIBS="$LIBS" cf_save_LDFLAGS="$LDFLAGS" @@ -16655,13 +16752,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}:16658: testing ... testing $cf_cv_library_path_gnutls ..." 1>&5 +echo "${as_me:-configure}:16755: testing ... testing $cf_cv_library_path_gnutls ..." 1>&5 CPPFLAGS="$cf_test_CPPFLAGS" - LIBS="-lgnutls -lgnutls-openssl -lgnutls-extra -lgnutls -lgcrypt $cf_save_LIBS" + LIBS="-lgnutls -lgnutls-openssl $cf_save_LIBS" LDFLAGS="$cf_save_LDFLAGS -L$cf_cv_library_path_gnutls" cat >conftest.$ac_ext <<_ACEOF -#line 16664 "configure" +#line 16761 "configure" #include "confdefs.h" #include <stdio.h> @@ -16690,21 +16787,21 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:16693: \"$ac_link\"") >&5 +if { (eval echo "$as_me:16790: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:16696: \$? = $ac_status" >&5 + echo "$as_me:16793: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:16699: \"$ac_try\"") >&5 + { (eval echo "$as_me:16796: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:16702: \$? = $ac_status" >&5 + echo "$as_me:16799: \$? = $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}:16707: testing ... found gnutls library in $cf_cv_library_path_gnutls ..." 1>&5 +echo "${as_me:-configure}:16804: testing ... found gnutls library in $cf_cv_library_path_gnutls ..." 1>&5 cf_cv_find_linkage_gnutls=yes cf_cv_library_file_gnutls="-lgnutls" @@ -16781,7 +16878,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 16784 "configure" +#line 16881 "configure" #include "confdefs.h" #include <stdio.h> int @@ -16793,16 +16890,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:16796: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:16893: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:16799: \$? = $ac_status" >&5 + echo "$as_me:16896: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:16802: \"$ac_try\"") >&5 + { (eval echo "$as_me:16899: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:16805: \$? = $ac_status" >&5 + echo "$as_me:16902: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -16819,7 +16916,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}:16822: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:16919: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -16858,7 +16955,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}:16861: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:16958: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -16868,7 +16965,7 @@ fi fi -cf_add_libs="-lgnutls -lgcrypt" +cf_add_libs="-lgnutls" # Filter out duplicates - this happens with badly-designed ".pc" files... for cf_add_1lib in $LIBS do @@ -16884,8 +16981,91 @@ do done LIBS="$cf_add_libs" + echo "$as_me:16984: 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 16990 "configure" +#include "confdefs.h" +/* System header to define __stub macros and hopefully few prototypes, + which can conflict with char gnutls_rnd (); 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 gnutls_rnd (); +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_gnutls_rnd) || defined (__stub___gnutls_rnd) +choke me +#else +f = gnutls_rnd; /* 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:17021: \"$ac_link\"") >&5 + (eval $ac_link) 2>&5 + ac_status=$? + echo "$as_me:17024: \$? = $ac_status" >&5 + (exit $ac_status); } && + { ac_try='test -s conftest$ac_exeext' + { (eval echo "$as_me:17027: \"$ac_try\"") >&5 + (eval $ac_try) 2>&5 + ac_status=$? + echo "$as_me:17030: \$? = $ac_status" >&5 + (exit $ac_status); }; }; then + ac_cv_func_gnutls_rnd=yes +else + echo "$as_me: failed program was:" >&5 +cat conftest.$ac_ext >&5 +ac_cv_func_gnutls_rnd=no +fi +rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext +fi +echo "$as_me:17040: 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 +#define HAVE_GNUTLS_RND 1 +EOF + +else + +cf_add_libs="-lgcrypt" +# Filter out duplicates - this happens with badly-designed ".pc" files... +for cf_add_1lib in $LIBS +do + for cf_add_2lib in $cf_add_libs + do + if test "x$cf_add_1lib" = "x$cf_add_2lib" + then + cf_add_1lib= + break + fi + done + test -n "$cf_add_1lib" && cf_add_libs="$cf_add_libs $cf_add_1lib" +done +LIBS="$cf_add_libs" + +fi + if test "$cf_pkg_gnutls" = none ; then - echo "$as_me:16888: checking for SSL_connect in -lgnutls-openssl" >&5 + echo "$as_me:17068: 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 @@ -16893,7 +17073,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lgnutls-openssl $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 16896 "configure" +#line 17076 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -16912,16 +17092,16 @@ SSL_connect (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:16915: \"$ac_link\"") >&5 +if { (eval echo "$as_me:17095: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:16918: \$? = $ac_status" >&5 + echo "$as_me:17098: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:16921: \"$ac_try\"") >&5 + { (eval echo "$as_me:17101: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:16924: \$? = $ac_status" >&5 + echo "$as_me:17104: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_gnutls_openssl_SSL_connect=yes else @@ -16932,7 +17112,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:16935: result: $ac_cv_lib_gnutls_openssl_SSL_connect" >&5 +echo "$as_me:17115: 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 @@ -16953,7 +17133,7 @@ done LIBS="$cf_add_libs" else - echo "$as_me:16956: checking for SSL_connect in -lgnutls-extra" >&5 + echo "$as_me:17136: 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 @@ -16961,7 +17141,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lgnutls-extra $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 16964 "configure" +#line 17144 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -16980,16 +17160,16 @@ SSL_connect (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:16983: \"$ac_link\"") >&5 +if { (eval echo "$as_me:17163: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:16986: \$? = $ac_status" >&5 + echo "$as_me:17166: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:16989: \"$ac_try\"") >&5 + { (eval echo "$as_me:17169: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:16992: \$? = $ac_status" >&5 + echo "$as_me:17172: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_gnutls_extra_SSL_connect=yes else @@ -17000,7 +17180,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:17003: result: $ac_cv_lib_gnutls_extra_SSL_connect" >&5 +echo "$as_me:17183: 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 @@ -17021,7 +17201,7 @@ done LIBS="$cf_add_libs" else - { { echo "$as_me:17024: error: cannot find gnutls openssl functions" >&5 + { { echo "$as_me:17204: error: cannot find gnutls openssl functions" >&5 echo "$as_me: error: cannot find gnutls openssl functions" >&2;} { (exit 1); exit 1; }; } fi @@ -17030,10 +17210,10 @@ fi fi -echo "$as_me:17033: checking for X509 support" >&5 +echo "$as_me:17213: checking for X509 support" >&5 echo $ECHO_N "checking for X509 support... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF -#line 17036 "configure" +#line 17216 "configure" #include "confdefs.h" #include <stdio.h> @@ -17047,7 +17227,12 @@ cat >conftest.$ac_ext <<_ACEOF #include <ssl.h> #endif +#if defined(USE_GNUTLS_INCL) +#include <gnutls/x509.h> +#else #include <openssl/x509.h> +#endif + int main () { @@ -17057,16 +17242,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:17060: \"$ac_link\"") >&5 +if { (eval echo "$as_me:17245: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:17063: \$? = $ac_status" >&5 + echo "$as_me:17248: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:17066: \"$ac_try\"") >&5 + { (eval echo "$as_me:17251: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:17069: \$? = $ac_status" >&5 + echo "$as_me:17254: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_x509_support=yes else @@ -17075,7 +17260,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:17078: result: $cf_x509_support" >&5 +echo "$as_me:17263: result: $cf_x509_support" >&5 echo "${ECHO_T}$cf_x509_support" >&6 if test "$cf_x509_support" = yes ; then @@ -17107,7 +17292,7 @@ no) #(vi ;; yes) #(vi -echo "$as_me:17110: checking for SSL_get_version in -lnss_compat_ossl" >&5 +echo "$as_me:17295: 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 @@ -17115,7 +17300,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lnss_compat_ossl -lnss_compat_ossl $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 17118 "configure" +#line 17303 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -17134,16 +17319,16 @@ SSL_get_version (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:17137: \"$ac_link\"") >&5 +if { (eval echo "$as_me:17322: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:17140: \$? = $ac_status" >&5 + echo "$as_me:17325: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:17143: \"$ac_try\"") >&5 + { (eval echo "$as_me:17328: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:17146: \$? = $ac_status" >&5 + echo "$as_me:17331: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_nss_compat_ossl_SSL_get_version=yes else @@ -17154,7 +17339,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:17157: result: $ac_cv_lib_nss_compat_ossl_SSL_get_version" >&5 +echo "$as_me:17342: 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 @@ -17169,11 +17354,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}:17172: testing assume it is in $cf_ssl_root ..." 1>&5 +echo "${as_me:-configure}:17357: 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:17176: error: cannot find NSS compilant libraries" >&5 + { { echo "$as_me:17361: error: cannot find NSS compilant libraries" >&5 echo "$as_me: error: cannot find NSS compilant libraries" >&2;} { (exit 1); exit 1; }; } fi @@ -17188,13 +17373,13 @@ fi elif test -d $cf_cv_use_libnss_compat/../include ; then cf_ssl_root=$cf_cv_use_libnss_compat/.. else - { { echo "$as_me:17191: error: cannot find NSS compilant library under $cf_cv_use_libnss_compat" >&5 + { { echo "$as_me:17376: 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:17197: WARNING: expected a directory: $cf_cv_use_libnss_compat" >&5 + { echo "$as_me:17382: WARNING: expected a directory: $cf_cv_use_libnss_compat" >&5 echo "$as_me: WARNING: expected a directory: $cf_cv_use_libnss_compat" >&2;} fi ;; @@ -17303,10 +17488,10 @@ if test -n "$cf_new_extra_cppflags" ; then fi if test "$cf_ssl_subincs" = yes ; then -echo "$as_me:17306: checking for NSS compilant include directory" >&5 +echo "$as_me:17491: 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 17309 "configure" +#line 17494 "configure" #include "confdefs.h" #include <stdio.h> @@ -17320,16 +17505,16 @@ SSL_shutdown((SSL *)0) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:17323: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:17508: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:17326: \$? = $ac_status" >&5 + echo "$as_me:17511: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:17329: \"$ac_try\"") >&5 + { (eval echo "$as_me:17514: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:17332: \$? = $ac_status" >&5 + echo "$as_me:17517: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_ssl_incl=yes else @@ -17338,7 +17523,7 @@ cat conftest.$ac_ext >&5 cf_ssl_incl=no fi rm -f conftest.$ac_objext conftest.$ac_ext -echo "$as_me:17341: result: $cf_ssl_incl" >&5 +echo "$as_me:17526: result: $cf_ssl_incl" >&5 echo "${ECHO_T}$cf_ssl_incl" >&6 test "$cf_ssl_incl" = yes && cat >>confdefs.h <<\EOF @@ -17347,10 +17532,10 @@ EOF fi -echo "$as_me:17350: checking if we can link to NSS compilant library" >&5 +echo "$as_me:17535: 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 17353 "configure" +#line 17538 "configure" #include "confdefs.h" #include <stdio.h> @@ -17369,16 +17554,16 @@ SSL_shutdown((SSL *)0) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:17372: \"$ac_link\"") >&5 +if { (eval echo "$as_me:17557: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:17375: \$? = $ac_status" >&5 + echo "$as_me:17560: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:17378: \"$ac_try\"") >&5 + { (eval echo "$as_me:17563: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:17381: \$? = $ac_status" >&5 + echo "$as_me:17566: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_ssl_library=yes else @@ -17387,7 +17572,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:17390: result: $cf_ssl_library" >&5 +echo "$as_me:17575: result: $cf_ssl_library" >&5 echo "${ECHO_T}$cf_ssl_library" >&6 if test "$cf_ssl_library" = yes ; then @@ -17400,7 +17585,7 @@ cat >>confdefs.h <<\EOF EOF else - { { echo "$as_me:17403: error: Cannot link with NSS compilant libraries" >&5 + { { echo "$as_me:17588: error: Cannot link with NSS compilant libraries" >&5 echo "$as_me: error: Cannot link with NSS compilant libraries" >&2;} { (exit 1); exit 1; }; } fi @@ -17408,7 +17593,7 @@ fi fi ### check for ipv6 support -echo "$as_me:17411: checking whether to enable ipv6" >&5 +echo "$as_me:17596: 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. @@ -17425,11 +17610,11 @@ EOF else enableval=no fi; -echo "$as_me:17428: result: $enableval" >&5 +echo "$as_me:17613: result: $enableval" >&5 echo "${ECHO_T}$enableval" >&6 if test "$enableval" = "yes"; then -echo "$as_me:17432: checking ipv6 stack type" >&5 +echo "$as_me:17617: 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 @@ -17450,7 +17635,7 @@ do ;; inria) #(vi cat >conftest.$ac_ext <<_ACEOF -#line 17453 "configure" +#line 17638 "configure" #include "confdefs.h" #include <netinet/in.h> @@ -17467,7 +17652,7 @@ rm -rf conftest* ;; kame) #(vi cat >conftest.$ac_ext <<_ACEOF -#line 17470 "configure" +#line 17655 "configure" #include "confdefs.h" #include <netinet/in.h> @@ -17484,7 +17669,7 @@ rm -rf conftest* ;; linux-glibc) #(vi cat >conftest.$ac_ext <<_ACEOF -#line 17487 "configure" +#line 17672 "configure" #include "confdefs.h" #include <features.h> @@ -17510,7 +17695,7 @@ rm -rf conftest* ;; toshiba) #(vi cat >conftest.$ac_ext <<_ACEOF -#line 17513 "configure" +#line 17698 "configure" #include "confdefs.h" #include <sys/param.h> @@ -17527,7 +17712,7 @@ rm -rf conftest* ;; v6d) #(vi cat >conftest.$ac_ext <<_ACEOF -#line 17530 "configure" +#line 17715 "configure" #include "confdefs.h" #include </usr/local/v6/include/sys/v6config.h> @@ -17544,7 +17729,7 @@ rm -rf conftest* ;; zeta) cat >conftest.$ac_ext <<_ACEOF -#line 17547 "configure" +#line 17732 "configure" #include "confdefs.h" #include <sys/param.h> @@ -17566,13 +17751,13 @@ rm -rf conftest* done fi -echo "$as_me:17569: result: $cf_cv_ipv6type" >&5 +echo "$as_me:17754: result: $cf_cv_ipv6type" >&5 echo "${ECHO_T}$cf_cv_ipv6type" >&6 cf_ipv6lib=none cf_ipv6dir=none -echo "$as_me:17575: checking for IPv6 library if required" >&5 +echo "$as_me:17760: checking for IPv6 library if required" >&5 echo $ECHO_N "checking for IPv6 library if required... $ECHO_C" >&6 case $cf_cv_ipv6type in #(vi solaris) #(vi @@ -17602,13 +17787,13 @@ zeta) cf_ipv6dir=v6 ;; esac -echo "$as_me:17605: result: $cf_ipv6lib" >&5 +echo "$as_me:17790: result: $cf_ipv6lib" >&5 echo "${ECHO_T}$cf_ipv6lib" >&6 if test "$cf_ipv6lib" != "none"; then cat >conftest.$ac_ext <<_ACEOF -#line 17611 "configure" +#line 17796 "configure" #include "confdefs.h" #include <sys/types.h> @@ -17624,16 +17809,16 @@ getaddrinfo(0, 0, 0, 0) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:17627: \"$ac_link\"") >&5 +if { (eval echo "$as_me:17812: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:17630: \$? = $ac_status" >&5 + echo "$as_me:17815: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:17633: \"$ac_try\"") >&5 + { (eval echo "$as_me:17818: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:17636: \$? = $ac_status" >&5 + echo "$as_me:17821: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -17773,7 +17958,7 @@ if test -n "$cf_incdir" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 17776 "configure" +#line 17961 "configure" #include "confdefs.h" #include <stdio.h> int @@ -17785,16 +17970,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:17788: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:17973: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:17791: \$? = $ac_status" >&5 + echo "$as_me:17976: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:17794: \"$ac_try\"") >&5 + { (eval echo "$as_me:17979: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:17797: \$? = $ac_status" >&5 + echo "$as_me:17982: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -17811,7 +17996,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}:17814: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:17999: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -17837,13 +18022,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:17840: checking for getaddrinfo" >&5 + echo "$as_me:18025: 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 17846 "configure" +#line 18031 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char getaddrinfo (); below. */ @@ -17874,16 +18059,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:17877: \"$ac_link\"") >&5 +if { (eval echo "$as_me:18062: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:17880: \$? = $ac_status" >&5 + echo "$as_me:18065: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:17883: \"$ac_try\"") >&5 + { (eval echo "$as_me:18068: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:17886: \$? = $ac_status" >&5 + echo "$as_me:18071: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_getaddrinfo=yes else @@ -17893,18 +18078,18 @@ ac_cv_func_getaddrinfo=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:17896: result: $ac_cv_func_getaddrinfo" >&5 +echo "$as_me:18081: 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:17903: checking for getaddrinfo in -l$cf_ipv6lib" >&5 + echo "$as_me:18088: 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 17907 "configure" +#line 18092 "configure" #include "confdefs.h" #include <sys/types.h> @@ -17920,25 +18105,25 @@ getaddrinfo(0, 0, 0, 0) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:17923: \"$ac_link\"") >&5 +if { (eval echo "$as_me:18108: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:17926: \$? = $ac_status" >&5 + echo "$as_me:18111: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:17929: \"$ac_try\"") >&5 + { (eval echo "$as_me:18114: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:17932: \$? = $ac_status" >&5 + echo "$as_me:18117: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:17934: result: yes" >&5 + echo "$as_me:18119: 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:17941: result: no" >&5 +echo "$as_me:18126: result: no" >&5 echo "${ECHO_T}no" >&6 cf_search= @@ -18028,11 +18213,11 @@ cf_search="$cf_library_path_list $cf_search" for cf_libdir in $cf_search do - echo "$as_me:18031: checking for -l$cf_ipv6lib in $cf_libdir" >&5 + echo "$as_me:18216: 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 18035 "configure" +#line 18220 "configure" #include "confdefs.h" #include <sys/types.h> @@ -18048,25 +18233,25 @@ getaddrinfo(0, 0, 0, 0) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:18051: \"$ac_link\"") >&5 +if { (eval echo "$as_me:18236: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:18054: \$? = $ac_status" >&5 + echo "$as_me:18239: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:18057: \"$ac_try\"") >&5 + { (eval echo "$as_me:18242: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:18060: \$? = $ac_status" >&5 + echo "$as_me:18245: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:18062: result: yes" >&5 + echo "$as_me:18247: 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:18069: result: no" >&5 +echo "$as_me:18254: result: no" >&5 echo "${ECHO_T}no" >&6 LIBS="$cf_save_LIBS" fi @@ -18081,7 +18266,7 @@ fi eval 'cf_found_library=$cf_cv_have_lib_'$cf_ipv6lib if test $cf_found_library = no ; then - { { echo "$as_me:18084: error: No $cf_ipv6lib library found, cannot continue. You must fetch lib$cf_ipv6lib.a + { { echo "$as_me:18269: 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;} @@ -18089,7 +18274,7 @@ from an appropriate IPv6 kit and compile beforehand." >&2;} fi fi -echo "$as_me:18092: checking working getaddrinfo" >&5 +echo "$as_me:18277: 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 @@ -18099,7 +18284,7 @@ if test "$cross_compiling" = yes; then cf_cv_getaddrinfo=unknown else cat >conftest.$ac_ext <<_ACEOF -#line 18102 "configure" +#line 18287 "configure" #include "confdefs.h" #include <sys/types.h> @@ -18179,15 +18364,15 @@ int main() _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:18182: \"$ac_link\"") >&5 +if { (eval echo "$as_me:18367: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:18185: \$? = $ac_status" >&5 + echo "$as_me:18370: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:18187: \"$ac_try\"") >&5 + { (eval echo "$as_me:18372: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:18190: \$? = $ac_status" >&5 + echo "$as_me:18375: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_getaddrinfo=yes else @@ -18200,7 +18385,7 @@ rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext fi fi -echo "$as_me:18203: result: $cf_cv_getaddrinfo" >&5 +echo "$as_me:18388: result: $cf_cv_getaddrinfo" >&5 echo "${ECHO_T}$cf_cv_getaddrinfo" >&6 if test "$cf_cv_getaddrinfo" = yes ; then @@ -18216,12 +18401,12 @@ fi if test "$cf_cv_getaddrinfo" != "yes"; then if test "$cf_cv_ipv6type" != "linux"; then - { echo "$as_me:18219: WARNING: You must get working getaddrinfo() function, + { echo "$as_me:18404: 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:18224: WARNING: The getaddrinfo() implementation on your system seems be buggy. + { echo "$as_me:18409: 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. @@ -18232,7 +18417,7 @@ fi fi -echo "$as_me:18235: checking for screen type" >&5 +echo "$as_me:18420: 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 @@ -18246,7 +18431,7 @@ case $withval in curses|ncurses|ncursesw|pdcurses|slang) cf_cv_screen=$withval ;; -*) { { echo "$as_me:18249: error: Unexpected value" >&5 +*) { { echo "$as_me:18434: error: Unexpected value" >&5 echo "$as_me: error: Unexpected value" >&2;} { (exit 1); exit 1; }; } ;; @@ -18255,13 +18440,13 @@ else cf_cv_screen=curses fi; fi -echo "$as_me:18258: result: $cf_cv_screen" >&5 +echo "$as_me:18443: result: $cf_cv_screen" >&5 echo "${ECHO_T}$cf_cv_screen" >&6 case $cf_cv_screen in curses|ncurses*) -echo "$as_me:18264: checking for specific curses-directory" >&5 +echo "$as_me:18449: 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. @@ -18271,7 +18456,7 @@ if test "${with_curses_dir+set}" = set; then else cf_cv_curses_dir=no fi; -echo "$as_me:18274: result: $cf_cv_curses_dir" >&5 +echo "$as_me:18459: 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" ) @@ -18302,7 +18487,7 @@ case ".$withval" in #(vi withval=`echo $withval | sed -e s%NONE%$cf_path_syntax%` ;; *) - { { echo "$as_me:18305: error: expected a pathname, not \"$withval\"" >&5 + { { echo "$as_me:18490: error: expected a pathname, not \"$withval\"" >&5 echo "$as_me: error: expected a pathname, not \"$withval\"" >&2;} { (exit 1); exit 1; }; } ;; @@ -18335,7 +18520,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 18338 "configure" +#line 18523 "configure" #include "confdefs.h" #include <stdio.h> int @@ -18347,16 +18532,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:18350: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:18535: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:18353: \$? = $ac_status" >&5 + echo "$as_me:18538: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:18356: \"$ac_try\"") >&5 + { (eval echo "$as_me:18541: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:18359: \$? = $ac_status" >&5 + echo "$as_me:18544: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -18373,7 +18558,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}:18376: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:18561: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -18407,7 +18592,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}:18410: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:18595: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -18426,7 +18611,7 @@ dft_color_style=yes case $cf_cv_screen in curses) -echo "$as_me:18429: checking for extra include directories" >&5 +echo "$as_me:18614: 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 @@ -18452,11 +18637,11 @@ sunos3*|sunos4*) esac fi -echo "$as_me:18455: result: $cf_cv_curses_incdir" >&5 +echo "$as_me:18640: 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:18459: checking if we have identified curses headers" >&5 +echo "$as_me:18644: 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 @@ -18468,7 +18653,7 @@ for cf_header in \ curses.h ncurses/ncurses.h ncurses/curses.h do cat >conftest.$ac_ext <<_ACEOF -#line 18471 "configure" +#line 18656 "configure" #include "confdefs.h" #include <${cf_header}> int @@ -18480,16 +18665,16 @@ initscr(); tgoto("?", 0,0) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:18483: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:18668: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:18486: \$? = $ac_status" >&5 + echo "$as_me:18671: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:18489: \"$ac_try\"") >&5 + { (eval echo "$as_me:18674: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:18492: \$? = $ac_status" >&5 + echo "$as_me:18677: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_ncurses_header=$cf_header; break else @@ -18500,11 +18685,11 @@ rm -f conftest.$ac_objext conftest.$ac_ext done fi -echo "$as_me:18503: result: $cf_cv_ncurses_header" >&5 +echo "$as_me:18688: 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:18507: error: No curses header-files found" >&5 + { { echo "$as_me:18692: error: No curses header-files found" >&5 echo "$as_me: error: No curses header-files found" >&2;} { (exit 1); exit 1; }; } fi @@ -18514,23 +18699,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:18517: checking for $ac_header" >&5 +echo "$as_me:18702: 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 18523 "configure" +#line 18708 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:18527: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:18712: \"$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:18533: \$? = $ac_status" >&5 + echo "$as_me:18718: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -18549,7 +18734,7 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:18552: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:18737: 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 @@ -18559,7 +18744,7 @@ EOF fi done -echo "$as_me:18562: checking for terminfo header" >&5 +echo "$as_me:18747: 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 @@ -18577,7 +18762,7 @@ esac for cf_test in $cf_term_header "ncurses/term.h" "ncursesw/term.h" do cat >conftest.$ac_ext <<_ACEOF -#line 18580 "configure" +#line 18765 "configure" #include "confdefs.h" #include <stdio.h> #include <${cf_cv_ncurses_header:-curses.h}> @@ -18592,16 +18777,16 @@ int x = auto_left_margin } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:18595: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:18780: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:18598: \$? = $ac_status" >&5 + echo "$as_me:18783: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:18601: \"$ac_try\"") >&5 + { (eval echo "$as_me:18786: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:18604: \$? = $ac_status" >&5 + echo "$as_me:18789: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_term_header="$cf_test" @@ -18617,7 +18802,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext done fi -echo "$as_me:18620: result: $cf_cv_term_header" >&5 +echo "$as_me:18805: result: $cf_cv_term_header" >&5 echo "${ECHO_T}$cf_cv_term_header" >&6 # Set definitions to allow ifdef'ing to accommodate subdirectories @@ -18649,7 +18834,7 @@ EOF ;; esac -echo "$as_me:18652: checking for ncurses version" >&5 +echo "$as_me:18837: 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 @@ -18675,10 +18860,10 @@ Autoconf "old" #endif EOF cf_try="$ac_cpp conftest.$ac_ext 2>&5 | grep '^Autoconf ' >conftest.out" - { (eval echo "$as_me:18678: \"$cf_try\"") >&5 + { (eval echo "$as_me:18863: \"$cf_try\"") >&5 (eval $cf_try) 2>&5 ac_status=$? - echo "$as_me:18681: \$? = $ac_status" >&5 + echo "$as_me:18866: \$? = $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%".*%%'` @@ -18688,7 +18873,7 @@ EOF else cat >conftest.$ac_ext <<_ACEOF -#line 18691 "configure" +#line 18876 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> @@ -18713,15 +18898,15 @@ int main() } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:18716: \"$ac_link\"") >&5 +if { (eval echo "$as_me:18901: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:18719: \$? = $ac_status" >&5 + echo "$as_me:18904: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:18721: \"$ac_try\"") >&5 + { (eval echo "$as_me:18906: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:18724: \$? = $ac_status" >&5 + echo "$as_me:18909: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_ncurses_version=`cat $cf_tempfile` @@ -18735,17 +18920,17 @@ fi rm -f $cf_tempfile fi -echo "$as_me:18738: result: $cf_cv_ncurses_version" >&5 +echo "$as_me:18923: 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:18745: checking if we have identified curses libraries" >&5 +echo "$as_me:18930: 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 18748 "configure" +#line 18933 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> int @@ -18757,16 +18942,16 @@ initscr(); tgoto("?", 0,0) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:18760: \"$ac_link\"") >&5 +if { (eval echo "$as_me:18945: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:18763: \$? = $ac_status" >&5 + echo "$as_me:18948: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:18766: \"$ac_try\"") >&5 + { (eval echo "$as_me:18951: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:18769: \$? = $ac_status" >&5 + echo "$as_me:18954: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_result=yes else @@ -18775,13 +18960,13 @@ cat conftest.$ac_ext >&5 cf_result=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext -echo "$as_me:18778: result: $cf_result" >&5 +echo "$as_me:18963: result: $cf_result" >&5 echo "${ECHO_T}$cf_result" >&6 if test "$cf_result" = no ; then case $host_os in #(vi freebsd*) #(vi - echo "$as_me:18784: checking for tgoto in -lmytinfo" >&5 + echo "$as_me:18969: 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 @@ -18789,7 +18974,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lmytinfo $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 18792 "configure" +#line 18977 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -18808,16 +18993,16 @@ tgoto (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:18811: \"$ac_link\"") >&5 +if { (eval echo "$as_me:18996: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:18814: \$? = $ac_status" >&5 + echo "$as_me:18999: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:18817: \"$ac_try\"") >&5 + { (eval echo "$as_me:19002: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:18820: \$? = $ac_status" >&5 + echo "$as_me:19005: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_mytinfo_tgoto=yes else @@ -18828,7 +19013,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:18831: result: $ac_cv_lib_mytinfo_tgoto" >&5 +echo "$as_me:19016: 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 @@ -18858,7 +19043,7 @@ hpux10.*) #(vi # term.h) for cur_colr if test "x$cf_cv_screen" = "xcurses_colr" then - echo "$as_me:18861: checking for initscr in -lcur_colr" >&5 + echo "$as_me:19046: 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 @@ -18866,7 +19051,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lcur_colr $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 18869 "configure" +#line 19054 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -18885,16 +19070,16 @@ initscr (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:18888: \"$ac_link\"") >&5 +if { (eval echo "$as_me:19073: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:18891: \$? = $ac_status" >&5 + echo "$as_me:19076: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:18894: \"$ac_try\"") >&5 + { (eval echo "$as_me:19079: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:18897: \$? = $ac_status" >&5 + echo "$as_me:19082: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_cur_colr_initscr=yes else @@ -18905,7 +19090,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:18908: result: $ac_cv_lib_cur_colr_initscr" >&5 +echo "$as_me:19093: 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 @@ -18929,7 +19114,7 @@ LIBS="$cf_add_libs" else - echo "$as_me:18932: checking for initscr in -lHcurses" >&5 + echo "$as_me:19117: 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 @@ -18937,7 +19122,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lHcurses $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 18940 "configure" +#line 19125 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -18956,16 +19141,16 @@ initscr (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:18959: \"$ac_link\"") >&5 +if { (eval echo "$as_me:19144: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:18962: \$? = $ac_status" >&5 + echo "$as_me:19147: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:18965: \"$ac_try\"") >&5 + { (eval echo "$as_me:19150: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:18968: \$? = $ac_status" >&5 + echo "$as_me:19153: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_Hcurses_initscr=yes else @@ -18976,7 +19161,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:18979: result: $ac_cv_lib_Hcurses_initscr" >&5 +echo "$as_me:19164: 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 @@ -19032,7 +19217,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}:19035: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:19220: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -19061,7 +19246,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}:19064: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:19249: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -19092,7 +19277,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}:19095: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:19280: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -19127,7 +19312,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}:19130: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:19315: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -19171,13 +19356,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:19174: checking for tgoto" >&5 + echo "$as_me:19359: 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 19180 "configure" +#line 19365 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char tgoto (); below. */ @@ -19208,16 +19393,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:19211: \"$ac_link\"") >&5 +if { (eval echo "$as_me:19396: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:19214: \$? = $ac_status" >&5 + echo "$as_me:19399: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:19217: \"$ac_try\"") >&5 + { (eval echo "$as_me:19402: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:19220: \$? = $ac_status" >&5 + echo "$as_me:19405: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_tgoto=yes else @@ -19227,7 +19412,7 @@ ac_cv_func_tgoto=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:19230: result: $ac_cv_func_tgoto" >&5 +echo "$as_me:19415: 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 @@ -19236,7 +19421,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:19239: checking for tgoto in -l$cf_term_lib" >&5 +echo "$as_me:19424: 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 @@ -19244,7 +19429,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-l$cf_term_lib $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 19247 "configure" +#line 19432 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -19263,16 +19448,16 @@ tgoto (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:19266: \"$ac_link\"") >&5 +if { (eval echo "$as_me:19451: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:19269: \$? = $ac_status" >&5 + echo "$as_me:19454: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:19272: \"$ac_try\"") >&5 + { (eval echo "$as_me:19457: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:19275: \$? = $ac_status" >&5 + echo "$as_me:19460: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_Lib=yes" else @@ -19283,7 +19468,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:19286: result: `eval echo '${'$as_ac_Lib'}'`" >&5 +echo "$as_me:19471: 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 @@ -19302,7 +19487,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:19305: checking for initscr in -l$cf_curs_lib" >&5 +echo "$as_me:19490: 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 @@ -19310,7 +19495,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-l$cf_curs_lib $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 19313 "configure" +#line 19498 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -19329,16 +19514,16 @@ initscr (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:19332: \"$ac_link\"") >&5 +if { (eval echo "$as_me:19517: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:19335: \$? = $ac_status" >&5 + echo "$as_me:19520: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:19338: \"$ac_try\"") >&5 + { (eval echo "$as_me:19523: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:19341: \$? = $ac_status" >&5 + echo "$as_me:19526: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_Lib=yes" else @@ -19349,7 +19534,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:19352: result: `eval echo '${'$as_ac_Lib'}'`" >&5 +echo "$as_me:19537: 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 @@ -19357,16 +19542,16 @@ fi done fi - test $cf_curs_lib = unknown && { { echo "$as_me:19360: error: no curses library found" >&5 + test $cf_curs_lib = unknown && { { echo "$as_me:19545: 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:19366: checking if we can link with $cf_curs_lib library" >&5 + echo "$as_me:19551: 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 19369 "configure" +#line 19554 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> int @@ -19378,16 +19563,16 @@ initscr() } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:19381: \"$ac_link\"") >&5 +if { (eval echo "$as_me:19566: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:19384: \$? = $ac_status" >&5 + echo "$as_me:19569: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:19387: \"$ac_try\"") >&5 + { (eval echo "$as_me:19572: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:19390: \$? = $ac_status" >&5 + echo "$as_me:19575: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_result=yes else @@ -19396,18 +19581,18 @@ cat conftest.$ac_ext >&5 cf_result=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext - echo "$as_me:19399: result: $cf_result" >&5 + echo "$as_me:19584: result: $cf_result" >&5 echo "${ECHO_T}$cf_result" >&6 - test $cf_result = no && { { echo "$as_me:19401: error: Cannot link curses library" >&5 + test $cf_result = no && { { echo "$as_me:19586: 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:19407: checking if we need both $cf_curs_lib and $cf_term_lib libraries" >&5 + echo "$as_me:19592: 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 19410 "configure" +#line 19595 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> int @@ -19419,16 +19604,16 @@ initscr(); tgoto((char *)0, 0, 0); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:19422: \"$ac_link\"") >&5 +if { (eval echo "$as_me:19607: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:19425: \$? = $ac_status" >&5 + echo "$as_me:19610: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:19428: \"$ac_try\"") >&5 + { (eval echo "$as_me:19613: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:19431: \$? = $ac_status" >&5 + echo "$as_me:19616: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_result=no else @@ -19437,7 +19622,7 @@ cat conftest.$ac_ext >&5 LIBS="-l$cf_curs_lib -l$cf_term_lib $cf_save_LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 19440 "configure" +#line 19625 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> int @@ -19449,16 +19634,16 @@ initscr() } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:19452: \"$ac_link\"") >&5 +if { (eval echo "$as_me:19637: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:19455: \$? = $ac_status" >&5 + echo "$as_me:19640: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:19458: \"$ac_try\"") >&5 + { (eval echo "$as_me:19643: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:19461: \$? = $ac_status" >&5 + echo "$as_me:19646: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_result=yes else @@ -19470,13 +19655,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:19473: result: $cf_result" >&5 + echo "$as_me:19658: result: $cf_result" >&5 echo "${ECHO_T}$cf_result" >&6 fi fi fi -echo "$as_me:19479: checking for curses performance tradeoff" >&5 +echo "$as_me:19664: 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 @@ -19484,7 +19669,7 @@ else cf_cv_curs_performance=no cat >conftest.$ac_ext <<_ACEOF -#line 19487 "configure" +#line 19672 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> @@ -19503,20 +19688,20 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:19506: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:19691: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:19509: \$? = $ac_status" >&5 + echo "$as_me:19694: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:19512: \"$ac_try\"") >&5 + { (eval echo "$as_me:19697: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:19515: \$? = $ac_status" >&5 + echo "$as_me:19700: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cat >conftest.$ac_ext <<_ACEOF -#line 19519 "configure" +#line 19704 "configure" #include "confdefs.h" #define CURS_PERFORMANCE @@ -19536,16 +19721,16 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:19539: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:19724: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:19542: \$? = $ac_status" >&5 + echo "$as_me:19727: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:19545: \"$ac_try\"") >&5 + { (eval echo "$as_me:19730: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:19548: \$? = $ac_status" >&5 + echo "$as_me:19733: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_curs_performance=yes else @@ -19560,21 +19745,21 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:19563: result: $cf_cv_curs_performance" >&5 +echo "$as_me:19748: 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:19570: checking for curses touchline function" >&5 +echo "$as_me:19755: 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 19577 "configure" +#line 19762 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> @@ -19587,23 +19772,23 @@ touchline(stdscr, 1,2,3); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:19590: \"$ac_link\"") >&5 +if { (eval echo "$as_me:19775: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:19593: \$? = $ac_status" >&5 + echo "$as_me:19778: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:19596: \"$ac_try\"") >&5 + { (eval echo "$as_me:19781: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:19599: \$? = $ac_status" >&5 + echo "$as_me:19784: \$? = $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 19606 "configure" +#line 19791 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> @@ -19616,16 +19801,16 @@ touchline(stdscr, 1,2); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:19619: \"$ac_link\"") >&5 +if { (eval echo "$as_me:19804: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:19622: \$? = $ac_status" >&5 + echo "$as_me:19807: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:19625: \"$ac_try\"") >&5 + { (eval echo "$as_me:19810: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:19628: \$? = $ac_status" >&5 + echo "$as_me:19813: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_curs_touchline=sysv else @@ -19637,7 +19822,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:19640: result: $cf_cv_curs_touchline" >&5 +echo "$as_me:19825: result: $cf_cv_curs_touchline" >&5 echo "${ECHO_T}$cf_cv_curs_touchline" >&6 case "$cf_cv_curs_touchline" in #(vi bsd) #(vi @@ -19668,7 +19853,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:19671: checking for $ac_word" >&5 +echo "$as_me:19856: 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 @@ -19683,7 +19868,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:19686: found $ac_dir/$ac_word" >&5 +echo "$as_me:19871: found $ac_dir/$ac_word" >&5 break done @@ -19691,10 +19876,10 @@ fi fi NCURSES_CONFIG=$ac_cv_prog_NCURSES_CONFIG if test -n "$NCURSES_CONFIG"; then - echo "$as_me:19694: result: $NCURSES_CONFIG" >&5 + echo "$as_me:19879: result: $NCURSES_CONFIG" >&5 echo "${ECHO_T}$NCURSES_CONFIG" >&6 else - echo "$as_me:19697: result: no" >&5 + echo "$as_me:19882: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -19707,7 +19892,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:19710: checking for $ac_word" >&5 +echo "$as_me:19895: 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 @@ -19722,7 +19907,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:19725: found $ac_dir/$ac_word" >&5 +echo "$as_me:19910: found $ac_dir/$ac_word" >&5 break done @@ -19730,10 +19915,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:19733: result: $ac_ct_NCURSES_CONFIG" >&5 + echo "$as_me:19918: result: $ac_ct_NCURSES_CONFIG" >&5 echo "${ECHO_T}$ac_ct_NCURSES_CONFIG" >&6 else - echo "$as_me:19736: result: no" >&5 + echo "$as_me:19921: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -19766,7 +19951,7 @@ LIBS="$cf_add_libs" # even with config script, some packages use no-override for curses.h -echo "$as_me:19769: checking if we have identified curses headers" >&5 +echo "$as_me:19954: 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 @@ -19780,7 +19965,7 @@ for cf_header in \ curses.h do cat >conftest.$ac_ext <<_ACEOF -#line 19783 "configure" +#line 19968 "configure" #include "confdefs.h" #include <${cf_header}> int @@ -19792,16 +19977,16 @@ initscr(); tgoto("?", 0,0) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:19795: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:19980: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:19798: \$? = $ac_status" >&5 + echo "$as_me:19983: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:19801: \"$ac_try\"") >&5 + { (eval echo "$as_me:19986: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:19804: \$? = $ac_status" >&5 + echo "$as_me:19989: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_ncurses_header=$cf_header; break else @@ -19812,11 +19997,11 @@ rm -f conftest.$ac_objext conftest.$ac_ext done fi -echo "$as_me:19815: result: $cf_cv_ncurses_header" >&5 +echo "$as_me:20000: 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:19819: error: No curses header-files found" >&5 + { { echo "$as_me:20004: error: No curses header-files found" >&5 echo "$as_me: error: No curses header-files found" >&2;} { (exit 1); exit 1; }; } fi @@ -19826,23 +20011,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:19829: checking for $ac_header" >&5 +echo "$as_me:20014: 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 19835 "configure" +#line 20020 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:19839: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:20024: \"$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:19845: \$? = $ac_status" >&5 + echo "$as_me:20030: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -19861,7 +20046,7 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:19864: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:20049: 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 @@ -19914,7 +20099,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 19917 "configure" +#line 20102 "configure" #include "confdefs.h" #include <stdio.h> int @@ -19926,16 +20111,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:19929: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:20114: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:19932: \$? = $ac_status" >&5 + echo "$as_me:20117: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:19935: \"$ac_try\"") >&5 + { (eval echo "$as_me:20120: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:19938: \$? = $ac_status" >&5 + echo "$as_me:20123: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -19952,7 +20137,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}:19955: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:20140: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -19969,7 +20154,7 @@ fi } -echo "$as_me:19972: checking for $cf_ncuhdr_root header in include-path" >&5 +echo "$as_me:20157: 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 @@ -19981,7 +20166,7 @@ else do cat >conftest.$ac_ext <<_ACEOF -#line 19984 "configure" +#line 20169 "configure" #include "confdefs.h" #include <$cf_header> @@ -20005,16 +20190,16 @@ printf("old\n"); } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:20008: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:20193: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:20011: \$? = $ac_status" >&5 + echo "$as_me:20196: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:20014: \"$ac_try\"") >&5 + { (eval echo "$as_me:20199: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:20017: \$? = $ac_status" >&5 + echo "$as_me:20202: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_ncurses_h=$cf_header @@ -20029,14 +20214,14 @@ rm -f conftest.$ac_objext conftest.$ac_ext done fi -echo "$as_me:20032: result: $cf_cv_ncurses_h" >&5 +echo "$as_me:20217: 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:20039: checking for $cf_ncuhdr_root include-path" >&5 +echo "$as_me:20224: 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 @@ -20176,7 +20361,7 @@ if test -n "$cf_incdir" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 20179 "configure" +#line 20364 "configure" #include "confdefs.h" #include <stdio.h> int @@ -20188,16 +20373,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:20191: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:20376: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:20194: \$? = $ac_status" >&5 + echo "$as_me:20379: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:20197: \"$ac_try\"") >&5 + { (eval echo "$as_me:20382: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:20200: \$? = $ac_status" >&5 + echo "$as_me:20385: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -20214,7 +20399,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}:20217: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:20402: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -20235,7 +20420,7 @@ fi do cat >conftest.$ac_ext <<_ACEOF -#line 20238 "configure" +#line 20423 "configure" #include "confdefs.h" #include <$cf_header> @@ -20259,16 +20444,16 @@ printf("old\n"); } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:20262: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:20447: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:20265: \$? = $ac_status" >&5 + echo "$as_me:20450: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:20268: \"$ac_try\"") >&5 + { (eval echo "$as_me:20453: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:20271: \$? = $ac_status" >&5 + echo "$as_me:20456: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_ncurses_h2=$cf_header @@ -20289,12 +20474,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:20292: error: not found" >&5 + test "$cf_cv_ncurses_h2" = no && { { echo "$as_me:20477: error: not found" >&5 echo "$as_me: error: not found" >&2;} { (exit 1); exit 1; }; } fi -echo "$as_me:20297: result: $cf_cv_ncurses_h2" >&5 +echo "$as_me:20482: 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%/[^/]*$%%'` @@ -20327,7 +20512,7 @@ if test -n "$cf_1st_incdir" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 20330 "configure" +#line 20515 "configure" #include "confdefs.h" #include <stdio.h> int @@ -20339,16 +20524,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:20342: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:20527: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:20345: \$? = $ac_status" >&5 + echo "$as_me:20530: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:20348: \"$ac_try\"") >&5 + { (eval echo "$as_me:20533: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:20351: \$? = $ac_status" >&5 + echo "$as_me:20536: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -20365,7 +20550,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}:20368: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:20553: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -20411,7 +20596,7 @@ EOF ;; esac -echo "$as_me:20414: checking for terminfo header" >&5 +echo "$as_me:20599: 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 @@ -20429,7 +20614,7 @@ esac for cf_test in $cf_term_header "ncurses/term.h" "ncursesw/term.h" do cat >conftest.$ac_ext <<_ACEOF -#line 20432 "configure" +#line 20617 "configure" #include "confdefs.h" #include <stdio.h> #include <${cf_cv_ncurses_header:-curses.h}> @@ -20444,16 +20629,16 @@ int x = auto_left_margin } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:20447: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:20632: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:20450: \$? = $ac_status" >&5 + echo "$as_me:20635: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:20453: \"$ac_try\"") >&5 + { (eval echo "$as_me:20638: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:20456: \$? = $ac_status" >&5 + echo "$as_me:20641: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_term_header="$cf_test" @@ -20469,7 +20654,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext done fi -echo "$as_me:20472: result: $cf_cv_term_header" >&5 +echo "$as_me:20657: result: $cf_cv_term_header" >&5 echo "${ECHO_T}$cf_cv_term_header" >&6 # Set definitions to allow ifdef'ing to accommodate subdirectories @@ -20507,7 +20692,7 @@ cat >>confdefs.h <<\EOF #define NCURSES 1 EOF -echo "$as_me:20510: checking for ncurses version" >&5 +echo "$as_me:20695: 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 @@ -20533,10 +20718,10 @@ Autoconf "old" #endif EOF cf_try="$ac_cpp conftest.$ac_ext 2>&5 | grep '^Autoconf ' >conftest.out" - { (eval echo "$as_me:20536: \"$cf_try\"") >&5 + { (eval echo "$as_me:20721: \"$cf_try\"") >&5 (eval $cf_try) 2>&5 ac_status=$? - echo "$as_me:20539: \$? = $ac_status" >&5 + echo "$as_me:20724: \$? = $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%".*%%'` @@ -20546,7 +20731,7 @@ EOF else cat >conftest.$ac_ext <<_ACEOF -#line 20549 "configure" +#line 20734 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> @@ -20571,15 +20756,15 @@ int main() } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:20574: \"$ac_link\"") >&5 +if { (eval echo "$as_me:20759: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:20577: \$? = $ac_status" >&5 + echo "$as_me:20762: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:20579: \"$ac_try\"") >&5 + { (eval echo "$as_me:20764: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:20582: \$? = $ac_status" >&5 + echo "$as_me:20767: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_ncurses_version=`cat $cf_tempfile` @@ -20593,7 +20778,7 @@ fi rm -f $cf_tempfile fi -echo "$as_me:20596: result: $cf_cv_ncurses_version" >&5 +echo "$as_me:20781: result: $cf_cv_ncurses_version" >&5 echo "${ECHO_T}$cf_cv_ncurses_version" >&6 test "$cf_cv_ncurses_version" = no || cat >>confdefs.h <<\EOF @@ -20606,7 +20791,7 @@ cf_nculib_root=ncurses # to link gpm. cf_ncurses_LIBS="" cf_ncurses_SAVE="$LIBS" -echo "$as_me:20609: checking for Gpm_Open in -lgpm" >&5 +echo "$as_me:20794: 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 @@ -20614,7 +20799,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lgpm $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 20617 "configure" +#line 20802 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -20633,16 +20818,16 @@ Gpm_Open (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:20636: \"$ac_link\"") >&5 +if { (eval echo "$as_me:20821: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:20639: \$? = $ac_status" >&5 + echo "$as_me:20824: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:20642: \"$ac_try\"") >&5 + { (eval echo "$as_me:20827: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:20645: \$? = $ac_status" >&5 + echo "$as_me:20830: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_gpm_Gpm_Open=yes else @@ -20653,10 +20838,10 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:20656: result: $ac_cv_lib_gpm_Gpm_Open" >&5 +echo "$as_me:20841: 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:20659: checking for initscr in -lgpm" >&5 + echo "$as_me:20844: 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 @@ -20664,7 +20849,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lgpm $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 20667 "configure" +#line 20852 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -20683,16 +20868,16 @@ initscr (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:20686: \"$ac_link\"") >&5 +if { (eval echo "$as_me:20871: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:20689: \$? = $ac_status" >&5 + echo "$as_me:20874: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:20692: \"$ac_try\"") >&5 + { (eval echo "$as_me:20877: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:20695: \$? = $ac_status" >&5 + echo "$as_me:20880: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_gpm_initscr=yes else @@ -20703,7 +20888,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:20706: result: $ac_cv_lib_gpm_initscr" >&5 +echo "$as_me:20891: 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" @@ -20718,7 +20903,7 @@ freebsd*) # This is only necessary if you are linking against an obsolete # version of ncurses (but it should do no harm, since it's static). if test "$cf_nculib_root" = ncurses ; then - echo "$as_me:20721: checking for tgoto in -lmytinfo" >&5 + echo "$as_me:20906: 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 @@ -20726,7 +20911,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lmytinfo $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 20729 "configure" +#line 20914 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -20745,16 +20930,16 @@ tgoto (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:20748: \"$ac_link\"") >&5 +if { (eval echo "$as_me:20933: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:20751: \$? = $ac_status" >&5 + echo "$as_me:20936: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:20754: \"$ac_try\"") >&5 + { (eval echo "$as_me:20939: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:20757: \$? = $ac_status" >&5 + echo "$as_me:20942: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_mytinfo_tgoto=yes else @@ -20765,7 +20950,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:20768: result: $ac_cv_lib_mytinfo_tgoto" >&5 +echo "$as_me:20953: 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" @@ -20814,13 +20999,13 @@ else eval 'cf_cv_have_lib_'$cf_nculib_root'=no' cf_libdir="" - echo "$as_me:20817: checking for initscr" >&5 + echo "$as_me:21002: 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 20823 "configure" +#line 21008 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char initscr (); below. */ @@ -20851,16 +21036,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:20854: \"$ac_link\"") >&5 +if { (eval echo "$as_me:21039: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:20857: \$? = $ac_status" >&5 + echo "$as_me:21042: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:20860: \"$ac_try\"") >&5 + { (eval echo "$as_me:21045: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:20863: \$? = $ac_status" >&5 + echo "$as_me:21048: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_initscr=yes else @@ -20870,18 +21055,18 @@ ac_cv_func_initscr=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:20873: result: $ac_cv_func_initscr" >&5 +echo "$as_me:21058: 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:20880: checking for initscr in -l$cf_nculib_root" >&5 + echo "$as_me:21065: 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 20884 "configure" +#line 21069 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> int @@ -20893,25 +21078,25 @@ initscr() } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:20896: \"$ac_link\"") >&5 +if { (eval echo "$as_me:21081: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:20899: \$? = $ac_status" >&5 + echo "$as_me:21084: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:20902: \"$ac_try\"") >&5 + { (eval echo "$as_me:21087: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:20905: \$? = $ac_status" >&5 + echo "$as_me:21090: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:20907: result: yes" >&5 + echo "$as_me:21092: 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:20914: result: no" >&5 +echo "$as_me:21099: result: no" >&5 echo "${ECHO_T}no" >&6 cf_search= @@ -21001,11 +21186,11 @@ cf_search="$cf_library_path_list $cf_search" for cf_libdir in $cf_search do - echo "$as_me:21004: checking for -l$cf_nculib_root in $cf_libdir" >&5 + echo "$as_me:21189: 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 21008 "configure" +#line 21193 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> int @@ -21017,25 +21202,25 @@ initscr() } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:21020: \"$ac_link\"") >&5 +if { (eval echo "$as_me:21205: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:21023: \$? = $ac_status" >&5 + echo "$as_me:21208: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:21026: \"$ac_try\"") >&5 + { (eval echo "$as_me:21211: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:21029: \$? = $ac_status" >&5 + echo "$as_me:21214: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:21031: result: yes" >&5 + echo "$as_me:21216: 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:21038: result: no" >&5 +echo "$as_me:21223: result: no" >&5 echo "${ECHO_T}no" >&6 LIBS="$cf_save_LIBS" fi @@ -21050,7 +21235,7 @@ fi eval 'cf_found_library=$cf_cv_have_lib_'$cf_nculib_root if test $cf_found_library = no ; then - { { echo "$as_me:21053: error: Cannot link $cf_nculib_root library" >&5 + { { echo "$as_me:21238: error: Cannot link $cf_nculib_root library" >&5 echo "$as_me: error: Cannot link $cf_nculib_root library" >&2;} { (exit 1); exit 1; }; } fi @@ -21058,7 +21243,7 @@ fi fi if test -n "$cf_ncurses_LIBS" ; then - echo "$as_me:21061: checking if we can link $cf_nculib_root without $cf_ncurses_LIBS" >&5 + echo "$as_me:21246: 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 @@ -21068,7 +21253,7 @@ echo $ECHO_N "checking if we can link $cf_nculib_root without $cf_ncurses_LIBS.. fi done cat >conftest.$ac_ext <<_ACEOF -#line 21071 "configure" +#line 21256 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> int @@ -21080,23 +21265,23 @@ initscr(); mousemask(0,0); tgoto((char *)0, 0, 0); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:21083: \"$ac_link\"") >&5 +if { (eval echo "$as_me:21268: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:21086: \$? = $ac_status" >&5 + echo "$as_me:21271: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:21089: \"$ac_try\"") >&5 + { (eval echo "$as_me:21274: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:21092: \$? = $ac_status" >&5 + echo "$as_me:21277: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:21094: result: yes" >&5 + echo "$as_me:21279: result: yes" >&5 echo "${ECHO_T}yes" >&6 else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 -echo "$as_me:21099: result: no" >&5 +echo "$as_me:21284: result: no" >&5 echo "${ECHO_T}no" >&6 LIBS="$cf_ncurses_SAVE" fi @@ -21114,7 +21299,7 @@ fi ;; ncursesw) -echo "$as_me:21117: checking for multibyte character support" >&5 +echo "$as_me:21302: 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 @@ -21122,7 +21307,7 @@ else cf_save_LIBS="$LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 21125 "configure" +#line 21310 "configure" #include "confdefs.h" #include <stdlib.h> @@ -21135,16 +21320,16 @@ putwc(0,0); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:21138: \"$ac_link\"") >&5 +if { (eval echo "$as_me:21323: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:21141: \$? = $ac_status" >&5 + echo "$as_me:21326: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:21144: \"$ac_try\"") >&5 + { (eval echo "$as_me:21329: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:21147: \$? = $ac_status" >&5 + echo "$as_me:21332: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_utf8_lib=yes else @@ -21156,12 +21341,12 @@ cat conftest.$ac_ext >&5 cf_cv_header_path_utf8= cf_cv_library_path_utf8= -echo "${as_me:-configure}:21159: testing Starting FIND_LINKAGE(utf8,) ..." 1>&5 +echo "${as_me:-configure}:21344: testing Starting FIND_LINKAGE(utf8,) ..." 1>&5 cf_save_LIBS="$LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 21164 "configure" +#line 21349 "configure" #include "confdefs.h" #include <libutf8.h> @@ -21174,16 +21359,16 @@ putwc(0,0); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:21177: \"$ac_link\"") >&5 +if { (eval echo "$as_me:21362: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:21180: \$? = $ac_status" >&5 + echo "$as_me:21365: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:21183: \"$ac_try\"") >&5 + { (eval echo "$as_me:21368: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:21186: \$? = $ac_status" >&5 + echo "$as_me:21371: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_find_linkage_utf8=yes @@ -21197,7 +21382,7 @@ cat conftest.$ac_ext >&5 LIBS="-lutf8 $cf_save_LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 21200 "configure" +#line 21385 "configure" #include "confdefs.h" #include <libutf8.h> @@ -21210,16 +21395,16 @@ putwc(0,0); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:21213: \"$ac_link\"") >&5 +if { (eval echo "$as_me:21398: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:21216: \$? = $ac_status" >&5 + echo "$as_me:21401: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:21219: \"$ac_try\"") >&5 + { (eval echo "$as_me:21404: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:21222: \$? = $ac_status" >&5 + echo "$as_me:21407: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_find_linkage_utf8=yes @@ -21236,9 +21421,9 @@ cat conftest.$ac_ext >&5 test -n "$verbose" && echo " find linkage for utf8 library" 1>&6 -echo "${as_me:-configure}:21239: testing find linkage for utf8 library ..." 1>&5 +echo "${as_me:-configure}:21424: testing find linkage for utf8 library ..." 1>&5 -echo "${as_me:-configure}:21241: testing Searching for headers in FIND_LINKAGE(utf8,) ..." 1>&5 +echo "${as_me:-configure}:21426: testing Searching for headers in FIND_LINKAGE(utf8,) ..." 1>&5 cf_save_CPPFLAGS="$CPPFLAGS" cf_test_CPPFLAGS="$CPPFLAGS" @@ -21351,11 +21536,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}:21354: testing ... testing $cf_cv_header_path_utf8 ..." 1>&5 +echo "${as_me:-configure}:21539: 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 21358 "configure" +#line 21543 "configure" #include "confdefs.h" #include <libutf8.h> @@ -21368,21 +21553,21 @@ putwc(0,0); } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:21371: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:21556: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:21374: \$? = $ac_status" >&5 + echo "$as_me:21559: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:21377: \"$ac_try\"") >&5 + { (eval echo "$as_me:21562: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:21380: \$? = $ac_status" >&5 + echo "$as_me:21565: \$? = $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}:21385: testing ... found utf8 headers in $cf_cv_header_path_utf8 ..." 1>&5 +echo "${as_me:-configure}:21570: testing ... found utf8 headers in $cf_cv_header_path_utf8 ..." 1>&5 cf_cv_find_linkage_utf8=maybe cf_test_CPPFLAGS="$CPPFLAGS" @@ -21400,7 +21585,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "$cf_cv_find_linkage_utf8" = maybe ; then -echo "${as_me:-configure}:21403: testing Searching for utf8 library in FIND_LINKAGE(utf8,) ..." 1>&5 +echo "${as_me:-configure}:21588: testing Searching for utf8 library in FIND_LINKAGE(utf8,) ..." 1>&5 cf_save_LIBS="$LIBS" cf_save_LDFLAGS="$LDFLAGS" @@ -21497,13 +21682,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}:21500: testing ... testing $cf_cv_library_path_utf8 ..." 1>&5 +echo "${as_me:-configure}:21685: 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 21506 "configure" +#line 21691 "configure" #include "confdefs.h" #include <libutf8.h> @@ -21516,21 +21701,21 @@ putwc(0,0); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:21519: \"$ac_link\"") >&5 +if { (eval echo "$as_me:21704: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:21522: \$? = $ac_status" >&5 + echo "$as_me:21707: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:21525: \"$ac_try\"") >&5 + { (eval echo "$as_me:21710: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:21528: \$? = $ac_status" >&5 + echo "$as_me:21713: \$? = $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}:21533: testing ... found utf8 library in $cf_cv_library_path_utf8 ..." 1>&5 +echo "${as_me:-configure}:21718: testing ... found utf8 library in $cf_cv_library_path_utf8 ..." 1>&5 cf_cv_find_linkage_utf8=yes cf_cv_library_file_utf8="-lutf8" @@ -21572,7 +21757,7 @@ fi fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:21575: result: $cf_cv_utf8_lib" >&5 +echo "$as_me:21760: 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 @@ -21607,7 +21792,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 21610 "configure" +#line 21795 "configure" #include "confdefs.h" #include <stdio.h> int @@ -21619,16 +21804,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:21622: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:21807: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:21625: \$? = $ac_status" >&5 + echo "$as_me:21810: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:21628: \"$ac_try\"") >&5 + { (eval echo "$as_me:21813: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:21631: \$? = $ac_status" >&5 + echo "$as_me:21816: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -21645,7 +21830,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}:21648: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:21833: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -21679,7 +21864,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}:21682: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:21867: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -21714,7 +21899,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:21717: checking for $ac_word" >&5 +echo "$as_me:21902: 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 @@ -21729,7 +21914,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:21732: found $ac_dir/$ac_word" >&5 +echo "$as_me:21917: found $ac_dir/$ac_word" >&5 break done @@ -21737,10 +21922,10 @@ fi fi NCURSES_CONFIG=$ac_cv_prog_NCURSES_CONFIG if test -n "$NCURSES_CONFIG"; then - echo "$as_me:21740: result: $NCURSES_CONFIG" >&5 + echo "$as_me:21925: result: $NCURSES_CONFIG" >&5 echo "${ECHO_T}$NCURSES_CONFIG" >&6 else - echo "$as_me:21743: result: no" >&5 + echo "$as_me:21928: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -21753,7 +21938,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:21756: checking for $ac_word" >&5 +echo "$as_me:21941: 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 @@ -21768,7 +21953,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:21771: found $ac_dir/$ac_word" >&5 +echo "$as_me:21956: found $ac_dir/$ac_word" >&5 break done @@ -21776,10 +21961,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:21779: result: $ac_ct_NCURSES_CONFIG" >&5 + echo "$as_me:21964: result: $ac_ct_NCURSES_CONFIG" >&5 echo "${ECHO_T}$ac_ct_NCURSES_CONFIG" >&6 else - echo "$as_me:21782: result: no" >&5 + echo "$as_me:21967: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -21812,7 +21997,7 @@ LIBS="$cf_add_libs" # even with config script, some packages use no-override for curses.h -echo "$as_me:21815: checking if we have identified curses headers" >&5 +echo "$as_me:22000: 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 @@ -21826,7 +22011,7 @@ for cf_header in \ curses.h do cat >conftest.$ac_ext <<_ACEOF -#line 21829 "configure" +#line 22014 "configure" #include "confdefs.h" #include <${cf_header}> int @@ -21838,16 +22023,16 @@ initscr(); tgoto("?", 0,0) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:21841: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:22026: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:21844: \$? = $ac_status" >&5 + echo "$as_me:22029: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:21847: \"$ac_try\"") >&5 + { (eval echo "$as_me:22032: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:21850: \$? = $ac_status" >&5 + echo "$as_me:22035: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_ncurses_header=$cf_header; break else @@ -21858,11 +22043,11 @@ rm -f conftest.$ac_objext conftest.$ac_ext done fi -echo "$as_me:21861: result: $cf_cv_ncurses_header" >&5 +echo "$as_me:22046: 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:21865: error: No curses header-files found" >&5 + { { echo "$as_me:22050: error: No curses header-files found" >&5 echo "$as_me: error: No curses header-files found" >&2;} { (exit 1); exit 1; }; } fi @@ -21872,23 +22057,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:21875: checking for $ac_header" >&5 +echo "$as_me:22060: 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 21881 "configure" +#line 22066 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:21885: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:22070: \"$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:21891: \$? = $ac_status" >&5 + echo "$as_me:22076: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -21907,7 +22092,7 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:21910: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:22095: 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 @@ -21960,7 +22145,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 21963 "configure" +#line 22148 "configure" #include "confdefs.h" #include <stdio.h> int @@ -21972,16 +22157,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:21975: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:22160: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:21978: \$? = $ac_status" >&5 + echo "$as_me:22163: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:21981: \"$ac_try\"") >&5 + { (eval echo "$as_me:22166: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:21984: \$? = $ac_status" >&5 + echo "$as_me:22169: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -21998,7 +22183,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}:22001: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:22186: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -22015,7 +22200,7 @@ fi } -echo "$as_me:22018: checking for $cf_ncuhdr_root header in include-path" >&5 +echo "$as_me:22203: 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 @@ -22027,7 +22212,7 @@ else do cat >conftest.$ac_ext <<_ACEOF -#line 22030 "configure" +#line 22215 "configure" #include "confdefs.h" #define _XOPEN_SOURCE_EXTENDED @@ -22059,16 +22244,16 @@ printf("old\n"); } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:22062: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:22247: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:22065: \$? = $ac_status" >&5 + echo "$as_me:22250: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:22068: \"$ac_try\"") >&5 + { (eval echo "$as_me:22253: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:22071: \$? = $ac_status" >&5 + echo "$as_me:22256: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_ncurses_h=$cf_header @@ -22083,14 +22268,14 @@ rm -f conftest.$ac_objext conftest.$ac_ext done fi -echo "$as_me:22086: result: $cf_cv_ncurses_h" >&5 +echo "$as_me:22271: 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:22093: checking for $cf_ncuhdr_root include-path" >&5 +echo "$as_me:22278: 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 @@ -22230,7 +22415,7 @@ if test -n "$cf_incdir" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 22233 "configure" +#line 22418 "configure" #include "confdefs.h" #include <stdio.h> int @@ -22242,16 +22427,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:22245: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:22430: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:22248: \$? = $ac_status" >&5 + echo "$as_me:22433: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:22251: \"$ac_try\"") >&5 + { (eval echo "$as_me:22436: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:22254: \$? = $ac_status" >&5 + echo "$as_me:22439: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -22268,7 +22453,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}:22271: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:22456: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -22289,7 +22474,7 @@ fi do cat >conftest.$ac_ext <<_ACEOF -#line 22292 "configure" +#line 22477 "configure" #include "confdefs.h" #include <$cf_header> @@ -22313,16 +22498,16 @@ printf("old\n"); } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:22316: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:22501: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:22319: \$? = $ac_status" >&5 + echo "$as_me:22504: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:22322: \"$ac_try\"") >&5 + { (eval echo "$as_me:22507: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:22325: \$? = $ac_status" >&5 + echo "$as_me:22510: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_ncurses_h2=$cf_header @@ -22343,12 +22528,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:22346: error: not found" >&5 + test "$cf_cv_ncurses_h2" = no && { { echo "$as_me:22531: error: not found" >&5 echo "$as_me: error: not found" >&2;} { (exit 1); exit 1; }; } fi -echo "$as_me:22351: result: $cf_cv_ncurses_h2" >&5 +echo "$as_me:22536: 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%/[^/]*$%%'` @@ -22381,7 +22566,7 @@ if test -n "$cf_1st_incdir" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 22384 "configure" +#line 22569 "configure" #include "confdefs.h" #include <stdio.h> int @@ -22393,16 +22578,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:22396: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:22581: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:22399: \$? = $ac_status" >&5 + echo "$as_me:22584: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:22402: \"$ac_try\"") >&5 + { (eval echo "$as_me:22587: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:22405: \$? = $ac_status" >&5 + echo "$as_me:22590: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -22419,7 +22604,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}:22422: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:22607: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -22465,7 +22650,7 @@ EOF ;; esac -echo "$as_me:22468: checking for terminfo header" >&5 +echo "$as_me:22653: 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 @@ -22483,7 +22668,7 @@ esac for cf_test in $cf_term_header "ncurses/term.h" "ncursesw/term.h" do cat >conftest.$ac_ext <<_ACEOF -#line 22486 "configure" +#line 22671 "configure" #include "confdefs.h" #include <stdio.h> #include <${cf_cv_ncurses_header:-curses.h}> @@ -22498,16 +22683,16 @@ int x = auto_left_margin } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:22501: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:22686: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:22504: \$? = $ac_status" >&5 + echo "$as_me:22689: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:22507: \"$ac_try\"") >&5 + { (eval echo "$as_me:22692: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:22510: \$? = $ac_status" >&5 + echo "$as_me:22695: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_term_header="$cf_test" @@ -22523,7 +22708,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext done fi -echo "$as_me:22526: result: $cf_cv_term_header" >&5 +echo "$as_me:22711: result: $cf_cv_term_header" >&5 echo "${ECHO_T}$cf_cv_term_header" >&6 # Set definitions to allow ifdef'ing to accommodate subdirectories @@ -22561,7 +22746,7 @@ cat >>confdefs.h <<\EOF #define NCURSES 1 EOF -echo "$as_me:22564: checking for ncurses version" >&5 +echo "$as_me:22749: 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 @@ -22587,10 +22772,10 @@ Autoconf "old" #endif EOF cf_try="$ac_cpp conftest.$ac_ext 2>&5 | grep '^Autoconf ' >conftest.out" - { (eval echo "$as_me:22590: \"$cf_try\"") >&5 + { (eval echo "$as_me:22775: \"$cf_try\"") >&5 (eval $cf_try) 2>&5 ac_status=$? - echo "$as_me:22593: \$? = $ac_status" >&5 + echo "$as_me:22778: \$? = $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%".*%%'` @@ -22600,7 +22785,7 @@ EOF else cat >conftest.$ac_ext <<_ACEOF -#line 22603 "configure" +#line 22788 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> @@ -22625,15 +22810,15 @@ int main() } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:22628: \"$ac_link\"") >&5 +if { (eval echo "$as_me:22813: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:22631: \$? = $ac_status" >&5 + echo "$as_me:22816: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:22633: \"$ac_try\"") >&5 + { (eval echo "$as_me:22818: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:22636: \$? = $ac_status" >&5 + echo "$as_me:22821: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_ncurses_version=`cat $cf_tempfile` @@ -22647,7 +22832,7 @@ fi rm -f $cf_tempfile fi -echo "$as_me:22650: result: $cf_cv_ncurses_version" >&5 +echo "$as_me:22835: result: $cf_cv_ncurses_version" >&5 echo "${ECHO_T}$cf_cv_ncurses_version" >&6 test "$cf_cv_ncurses_version" = no || cat >>confdefs.h <<\EOF @@ -22660,7 +22845,7 @@ cf_nculib_root=ncursesw # to link gpm. cf_ncurses_LIBS="" cf_ncurses_SAVE="$LIBS" -echo "$as_me:22663: checking for Gpm_Open in -lgpm" >&5 +echo "$as_me:22848: 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 @@ -22668,7 +22853,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lgpm $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 22671 "configure" +#line 22856 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -22687,16 +22872,16 @@ Gpm_Open (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:22690: \"$ac_link\"") >&5 +if { (eval echo "$as_me:22875: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:22693: \$? = $ac_status" >&5 + echo "$as_me:22878: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:22696: \"$ac_try\"") >&5 + { (eval echo "$as_me:22881: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:22699: \$? = $ac_status" >&5 + echo "$as_me:22884: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_gpm_Gpm_Open=yes else @@ -22707,10 +22892,10 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:22710: result: $ac_cv_lib_gpm_Gpm_Open" >&5 +echo "$as_me:22895: 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:22713: checking for initscr in -lgpm" >&5 + echo "$as_me:22898: 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 @@ -22718,7 +22903,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lgpm $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 22721 "configure" +#line 22906 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -22737,16 +22922,16 @@ initscr (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:22740: \"$ac_link\"") >&5 +if { (eval echo "$as_me:22925: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:22743: \$? = $ac_status" >&5 + echo "$as_me:22928: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:22746: \"$ac_try\"") >&5 + { (eval echo "$as_me:22931: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:22749: \$? = $ac_status" >&5 + echo "$as_me:22934: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_gpm_initscr=yes else @@ -22757,7 +22942,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:22760: result: $ac_cv_lib_gpm_initscr" >&5 +echo "$as_me:22945: 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" @@ -22772,7 +22957,7 @@ freebsd*) # This is only necessary if you are linking against an obsolete # version of ncurses (but it should do no harm, since it's static). if test "$cf_nculib_root" = ncurses ; then - echo "$as_me:22775: checking for tgoto in -lmytinfo" >&5 + echo "$as_me:22960: 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 @@ -22780,7 +22965,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lmytinfo $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 22783 "configure" +#line 22968 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -22799,16 +22984,16 @@ tgoto (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:22802: \"$ac_link\"") >&5 +if { (eval echo "$as_me:22987: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:22805: \$? = $ac_status" >&5 + echo "$as_me:22990: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:22808: \"$ac_try\"") >&5 + { (eval echo "$as_me:22993: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:22811: \$? = $ac_status" >&5 + echo "$as_me:22996: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_mytinfo_tgoto=yes else @@ -22819,7 +23004,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:22822: result: $ac_cv_lib_mytinfo_tgoto" >&5 +echo "$as_me:23007: 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" @@ -22868,13 +23053,13 @@ else eval 'cf_cv_have_lib_'$cf_nculib_root'=no' cf_libdir="" - echo "$as_me:22871: checking for initscr" >&5 + echo "$as_me:23056: 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 22877 "configure" +#line 23062 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char initscr (); below. */ @@ -22905,16 +23090,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:22908: \"$ac_link\"") >&5 +if { (eval echo "$as_me:23093: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:22911: \$? = $ac_status" >&5 + echo "$as_me:23096: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:22914: \"$ac_try\"") >&5 + { (eval echo "$as_me:23099: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:22917: \$? = $ac_status" >&5 + echo "$as_me:23102: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_initscr=yes else @@ -22924,18 +23109,18 @@ ac_cv_func_initscr=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:22927: result: $ac_cv_func_initscr" >&5 +echo "$as_me:23112: 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:22934: checking for initscr in -l$cf_nculib_root" >&5 + echo "$as_me:23119: 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 22938 "configure" +#line 23123 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> int @@ -22947,25 +23132,25 @@ initscr() } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:22950: \"$ac_link\"") >&5 +if { (eval echo "$as_me:23135: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:22953: \$? = $ac_status" >&5 + echo "$as_me:23138: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:22956: \"$ac_try\"") >&5 + { (eval echo "$as_me:23141: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:22959: \$? = $ac_status" >&5 + echo "$as_me:23144: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:22961: result: yes" >&5 + echo "$as_me:23146: 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:22968: result: no" >&5 +echo "$as_me:23153: result: no" >&5 echo "${ECHO_T}no" >&6 cf_search= @@ -23055,11 +23240,11 @@ cf_search="$cf_library_path_list $cf_search" for cf_libdir in $cf_search do - echo "$as_me:23058: checking for -l$cf_nculib_root in $cf_libdir" >&5 + echo "$as_me:23243: 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 23062 "configure" +#line 23247 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> int @@ -23071,25 +23256,25 @@ initscr() } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:23074: \"$ac_link\"") >&5 +if { (eval echo "$as_me:23259: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:23077: \$? = $ac_status" >&5 + echo "$as_me:23262: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:23080: \"$ac_try\"") >&5 + { (eval echo "$as_me:23265: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23083: \$? = $ac_status" >&5 + echo "$as_me:23268: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:23085: result: yes" >&5 + echo "$as_me:23270: 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:23092: result: no" >&5 +echo "$as_me:23277: result: no" >&5 echo "${ECHO_T}no" >&6 LIBS="$cf_save_LIBS" fi @@ -23104,7 +23289,7 @@ fi eval 'cf_found_library=$cf_cv_have_lib_'$cf_nculib_root if test $cf_found_library = no ; then - { { echo "$as_me:23107: error: Cannot link $cf_nculib_root library" >&5 + { { echo "$as_me:23292: error: Cannot link $cf_nculib_root library" >&5 echo "$as_me: error: Cannot link $cf_nculib_root library" >&2;} { (exit 1); exit 1; }; } fi @@ -23112,7 +23297,7 @@ fi fi if test -n "$cf_ncurses_LIBS" ; then - echo "$as_me:23115: checking if we can link $cf_nculib_root without $cf_ncurses_LIBS" >&5 + echo "$as_me:23300: 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 @@ -23122,7 +23307,7 @@ echo $ECHO_N "checking if we can link $cf_nculib_root without $cf_ncurses_LIBS.. fi done cat >conftest.$ac_ext <<_ACEOF -#line 23125 "configure" +#line 23310 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> int @@ -23134,23 +23319,23 @@ initscr(); mousemask(0,0); tgoto((char *)0, 0, 0); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:23137: \"$ac_link\"") >&5 +if { (eval echo "$as_me:23322: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:23140: \$? = $ac_status" >&5 + echo "$as_me:23325: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:23143: \"$ac_try\"") >&5 + { (eval echo "$as_me:23328: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23146: \$? = $ac_status" >&5 + echo "$as_me:23331: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:23148: result: yes" >&5 + echo "$as_me:23333: result: yes" >&5 echo "${ECHO_T}yes" >&6 else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 -echo "$as_me:23153: result: no" >&5 +echo "$as_me:23338: result: no" >&5 echo "${ECHO_T}no" >&6 LIBS="$cf_ncurses_SAVE" fi @@ -23180,7 +23365,7 @@ pdcurses) ;; slang) -echo "$as_me:23183: checking for slang header file" >&5 +echo "$as_me:23368: 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 @@ -23188,7 +23373,7 @@ else cf_cv_slang_header=no cat >conftest.$ac_ext <<_ACEOF -#line 23191 "configure" +#line 23376 "configure" #include "confdefs.h" #include <slang.h> int @@ -23200,16 +23385,16 @@ printf("%s\n", SLANG_VERSION) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:23203: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:23388: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:23206: \$? = $ac_status" >&5 + echo "$as_me:23391: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:23209: \"$ac_try\"") >&5 + { (eval echo "$as_me:23394: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23212: \$? = $ac_status" >&5 + echo "$as_me:23397: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_slang_header=predefined else @@ -23336,7 +23521,7 @@ cf_search="$cf_search $cf_header_path_list" fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:23339: result: $cf_cv_slang_header" >&5 +echo "$as_me:23524: result: $cf_cv_slang_header" >&5 echo "${ECHO_T}$cf_cv_slang_header" >&6 if test "x$cf_cv_slang_header" != xno @@ -23377,7 +23562,7 @@ if test -n "$cf_incdir" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 23380 "configure" +#line 23565 "configure" #include "confdefs.h" #include <stdio.h> int @@ -23389,16 +23574,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:23392: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:23577: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:23395: \$? = $ac_status" >&5 + echo "$as_me:23580: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:23398: \"$ac_try\"") >&5 + { (eval echo "$as_me:23583: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23401: \$? = $ac_status" >&5 + echo "$as_me:23586: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -23415,7 +23600,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}:23418: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:23603: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -23445,7 +23630,7 @@ else cf_cv_termlib=none cat >conftest.$ac_ext <<_ACEOF -#line 23448 "configure" +#line 23633 "configure" #include "confdefs.h" int @@ -23457,19 +23642,19 @@ char *x=(char*)tgoto("",0,0) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:23460: \"$ac_link\"") >&5 +if { (eval echo "$as_me:23645: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:23463: \$? = $ac_status" >&5 + echo "$as_me:23648: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:23466: \"$ac_try\"") >&5 + { (eval echo "$as_me:23651: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23469: \$? = $ac_status" >&5 + echo "$as_me:23654: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cat >conftest.$ac_ext <<_ACEOF -#line 23472 "configure" +#line 23657 "configure" #include "confdefs.h" int @@ -23481,16 +23666,16 @@ int x=tigetstr("") } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:23484: \"$ac_link\"") >&5 +if { (eval echo "$as_me:23669: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:23487: \$? = $ac_status" >&5 + echo "$as_me:23672: \$? = $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:23675: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23493: \$? = $ac_status" >&5 + echo "$as_me:23678: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_termlib=terminfo else @@ -23501,7 +23686,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}:23504: testing using functions in predefined $cf_cv_termlib LIBS ..." 1>&5 +echo "${as_me:-configure}:23689: testing using functions in predefined $cf_cv_termlib LIBS ..." 1>&5 else echo "$as_me: failed program was:" >&5 @@ -23516,10 +23701,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:23519: checking for $cf_func in -l$cf_lib" >&5 + echo "$as_me:23704: 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 23522 "configure" +#line 23707 "configure" #include "confdefs.h" int @@ -23531,16 +23716,16 @@ int x=$cf_func("") } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:23534: \"$ac_link\"") >&5 +if { (eval echo "$as_me:23719: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:23537: \$? = $ac_status" >&5 + echo "$as_me:23722: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:23540: \"$ac_try\"") >&5 + { (eval echo "$as_me:23725: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23543: \$? = $ac_status" >&5 + echo "$as_me:23728: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_result=yes else @@ -23549,7 +23734,7 @@ cat conftest.$ac_ext >&5 cf_result=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext - echo "$as_me:23552: result: $cf_result" >&5 + echo "$as_me:23737: result: $cf_result" >&5 echo "${ECHO_T}$cf_result" >&6 if test "$cf_result" = yes ; then if test "$cf_func" = tigetstr ; then @@ -23566,7 +23751,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:23569: checking for initscr in -lcurses" >&5 + echo "$as_me:23754: 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 @@ -23574,7 +23759,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lcurses $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 23577 "configure" +#line 23762 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -23593,16 +23778,16 @@ initscr (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:23596: \"$ac_link\"") >&5 +if { (eval echo "$as_me:23781: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:23599: \$? = $ac_status" >&5 + echo "$as_me:23784: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:23602: \"$ac_try\"") >&5 + { (eval echo "$as_me:23787: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23605: \$? = $ac_status" >&5 + echo "$as_me:23790: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_curses_initscr=yes else @@ -23613,7 +23798,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:23616: result: $ac_cv_lib_curses_initscr" >&5 +echo "$as_me:23801: 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 @@ -23635,7 +23820,7 @@ LIBS="$cf_add_libs" fi - echo "$as_me:23638: checking for tgoto in -ltermcap" >&5 + echo "$as_me:23823: 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 @@ -23643,7 +23828,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-ltermcap $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 23646 "configure" +#line 23831 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -23662,16 +23847,16 @@ tgoto (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:23665: \"$ac_link\"") >&5 +if { (eval echo "$as_me:23850: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:23668: \$? = $ac_status" >&5 + echo "$as_me:23853: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:23671: \"$ac_try\"") >&5 + { (eval echo "$as_me:23856: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23674: \$? = $ac_status" >&5 + echo "$as_me:23859: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_termcap_tgoto=yes else @@ -23682,7 +23867,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:23685: result: $ac_cv_lib_termcap_tgoto" >&5 +echo "$as_me:23870: 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 @@ -23709,20 +23894,20 @@ fi fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext if test "$cf_cv_termlib" = none; then - { echo "$as_me:23712: WARNING: Cannot find -ltermlib, -lcurses, or -ltermcap" >&5 + { echo "$as_me:23897: 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:23719: checking for acos" >&5 +echo "$as_me:23904: 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 23725 "configure" +#line 23910 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char acos (); below. */ @@ -23753,16 +23938,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:23756: \"$ac_link\"") >&5 +if { (eval echo "$as_me:23941: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:23759: \$? = $ac_status" >&5 + echo "$as_me:23944: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:23762: \"$ac_try\"") >&5 + { (eval echo "$as_me:23947: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23765: \$? = $ac_status" >&5 + echo "$as_me:23950: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_acos=yes else @@ -23772,13 +23957,13 @@ ac_cv_func_acos=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:23775: result: $ac_cv_func_acos" >&5 +echo "$as_me:23960: 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:23781: checking for acos in -lm" >&5 +echo "$as_me:23966: 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 @@ -23786,7 +23971,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lm $LIBS $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 23789 "configure" +#line 23974 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -23805,16 +23990,16 @@ acos (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:23808: \"$ac_link\"") >&5 +if { (eval echo "$as_me:23993: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:23811: \$? = $ac_status" >&5 + echo "$as_me:23996: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:23814: \"$ac_try\"") >&5 + { (eval echo "$as_me:23999: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23817: \$? = $ac_status" >&5 + echo "$as_me:24002: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_m_acos=yes else @@ -23825,7 +24010,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:23828: result: $ac_cv_lib_m_acos" >&5 +echo "$as_me:24013: 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 @@ -23851,13 +24036,13 @@ os2*) eval 'cf_cv_have_lib_'video'=no' cf_libdir="" - echo "$as_me:23854: checking for v_init" >&5 + echo "$as_me:24039: 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 23860 "configure" +#line 24045 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char v_init (); below. */ @@ -23888,16 +24073,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:23891: \"$ac_link\"") >&5 +if { (eval echo "$as_me:24076: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:23894: \$? = $ac_status" >&5 + echo "$as_me:24079: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:23897: \"$ac_try\"") >&5 + { (eval echo "$as_me:24082: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23900: \$? = $ac_status" >&5 + echo "$as_me:24085: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_v_init=yes else @@ -23907,18 +24092,18 @@ ac_cv_func_v_init=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:23910: result: $ac_cv_func_v_init" >&5 +echo "$as_me:24095: 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:23917: checking for v_init in -lvideo" >&5 + echo "$as_me:24102: 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 23921 "configure" +#line 24106 "configure" #include "confdefs.h" #include <sys/video.h> int @@ -23930,25 +24115,25 @@ v_init() } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:23933: \"$ac_link\"") >&5 +if { (eval echo "$as_me:24118: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:23936: \$? = $ac_status" >&5 + echo "$as_me:24121: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:23939: \"$ac_try\"") >&5 + { (eval echo "$as_me:24124: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23942: \$? = $ac_status" >&5 + echo "$as_me:24127: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:23944: result: yes" >&5 + echo "$as_me:24129: 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:23951: result: no" >&5 +echo "$as_me:24136: result: no" >&5 echo "${ECHO_T}no" >&6 cf_search= @@ -24038,11 +24223,11 @@ cf_search="$cf_library_path_list $cf_search" for cf_libdir in $cf_search do - echo "$as_me:24041: checking for -lvideo in $cf_libdir" >&5 + echo "$as_me:24226: 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 24045 "configure" +#line 24230 "configure" #include "confdefs.h" #include <sys/video.h> int @@ -24054,25 +24239,25 @@ v_init() } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:24057: \"$ac_link\"") >&5 +if { (eval echo "$as_me:24242: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:24060: \$? = $ac_status" >&5 + echo "$as_me:24245: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:24063: \"$ac_try\"") >&5 + { (eval echo "$as_me:24248: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:24066: \$? = $ac_status" >&5 + echo "$as_me:24251: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:24068: result: yes" >&5 + echo "$as_me:24253: 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:24075: result: no" >&5 +echo "$as_me:24260: result: no" >&5 echo "${ECHO_T}no" >&6 LIBS="$cf_save_LIBS" fi @@ -24087,7 +24272,7 @@ fi eval 'cf_found_library=$cf_cv_have_lib_'video if test $cf_found_library = no ; then - { { echo "$as_me:24090: error: Cannot link video library" >&5 + { { echo "$as_me:24275: error: Cannot link video library" >&5 echo "$as_me: error: Cannot link video library" >&2;} { (exit 1); exit 1; }; } fi @@ -24097,13 +24282,13 @@ esac eval 'cf_cv_have_lib_'slang'=no' cf_libdir="" - echo "$as_me:24100: checking for SLtt_get_screen_size" >&5 + echo "$as_me:24285: 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 24106 "configure" +#line 24291 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char SLtt_get_screen_size (); below. */ @@ -24134,16 +24319,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:24137: \"$ac_link\"") >&5 +if { (eval echo "$as_me:24322: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:24140: \$? = $ac_status" >&5 + echo "$as_me:24325: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:24143: \"$ac_try\"") >&5 + { (eval echo "$as_me:24328: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:24146: \$? = $ac_status" >&5 + echo "$as_me:24331: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_SLtt_get_screen_size=yes else @@ -24153,18 +24338,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:24156: result: $ac_cv_func_SLtt_get_screen_size" >&5 +echo "$as_me:24341: 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:24163: checking for SLtt_get_screen_size in -lslang" >&5 + echo "$as_me:24348: 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 24167 "configure" +#line 24352 "configure" #include "confdefs.h" #include <slang.h> int @@ -24176,25 +24361,25 @@ SLtt_get_screen_size() } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:24179: \"$ac_link\"") >&5 +if { (eval echo "$as_me:24364: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:24182: \$? = $ac_status" >&5 + echo "$as_me:24367: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:24185: \"$ac_try\"") >&5 + { (eval echo "$as_me:24370: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:24188: \$? = $ac_status" >&5 + echo "$as_me:24373: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:24190: result: yes" >&5 + echo "$as_me:24375: 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:24197: result: no" >&5 +echo "$as_me:24382: result: no" >&5 echo "${ECHO_T}no" >&6 cf_search= @@ -24284,11 +24469,11 @@ cf_search="$cf_library_path_list $cf_search" for cf_libdir in $cf_search do - echo "$as_me:24287: checking for -lslang in $cf_libdir" >&5 + echo "$as_me:24472: 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 24291 "configure" +#line 24476 "configure" #include "confdefs.h" #include <slang.h> int @@ -24300,25 +24485,25 @@ SLtt_get_screen_size() } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:24303: \"$ac_link\"") >&5 +if { (eval echo "$as_me:24488: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:24306: \$? = $ac_status" >&5 + echo "$as_me:24491: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:24309: \"$ac_try\"") >&5 + { (eval echo "$as_me:24494: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:24312: \$? = $ac_status" >&5 + echo "$as_me:24497: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:24314: result: yes" >&5 + echo "$as_me:24499: 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:24321: result: no" >&5 +echo "$as_me:24506: result: no" >&5 echo "${ECHO_T}no" >&6 LIBS="$cf_save_LIBS" fi @@ -24333,13 +24518,13 @@ fi eval 'cf_found_library=$cf_cv_have_lib_'slang if test $cf_found_library = no ; then - { { echo "$as_me:24336: error: Cannot link slang library" >&5 + { { echo "$as_me:24521: 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:24342: checking if we can link slang without termcap" >&5 +echo "$as_me:24527: 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%^.%%'` @@ -24348,7 +24533,7 @@ else fi LIBS=`echo ".$cf_slang_LIBS3" | sed -e "s%$cf_exclude%%" -e 's%^.%%'` cat >conftest.$ac_ext <<_ACEOF -#line 24351 "configure" +#line 24536 "configure" #include "confdefs.h" #include <slang.h> int @@ -24360,16 +24545,16 @@ SLtt_get_screen_size() } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:24363: \"$ac_link\"") >&5 +if { (eval echo "$as_me:24548: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:24366: \$? = $ac_status" >&5 + echo "$as_me:24551: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:24369: \"$ac_try\"") >&5 + { (eval echo "$as_me:24554: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:24372: \$? = $ac_status" >&5 + echo "$as_me:24557: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_result=yes else @@ -24378,13 +24563,13 @@ cat conftest.$ac_ext >&5 cf_result=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext -echo "$as_me:24381: result: $cf_result" >&5 +echo "$as_me:24566: result: $cf_result" >&5 echo "${ECHO_T}$cf_result" >&6 test $cf_result = no && LIBS="$cf_slang_LIBS3" else -echo "$as_me:24387: checking for slang2 header file" >&5 +echo "$as_me:24572: 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 @@ -24392,7 +24577,7 @@ else cf_cv_slang2_header=no cat >conftest.$ac_ext <<_ACEOF -#line 24395 "configure" +#line 24580 "configure" #include "confdefs.h" #include <slang.h> int @@ -24404,16 +24589,16 @@ printf("%s\n", SLANG_VERSION) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:24407: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:24592: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:24410: \$? = $ac_status" >&5 + echo "$as_me:24595: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:24413: \"$ac_try\"") >&5 + { (eval echo "$as_me:24598: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:24416: \$? = $ac_status" >&5 + echo "$as_me:24601: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_slang2_header=predefined else @@ -24540,7 +24725,7 @@ cf_search="$cf_search $cf_header_path_list" fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:24543: result: $cf_cv_slang2_header" >&5 +echo "$as_me:24728: result: $cf_cv_slang2_header" >&5 echo "${ECHO_T}$cf_cv_slang2_header" >&6 if test "x$cf_cv_slang2_header" != xno @@ -24581,7 +24766,7 @@ if test -n "$cf_incdir" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 24584 "configure" +#line 24769 "configure" #include "confdefs.h" #include <stdio.h> int @@ -24593,16 +24778,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:24596: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:24781: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:24599: \$? = $ac_status" >&5 + echo "$as_me:24784: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:24602: \"$ac_try\"") >&5 + { (eval echo "$as_me:24787: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:24605: \$? = $ac_status" >&5 + echo "$as_me:24790: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -24619,7 +24804,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}:24622: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:24807: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -24649,7 +24834,7 @@ else cf_cv_termlib=none cat >conftest.$ac_ext <<_ACEOF -#line 24652 "configure" +#line 24837 "configure" #include "confdefs.h" int @@ -24661,19 +24846,19 @@ char *x=(char*)tgoto("",0,0) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:24664: \"$ac_link\"") >&5 +if { (eval echo "$as_me:24849: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:24667: \$? = $ac_status" >&5 + echo "$as_me:24852: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:24670: \"$ac_try\"") >&5 + { (eval echo "$as_me:24855: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:24673: \$? = $ac_status" >&5 + echo "$as_me:24858: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cat >conftest.$ac_ext <<_ACEOF -#line 24676 "configure" +#line 24861 "configure" #include "confdefs.h" int @@ -24685,16 +24870,16 @@ int x=tigetstr("") } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:24688: \"$ac_link\"") >&5 +if { (eval echo "$as_me:24873: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:24691: \$? = $ac_status" >&5 + echo "$as_me:24876: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:24694: \"$ac_try\"") >&5 + { (eval echo "$as_me:24879: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:24697: \$? = $ac_status" >&5 + echo "$as_me:24882: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_termlib=terminfo else @@ -24705,7 +24890,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}:24708: testing using functions in predefined $cf_cv_termlib LIBS ..." 1>&5 +echo "${as_me:-configure}:24893: testing using functions in predefined $cf_cv_termlib LIBS ..." 1>&5 else echo "$as_me: failed program was:" >&5 @@ -24720,10 +24905,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:24723: checking for $cf_func in -l$cf_lib" >&5 + echo "$as_me:24908: 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 24726 "configure" +#line 24911 "configure" #include "confdefs.h" int @@ -24735,16 +24920,16 @@ int x=$cf_func("") } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:24738: \"$ac_link\"") >&5 +if { (eval echo "$as_me:24923: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:24741: \$? = $ac_status" >&5 + echo "$as_me:24926: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:24744: \"$ac_try\"") >&5 + { (eval echo "$as_me:24929: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:24747: \$? = $ac_status" >&5 + echo "$as_me:24932: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_result=yes else @@ -24753,7 +24938,7 @@ cat conftest.$ac_ext >&5 cf_result=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext - echo "$as_me:24756: result: $cf_result" >&5 + echo "$as_me:24941: result: $cf_result" >&5 echo "${ECHO_T}$cf_result" >&6 if test "$cf_result" = yes ; then if test "$cf_func" = tigetstr ; then @@ -24770,7 +24955,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:24773: checking for initscr in -lcurses" >&5 + echo "$as_me:24958: 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 @@ -24778,7 +24963,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lcurses $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 24781 "configure" +#line 24966 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -24797,16 +24982,16 @@ initscr (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:24800: \"$ac_link\"") >&5 +if { (eval echo "$as_me:24985: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:24803: \$? = $ac_status" >&5 + echo "$as_me:24988: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:24806: \"$ac_try\"") >&5 + { (eval echo "$as_me:24991: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:24809: \$? = $ac_status" >&5 + echo "$as_me:24994: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_curses_initscr=yes else @@ -24817,7 +25002,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:24820: result: $ac_cv_lib_curses_initscr" >&5 +echo "$as_me:25005: 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 @@ -24839,7 +25024,7 @@ LIBS="$cf_add_libs" fi - echo "$as_me:24842: checking for tgoto in -ltermcap" >&5 + echo "$as_me:25027: 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 @@ -24847,7 +25032,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-ltermcap $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 24850 "configure" +#line 25035 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -24866,16 +25051,16 @@ tgoto (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:24869: \"$ac_link\"") >&5 +if { (eval echo "$as_me:25054: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:24872: \$? = $ac_status" >&5 + echo "$as_me:25057: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:24875: \"$ac_try\"") >&5 + { (eval echo "$as_me:25060: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:24878: \$? = $ac_status" >&5 + echo "$as_me:25063: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_termcap_tgoto=yes else @@ -24886,7 +25071,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:24889: result: $ac_cv_lib_termcap_tgoto" >&5 +echo "$as_me:25074: 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 @@ -24913,20 +25098,20 @@ fi fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext if test "$cf_cv_termlib" = none; then - { echo "$as_me:24916: WARNING: Cannot find -ltermlib, -lcurses, or -ltermcap" >&5 + { echo "$as_me:25101: 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:24923: checking for acos" >&5 +echo "$as_me:25108: 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 24929 "configure" +#line 25114 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char acos (); below. */ @@ -24957,16 +25142,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:24960: \"$ac_link\"") >&5 +if { (eval echo "$as_me:25145: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:24963: \$? = $ac_status" >&5 + echo "$as_me:25148: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:24966: \"$ac_try\"") >&5 + { (eval echo "$as_me:25151: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:24969: \$? = $ac_status" >&5 + echo "$as_me:25154: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_acos=yes else @@ -24976,13 +25161,13 @@ ac_cv_func_acos=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:24979: result: $ac_cv_func_acos" >&5 +echo "$as_me:25164: 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:24985: checking for acos in -lm" >&5 +echo "$as_me:25170: 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 @@ -24990,7 +25175,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lm $LIBS $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 24993 "configure" +#line 25178 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -25009,16 +25194,16 @@ acos (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:25012: \"$ac_link\"") >&5 +if { (eval echo "$as_me:25197: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:25015: \$? = $ac_status" >&5 + echo "$as_me:25200: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:25018: \"$ac_try\"") >&5 + { (eval echo "$as_me:25203: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25021: \$? = $ac_status" >&5 + echo "$as_me:25206: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_m_acos=yes else @@ -25029,7 +25214,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:25032: result: $ac_cv_lib_m_acos" >&5 +echo "$as_me:25217: 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 @@ -25055,13 +25240,13 @@ os2*) eval 'cf_cv_have_lib_'video'=no' cf_libdir="" - echo "$as_me:25058: checking for v_init" >&5 + echo "$as_me:25243: 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 25064 "configure" +#line 25249 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char v_init (); below. */ @@ -25092,16 +25277,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:25095: \"$ac_link\"") >&5 +if { (eval echo "$as_me:25280: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:25098: \$? = $ac_status" >&5 + echo "$as_me:25283: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:25101: \"$ac_try\"") >&5 + { (eval echo "$as_me:25286: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25104: \$? = $ac_status" >&5 + echo "$as_me:25289: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_v_init=yes else @@ -25111,18 +25296,18 @@ ac_cv_func_v_init=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:25114: result: $ac_cv_func_v_init" >&5 +echo "$as_me:25299: 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:25121: checking for v_init in -lvideo" >&5 + echo "$as_me:25306: 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 25125 "configure" +#line 25310 "configure" #include "confdefs.h" #include <sys/video.h> int @@ -25134,25 +25319,25 @@ v_init() } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:25137: \"$ac_link\"") >&5 +if { (eval echo "$as_me:25322: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:25140: \$? = $ac_status" >&5 + echo "$as_me:25325: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:25143: \"$ac_try\"") >&5 + { (eval echo "$as_me:25328: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25146: \$? = $ac_status" >&5 + echo "$as_me:25331: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:25148: result: yes" >&5 + echo "$as_me:25333: 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:25155: result: no" >&5 +echo "$as_me:25340: result: no" >&5 echo "${ECHO_T}no" >&6 cf_search= @@ -25242,11 +25427,11 @@ cf_search="$cf_library_path_list $cf_search" for cf_libdir in $cf_search do - echo "$as_me:25245: checking for -lvideo in $cf_libdir" >&5 + echo "$as_me:25430: 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 25249 "configure" +#line 25434 "configure" #include "confdefs.h" #include <sys/video.h> int @@ -25258,25 +25443,25 @@ v_init() } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:25261: \"$ac_link\"") >&5 +if { (eval echo "$as_me:25446: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:25264: \$? = $ac_status" >&5 + echo "$as_me:25449: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:25267: \"$ac_try\"") >&5 + { (eval echo "$as_me:25452: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25270: \$? = $ac_status" >&5 + echo "$as_me:25455: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:25272: result: yes" >&5 + echo "$as_me:25457: 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:25279: result: no" >&5 +echo "$as_me:25464: result: no" >&5 echo "${ECHO_T}no" >&6 LIBS="$cf_save_LIBS" fi @@ -25291,7 +25476,7 @@ fi eval 'cf_found_library=$cf_cv_have_lib_'video if test $cf_found_library = no ; then - { { echo "$as_me:25294: error: Cannot link video library" >&5 + { { echo "$as_me:25479: error: Cannot link video library" >&5 echo "$as_me: error: Cannot link video library" >&2;} { (exit 1); exit 1; }; } fi @@ -25301,13 +25486,13 @@ esac eval 'cf_cv_have_lib_'slang2'=no' cf_libdir="" - echo "$as_me:25304: checking for SLtt_get_screen_size" >&5 + echo "$as_me:25489: 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 25310 "configure" +#line 25495 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char SLtt_get_screen_size (); below. */ @@ -25338,16 +25523,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:25341: \"$ac_link\"") >&5 +if { (eval echo "$as_me:25526: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:25344: \$? = $ac_status" >&5 + echo "$as_me:25529: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:25347: \"$ac_try\"") >&5 + { (eval echo "$as_me:25532: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25350: \$? = $ac_status" >&5 + echo "$as_me:25535: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_SLtt_get_screen_size=yes else @@ -25357,18 +25542,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:25360: result: $ac_cv_func_SLtt_get_screen_size" >&5 +echo "$as_me:25545: 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:25367: checking for SLtt_get_screen_size in -lslang2" >&5 + echo "$as_me:25552: 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 25371 "configure" +#line 25556 "configure" #include "confdefs.h" #include <slang.h> int @@ -25380,25 +25565,25 @@ SLtt_get_screen_size() } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:25383: \"$ac_link\"") >&5 +if { (eval echo "$as_me:25568: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:25386: \$? = $ac_status" >&5 + echo "$as_me:25571: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:25389: \"$ac_try\"") >&5 + { (eval echo "$as_me:25574: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25392: \$? = $ac_status" >&5 + echo "$as_me:25577: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:25394: result: yes" >&5 + echo "$as_me:25579: 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:25401: result: no" >&5 +echo "$as_me:25586: result: no" >&5 echo "${ECHO_T}no" >&6 cf_search= @@ -25488,11 +25673,11 @@ cf_search="$cf_library_path_list $cf_search" for cf_libdir in $cf_search do - echo "$as_me:25491: checking for -lslang2 in $cf_libdir" >&5 + echo "$as_me:25676: 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 25495 "configure" +#line 25680 "configure" #include "confdefs.h" #include <slang.h> int @@ -25504,25 +25689,25 @@ SLtt_get_screen_size() } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:25507: \"$ac_link\"") >&5 +if { (eval echo "$as_me:25692: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:25510: \$? = $ac_status" >&5 + echo "$as_me:25695: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:25513: \"$ac_try\"") >&5 + { (eval echo "$as_me:25698: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25516: \$? = $ac_status" >&5 + echo "$as_me:25701: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:25518: result: yes" >&5 + echo "$as_me:25703: 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:25525: result: no" >&5 +echo "$as_me:25710: result: no" >&5 echo "${ECHO_T}no" >&6 LIBS="$cf_save_LIBS" fi @@ -25537,13 +25722,13 @@ fi eval 'cf_found_library=$cf_cv_have_lib_'slang2 if test $cf_found_library = no ; then - { { echo "$as_me:25540: error: Cannot link slang2 library" >&5 + { { echo "$as_me:25725: 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:25546: checking if we can link slang2 without termcap" >&5 +echo "$as_me:25731: 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%^.%%'` @@ -25552,7 +25737,7 @@ else fi LIBS=`echo ".$cf_slang_LIBS3" | sed -e "s%$cf_exclude%%" -e 's%^.%%'` cat >conftest.$ac_ext <<_ACEOF -#line 25555 "configure" +#line 25740 "configure" #include "confdefs.h" #include <slang.h> int @@ -25564,16 +25749,16 @@ SLtt_get_screen_size() } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:25567: \"$ac_link\"") >&5 +if { (eval echo "$as_me:25752: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:25570: \$? = $ac_status" >&5 + echo "$as_me:25755: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:25573: \"$ac_try\"") >&5 + { (eval echo "$as_me:25758: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25576: \$? = $ac_status" >&5 + echo "$as_me:25761: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_result=yes else @@ -25582,12 +25767,12 @@ cat conftest.$ac_ext >&5 cf_result=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext -echo "$as_me:25585: result: $cf_result" >&5 +echo "$as_me:25770: result: $cf_result" >&5 echo "${ECHO_T}$cf_result" >&6 test $cf_result = no && LIBS="$cf_slang_LIBS3" else - { { echo "$as_me:25590: error: cannot find slang headers" >&5 + { { echo "$as_me:25775: error: cannot find slang headers" >&5 echo "$as_me: error: cannot find slang headers" >&2;} { (exit 1); exit 1; }; } fi @@ -25595,14 +25780,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:25598: checking if we must define UTF8" >&5 +echo "$as_me:25783: 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 25605 "configure" +#line 25790 "configure" #include "confdefs.h" #include <slang.h> int @@ -25614,16 +25799,16 @@ SLtt_get_screen_size() } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:25617: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:25802: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:25620: \$? = $ac_status" >&5 + echo "$as_me:25805: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:25623: \"$ac_try\"") >&5 + { (eval echo "$as_me:25808: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25626: \$? = $ac_status" >&5 + echo "$as_me:25811: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_slang_utf8=no else @@ -25631,7 +25816,7 @@ else cat conftest.$ac_ext >&5 cat >conftest.$ac_ext <<_ACEOF -#line 25634 "configure" +#line 25819 "configure" #include "confdefs.h" #define UTF8 @@ -25645,16 +25830,16 @@ SLtt_get_screen_size() } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:25648: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:25833: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:25651: \$? = $ac_status" >&5 + echo "$as_me:25836: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:25654: \"$ac_try\"") >&5 + { (eval echo "$as_me:25839: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25657: \$? = $ac_status" >&5 + echo "$as_me:25842: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_slang_utf8=yes else @@ -25667,7 +25852,7 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:25670: result: $cf_cv_slang_utf8" >&5 +echo "$as_me:25855: result: $cf_cv_slang_utf8" >&5 echo "${ECHO_T}$cf_cv_slang_utf8" >&6 if test "$cf_cv_slang_utf8" = yes ; then @@ -25678,14 +25863,14 @@ EOF fi -echo "$as_me:25681: checking if we must tell slang this is UNIX" >&5 +echo "$as_me:25866: 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 25688 "configure" +#line 25873 "configure" #include "confdefs.h" #include <slang.h> int @@ -25704,16 +25889,16 @@ SLang_TT_Baud_Rate = 1 } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:25707: \"$ac_link\"") >&5 +if { (eval echo "$as_me:25892: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:25710: \$? = $ac_status" >&5 + echo "$as_me:25895: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:25713: \"$ac_try\"") >&5 + { (eval echo "$as_me:25898: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25716: \$? = $ac_status" >&5 + echo "$as_me:25901: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_slang_unix=yes else @@ -25724,20 +25909,20 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:25727: result: $cf_cv_slang_unix" >&5 +echo "$as_me:25912: 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:25734: checking for SLsmg_Color_Type" >&5 + echo "$as_me:25919: 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 25740 "configure" +#line 25925 "configure" #include "confdefs.h" #include <slang.h> @@ -25753,16 +25938,16 @@ if (sizeof (SLsmg_Color_Type)) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:25756: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:25941: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:25759: \$? = $ac_status" >&5 + echo "$as_me:25944: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:25762: \"$ac_try\"") >&5 + { (eval echo "$as_me:25947: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25765: \$? = $ac_status" >&5 + echo "$as_me:25950: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_type_SLsmg_Color_Type=yes else @@ -25772,7 +25957,7 @@ ac_cv_type_SLsmg_Color_Type=no fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:25775: result: $ac_cv_type_SLsmg_Color_Type" >&5 +echo "$as_me:25960: 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 @@ -25788,13 +25973,13 @@ EOF fi - echo "$as_me:25791: checking for SLtt_Char_Type" >&5 + echo "$as_me:25976: 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 25797 "configure" +#line 25982 "configure" #include "confdefs.h" #include <slang.h> @@ -25810,16 +25995,16 @@ if (sizeof (SLtt_Char_Type)) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:25813: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:25998: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:25816: \$? = $ac_status" >&5 + echo "$as_me:26001: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:25819: \"$ac_try\"") >&5 + { (eval echo "$as_me:26004: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25822: \$? = $ac_status" >&5 + echo "$as_me:26007: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_type_SLtt_Char_Type=yes else @@ -25829,7 +26014,7 @@ ac_cv_type_SLtt_Char_Type=no fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:25832: result: $ac_cv_type_SLtt_Char_Type" >&5 +echo "$as_me:26017: 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 @@ -25849,14 +26034,14 @@ fi ;; esac -echo "$as_me:25852: checking for chtype typedef" >&5 +echo "$as_me:26037: 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 25859 "configure" +#line 26044 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> int @@ -25868,16 +26053,16 @@ chtype foo } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:25871: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:26056: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:25874: \$? = $ac_status" >&5 + echo "$as_me:26059: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:25877: \"$ac_try\"") >&5 + { (eval echo "$as_me:26062: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25880: \$? = $ac_status" >&5 + echo "$as_me:26065: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_chtype_decl=yes else @@ -25887,7 +26072,7 @@ cf_cv_chtype_decl=no fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:25890: result: $cf_cv_chtype_decl" >&5 +echo "$as_me:26075: result: $cf_cv_chtype_decl" >&5 echo "${ECHO_T}$cf_cv_chtype_decl" >&6 if test $cf_cv_chtype_decl = yes ; then @@ -25895,14 +26080,14 @@ cat >>confdefs.h <<\EOF #define HAVE_TYPE_CHTYPE 1 EOF - echo "$as_me:25898: checking if chtype is scalar or struct" >&5 + echo "$as_me:26083: 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 25905 "configure" +#line 26090 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> int @@ -25914,16 +26099,16 @@ chtype foo; long x = foo } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:25917: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:26102: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:25920: \$? = $ac_status" >&5 + echo "$as_me:26105: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:25923: \"$ac_try\"") >&5 + { (eval echo "$as_me:26108: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25926: \$? = $ac_status" >&5 + echo "$as_me:26111: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_chtype_type=scalar else @@ -25933,7 +26118,7 @@ cf_cv_chtype_type=struct fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:25936: result: $cf_cv_chtype_type" >&5 +echo "$as_me:26121: result: $cf_cv_chtype_type" >&5 echo "${ECHO_T}$cf_cv_chtype_type" >&6 if test $cf_cv_chtype_type = scalar ; then @@ -25944,7 +26129,7 @@ EOF fi fi -echo "$as_me:25947: checking if you want the wide-curses features" >&5 +echo "$as_me:26132: 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. @@ -25961,10 +26146,10 @@ else use_wide_curses=$cf_wide_curses fi; -echo "$as_me:25964: result: $use_wide_curses" >&5 +echo "$as_me:26149: result: $use_wide_curses" >&5 echo "${ECHO_T}$use_wide_curses" >&6 -echo "$as_me:25967: checking if color-style code should be used" >&5 +echo "$as_me:26152: 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. @@ -25984,7 +26169,7 @@ fi; case $use_color_style in no) - echo "$as_me:25987: result: no" >&5 + echo "$as_me:26172: result: no" >&5 echo "${ECHO_T}no" >&6 INSTALL_LSS= ;; @@ -25994,10 +26179,10 @@ cat >>confdefs.h <<\EOF #define USE_COLOR_STYLE 1 EOF - echo "$as_me:25997: result: yes" >&5 + echo "$as_me:26182: result: yes" >&5 echo "${ECHO_T}yes" >&6 - echo "$as_me:26000: checking for location of style-sheet file" >&5 + echo "$as_me:26185: 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. @@ -26033,7 +26218,7 @@ case ".$withval" in #(vi withval=`echo $withval | sed -e s%NONE%$cf_path_syntax%` ;; *) - { { echo "$as_me:26036: error: expected a pathname, not \"$withval\"" >&5 + { { echo "$as_me:26221: error: expected a pathname, not \"$withval\"" >&5 echo "$as_me: error: expected a pathname, not \"$withval\"" >&2;} { (exit 1); exit 1; }; } ;; @@ -26042,7 +26227,7 @@ esac fi eval LYNX_LSS_FILE="$withval" - echo "$as_me:26045: result: $LYNX_LSS_FILE" >&5 + echo "$as_me:26230: result: $LYNX_LSS_FILE" >&5 echo "${ECHO_T}$LYNX_LSS_FILE" >&6 test "$LYNX_LSS_FILE" = no && LYNX_LSS_FILE= @@ -26055,7 +26240,7 @@ EOF ;; esac -echo "$as_me:26058: checking for the default configuration-file" >&5 +echo "$as_me:26243: 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. @@ -26091,7 +26276,7 @@ case ".$withval" in #(vi withval=`echo $withval | sed -e s%NONE%$cf_path_syntax%` ;; *) - { { echo "$as_me:26094: error: expected a pathname, not \"$withval\"" >&5 + { { echo "$as_me:26279: error: expected a pathname, not \"$withval\"" >&5 echo "$as_me: error: expected a pathname, not \"$withval\"" >&2;} { (exit 1); exit 1; }; } ;; @@ -26100,7 +26285,7 @@ esac fi eval LYNX_CFG_FILE="$withval" -echo "$as_me:26103: result: $LYNX_CFG_FILE" >&5 +echo "$as_me:26288: result: $LYNX_CFG_FILE" >&5 echo "${ECHO_T}$LYNX_CFG_FILE" >&6 test "$LYNX_CFG_FILE" = no && LYNX_CFG_FILE= @@ -26109,7 +26294,7 @@ cat >>confdefs.h <<EOF #define LYNX_CFG_FILE "$LYNX_CFG_FILE" EOF -echo "$as_me:26112: checking for the default configuration-path" >&5 +echo "$as_me:26297: 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. @@ -26145,7 +26330,7 @@ case ".$withval" in #(vi withval=`echo $withval | sed -e s%NONE%$cf_path_syntax%` ;; *) - { { echo "$as_me:26148: error: expected a pathname, not \"$withval\"" >&5 + { { echo "$as_me:26333: error: expected a pathname, not \"$withval\"" >&5 echo "$as_me: error: expected a pathname, not \"$withval\"" >&2;} { (exit 1); exit 1; }; } ;; @@ -26154,7 +26339,7 @@ esac fi eval LYNX_CFG_PATH="$withval" -echo "$as_me:26157: result: $LYNX_CFG_PATH" >&5 +echo "$as_me:26342: result: $LYNX_CFG_PATH" >&5 echo "${ECHO_T}$LYNX_CFG_PATH" >&6 test -z "$LYNX_CFG_PATH" && `echo "$LYNX_CFG_FILE" | sed -e 's%/[^/]*$%%'` @@ -26164,7 +26349,7 @@ cat >>confdefs.h <<EOF #define LYNX_CFG_PATH "$LYNX_CFG_PATH" EOF -echo "$as_me:26167: checking if htmlized lynx.cfg should be built" >&5 +echo "$as_me:26352: 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. @@ -26181,7 +26366,7 @@ else use_htmlized_cfg=no fi; -echo "$as_me:26184: result: $use_htmlized_cfg" >&5 +echo "$as_me:26369: result: $use_htmlized_cfg" >&5 echo "${ECHO_T}$use_htmlized_cfg" >&6 LYNXCFG_MAKE='' @@ -26189,7 +26374,7 @@ if test $use_htmlized_cfg = no ; then LYNXCFG_MAKE='#' fi -echo "$as_me:26192: checking if local doc directory should be linked to help page" >&5 +echo "$as_me:26377: 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. @@ -26206,7 +26391,7 @@ else use_local_docs=no fi; -echo "$as_me:26209: result: $use_local_docs" >&5 +echo "$as_me:26394: result: $use_local_docs" >&5 echo "${ECHO_T}$use_local_docs" >&6 LYNXDOC_MAKE='' @@ -26214,7 +26399,7 @@ if test $use_local_docs = no ; then LYNXDOC_MAKE='#' fi -echo "$as_me:26217: checking for MIME library directory" >&5 +echo "$as_me:26402: 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. @@ -26250,7 +26435,7 @@ case ".$withval" in #(vi withval=`echo $withval | sed -e s%NONE%$cf_path_syntax%` ;; *) - { { echo "$as_me:26253: error: expected a pathname, not \"$withval\"" >&5 + { { echo "$as_me:26438: error: expected a pathname, not \"$withval\"" >&5 echo "$as_me: error: expected a pathname, not \"$withval\"" >&2;} { (exit 1); exit 1; }; } ;; @@ -26259,7 +26444,7 @@ esac fi eval MIME_LIBDIR="$withval" -echo "$as_me:26262: result: $MIME_LIBDIR" >&5 +echo "$as_me:26447: result: $MIME_LIBDIR" >&5 echo "${ECHO_T}$MIME_LIBDIR" >&6 MIME_LIBDIR=`echo "$MIME_LIBDIR" | sed -e 's,/$,,' -e 's,$,/,'` @@ -26267,7 +26452,7 @@ cat >>confdefs.h <<EOF #define MIME_LIBDIR "$MIME_LIBDIR" EOF -echo "$as_me:26270: checking if locale-charset selection logic should be used" >&5 +echo "$as_me:26455: 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. @@ -26284,7 +26469,7 @@ else use_locale_charset=yes fi; -echo "$as_me:26287: result: $use_locale_charset" >&5 +echo "$as_me:26472: result: $use_locale_charset" >&5 echo "${ECHO_T}$use_locale_charset" >&6 test $use_locale_charset != no && cat >>confdefs.h <<\EOF @@ -26293,7 +26478,7 @@ EOF CHARSET_DEFS= -echo "$as_me:26296: checking if you want only a few charsets" >&5 +echo "$as_me:26481: 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. @@ -26305,7 +26490,7 @@ else fi; if test -n "$cf_charsets" ; then - echo "$as_me:26308: result: yes" >&5 + echo "$as_me:26493: result: yes" >&5 echo "${ECHO_T}yes" >&6 cat >>confdefs.h <<\EOF @@ -26319,7 +26504,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}:26322: testing using minimal list of charsets: $cf_min_charsets ..." 1>&5 +echo "${as_me:-configure}:26507: 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'` @@ -26346,28 +26531,28 @@ echo "${as_me:-configure}:26322: testing using minimal list of charsets: $cf_min then test -n "$verbose" && echo " found $cf_charset" 1>&6 -echo "${as_me:-configure}:26349: testing found $cf_charset ..." 1>&5 +echo "${as_me:-configure}:26534: 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}:26355: testing not found $cf_charset ..." 1>&5 +echo "${as_me:-configure}:26540: testing not found $cf_charset ..." 1>&5 fi done else - echo "$as_me:26360: result: no" >&5 + echo "$as_me:26545: result: no" >&5 echo "${ECHO_T}no" >&6 fi -echo "$as_me:26364: checking for ANSI C header files" >&5 +echo "$as_me:26549: 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 26370 "configure" +#line 26555 "configure" #include "confdefs.h" #include <stdlib.h> #include <stdarg.h> @@ -26375,13 +26560,13 @@ else #include <float.h> _ACEOF -if { (eval echo "$as_me:26378: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:26563: \"$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:26384: \$? = $ac_status" >&5 + echo "$as_me:26569: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -26403,7 +26588,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 26406 "configure" +#line 26591 "configure" #include "confdefs.h" #include <string.h> @@ -26421,7 +26606,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 26424 "configure" +#line 26609 "configure" #include "confdefs.h" #include <stdlib.h> @@ -26442,7 +26627,7 @@ if test $ac_cv_header_stdc = yes; then : else cat >conftest.$ac_ext <<_ACEOF -#line 26445 "configure" +#line 26630 "configure" #include "confdefs.h" #include <ctype.h> #if ((' ' & 0x0FF) == 0x020) @@ -26468,15 +26653,15 @@ main () } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:26471: \"$ac_link\"") >&5 +if { (eval echo "$as_me:26656: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:26474: \$? = $ac_status" >&5 + echo "$as_me:26659: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:26476: \"$ac_try\"") >&5 + { (eval echo "$as_me:26661: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:26479: \$? = $ac_status" >&5 + echo "$as_me:26664: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -26489,7 +26674,7 @@ rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext fi fi fi -echo "$as_me:26492: result: $ac_cv_header_stdc" >&5 +echo "$as_me:26677: result: $ac_cv_header_stdc" >&5 echo "${ECHO_T}$ac_cv_header_stdc" >&6 if test $ac_cv_header_stdc = yes; then @@ -26499,13 +26684,13 @@ EOF fi -echo "$as_me:26502: checking whether time.h and sys/time.h may both be included" >&5 +echo "$as_me:26687: 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 26508 "configure" +#line 26693 "configure" #include "confdefs.h" #include <sys/types.h> #include <sys/time.h> @@ -26521,16 +26706,16 @@ return 0; } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:26524: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:26709: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:26527: \$? = $ac_status" >&5 + echo "$as_me:26712: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:26530: \"$ac_try\"") >&5 + { (eval echo "$as_me:26715: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:26533: \$? = $ac_status" >&5 + echo "$as_me:26718: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_header_time=yes else @@ -26540,7 +26725,7 @@ ac_cv_header_time=no fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:26543: result: $ac_cv_header_time" >&5 +echo "$as_me:26728: result: $ac_cv_header_time" >&5 echo "${ECHO_T}$ac_cv_header_time" >&6 if test $ac_cv_header_time = yes; then @@ -26553,13 +26738,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:26556: checking for $ac_hdr that defines DIR" >&5 +echo "$as_me:26741: 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 26562 "configure" +#line 26747 "configure" #include "confdefs.h" #include <sys/types.h> #include <$ac_hdr> @@ -26574,16 +26759,16 @@ return 0; } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:26577: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:26762: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:26580: \$? = $ac_status" >&5 + echo "$as_me:26765: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:26583: \"$ac_try\"") >&5 + { (eval echo "$as_me:26768: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:26586: \$? = $ac_status" >&5 + echo "$as_me:26771: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_Header=yes" else @@ -26593,7 +26778,7 @@ eval "$as_ac_Header=no" fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:26596: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:26781: 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 @@ -26606,7 +26791,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:26609: checking for opendir in -ldir" >&5 + echo "$as_me:26794: 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 @@ -26614,7 +26799,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-ldir $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 26617 "configure" +#line 26802 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -26633,16 +26818,16 @@ opendir (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:26636: \"$ac_link\"") >&5 +if { (eval echo "$as_me:26821: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:26639: \$? = $ac_status" >&5 + echo "$as_me:26824: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:26642: \"$ac_try\"") >&5 + { (eval echo "$as_me:26827: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:26645: \$? = $ac_status" >&5 + echo "$as_me:26830: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_dir_opendir=yes else @@ -26653,14 +26838,14 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:26656: result: $ac_cv_lib_dir_opendir" >&5 +echo "$as_me:26841: 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:26663: checking for opendir in -lx" >&5 + echo "$as_me:26848: 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 @@ -26668,7 +26853,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lx $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 26671 "configure" +#line 26856 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -26687,16 +26872,16 @@ opendir (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:26690: \"$ac_link\"") >&5 +if { (eval echo "$as_me:26875: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:26693: \$? = $ac_status" >&5 + echo "$as_me:26878: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:26696: \"$ac_try\"") >&5 + { (eval echo "$as_me:26881: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:26699: \$? = $ac_status" >&5 + echo "$as_me:26884: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_x_opendir=yes else @@ -26707,7 +26892,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:26710: result: $ac_cv_lib_x_opendir" >&5 +echo "$as_me:26895: 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" @@ -26735,23 +26920,23 @@ for ac_header in \ do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` -echo "$as_me:26738: checking for $ac_header" >&5 +echo "$as_me:26923: 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 26744 "configure" +#line 26929 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:26748: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:26933: \"$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:26754: \$? = $ac_status" >&5 + echo "$as_me:26939: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -26770,7 +26955,7 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:26773: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:26958: 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 @@ -26780,14 +26965,14 @@ EOF fi done -echo "$as_me:26783: checking termio.h and termios.h" >&5 +echo "$as_me:26968: 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 26790 "configure" +#line 26975 "configure" #include "confdefs.h" #if HAVE_TERMIO_H @@ -26805,16 +26990,16 @@ putchar (0x0a) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:26808: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:26993: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:26811: \$? = $ac_status" >&5 + echo "$as_me:26996: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:26814: \"$ac_try\"") >&5 + { (eval echo "$as_me:26999: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:26817: \$? = $ac_status" >&5 + echo "$as_me:27002: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_termio_and_termios=yes else @@ -26825,21 +27010,21 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:26828: result: $cf_cv_termio_and_termios" >&5 +echo "$as_me:27013: 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:26835: checking for sigaction and structs" >&5 +echo "$as_me:27020: 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 26842 "configure" +#line 27027 "configure" #include "confdefs.h" #include <sys/types.h> @@ -26859,16 +27044,16 @@ struct sigaction act; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:26862: \"$ac_link\"") >&5 +if { (eval echo "$as_me:27047: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:26865: \$? = $ac_status" >&5 + echo "$as_me:27050: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:26868: \"$ac_try\"") >&5 + { (eval echo "$as_me:27053: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:26871: \$? = $ac_status" >&5 + echo "$as_me:27056: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_func_sigaction=yes else @@ -26879,7 +27064,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:26882: result: $cf_cv_func_sigaction" >&5 +echo "$as_me:27067: result: $cf_cv_func_sigaction" >&5 echo "${ECHO_T}$cf_cv_func_sigaction" >&6 test "$cf_cv_func_sigaction" = yes && cat >>confdefs.h <<\EOF @@ -26889,23 +27074,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:26892: checking for $ac_header" >&5 +echo "$as_me:27077: 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 26898 "configure" +#line 27083 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:26902: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:27087: \"$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:26908: \$? = $ac_status" >&5 + echo "$as_me:27093: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -26924,7 +27109,7 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:26927: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:27112: 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 @@ -26945,23 +27130,23 @@ else for ac_header in wait.h do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` -echo "$as_me:26948: checking for $ac_header" >&5 +echo "$as_me:27133: 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 26954 "configure" +#line 27139 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:26958: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:27143: \"$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:26964: \$? = $ac_status" >&5 + echo "$as_me:27149: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -26980,7 +27165,7 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:26983: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:27168: 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 @@ -26993,23 +27178,23 @@ done for ac_header in waitstatus.h do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` -echo "$as_me:26996: checking for $ac_header" >&5 +echo "$as_me:27181: 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 27002 "configure" +#line 27187 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:27006: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:27191: \"$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:27012: \$? = $ac_status" >&5 + echo "$as_me:27197: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -27028,7 +27213,7 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:27031: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:27216: 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 @@ -27050,14 +27235,14 @@ cf_wait_headers="$cf_wait_headers fi fi -echo "$as_me:27053: checking for union wait" >&5 +echo "$as_me:27238: 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 27060 "configure" +#line 27245 "configure" #include "confdefs.h" $cf_wait_headers int @@ -27073,16 +27258,16 @@ int x; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:27076: \"$ac_link\"") >&5 +if { (eval echo "$as_me:27261: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:27079: \$? = $ac_status" >&5 + echo "$as_me:27264: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:27082: \"$ac_try\"") >&5 + { (eval echo "$as_me:27267: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27085: \$? = $ac_status" >&5 + echo "$as_me:27270: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_type_unionwait=no echo compiles ok w/o union wait 1>&5 @@ -27092,7 +27277,7 @@ else cat conftest.$ac_ext >&5 cat >conftest.$ac_ext <<_ACEOF -#line 27095 "configure" +#line 27280 "configure" #include "confdefs.h" $cf_wait_headers int @@ -27112,16 +27297,16 @@ union wait x; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:27115: \"$ac_link\"") >&5 +if { (eval echo "$as_me:27300: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:27118: \$? = $ac_status" >&5 + echo "$as_me:27303: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:27121: \"$ac_try\"") >&5 + { (eval echo "$as_me:27306: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27124: \$? = $ac_status" >&5 + echo "$as_me:27309: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_type_unionwait=yes echo compiles ok with union wait and possibly macros too 1>&5 @@ -27136,7 +27321,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:27139: result: $cf_cv_type_unionwait" >&5 +echo "$as_me:27324: result: $cf_cv_type_unionwait" >&5 echo "${ECHO_T}$cf_cv_type_unionwait" >&6 test $cf_cv_type_unionwait = yes && cat >>confdefs.h <<\EOF @@ -27145,14 +27330,14 @@ EOF if test $cf_cv_type_unionwait = yes; then - echo "$as_me:27148: checking if union wait can be used as wait-arg" >&5 + echo "$as_me:27333: 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 27155 "configure" +#line 27340 "configure" #include "confdefs.h" $cf_wait_headers int @@ -27164,16 +27349,16 @@ union wait x; wait(&x) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:27167: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:27352: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:27170: \$? = $ac_status" >&5 + echo "$as_me:27355: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:27173: \"$ac_try\"") >&5 + { (eval echo "$as_me:27358: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27176: \$? = $ac_status" >&5 + echo "$as_me:27361: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_arg_union_wait=yes else @@ -27185,21 +27370,21 @@ rm -f conftest.$ac_objext conftest.$ac_ext fi - echo "$as_me:27188: result: $cf_cv_arg_union_wait" >&5 + echo "$as_me:27373: 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:27195: checking if union wait can be used as waitpid-arg" >&5 + echo "$as_me:27380: 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 27202 "configure" +#line 27387 "configure" #include "confdefs.h" $cf_wait_headers int @@ -27211,16 +27396,16 @@ union wait x; waitpid(0, &x, 0) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:27214: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:27399: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:27217: \$? = $ac_status" >&5 + echo "$as_me:27402: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:27220: \"$ac_try\"") >&5 + { (eval echo "$as_me:27405: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27223: \$? = $ac_status" >&5 + echo "$as_me:27408: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_arg_union_waitpid=yes else @@ -27232,7 +27417,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext fi - echo "$as_me:27235: result: $cf_cv_arg_union_waitpid" >&5 + echo "$as_me:27420: 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 @@ -27241,13 +27426,13 @@ EOF fi -echo "$as_me:27244: checking for uid_t in sys/types.h" >&5 +echo "$as_me:27429: 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 27250 "configure" +#line 27435 "configure" #include "confdefs.h" #include <sys/types.h> @@ -27261,7 +27446,7 @@ fi rm -rf conftest* fi -echo "$as_me:27264: result: $ac_cv_type_uid_t" >&5 +echo "$as_me:27449: 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 @@ -27275,7 +27460,7 @@ EOF fi -echo "$as_me:27278: checking type of array argument to getgroups" >&5 +echo "$as_me:27463: 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 @@ -27284,7 +27469,7 @@ else ac_cv_type_getgroups=cross else cat >conftest.$ac_ext <<_ACEOF -#line 27287 "configure" +#line 27472 "configure" #include "confdefs.h" /* Thanks to Mike Rendell for this test. */ #include <sys/types.h> @@ -27310,15 +27495,15 @@ main () } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:27313: \"$ac_link\"") >&5 +if { (eval echo "$as_me:27498: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:27316: \$? = $ac_status" >&5 + echo "$as_me:27501: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:27318: \"$ac_try\"") >&5 + { (eval echo "$as_me:27503: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27321: \$? = $ac_status" >&5 + echo "$as_me:27506: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_type_getgroups=gid_t else @@ -27331,7 +27516,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 27334 "configure" +#line 27519 "configure" #include "confdefs.h" #include <unistd.h> @@ -27346,20 +27531,20 @@ rm -rf conftest* fi fi -echo "$as_me:27349: result: $ac_cv_type_getgroups" >&5 +echo "$as_me:27534: 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:27356: checking for off_t" >&5 +echo "$as_me:27541: 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 27362 "configure" +#line 27547 "configure" #include "confdefs.h" $ac_includes_default int @@ -27374,16 +27559,16 @@ if (sizeof (off_t)) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:27377: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:27562: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:27380: \$? = $ac_status" >&5 + echo "$as_me:27565: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:27383: \"$ac_try\"") >&5 + { (eval echo "$as_me:27568: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27386: \$? = $ac_status" >&5 + echo "$as_me:27571: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_type_off_t=yes else @@ -27393,7 +27578,7 @@ ac_cv_type_off_t=no fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:27396: result: $ac_cv_type_off_t" >&5 +echo "$as_me:27581: 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 : @@ -27405,13 +27590,13 @@ EOF fi -echo "$as_me:27408: checking for pid_t" >&5 +echo "$as_me:27593: 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 27414 "configure" +#line 27599 "configure" #include "confdefs.h" $ac_includes_default int @@ -27426,16 +27611,16 @@ if (sizeof (pid_t)) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:27429: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:27614: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:27432: \$? = $ac_status" >&5 + echo "$as_me:27617: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:27435: \"$ac_try\"") >&5 + { (eval echo "$as_me:27620: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27438: \$? = $ac_status" >&5 + echo "$as_me:27623: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_type_pid_t=yes else @@ -27445,7 +27630,7 @@ ac_cv_type_pid_t=no fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:27448: result: $ac_cv_type_pid_t" >&5 +echo "$as_me:27633: 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 : @@ -27457,13 +27642,13 @@ EOF fi -echo "$as_me:27460: checking for uid_t in sys/types.h" >&5 +echo "$as_me:27645: 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 27466 "configure" +#line 27651 "configure" #include "confdefs.h" #include <sys/types.h> @@ -27477,7 +27662,7 @@ fi rm -rf conftest* fi -echo "$as_me:27480: result: $ac_cv_type_uid_t" >&5 +echo "$as_me:27665: 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 @@ -27491,13 +27676,13 @@ EOF fi -echo "$as_me:27494: checking for mode_t" >&5 +echo "$as_me:27679: 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 27500 "configure" +#line 27685 "configure" #include "confdefs.h" $ac_includes_default int @@ -27512,16 +27697,16 @@ if (sizeof (mode_t)) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:27515: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:27700: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:27518: \$? = $ac_status" >&5 + echo "$as_me:27703: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:27521: \"$ac_try\"") >&5 + { (eval echo "$as_me:27706: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27524: \$? = $ac_status" >&5 + echo "$as_me:27709: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_type_mode_t=yes else @@ -27531,7 +27716,7 @@ ac_cv_type_mode_t=no fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:27534: result: $ac_cv_type_mode_t" >&5 +echo "$as_me:27719: 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 : @@ -27543,13 +27728,13 @@ EOF fi - echo "$as_me:27546: checking for ssize_t" >&5 + echo "$as_me:27731: 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 27552 "configure" +#line 27737 "configure" #include "confdefs.h" $ac_includes_default int @@ -27564,16 +27749,16 @@ if (sizeof (ssize_t)) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:27567: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:27752: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:27570: \$? = $ac_status" >&5 + echo "$as_me:27755: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:27573: \"$ac_try\"") >&5 + { (eval echo "$as_me:27758: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27576: \$? = $ac_status" >&5 + echo "$as_me:27761: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_type_ssize_t=yes else @@ -27583,7 +27768,7 @@ ac_cv_type_ssize_t=no fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:27586: result: $ac_cv_type_ssize_t" >&5 +echo "$as_me:27771: 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 @@ -27599,13 +27784,13 @@ EOF fi - echo "$as_me:27602: checking for socklen_t" >&5 + echo "$as_me:27787: 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 27608 "configure" +#line 27793 "configure" #include "confdefs.h" #include <sys/types.h> @@ -27623,16 +27808,16 @@ if (sizeof (socklen_t)) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:27626: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:27811: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:27629: \$? = $ac_status" >&5 + echo "$as_me:27814: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:27632: \"$ac_try\"") >&5 + { (eval echo "$as_me:27817: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27635: \$? = $ac_status" >&5 + echo "$as_me:27820: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_type_socklen_t=yes else @@ -27642,7 +27827,7 @@ ac_cv_type_socklen_t=no fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:27645: result: $ac_cv_type_socklen_t" >&5 +echo "$as_me:27830: 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 @@ -27658,7 +27843,7 @@ EOF fi -echo "$as_me:27661: checking for long long type" >&5 +echo "$as_me:27846: 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 @@ -27689,7 +27874,7 @@ _CFEOF rm -f conftest* fi -echo "$as_me:27692: result: $cf_cv_type_long_long" >&5 +echo "$as_me:27877: 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 @@ -27700,14 +27885,14 @@ EOF fi -echo "$as_me:27703: checking for tm.tm_gmtoff" >&5 +echo "$as_me:27888: 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 27710 "configure" +#line 27895 "configure" #include "confdefs.h" #ifdef TIME_WITH_SYS_TIME @@ -27732,16 +27917,16 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:27735: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:27920: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:27738: \$? = $ac_status" >&5 + echo "$as_me:27923: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:27741: \"$ac_try\"") >&5 + { (eval echo "$as_me:27926: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27744: \$? = $ac_status" >&5 + echo "$as_me:27929: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_tm_gmtoff=yes else @@ -27752,20 +27937,20 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:27755: result: $cf_cv_tm_gmtoff" >&5 +echo "$as_me:27940: 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:27762: checking for int" >&5 +echo "$as_me:27947: 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 27768 "configure" +#line 27953 "configure" #include "confdefs.h" $ac_includes_default int @@ -27780,16 +27965,16 @@ if (sizeof (int)) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:27783: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:27968: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:27786: \$? = $ac_status" >&5 + echo "$as_me:27971: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:27789: \"$ac_try\"") >&5 + { (eval echo "$as_me:27974: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27792: \$? = $ac_status" >&5 + echo "$as_me:27977: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_type_int=yes else @@ -27799,10 +27984,10 @@ ac_cv_type_int=no fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:27802: result: $ac_cv_type_int" >&5 +echo "$as_me:27987: result: $ac_cv_type_int" >&5 echo "${ECHO_T}$ac_cv_type_int" >&6 -echo "$as_me:27805: checking size of int" >&5 +echo "$as_me:27990: 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 @@ -27811,7 +27996,7 @@ else if test "$cross_compiling" = yes; then # Depending upon the size, compute the lo and hi bounds. cat >conftest.$ac_ext <<_ACEOF -#line 27814 "configure" +#line 27999 "configure" #include "confdefs.h" $ac_includes_default int @@ -27823,21 +28008,21 @@ int _array_ [1 - 2 * !((sizeof (int)) >= 0)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:27826: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:28011: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:27829: \$? = $ac_status" >&5 + echo "$as_me:28014: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:27832: \"$ac_try\"") >&5 + { (eval echo "$as_me:28017: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27835: \$? = $ac_status" >&5 + echo "$as_me:28020: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_lo=0 ac_mid=0 while :; do cat >conftest.$ac_ext <<_ACEOF -#line 27840 "configure" +#line 28025 "configure" #include "confdefs.h" $ac_includes_default int @@ -27849,16 +28034,16 @@ int _array_ [1 - 2 * !((sizeof (int)) <= $ac_mid)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:27852: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:28037: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:27855: \$? = $ac_status" >&5 + echo "$as_me:28040: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:27858: \"$ac_try\"") >&5 + { (eval echo "$as_me:28043: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27861: \$? = $ac_status" >&5 + echo "$as_me:28046: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_hi=$ac_mid; break else @@ -27874,7 +28059,7 @@ cat conftest.$ac_ext >&5 ac_hi=-1 ac_mid=-1 while :; do cat >conftest.$ac_ext <<_ACEOF -#line 27877 "configure" +#line 28062 "configure" #include "confdefs.h" $ac_includes_default int @@ -27886,16 +28071,16 @@ int _array_ [1 - 2 * !((sizeof (int)) >= $ac_mid)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:27889: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:28074: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:27892: \$? = $ac_status" >&5 + echo "$as_me:28077: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:27895: \"$ac_try\"") >&5 + { (eval echo "$as_me:28080: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27898: \$? = $ac_status" >&5 + echo "$as_me:28083: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_lo=$ac_mid; break else @@ -27911,7 +28096,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 27914 "configure" +#line 28099 "configure" #include "confdefs.h" $ac_includes_default int @@ -27923,16 +28108,16 @@ int _array_ [1 - 2 * !((sizeof (int)) <= $ac_mid)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:27926: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:28111: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:27929: \$? = $ac_status" >&5 + echo "$as_me:28114: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:27932: \"$ac_try\"") >&5 + { (eval echo "$as_me:28117: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27935: \$? = $ac_status" >&5 + echo "$as_me:28120: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_hi=$ac_mid else @@ -27945,12 +28130,12 @@ done ac_cv_sizeof_int=$ac_lo else if test "$cross_compiling" = yes; then - { { echo "$as_me:27948: error: cannot run test program while cross compiling" >&5 + { { echo "$as_me:28133: 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 27953 "configure" +#line 28138 "configure" #include "confdefs.h" $ac_includes_default int @@ -27966,15 +28151,15 @@ fclose (f); } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:27969: \"$ac_link\"") >&5 +if { (eval echo "$as_me:28154: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:27972: \$? = $ac_status" >&5 + echo "$as_me:28157: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:27974: \"$ac_try\"") >&5 + { (eval echo "$as_me:28159: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27977: \$? = $ac_status" >&5 + echo "$as_me:28162: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_sizeof_int=`cat conftest.val` else @@ -27990,7 +28175,7 @@ else ac_cv_sizeof_int=0 fi fi -echo "$as_me:27993: result: $ac_cv_sizeof_int" >&5 +echo "$as_me:28178: 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 @@ -27998,23 +28183,23 @@ EOF if test "${ac_cv_type_int:+set}" = set; then if test "${ac_cv_sizeof_int:+set}" != set; then - { echo "$as_me:28001: WARNING: using 4 for sizeof int" >&5 + { echo "$as_me:28186: 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:28005: WARNING: sizeof int not found, using 4" >&5 + { echo "$as_me:28190: 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:28011: checking for long" >&5 +echo "$as_me:28196: 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 28017 "configure" +#line 28202 "configure" #include "confdefs.h" $ac_includes_default int @@ -28029,16 +28214,16 @@ if (sizeof (long)) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:28032: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:28217: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:28035: \$? = $ac_status" >&5 + echo "$as_me:28220: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:28038: \"$ac_try\"") >&5 + { (eval echo "$as_me:28223: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28041: \$? = $ac_status" >&5 + echo "$as_me:28226: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_type_long=yes else @@ -28048,10 +28233,10 @@ ac_cv_type_long=no fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:28051: result: $ac_cv_type_long" >&5 +echo "$as_me:28236: result: $ac_cv_type_long" >&5 echo "${ECHO_T}$ac_cv_type_long" >&6 -echo "$as_me:28054: checking size of long" >&5 +echo "$as_me:28239: 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 @@ -28060,7 +28245,7 @@ else if test "$cross_compiling" = yes; then # Depending upon the size, compute the lo and hi bounds. cat >conftest.$ac_ext <<_ACEOF -#line 28063 "configure" +#line 28248 "configure" #include "confdefs.h" $ac_includes_default int @@ -28072,21 +28257,21 @@ int _array_ [1 - 2 * !((sizeof (long)) >= 0)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:28075: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:28260: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:28078: \$? = $ac_status" >&5 + echo "$as_me:28263: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:28081: \"$ac_try\"") >&5 + { (eval echo "$as_me:28266: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28084: \$? = $ac_status" >&5 + echo "$as_me:28269: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_lo=0 ac_mid=0 while :; do cat >conftest.$ac_ext <<_ACEOF -#line 28089 "configure" +#line 28274 "configure" #include "confdefs.h" $ac_includes_default int @@ -28098,16 +28283,16 @@ int _array_ [1 - 2 * !((sizeof (long)) <= $ac_mid)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:28101: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:28286: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:28104: \$? = $ac_status" >&5 + echo "$as_me:28289: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:28107: \"$ac_try\"") >&5 + { (eval echo "$as_me:28292: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28110: \$? = $ac_status" >&5 + echo "$as_me:28295: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_hi=$ac_mid; break else @@ -28123,7 +28308,7 @@ cat conftest.$ac_ext >&5 ac_hi=-1 ac_mid=-1 while :; do cat >conftest.$ac_ext <<_ACEOF -#line 28126 "configure" +#line 28311 "configure" #include "confdefs.h" $ac_includes_default int @@ -28135,16 +28320,16 @@ int _array_ [1 - 2 * !((sizeof (long)) >= $ac_mid)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:28138: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:28323: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:28141: \$? = $ac_status" >&5 + echo "$as_me:28326: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:28144: \"$ac_try\"") >&5 + { (eval echo "$as_me:28329: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28147: \$? = $ac_status" >&5 + echo "$as_me:28332: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_lo=$ac_mid; break else @@ -28160,7 +28345,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 28163 "configure" +#line 28348 "configure" #include "confdefs.h" $ac_includes_default int @@ -28172,16 +28357,16 @@ int _array_ [1 - 2 * !((sizeof (long)) <= $ac_mid)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:28175: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:28360: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:28178: \$? = $ac_status" >&5 + echo "$as_me:28363: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:28181: \"$ac_try\"") >&5 + { (eval echo "$as_me:28366: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28184: \$? = $ac_status" >&5 + echo "$as_me:28369: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_hi=$ac_mid else @@ -28194,12 +28379,12 @@ done ac_cv_sizeof_long=$ac_lo else if test "$cross_compiling" = yes; then - { { echo "$as_me:28197: error: cannot run test program while cross compiling" >&5 + { { echo "$as_me:28382: 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 28202 "configure" +#line 28387 "configure" #include "confdefs.h" $ac_includes_default int @@ -28215,15 +28400,15 @@ fclose (f); } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:28218: \"$ac_link\"") >&5 +if { (eval echo "$as_me:28403: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:28221: \$? = $ac_status" >&5 + echo "$as_me:28406: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:28223: \"$ac_try\"") >&5 + { (eval echo "$as_me:28408: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28226: \$? = $ac_status" >&5 + echo "$as_me:28411: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_sizeof_long=`cat conftest.val` else @@ -28239,7 +28424,7 @@ else ac_cv_sizeof_long=0 fi fi -echo "$as_me:28242: result: $ac_cv_sizeof_long" >&5 +echo "$as_me:28427: 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 @@ -28247,23 +28432,23 @@ EOF if test "${ac_cv_type_long:+set}" = set; then if test "${ac_cv_sizeof_long:+set}" != set; then - { echo "$as_me:28250: WARNING: using 4 for sizeof long" >&5 + { echo "$as_me:28435: 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:28254: WARNING: sizeof long not found, using 4" >&5 + { echo "$as_me:28439: 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:28260: checking for off_t" >&5 +echo "$as_me:28445: 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 28266 "configure" +#line 28451 "configure" #include "confdefs.h" $ac_includes_default int @@ -28278,16 +28463,16 @@ if (sizeof (off_t)) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:28281: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:28466: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:28284: \$? = $ac_status" >&5 + echo "$as_me:28469: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:28287: \"$ac_try\"") >&5 + { (eval echo "$as_me:28472: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28290: \$? = $ac_status" >&5 + echo "$as_me:28475: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_type_off_t=yes else @@ -28297,10 +28482,10 @@ ac_cv_type_off_t=no fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:28300: result: $ac_cv_type_off_t" >&5 +echo "$as_me:28485: result: $ac_cv_type_off_t" >&5 echo "${ECHO_T}$ac_cv_type_off_t" >&6 -echo "$as_me:28303: checking size of off_t" >&5 +echo "$as_me:28488: 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 @@ -28309,7 +28494,7 @@ else if test "$cross_compiling" = yes; then # Depending upon the size, compute the lo and hi bounds. cat >conftest.$ac_ext <<_ACEOF -#line 28312 "configure" +#line 28497 "configure" #include "confdefs.h" $ac_includes_default int @@ -28321,21 +28506,21 @@ int _array_ [1 - 2 * !((sizeof (off_t)) >= 0)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:28324: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:28509: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:28327: \$? = $ac_status" >&5 + echo "$as_me:28512: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:28330: \"$ac_try\"") >&5 + { (eval echo "$as_me:28515: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28333: \$? = $ac_status" >&5 + echo "$as_me:28518: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_lo=0 ac_mid=0 while :; do cat >conftest.$ac_ext <<_ACEOF -#line 28338 "configure" +#line 28523 "configure" #include "confdefs.h" $ac_includes_default int @@ -28347,16 +28532,16 @@ int _array_ [1 - 2 * !((sizeof (off_t)) <= $ac_mid)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:28350: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:28535: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:28353: \$? = $ac_status" >&5 + echo "$as_me:28538: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:28356: \"$ac_try\"") >&5 + { (eval echo "$as_me:28541: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28359: \$? = $ac_status" >&5 + echo "$as_me:28544: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_hi=$ac_mid; break else @@ -28372,7 +28557,7 @@ cat conftest.$ac_ext >&5 ac_hi=-1 ac_mid=-1 while :; do cat >conftest.$ac_ext <<_ACEOF -#line 28375 "configure" +#line 28560 "configure" #include "confdefs.h" $ac_includes_default int @@ -28384,16 +28569,16 @@ int _array_ [1 - 2 * !((sizeof (off_t)) >= $ac_mid)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:28387: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:28572: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:28390: \$? = $ac_status" >&5 + echo "$as_me:28575: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:28393: \"$ac_try\"") >&5 + { (eval echo "$as_me:28578: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28396: \$? = $ac_status" >&5 + echo "$as_me:28581: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_lo=$ac_mid; break else @@ -28409,7 +28594,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 28412 "configure" +#line 28597 "configure" #include "confdefs.h" $ac_includes_default int @@ -28421,16 +28606,16 @@ int _array_ [1 - 2 * !((sizeof (off_t)) <= $ac_mid)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:28424: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:28609: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:28427: \$? = $ac_status" >&5 + echo "$as_me:28612: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:28430: \"$ac_try\"") >&5 + { (eval echo "$as_me:28615: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28433: \$? = $ac_status" >&5 + echo "$as_me:28618: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_hi=$ac_mid else @@ -28443,12 +28628,12 @@ done ac_cv_sizeof_off_t=$ac_lo else if test "$cross_compiling" = yes; then - { { echo "$as_me:28446: error: cannot run test program while cross compiling" >&5 + { { echo "$as_me:28631: 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 28451 "configure" +#line 28636 "configure" #include "confdefs.h" $ac_includes_default int @@ -28464,15 +28649,15 @@ fclose (f); } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:28467: \"$ac_link\"") >&5 +if { (eval echo "$as_me:28652: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:28470: \$? = $ac_status" >&5 + echo "$as_me:28655: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:28472: \"$ac_try\"") >&5 + { (eval echo "$as_me:28657: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28475: \$? = $ac_status" >&5 + echo "$as_me:28660: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_sizeof_off_t=`cat conftest.val` else @@ -28488,7 +28673,7 @@ else ac_cv_sizeof_off_t=0 fi fi -echo "$as_me:28491: result: $ac_cv_sizeof_off_t" >&5 +echo "$as_me:28676: 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 @@ -28496,23 +28681,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:28499: WARNING: using 4 for sizeof off_t" >&5 + { echo "$as_me:28684: 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:28503: WARNING: sizeof off_t not found, using 4" >&5 + { echo "$as_me:28688: 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:28509: checking for time_t" >&5 +echo "$as_me:28694: 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 28515 "configure" +#line 28700 "configure" #include "confdefs.h" $ac_includes_default int @@ -28527,16 +28712,16 @@ if (sizeof (time_t)) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:28530: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:28715: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:28533: \$? = $ac_status" >&5 + echo "$as_me:28718: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:28536: \"$ac_try\"") >&5 + { (eval echo "$as_me:28721: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28539: \$? = $ac_status" >&5 + echo "$as_me:28724: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_type_time_t=yes else @@ -28546,10 +28731,10 @@ ac_cv_type_time_t=no fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:28549: result: $ac_cv_type_time_t" >&5 +echo "$as_me:28734: result: $ac_cv_type_time_t" >&5 echo "${ECHO_T}$ac_cv_type_time_t" >&6 -echo "$as_me:28552: checking size of time_t" >&5 +echo "$as_me:28737: 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 @@ -28558,7 +28743,7 @@ else if test "$cross_compiling" = yes; then # Depending upon the size, compute the lo and hi bounds. cat >conftest.$ac_ext <<_ACEOF -#line 28561 "configure" +#line 28746 "configure" #include "confdefs.h" $ac_includes_default int @@ -28570,21 +28755,21 @@ int _array_ [1 - 2 * !((sizeof (time_t)) >= 0)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:28573: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:28758: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:28576: \$? = $ac_status" >&5 + echo "$as_me:28761: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:28579: \"$ac_try\"") >&5 + { (eval echo "$as_me:28764: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28582: \$? = $ac_status" >&5 + echo "$as_me:28767: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_lo=0 ac_mid=0 while :; do cat >conftest.$ac_ext <<_ACEOF -#line 28587 "configure" +#line 28772 "configure" #include "confdefs.h" $ac_includes_default int @@ -28596,16 +28781,16 @@ int _array_ [1 - 2 * !((sizeof (time_t)) <= $ac_mid)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:28599: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:28784: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:28602: \$? = $ac_status" >&5 + echo "$as_me:28787: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:28605: \"$ac_try\"") >&5 + { (eval echo "$as_me:28790: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28608: \$? = $ac_status" >&5 + echo "$as_me:28793: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_hi=$ac_mid; break else @@ -28621,7 +28806,7 @@ cat conftest.$ac_ext >&5 ac_hi=-1 ac_mid=-1 while :; do cat >conftest.$ac_ext <<_ACEOF -#line 28624 "configure" +#line 28809 "configure" #include "confdefs.h" $ac_includes_default int @@ -28633,16 +28818,16 @@ int _array_ [1 - 2 * !((sizeof (time_t)) >= $ac_mid)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:28636: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:28821: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:28639: \$? = $ac_status" >&5 + echo "$as_me:28824: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:28642: \"$ac_try\"") >&5 + { (eval echo "$as_me:28827: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28645: \$? = $ac_status" >&5 + echo "$as_me:28830: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_lo=$ac_mid; break else @@ -28658,7 +28843,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 28661 "configure" +#line 28846 "configure" #include "confdefs.h" $ac_includes_default int @@ -28670,16 +28855,16 @@ int _array_ [1 - 2 * !((sizeof (time_t)) <= $ac_mid)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:28673: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:28858: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:28676: \$? = $ac_status" >&5 + echo "$as_me:28861: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:28679: \"$ac_try\"") >&5 + { (eval echo "$as_me:28864: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28682: \$? = $ac_status" >&5 + echo "$as_me:28867: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_hi=$ac_mid else @@ -28692,12 +28877,12 @@ done ac_cv_sizeof_time_t=$ac_lo else if test "$cross_compiling" = yes; then - { { echo "$as_me:28695: error: cannot run test program while cross compiling" >&5 + { { echo "$as_me:28880: 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 28700 "configure" +#line 28885 "configure" #include "confdefs.h" $ac_includes_default int @@ -28713,15 +28898,15 @@ fclose (f); } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:28716: \"$ac_link\"") >&5 +if { (eval echo "$as_me:28901: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:28719: \$? = $ac_status" >&5 + echo "$as_me:28904: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:28721: \"$ac_try\"") >&5 + { (eval echo "$as_me:28906: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28724: \$? = $ac_status" >&5 + echo "$as_me:28909: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_sizeof_time_t=`cat conftest.val` else @@ -28737,7 +28922,7 @@ else ac_cv_sizeof_time_t=0 fi fi -echo "$as_me:28740: result: $ac_cv_sizeof_time_t" >&5 +echo "$as_me:28925: 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 @@ -28745,23 +28930,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:28748: WARNING: using 4 for sizeof time_t" >&5 + { echo "$as_me:28933: 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:28752: WARNING: sizeof time_t not found, using 4" >&5 + { echo "$as_me:28937: 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:28758: checking for intptr_t" >&5 +echo "$as_me:28943: 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 28764 "configure" +#line 28949 "configure" #include "confdefs.h" $ac_includes_default int @@ -28776,16 +28961,16 @@ if (sizeof (intptr_t)) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:28779: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:28964: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:28782: \$? = $ac_status" >&5 + echo "$as_me:28967: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:28785: \"$ac_try\"") >&5 + { (eval echo "$as_me:28970: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28788: \$? = $ac_status" >&5 + echo "$as_me:28973: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_type_intptr_t=yes else @@ -28795,7 +28980,7 @@ ac_cv_type_intptr_t=no fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:28798: result: $ac_cv_type_intptr_t" >&5 +echo "$as_me:28983: 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 : @@ -28809,13 +28994,13 @@ fi # The Ultrix 4.2 mips builtin alloca declared by alloca.h only works # for constant arguments. Useless! -echo "$as_me:28812: checking for working alloca.h" >&5 +echo "$as_me:28997: 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 28818 "configure" +#line 29003 "configure" #include "confdefs.h" #include <alloca.h> int @@ -28827,16 +29012,16 @@ char *p = (char *) alloca (2 * sizeof (int)); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:28830: \"$ac_link\"") >&5 +if { (eval echo "$as_me:29015: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:28833: \$? = $ac_status" >&5 + echo "$as_me:29018: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:28836: \"$ac_try\"") >&5 + { (eval echo "$as_me:29021: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28839: \$? = $ac_status" >&5 + echo "$as_me:29024: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_working_alloca_h=yes else @@ -28846,7 +29031,7 @@ ac_cv_working_alloca_h=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:28849: result: $ac_cv_working_alloca_h" >&5 +echo "$as_me:29034: 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 @@ -28856,13 +29041,13 @@ EOF fi -echo "$as_me:28859: checking for alloca" >&5 +echo "$as_me:29044: 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 28865 "configure" +#line 29050 "configure" #include "confdefs.h" #ifdef __GNUC__ # define alloca __builtin_alloca @@ -28894,16 +29079,16 @@ char *p = (char *) alloca (1); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:28897: \"$ac_link\"") >&5 +if { (eval echo "$as_me:29082: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:28900: \$? = $ac_status" >&5 + echo "$as_me:29085: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:28903: \"$ac_try\"") >&5 + { (eval echo "$as_me:29088: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28906: \$? = $ac_status" >&5 + echo "$as_me:29091: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_alloca_works=yes else @@ -28913,7 +29098,7 @@ ac_cv_func_alloca_works=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:28916: result: $ac_cv_func_alloca_works" >&5 +echo "$as_me:29101: 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 @@ -28934,13 +29119,13 @@ cat >>confdefs.h <<\EOF #define C_ALLOCA 1 EOF -echo "$as_me:28937: checking whether \`alloca.c' needs Cray hooks" >&5 +echo "$as_me:29122: 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 28943 "configure" +#line 29128 "configure" #include "confdefs.h" #if defined(CRAY) && ! defined(CRAY2) webecray @@ -28958,18 +29143,18 @@ fi rm -rf conftest* fi -echo "$as_me:28961: result: $ac_cv_os_cray" >&5 +echo "$as_me:29146: 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:28966: checking for $ac_func" >&5 +echo "$as_me:29151: 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 28972 "configure" +#line 29157 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. */ @@ -29000,16 +29185,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:29003: \"$ac_link\"") >&5 +if { (eval echo "$as_me:29188: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:29006: \$? = $ac_status" >&5 + echo "$as_me:29191: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:29009: \"$ac_try\"") >&5 + { (eval echo "$as_me:29194: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:29012: \$? = $ac_status" >&5 + echo "$as_me:29197: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else @@ -29019,7 +29204,7 @@ eval "$as_ac_var=no" fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:29022: result: `eval echo '${'$as_ac_var'}'`" >&5 +echo "$as_me:29207: 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 @@ -29033,7 +29218,7 @@ fi done fi -echo "$as_me:29036: checking stack direction for C alloca" >&5 +echo "$as_me:29221: 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 @@ -29042,7 +29227,7 @@ else ac_cv_c_stack_direction=0 else cat >conftest.$ac_ext <<_ACEOF -#line 29045 "configure" +#line 29230 "configure" #include "confdefs.h" int find_stack_direction () @@ -29065,15 +29250,15 @@ main () } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:29068: \"$ac_link\"") >&5 +if { (eval echo "$as_me:29253: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:29071: \$? = $ac_status" >&5 + echo "$as_me:29256: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:29073: \"$ac_try\"") >&5 + { (eval echo "$as_me:29258: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:29076: \$? = $ac_status" >&5 + echo "$as_me:29261: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_c_stack_direction=1 else @@ -29085,7 +29270,7 @@ fi rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext fi fi -echo "$as_me:29088: result: $ac_cv_c_stack_direction" >&5 +echo "$as_me:29273: result: $ac_cv_c_stack_direction" >&5 echo "${ECHO_T}$ac_cv_c_stack_direction" >&6 cat >>confdefs.h <<EOF @@ -29097,23 +29282,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:29100: checking for $ac_header" >&5 +echo "$as_me:29285: 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 29106 "configure" +#line 29291 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:29110: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:29295: \"$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:29116: \$? = $ac_status" >&5 + echo "$as_me:29301: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -29132,7 +29317,7 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:29135: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:29320: 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 @@ -29145,13 +29330,13 @@ done for ac_func in fork vfork do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` -echo "$as_me:29148: checking for $ac_func" >&5 +echo "$as_me:29333: 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 29154 "configure" +#line 29339 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. */ @@ -29182,16 +29367,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:29185: \"$ac_link\"") >&5 +if { (eval echo "$as_me:29370: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:29188: \$? = $ac_status" >&5 + echo "$as_me:29373: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:29191: \"$ac_try\"") >&5 + { (eval echo "$as_me:29376: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:29194: \$? = $ac_status" >&5 + echo "$as_me:29379: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else @@ -29201,7 +29386,7 @@ eval "$as_ac_var=no" fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:29204: result: `eval echo '${'$as_ac_var'}'`" >&5 +echo "$as_me:29389: 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 @@ -29213,7 +29398,7 @@ done ac_cv_func_fork_works=$ac_cv_func_fork if test "x$ac_cv_func_fork" = xyes; then - echo "$as_me:29216: checking for working fork" >&5 + echo "$as_me:29401: 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 @@ -29236,15 +29421,15 @@ else } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:29239: \"$ac_link\"") >&5 +if { (eval echo "$as_me:29424: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:29242: \$? = $ac_status" >&5 + echo "$as_me:29427: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:29244: \"$ac_try\"") >&5 + { (eval echo "$as_me:29429: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:29247: \$? = $ac_status" >&5 + echo "$as_me:29432: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_fork_works=yes else @@ -29256,7 +29441,7 @@ fi rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext fi fi -echo "$as_me:29259: result: $ac_cv_func_fork_works" >&5 +echo "$as_me:29444: result: $ac_cv_func_fork_works" >&5 echo "${ECHO_T}$ac_cv_func_fork_works" >&6 fi @@ -29270,12 +29455,12 @@ if test "x$ac_cv_func_fork_works" = xcross; then ac_cv_func_fork_works=yes ;; esac - { echo "$as_me:29273: WARNING: CROSS: Result $ac_cv_func_fork_works guessed due to cross-compiling." >&5 + { echo "$as_me:29458: 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:29278: checking for working vfork" >&5 + echo "$as_me:29463: 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 @@ -29284,7 +29469,7 @@ else ac_cv_func_vfork_works=cross else cat >conftest.$ac_ext <<_ACEOF -#line 29287 "configure" +#line 29472 "configure" #include "confdefs.h" /* Thanks to Paul Eggert for this test. */ #include <stdio.h> @@ -29381,15 +29566,15 @@ main () } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:29384: \"$ac_link\"") >&5 +if { (eval echo "$as_me:29569: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:29387: \$? = $ac_status" >&5 + echo "$as_me:29572: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:29389: \"$ac_try\"") >&5 + { (eval echo "$as_me:29574: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:29392: \$? = $ac_status" >&5 + echo "$as_me:29577: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_vfork_works=yes else @@ -29401,13 +29586,13 @@ fi rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext fi fi -echo "$as_me:29404: result: $ac_cv_func_vfork_works" >&5 +echo "$as_me:29589: 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:29410: WARNING: CROSS: Result $ac_cv_func_vfork_works guessed due to cross-compiling." >&5 + { echo "$as_me:29595: 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 @@ -29432,14 +29617,14 @@ EOF fi -echo "$as_me:29435: checking if we should use fcntl or ioctl" >&5 +echo "$as_me:29620: 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 29442 "configure" +#line 29627 "configure" #include "confdefs.h" #include <sys/types.h> @@ -29456,16 +29641,16 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:29459: \"$ac_link\"") >&5 +if { (eval echo "$as_me:29644: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:29462: \$? = $ac_status" >&5 + echo "$as_me:29647: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:29465: \"$ac_try\"") >&5 + { (eval echo "$as_me:29650: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:29468: \$? = $ac_status" >&5 + echo "$as_me:29653: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_fionbio=ioctl else @@ -29473,7 +29658,7 @@ else cat conftest.$ac_ext >&5 cat >conftest.$ac_ext <<_ACEOF -#line 29476 "configure" +#line 29661 "configure" #include "confdefs.h" #include <sys/types.h> @@ -29495,16 +29680,16 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:29498: \"$ac_link\"") >&5 +if { (eval echo "$as_me:29683: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:29501: \$? = $ac_status" >&5 + echo "$as_me:29686: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:29504: \"$ac_try\"") >&5 + { (eval echo "$as_me:29689: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:29507: \$? = $ac_status" >&5 + echo "$as_me:29692: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_fionbio=fcntl else @@ -29517,21 +29702,21 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:29520: result: $cf_cv_fionbio" >&5 +echo "$as_me:29705: 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:29527: checking for broken/missing definition of remove" >&5 +echo "$as_me:29712: 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 29534 "configure" +#line 29719 "configure" #include "confdefs.h" #include <stdio.h> int @@ -29543,23 +29728,23 @@ remove("dummy") } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:29546: \"$ac_link\"") >&5 +if { (eval echo "$as_me:29731: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:29549: \$? = $ac_status" >&5 + echo "$as_me:29734: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:29552: \"$ac_try\"") >&5 + { (eval echo "$as_me:29737: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:29555: \$? = $ac_status" >&5 + echo "$as_me:29740: \$? = $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 29562 "configure" +#line 29747 "configure" #include "confdefs.h" #include <stdio.h> int __unlink(name) { return unlink(name); } @@ -29572,16 +29757,16 @@ remove("dummy") } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:29575: \"$ac_link\"") >&5 +if { (eval echo "$as_me:29760: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:29578: \$? = $ac_status" >&5 + echo "$as_me:29763: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:29581: \"$ac_try\"") >&5 + { (eval echo "$as_me:29766: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:29584: \$? = $ac_status" >&5 + echo "$as_me:29769: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_baddef_remove=yes else @@ -29596,21 +29781,21 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:29599: result: $cf_cv_baddef_remove" >&5 +echo "$as_me:29784: 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:29606: checking for lstat" >&5 +echo "$as_me:29791: 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 29613 "configure" +#line 29798 "configure" #include "confdefs.h" #include <sys/types.h> @@ -29624,16 +29809,16 @@ lstat(".", (struct stat *)0) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:29627: \"$ac_link\"") >&5 +if { (eval echo "$as_me:29812: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:29630: \$? = $ac_status" >&5 + echo "$as_me:29815: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:29633: \"$ac_try\"") >&5 + { (eval echo "$as_me:29818: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:29636: \$? = $ac_status" >&5 + echo "$as_me:29821: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_lstat=yes else @@ -29645,7 +29830,7 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:29648: result: $ac_cv_func_lstat " >&5 +echo "$as_me:29833: result: $ac_cv_func_lstat " >&5 echo "${ECHO_T}$ac_cv_func_lstat " >&6 if test $ac_cv_func_lstat = yes; then @@ -29680,13 +29865,13 @@ for ac_func in \ do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` -echo "$as_me:29683: checking for $ac_func" >&5 +echo "$as_me:29868: 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 29689 "configure" +#line 29874 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. */ @@ -29717,16 +29902,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:29720: \"$ac_link\"") >&5 +if { (eval echo "$as_me:29905: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:29723: \$? = $ac_status" >&5 + echo "$as_me:29908: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:29726: \"$ac_try\"") >&5 + { (eval echo "$as_me:29911: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:29729: \$? = $ac_status" >&5 + echo "$as_me:29914: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else @@ -29736,7 +29921,7 @@ eval "$as_ac_var=no" fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:29739: result: `eval echo '${'$as_ac_var'}'`" >&5 +echo "$as_me:29924: 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 @@ -29752,13 +29937,13 @@ for ac_func in \ do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` -echo "$as_me:29755: checking for $ac_func" >&5 +echo "$as_me:29940: 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 29761 "configure" +#line 29946 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. */ @@ -29789,16 +29974,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:29792: \"$ac_link\"") >&5 +if { (eval echo "$as_me:29977: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:29795: \$? = $ac_status" >&5 + echo "$as_me:29980: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:29798: \"$ac_try\"") >&5 + { (eval echo "$as_me:29983: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:29801: \$? = $ac_status" >&5 + echo "$as_me:29986: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else @@ -29808,7 +29993,7 @@ eval "$as_ac_var=no" fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:29811: result: `eval echo '${'$as_ac_var'}'`" >&5 +echo "$as_me:29996: 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 @@ -29820,7 +30005,7 @@ else fi done -echo "$as_me:29823: checking for random-integer functions" >&5 +echo "$as_me:30008: 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 @@ -29840,7 +30025,7 @@ do esac cat >conftest.$ac_ext <<_ACEOF -#line 29843 "configure" +#line 30028 "configure" #include "confdefs.h" #ifdef HAVE_STDLIB_H @@ -29859,16 +30044,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:29862: \"$ac_link\"") >&5 +if { (eval echo "$as_me:30047: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:29865: \$? = $ac_status" >&5 + echo "$as_me:30050: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:29868: \"$ac_try\"") >&5 + { (eval echo "$as_me:30053: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:29871: \$? = $ac_status" >&5 + echo "$as_me:30056: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_srand_func=$cf_func break @@ -29880,10 +30065,10 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext done fi -echo "$as_me:29883: result: $cf_cv_srand_func" >&5 +echo "$as_me:30068: 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:29886: checking for range of random-integers" >&5 + echo "$as_me:30071: 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 @@ -29904,7 +30089,7 @@ else ;; esac cat >conftest.$ac_ext <<_ACEOF -#line 29907 "configure" +#line 30092 "configure" #include "confdefs.h" #ifdef HAVE_STDLIB_H @@ -29923,16 +30108,16 @@ long x = $cf_cv_rand_max } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:29926: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:30111: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:29929: \$? = $ac_status" >&5 + echo "$as_me:30114: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:29932: \"$ac_try\"") >&5 + { (eval echo "$as_me:30117: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:29935: \$? = $ac_status" >&5 + echo "$as_me:30120: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -29943,15 +30128,15 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:29946: result: $cf_cv_rand_max" >&5 +echo "$as_me:30131: result: $cf_cv_rand_max" >&5 echo "${ECHO_T}$cf_cv_rand_max" >&6 case $cf_cv_srand_func in */arc4random) - echo "$as_me:29951: checking if <bsd/stdlib.h> should be included" >&5 + echo "$as_me:30136: 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 29954 "configure" +#line 30139 "configure" #include "confdefs.h" #include <bsd/stdlib.h> int @@ -29964,23 +30149,23 @@ void *arc4random(int); } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:29967: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:30152: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:29970: \$? = $ac_status" >&5 + echo "$as_me:30155: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:29973: \"$ac_try\"") >&5 + { (eval echo "$as_me:30158: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:29976: \$? = $ac_status" >&5 + echo "$as_me:30161: \$? = $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 29983 "configure" +#line 30168 "configure" #include "confdefs.h" #include <bsd/stdlib.h> int @@ -29992,16 +30177,16 @@ unsigned x = arc4random() } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:29995: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:30180: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:29998: \$? = $ac_status" >&5 + echo "$as_me:30183: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:30001: \"$ac_try\"") >&5 + { (eval echo "$as_me:30186: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:30004: \$? = $ac_status" >&5 + echo "$as_me:30189: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_bsd_stdlib_h=yes else @@ -30012,7 +30197,7 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi rm -f conftest.$ac_objext conftest.$ac_ext - echo "$as_me:30015: result: $cf_bsd_stdlib_h" >&5 + echo "$as_me:30200: result: $cf_bsd_stdlib_h" >&5 echo "${ECHO_T}$cf_bsd_stdlib_h" >&6 if test "$cf_bsd_stdlib_h" = yes then @@ -30022,10 +30207,10 @@ cat >>confdefs.h <<\EOF EOF else - echo "$as_me:30025: checking if <bsd/random.h> should be included" >&5 + echo "$as_me:30210: 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 30028 "configure" +#line 30213 "configure" #include "confdefs.h" #include <bsd/random.h> int @@ -30038,23 +30223,23 @@ void *arc4random(int); } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:30041: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:30226: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:30044: \$? = $ac_status" >&5 + echo "$as_me:30229: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:30047: \"$ac_try\"") >&5 + { (eval echo "$as_me:30232: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:30050: \$? = $ac_status" >&5 + echo "$as_me:30235: \$? = $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 30057 "configure" +#line 30242 "configure" #include "confdefs.h" #include <bsd/random.h> int @@ -30066,16 +30251,16 @@ unsigned x = arc4random() } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:30069: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:30254: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:30072: \$? = $ac_status" >&5 + echo "$as_me:30257: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:30075: \"$ac_try\"") >&5 + { (eval echo "$as_me:30260: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:30078: \$? = $ac_status" >&5 + echo "$as_me:30263: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_bsd_random_h=yes else @@ -30086,7 +30271,7 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi rm -f conftest.$ac_objext conftest.$ac_ext - echo "$as_me:30089: result: $cf_bsd_random_h" >&5 + echo "$as_me:30274: result: $cf_bsd_random_h" >&5 echo "${ECHO_T}$cf_bsd_random_h" >&6 if test "$cf_bsd_random_h" = yes then @@ -30096,7 +30281,7 @@ cat >>confdefs.h <<\EOF EOF else - { echo "$as_me:30099: WARNING: no header file found for arc4random" >&5 + { echo "$as_me:30284: WARNING: no header file found for arc4random" >&5 echo "$as_me: WARNING: no header file found for arc4random" >&2;} fi fi @@ -30131,13 +30316,13 @@ fi for ac_func in sleep do -echo "$as_me:30134: checking for $ac_func declaration" >&5 +echo "$as_me:30319: 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 30140 "configure" +#line 30325 "configure" #include "confdefs.h" #ifdef HAVE_STDLIB_H @@ -30158,20 +30343,20 @@ extern int $ac_func(); } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:30161: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:30346: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:30164: \$? = $ac_status" >&5 + echo "$as_me:30349: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:30167: \"$ac_try\"") >&5 + { (eval echo "$as_me:30352: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:30170: \$? = $ac_status" >&5 + echo "$as_me:30355: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cat >conftest.$ac_ext <<_ACEOF -#line 30174 "configure" +#line 30359 "configure" #include "confdefs.h" #ifdef HAVE_STDLIB_H @@ -30192,16 +30377,16 @@ int (*p)() = $ac_func; } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:30195: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:30380: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:30198: \$? = $ac_status" >&5 + echo "$as_me:30383: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:30201: \"$ac_try\"") >&5 + { (eval echo "$as_me:30386: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:30204: \$? = $ac_status" >&5 + echo "$as_me:30389: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "ac_cv_func_decl_$ac_func=yes" @@ -30222,11 +30407,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:30225: result: yes" >&5 + echo "$as_me:30410: result: yes" >&5 echo "${ECHO_T}yes" >&6 : else - echo "$as_me:30229: result: no" >&5 + echo "$as_me:30414: result: no" >&5 echo "${ECHO_T}no" >&6 ac_tr_func=`echo "DECL_$ac_func" | sed y%abcdefghijklmnopqrstuvwxyz./-%ABCDEFGHIJKLMNOPQRSTUVWXYZ___%` @@ -30241,13 +30426,13 @@ done for ac_func in strstr do -echo "$as_me:30244: checking for $ac_func declaration" >&5 +echo "$as_me:30429: 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 30250 "configure" +#line 30435 "configure" #include "confdefs.h" #include <string.h> int @@ -30261,20 +30446,20 @@ extern int $ac_func(); } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:30264: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:30449: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:30267: \$? = $ac_status" >&5 + echo "$as_me:30452: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:30270: \"$ac_try\"") >&5 + { (eval echo "$as_me:30455: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:30273: \$? = $ac_status" >&5 + echo "$as_me:30458: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cat >conftest.$ac_ext <<_ACEOF -#line 30277 "configure" +#line 30462 "configure" #include "confdefs.h" #include <string.h> int @@ -30288,16 +30473,16 @@ int (*p)() = $ac_func; } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:30291: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:30476: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:30294: \$? = $ac_status" >&5 + echo "$as_me:30479: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:30297: \"$ac_try\"") >&5 + { (eval echo "$as_me:30482: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:30300: \$? = $ac_status" >&5 + echo "$as_me:30485: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "ac_cv_func_decl_$ac_func=yes" @@ -30318,11 +30503,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:30321: result: yes" >&5 + echo "$as_me:30506: result: yes" >&5 echo "${ECHO_T}yes" >&6 : else - echo "$as_me:30325: result: no" >&5 + echo "$as_me:30510: result: no" >&5 echo "${ECHO_T}no" >&6 ac_tr_func=`echo "DECL_$ac_func" | sed y%abcdefghijklmnopqrstuvwxyz./-%ABCDEFGHIJKLMNOPQRSTUVWXYZ___%` @@ -30337,13 +30522,13 @@ done for ac_func in getgrgid getgrnam do -echo "$as_me:30340: checking for $ac_func declaration" >&5 +echo "$as_me:30525: 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 30346 "configure" +#line 30531 "configure" #include "confdefs.h" #include <stdio.h> @@ -30359,20 +30544,20 @@ extern int $ac_func(); } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:30362: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:30547: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:30365: \$? = $ac_status" >&5 + echo "$as_me:30550: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:30368: \"$ac_try\"") >&5 + { (eval echo "$as_me:30553: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:30371: \$? = $ac_status" >&5 + echo "$as_me:30556: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cat >conftest.$ac_ext <<_ACEOF -#line 30375 "configure" +#line 30560 "configure" #include "confdefs.h" #include <stdio.h> @@ -30388,16 +30573,16 @@ int (*p)() = $ac_func; } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:30391: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:30576: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:30394: \$? = $ac_status" >&5 + echo "$as_me:30579: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:30397: \"$ac_try\"") >&5 + { (eval echo "$as_me:30582: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:30400: \$? = $ac_status" >&5 + echo "$as_me:30585: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "ac_cv_func_decl_$ac_func=yes" @@ -30418,11 +30603,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:30421: result: yes" >&5 + echo "$as_me:30606: result: yes" >&5 echo "${ECHO_T}yes" >&6 : else - echo "$as_me:30425: result: no" >&5 + echo "$as_me:30610: result: no" >&5 echo "${ECHO_T}no" >&6 ac_tr_func=`echo "DECL_$ac_func" | sed y%abcdefghijklmnopqrstuvwxyz./-%ABCDEFGHIJKLMNOPQRSTUVWXYZ___%` @@ -30434,14 +30619,14 @@ EOF fi done -echo "$as_me:30437: checking if TRUE/FALSE are defined" >&5 +echo "$as_me:30622: 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 30444 "configure" +#line 30629 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> @@ -30455,16 +30640,16 @@ int x = TRUE, y = FALSE } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:30458: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:30643: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:30461: \$? = $ac_status" >&5 + echo "$as_me:30646: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:30464: \"$ac_try\"") >&5 + { (eval echo "$as_me:30649: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:30467: \$? = $ac_status" >&5 + echo "$as_me:30652: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_bool_defs=yes else @@ -30475,7 +30660,7 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:30478: result: $cf_cv_bool_defs" >&5 +echo "$as_me:30663: result: $cf_cv_bool_defs" >&5 echo "${ECHO_T}$cf_cv_bool_defs" >&6 if test "$cf_cv_bool_defs" = no ; then @@ -30489,14 +30674,14 @@ EOF fi -echo "$as_me:30492: checking if external errno is declared" >&5 +echo "$as_me:30677: 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 30499 "configure" +#line 30684 "configure" #include "confdefs.h" #ifdef HAVE_STDLIB_H @@ -30514,16 +30699,16 @@ int x = (int) errno } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:30517: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:30702: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:30520: \$? = $ac_status" >&5 + echo "$as_me:30705: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:30523: \"$ac_try\"") >&5 + { (eval echo "$as_me:30708: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:30526: \$? = $ac_status" >&5 + echo "$as_me:30711: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_dcl_errno=yes else @@ -30534,7 +30719,7 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:30537: result: $cf_cv_dcl_errno" >&5 +echo "$as_me:30722: result: $cf_cv_dcl_errno" >&5 echo "${ECHO_T}$cf_cv_dcl_errno" >&6 if test "$cf_cv_dcl_errno" = no ; then @@ -30549,14 +30734,14 @@ fi # It's possible (for near-UNIX clones) that the data doesn't exist -echo "$as_me:30552: checking if external errno exists" >&5 +echo "$as_me:30737: 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 30559 "configure" +#line 30744 "configure" #include "confdefs.h" #undef errno @@ -30571,16 +30756,16 @@ errno = 2 } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:30574: \"$ac_link\"") >&5 +if { (eval echo "$as_me:30759: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:30577: \$? = $ac_status" >&5 + echo "$as_me:30762: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:30580: \"$ac_try\"") >&5 + { (eval echo "$as_me:30765: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:30583: \$? = $ac_status" >&5 + echo "$as_me:30768: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_have_errno=yes else @@ -30591,7 +30776,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:30594: result: $cf_cv_have_errno" >&5 +echo "$as_me:30779: result: $cf_cv_have_errno" >&5 echo "${ECHO_T}$cf_cv_have_errno" >&6 if test "$cf_cv_have_errno" = yes ; then @@ -30604,7 +30789,7 @@ EOF fi -echo "$as_me:30607: checking if we can set errno" >&5 +echo "$as_me:30792: 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 @@ -30612,7 +30797,7 @@ else if test "$cross_compiling" = yes; then cat >conftest.$ac_ext <<_ACEOF -#line 30615 "configure" +#line 30800 "configure" #include "confdefs.h" #include <errno.h> int @@ -30624,16 +30809,16 @@ errno = 255 } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:30627: \"$ac_link\"") >&5 +if { (eval echo "$as_me:30812: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:30630: \$? = $ac_status" >&5 + echo "$as_me:30815: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:30633: \"$ac_try\"") >&5 + { (eval echo "$as_me:30818: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:30636: \$? = $ac_status" >&5 + echo "$as_me:30821: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_set_errno=maybe else @@ -30644,7 +30829,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext else cat >conftest.$ac_ext <<_ACEOF -#line 30647 "configure" +#line 30832 "configure" #include "confdefs.h" #include <errno.h> @@ -30655,15 +30840,15 @@ int main() } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:30658: \"$ac_link\"") >&5 +if { (eval echo "$as_me:30843: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:30661: \$? = $ac_status" >&5 + echo "$as_me:30846: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:30663: \"$ac_try\"") >&5 + { (eval echo "$as_me:30848: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:30666: \$? = $ac_status" >&5 + echo "$as_me:30851: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_set_errno=yes else @@ -30676,21 +30861,21 @@ rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext fi fi -echo "$as_me:30679: result: $cf_cv_set_errno" >&5 +echo "$as_me:30864: 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:30686: checking for setlocale()" >&5 +echo "$as_me:30871: 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 30693 "configure" +#line 30878 "configure" #include "confdefs.h" #include <locale.h> int @@ -30702,16 +30887,16 @@ setlocale(LC_ALL, "") } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:30705: \"$ac_link\"") >&5 +if { (eval echo "$as_me:30890: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:30708: \$? = $ac_status" >&5 + echo "$as_me:30893: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:30711: \"$ac_try\"") >&5 + { (eval echo "$as_me:30896: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:30714: \$? = $ac_status" >&5 + echo "$as_me:30899: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_locale=yes else @@ -30723,7 +30908,7 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:30726: result: $cf_cv_locale" >&5 +echo "$as_me:30911: result: $cf_cv_locale" >&5 echo "${ECHO_T}$cf_cv_locale" >&6 test $cf_cv_locale = yes && { cat >>confdefs.h <<\EOF @@ -30731,14 +30916,14 @@ cat >>confdefs.h <<\EOF EOF } -echo "$as_me:30734: checking if NGROUPS is defined" >&5 +echo "$as_me:30919: 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 30741 "configure" +#line 30926 "configure" #include "confdefs.h" #if HAVE_SYS_PARAM_H @@ -30757,23 +30942,23 @@ int x = NGROUPS } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:30760: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:30945: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:30763: \$? = $ac_status" >&5 + echo "$as_me:30948: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:30766: \"$ac_try\"") >&5 + { (eval echo "$as_me:30951: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:30769: \$? = $ac_status" >&5 + echo "$as_me:30954: \$? = $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 30776 "configure" +#line 30961 "configure" #include "confdefs.h" #if HAVE_SYS_PARAM_H @@ -30792,16 +30977,16 @@ int x = NGROUPS_MAX } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:30795: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:30980: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:30798: \$? = $ac_status" >&5 + echo "$as_me:30983: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:30801: \"$ac_try\"") >&5 + { (eval echo "$as_me:30986: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:30804: \$? = $ac_status" >&5 + echo "$as_me:30989: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_ngroups=NGROUPS_MAX else @@ -30813,7 +30998,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext fi rm -f conftest.$ac_objext conftest.$ac_ext -echo "$as_me:30816: result: $cf_cv_ngroups" >&5 +echo "$as_me:31001: result: $cf_cv_ngroups" >&5 echo "${ECHO_T}$cf_cv_ngroups" >&6 fi @@ -30831,14 +31016,14 @@ EOF fi -echo "$as_me:30834: checking if external sys_nerr is declared" >&5 +echo "$as_me:31019: 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 30841 "configure" +#line 31026 "configure" #include "confdefs.h" #ifdef HAVE_STDLIB_H @@ -30856,16 +31041,16 @@ int x = (int) sys_nerr } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:30859: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:31044: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:30862: \$? = $ac_status" >&5 + echo "$as_me:31047: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:30865: \"$ac_try\"") >&5 + { (eval echo "$as_me:31050: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:30868: \$? = $ac_status" >&5 + echo "$as_me:31053: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_dcl_sys_nerr=yes else @@ -30876,7 +31061,7 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:30879: result: $cf_cv_dcl_sys_nerr" >&5 +echo "$as_me:31064: 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 @@ -30891,14 +31076,14 @@ fi # It's possible (for near-UNIX clones) that the data doesn't exist -echo "$as_me:30894: checking if external sys_nerr exists" >&5 +echo "$as_me:31079: 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 30901 "configure" +#line 31086 "configure" #include "confdefs.h" #undef sys_nerr @@ -30913,16 +31098,16 @@ sys_nerr = 2 } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:30916: \"$ac_link\"") >&5 +if { (eval echo "$as_me:31101: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:30919: \$? = $ac_status" >&5 + echo "$as_me:31104: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:30922: \"$ac_try\"") >&5 + { (eval echo "$as_me:31107: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:30925: \$? = $ac_status" >&5 + echo "$as_me:31110: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_have_sys_nerr=yes else @@ -30933,7 +31118,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:30936: result: $cf_cv_have_sys_nerr" >&5 +echo "$as_me:31121: 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 @@ -30946,14 +31131,14 @@ EOF fi -echo "$as_me:30949: checking if external sys_errlist is declared" >&5 +echo "$as_me:31134: 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 30956 "configure" +#line 31141 "configure" #include "confdefs.h" #ifdef HAVE_STDLIB_H @@ -30971,16 +31156,16 @@ int x = (int) sys_errlist } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:30974: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:31159: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:30977: \$? = $ac_status" >&5 + echo "$as_me:31162: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:30980: \"$ac_try\"") >&5 + { (eval echo "$as_me:31165: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:30983: \$? = $ac_status" >&5 + echo "$as_me:31168: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_dcl_sys_errlist=yes else @@ -30991,7 +31176,7 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:30994: result: $cf_cv_dcl_sys_errlist" >&5 +echo "$as_me:31179: 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 @@ -31006,14 +31191,14 @@ fi # It's possible (for near-UNIX clones) that the data doesn't exist -echo "$as_me:31009: checking if external sys_errlist exists" >&5 +echo "$as_me:31194: 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 31016 "configure" +#line 31201 "configure" #include "confdefs.h" #undef sys_errlist @@ -31028,16 +31213,16 @@ sys_errlist = 2 } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:31031: \"$ac_link\"") >&5 +if { (eval echo "$as_me:31216: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:31034: \$? = $ac_status" >&5 + echo "$as_me:31219: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:31037: \"$ac_try\"") >&5 + { (eval echo "$as_me:31222: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:31040: \$? = $ac_status" >&5 + echo "$as_me:31225: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_have_sys_errlist=yes else @@ -31048,7 +31233,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:31051: result: $cf_cv_have_sys_errlist" >&5 +echo "$as_me:31236: 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 @@ -31064,23 +31249,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:31067: checking for $ac_header" >&5 +echo "$as_me:31252: 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 31073 "configure" +#line 31258 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:31077: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:31262: \"$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:31083: \$? = $ac_status" >&5 + echo "$as_me:31268: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -31099,7 +31284,7 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:31102: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:31287: 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 @@ -31109,14 +31294,14 @@ EOF fi done -echo "$as_me:31112: checking for lastlog path" >&5 +echo "$as_me:31297: 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 31119 "configure" +#line 31304 "configure" #include "confdefs.h" #include <sys/types.h> @@ -31136,16 +31321,16 @@ char *path = _PATH_LASTLOG } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:31139: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:31324: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:31142: \$? = $ac_status" >&5 + echo "$as_me:31327: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:31145: \"$ac_try\"") >&5 + { (eval echo "$as_me:31330: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:31148: \$? = $ac_status" >&5 + echo "$as_me:31333: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_path_lastlog="_PATH_LASTLOG" else @@ -31160,14 +31345,14 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:31163: result: $cf_cv_path_lastlog" >&5 +echo "$as_me:31348: 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:31170: checking for utmp implementation" >&5 +echo "$as_me:31355: 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 @@ -31184,7 +31369,7 @@ cf_utmp_includes=" #endif " cat >conftest.$ac_ext <<_ACEOF -#line 31187 "configure" +#line 31372 "configure" #include "confdefs.h" $cf_utmp_includes int @@ -31198,16 +31383,16 @@ struct $cf_header x; } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:31201: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:31386: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:31204: \$? = $ac_status" >&5 + echo "$as_me:31389: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:31207: \"$ac_try\"") >&5 + { (eval echo "$as_me:31392: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:31210: \$? = $ac_status" >&5 + echo "$as_me:31395: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_have_utmp=$cf_header break @@ -31216,7 +31401,7 @@ else cat conftest.$ac_ext >&5 cat >conftest.$ac_ext <<_ACEOF -#line 31219 "configure" +#line 31404 "configure" #include "confdefs.h" $cf_utmp_includes int @@ -31230,16 +31415,16 @@ struct $cf_header x; } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:31233: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:31418: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:31236: \$? = $ac_status" >&5 + echo "$as_me:31421: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:31239: \"$ac_try\"") >&5 + { (eval echo "$as_me:31424: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:31242: \$? = $ac_status" >&5 + echo "$as_me:31427: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_have_utmp=$cf_header break @@ -31254,7 +31439,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext done fi -echo "$as_me:31257: result: $cf_cv_have_utmp" >&5 +echo "$as_me:31442: result: $cf_cv_have_utmp" >&5 echo "${ECHO_T}$cf_cv_have_utmp" >&6 if test $cf_cv_have_utmp != no ; then @@ -31269,14 +31454,14 @@ cat >>confdefs.h <<\EOF EOF if test $cf_cv_have_utmp != no ; then -echo "$as_me:31272: checking if ${cf_cv_have_utmp}.ut_host is declared" >&5 +echo "$as_me:31457: 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 31279 "configure" +#line 31464 "configure" #include "confdefs.h" #include <sys/types.h> @@ -31290,16 +31475,16 @@ struct $cf_cv_have_utmp x; char *y = &x.ut_host[0] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:31293: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:31478: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:31296: \$? = $ac_status" >&5 + echo "$as_me:31481: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:31299: \"$ac_try\"") >&5 + { (eval echo "$as_me:31484: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:31302: \$? = $ac_status" >&5 + echo "$as_me:31487: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_have_utmp_ut_host=yes else @@ -31311,7 +31496,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:31314: result: $cf_cv_have_utmp_ut_host" >&5 +echo "$as_me:31499: 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 @@ -31321,14 +31506,14 @@ EOF fi if test $cf_cv_have_utmp != no ; then -echo "$as_me:31324: checking if ${cf_cv_have_utmp}.ut_syslen is declared" >&5 +echo "$as_me:31509: 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 31331 "configure" +#line 31516 "configure" #include "confdefs.h" #include <sys/types.h> @@ -31342,16 +31527,16 @@ struct $cf_cv_have_utmp x; int y = x.ut_syslen } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:31345: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:31530: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:31348: \$? = $ac_status" >&5 + echo "$as_me:31533: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:31351: \"$ac_try\"") >&5 + { (eval echo "$as_me:31536: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:31354: \$? = $ac_status" >&5 + echo "$as_me:31539: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_have_utmp_ut_syslen=yes else @@ -31363,7 +31548,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:31366: result: $cf_cv_have_utmp_ut_syslen" >&5 +echo "$as_me:31551: 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 @@ -31373,7 +31558,7 @@ EOF fi if test $cf_cv_have_utmp != no ; then -echo "$as_me:31376: checking if ${cf_cv_have_utmp}.ut_name is declared" >&5 +echo "$as_me:31561: 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 @@ -31390,7 +31575,7 @@ cf_utmp_includes=" " for cf_header in ut_name ut_user ; do cat >conftest.$ac_ext <<_ACEOF -#line 31393 "configure" +#line 31578 "configure" #include "confdefs.h" $cf_utmp_includes int @@ -31404,16 +31589,16 @@ struct $cf_cv_have_utmp x; } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:31407: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:31592: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:31410: \$? = $ac_status" >&5 + echo "$as_me:31595: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:31413: \"$ac_try\"") >&5 + { (eval echo "$as_me:31598: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:31416: \$? = $ac_status" >&5 + echo "$as_me:31601: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_have_utmp_ut_name=$cf_header break @@ -31425,12 +31610,12 @@ rm -f conftest.$ac_objext conftest.$ac_ext done fi -echo "$as_me:31428: result: $cf_cv_have_utmp_ut_name" >&5 +echo "$as_me:31613: result: $cf_cv_have_utmp_ut_name" >&5 echo "${ECHO_T}$cf_cv_have_utmp_ut_name" >&6 case $cf_cv_have_utmp_ut_name in #(vi no) #(vi - { { echo "$as_me:31433: error: Cannot find declaration for ut.ut_name" >&5 + { { echo "$as_me:31618: 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; }; } ;; @@ -31445,7 +31630,7 @@ esac fi if test $cf_cv_have_utmp != no ; then -echo "$as_me:31448: checking for exit-status in $cf_cv_have_utmp" >&5 +echo "$as_me:31633: 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 @@ -31458,7 +31643,7 @@ for cf_result in \ ut_exit.ut_exit do cat >conftest.$ac_ext <<_ACEOF -#line 31461 "configure" +#line 31646 "configure" #include "confdefs.h" #include <sys/types.h> @@ -31472,16 +31657,16 @@ struct $cf_cv_have_utmp x; long y = x.$cf_result = 0 } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:31475: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:31660: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:31478: \$? = $ac_status" >&5 + echo "$as_me:31663: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:31481: \"$ac_try\"") >&5 + { (eval echo "$as_me:31666: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:31484: \$? = $ac_status" >&5 + echo "$as_me:31669: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_have_utmp_ut_xstatus=$cf_result break @@ -31494,7 +31679,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext done fi -echo "$as_me:31497: result: $cf_cv_have_utmp_ut_xstatus" >&5 +echo "$as_me:31682: 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 @@ -31510,14 +31695,14 @@ fi fi if test $cf_cv_have_utmp != no ; then -echo "$as_me:31513: checking if ${cf_cv_have_utmp}.ut_xtime is declared" >&5 +echo "$as_me:31698: 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 31520 "configure" +#line 31705 "configure" #include "confdefs.h" #include <sys/types.h> @@ -31531,23 +31716,23 @@ struct $cf_cv_have_utmp x; long y = x.ut_xtime = 0 } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:31534: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:31719: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:31537: \$? = $ac_status" >&5 + echo "$as_me:31722: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:31540: \"$ac_try\"") >&5 + { (eval echo "$as_me:31725: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:31543: \$? = $ac_status" >&5 + echo "$as_me:31728: \$? = $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 31550 "configure" +#line 31735 "configure" #include "confdefs.h" #include <sys/types.h> @@ -31561,16 +31746,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:31564: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:31749: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:31567: \$? = $ac_status" >&5 + echo "$as_me:31752: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:31570: \"$ac_try\"") >&5 + { (eval echo "$as_me:31755: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:31573: \$? = $ac_status" >&5 + echo "$as_me:31758: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_have_utmp_ut_xtime=define else @@ -31584,7 +31769,7 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:31587: result: $cf_cv_have_utmp_ut_xtime" >&5 +echo "$as_me:31772: 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 @@ -31603,14 +31788,14 @@ fi fi if test $cf_cv_have_utmp != no ; then -echo "$as_me:31606: checking if ${cf_cv_have_utmp}.ut_session is declared" >&5 +echo "$as_me:31791: 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 31613 "configure" +#line 31798 "configure" #include "confdefs.h" #include <sys/types.h> @@ -31624,16 +31809,16 @@ struct $cf_cv_have_utmp x; long y = x.ut_session } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:31627: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:31812: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:31630: \$? = $ac_status" >&5 + echo "$as_me:31815: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:31633: \"$ac_try\"") >&5 + { (eval echo "$as_me:31818: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:31636: \$? = $ac_status" >&5 + echo "$as_me:31821: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_have_utmp_ut_session=yes else @@ -31644,7 +31829,7 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:31647: result: $cf_cv_have_utmp_ut_session" >&5 +echo "$as_me:31832: 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 @@ -31655,7 +31840,7 @@ EOF fi fi -echo "$as_me:31658: checking if $cf_cv_have_utmp is SYSV flavor" >&5 +echo "$as_me:31843: 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 @@ -31663,7 +31848,7 @@ else test "$cf_cv_have_utmp" = "utmp" && cf_prefix="ut" || cf_prefix="utx" cat >conftest.$ac_ext <<_ACEOF -#line 31666 "configure" +#line 31851 "configure" #include "confdefs.h" #include <sys/types.h> @@ -31682,16 +31867,16 @@ struct $cf_cv_have_utmp x; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:31685: \"$ac_link\"") >&5 +if { (eval echo "$as_me:31870: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:31688: \$? = $ac_status" >&5 + echo "$as_me:31873: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:31691: \"$ac_try\"") >&5 + { (eval echo "$as_me:31876: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:31694: \$? = $ac_status" >&5 + echo "$as_me:31879: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_sysv_utmp=yes else @@ -31702,7 +31887,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:31705: result: $cf_cv_sysv_utmp" >&5 +echo "$as_me:31890: result: $cf_cv_sysv_utmp" >&5 echo "${ECHO_T}$cf_cv_sysv_utmp" >&6 test $cf_cv_sysv_utmp = yes && cat >>confdefs.h <<\EOF @@ -31711,14 +31896,14 @@ EOF fi -echo "$as_me:31714: checking if external h_errno exists" >&5 +echo "$as_me:31899: 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 31721 "configure" +#line 31906 "configure" #include "confdefs.h" #undef h_errno @@ -31733,16 +31918,16 @@ h_errno = 2 } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:31736: \"$ac_link\"") >&5 +if { (eval echo "$as_me:31921: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:31739: \$? = $ac_status" >&5 + echo "$as_me:31924: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:31742: \"$ac_try\"") >&5 + { (eval echo "$as_me:31927: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:31745: \$? = $ac_status" >&5 + echo "$as_me:31930: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_have_h_errno=yes else @@ -31753,7 +31938,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:31756: result: $cf_cv_have_h_errno" >&5 +echo "$as_me:31941: 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 @@ -31766,7 +31951,7 @@ EOF fi -echo "$as_me:31769: checking if bibp: URLs should be supported" >&5 +echo "$as_me:31954: 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. @@ -31783,14 +31968,14 @@ else use_bibp_urls=yes fi; -echo "$as_me:31786: result: $use_bibp_urls" >&5 +echo "$as_me:31971: 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:31793: checking if configuration info should be browsable" >&5 +echo "$as_me:31978: 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. @@ -31807,14 +31992,14 @@ else use_config_info=yes fi; -echo "$as_me:31810: result: $use_config_info" >&5 +echo "$as_me:31995: 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:31817: checking if new-style forms-based options screen should be used" >&5 +echo "$as_me:32002: 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. @@ -31831,14 +32016,14 @@ else use_forms_options=yes fi; -echo "$as_me:31834: result: $use_forms_options" >&5 +echo "$as_me:32019: 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:31841: checking if old-style options menu should be used" >&5 +echo "$as_me:32026: 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. @@ -31855,14 +32040,14 @@ else use_menu_options=yes fi; -echo "$as_me:31858: result: $use_menu_options" >&5 +echo "$as_me:32043: 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:31865: checking if sessions code should be used" >&5 +echo "$as_me:32050: 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. @@ -31879,7 +32064,7 @@ else use_sessions=yes fi; -echo "$as_me:31882: result: $use_sessions" >&5 +echo "$as_me:32067: result: $use_sessions" >&5 echo "${ECHO_T}$use_sessions" >&6 if test $use_sessions != no ; then @@ -31890,7 +32075,7 @@ EOF EXTRA_OBJS="$EXTRA_OBJS LYSession\$o" fi -echo "$as_me:31893: checking if session-caching code should be used" >&5 +echo "$as_me:32078: 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. @@ -31907,7 +32092,7 @@ else use_session_cache=yes fi; -echo "$as_me:31910: result: $use_session_cache" >&5 +echo "$as_me:32095: result: $use_session_cache" >&5 echo "${ECHO_T}$use_session_cache" >&6 if test $use_session_cache != no ; then @@ -31917,7 +32102,7 @@ EOF fi -echo "$as_me:31920: checking if address-list page should be used" >&5 +echo "$as_me:32105: 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. @@ -31934,14 +32119,14 @@ else use_addrlist_page=yes fi; -echo "$as_me:31937: result: $use_addrlist_page" >&5 +echo "$as_me:32122: 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:31944: checking if experimental CJK logic should be used" >&5 +echo "$as_me:32129: 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. @@ -31958,14 +32143,14 @@ else use_cjk=no fi; -echo "$as_me:31961: result: $use_cjk" >&5 +echo "$as_me:32146: 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:31968: checking if experimental Japanese UTF-8 logic should be used" >&5 +echo "$as_me:32153: 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. @@ -31982,7 +32167,7 @@ else use_ja_utf8=no fi; -echo "$as_me:31985: result: $use_ja_utf8" >&5 +echo "$as_me:32170: result: $use_ja_utf8" >&5 echo "${ECHO_T}$use_ja_utf8" >&6 if test $use_ja_utf8 != no ; then @@ -32028,7 +32213,7 @@ if test -n "$cf_searchpath/include" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 32031 "configure" +#line 32216 "configure" #include "confdefs.h" #include <stdio.h> int @@ -32040,16 +32225,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:32043: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:32228: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:32046: \$? = $ac_status" >&5 + echo "$as_me:32231: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:32049: \"$ac_try\"") >&5 + { (eval echo "$as_me:32234: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:32052: \$? = $ac_status" >&5 + echo "$as_me:32237: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -32066,7 +32251,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}:32069: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:32254: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -32107,7 +32292,7 @@ if test -n "$cf_searchpath/../include" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 32110 "configure" +#line 32295 "configure" #include "confdefs.h" #include <stdio.h> int @@ -32119,16 +32304,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:32122: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:32307: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:32125: \$? = $ac_status" >&5 + echo "$as_me:32310: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:32128: \"$ac_try\"") >&5 + { (eval echo "$as_me:32313: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:32131: \$? = $ac_status" >&5 + echo "$as_me:32316: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -32145,7 +32330,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}:32148: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:32333: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -32161,7 +32346,7 @@ echo "${as_me:-configure}:32148: testing adding $cf_add_incdir to include-path . fi else -{ { echo "$as_me:32164: error: cannot find libiconv under $withval" >&5 +{ { echo "$as_me:32349: error: cannot find libiconv under $withval" >&5 echo "$as_me: error: cannot find libiconv under $withval" >&2;} { (exit 1); exit 1; }; } fi @@ -32186,7 +32371,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}:32189: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:32374: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -32215,7 +32400,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}:32218: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:32403: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -32224,7 +32409,7 @@ echo "${as_me:-configure}:32218: testing adding $cf_add_libdir to library-path . fi else -{ { echo "$as_me:32227: error: cannot find libiconv under $withval" >&5 +{ { echo "$as_me:32412: error: cannot find libiconv under $withval" >&5 echo "$as_me: error: cannot find libiconv under $withval" >&2;} { (exit 1); exit 1; }; } fi @@ -32235,7 +32420,7 @@ done fi; - echo "$as_me:32238: checking for iconv" >&5 + echo "$as_me:32423: 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 @@ -32246,12 +32431,12 @@ else cf_cv_header_path_iconv= cf_cv_library_path_iconv= -echo "${as_me:-configure}:32249: testing Starting FIND_LINKAGE(iconv,) ..." 1>&5 +echo "${as_me:-configure}:32434: testing Starting FIND_LINKAGE(iconv,) ..." 1>&5 cf_save_LIBS="$LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 32254 "configure" +#line 32439 "configure" #include "confdefs.h" #include <stdlib.h> @@ -32270,16 +32455,16 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:32273: \"$ac_link\"") >&5 +if { (eval echo "$as_me:32458: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:32276: \$? = $ac_status" >&5 + echo "$as_me:32461: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:32279: \"$ac_try\"") >&5 + { (eval echo "$as_me:32464: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:32282: \$? = $ac_status" >&5 + echo "$as_me:32467: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_find_linkage_iconv=yes @@ -32293,7 +32478,7 @@ cat conftest.$ac_ext >&5 LIBS="-liconv $cf_save_LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 32296 "configure" +#line 32481 "configure" #include "confdefs.h" #include <stdlib.h> @@ -32312,16 +32497,16 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:32315: \"$ac_link\"") >&5 +if { (eval echo "$as_me:32500: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:32318: \$? = $ac_status" >&5 + echo "$as_me:32503: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:32321: \"$ac_try\"") >&5 + { (eval echo "$as_me:32506: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:32324: \$? = $ac_status" >&5 + echo "$as_me:32509: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_find_linkage_iconv=yes @@ -32338,9 +32523,9 @@ cat conftest.$ac_ext >&5 test -n "$verbose" && echo " find linkage for iconv library" 1>&6 -echo "${as_me:-configure}:32341: testing find linkage for iconv library ..." 1>&5 +echo "${as_me:-configure}:32526: testing find linkage for iconv library ..." 1>&5 -echo "${as_me:-configure}:32343: testing Searching for headers in FIND_LINKAGE(iconv,) ..." 1>&5 +echo "${as_me:-configure}:32528: testing Searching for headers in FIND_LINKAGE(iconv,) ..." 1>&5 cf_save_CPPFLAGS="$CPPFLAGS" cf_test_CPPFLAGS="$CPPFLAGS" @@ -32453,11 +32638,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}:32456: testing ... testing $cf_cv_header_path_iconv ..." 1>&5 +echo "${as_me:-configure}:32641: 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 32460 "configure" +#line 32645 "configure" #include "confdefs.h" #include <stdlib.h> @@ -32476,21 +32661,21 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:32479: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:32664: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:32482: \$? = $ac_status" >&5 + echo "$as_me:32667: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:32485: \"$ac_try\"") >&5 + { (eval echo "$as_me:32670: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:32488: \$? = $ac_status" >&5 + echo "$as_me:32673: \$? = $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}:32493: testing ... found iconv headers in $cf_cv_header_path_iconv ..." 1>&5 +echo "${as_me:-configure}:32678: testing ... found iconv headers in $cf_cv_header_path_iconv ..." 1>&5 cf_cv_find_linkage_iconv=maybe cf_test_CPPFLAGS="$CPPFLAGS" @@ -32508,7 +32693,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "$cf_cv_find_linkage_iconv" = maybe ; then -echo "${as_me:-configure}:32511: testing Searching for iconv library in FIND_LINKAGE(iconv,) ..." 1>&5 +echo "${as_me:-configure}:32696: testing Searching for iconv library in FIND_LINKAGE(iconv,) ..." 1>&5 cf_save_LIBS="$LIBS" cf_save_LDFLAGS="$LDFLAGS" @@ -32605,13 +32790,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}:32608: testing ... testing $cf_cv_library_path_iconv ..." 1>&5 +echo "${as_me:-configure}:32793: 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 32614 "configure" +#line 32799 "configure" #include "confdefs.h" #include <stdlib.h> @@ -32630,21 +32815,21 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:32633: \"$ac_link\"") >&5 +if { (eval echo "$as_me:32818: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:32636: \$? = $ac_status" >&5 + echo "$as_me:32821: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:32639: \"$ac_try\"") >&5 + { (eval echo "$as_me:32824: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:32642: \$? = $ac_status" >&5 + echo "$as_me:32827: \$? = $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}:32647: testing ... found iconv library in $cf_cv_library_path_iconv ..." 1>&5 +echo "${as_me:-configure}:32832: testing ... found iconv library in $cf_cv_library_path_iconv ..." 1>&5 cf_cv_find_linkage_iconv=yes cf_cv_library_file_iconv="-liconv" @@ -32684,7 +32869,7 @@ am_cv_func_iconv="no, consider installing GNU libiconv" fi fi -echo "$as_me:32687: result: $am_cv_func_iconv" >&5 +echo "$as_me:32872: result: $am_cv_func_iconv" >&5 echo "${ECHO_T}$am_cv_func_iconv" >&6 if test "$am_cv_func_iconv" = yes; then @@ -32693,14 +32878,14 @@ cat >>confdefs.h <<\EOF #define HAVE_ICONV 1 EOF - echo "$as_me:32696: checking if the declaration of iconv() needs const." >&5 + echo "$as_me:32881: 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 32703 "configure" +#line 32888 "configure" #include "confdefs.h" #include <stdlib.h> @@ -32725,16 +32910,16 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:32728: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:32913: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:32731: \$? = $ac_status" >&5 + echo "$as_me:32916: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:32734: \"$ac_try\"") >&5 + { (eval echo "$as_me:32919: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:32737: \$? = $ac_status" >&5 + echo "$as_me:32922: \$? = $ac_status" >&5 (exit $ac_status); }; }; then am_cv_proto_iconv_const=no else @@ -32744,7 +32929,7 @@ am_cv_proto_iconv_const=yes fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:32747: result: $am_cv_proto_iconv_const" >&5 +echo "$as_me:32932: 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 @@ -32786,7 +32971,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 32789 "configure" +#line 32974 "configure" #include "confdefs.h" #include <stdio.h> int @@ -32798,16 +32983,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:32801: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:32986: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:32804: \$? = $ac_status" >&5 + echo "$as_me:32989: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:32807: \"$ac_try\"") >&5 + { (eval echo "$as_me:32992: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:32810: \$? = $ac_status" >&5 + echo "$as_me:32995: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -32824,7 +33009,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}:32827: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:33012: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -32861,7 +33046,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}:32864: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:33049: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -32885,7 +33070,7 @@ curses|slang|ncurses*) esac if test "$use_dft_colors" != no ; then -echo "$as_me:32888: checking if you want to use default-colors" >&5 +echo "$as_me:33073: 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. @@ -32902,7 +33087,7 @@ else use_dft_colors=no fi; -echo "$as_me:32905: result: $use_dft_colors" >&5 +echo "$as_me:33090: result: $use_dft_colors" >&5 echo "${ECHO_T}$use_dft_colors" >&6 test $use_dft_colors = "yes" && cat >>confdefs.h <<\EOF @@ -32911,7 +33096,7 @@ EOF fi -echo "$as_me:32914: checking if experimental keyboard-layout logic should be used" >&5 +echo "$as_me:33099: 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. @@ -32928,14 +33113,14 @@ else use_kbd_layout=no fi; -echo "$as_me:32931: result: $use_kbd_layout" >&5 +echo "$as_me:33116: 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:32938: checking if experimental nested-table logic should be used" >&5 +echo "$as_me:33123: 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. @@ -32952,14 +33137,14 @@ else use_nested_tables=no fi; -echo "$as_me:32955: result: $use_nested_tables" >&5 +echo "$as_me:33140: 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:32962: checking if alternative line-edit bindings should be used" >&5 +echo "$as_me:33147: 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. @@ -32976,14 +33161,14 @@ else use_alt_bindings=yes fi; -echo "$as_me:32979: result: $use_alt_bindings" >&5 +echo "$as_me:33164: 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:32986: checking if ascii case-conversion should be used" >&5 +echo "$as_me:33171: 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. @@ -33000,14 +33185,14 @@ else use_ascii_ctypes=yes fi; -echo "$as_me:33003: result: $use_ascii_ctypes" >&5 +echo "$as_me:33188: 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:33010: checking if you want to use extended HTML DTD logic" >&5 +echo "$as_me:33195: 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. @@ -33024,14 +33209,14 @@ else use_ext_htmldtd=yes fi; -echo "$as_me:33027: result: $use_ext_htmldtd" >&5 +echo "$as_me:33212: 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:33034: checking if file-upload logic should be used" >&5 +echo "$as_me:33219: 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. @@ -33048,14 +33233,14 @@ else use_file_upload=yes fi; -echo "$as_me:33051: result: $use_file_upload" >&5 +echo "$as_me:33236: 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:33058: checking if IDNA support should be used" >&5 +echo "$as_me:33243: 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. @@ -33072,7 +33257,7 @@ else use_idna=yes fi; -echo "$as_me:33075: result: $use_idna" >&5 +echo "$as_me:33260: result: $use_idna" >&5 echo "${ECHO_T}$use_idna" >&6 if test "$use_idna" = yes ; then @@ -33111,7 +33296,7 @@ if test -n "$cf_searchpath/include" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 33114 "configure" +#line 33299 "configure" #include "confdefs.h" #include <stdio.h> int @@ -33123,16 +33308,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:33126: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:33311: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:33129: \$? = $ac_status" >&5 + echo "$as_me:33314: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:33132: \"$ac_try\"") >&5 + { (eval echo "$as_me:33317: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:33135: \$? = $ac_status" >&5 + echo "$as_me:33320: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -33149,7 +33334,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}:33152: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:33337: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -33190,7 +33375,7 @@ if test -n "$cf_searchpath/../include" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 33193 "configure" +#line 33378 "configure" #include "confdefs.h" #include <stdio.h> int @@ -33202,16 +33387,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:33205: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:33390: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:33208: \$? = $ac_status" >&5 + echo "$as_me:33393: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:33211: \"$ac_try\"") >&5 + { (eval echo "$as_me:33396: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:33214: \$? = $ac_status" >&5 + echo "$as_me:33399: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -33228,7 +33413,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}:33231: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:33416: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -33244,7 +33429,7 @@ echo "${as_me:-configure}:33231: testing adding $cf_add_incdir to include-path . fi else -{ { echo "$as_me:33247: error: cannot find under $use_idna" >&5 +{ { echo "$as_me:33432: error: cannot find under $use_idna" >&5 echo "$as_me: error: cannot find under $use_idna" >&2;} { (exit 1); exit 1; }; } fi @@ -33269,7 +33454,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}:33272: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:33457: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -33298,7 +33483,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}:33301: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:33486: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -33307,7 +33492,7 @@ echo "${as_me:-configure}:33301: testing adding $cf_add_libdir to library-path . fi else -{ { echo "$as_me:33310: error: cannot find under $use_idna" >&5 +{ { echo "$as_me:33495: error: cannot find under $use_idna" >&5 echo "$as_me: error: cannot find under $use_idna" >&2;} { (exit 1); exit 1; }; } fi @@ -33321,12 +33506,12 @@ done cf_cv_header_path_idn= cf_cv_library_path_idn= -echo "${as_me:-configure}:33324: testing Starting FIND_LINKAGE(idn,) ..." 1>&5 +echo "${as_me:-configure}:33509: testing Starting FIND_LINKAGE(idn,) ..." 1>&5 cf_save_LIBS="$LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 33329 "configure" +#line 33514 "configure" #include "confdefs.h" #include <stdio.h> @@ -33344,16 +33529,16 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:33347: \"$ac_link\"") >&5 +if { (eval echo "$as_me:33532: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:33350: \$? = $ac_status" >&5 + echo "$as_me:33535: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:33353: \"$ac_try\"") >&5 + { (eval echo "$as_me:33538: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:33356: \$? = $ac_status" >&5 + echo "$as_me:33541: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_find_linkage_idn=yes @@ -33367,7 +33552,7 @@ cat conftest.$ac_ext >&5 LIBS="-lidn $LIBICONV $cf_save_LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 33370 "configure" +#line 33555 "configure" #include "confdefs.h" #include <stdio.h> @@ -33385,16 +33570,16 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:33388: \"$ac_link\"") >&5 +if { (eval echo "$as_me:33573: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:33391: \$? = $ac_status" >&5 + echo "$as_me:33576: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:33394: \"$ac_try\"") >&5 + { (eval echo "$as_me:33579: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:33397: \$? = $ac_status" >&5 + echo "$as_me:33582: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_find_linkage_idn=yes @@ -33411,9 +33596,9 @@ cat conftest.$ac_ext >&5 test -n "$verbose" && echo " find linkage for idn library" 1>&6 -echo "${as_me:-configure}:33414: testing find linkage for idn library ..." 1>&5 +echo "${as_me:-configure}:33599: testing find linkage for idn library ..." 1>&5 -echo "${as_me:-configure}:33416: testing Searching for headers in FIND_LINKAGE(idn,) ..." 1>&5 +echo "${as_me:-configure}:33601: testing Searching for headers in FIND_LINKAGE(idn,) ..." 1>&5 cf_save_CPPFLAGS="$CPPFLAGS" cf_test_CPPFLAGS="$CPPFLAGS" @@ -33526,11 +33711,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}:33529: testing ... testing $cf_cv_header_path_idn ..." 1>&5 +echo "${as_me:-configure}:33714: 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 33533 "configure" +#line 33718 "configure" #include "confdefs.h" #include <stdio.h> @@ -33548,21 +33733,21 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:33551: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:33736: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:33554: \$? = $ac_status" >&5 + echo "$as_me:33739: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:33557: \"$ac_try\"") >&5 + { (eval echo "$as_me:33742: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:33560: \$? = $ac_status" >&5 + echo "$as_me:33745: \$? = $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}:33565: testing ... found idn headers in $cf_cv_header_path_idn ..." 1>&5 +echo "${as_me:-configure}:33750: testing ... found idn headers in $cf_cv_header_path_idn ..." 1>&5 cf_cv_find_linkage_idn=maybe cf_test_CPPFLAGS="$CPPFLAGS" @@ -33580,7 +33765,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "$cf_cv_find_linkage_idn" = maybe ; then -echo "${as_me:-configure}:33583: testing Searching for idn library in FIND_LINKAGE(idn,) ..." 1>&5 +echo "${as_me:-configure}:33768: testing Searching for idn library in FIND_LINKAGE(idn,) ..." 1>&5 cf_save_LIBS="$LIBS" cf_save_LDFLAGS="$LDFLAGS" @@ -33677,13 +33862,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}:33680: testing ... testing $cf_cv_library_path_idn ..." 1>&5 +echo "${as_me:-configure}:33865: 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 33686 "configure" +#line 33871 "configure" #include "confdefs.h" #include <stdio.h> @@ -33701,21 +33886,21 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:33704: \"$ac_link\"") >&5 +if { (eval echo "$as_me:33889: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:33707: \$? = $ac_status" >&5 + echo "$as_me:33892: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:33710: \"$ac_try\"") >&5 + { (eval echo "$as_me:33895: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:33713: \$? = $ac_status" >&5 + echo "$as_me:33898: \$? = $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}:33718: testing ... found idn library in $cf_cv_library_path_idn ..." 1>&5 +echo "${as_me:-configure}:33903: testing ... found idn library in $cf_cv_library_path_idn ..." 1>&5 cf_cv_find_linkage_idn=yes cf_cv_library_file_idn="-lidn" @@ -33774,7 +33959,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 33777 "configure" +#line 33962 "configure" #include "confdefs.h" #include <stdio.h> int @@ -33786,16 +33971,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:33789: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:33974: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:33792: \$? = $ac_status" >&5 + echo "$as_me:33977: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:33795: \"$ac_try\"") >&5 + { (eval echo "$as_me:33980: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:33798: \$? = $ac_status" >&5 + echo "$as_me:33983: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -33812,7 +33997,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}:33815: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:34000: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -33846,7 +34031,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}:33849: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:34034: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -33871,7 +34056,7 @@ done LIBS="$cf_add_libs" else -{ echo "$as_me:33874: WARNING: Cannot find idn library" >&5 +{ echo "$as_me:34059: WARNING: Cannot find idn library" >&5 echo "$as_me: WARNING: Cannot find idn library" >&2;} fi @@ -33885,7 +34070,7 @@ fi fi -echo "$as_me:33888: checking if element-justification logic should be used" >&5 +echo "$as_me:34073: 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. @@ -33902,14 +34087,14 @@ else use_justify_elts=yes fi; -echo "$as_me:33905: result: $use_justify_elts" >&5 +echo "$as_me:34090: 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:33912: checking if partial-display should be used" >&5 +echo "$as_me:34097: 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. @@ -33926,14 +34111,14 @@ else use_partial_display=yes fi; -echo "$as_me:33929: result: $use_partial_display" >&5 +echo "$as_me:34114: 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:33936: checking if persistent-cookie logic should be used" >&5 +echo "$as_me:34121: 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. @@ -33950,14 +34135,14 @@ else use_filed_cookies=yes fi; -echo "$as_me:33953: result: $use_filed_cookies" >&5 +echo "$as_me:34138: 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:33960: checking if html source should be colorized" >&5 +echo "$as_me:34145: 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. @@ -33974,14 +34159,14 @@ else use_prettysrc=yes fi; -echo "$as_me:33977: result: $use_prettysrc" >&5 +echo "$as_me:34162: 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:33984: checking if progress-bar code should be used" >&5 +echo "$as_me:34169: 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. @@ -33998,14 +34183,14 @@ else use_progressbar=yes fi; -echo "$as_me:34001: result: $use_progressbar" >&5 +echo "$as_me:34186: 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:34008: checking if read-progress message should show ETA" >&5 +echo "$as_me:34193: 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. @@ -34022,14 +34207,14 @@ else use_read_eta=yes fi; -echo "$as_me:34025: result: $use_read_eta" >&5 +echo "$as_me:34210: 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:34032: checking if source caching should be used" >&5 +echo "$as_me:34217: 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. @@ -34046,14 +34231,14 @@ else use_source_cache=yes fi; -echo "$as_me:34049: result: $use_source_cache" >&5 +echo "$as_me:34234: 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:34056: checking if scrollbar code should be used" >&5 +echo "$as_me:34241: 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. @@ -34070,10 +34255,10 @@ else use_scrollbar=yes fi; -echo "$as_me:34073: result: $use_scrollbar" >&5 +echo "$as_me:34258: result: $use_scrollbar" >&5 echo "${ECHO_T}$use_scrollbar" >&6 -echo "$as_me:34076: checking if charset-selection logic should be used" >&5 +echo "$as_me:34261: 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. @@ -34090,14 +34275,14 @@ else use_charset_choice=no fi; -echo "$as_me:34093: result: $use_charset_choice" >&5 +echo "$as_me:34278: 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:34100: checking if you want to use external commands" >&5 +echo "$as_me:34285: 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. @@ -34114,7 +34299,7 @@ else use_externs=no fi; -echo "$as_me:34117: result: $use_externs" >&5 +echo "$as_me:34302: result: $use_externs" >&5 echo "${ECHO_T}$use_externs" >&6 if test $use_externs != "no" ; then @@ -34125,7 +34310,7 @@ EOF EXTRA_OBJS="$EXTRA_OBJS LYExtern\$o" fi -echo "$as_me:34128: checking if you want to use setfont support" >&5 +echo "$as_me:34313: 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. @@ -34142,7 +34327,7 @@ else use_setfont=no fi; -echo "$as_me:34145: result: $use_setfont" >&5 +echo "$as_me:34330: result: $use_setfont" >&5 echo "${ECHO_T}$use_setfont" >&6 if test $use_setfont = yes ; then case $host_os in @@ -34153,7 +34338,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:34156: checking for $ac_word" >&5 +echo "$as_me:34341: 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 @@ -34170,7 +34355,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:34173: found $ac_dir/$ac_word" >&5 + echo "$as_me:34358: found $ac_dir/$ac_word" >&5 break fi done @@ -34181,10 +34366,10 @@ fi SETFONT=$ac_cv_path_SETFONT if test -n "$SETFONT"; then - echo "$as_me:34184: result: $SETFONT" >&5 + echo "$as_me:34369: result: $SETFONT" >&5 echo "${ECHO_T}$SETFONT" >&6 else - echo "$as_me:34187: result: no" >&5 + echo "$as_me:34372: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -34243,7 +34428,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me:-configure}:34246: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me:-configure}:34431: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define SETFONT_PATH "$cf_path_prog" @@ -34261,19 +34446,19 @@ fi SETFONT=built-in test -n "$verbose" && echo " Assume $host_os has font-switching" 1>&6 -echo "${as_me:-configure}:34264: testing Assume $host_os has font-switching ..." 1>&5 +echo "${as_me:-configure}:34449: 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}:34271: testing Assume $host_os has no font-switching ..." 1>&5 +echo "${as_me:-configure}:34456: testing Assume $host_os has no font-switching ..." 1>&5 ;; esac if test -z "$SETFONT" ; then - { echo "$as_me:34276: WARNING: Cannot find a font-setting program" >&5 + { echo "$as_me:34461: WARNING: Cannot find a font-setting program" >&5 echo "$as_me: WARNING: Cannot find a font-setting program" >&2;} elif test "$SETFONT" != unknown ; then @@ -34284,7 +34469,7 @@ EOF fi fi -echo "$as_me:34287: checking if you want cgi-link support" >&5 +echo "$as_me:34472: 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. @@ -34301,10 +34486,10 @@ EOF else enableval=no fi; -echo "$as_me:34304: result: $enableval" >&5 +echo "$as_me:34489: result: $enableval" >&5 echo "${ECHO_T}$enableval" >&6 -echo "$as_me:34307: checking if you want change-exec support" >&5 +echo "$as_me:34492: 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. @@ -34321,14 +34506,14 @@ else use_change_exec=no fi; -echo "$as_me:34324: result: $use_change_exec" >&5 +echo "$as_me:34509: 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:34331: checking if you want exec-links support" >&5 +echo "$as_me:34516: 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. @@ -34345,14 +34530,14 @@ else use_exec_links=$enableval fi; -echo "$as_me:34348: result: $use_exec_links" >&5 +echo "$as_me:34533: 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:34355: checking if you want exec-scripts support" >&5 +echo "$as_me:34540: 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. @@ -34369,14 +34554,14 @@ else use_exec_scripts=$enableval fi; -echo "$as_me:34372: result: $use_exec_scripts" >&5 +echo "$as_me:34557: 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:34379: checking if you want internal-links feature" >&5 +echo "$as_me:34564: 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. @@ -34393,14 +34578,14 @@ else use_internal_links=no fi; -echo "$as_me:34396: result: $use_internal_links" >&5 +echo "$as_me:34581: 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:34403: checking if you want to fork NSL requests" >&5 +echo "$as_me:34588: 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. @@ -34417,7 +34602,7 @@ else use_nsl_fork=no fi; -echo "$as_me:34420: result: $use_nsl_fork" >&5 +echo "$as_me:34605: result: $use_nsl_fork" >&5 echo "${ECHO_T}$use_nsl_fork" >&6 if test $use_nsl_fork = yes ; then case $host_os in @@ -34438,7 +34623,7 @@ EOF esac fi -echo "$as_me:34441: checking if you want to log URL requests via syslog" >&5 +echo "$as_me:34626: 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. @@ -34455,14 +34640,14 @@ else use_syslog=no fi; -echo "$as_me:34458: result: $use_syslog" >&5 +echo "$as_me:34643: 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:34465: checking if you want to underline links" >&5 +echo "$as_me:34650: 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. @@ -34479,7 +34664,7 @@ else use_underline=no fi; -echo "$as_me:34482: result: $use_underline" >&5 +echo "$as_me:34667: result: $use_underline" >&5 echo "${ECHO_T}$use_underline" >&6 test $use_underline = yes && cat >>confdefs.h <<\EOF @@ -34491,7 +34676,7 @@ cat >>confdefs.h <<\EOF #define UNDERLINE_LINKS 0 EOF -echo "$as_me:34494: checking if help files should be gzip'ed" >&5 +echo "$as_me:34679: 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. @@ -34508,10 +34693,10 @@ else use_gzip_help=no fi; -echo "$as_me:34511: result: $use_gzip_help" >&5 +echo "$as_me:34696: result: $use_gzip_help" >&5 echo "${ECHO_T}$use_gzip_help" >&6 -echo "$as_me:34514: checking if you want to use libbz2 for decompression of some bzip2 files" >&5 +echo "$as_me:34699: 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. @@ -34521,7 +34706,7 @@ if test "${with_bzlib+set}" = set; then else use_bzlib=no fi; -echo "$as_me:34524: result: $use_bzlib" >&5 +echo "$as_me:34709: result: $use_bzlib" >&5 echo "${ECHO_T}$use_bzlib" >&6 if test ".$use_bzlib" != ".no" ; then @@ -34560,7 +34745,7 @@ if test -n "$cf_searchpath/include" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 34563 "configure" +#line 34748 "configure" #include "confdefs.h" #include <stdio.h> int @@ -34572,16 +34757,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:34575: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:34760: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:34578: \$? = $ac_status" >&5 + echo "$as_me:34763: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:34581: \"$ac_try\"") >&5 + { (eval echo "$as_me:34766: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:34584: \$? = $ac_status" >&5 + echo "$as_me:34769: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -34598,7 +34783,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}:34601: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:34786: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -34639,7 +34824,7 @@ if test -n "$cf_searchpath/../include" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 34642 "configure" +#line 34827 "configure" #include "confdefs.h" #include <stdio.h> int @@ -34651,16 +34836,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:34654: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:34839: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:34657: \$? = $ac_status" >&5 + echo "$as_me:34842: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:34660: \"$ac_try\"") >&5 + { (eval echo "$as_me:34845: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:34663: \$? = $ac_status" >&5 + echo "$as_me:34848: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -34677,7 +34862,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}:34680: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:34865: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -34693,7 +34878,7 @@ echo "${as_me:-configure}:34680: testing adding $cf_add_incdir to include-path . fi else -{ { echo "$as_me:34696: error: cannot find under $use_bzlib" >&5 +{ { echo "$as_me:34881: error: cannot find under $use_bzlib" >&5 echo "$as_me: error: cannot find under $use_bzlib" >&2;} { (exit 1); exit 1; }; } fi @@ -34718,7 +34903,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}:34721: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:34906: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -34747,7 +34932,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}:34750: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:34935: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -34756,7 +34941,7 @@ echo "${as_me:-configure}:34750: testing adding $cf_add_libdir to library-path . fi else -{ { echo "$as_me:34759: error: cannot find under $use_bzlib" >&5 +{ { echo "$as_me:34944: error: cannot find under $use_bzlib" >&5 echo "$as_me: error: cannot find under $use_bzlib" >&2;} { (exit 1); exit 1; }; } fi @@ -34770,12 +34955,12 @@ done cf_cv_header_path_bz2= cf_cv_library_path_bz2= -echo "${as_me:-configure}:34773: testing Starting FIND_LINKAGE(bz2,bzlib) ..." 1>&5 +echo "${as_me:-configure}:34958: testing Starting FIND_LINKAGE(bz2,bzlib) ..." 1>&5 cf_save_LIBS="$LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 34778 "configure" +#line 34963 "configure" #include "confdefs.h" #include <stdio.h> @@ -34792,16 +34977,16 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:34795: \"$ac_link\"") >&5 +if { (eval echo "$as_me:34980: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:34798: \$? = $ac_status" >&5 + echo "$as_me:34983: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:34801: \"$ac_try\"") >&5 + { (eval echo "$as_me:34986: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:34804: \$? = $ac_status" >&5 + echo "$as_me:34989: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_find_linkage_bz2=yes @@ -34815,7 +35000,7 @@ cat conftest.$ac_ext >&5 LIBS="-lbz2 $cf_save_LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 34818 "configure" +#line 35003 "configure" #include "confdefs.h" #include <stdio.h> @@ -34832,16 +35017,16 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:34835: \"$ac_link\"") >&5 +if { (eval echo "$as_me:35020: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:34838: \$? = $ac_status" >&5 + echo "$as_me:35023: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:34841: \"$ac_try\"") >&5 + { (eval echo "$as_me:35026: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:34844: \$? = $ac_status" >&5 + echo "$as_me:35029: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_find_linkage_bz2=yes @@ -34858,9 +35043,9 @@ cat conftest.$ac_ext >&5 test -n "$verbose" && echo " find linkage for bz2 library" 1>&6 -echo "${as_me:-configure}:34861: testing find linkage for bz2 library ..." 1>&5 +echo "${as_me:-configure}:35046: testing find linkage for bz2 library ..." 1>&5 -echo "${as_me:-configure}:34863: testing Searching for headers in FIND_LINKAGE(bz2,bzlib) ..." 1>&5 +echo "${as_me:-configure}:35048: testing Searching for headers in FIND_LINKAGE(bz2,bzlib) ..." 1>&5 cf_save_CPPFLAGS="$CPPFLAGS" cf_test_CPPFLAGS="$CPPFLAGS" @@ -34973,11 +35158,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}:34976: testing ... testing $cf_cv_header_path_bz2 ..." 1>&5 +echo "${as_me:-configure}:35161: 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 34980 "configure" +#line 35165 "configure" #include "confdefs.h" #include <stdio.h> @@ -34994,21 +35179,21 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:34997: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:35182: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:35000: \$? = $ac_status" >&5 + echo "$as_me:35185: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:35003: \"$ac_try\"") >&5 + { (eval echo "$as_me:35188: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:35006: \$? = $ac_status" >&5 + echo "$as_me:35191: \$? = $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}:35011: testing ... found bz2 headers in $cf_cv_header_path_bz2 ..." 1>&5 +echo "${as_me:-configure}:35196: testing ... found bz2 headers in $cf_cv_header_path_bz2 ..." 1>&5 cf_cv_find_linkage_bz2=maybe cf_test_CPPFLAGS="$CPPFLAGS" @@ -35026,7 +35211,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "$cf_cv_find_linkage_bz2" = maybe ; then -echo "${as_me:-configure}:35029: testing Searching for bz2 library in FIND_LINKAGE(bz2,bzlib) ..." 1>&5 +echo "${as_me:-configure}:35214: testing Searching for bz2 library in FIND_LINKAGE(bz2,bzlib) ..." 1>&5 cf_save_LIBS="$LIBS" cf_save_LDFLAGS="$LDFLAGS" @@ -35034,7 +35219,7 @@ echo "${as_me:-configure}:35029: testing Searching for bz2 library in FIND_LINKA CPPFLAGS="$cf_test_CPPFLAGS" LIBS="-lbz2 $cf_save_LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 35037 "configure" +#line 35222 "configure" #include "confdefs.h" #include <stdio.h> @@ -35051,21 +35236,21 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:35054: \"$ac_link\"") >&5 +if { (eval echo "$as_me:35239: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:35057: \$? = $ac_status" >&5 + echo "$as_me:35242: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:35060: \"$ac_try\"") >&5 + { (eval echo "$as_me:35245: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:35063: \$? = $ac_status" >&5 + echo "$as_me:35248: \$? = $ac_status" >&5 (exit $ac_status); }; }; then test -n "$verbose" && echo " ... found bz2 library in system" 1>&6 -echo "${as_me:-configure}:35068: testing ... found bz2 library in system ..." 1>&5 +echo "${as_me:-configure}:35253: testing ... found bz2 library in system ..." 1>&5 cf_cv_find_linkage_bz2=yes else @@ -35168,13 +35353,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}:35171: testing ... testing $cf_cv_library_path_bz2 ..." 1>&5 +echo "${as_me:-configure}:35356: 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 35177 "configure" +#line 35362 "configure" #include "confdefs.h" #include <stdio.h> @@ -35191,21 +35376,21 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:35194: \"$ac_link\"") >&5 +if { (eval echo "$as_me:35379: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:35197: \$? = $ac_status" >&5 + echo "$as_me:35382: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:35200: \"$ac_try\"") >&5 + { (eval echo "$as_me:35385: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:35203: \$? = $ac_status" >&5 + echo "$as_me:35388: \$? = $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}:35208: testing ... found bz2 library in $cf_cv_library_path_bz2 ..." 1>&5 +echo "${as_me:-configure}:35393: testing ... found bz2 library in $cf_cv_library_path_bz2 ..." 1>&5 cf_cv_find_linkage_bz2=yes cf_cv_library_file_bz2="-lbz2" @@ -35264,7 +35449,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 35267 "configure" +#line 35452 "configure" #include "confdefs.h" #include <stdio.h> int @@ -35276,16 +35461,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:35279: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:35464: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:35282: \$? = $ac_status" >&5 + echo "$as_me:35467: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:35285: \"$ac_try\"") >&5 + { (eval echo "$as_me:35470: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:35288: \$? = $ac_status" >&5 + echo "$as_me:35473: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -35302,7 +35487,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}:35305: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:35490: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -35336,7 +35521,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}:35339: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:35524: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -35361,7 +35546,7 @@ done LIBS="$cf_add_libs" else -{ echo "$as_me:35364: WARNING: Cannot find bz2 library" >&5 +{ echo "$as_me:35549: WARNING: Cannot find bz2 library" >&5 echo "$as_me: WARNING: Cannot find bz2 library" >&2;} fi @@ -35372,7 +35557,7 @@ EOF fi -echo "$as_me:35375: checking if you want to use zlib for decompression of some gzip files" >&5 +echo "$as_me:35560: 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. @@ -35382,7 +35567,7 @@ if test "${with_zlib+set}" = set; then else use_zlib=no fi; -echo "$as_me:35385: result: $use_zlib" >&5 +echo "$as_me:35570: result: $use_zlib" >&5 echo "${ECHO_T}$use_zlib" >&6 if test ".$use_zlib" != ".no" ; then @@ -35421,7 +35606,7 @@ if test -n "$cf_searchpath/include" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 35424 "configure" +#line 35609 "configure" #include "confdefs.h" #include <stdio.h> int @@ -35433,16 +35618,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:35436: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:35621: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:35439: \$? = $ac_status" >&5 + echo "$as_me:35624: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:35442: \"$ac_try\"") >&5 + { (eval echo "$as_me:35627: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:35445: \$? = $ac_status" >&5 + echo "$as_me:35630: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -35459,7 +35644,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}:35462: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:35647: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -35500,7 +35685,7 @@ if test -n "$cf_searchpath/../include" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 35503 "configure" +#line 35688 "configure" #include "confdefs.h" #include <stdio.h> int @@ -35512,16 +35697,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:35515: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:35700: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:35518: \$? = $ac_status" >&5 + echo "$as_me:35703: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:35521: \"$ac_try\"") >&5 + { (eval echo "$as_me:35706: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:35524: \$? = $ac_status" >&5 + echo "$as_me:35709: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -35538,7 +35723,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}:35541: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:35726: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -35554,7 +35739,7 @@ echo "${as_me:-configure}:35541: testing adding $cf_add_incdir to include-path . fi else -{ { echo "$as_me:35557: error: cannot find under $use_zlib" >&5 +{ { echo "$as_me:35742: error: cannot find under $use_zlib" >&5 echo "$as_me: error: cannot find under $use_zlib" >&2;} { (exit 1); exit 1; }; } fi @@ -35579,7 +35764,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}:35582: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:35767: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -35608,7 +35793,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}:35611: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:35796: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -35617,7 +35802,7 @@ echo "${as_me:-configure}:35611: testing adding $cf_add_libdir to library-path . fi else -{ { echo "$as_me:35620: error: cannot find under $use_zlib" >&5 +{ { echo "$as_me:35805: error: cannot find under $use_zlib" >&5 echo "$as_me: error: cannot find under $use_zlib" >&2;} { (exit 1); exit 1; }; } fi @@ -35631,12 +35816,12 @@ done cf_cv_header_path_z= cf_cv_library_path_z= -echo "${as_me:-configure}:35634: testing Starting FIND_LINKAGE(z,zlib) ..." 1>&5 +echo "${as_me:-configure}:35819: testing Starting FIND_LINKAGE(z,zlib) ..." 1>&5 cf_save_LIBS="$LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 35639 "configure" +#line 35824 "configure" #include "confdefs.h" #include <zlib.h> @@ -35652,16 +35837,16 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:35655: \"$ac_link\"") >&5 +if { (eval echo "$as_me:35840: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:35658: \$? = $ac_status" >&5 + echo "$as_me:35843: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:35661: \"$ac_try\"") >&5 + { (eval echo "$as_me:35846: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:35664: \$? = $ac_status" >&5 + echo "$as_me:35849: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_find_linkage_z=yes @@ -35675,7 +35860,7 @@ cat conftest.$ac_ext >&5 LIBS="-lz $cf_save_LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 35678 "configure" +#line 35863 "configure" #include "confdefs.h" #include <zlib.h> @@ -35691,16 +35876,16 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:35694: \"$ac_link\"") >&5 +if { (eval echo "$as_me:35879: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:35697: \$? = $ac_status" >&5 + echo "$as_me:35882: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:35700: \"$ac_try\"") >&5 + { (eval echo "$as_me:35885: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:35703: \$? = $ac_status" >&5 + echo "$as_me:35888: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_find_linkage_z=yes @@ -35717,9 +35902,9 @@ cat conftest.$ac_ext >&5 test -n "$verbose" && echo " find linkage for z library" 1>&6 -echo "${as_me:-configure}:35720: testing find linkage for z library ..." 1>&5 +echo "${as_me:-configure}:35905: testing find linkage for z library ..." 1>&5 -echo "${as_me:-configure}:35722: testing Searching for headers in FIND_LINKAGE(z,zlib) ..." 1>&5 +echo "${as_me:-configure}:35907: testing Searching for headers in FIND_LINKAGE(z,zlib) ..." 1>&5 cf_save_CPPFLAGS="$CPPFLAGS" cf_test_CPPFLAGS="$CPPFLAGS" @@ -35832,11 +36017,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}:35835: testing ... testing $cf_cv_header_path_z ..." 1>&5 +echo "${as_me:-configure}:36020: 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 35839 "configure" +#line 36024 "configure" #include "confdefs.h" #include <zlib.h> @@ -35852,21 +36037,21 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:35855: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:36040: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:35858: \$? = $ac_status" >&5 + echo "$as_me:36043: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:35861: \"$ac_try\"") >&5 + { (eval echo "$as_me:36046: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:35864: \$? = $ac_status" >&5 + echo "$as_me:36049: \$? = $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}:35869: testing ... found z headers in $cf_cv_header_path_z ..." 1>&5 +echo "${as_me:-configure}:36054: testing ... found z headers in $cf_cv_header_path_z ..." 1>&5 cf_cv_find_linkage_z=maybe cf_test_CPPFLAGS="$CPPFLAGS" @@ -35884,7 +36069,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "$cf_cv_find_linkage_z" = maybe ; then -echo "${as_me:-configure}:35887: testing Searching for z library in FIND_LINKAGE(z,zlib) ..." 1>&5 +echo "${as_me:-configure}:36072: testing Searching for z library in FIND_LINKAGE(z,zlib) ..." 1>&5 cf_save_LIBS="$LIBS" cf_save_LDFLAGS="$LDFLAGS" @@ -35892,7 +36077,7 @@ echo "${as_me:-configure}:35887: testing Searching for z library in FIND_LINKAGE CPPFLAGS="$cf_test_CPPFLAGS" LIBS="-lz $cf_save_LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 35895 "configure" +#line 36080 "configure" #include "confdefs.h" #include <zlib.h> @@ -35908,21 +36093,21 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:35911: \"$ac_link\"") >&5 +if { (eval echo "$as_me:36096: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:35914: \$? = $ac_status" >&5 + echo "$as_me:36099: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:35917: \"$ac_try\"") >&5 + { (eval echo "$as_me:36102: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:35920: \$? = $ac_status" >&5 + echo "$as_me:36105: \$? = $ac_status" >&5 (exit $ac_status); }; }; then test -n "$verbose" && echo " ... found z library in system" 1>&6 -echo "${as_me:-configure}:35925: testing ... found z library in system ..." 1>&5 +echo "${as_me:-configure}:36110: testing ... found z library in system ..." 1>&5 cf_cv_find_linkage_z=yes else @@ -36025,13 +36210,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}:36028: testing ... testing $cf_cv_library_path_z ..." 1>&5 +echo "${as_me:-configure}:36213: 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 36034 "configure" +#line 36219 "configure" #include "confdefs.h" #include <zlib.h> @@ -36047,21 +36232,21 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:36050: \"$ac_link\"") >&5 +if { (eval echo "$as_me:36235: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:36053: \$? = $ac_status" >&5 + echo "$as_me:36238: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:36056: \"$ac_try\"") >&5 + { (eval echo "$as_me:36241: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:36059: \$? = $ac_status" >&5 + echo "$as_me:36244: \$? = $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}:36064: testing ... found z library in $cf_cv_library_path_z ..." 1>&5 +echo "${as_me:-configure}:36249: testing ... found z library in $cf_cv_library_path_z ..." 1>&5 cf_cv_find_linkage_z=yes cf_cv_library_file_z="-lz" @@ -36120,7 +36305,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 36123 "configure" +#line 36308 "configure" #include "confdefs.h" #include <stdio.h> int @@ -36132,16 +36317,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:36135: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:36320: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:36138: \$? = $ac_status" >&5 + echo "$as_me:36323: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:36141: \"$ac_try\"") >&5 + { (eval echo "$as_me:36326: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:36144: \$? = $ac_status" >&5 + echo "$as_me:36329: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -36158,7 +36343,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}:36161: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:36346: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -36192,7 +36377,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}:36195: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:36380: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -36217,7 +36402,7 @@ done LIBS="$cf_add_libs" else -{ echo "$as_me:36220: WARNING: Cannot find z library" >&5 +{ echo "$as_me:36405: WARNING: Cannot find z library" >&5 echo "$as_me: WARNING: Cannot find z library" >&2;} fi @@ -36226,13 +36411,13 @@ for ac_func in \ do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` -echo "$as_me:36229: checking for $ac_func" >&5 +echo "$as_me:36414: 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 36235 "configure" +#line 36420 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. */ @@ -36263,16 +36448,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:36266: \"$ac_link\"") >&5 +if { (eval echo "$as_me:36451: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:36269: \$? = $ac_status" >&5 + echo "$as_me:36454: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:36272: \"$ac_try\"") >&5 + { (eval echo "$as_me:36457: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:36275: \$? = $ac_status" >&5 + echo "$as_me:36460: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else @@ -36282,7 +36467,7 @@ eval "$as_ac_var=no" fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:36285: result: `eval echo '${'$as_ac_var'}'`" >&5 +echo "$as_me:36470: 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 @@ -36299,7 +36484,7 @@ EOF fi -echo "$as_me:36302: checking if you want to exclude FINGER code" >&5 +echo "$as_me:36487: 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. @@ -36316,14 +36501,14 @@ else use_finger=no fi; -echo "$as_me:36319: result: $use_finger" >&5 +echo "$as_me:36504: 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:36326: checking if you want to exclude GOPHER code" >&5 +echo "$as_me:36511: 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. @@ -36340,14 +36525,14 @@ else use_gopher=no fi; -echo "$as_me:36343: result: $use_gopher" >&5 +echo "$as_me:36528: 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:36350: checking if you want to exclude NEWS code" >&5 +echo "$as_me:36535: 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. @@ -36364,14 +36549,14 @@ else use_news=no fi; -echo "$as_me:36367: result: $use_news" >&5 +echo "$as_me:36552: 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:36374: checking if you want to exclude FTP code" >&5 +echo "$as_me:36559: 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. @@ -36388,14 +36573,14 @@ else use_ftp=no fi; -echo "$as_me:36391: result: $use_ftp" >&5 +echo "$as_me:36576: 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:36398: checking if you want to include WAIS code" >&5 +echo "$as_me:36583: 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. @@ -36412,13 +36597,13 @@ else use_wais=no fi; -echo "$as_me:36415: result: $use_wais" >&5 +echo "$as_me:36600: result: $use_wais" >&5 echo "${ECHO_T}$use_wais" >&6 MAKE_WAIS="#" if test $use_wais != "no" then - echo "$as_me:36421: checking for fs_free in -lwais" >&5 + echo "$as_me:36606: 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 @@ -36426,7 +36611,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lwais $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 36429 "configure" +#line 36614 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -36445,16 +36630,16 @@ fs_free (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:36448: \"$ac_link\"") >&5 +if { (eval echo "$as_me:36633: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:36451: \$? = $ac_status" >&5 + echo "$as_me:36636: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:36454: \"$ac_try\"") >&5 + { (eval echo "$as_me:36639: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:36457: \$? = $ac_status" >&5 + echo "$as_me:36642: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_wais_fs_free=yes else @@ -36465,18 +36650,18 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:36468: result: $ac_cv_lib_wais_fs_free" >&5 +echo "$as_me:36653: 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:36472: checking if -lm needed for math functions" >&5 +echo "$as_me:36657: 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 36479 "configure" +#line 36664 "configure" #include "confdefs.h" #include <stdio.h> @@ -36491,16 +36676,16 @@ double x = rand(); printf("result = %g\n", sin(x)) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:36494: \"$ac_link\"") >&5 +if { (eval echo "$as_me:36679: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:36497: \$? = $ac_status" >&5 + echo "$as_me:36682: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:36500: \"$ac_try\"") >&5 + { (eval echo "$as_me:36685: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:36503: \$? = $ac_status" >&5 + echo "$as_me:36688: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_need_libm=no else @@ -36510,7 +36695,7 @@ cf_cv_need_libm=yes fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:36513: result: $cf_cv_need_libm" >&5 +echo "$as_me:36698: result: $cf_cv_need_libm" >&5 echo "${ECHO_T}$cf_cv_need_libm" >&6 if test "$cf_cv_need_libm" = yes then @@ -36552,23 +36737,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:36555: checking for $ac_header" >&5 +echo "$as_me:36740: 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 36561 "configure" +#line 36746 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:36565: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:36750: \"$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:36571: \$? = $ac_status" >&5 + echo "$as_me:36756: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -36587,7 +36772,7 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:36590: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:36775: 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 @@ -36600,7 +36785,7 @@ done MAKE_WAIS= else - { echo "$as_me:36603: WARNING: could not find WAIS library" >&5 + { echo "$as_me:36788: WARNING: could not find WAIS library" >&5 echo "$as_me: WARNING: could not find WAIS library" >&2;} fi @@ -36608,7 +36793,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:36611: checking if directory-editor code should be used" >&5 +echo "$as_me:36796: 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. @@ -36625,7 +36810,7 @@ else use_dired=yes fi; -echo "$as_me:36628: result: $use_dired" >&5 +echo "$as_me:36813: result: $use_dired" >&5 echo "${ECHO_T}$use_dired" >&6 if test ".$use_dired" != ".no" ; then @@ -36635,7 +36820,7 @@ cat >>confdefs.h <<\EOF #define DIRED_SUPPORT 1 EOF - echo "$as_me:36638: checking if you wish to allow extracting from archives via DirEd" >&5 + echo "$as_me:36823: 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. @@ -36652,10 +36837,10 @@ EOF else enableval=yes fi; - echo "$as_me:36655: result: $enableval" >&5 + echo "$as_me:36840: result: $enableval" >&5 echo "${ECHO_T}$enableval" >&6 - echo "$as_me:36658: checking if DirEd mode should override keys" >&5 + echo "$as_me:36843: 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. @@ -36679,10 +36864,10 @@ cat >>confdefs.h <<\EOF EOF fi; - echo "$as_me:36682: result: $enableval" >&5 + echo "$as_me:36867: result: $enableval" >&5 echo "${ECHO_T}$enableval" >&6 - echo "$as_me:36685: checking if you wish to allow permissions commands via DirEd" >&5 + echo "$as_me:36870: 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. @@ -36706,10 +36891,10 @@ cat >>confdefs.h <<\EOF EOF fi; - echo "$as_me:36709: result: $enableval" >&5 + echo "$as_me:36894: result: $enableval" >&5 echo "${ECHO_T}$enableval" >&6 - echo "$as_me:36712: checking if you wish to allow executable-permission commands via DirEd" >&5 + echo "$as_me:36897: 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. @@ -36726,10 +36911,10 @@ EOF else enableval=yes fi; - echo "$as_me:36729: result: $enableval" >&5 + echo "$as_me:36914: result: $enableval" >&5 echo "${ECHO_T}$enableval" >&6 - echo "$as_me:36732: checking if you wish to allow \"tar\" commands from DirEd" >&5 + echo "$as_me:36917: 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. @@ -36753,10 +36938,10 @@ cat >>confdefs.h <<\EOF EOF fi; - echo "$as_me:36756: result: $enableval" >&5 + echo "$as_me:36941: result: $enableval" >&5 echo "${ECHO_T}$enableval" >&6 - echo "$as_me:36759: checking if you wish to allow \"uudecode\" commands from DirEd" >&5 + echo "$as_me:36944: 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. @@ -36780,10 +36965,10 @@ cat >>confdefs.h <<\EOF EOF fi; - echo "$as_me:36783: result: $enableval" >&5 + echo "$as_me:36968: result: $enableval" >&5 echo "${ECHO_T}$enableval" >&6 - echo "$as_me:36786: checking if you wish to allow \"zip\" and \"unzip\" commands from DirEd" >&5 + echo "$as_me:36971: 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. @@ -36807,10 +36992,10 @@ cat >>confdefs.h <<\EOF EOF fi; - echo "$as_me:36810: result: $enableval" >&5 + echo "$as_me:36995: result: $enableval" >&5 echo "${ECHO_T}$enableval" >&6 - echo "$as_me:36813: checking if you wish to allow \"gzip\" and \"gunzip\" commands from DirEd" >&5 + echo "$as_me:36998: 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. @@ -36834,11 +37019,11 @@ cat >>confdefs.h <<\EOF EOF fi; - echo "$as_me:36837: result: $enableval" >&5 + echo "$as_me:37022: result: $enableval" >&5 echo "${ECHO_T}$enableval" >&6 fi -echo "$as_me:36841: checking if you want long-directory listings" >&5 +echo "$as_me:37026: 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. @@ -36862,10 +37047,10 @@ cat >>confdefs.h <<\EOF EOF fi; -echo "$as_me:36865: result: $enableval" >&5 +echo "$as_me:37050: result: $enableval" >&5 echo "${ECHO_T}$enableval" >&6 -echo "$as_me:36868: checking if parent-directory references are permitted" >&5 +echo "$as_me:37053: 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. @@ -36882,7 +37067,7 @@ EOF else enableval=yes fi; -echo "$as_me:36885: result: $enableval" >&5 +echo "$as_me:37070: result: $enableval" >&5 echo "${ECHO_T}$enableval" >&6 test -z "$TELNET" && TELNET=telnet @@ -36890,7 +37075,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:36893: checking for $ac_word" >&5 +echo "$as_me:37078: 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 @@ -36907,7 +37092,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:36910: found $ac_dir/$ac_word" >&5 + echo "$as_me:37095: found $ac_dir/$ac_word" >&5 break fi done @@ -36918,10 +37103,10 @@ fi TELNET=$ac_cv_path_TELNET if test -n "$TELNET"; then - echo "$as_me:36921: result: $TELNET" >&5 + echo "$as_me:37106: result: $TELNET" >&5 echo "${ECHO_T}$TELNET" >&6 else - echo "$as_me:36924: result: no" >&5 + echo "$as_me:37109: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -36980,7 +37165,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me:-configure}:36983: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me:-configure}:37168: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define TELNET_PATH "$cf_path_prog" @@ -36998,7 +37183,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:37001: checking for $ac_word" >&5 +echo "$as_me:37186: 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 @@ -37015,7 +37200,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:37018: found $ac_dir/$ac_word" >&5 + echo "$as_me:37203: found $ac_dir/$ac_word" >&5 break fi done @@ -37026,10 +37211,10 @@ fi TN3270=$ac_cv_path_TN3270 if test -n "$TN3270"; then - echo "$as_me:37029: result: $TN3270" >&5 + echo "$as_me:37214: result: $TN3270" >&5 echo "${ECHO_T}$TN3270" >&6 else - echo "$as_me:37032: result: no" >&5 + echo "$as_me:37217: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -37088,7 +37273,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me:-configure}:37091: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me:-configure}:37276: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define TN3270_PATH "$cf_path_prog" @@ -37106,7 +37291,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:37109: checking for $ac_word" >&5 +echo "$as_me:37294: 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 @@ -37123,7 +37308,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:37126: found $ac_dir/$ac_word" >&5 + echo "$as_me:37311: found $ac_dir/$ac_word" >&5 break fi done @@ -37134,10 +37319,10 @@ fi RLOGIN=$ac_cv_path_RLOGIN if test -n "$RLOGIN"; then - echo "$as_me:37137: result: $RLOGIN" >&5 + echo "$as_me:37322: result: $RLOGIN" >&5 echo "${ECHO_T}$RLOGIN" >&6 else - echo "$as_me:37140: result: no" >&5 + echo "$as_me:37325: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -37196,7 +37381,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me:-configure}:37199: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me:-configure}:37384: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define RLOGIN_PATH "$cf_path_prog" @@ -37214,7 +37399,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:37217: checking for $ac_word" >&5 +echo "$as_me:37402: 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 @@ -37231,7 +37416,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:37234: found $ac_dir/$ac_word" >&5 + echo "$as_me:37419: found $ac_dir/$ac_word" >&5 break fi done @@ -37242,10 +37427,10 @@ fi MV=$ac_cv_path_MV if test -n "$MV"; then - echo "$as_me:37245: result: $MV" >&5 + echo "$as_me:37430: result: $MV" >&5 echo "${ECHO_T}$MV" >&6 else - echo "$as_me:37248: result: no" >&5 + echo "$as_me:37433: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -37304,7 +37489,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me:-configure}:37307: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me:-configure}:37492: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define MV_PATH "$cf_path_prog" @@ -37322,7 +37507,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:37325: checking for $ac_word" >&5 +echo "$as_me:37510: 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 @@ -37339,7 +37524,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:37342: found $ac_dir/$ac_word" >&5 + echo "$as_me:37527: found $ac_dir/$ac_word" >&5 break fi done @@ -37350,10 +37535,10 @@ fi GZIP=$ac_cv_path_GZIP if test -n "$GZIP"; then - echo "$as_me:37353: result: $GZIP" >&5 + echo "$as_me:37538: result: $GZIP" >&5 echo "${ECHO_T}$GZIP" >&6 else - echo "$as_me:37356: result: no" >&5 + echo "$as_me:37541: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -37412,7 +37597,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me:-configure}:37415: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me:-configure}:37600: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define GZIP_PATH "$cf_path_prog" @@ -37430,7 +37615,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:37433: checking for $ac_word" >&5 +echo "$as_me:37618: 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 @@ -37447,7 +37632,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:37450: found $ac_dir/$ac_word" >&5 + echo "$as_me:37635: found $ac_dir/$ac_word" >&5 break fi done @@ -37458,10 +37643,10 @@ fi UNCOMPRESS=$ac_cv_path_UNCOMPRESS if test -n "$UNCOMPRESS"; then - echo "$as_me:37461: result: $UNCOMPRESS" >&5 + echo "$as_me:37646: result: $UNCOMPRESS" >&5 echo "${ECHO_T}$UNCOMPRESS" >&6 else - echo "$as_me:37464: result: no" >&5 + echo "$as_me:37649: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -37520,7 +37705,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me:-configure}:37523: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me:-configure}:37708: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define UNCOMPRESS_PATH "$cf_path_prog" @@ -37538,7 +37723,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:37541: checking for $ac_word" >&5 +echo "$as_me:37726: 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 @@ -37555,7 +37740,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:37558: found $ac_dir/$ac_word" >&5 + echo "$as_me:37743: found $ac_dir/$ac_word" >&5 break fi done @@ -37566,10 +37751,10 @@ fi UNZIP=$ac_cv_path_UNZIP if test -n "$UNZIP"; then - echo "$as_me:37569: result: $UNZIP" >&5 + echo "$as_me:37754: result: $UNZIP" >&5 echo "${ECHO_T}$UNZIP" >&6 else - echo "$as_me:37572: result: no" >&5 + echo "$as_me:37757: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -37628,7 +37813,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me:-configure}:37631: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me:-configure}:37816: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define UNZIP_PATH "$cf_path_prog" @@ -37646,7 +37831,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:37649: checking for $ac_word" >&5 +echo "$as_me:37834: 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 @@ -37663,7 +37848,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:37666: found $ac_dir/$ac_word" >&5 + echo "$as_me:37851: found $ac_dir/$ac_word" >&5 break fi done @@ -37674,10 +37859,10 @@ fi BZIP2=$ac_cv_path_BZIP2 if test -n "$BZIP2"; then - echo "$as_me:37677: result: $BZIP2" >&5 + echo "$as_me:37862: result: $BZIP2" >&5 echo "${ECHO_T}$BZIP2" >&6 else - echo "$as_me:37680: result: no" >&5 + echo "$as_me:37865: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -37736,7 +37921,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me:-configure}:37739: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me:-configure}:37924: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define BZIP2_PATH "$cf_path_prog" @@ -37754,7 +37939,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:37757: checking for $ac_word" >&5 +echo "$as_me:37942: 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 @@ -37771,7 +37956,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:37774: found $ac_dir/$ac_word" >&5 + echo "$as_me:37959: found $ac_dir/$ac_word" >&5 break fi done @@ -37782,10 +37967,10 @@ fi TAR=$ac_cv_path_TAR if test -n "$TAR"; then - echo "$as_me:37785: result: $TAR" >&5 + echo "$as_me:37970: result: $TAR" >&5 echo "${ECHO_T}$TAR" >&6 else - echo "$as_me:37788: result: no" >&5 + echo "$as_me:37973: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -37844,7 +38029,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me:-configure}:37847: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me:-configure}:38032: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define TAR_PATH "$cf_path_prog" @@ -37902,7 +38087,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:37905: checking for $ac_word" >&5 +echo "$as_me:38090: 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 @@ -37919,7 +38104,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:37922: found $ac_dir/$ac_word" >&5 + echo "$as_me:38107: found $ac_dir/$ac_word" >&5 break fi done @@ -37930,10 +38115,10 @@ fi COMPRESS=$ac_cv_path_COMPRESS if test -n "$COMPRESS"; then - echo "$as_me:37933: result: $COMPRESS" >&5 + echo "$as_me:38118: result: $COMPRESS" >&5 echo "${ECHO_T}$COMPRESS" >&6 else - echo "$as_me:37936: result: no" >&5 + echo "$as_me:38121: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -37992,7 +38177,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me:-configure}:37995: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me:-configure}:38180: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define COMPRESS_PATH "$cf_path_prog" @@ -38010,7 +38195,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:38013: checking for $ac_word" >&5 +echo "$as_me:38198: 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 @@ -38027,7 +38212,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:38030: found $ac_dir/$ac_word" >&5 + echo "$as_me:38215: found $ac_dir/$ac_word" >&5 break fi done @@ -38038,10 +38223,10 @@ fi RM=$ac_cv_path_RM if test -n "$RM"; then - echo "$as_me:38041: result: $RM" >&5 + echo "$as_me:38226: result: $RM" >&5 echo "${ECHO_T}$RM" >&6 else - echo "$as_me:38044: result: no" >&5 + echo "$as_me:38229: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -38100,7 +38285,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me:-configure}:38103: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me:-configure}:38288: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define RM_PATH "$cf_path_prog" @@ -38118,7 +38303,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:38121: checking for $ac_word" >&5 +echo "$as_me:38306: 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 @@ -38135,7 +38320,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:38138: found $ac_dir/$ac_word" >&5 + echo "$as_me:38323: found $ac_dir/$ac_word" >&5 break fi done @@ -38146,10 +38331,10 @@ fi UUDECODE=$ac_cv_path_UUDECODE if test -n "$UUDECODE"; then - echo "$as_me:38149: result: $UUDECODE" >&5 + echo "$as_me:38334: result: $UUDECODE" >&5 echo "${ECHO_T}$UUDECODE" >&6 else - echo "$as_me:38152: result: no" >&5 + echo "$as_me:38337: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -38208,7 +38393,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me:-configure}:38211: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me:-configure}:38396: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define UUDECODE_PATH "$cf_path_prog" @@ -38226,7 +38411,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:38229: checking for $ac_word" >&5 +echo "$as_me:38414: 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 @@ -38243,7 +38428,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:38246: found $ac_dir/$ac_word" >&5 + echo "$as_me:38431: found $ac_dir/$ac_word" >&5 break fi done @@ -38254,10 +38439,10 @@ fi ZCAT=$ac_cv_path_ZCAT if test -n "$ZCAT"; then - echo "$as_me:38257: result: $ZCAT" >&5 + echo "$as_me:38442: result: $ZCAT" >&5 echo "${ECHO_T}$ZCAT" >&6 else - echo "$as_me:38260: result: no" >&5 + echo "$as_me:38445: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -38316,7 +38501,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me:-configure}:38319: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me:-configure}:38504: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define ZCAT_PATH "$cf_path_prog" @@ -38334,7 +38519,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:38337: checking for $ac_word" >&5 +echo "$as_me:38522: 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 @@ -38351,7 +38536,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:38354: found $ac_dir/$ac_word" >&5 + echo "$as_me:38539: found $ac_dir/$ac_word" >&5 break fi done @@ -38362,10 +38547,10 @@ fi ZIP=$ac_cv_path_ZIP if test -n "$ZIP"; then - echo "$as_me:38365: result: $ZIP" >&5 + echo "$as_me:38550: result: $ZIP" >&5 echo "${ECHO_T}$ZIP" >&6 else - echo "$as_me:38368: result: no" >&5 + echo "$as_me:38553: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -38424,7 +38609,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me:-configure}:38427: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me:-configure}:38612: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define ZIP_PATH "$cf_path_prog" @@ -38452,7 +38637,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:38455: checking for $ac_word" >&5 +echo "$as_me:38640: 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 @@ -38469,7 +38654,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:38472: found $ac_dir/$ac_word" >&5 + echo "$as_me:38657: found $ac_dir/$ac_word" >&5 break fi done @@ -38480,10 +38665,10 @@ fi INSTALL=$ac_cv_path_INSTALL if test -n "$INSTALL"; then - echo "$as_me:38483: result: $INSTALL" >&5 + echo "$as_me:38668: result: $INSTALL" >&5 echo "${ECHO_T}$INSTALL" >&6 else - echo "$as_me:38486: result: no" >&5 + echo "$as_me:38671: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -38542,7 +38727,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me:-configure}:38545: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me:-configure}:38730: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define INSTALL_PATH "$cf_path_prog" @@ -38572,7 +38757,7 @@ if test $cf_cv_screen = pdcurses ; then case $host_os in #(vi mingw*) -echo "$as_me:38575: checking for initscr in -lpdcurses" >&5 +echo "$as_me:38760: 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 @@ -38580,7 +38765,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lpdcurses $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 38583 "configure" +#line 38768 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -38599,16 +38784,16 @@ initscr (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:38602: \"$ac_link\"") >&5 +if { (eval echo "$as_me:38787: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:38605: \$? = $ac_status" >&5 + echo "$as_me:38790: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:38608: \"$ac_try\"") >&5 + { (eval echo "$as_me:38793: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:38611: \$? = $ac_status" >&5 + echo "$as_me:38796: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_pdcurses_initscr=yes else @@ -38619,7 +38804,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:38622: result: $ac_cv_lib_pdcurses_initscr" >&5 +echo "$as_me:38807: 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 @@ -38641,13 +38826,13 @@ LIBS="$cf_add_libs" cf_cv_term_header=no cf_cv_unctrl_header=no - echo "$as_me:38644: checking for winwstr" >&5 + echo "$as_me:38829: 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 38650 "configure" +#line 38835 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char winwstr (); below. */ @@ -38678,16 +38863,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:38681: \"$ac_link\"") >&5 +if { (eval echo "$as_me:38866: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:38684: \$? = $ac_status" >&5 + echo "$as_me:38869: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:38687: \"$ac_try\"") >&5 + { (eval echo "$as_me:38872: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:38690: \$? = $ac_status" >&5 + echo "$as_me:38875: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_winwstr=yes else @@ -38697,7 +38882,7 @@ ac_cv_func_winwstr=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:38700: result: $ac_cv_func_winwstr" >&5 +echo "$as_me:38885: 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 @@ -38706,13 +38891,13 @@ EOF fi - echo "$as_me:38709: checking for pdcurses_dll_iname" >&5 + echo "$as_me:38894: 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 38715 "configure" +#line 38900 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char pdcurses_dll_iname (); below. */ @@ -38743,16 +38928,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:38746: \"$ac_link\"") >&5 +if { (eval echo "$as_me:38931: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:38749: \$? = $ac_status" >&5 + echo "$as_me:38934: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:38752: \"$ac_try\"") >&5 + { (eval echo "$as_me:38937: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:38755: \$? = $ac_status" >&5 + echo "$as_me:38940: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_pdcurses_dll_iname=yes else @@ -38762,7 +38947,7 @@ ac_cv_func_pdcurses_dll_iname=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:38765: result: $ac_cv_func_pdcurses_dll_iname" >&5 +echo "$as_me:38950: 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 @@ -38775,7 +38960,7 @@ fi ;; *) #(vi - echo "$as_me:38778: checking for X" >&5 + echo "$as_me:38963: checking for X" >&5 echo $ECHO_N "checking for X... $ECHO_C" >&6 # Check whether --with-x or --without-x was given. @@ -38872,17 +39057,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 38875 "configure" +#line 39060 "configure" #include "confdefs.h" #include <X11/Intrinsic.h> _ACEOF -if { (eval echo "$as_me:38879: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:39064: \"$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:38885: \$? = $ac_status" >&5 + echo "$as_me:39070: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -38915,7 +39100,7 @@ if test "$ac_x_libraries" = no; then ac_save_LIBS=$LIBS LIBS="-lXt $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 38918 "configure" +#line 39103 "configure" #include "confdefs.h" #include <X11/Intrinsic.h> int @@ -38927,16 +39112,16 @@ XtMalloc (0) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:38930: \"$ac_link\"") >&5 +if { (eval echo "$as_me:39115: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:38933: \$? = $ac_status" >&5 + echo "$as_me:39118: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:38936: \"$ac_try\"") >&5 + { (eval echo "$as_me:39121: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:38939: \$? = $ac_status" >&5 + echo "$as_me:39124: \$? = $ac_status" >&5 (exit $ac_status); }; }; then LIBS=$ac_save_LIBS # We can link X programs with no special library path. @@ -38974,7 +39159,7 @@ fi fi # $with_x != no if test "$have_x" != yes; then - echo "$as_me:38977: result: $have_x" >&5 + echo "$as_me:39162: result: $have_x" >&5 echo "${ECHO_T}$have_x" >&6 no_x=yes else @@ -38984,7 +39169,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:38987: result: libraries $x_libraries, headers $x_includes" >&5 + echo "$as_me:39172: result: libraries $x_libraries, headers $x_includes" >&5 echo "${ECHO_T}libraries $x_libraries, headers $x_includes" >&6 fi @@ -39008,11 +39193,11 @@ else # others require no space. Words are not sufficient . . . . case `(uname -sr) 2>/dev/null` in "SunOS 5"*) - echo "$as_me:39011: checking whether -R must be followed by a space" >&5 + echo "$as_me:39196: 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 39015 "configure" +#line 39200 "configure" #include "confdefs.h" int @@ -39024,16 +39209,16 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:39027: \"$ac_link\"") >&5 +if { (eval echo "$as_me:39212: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:39030: \$? = $ac_status" >&5 + echo "$as_me:39215: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:39033: \"$ac_try\"") >&5 + { (eval echo "$as_me:39218: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:39036: \$? = $ac_status" >&5 + echo "$as_me:39221: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_R_nospace=yes else @@ -39043,13 +39228,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:39046: result: no" >&5 + echo "$as_me:39231: 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 39052 "configure" +#line 39237 "configure" #include "confdefs.h" int @@ -39061,16 +39246,16 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:39064: \"$ac_link\"") >&5 +if { (eval echo "$as_me:39249: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:39067: \$? = $ac_status" >&5 + echo "$as_me:39252: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:39070: \"$ac_try\"") >&5 + { (eval echo "$as_me:39255: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:39073: \$? = $ac_status" >&5 + echo "$as_me:39258: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_R_space=yes else @@ -39080,11 +39265,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:39083: result: yes" >&5 + echo "$as_me:39268: result: yes" >&5 echo "${ECHO_T}yes" >&6 X_LIBS="$X_LIBS -R $x_libraries" else - echo "$as_me:39087: result: neither works" >&5 + echo "$as_me:39272: result: neither works" >&5 echo "${ECHO_T}neither works" >&6 fi fi @@ -39104,7 +39289,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 39107 "configure" +#line 39292 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -39123,22 +39308,22 @@ XOpenDisplay (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:39126: \"$ac_link\"") >&5 +if { (eval echo "$as_me:39311: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:39129: \$? = $ac_status" >&5 + echo "$as_me:39314: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:39132: \"$ac_try\"") >&5 + { (eval echo "$as_me:39317: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:39135: \$? = $ac_status" >&5 + echo "$as_me:39320: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 -echo "$as_me:39141: checking for dnet_ntoa in -ldnet" >&5 +echo "$as_me:39326: 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 @@ -39146,7 +39331,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-ldnet $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 39149 "configure" +#line 39334 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -39165,16 +39350,16 @@ dnet_ntoa (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:39168: \"$ac_link\"") >&5 +if { (eval echo "$as_me:39353: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:39171: \$? = $ac_status" >&5 + echo "$as_me:39356: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:39174: \"$ac_try\"") >&5 + { (eval echo "$as_me:39359: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:39177: \$? = $ac_status" >&5 + echo "$as_me:39362: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_dnet_dnet_ntoa=yes else @@ -39185,14 +39370,14 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:39188: result: $ac_cv_lib_dnet_dnet_ntoa" >&5 +echo "$as_me:39373: 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:39195: checking for dnet_ntoa in -ldnet_stub" >&5 + echo "$as_me:39380: 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 @@ -39200,7 +39385,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-ldnet_stub $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 39203 "configure" +#line 39388 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -39219,16 +39404,16 @@ dnet_ntoa (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:39222: \"$ac_link\"") >&5 +if { (eval echo "$as_me:39407: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:39225: \$? = $ac_status" >&5 + echo "$as_me:39410: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:39228: \"$ac_try\"") >&5 + { (eval echo "$as_me:39413: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:39231: \$? = $ac_status" >&5 + echo "$as_me:39416: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_dnet_stub_dnet_ntoa=yes else @@ -39239,7 +39424,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:39242: result: $ac_cv_lib_dnet_stub_dnet_ntoa" >&5 +echo "$as_me:39427: 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" @@ -39258,13 +39443,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:39261: checking for gethostbyname" >&5 + echo "$as_me:39446: 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 39267 "configure" +#line 39452 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char gethostbyname (); below. */ @@ -39295,16 +39480,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:39298: \"$ac_link\"") >&5 +if { (eval echo "$as_me:39483: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:39301: \$? = $ac_status" >&5 + echo "$as_me:39486: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:39304: \"$ac_try\"") >&5 + { (eval echo "$as_me:39489: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:39307: \$? = $ac_status" >&5 + echo "$as_me:39492: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_gethostbyname=yes else @@ -39314,11 +39499,11 @@ ac_cv_func_gethostbyname=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:39317: result: $ac_cv_func_gethostbyname" >&5 +echo "$as_me:39502: 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:39321: checking for gethostbyname in -lnsl" >&5 + echo "$as_me:39506: 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 @@ -39326,7 +39511,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lnsl $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 39329 "configure" +#line 39514 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -39345,16 +39530,16 @@ gethostbyname (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:39348: \"$ac_link\"") >&5 +if { (eval echo "$as_me:39533: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:39351: \$? = $ac_status" >&5 + echo "$as_me:39536: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:39354: \"$ac_try\"") >&5 + { (eval echo "$as_me:39539: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:39357: \$? = $ac_status" >&5 + echo "$as_me:39542: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_nsl_gethostbyname=yes else @@ -39365,14 +39550,14 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:39368: result: $ac_cv_lib_nsl_gethostbyname" >&5 +echo "$as_me:39553: 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:39375: checking for gethostbyname in -lbsd" >&5 + echo "$as_me:39560: 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 @@ -39380,7 +39565,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lbsd $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 39383 "configure" +#line 39568 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -39399,16 +39584,16 @@ gethostbyname (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:39402: \"$ac_link\"") >&5 +if { (eval echo "$as_me:39587: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:39405: \$? = $ac_status" >&5 + echo "$as_me:39590: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:39408: \"$ac_try\"") >&5 + { (eval echo "$as_me:39593: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:39411: \$? = $ac_status" >&5 + echo "$as_me:39596: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_bsd_gethostbyname=yes else @@ -39419,7 +39604,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:39422: result: $ac_cv_lib_bsd_gethostbyname" >&5 +echo "$as_me:39607: 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" @@ -39435,13 +39620,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:39438: checking for connect" >&5 + echo "$as_me:39623: 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 39444 "configure" +#line 39629 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char connect (); below. */ @@ -39472,16 +39657,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:39475: \"$ac_link\"") >&5 +if { (eval echo "$as_me:39660: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:39478: \$? = $ac_status" >&5 + echo "$as_me:39663: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:39481: \"$ac_try\"") >&5 + { (eval echo "$as_me:39666: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:39484: \$? = $ac_status" >&5 + echo "$as_me:39669: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_connect=yes else @@ -39491,11 +39676,11 @@ ac_cv_func_connect=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:39494: result: $ac_cv_func_connect" >&5 +echo "$as_me:39679: 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:39498: checking for connect in -lsocket" >&5 + echo "$as_me:39683: 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 @@ -39503,7 +39688,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lsocket $X_EXTRA_LIBS $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 39506 "configure" +#line 39691 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -39522,16 +39707,16 @@ connect (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:39525: \"$ac_link\"") >&5 +if { (eval echo "$as_me:39710: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:39528: \$? = $ac_status" >&5 + echo "$as_me:39713: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:39531: \"$ac_try\"") >&5 + { (eval echo "$as_me:39716: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:39534: \$? = $ac_status" >&5 + echo "$as_me:39719: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_socket_connect=yes else @@ -39542,7 +39727,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:39545: result: $ac_cv_lib_socket_connect" >&5 +echo "$as_me:39730: 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" @@ -39551,13 +39736,13 @@ fi fi # Guillermo Gomez says -lposix is necessary on A/UX. - echo "$as_me:39554: checking for remove" >&5 + echo "$as_me:39739: 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 39560 "configure" +#line 39745 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char remove (); below. */ @@ -39588,16 +39773,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:39591: \"$ac_link\"") >&5 +if { (eval echo "$as_me:39776: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:39594: \$? = $ac_status" >&5 + echo "$as_me:39779: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:39597: \"$ac_try\"") >&5 + { (eval echo "$as_me:39782: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:39600: \$? = $ac_status" >&5 + echo "$as_me:39785: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_remove=yes else @@ -39607,11 +39792,11 @@ ac_cv_func_remove=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:39610: result: $ac_cv_func_remove" >&5 +echo "$as_me:39795: 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:39614: checking for remove in -lposix" >&5 + echo "$as_me:39799: 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 @@ -39619,7 +39804,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lposix $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 39622 "configure" +#line 39807 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -39638,16 +39823,16 @@ remove (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:39641: \"$ac_link\"") >&5 +if { (eval echo "$as_me:39826: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:39644: \$? = $ac_status" >&5 + echo "$as_me:39829: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:39647: \"$ac_try\"") >&5 + { (eval echo "$as_me:39832: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:39650: \$? = $ac_status" >&5 + echo "$as_me:39835: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_posix_remove=yes else @@ -39658,7 +39843,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:39661: result: $ac_cv_lib_posix_remove" >&5 +echo "$as_me:39846: 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" @@ -39667,13 +39852,13 @@ fi fi # BSDI BSD/OS 2.1 needs -lipc for XOpenDisplay. - echo "$as_me:39670: checking for shmat" >&5 + echo "$as_me:39855: 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 39676 "configure" +#line 39861 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char shmat (); below. */ @@ -39704,16 +39889,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:39707: \"$ac_link\"") >&5 +if { (eval echo "$as_me:39892: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:39710: \$? = $ac_status" >&5 + echo "$as_me:39895: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:39713: \"$ac_try\"") >&5 + { (eval echo "$as_me:39898: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:39716: \$? = $ac_status" >&5 + echo "$as_me:39901: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_shmat=yes else @@ -39723,11 +39908,11 @@ ac_cv_func_shmat=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:39726: result: $ac_cv_func_shmat" >&5 +echo "$as_me:39911: 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:39730: checking for shmat in -lipc" >&5 + echo "$as_me:39915: 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 @@ -39735,7 +39920,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lipc $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 39738 "configure" +#line 39923 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -39754,16 +39939,16 @@ shmat (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:39757: \"$ac_link\"") >&5 +if { (eval echo "$as_me:39942: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:39760: \$? = $ac_status" >&5 + echo "$as_me:39945: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:39763: \"$ac_try\"") >&5 + { (eval echo "$as_me:39948: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:39766: \$? = $ac_status" >&5 + echo "$as_me:39951: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_ipc_shmat=yes else @@ -39774,7 +39959,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:39777: result: $ac_cv_lib_ipc_shmat" >&5 +echo "$as_me:39962: 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" @@ -39792,7 +39977,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:39795: checking for IceConnectionNumber in -lICE" >&5 + echo "$as_me:39980: 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 @@ -39800,7 +39985,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lICE $X_EXTRA_LIBS $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 39803 "configure" +#line 39988 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -39819,16 +40004,16 @@ IceConnectionNumber (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:39822: \"$ac_link\"") >&5 +if { (eval echo "$as_me:40007: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:39825: \$? = $ac_status" >&5 + echo "$as_me:40010: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:39828: \"$ac_try\"") >&5 + { (eval echo "$as_me:40013: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:39831: \$? = $ac_status" >&5 + echo "$as_me:40016: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_ICE_IceConnectionNumber=yes else @@ -39839,7 +40024,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:39842: result: $ac_cv_lib_ICE_IceConnectionNumber" >&5 +echo "$as_me:40027: 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" @@ -39851,7 +40036,7 @@ fi cf_x_athena=${cf_x_athena:-Xaw} -echo "$as_me:39854: checking if you want to link with Xaw 3d library" >&5 +echo "$as_me:40039: 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= @@ -39862,14 +40047,14 @@ if test "${with_Xaw3d+set}" = set; then fi; if test "$withval" = yes ; then cf_x_athena=Xaw3d - echo "$as_me:39865: result: yes" >&5 + echo "$as_me:40050: result: yes" >&5 echo "${ECHO_T}yes" >&6 else - echo "$as_me:39868: result: no" >&5 + echo "$as_me:40053: result: no" >&5 echo "${ECHO_T}no" >&6 fi -echo "$as_me:39872: checking if you want to link with Xaw 3d xft library" >&5 +echo "$as_me:40057: 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= @@ -39880,14 +40065,14 @@ if test "${with_Xaw3dxft+set}" = set; then fi; if test "$withval" = yes ; then cf_x_athena=Xaw3dxft - echo "$as_me:39883: result: yes" >&5 + echo "$as_me:40068: result: yes" >&5 echo "${ECHO_T}yes" >&6 else - echo "$as_me:39886: result: no" >&5 + echo "$as_me:40071: result: no" >&5 echo "${ECHO_T}no" >&6 fi -echo "$as_me:39890: checking if you want to link with neXT Athena library" >&5 +echo "$as_me:40075: 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= @@ -39898,14 +40083,14 @@ if test "${with_neXtaw+set}" = set; then fi; if test "$withval" = yes ; then cf_x_athena=neXtaw - echo "$as_me:39901: result: yes" >&5 + echo "$as_me:40086: result: yes" >&5 echo "${ECHO_T}yes" >&6 else - echo "$as_me:39904: result: no" >&5 + echo "$as_me:40089: result: no" >&5 echo "${ECHO_T}no" >&6 fi -echo "$as_me:39908: checking if you want to link with Athena-Plus library" >&5 +echo "$as_me:40093: 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= @@ -39916,10 +40101,10 @@ if test "${with_XawPlus+set}" = set; then fi; if test "$withval" = yes ; then cf_x_athena=XawPlus - echo "$as_me:39919: result: yes" >&5 + echo "$as_me:40104: result: yes" >&5 echo "${ECHO_T}yes" >&6 else - echo "$as_me:39922: result: no" >&5 + echo "$as_me:40107: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -39939,17 +40124,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}:39942: testing found package $cf_athena_pkg ..." 1>&5 +echo "${as_me:-configure}:40127: 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}:39948: testing package $cf_athena_pkg CFLAGS: $cf_pkgconfig_incs ..." 1>&5 +echo "${as_me:-configure}:40133: 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}:39952: testing package $cf_athena_pkg LIBS: $cf_pkgconfig_libs ..." 1>&5 +echo "${as_me:-configure}:40137: testing package $cf_athena_pkg LIBS: $cf_pkgconfig_libs ..." 1>&5 cf_fix_cppflags=no cf_new_cflags= @@ -40060,20 +40245,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}:40063: testing ..trimmed $LIBS ..." 1>&5 +echo "${as_me:-configure}:40248: testing ..trimmed $LIBS ..." 1>&5 ;; esac done -echo "$as_me:40069: checking for usable $cf_x_athena/Xmu package" >&5 +echo "$as_me:40254: 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 40076 "configure" +#line 40261 "configure" #include "confdefs.h" #include <X11/Xmu/CharSet.h> @@ -40089,16 +40274,16 @@ int check = XmuCompareISOLatin1("big", "small") } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:40092: \"$ac_link\"") >&5 +if { (eval echo "$as_me:40277: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:40095: \$? = $ac_status" >&5 + echo "$as_me:40280: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:40098: \"$ac_try\"") >&5 + { (eval echo "$as_me:40283: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:40101: \$? = $ac_status" >&5 + echo "$as_me:40286: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_xaw_compat=yes else @@ -40108,7 +40293,7 @@ cf_cv_xaw_compat=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:40111: result: $cf_cv_xaw_compat" >&5 +echo "$as_me:40296: result: $cf_cv_xaw_compat" >&5 echo "${ECHO_T}$cf_cv_xaw_compat" >&6 if test "$cf_cv_xaw_compat" = no @@ -40120,7 +40305,7 @@ echo "${ECHO_T}$cf_cv_xaw_compat" >&6 *) test -n "$verbose" && echo " work around broken package" 1>&6 -echo "${as_me:-configure}:40123: testing work around broken package ..." 1>&5 +echo "${as_me:-configure}:40308: testing work around broken package ..." 1>&5 cf_save_xmu="$LIBS" cf_first_lib=`echo "$cf_save_xmu" | sed -e 's/^ *//' -e 's/ .*//'` @@ -40128,17 +40313,17 @@ echo "${as_me:-configure}:40123: 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}:40131: testing found package xmu ..." 1>&5 +echo "${as_me:-configure}:40316: 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}:40137: testing package xmu CFLAGS: $cf_pkgconfig_incs ..." 1>&5 +echo "${as_me:-configure}:40322: 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}:40141: testing package xmu LIBS: $cf_pkgconfig_libs ..." 1>&5 +echo "${as_me:-configure}:40326: testing package xmu LIBS: $cf_pkgconfig_libs ..." 1>&5 cf_fix_cppflags=no cf_new_cflags= @@ -40238,12 +40423,12 @@ LIBS="$cf_add_libs" test -n "$verbose" && echo " ...before $LIBS" 1>&6 -echo "${as_me:-configure}:40241: testing ...before $LIBS ..." 1>&5 +echo "${as_me:-configure}:40426: 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}:40246: testing ...after $LIBS ..." 1>&5 +echo "${as_me:-configure}:40431: testing ...after $LIBS ..." 1>&5 else cf_pkgconfig_incs= @@ -40251,12 +40436,12 @@ else test -n "$verbose" && echo " ...before $LIBS" 1>&6 -echo "${as_me:-configure}:40254: testing ...before $LIBS ..." 1>&5 +echo "${as_me:-configure}:40439: 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}:40259: testing ...after $LIBS ..." 1>&5 +echo "${as_me:-configure}:40444: testing ...after $LIBS ..." 1>&5 fi @@ -40267,7 +40452,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}:40270: testing ..trimmed $LIBS ..." 1>&5 +echo "${as_me:-configure}:40455: testing ..trimmed $LIBS ..." 1>&5 ;; esac @@ -40292,17 +40477,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}:40295: testing found package Xext ..." 1>&5 +echo "${as_me:-configure}:40480: 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}:40301: testing package Xext CFLAGS: $cf_pkgconfig_incs ..." 1>&5 +echo "${as_me:-configure}:40486: 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}:40305: testing package Xext LIBS: $cf_pkgconfig_libs ..." 1>&5 +echo "${as_me:-configure}:40490: testing package Xext LIBS: $cf_pkgconfig_libs ..." 1>&5 cf_fix_cppflags=no cf_new_cflags= @@ -40403,7 +40588,7 @@ else cf_pkgconfig_incs= cf_pkgconfig_libs= - echo "$as_me:40406: checking for XextCreateExtension in -lXext" >&5 + echo "$as_me:40591: 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 @@ -40411,7 +40596,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lXext $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 40414 "configure" +#line 40599 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -40430,16 +40615,16 @@ XextCreateExtension (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:40433: \"$ac_link\"") >&5 +if { (eval echo "$as_me:40618: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:40436: \$? = $ac_status" >&5 + echo "$as_me:40621: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:40439: \"$ac_try\"") >&5 + { (eval echo "$as_me:40624: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:40442: \$? = $ac_status" >&5 + echo "$as_me:40627: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_Xext_XextCreateExtension=yes else @@ -40450,7 +40635,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:40453: result: $ac_cv_lib_Xext_XextCreateExtension" >&5 +echo "$as_me:40638: 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 @@ -40486,17 +40671,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}:40489: testing found package x11 ..." 1>&5 +echo "${as_me:-configure}:40674: 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}:40495: testing package x11 CFLAGS: $cf_pkgconfig_incs ..." 1>&5 +echo "${as_me:-configure}:40680: 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}:40499: testing package x11 LIBS: $cf_pkgconfig_libs ..." 1>&5 +echo "${as_me:-configure}:40684: testing package x11 LIBS: $cf_pkgconfig_libs ..." 1>&5 cf_fix_cppflags=no cf_new_cflags= @@ -40596,24 +40781,24 @@ LIBS="$cf_add_libs" else cf_pkgconfig_incs= cf_pkgconfig_libs= - { echo "$as_me:40599: WARNING: unable to find X11 library" >&5 + { echo "$as_me:40784: 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}:40606: testing found package ice ..." 1>&5 +echo "${as_me:-configure}:40791: 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}:40612: testing package ice CFLAGS: $cf_pkgconfig_incs ..." 1>&5 +echo "${as_me:-configure}:40797: 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}:40616: testing package ice LIBS: $cf_pkgconfig_libs ..." 1>&5 +echo "${as_me:-configure}:40801: testing package ice LIBS: $cf_pkgconfig_libs ..." 1>&5 cf_fix_cppflags=no cf_new_cflags= @@ -40713,24 +40898,24 @@ LIBS="$cf_add_libs" else cf_pkgconfig_incs= cf_pkgconfig_libs= - { echo "$as_me:40716: WARNING: unable to find ICE library" >&5 + { echo "$as_me:40901: 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}:40723: testing found package sm ..." 1>&5 +echo "${as_me:-configure}:40908: 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}:40729: testing package sm CFLAGS: $cf_pkgconfig_incs ..." 1>&5 +echo "${as_me:-configure}:40914: 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}:40733: testing package sm LIBS: $cf_pkgconfig_libs ..." 1>&5 +echo "${as_me:-configure}:40918: testing package sm LIBS: $cf_pkgconfig_libs ..." 1>&5 cf_fix_cppflags=no cf_new_cflags= @@ -40830,24 +41015,24 @@ LIBS="$cf_add_libs" else cf_pkgconfig_incs= cf_pkgconfig_libs= - { echo "$as_me:40833: WARNING: unable to find SM library" >&5 + { echo "$as_me:41018: 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}:40840: testing found package xt ..." 1>&5 +echo "${as_me:-configure}:41025: 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}:40846: testing package xt CFLAGS: $cf_pkgconfig_incs ..." 1>&5 +echo "${as_me:-configure}:41031: 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}:40850: testing package xt LIBS: $cf_pkgconfig_libs ..." 1>&5 +echo "${as_me:-configure}:41035: testing package xt LIBS: $cf_pkgconfig_libs ..." 1>&5 cf_fix_cppflags=no cf_new_cflags= @@ -40947,7 +41132,7 @@ LIBS="$cf_add_libs" else cf_pkgconfig_incs= cf_pkgconfig_libs= - { echo "$as_me:40950: WARNING: unable to find Xt library" >&5 + { echo "$as_me:41135: WARNING: unable to find Xt library" >&5 echo "$as_me: WARNING: unable to find Xt library" >&2;} fi @@ -40958,17 +41143,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}:40961: testing found package xt ..." 1>&5 +echo "${as_me:-configure}:41146: 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}:40967: testing package xt CFLAGS: $cf_pkgconfig_incs ..." 1>&5 +echo "${as_me:-configure}:41152: 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}:40971: testing package xt LIBS: $cf_pkgconfig_libs ..." 1>&5 +echo "${as_me:-configure}:41156: testing package xt LIBS: $cf_pkgconfig_libs ..." 1>&5 cf_fix_cppflags=no cf_new_cflags= @@ -41069,14 +41254,14 @@ LIBS="$cf_add_libs" ;; *) # we have an "xt" package, but it may omit Xt's dependency on X11 -echo "$as_me:41072: checking for usable X dependency" >&5 +echo "$as_me:41257: 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 41079 "configure" +#line 41264 "configure" #include "confdefs.h" #include <X11/Xlib.h> @@ -41095,16 +41280,16 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:41098: \"$ac_link\"") >&5 +if { (eval echo "$as_me:41283: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:41101: \$? = $ac_status" >&5 + echo "$as_me:41286: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:41104: \"$ac_try\"") >&5 + { (eval echo "$as_me:41289: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:41107: \$? = $ac_status" >&5 + echo "$as_me:41292: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_xt_x11_compat=yes else @@ -41114,30 +41299,30 @@ cf_cv_xt_x11_compat=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:41117: result: $cf_cv_xt_x11_compat" >&5 +echo "$as_me:41302: 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}:41123: testing work around broken X11 dependency ..." 1>&5 +echo "${as_me:-configure}:41308: 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}:41130: testing found package x11 ..." 1>&5 +echo "${as_me:-configure}:41315: 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}:41136: testing package x11 CFLAGS: $cf_pkgconfig_incs ..." 1>&5 +echo "${as_me:-configure}:41321: 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}:41140: testing package x11 LIBS: $cf_pkgconfig_libs ..." 1>&5 +echo "${as_me:-configure}:41325: testing package x11 LIBS: $cf_pkgconfig_libs ..." 1>&5 cf_fix_cppflags=no cf_new_cflags= @@ -41240,12 +41425,12 @@ else test -n "$verbose" && echo " ...before $LIBS" 1>&6 -echo "${as_me:-configure}:41243: testing ...before $LIBS ..." 1>&5 +echo "${as_me:-configure}:41428: 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}:41248: testing ...after $LIBS ..." 1>&5 +echo "${as_me:-configure}:41433: testing ...after $LIBS ..." 1>&5 fi @@ -41253,14 +41438,14 @@ fi ;; esac -echo "$as_me:41256: checking for usable X Toolkit package" >&5 +echo "$as_me:41441: 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 41263 "configure" +#line 41448 "configure" #include "confdefs.h" #include <X11/Shell.h> @@ -41275,16 +41460,16 @@ int num = IceConnectionNumber(0) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:41278: \"$ac_link\"") >&5 +if { (eval echo "$as_me:41463: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:41281: \$? = $ac_status" >&5 + echo "$as_me:41466: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:41284: \"$ac_try\"") >&5 + { (eval echo "$as_me:41469: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:41287: \$? = $ac_status" >&5 + echo "$as_me:41472: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_xt_ice_compat=yes else @@ -41294,7 +41479,7 @@ cf_cv_xt_ice_compat=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:41297: result: $cf_cv_xt_ice_compat" >&5 +echo "$as_me:41482: result: $cf_cv_xt_ice_compat" >&5 echo "${ECHO_T}$cf_cv_xt_ice_compat" >&6 if test "$cf_cv_xt_ice_compat" = no @@ -41308,22 +41493,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}:41311: testing work around broken ICE dependency ..." 1>&5 +echo "${as_me:-configure}:41496: 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}:41316: testing found package ice ..." 1>&5 +echo "${as_me:-configure}:41501: 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}:41322: testing package ice CFLAGS: $cf_pkgconfig_incs ..." 1>&5 +echo "${as_me:-configure}:41507: 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}:41326: testing package ice LIBS: $cf_pkgconfig_libs ..." 1>&5 +echo "${as_me:-configure}:41511: testing package ice LIBS: $cf_pkgconfig_libs ..." 1>&5 cf_fix_cppflags=no cf_new_cflags= @@ -41422,17 +41607,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}:41425: testing found package sm ..." 1>&5 +echo "${as_me:-configure}:41610: 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}:41431: testing package sm CFLAGS: $cf_pkgconfig_incs ..." 1>&5 +echo "${as_me:-configure}:41616: 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}:41435: testing package sm LIBS: $cf_pkgconfig_libs ..." 1>&5 +echo "${as_me:-configure}:41620: testing package sm LIBS: $cf_pkgconfig_libs ..." 1>&5 cf_fix_cppflags=no cf_new_cflags= @@ -41541,12 +41726,12 @@ else test -n "$verbose" && echo " ...before $LIBS" 1>&6 -echo "${as_me:-configure}:41544: testing ...before $LIBS ..." 1>&5 +echo "${as_me:-configure}:41729: 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}:41549: testing ...after $LIBS ..." 1>&5 +echo "${as_me:-configure}:41734: testing ...after $LIBS ..." 1>&5 fi @@ -41566,7 +41751,7 @@ else test -n "$verbose" && echo " checking additions to CFLAGS" 1>&6 -echo "${as_me:-configure}:41569: testing checking additions to CFLAGS ..." 1>&5 +echo "${as_me:-configure}:41754: testing checking additions to CFLAGS ..." 1>&5 cf_check_cflags="$CFLAGS" cf_check_cppflags="$CPPFLAGS" @@ -41637,7 +41822,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}:41640: testing add to \$CFLAGS $cf_new_cflags ..." 1>&5 +echo "${as_me:-configure}:41825: testing add to \$CFLAGS $cf_new_cflags ..." 1>&5 CFLAGS="$CFLAGS $cf_new_cflags" fi @@ -41645,7 +41830,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}:41648: testing add to \$CPPFLAGS $cf_new_cppflags ..." 1>&5 +echo "${as_me:-configure}:41833: testing add to \$CPPFLAGS $cf_new_cppflags ..." 1>&5 CPPFLAGS="$CPPFLAGS $cf_new_cppflags" fi @@ -41653,14 +41838,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}:41656: testing add to \$EXTRA_CPPFLAGS $cf_new_extra_cppflags ..." 1>&5 +echo "${as_me:-configure}:41841: 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 41663 "configure" +#line 41848 "configure" #include "confdefs.h" #include <stdio.h> int @@ -41672,16 +41857,16 @@ printf("Hello world"); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:41675: \"$ac_link\"") >&5 +if { (eval echo "$as_me:41860: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:41678: \$? = $ac_status" >&5 + echo "$as_me:41863: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:41681: \"$ac_try\"") >&5 + { (eval echo "$as_me:41866: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:41684: \$? = $ac_status" >&5 + echo "$as_me:41869: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -41689,12 +41874,12 @@ else cat conftest.$ac_ext >&5 test -n "$verbose" && echo " test-compile failed. Undoing change to \$CFLAGS" 1>&6 -echo "${as_me:-configure}:41692: testing test-compile failed. Undoing change to \$CFLAGS ..." 1>&5 +echo "${as_me:-configure}:41877: 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}:41697: testing but keeping change to \$CPPFLAGS ..." 1>&5 +echo "${as_me:-configure}:41882: testing but keeping change to \$CPPFLAGS ..." 1>&5 fi CFLAGS="$cf_check_flags" @@ -41702,13 +41887,13 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi - echo "$as_me:41705: checking for XOpenDisplay" >&5 + echo "$as_me:41890: 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 41711 "configure" +#line 41896 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char XOpenDisplay (); below. */ @@ -41739,16 +41924,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:41742: \"$ac_link\"") >&5 +if { (eval echo "$as_me:41927: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:41745: \$? = $ac_status" >&5 + echo "$as_me:41930: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:41748: \"$ac_try\"") >&5 + { (eval echo "$as_me:41933: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:41751: \$? = $ac_status" >&5 + echo "$as_me:41936: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_XOpenDisplay=yes else @@ -41758,13 +41943,13 @@ ac_cv_func_XOpenDisplay=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:41761: result: $ac_cv_func_XOpenDisplay" >&5 +echo "$as_me:41946: 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:41767: checking for XOpenDisplay in -lX11" >&5 + echo "$as_me:41952: 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 @@ -41772,7 +41957,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lX11 $X_PRE_LIBS $LIBS $X_EXTRA_LIBS $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 41775 "configure" +#line 41960 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -41791,16 +41976,16 @@ XOpenDisplay (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:41794: \"$ac_link\"") >&5 +if { (eval echo "$as_me:41979: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:41797: \$? = $ac_status" >&5 + echo "$as_me:41982: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:41800: \"$ac_try\"") >&5 + { (eval echo "$as_me:41985: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:41803: \$? = $ac_status" >&5 + echo "$as_me:41988: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_X11_XOpenDisplay=yes else @@ -41811,7 +41996,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:41814: result: $ac_cv_lib_X11_XOpenDisplay" >&5 +echo "$as_me:41999: 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 @@ -41835,13 +42020,13 @@ fi fi - echo "$as_me:41838: checking for XtAppInitialize" >&5 + echo "$as_me:42023: 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 41844 "configure" +#line 42029 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char XtAppInitialize (); below. */ @@ -41872,16 +42057,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:41875: \"$ac_link\"") >&5 +if { (eval echo "$as_me:42060: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:41878: \$? = $ac_status" >&5 + echo "$as_me:42063: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:41881: \"$ac_try\"") >&5 + { (eval echo "$as_me:42066: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:41884: \$? = $ac_status" >&5 + echo "$as_me:42069: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_XtAppInitialize=yes else @@ -41891,13 +42076,13 @@ ac_cv_func_XtAppInitialize=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:41894: result: $ac_cv_func_XtAppInitialize" >&5 +echo "$as_me:42079: 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:41900: checking for XtAppInitialize in -lXt" >&5 + echo "$as_me:42085: 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 @@ -41905,7 +42090,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lXt $X_PRE_LIBS $LIBS $X_EXTRA_LIBS $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 41908 "configure" +#line 42093 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -41924,16 +42109,16 @@ XtAppInitialize (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:41927: \"$ac_link\"") >&5 +if { (eval echo "$as_me:42112: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:41930: \$? = $ac_status" >&5 + echo "$as_me:42115: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:41933: \"$ac_try\"") >&5 + { (eval echo "$as_me:42118: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:41936: \$? = $ac_status" >&5 + echo "$as_me:42121: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_Xt_XtAppInitialize=yes else @@ -41944,7 +42129,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:41947: result: $ac_cv_lib_Xt_XtAppInitialize" >&5 +echo "$as_me:42132: 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 @@ -41961,7 +42146,7 @@ fi fi if test $cf_have_X_LIBS = no ; then - { echo "$as_me:41964: WARNING: Unable to successfully link X Toolkit library (-lXt) with + { echo "$as_me:42149: 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 @@ -41983,14 +42168,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:41986: checking for $cf_test in $cf_path" >&5 + echo "$as_me:42171: 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:41989: checking for $cf_test" >&5 + echo "$as_me:42174: checking for $cf_test" >&5 echo $ECHO_N "checking for $cf_test... $ECHO_C" >&6 fi cat >conftest.$ac_ext <<_ACEOF -#line 41993 "configure" +#line 42178 "configure" #include "confdefs.h" #include <X11/Intrinsic.h> @@ -42004,16 +42189,16 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:42007: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:42192: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:42010: \$? = $ac_status" >&5 + echo "$as_me:42195: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:42013: \"$ac_try\"") >&5 + { (eval echo "$as_me:42198: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:42016: \$? = $ac_status" >&5 + echo "$as_me:42201: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_result=yes else @@ -42022,7 +42207,7 @@ cat conftest.$ac_ext >&5 cf_result=no fi rm -f conftest.$ac_objext conftest.$ac_ext - echo "$as_me:42025: result: $cf_result" >&5 + echo "$as_me:42210: result: $cf_result" >&5 echo "${ECHO_T}$cf_result" >&6 if test "$cf_result" = yes ; then cf_x_athena_inc=$cf_path @@ -42034,7 +42219,7 @@ echo "${ECHO_T}$cf_result" >&6 done if test -z "$cf_x_athena_inc" ; then - { echo "$as_me:42037: WARNING: Unable to successfully find Athena header files with test program" >&5 + { echo "$as_me:42222: 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" @@ -42080,7 +42265,7 @@ do done LIBS="$cf_add_libs" - echo "$as_me:42083: checking for $cf_libs in $cf_path" >&5 + echo "$as_me:42268: checking for $cf_libs in $cf_path" >&5 echo $ECHO_N "checking for $cf_libs in $cf_path... $ECHO_C" >&6 else @@ -42100,11 +42285,11 @@ do done LIBS="$cf_add_libs" - echo "$as_me:42103: checking for $cf_test in $cf_libs" >&5 + echo "$as_me:42288: 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 42107 "configure" +#line 42292 "configure" #include "confdefs.h" #include <X11/Intrinsic.h> @@ -42120,16 +42305,16 @@ $cf_test((XtAppContext) 0) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:42123: \"$ac_link\"") >&5 +if { (eval echo "$as_me:42308: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:42126: \$? = $ac_status" >&5 + echo "$as_me:42311: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:42129: \"$ac_try\"") >&5 + { (eval echo "$as_me:42314: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:42132: \$? = $ac_status" >&5 + echo "$as_me:42317: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_result=yes else @@ -42138,7 +42323,7 @@ cat conftest.$ac_ext >&5 cf_result=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext - echo "$as_me:42141: result: $cf_result" >&5 + echo "$as_me:42326: result: $cf_result" >&5 echo "${ECHO_T}$cf_result" >&6 if test "$cf_result" = yes ; then cf_x_athena_lib="$cf_libs" @@ -42152,7 +42337,7 @@ echo "${ECHO_T}$cf_result" >&6 done if test -z "$cf_x_athena_lib" ; then - { { echo "$as_me:42155: error: Unable to successfully link Athena library (-l$cf_x_athena_root) with test program" >&5 + { { echo "$as_me:42340: 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 @@ -42170,7 +42355,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:42173: checking for $ac_word" >&5 +echo "$as_me:42358: 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 @@ -42185,7 +42370,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:42188: found $ac_dir/$ac_word" >&5 +echo "$as_me:42373: found $ac_dir/$ac_word" >&5 break done @@ -42193,10 +42378,10 @@ fi fi XCURSES_CONFIG=$ac_cv_prog_XCURSES_CONFIG if test -n "$XCURSES_CONFIG"; then - echo "$as_me:42196: result: $XCURSES_CONFIG" >&5 + echo "$as_me:42381: result: $XCURSES_CONFIG" >&5 echo "${ECHO_T}$XCURSES_CONFIG" >&6 else - echo "$as_me:42199: result: no" >&5 + echo "$as_me:42384: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -42209,7 +42394,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:42212: checking for $ac_word" >&5 +echo "$as_me:42397: 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 @@ -42224,7 +42409,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:42227: found $ac_dir/$ac_word" >&5 +echo "$as_me:42412: found $ac_dir/$ac_word" >&5 break done @@ -42232,10 +42417,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:42235: result: $ac_ct_XCURSES_CONFIG" >&5 + echo "$as_me:42420: result: $ac_ct_XCURSES_CONFIG" >&5 echo "${ECHO_T}$ac_ct_XCURSES_CONFIG" >&6 else - echo "$as_me:42238: result: no" >&5 + echo "$as_me:42423: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -42274,7 +42459,7 @@ LDFLAGS="$LDFLAGS $X_LIBS" test -n "$verbose" && echo " checking additions to CFLAGS" 1>&6 -echo "${as_me:-configure}:42277: testing checking additions to CFLAGS ..." 1>&5 +echo "${as_me:-configure}:42462: testing checking additions to CFLAGS ..." 1>&5 cf_check_cflags="$CFLAGS" cf_check_cppflags="$CPPFLAGS" @@ -42345,7 +42530,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}:42348: testing add to \$CFLAGS $cf_new_cflags ..." 1>&5 +echo "${as_me:-configure}:42533: testing add to \$CFLAGS $cf_new_cflags ..." 1>&5 CFLAGS="$CFLAGS $cf_new_cflags" fi @@ -42353,7 +42538,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}:42356: testing add to \$CPPFLAGS $cf_new_cppflags ..." 1>&5 +echo "${as_me:-configure}:42541: testing add to \$CPPFLAGS $cf_new_cppflags ..." 1>&5 CPPFLAGS="$CPPFLAGS $cf_new_cppflags" fi @@ -42361,14 +42546,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}:42364: testing add to \$EXTRA_CPPFLAGS $cf_new_extra_cppflags ..." 1>&5 +echo "${as_me:-configure}:42549: 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 42371 "configure" +#line 42556 "configure" #include "confdefs.h" #include <stdio.h> int @@ -42380,16 +42565,16 @@ printf("Hello world"); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:42383: \"$ac_link\"") >&5 +if { (eval echo "$as_me:42568: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:42386: \$? = $ac_status" >&5 + echo "$as_me:42571: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:42389: \"$ac_try\"") >&5 + { (eval echo "$as_me:42574: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:42392: \$? = $ac_status" >&5 + echo "$as_me:42577: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -42397,12 +42582,12 @@ else cat conftest.$ac_ext >&5 test -n "$verbose" && echo " test-compile failed. Undoing change to \$CFLAGS" 1>&6 -echo "${as_me:-configure}:42400: testing test-compile failed. Undoing change to \$CFLAGS ..." 1>&5 +echo "${as_me:-configure}:42585: 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}:42405: testing but keeping change to \$CPPFLAGS ..." 1>&5 +echo "${as_me:-configure}:42590: testing but keeping change to \$CPPFLAGS ..." 1>&5 fi CFLAGS="$cf_check_flags" @@ -42410,7 +42595,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:42413: checking for XOpenDisplay in -lX11" >&5 +echo "$as_me:42598: 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 @@ -42418,7 +42603,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lX11 $X_PRE_LIBS $LIBS $X_EXTRA_LIBS $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 42421 "configure" +#line 42606 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -42437,16 +42622,16 @@ XOpenDisplay (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:42440: \"$ac_link\"") >&5 +if { (eval echo "$as_me:42625: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:42443: \$? = $ac_status" >&5 + echo "$as_me:42628: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:42446: \"$ac_try\"") >&5 + { (eval echo "$as_me:42631: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:42449: \$? = $ac_status" >&5 + echo "$as_me:42634: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_X11_XOpenDisplay=yes else @@ -42457,7 +42642,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:42460: result: $ac_cv_lib_X11_XOpenDisplay" >&5 +echo "$as_me:42645: 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 @@ -42479,7 +42664,7 @@ LIBS="$cf_add_libs" fi -echo "$as_me:42482: checking for XCurses library" >&5 +echo "$as_me:42667: 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 @@ -42502,7 +42687,7 @@ done LIBS="$cf_add_libs" cat >conftest.$ac_ext <<_ACEOF -#line 42505 "configure" +#line 42690 "configure" #include "confdefs.h" #include <xcurses.h> @@ -42517,16 +42702,16 @@ XCursesExit(); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:42520: \"$ac_link\"") >&5 +if { (eval echo "$as_me:42705: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:42523: \$? = $ac_status" >&5 + echo "$as_me:42708: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:42526: \"$ac_try\"") >&5 + { (eval echo "$as_me:42711: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:42529: \$? = $ac_status" >&5 + echo "$as_me:42714: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_lib_XCurses=yes else @@ -42537,7 +42722,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:42540: result: $cf_cv_lib_XCurses" >&5 +echo "$as_me:42725: result: $cf_cv_lib_XCurses" >&5 echo "${ECHO_T}$cf_cv_lib_XCurses" >&6 fi @@ -42552,23 +42737,23 @@ cat >>confdefs.h <<\EOF #define XCURSES 1 EOF - echo "$as_me:42555: checking for xcurses.h" >&5 + echo "$as_me:42740: 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 42561 "configure" +#line 42746 "configure" #include "confdefs.h" #include <xcurses.h> _ACEOF -if { (eval echo "$as_me:42565: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:42750: \"$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:42571: \$? = $ac_status" >&5 + echo "$as_me:42756: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -42587,7 +42772,7 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:42590: result: $ac_cv_header_xcurses_h" >&5 +echo "$as_me:42775: 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 @@ -42598,7 +42783,7 @@ EOF fi else - { { echo "$as_me:42601: error: Cannot link with XCurses" >&5 + { { echo "$as_me:42786: error: Cannot link with XCurses" >&5 echo "$as_me: error: Cannot link with XCurses" >&2;} { (exit 1); exit 1; }; } fi @@ -42607,7 +42792,7 @@ fi esac else -echo "$as_me:42610: checking if we can include termio.h with curses" >&5 +echo "$as_me:42795: 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 @@ -42617,7 +42802,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 42620 "configure" +#line 42805 "configure" #include "confdefs.h" #include <LYCurses.h> @@ -42631,16 +42816,16 @@ putchar(0x0a) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:42634: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:42819: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:42637: \$? = $ac_status" >&5 + echo "$as_me:42822: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:42640: \"$ac_try\"") >&5 + { (eval echo "$as_me:42825: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:42643: \$? = $ac_status" >&5 + echo "$as_me:42828: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_termio_and_curses=yes else @@ -42653,7 +42838,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext rm -f lynx_cfg.h fi -echo "$as_me:42656: result: $cf_cv_termio_and_curses" >&5 +echo "$as_me:42841: result: $cf_cv_termio_and_curses" >&5 echo "${ECHO_T}$cf_cv_termio_and_curses" >&6 test $cf_cv_termio_and_curses = yes && @@ -42670,23 +42855,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:42673: checking for $ac_header" >&5 +echo "$as_me:42858: 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 42679 "configure" +#line 42864 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:42683: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:42868: \"$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:42689: \$? = $ac_status" >&5 + echo "$as_me:42874: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -42705,7 +42890,7 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:42708: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:42893: 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 @@ -42717,7 +42902,7 @@ done fi -echo "$as_me:42720: checking if curses supports alternate-character set" >&5 +echo "$as_me:42905: 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 @@ -42726,7 +42911,7 @@ else for mapname in acs_map _acs_map do cat >conftest.$ac_ext <<_ACEOF -#line 42729 "configure" +#line 42914 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> @@ -42740,16 +42925,16 @@ chtype x = $mapname['l']; $mapname['m'] = 0 } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:42743: \"$ac_link\"") >&5 +if { (eval echo "$as_me:42928: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:42746: \$? = $ac_status" >&5 + echo "$as_me:42931: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:42749: \"$ac_try\"") >&5 + { (eval echo "$as_me:42934: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:42752: \$? = $ac_status" >&5 + echo "$as_me:42937: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_alt_char_set=$mapname break @@ -42763,21 +42948,21 @@ done fi -echo "$as_me:42766: result: $cf_cv_alt_char_set" >&5 +echo "$as_me:42951: 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:42773: checking if curses supports fancy attributes" >&5 +echo "$as_me:42958: 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 42780 "configure" +#line 42965 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> @@ -42795,16 +42980,16 @@ attrset(A_UNDERLINE|A_BOLD|A_REVERSE); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:42798: \"$ac_link\"") >&5 +if { (eval echo "$as_me:42983: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:42801: \$? = $ac_status" >&5 + echo "$as_me:42986: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:42804: \"$ac_try\"") >&5 + { (eval echo "$as_me:42989: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:42807: \$? = $ac_status" >&5 + echo "$as_me:42992: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_fancy_curses=yes else @@ -42816,14 +43001,14 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:42819: result: $cf_cv_fancy_curses" >&5 +echo "$as_me:43004: 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:42826: checking for function curses_version" >&5 +echo "$as_me:43011: 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 @@ -42833,7 +43018,7 @@ if test "$cross_compiling" = yes; then cf_cv_func_curses_version=unknown else cat >conftest.$ac_ext <<_ACEOF -#line 42836 "configure" +#line 43021 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> @@ -42846,15 +43031,15 @@ int main() _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:42849: \"$ac_link\"") >&5 +if { (eval echo "$as_me:43034: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:42852: \$? = $ac_status" >&5 + echo "$as_me:43037: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:42854: \"$ac_try\"") >&5 + { (eval echo "$as_me:43039: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:42857: \$? = $ac_status" >&5 + echo "$as_me:43042: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_func_curses_version=yes @@ -42869,7 +43054,7 @@ rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext fi rm -f core fi -echo "$as_me:42872: result: $cf_cv_func_curses_version" >&5 +echo "$as_me:43057: 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 @@ -42877,14 +43062,14 @@ cat >>confdefs.h <<\EOF EOF if test "$cf_cv_ncurses_version" != no ; then -echo "$as_me:42880: checking for obsolete/broken version of ncurses" >&5 +echo "$as_me:43065: 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 42887 "configure" +#line 43072 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> @@ -42903,16 +43088,16 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:42906: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:43091: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:42909: \$? = $ac_status" >&5 + echo "$as_me:43094: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:42912: \"$ac_try\"") >&5 + { (eval echo "$as_me:43097: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:42915: \$? = $ac_status" >&5 + echo "$as_me:43100: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_ncurses_broken=no else @@ -42924,10 +43109,10 @@ rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:42927: result: $cf_cv_ncurses_broken" >&5 +echo "$as_me:43112: 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:42930: WARNING: hmm... you should get an up-to-date version of ncurses" >&5 + { echo "$as_me:43115: 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 @@ -42937,14 +43122,14 @@ EOF fi fi -echo "$as_me:42940: checking if curses supports color attributes" >&5 +echo "$as_me:43125: 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 42947 "configure" +#line 43132 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> @@ -42964,16 +43149,16 @@ chtype x = COLOR_BLUE; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:42967: \"$ac_link\"") >&5 +if { (eval echo "$as_me:43152: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:42970: \$? = $ac_status" >&5 + echo "$as_me:43155: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:42973: \"$ac_try\"") >&5 + { (eval echo "$as_me:43158: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:42976: \$? = $ac_status" >&5 + echo "$as_me:43161: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_color_curses=yes else @@ -42985,7 +43170,7 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:42988: result: $cf_cv_color_curses" >&5 +echo "$as_me:43173: result: $cf_cv_color_curses" >&5 echo "${ECHO_T}$cf_cv_color_curses" >&6 if test $cf_cv_color_curses = yes ; then @@ -43007,23 +43192,23 @@ unistd.h \ do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` -echo "$as_me:43010: checking for $ac_header" >&5 +echo "$as_me:43195: 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 43016 "configure" +#line 43201 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:43020: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:43205: \"$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:43026: \$? = $ac_status" >&5 + echo "$as_me:43211: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -43042,7 +43227,7 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:43045: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:43230: 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 @@ -43057,23 +43242,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:43060: checking for $ac_header" >&5 +echo "$as_me:43245: 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 43066 "configure" +#line 43251 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:43070: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:43255: \"$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:43076: \$? = $ac_status" >&5 + echo "$as_me:43261: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -43092,7 +43277,7 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:43095: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:43280: 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 @@ -43110,10 +43295,10 @@ if test "$ac_cv_header_termios_h" = yes ; then *) termios_bad=maybe ;; esac if test "$termios_bad" = maybe ; then - echo "$as_me:43113: checking whether termios.h needs _POSIX_SOURCE" >&5 + echo "$as_me:43298: 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 43116 "configure" +#line 43301 "configure" #include "confdefs.h" #include <termios.h> int @@ -43125,16 +43310,16 @@ struct termios foo; int x = foo.c_iflag } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:43128: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:43313: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:43131: \$? = $ac_status" >&5 + echo "$as_me:43316: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:43134: \"$ac_try\"") >&5 + { (eval echo "$as_me:43319: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:43137: \$? = $ac_status" >&5 + echo "$as_me:43322: \$? = $ac_status" >&5 (exit $ac_status); }; }; then termios_bad=no else @@ -43142,7 +43327,7 @@ else cat conftest.$ac_ext >&5 cat >conftest.$ac_ext <<_ACEOF -#line 43145 "configure" +#line 43330 "configure" #include "confdefs.h" #define _POSIX_SOURCE @@ -43156,16 +43341,16 @@ struct termios foo; int x = foo.c_iflag } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:43159: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:43344: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:43162: \$? = $ac_status" >&5 + echo "$as_me:43347: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:43165: \"$ac_try\"") >&5 + { (eval echo "$as_me:43350: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:43168: \$? = $ac_status" >&5 + echo "$as_me:43353: \$? = $ac_status" >&5 (exit $ac_status); }; }; then termios_bad=unknown else @@ -43181,12 +43366,12 @@ rm -f conftest.$ac_objext conftest.$ac_ext fi rm -f conftest.$ac_objext conftest.$ac_ext - echo "$as_me:43184: result: $termios_bad" >&5 + echo "$as_me:43369: result: $termios_bad" >&5 echo "${ECHO_T}$termios_bad" >&6 fi fi -echo "$as_me:43189: checking declaration of size-change" >&5 +echo "$as_me:43374: 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 @@ -43201,7 +43386,7 @@ do CPPFLAGS="$cf_save_CPPFLAGS" test -n "$cf_opts" && CPPFLAGS="$CPPFLAGS -D$cf_opts" cat >conftest.$ac_ext <<_ACEOF -#line 43204 "configure" +#line 43389 "configure" #include "confdefs.h" #include <sys/types.h> #ifdef HAVE_TERMIOS_H @@ -43245,16 +43430,16 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:43248: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:43433: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:43251: \$? = $ac_status" >&5 + echo "$as_me:43436: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:43254: \"$ac_try\"") >&5 + { (eval echo "$as_me:43439: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:43257: \$? = $ac_status" >&5 + echo "$as_me:43442: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_sizechange=yes else @@ -43273,7 +43458,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext done fi -echo "$as_me:43276: result: $cf_cv_sizechange" >&5 +echo "$as_me:43461: result: $cf_cv_sizechange" >&5 echo "${ECHO_T}$cf_cv_sizechange" >&6 if test "$cf_cv_sizechange" != no ; then @@ -43291,14 +43476,14 @@ EOF esac fi -echo "$as_me:43294: checking if ttytype is declared in curses library" >&5 +echo "$as_me:43479: 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 43301 "configure" +#line 43486 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> int @@ -43310,16 +43495,16 @@ char *x = &ttytype[1]; *x = 1 } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:43313: \"$ac_link\"") >&5 +if { (eval echo "$as_me:43498: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:43316: \$? = $ac_status" >&5 + echo "$as_me:43501: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:43319: \"$ac_try\"") >&5 + { (eval echo "$as_me:43504: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:43322: \$? = $ac_status" >&5 + echo "$as_me:43507: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_have_ttytype=yes else @@ -43331,7 +43516,7 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:43334: result: $cf_cv_have_ttytype" >&5 +echo "$as_me:43519: result: $cf_cv_have_ttytype" >&5 echo "${ECHO_T}$cf_cv_have_ttytype" >&6 test $cf_cv_have_ttytype = yes && cat >>confdefs.h <<\EOF @@ -43340,14 +43525,14 @@ EOF if test "$use_wide_curses" = yes ; then -echo "$as_me:43343: checking if curses supports wide characters" >&5 +echo "$as_me:43528: 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 43350 "configure" +#line 43535 "configure" #include "confdefs.h" #include <stdlib.h> @@ -43366,16 +43551,16 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:43369: \"$ac_link\"") >&5 +if { (eval echo "$as_me:43554: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:43372: \$? = $ac_status" >&5 + echo "$as_me:43557: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:43375: \"$ac_try\"") >&5 + { (eval echo "$as_me:43560: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:43378: \$? = $ac_status" >&5 + echo "$as_me:43563: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_widec_curses=yes else @@ -43386,7 +43571,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:43389: result: $cf_cv_widec_curses" >&5 +echo "$as_me:43574: result: $cf_cv_widec_curses" >&5 echo "${ECHO_T}$cf_cv_widec_curses" >&6 if test "$cf_cv_widec_curses" = yes ; then @@ -43396,14 +43581,14 @@ cat >>confdefs.h <<\EOF EOF # This is needed on Tru64 5.0 to declare mbstate_t - echo "$as_me:43399: checking if we must include wchar.h to declare mbstate_t" >&5 + echo "$as_me:43584: 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 43406 "configure" +#line 43591 "configure" #include "confdefs.h" #include <stdlib.h> @@ -43417,23 +43602,23 @@ mbstate_t state } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:43420: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:43605: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:43423: \$? = $ac_status" >&5 + echo "$as_me:43608: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:43426: \"$ac_try\"") >&5 + { (eval echo "$as_me:43611: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:43429: \$? = $ac_status" >&5 + echo "$as_me:43614: \$? = $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 43436 "configure" +#line 43621 "configure" #include "confdefs.h" #include <stdlib.h> @@ -43448,16 +43633,16 @@ mbstate_t state } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:43451: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:43636: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:43454: \$? = $ac_status" >&5 + echo "$as_me:43639: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:43457: \"$ac_try\"") >&5 + { (eval echo "$as_me:43642: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:43460: \$? = $ac_status" >&5 + echo "$as_me:43645: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_widec_mbstate=yes else @@ -43469,7 +43654,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:43472: result: $cf_cv_widec_mbstate" >&5 +echo "$as_me:43657: result: $cf_cv_widec_mbstate" >&5 echo "${ECHO_T}$cf_cv_widec_mbstate" >&6 if test "$cf_cv_widec_mbstate" = yes ; then @@ -43492,14 +43677,14 @@ fi fi -echo "$as_me:43495: checking if we must define _XOPEN_SOURCE_EXTENDED" >&5 +echo "$as_me:43680: checking if we must define _XOPEN_SOURCE_EXTENDED" >&5 echo $ECHO_N "checking if we must define _XOPEN_SOURCE_EXTENDED... $ECHO_C" >&6 if test "${cf_cv_need_xopen_extension+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 43502 "configure" +#line 43687 "configure" #include "confdefs.h" #include <stdlib.h> @@ -43521,23 +43706,23 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:43524: \"$ac_link\"") >&5 +if { (eval echo "$as_me:43709: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:43527: \$? = $ac_status" >&5 + echo "$as_me:43712: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:43530: \"$ac_try\"") >&5 + { (eval echo "$as_me:43715: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:43533: \$? = $ac_status" >&5 + echo "$as_me:43718: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_need_xopen_extension=no else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 cat >conftest.$ac_ext <<_ACEOF -#line 43540 "configure" +#line 43725 "configure" #include "confdefs.h" #define _XOPEN_SOURCE_EXTENDED @@ -43559,16 +43744,16 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:43562: \"$ac_link\"") >&5 +if { (eval echo "$as_me:43747: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:43565: \$? = $ac_status" >&5 + echo "$as_me:43750: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:43568: \"$ac_try\"") >&5 + { (eval echo "$as_me:43753: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:43571: \$? = $ac_status" >&5 + echo "$as_me:43756: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_need_xopen_extension=yes else @@ -43580,11 +43765,11 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:43583: result: $cf_cv_need_xopen_extension" >&5 +echo "$as_me:43768: result: $cf_cv_need_xopen_extension" >&5 echo "${ECHO_T}$cf_cv_need_xopen_extension" >&6 test $cf_cv_need_xopen_extension = yes && CPPFLAGS="$CPPFLAGS -D_XOPEN_SOURCE_EXTENDED" -echo "$as_me:43587: checking for term.h" >&5 +echo "$as_me:43772: 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 @@ -43605,7 +43790,7 @@ esac for cf_header in $cf_header_list do cat >conftest.$ac_ext <<_ACEOF -#line 43608 "configure" +#line 43793 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> @@ -43619,16 +43804,16 @@ WINDOW *x } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:43622: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:43807: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:43625: \$? = $ac_status" >&5 + echo "$as_me:43810: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:43628: \"$ac_try\"") >&5 + { (eval echo "$as_me:43813: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:43631: \$? = $ac_status" >&5 + echo "$as_me:43816: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_term_header=$cf_header break @@ -43647,7 +43832,7 @@ no) for cf_header in ncurses/term.h ncursesw/term.h do cat >conftest.$ac_ext <<_ACEOF -#line 43650 "configure" +#line 43835 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> @@ -43665,16 +43850,16 @@ WINDOW *x } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:43668: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:43853: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:43671: \$? = $ac_status" >&5 + echo "$as_me:43856: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:43674: \"$ac_try\"") >&5 + { (eval echo "$as_me:43859: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:43677: \$? = $ac_status" >&5 + echo "$as_me:43862: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_term_header=$cf_header break @@ -43689,7 +43874,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext esac fi -echo "$as_me:43692: result: $cf_cv_term_header" >&5 +echo "$as_me:43877: result: $cf_cv_term_header" >&5 echo "${ECHO_T}$cf_cv_term_header" >&6 case $cf_cv_term_header in #(vi @@ -43716,7 +43901,7 @@ EOF ;; esac -echo "$as_me:43719: checking for unctrl.h" >&5 +echo "$as_me:43904: 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 @@ -43737,7 +43922,7 @@ esac for cf_header in $cf_header_list do cat >conftest.$ac_ext <<_ACEOF -#line 43740 "configure" +#line 43925 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> @@ -43751,16 +43936,16 @@ WINDOW *x } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:43754: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:43939: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:43757: \$? = $ac_status" >&5 + echo "$as_me:43942: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:43760: \"$ac_try\"") >&5 + { (eval echo "$as_me:43945: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:43763: \$? = $ac_status" >&5 + echo "$as_me:43948: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_unctrl_header=$cf_header break @@ -43773,12 +43958,12 @@ rm -f conftest.$ac_objext conftest.$ac_ext done fi -echo "$as_me:43776: result: $cf_cv_unctrl_header" >&5 +echo "$as_me:43961: result: $cf_cv_unctrl_header" >&5 echo "${ECHO_T}$cf_cv_unctrl_header" >&6 case $cf_cv_unctrl_header in #(vi no) - { echo "$as_me:43781: WARNING: unctrl.h header not found" >&5 + { echo "$as_me:43966: WARNING: unctrl.h header not found" >&5 echo "$as_me: WARNING: unctrl.h header not found" >&2;} ;; esac @@ -43834,10 +44019,10 @@ do cf_tr_func=`echo "$cf_func" | sed y%abcdefghijklmnopqrstuvwxyz./-%ABCDEFGHIJKLMNOPQRSTUVWXYZ___%` - echo "$as_me:43837: checking for ${cf_func}" >&5 + echo "$as_me:44022: checking for ${cf_func}" >&5 echo $ECHO_N "checking for ${cf_func}... $ECHO_C" >&6 -echo "${as_me:-configure}:43840: testing ${cf_func} ..." 1>&5 +echo "${as_me:-configure}:44025: testing ${cf_func} ..." 1>&5 if eval "test \"\${cf_cv_func_$cf_func+set}\" = set"; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -43846,7 +44031,7 @@ else eval cf_result='$ac_cv_func_'$cf_func if test ".$cf_result" != ".no"; then cat >conftest.$ac_ext <<_ACEOF -#line 43849 "configure" +#line 44034 "configure" #include "confdefs.h" #ifdef HAVE_XCURSES @@ -43879,16 +44064,16 @@ if (foo + 1234 > 5678) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:43882: \"$ac_link\"") >&5 +if { (eval echo "$as_me:44067: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:43885: \$? = $ac_status" >&5 + echo "$as_me:44070: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:43888: \"$ac_try\"") >&5 + { (eval echo "$as_me:44073: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:43891: \$? = $ac_status" >&5 + echo "$as_me:44076: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_result=yes else @@ -43904,7 +44089,7 @@ fi # use the computed/retrieved cache-value: eval 'cf_result=$cf_cv_func_'$cf_func - echo "$as_me:43907: result: $cf_result" >&5 + echo "$as_me:44092: result: $cf_result" >&5 echo "${ECHO_T}$cf_result" >&6 if test $cf_result != no; then cat >>confdefs.h <<EOF @@ -43920,13 +44105,13 @@ for ac_func in \ do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` -echo "$as_me:43923: checking for $ac_func" >&5 +echo "$as_me:44108: 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 43929 "configure" +#line 44114 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. */ @@ -43957,16 +44142,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:43960: \"$ac_link\"") >&5 +if { (eval echo "$as_me:44145: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:43963: \$? = $ac_status" >&5 + echo "$as_me:44148: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:43966: \"$ac_try\"") >&5 + { (eval echo "$as_me:44151: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:43969: \$? = $ac_status" >&5 + echo "$as_me:44154: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else @@ -43976,7 +44161,7 @@ eval "$as_ac_var=no" fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:43979: result: `eval echo '${'$as_ac_var'}'`" >&5 +echo "$as_me:44164: 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 @@ -43990,12 +44175,12 @@ fi if test $use_color_style != no ; then if test .$cf_cv_color_curses != .yes ; then - { { echo "$as_me:43993: error: Configuration does not support color-styles" >&5 + { { echo "$as_me:44178: 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:43998: error: Configuration does not support color-styles" >&5 + { { echo "$as_me:44183: error: Configuration does not support color-styles" >&5 echo "$as_me: error: Configuration does not support color-styles" >&2;} { (exit 1); exit 1; }; } fi @@ -44003,7 +44188,7 @@ fi if test $use_scrollbar != no ; then if test .$cf_cv_fancy_curses != .yes ; then - { echo "$as_me:44006: WARNING: Configuration does not support ACS_xxx definitions" >&5 + { echo "$as_me:44191: WARNING: Configuration does not support ACS_xxx definitions" >&5 echo "$as_me: WARNING: Configuration does not support ACS_xxx definitions" >&2;} else @@ -44017,7 +44202,7 @@ fi # use rpath for libraries in unusual places LD_RPATH_OPT= -echo "$as_me:44020: checking for an rpath option" >&5 +echo "$as_me:44205: checking for an rpath option" >&5 echo $ECHO_N "checking for an rpath option... $ECHO_C" >&6 case $cf_cv_system_name in #(vi irix*) #(vi @@ -44048,12 +44233,12 @@ solaris2*) #(vi *) ;; esac -echo "$as_me:44051: result: $LD_RPATH_OPT" >&5 +echo "$as_me:44236: result: $LD_RPATH_OPT" >&5 echo "${ECHO_T}$LD_RPATH_OPT" >&6 case "x$LD_RPATH_OPT" in #(vi x-R*) - echo "$as_me:44056: checking if we need a space after rpath option" >&5 + echo "$as_me:44241: 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" @@ -44074,7 +44259,7 @@ done LIBS="$cf_add_libs" cat >conftest.$ac_ext <<_ACEOF -#line 44077 "configure" +#line 44262 "configure" #include "confdefs.h" int @@ -44086,16 +44271,16 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:44089: \"$ac_link\"") >&5 +if { (eval echo "$as_me:44274: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:44092: \$? = $ac_status" >&5 + echo "$as_me:44277: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:44095: \"$ac_try\"") >&5 + { (eval echo "$as_me:44280: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:44098: \$? = $ac_status" >&5 + echo "$as_me:44283: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_rpath_space=no else @@ -44105,13 +44290,13 @@ cf_rpath_space=yes fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS="$cf_save_LIBS" - echo "$as_me:44108: result: $cf_rpath_space" >&5 + echo "$as_me:44293: 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:44114: checking if rpath-hack should be disabled" >&5 +echo "$as_me:44299: 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. @@ -44128,21 +44313,21 @@ else cf_disable_rpath_hack=no fi; -echo "$as_me:44131: result: $cf_disable_rpath_hack" >&5 +echo "$as_me:44316: 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:44135: checking for updated LDFLAGS" >&5 +echo "$as_me:44320: 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:44138: result: maybe" >&5 + echo "$as_me:44323: 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:44145: checking for $ac_word" >&5 +echo "$as_me:44330: 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 @@ -44157,7 +44342,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:44160: found $ac_dir/$ac_word" >&5 +echo "$as_me:44345: found $ac_dir/$ac_word" >&5 break done @@ -44165,10 +44350,10 @@ fi fi cf_ldd_prog=$ac_cv_prog_cf_ldd_prog if test -n "$cf_ldd_prog"; then - echo "$as_me:44168: result: $cf_ldd_prog" >&5 + echo "$as_me:44353: result: $cf_ldd_prog" >&5 echo "${ECHO_T}$cf_ldd_prog" >&6 else - echo "$as_me:44171: result: no" >&5 + echo "$as_me:44356: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -44182,7 +44367,7 @@ test -n "$cf_ldd_prog" || cf_ldd_prog="no" cf_rpath_oops= cat >conftest.$ac_ext <<_ACEOF -#line 44185 "configure" +#line 44370 "configure" #include "confdefs.h" #include <stdio.h> int @@ -44194,16 +44379,16 @@ printf("Hello"); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:44197: \"$ac_link\"") >&5 +if { (eval echo "$as_me:44382: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:44200: \$? = $ac_status" >&5 + echo "$as_me:44385: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:44203: \"$ac_try\"") >&5 + { (eval echo "$as_me:44388: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:44206: \$? = $ac_status" >&5 + echo "$as_me:44391: \$? = $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` @@ -44231,7 +44416,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}:44234: testing ...adding -L$cf_rpath_dir/lib to LDFLAGS for $cf_rpath_src ..." 1>&5 +echo "${as_me:-configure}:44419: testing ...adding -L$cf_rpath_dir/lib to LDFLAGS for $cf_rpath_src ..." 1>&5 LDFLAGS="$LDFLAGS -L$cf_rpath_dir/lib" break @@ -44243,11 +44428,11 @@ echo "${as_me:-configure}:44234: testing ...adding -L$cf_rpath_dir/lib to LDFLAG test -n "$verbose" && echo " ...checking EXTRA_LDFLAGS $EXTRA_LDFLAGS" 1>&6 -echo "${as_me:-configure}:44246: testing ...checking EXTRA_LDFLAGS $EXTRA_LDFLAGS ..." 1>&5 +echo "${as_me:-configure}:44431: testing ...checking EXTRA_LDFLAGS $EXTRA_LDFLAGS ..." 1>&5 test -n "$verbose" && echo " ...checking LDFLAGS $LDFLAGS" 1>&6 -echo "${as_me:-configure}:44250: testing ...checking LDFLAGS $LDFLAGS ..." 1>&5 +echo "${as_me:-configure}:44435: testing ...checking LDFLAGS $LDFLAGS ..." 1>&5 cf_rpath_dst= for cf_rpath_src in $LDFLAGS @@ -44284,7 +44469,7 @@ do then test -n "$verbose" && echo " ...Filter $cf_rpath_src ->$cf_rpath_tmp" 1>&6 -echo "${as_me:-configure}:44287: testing ...Filter $cf_rpath_src ->$cf_rpath_tmp ..." 1>&5 +echo "${as_me:-configure}:44472: testing ...Filter $cf_rpath_src ->$cf_rpath_tmp ..." 1>&5 EXTRA_LDFLAGS="$cf_rpath_tmp $EXTRA_LDFLAGS" fi @@ -44297,11 +44482,11 @@ LDFLAGS=$cf_rpath_dst test -n "$verbose" && echo " ...checked LDFLAGS $LDFLAGS" 1>&6 -echo "${as_me:-configure}:44300: testing ...checked LDFLAGS $LDFLAGS ..." 1>&5 +echo "${as_me:-configure}:44485: testing ...checked LDFLAGS $LDFLAGS ..." 1>&5 test -n "$verbose" && echo " ...checking LIBS $LIBS" 1>&6 -echo "${as_me:-configure}:44304: testing ...checking LIBS $LIBS ..." 1>&5 +echo "${as_me:-configure}:44489: testing ...checking LIBS $LIBS ..." 1>&5 cf_rpath_dst= for cf_rpath_src in $LIBS @@ -44338,7 +44523,7 @@ do then test -n "$verbose" && echo " ...Filter $cf_rpath_src ->$cf_rpath_tmp" 1>&6 -echo "${as_me:-configure}:44341: testing ...Filter $cf_rpath_src ->$cf_rpath_tmp ..." 1>&5 +echo "${as_me:-configure}:44526: testing ...Filter $cf_rpath_src ->$cf_rpath_tmp ..." 1>&5 EXTRA_LDFLAGS="$cf_rpath_tmp $EXTRA_LDFLAGS" fi @@ -44351,14 +44536,14 @@ LIBS=$cf_rpath_dst test -n "$verbose" && echo " ...checked LIBS $LIBS" 1>&6 -echo "${as_me:-configure}:44354: testing ...checked LIBS $LIBS ..." 1>&5 +echo "${as_me:-configure}:44539: testing ...checked LIBS $LIBS ..." 1>&5 test -n "$verbose" && echo " ...checked EXTRA_LDFLAGS $EXTRA_LDFLAGS" 1>&6 -echo "${as_me:-configure}:44358: testing ...checked EXTRA_LDFLAGS $EXTRA_LDFLAGS ..." 1>&5 +echo "${as_me:-configure}:44543: testing ...checked EXTRA_LDFLAGS $EXTRA_LDFLAGS ..." 1>&5 else - echo "$as_me:44361: result: no" >&5 + echo "$as_me:44546: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -44459,7 +44644,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:44462: creating $CONFIG_STATUS" >&5 +{ echo "$as_me:44647: creating $CONFIG_STATUS" >&5 echo "$as_me: creating $CONFIG_STATUS" >&6;} cat >$CONFIG_STATUS <<_ACEOF #! $SHELL @@ -44635,7 +44820,7 @@ cat >>$CONFIG_STATUS <<\EOF echo "$ac_cs_version"; exit 0 ;; --he | --h) # Conflict between --help and --header - { { echo "$as_me:44638: error: ambiguous option: $1 + { { echo "$as_me:44823: 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;} @@ -44654,7 +44839,7 @@ Try \`$0 --help' for more information." >&2;} ac_need_defaults=false;; # This is an error. - -*) { { echo "$as_me:44657: error: unrecognized option: $1 + -*) { { echo "$as_me:44842: 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;} @@ -44707,7 +44892,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:44710: error: invalid argument: $ac_config_target" >&5 + *) { { echo "$as_me:44895: error: invalid argument: $ac_config_target" >&5 echo "$as_me: error: invalid argument: $ac_config_target" >&2;} { (exit 1); exit 1; }; };; esac @@ -45041,7 +45226,7 @@ done; } esac if test x"$ac_file" != x-; then - { echo "$as_me:45044: creating $ac_file" >&5 + { echo "$as_me:45229: creating $ac_file" >&5 echo "$as_me: creating $ac_file" >&6;} rm -f "$ac_file" fi @@ -45059,7 +45244,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:45062: error: cannot find input file: $f" >&5 + test -f "$f" || { { echo "$as_me:45247: error: cannot find input file: $f" >&5 echo "$as_me: error: cannot find input file: $f" >&2;} { (exit 1); exit 1; }; } echo $f;; @@ -45072,7 +45257,7 @@ echo "$as_me: error: cannot find input file: $f" >&2;} echo $srcdir/$f else # /dev/null tree - { { echo "$as_me:45075: error: cannot find input file: $f" >&5 + { { echo "$as_me:45260: error: cannot find input file: $f" >&5 echo "$as_me: error: cannot find input file: $f" >&2;} { (exit 1); exit 1; }; } fi;; @@ -45088,7 +45273,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:45091: WARNING: datarootdir was used implicitly but not set: + { echo "$as_me:45276: 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;} @@ -45097,7 +45282,7 @@ $ac_seen" >&2;} fi ac_seen=`grep '${datarootdir}' $ac_item` if test -n "$ac_seen"; then - { echo "$as_me:45100: WARNING: datarootdir was used explicitly but not set: + { echo "$as_me:45285: 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;} @@ -45134,7 +45319,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:45137: WARNING: Variable $ac_name is used but was not set: + { echo "$as_me:45322: 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;} @@ -45145,7 +45330,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:45148: WARNING: Some variables may not be substituted: + { echo "$as_me:45333: WARNING: Some variables may not be substituted: $ac_seen" >&5 echo "$as_me: WARNING: Some variables may not be substituted: $ac_seen" >&2;} @@ -45194,7 +45379,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:45197: creating $ac_file" >&5 + test x"$ac_file" != x- && { echo "$as_me:45382: creating $ac_file" >&5 echo "$as_me: creating $ac_file" >&6;} # First look for the input files in the build tree, otherwise in the @@ -45205,7 +45390,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:45208: error: cannot find input file: $f" >&5 + test -f "$f" || { { echo "$as_me:45393: error: cannot find input file: $f" >&5 echo "$as_me: error: cannot find input file: $f" >&2;} { (exit 1); exit 1; }; } echo $f;; @@ -45218,7 +45403,7 @@ echo "$as_me: error: cannot find input file: $f" >&2;} echo $srcdir/$f else # /dev/null tree - { { echo "$as_me:45221: error: cannot find input file: $f" >&5 + { { echo "$as_me:45406: error: cannot find input file: $f" >&5 echo "$as_me: error: cannot find input file: $f" >&2;} { (exit 1); exit 1; }; } fi;; @@ -45336,7 +45521,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:45339: $ac_file is unchanged" >&5 + { echo "$as_me:45524: $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/LYCookie.c b/src/LYCookie.c index 04ee12fd..be801ab5 100644 --- a/src/LYCookie.c +++ b/src/LYCookie.c @@ -1,5 +1,5 @@ /* - * $LynxId: LYCookie.c,v 1.128 2013/11/28 11:18:12 tom Exp $ + * $LynxId: LYCookie.c,v 1.129 2014/11/29 15:28:10 Mike.Gorse Exp $ * * Lynx Cookie Support LYCookie.c * =================== @@ -716,13 +716,14 @@ static char *scan_cookie_sublist(char *hostname, char *header, int secure) { - HTList *hl; + HTList *hl, *next; cookie *co; time_t now = time(NULL); char crlftab[8]; sprintf(crlftab, "%c%c%c", CR, LF, '\t'); - for (hl = sublist; hl != NULL; hl = hl->next) { + for (hl = sublist; hl != NULL; hl = next) { + next = hl->next; co = (cookie *) hl->object; if (co == NULL) { diff --git a/src/tidy_tls.c b/src/tidy_tls.c index e6afeefa..f6dea810 100644 --- a/src/tidy_tls.c +++ b/src/tidy_tls.c @@ -1,5 +1,5 @@ /* - * $LynxId: tidy_tls.c,v 1.22 2014/01/11 17:34:51 tom Exp $ + * $LynxId: tidy_tls.c,v 1.24 2014/11/30 23:28:13 tom Exp $ * Copyright 2008-2013,2014 Thomas E. Dickey * with fix Copyright 2008 by Thomas Viehmann * @@ -11,7 +11,11 @@ #include <tidy_tls.h> #include <gnutls/x509.h> +#ifdef HAVE_GNUTLS_RND +#include <gnutls/crypto.h> +#else #include <gcrypt.h> +#endif #include <libtasn1.h> /* ASN1_SUCCESS,etc */ #include <string.h> @@ -95,8 +99,15 @@ unsigned long ERR_get_error(void) */ int RAND_bytes(unsigned char *buffer, int num) { + int rc; + +#ifdef HAVE_GNUTLS_RND + rc = gnutls_rnd(GNUTLS_RND_KEY, buffer, num); +#else gcry_randomize(buffer, num, GCRY_VERY_STRONG_RANDOM); - return 1; + rc = 1; +#endif + return rc; } /* |