diff options
-rw-r--r-- | CHANGES | 11 | ||||
-rw-r--r-- | WWW/Library/Implementation/HTUtils.h | 4 | ||||
-rw-r--r-- | aclocal.m4 | 63 | ||||
-rw-r--r-- | config.hin | 5 | ||||
-rwxr-xr-x | configure | 5643 | ||||
-rw-r--r-- | configure.in | 34 | ||||
-rw-r--r-- | src/LYStyle.c | 12 |
7 files changed, 3091 insertions, 2681 deletions
diff --git a/CHANGES b/CHANGES index 05be3da1..02ba67fc 100644 --- a/CHANGES +++ b/CHANGES @@ -1,9 +1,16 @@ --- $LynxId: CHANGES,v 1.670 2013/10/03 09:27:24 tom Exp $ +-- $LynxId: CHANGES,v 1.674 2013/10/07 11:53:38 tom Exp $ =============================================================================== Changes since Lynx 2.8 release =============================================================================== -2013-10-02 (2.8.8dev.17) +2013-10-07 (2.8.8dev.17) +* improve configure check for sleep, to work when cross-compiling to MinGW -TD +* modify configure check for inet_addr to work when cross-compiling to + MinGW -TD +* add configure check for Win32 flavor of PDCurses when cross-compiling to + MinGW using the "--with-screen=pdcurses" option -TD +* improve color-style simulation of old color scheme by coloring input fields + with color #5 -TD * correct search logic to match links which are wrapped on the right margin. Previous fixes to highlight arbitrarily long links overlooked this case (Debian #546264) -TD diff --git a/WWW/Library/Implementation/HTUtils.h b/WWW/Library/Implementation/HTUtils.h index 74cf332f..7b834fa0 100644 --- a/WWW/Library/Implementation/HTUtils.h +++ b/WWW/Library/Implementation/HTUtils.h @@ -1,5 +1,5 @@ /* - * $LynxId: HTUtils.h,v 1.115 2013/07/28 23:04:57 tom Exp $ + * $LynxId: HTUtils.h,v 1.116 2013/10/07 13:57:20 tom Exp $ * * Utility macros for the W3 code library * MACROS FOR GENERAL USE @@ -226,7 +226,7 @@ extern off_t LYatoll(const char *value); #include <dos.h> #endif -#if !defined(__MINGW32__) +#if defined(DECL_SLEEP) #undef sleep /* 1998/06/23 (Tue) 16:54:53 */ extern void sleep(unsigned __seconds); #endif diff --git a/aclocal.m4 b/aclocal.m4 index 8b425ff6..996f617f 100644 --- a/aclocal.m4 +++ b/aclocal.m4 @@ -1,11 +1,10 @@ -dnl $LynxId: aclocal.m4,v 1.200 2013/09/30 00:42:07 tom Exp $ +dnl $LynxId: aclocal.m4,v 1.204 2013/10/07 12:08:47 tom Exp $ dnl Macros for auto-configure script. -dnl by T.E.Dickey <dickey@invisible-island.net> +dnl by Thomas E. Dickey <dickey@invisible-island.net> dnl and Jim Spath <jspath@mail.bcpl.lib.md.us> dnl and Philippe De Muyter <phdm@macqel.be> dnl dnl Created: 1997/01/28 -dnl Updated: 2012/11/09 dnl dnl The autoconf used in Lynx development is GNU autoconf 2.13 or 2.52, patched dnl by Thomas Dickey. See your local GNU archives, and this URL: @@ -3248,22 +3247,14 @@ dnl dnl FIXME: the inner cases will probably need work on the header files. AC_DEFUN([CF_INET_ADDR],[ AC_CACHE_CHECK(for inet_aton function,cf_cv_have_inet_aton,[ -AC_TRY_LINK([#include <sys/types.h> -#include <sys/socket.h> -#include <netinet/in.h> -#include <arpa/inet.h> -],[inet_aton(0, (struct in_addr *)0)], +AC_TRY_LINK(CF__INET_HEAD,[inet_aton(0, (struct in_addr *)0)], [cf_cv_have_inet_aton=yes], [cf_cv_have_inet_aton=no])]) if test "$cf_cv_have_inet_aton" = yes ; then AC_DEFINE(HAVE_INET_ATON,1,[Define to 1 if we have inet_aton]) else AC_CACHE_CHECK(for inet_addr function,cf_cv_have_inet_addr,[ - AC_TRY_LINK([#include <sys/types.h> -#include <sys/socket.h> -#include <netinet/in.h> -#include <arpa/inet.h> - ],[inet_addr(0)], + AC_TRY_LINK(CF__INET_HEAD,[inet_addr(0)], [cf_cv_have_inet_addr=yes], [cf_cv_have_inet_addr=no])]) if test "$cf_cv_have_inet_addr" = no ; then @@ -3606,7 +3597,7 @@ AC_DEFUN([CF_MIXEDCASE_FILENAMES], AC_CACHE_CHECK(if filesystem supports mixed-case filenames,cf_cv_mixedcase,[ if test "$cross_compiling" = yes ; then case $target_alias in #(vi - *-os2-emx*|*-msdosdjgpp*|*-cygwin*|*-msys*|*-mingw32*|*-uwin*) #(vi + *-os2-emx*|*-msdosdjgpp*|*-cygwin*|*-msys*|*-mingw*|*-uwin*) #(vi cf_cv_mixedcase=no ;; *) @@ -4011,7 +4002,7 @@ cf_cv_netlibs="" cf_test_netlibs=yes case $host_os in #(vi -mingw32) # (vi +mingw*) # (vi AC_CHECK_HEADERS( windows.h winsock.h winsock2.h ) if test "$ac_cv_header_winsock2_h" = "yes" ; then @@ -4372,6 +4363,22 @@ case ".[$]$1" in #(vi esac ])dnl dnl --------------------------------------------------------------------------- +dnl CF_PDCURSES_W32 version: 1 updated: 2013/10/07 06:13:11 +dnl --------------- +dnl Configure for PDCurses' Win32 library, checking for definitions as well +dnl which are needed to use its header file correctly. +AC_DEFUN([CF_PDCURSES_W32],[ + +AC_CHECK_LIB(pdcurses,initscr,[ + CF_ADD_LIBS(-lpdcurses) + cf_cv_term_header=no + cf_cv_unctrl_header=no + AC_CHECK_FUNC(winwstr,[AC_DEFINE(PDC_WIDE)]) + AC_CHECK_FUNC(pdcurses_dll_iname,[AC_DEFINE(PDC_DLL_BUILD)]) +]) + +])dnl +dnl --------------------------------------------------------------------------- dnl CF_PDCURSES_X11 version: 13 updated: 2012/10/06 16:39:58 dnl --------------- dnl Configure for PDCurses' X11 library @@ -6868,6 +6875,32 @@ define([CF__ICONV_HEAD],[ #include <iconv.h>] )dnl dnl --------------------------------------------------------------------------- +dnl Header-files needed for inet.h compile-checks +define([CF__INET_HEAD],[ +#if defined(__MINGW32__) + +#undef WIN32_LEAN_AND_MEAN +#define WIN32_LEAN_AND_MEAN +#include <windows.h> + +#ifdef HAVE_WINSOCK2_H +#include <winsock2.h> +#else +#ifdef HAVE_WINSOCK_H +#include <winsock.h> +#endif +#endif + +#else + +#include <sys/types.h> +#include <sys/socket.h> +#include <netinet/in.h> +#include <arpa/inet.h> + +#endif +])dnl +dnl --------------------------------------------------------------------------- dnl CF__INTL_BODY version: 1 updated: 2007/07/26 17:35:47 dnl ------------- dnl Test-code needed for libintl compile-checks diff --git a/config.hin b/config.hin index 1ebba53e..b990a30a 100644 --- a/config.hin +++ b/config.hin @@ -1,5 +1,5 @@ /* - * $LynxId: config.hin,v 1.129 2013/05/01 08:55:50 tom Exp $ + * $LynxId: config.hin,v 1.131 2013/10/07 11:48:12 tom Exp $ * vile:cmode * * The configure script translates "config.hin" into "lynx_cfg.h" @@ -22,6 +22,7 @@ #undef DECL_ERRNO #undef DECL_GETGRGID #undef DECL_GETGRNAM +#undef DECL_SLEEP #undef DECL_STRSTR #undef DECL_SYS_ERRLIST #undef DIRED_SUPPORT /* AC_ARG_WITH(dired) */ @@ -218,6 +219,8 @@ #undef OK_INSTALL #undef OK_OVERRIDE /* CF_ARG_DISABLE(dired-override) */ #undef OK_PERMIT /* CF_ARG_DISABLE(dired-permit) */ +#undef PDC_DLL_BUILD /* CF_PDCURSES_W32 */ +#undef PDC_WIDE /* CF_PDCURSES_W32 */ #undef REAL_UNIX_SYSTEM /* CF_SLANG_UNIX_DEFS */ #undef RLOGIN_PATH /* CF_PATH_PROG(rlogin) */ #undef RM_PATH /* CF_PATH_PROG(rm) */ diff --git a/configure b/configure index 8b4a5072..e72f778d 100755 --- a/configure +++ b/configure @@ -2670,7 +2670,7 @@ else if test "$cross_compiling" = yes ; then case $target_alias in #(vi - *-os2-emx*|*-msdosdjgpp*|*-cygwin*|*-msys*|*-mingw32*|*-uwin*) #(vi + *-os2-emx*|*-msdosdjgpp*|*-cygwin*|*-msys*|*-mingw*|*-uwin*) #(vi cf_cv_mixedcase=no ;; *) @@ -11875,7 +11875,7 @@ cf_cv_netlibs="" cf_test_netlibs=yes case $host_os in #(vi -mingw32) # (vi +mingw*) # (vi for ac_header in windows.h winsock.h winsock2.h do @@ -13020,11 +13020,30 @@ else cat >conftest.$ac_ext <<_ACEOF #line 13021 "configure" #include "confdefs.h" + +#if defined(__MINGW32__) + +#undef WIN32_LEAN_AND_MEAN +#define WIN32_LEAN_AND_MEAN +#include <windows.h> + +#ifdef HAVE_WINSOCK2_H +#include <winsock2.h> +#else +#ifdef HAVE_WINSOCK_H +#include <winsock.h> +#endif +#endif + +#else + #include <sys/types.h> #include <sys/socket.h> #include <netinet/in.h> #include <arpa/inet.h> +#endif + int main () { @@ -13034,16 +13053,16 @@ inet_aton(0, (struct in_addr *)0) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:13037: \"$ac_link\"") >&5 +if { (eval echo "$as_me:13056: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:13040: \$? = $ac_status" >&5 + echo "$as_me:13059: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:13043: \"$ac_try\"") >&5 + { (eval echo "$as_me:13062: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:13046: \$? = $ac_status" >&5 + echo "$as_me:13065: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_have_inet_aton=yes else @@ -13053,7 +13072,7 @@ cf_cv_have_inet_aton=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:13056: result: $cf_cv_have_inet_aton" >&5 +echo "$as_me:13075: 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 @@ -13062,20 +13081,39 @@ cat >>confdefs.h <<\EOF EOF else - echo "$as_me:13065: checking for inet_addr function" >&5 + echo "$as_me:13084: 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 13072 "configure" +#line 13091 "configure" #include "confdefs.h" + +#if defined(__MINGW32__) + +#undef WIN32_LEAN_AND_MEAN +#define WIN32_LEAN_AND_MEAN +#include <windows.h> + +#ifdef HAVE_WINSOCK2_H +#include <winsock2.h> +#else +#ifdef HAVE_WINSOCK_H +#include <winsock.h> +#endif +#endif + +#else + #include <sys/types.h> #include <sys/socket.h> #include <netinet/in.h> #include <arpa/inet.h> +#endif + int main () { @@ -13085,16 +13123,16 @@ inet_addr(0) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:13088: \"$ac_link\"") >&5 +if { (eval echo "$as_me:13126: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:13091: \$? = $ac_status" >&5 + echo "$as_me:13129: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:13094: \"$ac_try\"") >&5 + { (eval echo "$as_me:13132: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:13097: \$? = $ac_status" >&5 + echo "$as_me:13135: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_have_inet_addr=yes else @@ -13104,10 +13142,10 @@ cf_cv_have_inet_addr=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:13107: result: $cf_cv_have_inet_addr" >&5 +echo "$as_me:13145: 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:13110: checking for library with inet_addr" >&5 + echo "$as_me:13148: 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 @@ -13118,7 +13156,7 @@ else do LIBS="$cf_save_LIBS $cf_inetlib" cat >conftest.$ac_ext <<_ACEOF -#line 13121 "configure" +#line 13159 "configure" #include "confdefs.h" #include <sys/types.h> #include <sys/socket.h> @@ -13134,16 +13172,16 @@ inet_addr(0) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:13137: \"$ac_link\"") >&5 +if { (eval echo "$as_me:13175: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:13140: \$? = $ac_status" >&5 + echo "$as_me:13178: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:13143: \"$ac_try\"") >&5 + { (eval echo "$as_me:13181: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:13146: \$? = $ac_status" >&5 + echo "$as_me:13184: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_lib_inet_addr=$cf_inetlib else @@ -13157,18 +13195,18 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext done fi -echo "$as_me:13160: result: $cf_cv_lib_inet_addr" >&5 +echo "$as_me:13198: result: $cf_cv_lib_inet_addr" >&5 echo "${ECHO_T}$cf_cv_lib_inet_addr" >&6 if test "$cf_cv_lib_inet_addr" != no ; then LIBS="$cf_cv_lib_inet_addr $LIBS" else - { echo "$as_me:13165: WARNING: Unable to find library for inet_addr function" >&5 + { echo "$as_me:13203: 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:13171: checking if you want to use pkg-config" >&5 +echo "$as_me:13209: 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. @@ -13178,7 +13216,7 @@ if test "${with_pkg_config+set}" = set; then else cf_pkg_config=yes fi; -echo "$as_me:13181: result: $cf_pkg_config" >&5 +echo "$as_me:13219: result: $cf_pkg_config" >&5 echo "${ECHO_T}$cf_pkg_config" >&6 case $cf_pkg_config in #(vi @@ -13190,7 +13228,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:13193: checking for $ac_word" >&5 +echo "$as_me:13231: 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 @@ -13207,7 +13245,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:13210: found $ac_dir/$ac_word" >&5 + echo "$as_me:13248: found $ac_dir/$ac_word" >&5 break fi done @@ -13218,10 +13256,10 @@ fi PKG_CONFIG=$ac_cv_path_PKG_CONFIG if test -n "$PKG_CONFIG"; then - echo "$as_me:13221: result: $PKG_CONFIG" >&5 + echo "$as_me:13259: result: $PKG_CONFIG" >&5 echo "${ECHO_T}$PKG_CONFIG" >&6 else - echo "$as_me:13224: result: no" >&5 + echo "$as_me:13262: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -13230,7 +13268,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:13233: checking for $ac_word" >&5 +echo "$as_me:13271: 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 @@ -13247,7 +13285,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:13250: found $ac_dir/$ac_word" >&5 + echo "$as_me:13288: found $ac_dir/$ac_word" >&5 break fi done @@ -13259,10 +13297,10 @@ fi ac_pt_PKG_CONFIG=$ac_cv_path_ac_pt_PKG_CONFIG if test -n "$ac_pt_PKG_CONFIG"; then - echo "$as_me:13262: result: $ac_pt_PKG_CONFIG" >&5 + echo "$as_me:13300: result: $ac_pt_PKG_CONFIG" >&5 echo "${ECHO_T}$ac_pt_PKG_CONFIG" >&6 else - echo "$as_me:13265: result: no" >&5 + echo "$as_me:13303: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -13305,7 +13343,7 @@ case ".$PKG_CONFIG" in #(vi PKG_CONFIG=`echo $PKG_CONFIG | sed -e s%NONE%$cf_path_syntax%` ;; *) - { { echo "$as_me:13308: error: expected a pathname, not \"$PKG_CONFIG\"" >&5 + { { echo "$as_me:13346: error: expected a pathname, not \"$PKG_CONFIG\"" >&5 echo "$as_me: error: expected a pathname, not \"$PKG_CONFIG\"" >&2;} { (exit 1); exit 1; }; } ;; @@ -13354,7 +13392,7 @@ if test -n "$cf_searchpath/include" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 13357 "configure" +#line 13395 "configure" #include "confdefs.h" #include <stdio.h> int @@ -13366,16 +13404,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:13369: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:13407: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:13372: \$? = $ac_status" >&5 + echo "$as_me:13410: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:13375: \"$ac_try\"") >&5 + { (eval echo "$as_me:13413: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:13378: \$? = $ac_status" >&5 + echo "$as_me:13416: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -13392,7 +13430,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}:13395: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:13433: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -13433,7 +13471,7 @@ if test -n "$cf_searchpath/../include" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 13436 "configure" +#line 13474 "configure" #include "confdefs.h" #include <stdio.h> int @@ -13445,16 +13483,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:13448: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:13486: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:13451: \$? = $ac_status" >&5 + echo "$as_me:13489: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:13454: \"$ac_try\"") >&5 + { (eval echo "$as_me:13492: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:13457: \$? = $ac_status" >&5 + echo "$as_me:13495: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -13471,7 +13509,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}:13474: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:13512: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -13487,7 +13525,7 @@ echo "${as_me:-configure}:13474: testing adding $cf_add_incdir to include-path . fi else -{ { echo "$as_me:13490: error: cannot find ssl library under $cf_cv_use_libssl" >&5 +{ { echo "$as_me:13528: 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 @@ -13512,7 +13550,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}:13515: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:13553: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -13541,7 +13579,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}:13544: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:13582: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -13550,7 +13588,7 @@ echo "${as_me:-configure}:13544: testing adding $cf_add_libdir to library-path . fi else -{ { echo "$as_me:13553: error: cannot find ssl library under $cf_cv_use_libssl" >&5 +{ { echo "$as_me:13591: 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 @@ -13681,7 +13719,7 @@ fi esac test -n "$verbose" && echo " adding $cf_libs_ssl to LIBS" 1>&6 -echo "${as_me:-configure}:13684: testing adding $cf_libs_ssl to LIBS ..." 1>&5 +echo "${as_me:-configure}:13722: testing adding $cf_libs_ssl to LIBS ..." 1>&5 LIBS="$cf_libs_ssl $LIBS" fi @@ -13702,7 +13740,7 @@ echo "${as_me:-configure}:13684: testing adding $cf_libs_ssl to LIBS ..." 1>&5 *-ldl) #(vi ;; *) - echo "$as_me:13705: checking for dlsym in -ldl" >&5 + echo "$as_me:13743: 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 @@ -13710,7 +13748,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-ldl $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 13713 "configure" +#line 13751 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -13729,16 +13767,16 @@ dlsym (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:13732: \"$ac_link\"") >&5 +if { (eval echo "$as_me:13770: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:13735: \$? = $ac_status" >&5 + echo "$as_me:13773: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:13738: \"$ac_try\"") >&5 + { (eval echo "$as_me:13776: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:13741: \$? = $ac_status" >&5 + echo "$as_me:13779: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_dl_dlsym=yes else @@ -13749,7 +13787,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:13752: result: $ac_cv_lib_dl_dlsym" >&5 +echo "$as_me:13790: 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" @@ -13765,12 +13803,12 @@ fi cf_cv_header_path_ssl= cf_cv_library_path_ssl= -echo "${as_me:-configure}:13768: testing Starting FIND_LINKAGE(ssl,openssl) ..." 1>&5 +echo "${as_me:-configure}:13806: testing Starting FIND_LINKAGE(ssl,openssl) ..." 1>&5 cf_save_LIBS="$LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 13773 "configure" +#line 13811 "configure" #include "confdefs.h" #include <stdio.h> @@ -13799,16 +13837,16 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:13802: \"$ac_link\"") >&5 +if { (eval echo "$as_me:13840: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:13805: \$? = $ac_status" >&5 + echo "$as_me:13843: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:13808: \"$ac_try\"") >&5 + { (eval echo "$as_me:13846: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:13811: \$? = $ac_status" >&5 + echo "$as_me:13849: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_find_linkage_ssl=yes @@ -13822,7 +13860,7 @@ cat conftest.$ac_ext >&5 LIBS="-lssl $cf_extra_ssl_libs $cf_save_LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 13825 "configure" +#line 13863 "configure" #include "confdefs.h" #include <stdio.h> @@ -13851,16 +13889,16 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:13854: \"$ac_link\"") >&5 +if { (eval echo "$as_me:13892: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:13857: \$? = $ac_status" >&5 + echo "$as_me:13895: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:13860: \"$ac_try\"") >&5 + { (eval echo "$as_me:13898: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:13863: \$? = $ac_status" >&5 + echo "$as_me:13901: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_find_linkage_ssl=yes @@ -13877,9 +13915,9 @@ cat conftest.$ac_ext >&5 test -n "$verbose" && echo " find linkage for ssl library" 1>&6 -echo "${as_me:-configure}:13880: testing find linkage for ssl library ..." 1>&5 +echo "${as_me:-configure}:13918: testing find linkage for ssl library ..." 1>&5 -echo "${as_me:-configure}:13882: testing Searching for headers in FIND_LINKAGE(ssl,openssl) ..." 1>&5 +echo "${as_me:-configure}:13920: testing Searching for headers in FIND_LINKAGE(ssl,openssl) ..." 1>&5 cf_save_CPPFLAGS="$CPPFLAGS" cf_test_CPPFLAGS="$CPPFLAGS" @@ -13992,11 +14030,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}:13995: testing ... testing $cf_cv_header_path_ssl ..." 1>&5 +echo "${as_me:-configure}:14033: 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 13999 "configure" +#line 14037 "configure" #include "confdefs.h" #include <stdio.h> @@ -14025,21 +14063,21 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:14028: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:14066: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:14031: \$? = $ac_status" >&5 + echo "$as_me:14069: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:14034: \"$ac_try\"") >&5 + { (eval echo "$as_me:14072: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:14037: \$? = $ac_status" >&5 + echo "$as_me:14075: \$? = $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}:14042: testing ... found ssl headers in $cf_cv_header_path_ssl ..." 1>&5 +echo "${as_me:-configure}:14080: testing ... found ssl headers in $cf_cv_header_path_ssl ..." 1>&5 cf_cv_find_linkage_ssl=maybe cf_test_CPPFLAGS="$CPPFLAGS" @@ -14057,7 +14095,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "$cf_cv_find_linkage_ssl" = maybe ; then -echo "${as_me:-configure}:14060: testing Searching for ssl library in FIND_LINKAGE(ssl,openssl) ..." 1>&5 +echo "${as_me:-configure}:14098: testing Searching for ssl library in FIND_LINKAGE(ssl,openssl) ..." 1>&5 cf_save_LIBS="$LIBS" cf_save_LDFLAGS="$LDFLAGS" @@ -14065,7 +14103,7 @@ echo "${as_me:-configure}:14060: 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 14068 "configure" +#line 14106 "configure" #include "confdefs.h" #include <stdio.h> @@ -14094,21 +14132,21 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:14097: \"$ac_link\"") >&5 +if { (eval echo "$as_me:14135: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:14100: \$? = $ac_status" >&5 + echo "$as_me:14138: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:14103: \"$ac_try\"") >&5 + { (eval echo "$as_me:14141: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:14106: \$? = $ac_status" >&5 + echo "$as_me:14144: \$? = $ac_status" >&5 (exit $ac_status); }; }; then test -n "$verbose" && echo " ... found ssl library in system" 1>&6 -echo "${as_me:-configure}:14111: testing ... found ssl library in system ..." 1>&5 +echo "${as_me:-configure}:14149: testing ... found ssl library in system ..." 1>&5 cf_cv_find_linkage_ssl=yes else @@ -14211,13 +14249,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}:14214: testing ... testing $cf_cv_library_path_ssl ..." 1>&5 +echo "${as_me:-configure}:14252: 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 14220 "configure" +#line 14258 "configure" #include "confdefs.h" #include <stdio.h> @@ -14246,21 +14284,21 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:14249: \"$ac_link\"") >&5 +if { (eval echo "$as_me:14287: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:14252: \$? = $ac_status" >&5 + echo "$as_me:14290: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:14255: \"$ac_try\"") >&5 + { (eval echo "$as_me:14293: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:14258: \$? = $ac_status" >&5 + echo "$as_me:14296: \$? = $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}:14263: testing ... found ssl library in $cf_cv_library_path_ssl ..." 1>&5 +echo "${as_me:-configure}:14301: testing ... found ssl library in $cf_cv_library_path_ssl ..." 1>&5 cf_cv_find_linkage_ssl=yes cf_cv_library_file_ssl="-lssl" @@ -14322,7 +14360,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}:14325: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:14363: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -14362,7 +14400,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 14365 "configure" +#line 14403 "configure" #include "confdefs.h" #include <stdio.h> int @@ -14374,16 +14412,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:14377: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:14415: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:14380: \$? = $ac_status" >&5 + echo "$as_me:14418: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:14383: \"$ac_try\"") >&5 + { (eval echo "$as_me:14421: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:14386: \$? = $ac_status" >&5 + echo "$as_me:14424: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -14400,7 +14438,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}:14403: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:14441: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -14440,10 +14478,10 @@ EOF esac fi -echo "$as_me:14443: checking for X509 support" >&5 +echo "$as_me:14481: checking for X509 support" >&5 echo $ECHO_N "checking for X509 support... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF -#line 14446 "configure" +#line 14484 "configure" #include "confdefs.h" #include <stdio.h> @@ -14467,16 +14505,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:14470: \"$ac_link\"") >&5 +if { (eval echo "$as_me:14508: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:14473: \$? = $ac_status" >&5 + echo "$as_me:14511: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:14476: \"$ac_try\"") >&5 + { (eval echo "$as_me:14514: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:14479: \$? = $ac_status" >&5 + echo "$as_me:14517: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_x509_support=yes else @@ -14485,7 +14523,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:14488: result: $cf_x509_support" >&5 +echo "$as_me:14526: result: $cf_x509_support" >&5 echo "${ECHO_T}$cf_x509_support" >&6 if test "$cf_x509_support" = yes ; then @@ -14537,7 +14575,7 @@ if test -n "$cf_searchpath/include" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 14540 "configure" +#line 14578 "configure" #include "confdefs.h" #include <stdio.h> int @@ -14549,16 +14587,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:14552: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:14590: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:14555: \$? = $ac_status" >&5 + echo "$as_me:14593: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:14558: \"$ac_try\"") >&5 + { (eval echo "$as_me:14596: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:14561: \$? = $ac_status" >&5 + echo "$as_me:14599: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -14575,7 +14613,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}:14578: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:14616: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -14616,7 +14654,7 @@ if test -n "$cf_searchpath/../include" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 14619 "configure" +#line 14657 "configure" #include "confdefs.h" #include <stdio.h> int @@ -14628,16 +14666,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:14631: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:14669: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:14634: \$? = $ac_status" >&5 + echo "$as_me:14672: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:14637: \"$ac_try\"") >&5 + { (eval echo "$as_me:14675: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:14640: \$? = $ac_status" >&5 + echo "$as_me:14678: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -14654,7 +14692,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}:14657: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:14695: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -14670,7 +14708,7 @@ echo "${as_me:-configure}:14657: testing adding $cf_add_incdir to include-path . fi else -{ { echo "$as_me:14673: error: cannot find ssl library under $cf_cv_use_libgnutls" >&5 +{ { echo "$as_me:14711: 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 @@ -14695,7 +14733,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}:14698: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:14736: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -14724,7 +14762,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}:14727: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:14765: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -14733,7 +14771,7 @@ echo "${as_me:-configure}:14727: testing adding $cf_add_libdir to library-path . fi else -{ { echo "$as_me:14736: error: cannot find ssl library under $cf_cv_use_libgnutls" >&5 +{ { echo "$as_me:14774: 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 @@ -14751,12 +14789,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}:14754: testing checking pkg-config for $cf_pkg_gnutls ..." 1>&5 +echo "${as_me:-configure}:14792: 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}:14759: testing ... found $cf_pkg_gnutls in pkg-config ..." 1>&5 +echo "${as_me:-configure}:14797: testing ... found $cf_pkg_gnutls in pkg-config ..." 1>&5 cf_cv_have_gnutls=yes cf_cv_pkg_config_ssl=yes @@ -14868,14 +14906,14 @@ fi esac test -n "$verbose" && echo " adding $cf_libs_ssl to LIBS" 1>&6 -echo "${as_me:-configure}:14871: testing adding $cf_libs_ssl to LIBS ..." 1>&5 +echo "${as_me:-configure}:14909: testing adding $cf_libs_ssl to LIBS ..." 1>&5 LIBS="$cf_libs_ssl $LIBS" fi else test -n "$verbose" && echo " ... did not find $cf_pkg_gnutls in pkg-config" 1>&6 -echo "${as_me:-configure}:14878: testing ... did not find $cf_pkg_gnutls in pkg-config ..." 1>&5 +echo "${as_me:-configure}:14916: testing ... did not find $cf_pkg_gnutls in pkg-config ..." 1>&5 cf_pkg_gnutls=none fi @@ -14895,12 +14933,12 @@ EOF cf_cv_header_path_gnutls= cf_cv_library_path_gnutls= -echo "${as_me:-configure}:14898: testing Starting FIND_LINKAGE(gnutls,) ..." 1>&5 +echo "${as_me:-configure}:14936: testing Starting FIND_LINKAGE(gnutls,) ..." 1>&5 cf_save_LIBS="$LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 14903 "configure" +#line 14941 "configure" #include "confdefs.h" #include <stdio.h> @@ -14929,16 +14967,16 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:14932: \"$ac_link\"") >&5 +if { (eval echo "$as_me:14970: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:14935: \$? = $ac_status" >&5 + echo "$as_me:14973: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:14938: \"$ac_try\"") >&5 + { (eval echo "$as_me:14976: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:14941: \$? = $ac_status" >&5 + echo "$as_me:14979: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_find_linkage_gnutls=yes @@ -14952,7 +14990,7 @@ cat conftest.$ac_ext >&5 LIBS="-lgnutls -lgnutls -lgcrypt $cf_save_LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 14955 "configure" +#line 14993 "configure" #include "confdefs.h" #include <stdio.h> @@ -14981,16 +15019,16 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:14984: \"$ac_link\"") >&5 +if { (eval echo "$as_me:15022: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:14987: \$? = $ac_status" >&5 + echo "$as_me:15025: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:14990: \"$ac_try\"") >&5 + { (eval echo "$as_me:15028: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:14993: \$? = $ac_status" >&5 + echo "$as_me:15031: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_find_linkage_gnutls=yes @@ -15007,9 +15045,9 @@ cat conftest.$ac_ext >&5 test -n "$verbose" && echo " find linkage for gnutls library" 1>&6 -echo "${as_me:-configure}:15010: testing find linkage for gnutls library ..." 1>&5 +echo "${as_me:-configure}:15048: testing find linkage for gnutls library ..." 1>&5 -echo "${as_me:-configure}:15012: testing Searching for headers in FIND_LINKAGE(gnutls,) ..." 1>&5 +echo "${as_me:-configure}:15050: testing Searching for headers in FIND_LINKAGE(gnutls,) ..." 1>&5 cf_save_CPPFLAGS="$CPPFLAGS" cf_test_CPPFLAGS="$CPPFLAGS" @@ -15122,11 +15160,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}:15125: testing ... testing $cf_cv_header_path_gnutls ..." 1>&5 +echo "${as_me:-configure}:15163: 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 15129 "configure" +#line 15167 "configure" #include "confdefs.h" #include <stdio.h> @@ -15155,21 +15193,21 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:15158: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:15196: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:15161: \$? = $ac_status" >&5 + echo "$as_me:15199: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:15164: \"$ac_try\"") >&5 + { (eval echo "$as_me:15202: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:15167: \$? = $ac_status" >&5 + echo "$as_me:15205: \$? = $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}:15172: testing ... found gnutls headers in $cf_cv_header_path_gnutls ..." 1>&5 +echo "${as_me:-configure}:15210: testing ... found gnutls headers in $cf_cv_header_path_gnutls ..." 1>&5 cf_cv_find_linkage_gnutls=maybe cf_test_CPPFLAGS="$CPPFLAGS" @@ -15187,7 +15225,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "$cf_cv_find_linkage_gnutls" = maybe ; then -echo "${as_me:-configure}:15190: testing Searching for gnutls library in FIND_LINKAGE(gnutls,) ..." 1>&5 +echo "${as_me:-configure}:15228: testing Searching for gnutls library in FIND_LINKAGE(gnutls,) ..." 1>&5 cf_save_LIBS="$LIBS" cf_save_LDFLAGS="$LDFLAGS" @@ -15284,13 +15322,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}:15287: testing ... testing $cf_cv_library_path_gnutls ..." 1>&5 +echo "${as_me:-configure}:15325: testing ... testing $cf_cv_library_path_gnutls ..." 1>&5 CPPFLAGS="$cf_test_CPPFLAGS" LIBS="-lgnutls -lgnutls -lgcrypt $cf_save_LIBS" LDFLAGS="$cf_save_LDFLAGS -L$cf_cv_library_path_gnutls" cat >conftest.$ac_ext <<_ACEOF -#line 15293 "configure" +#line 15331 "configure" #include "confdefs.h" #include <stdio.h> @@ -15319,21 +15357,21 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:15322: \"$ac_link\"") >&5 +if { (eval echo "$as_me:15360: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:15325: \$? = $ac_status" >&5 + echo "$as_me:15363: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:15328: \"$ac_try\"") >&5 + { (eval echo "$as_me:15366: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:15331: \$? = $ac_status" >&5 + echo "$as_me:15369: \$? = $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}:15336: testing ... found gnutls library in $cf_cv_library_path_gnutls ..." 1>&5 +echo "${as_me:-configure}:15374: testing ... found gnutls library in $cf_cv_library_path_gnutls ..." 1>&5 cf_cv_find_linkage_gnutls=yes cf_cv_library_file_gnutls="-lgnutls" @@ -15410,7 +15448,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 15413 "configure" +#line 15451 "configure" #include "confdefs.h" #include <stdio.h> int @@ -15422,16 +15460,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:15425: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:15463: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:15428: \$? = $ac_status" >&5 + echo "$as_me:15466: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:15431: \"$ac_try\"") >&5 + { (eval echo "$as_me:15469: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:15434: \$? = $ac_status" >&5 + echo "$as_me:15472: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -15448,7 +15486,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}:15451: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:15489: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -15487,7 +15525,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}:15490: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:15528: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -15500,10 +15538,10 @@ fi EXTRA_OBJS="$EXTRA_OBJS tidy_tls\$o" -echo "$as_me:15503: checking for X509 support" >&5 +echo "$as_me:15541: checking for X509 support" >&5 echo $ECHO_N "checking for X509 support... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF -#line 15506 "configure" +#line 15544 "configure" #include "confdefs.h" #include <stdio.h> @@ -15527,16 +15565,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:15530: \"$ac_link\"") >&5 +if { (eval echo "$as_me:15568: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:15533: \$? = $ac_status" >&5 + echo "$as_me:15571: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:15536: \"$ac_try\"") >&5 + { (eval echo "$as_me:15574: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:15539: \$? = $ac_status" >&5 + echo "$as_me:15577: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_x509_support=yes else @@ -15545,7 +15583,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:15548: result: $cf_x509_support" >&5 +echo "$as_me:15586: result: $cf_x509_support" >&5 echo "${ECHO_T}$cf_x509_support" >&6 if test "$cf_x509_support" = yes ; then @@ -15560,13 +15598,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:15563: checking for $ac_func" >&5 +echo "$as_me:15601: 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 15569 "configure" +#line 15607 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. */ @@ -15597,16 +15635,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:15600: \"$ac_link\"") >&5 +if { (eval echo "$as_me:15638: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:15603: \$? = $ac_status" >&5 + echo "$as_me:15641: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:15606: \"$ac_try\"") >&5 + { (eval echo "$as_me:15644: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:15609: \$? = $ac_status" >&5 + echo "$as_me:15647: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else @@ -15616,7 +15654,7 @@ eval "$as_ac_var=no" fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:15619: result: `eval echo '${'$as_ac_var'}'`" >&5 +echo "$as_me:15657: 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 @@ -15665,7 +15703,7 @@ if test -n "$cf_searchpath/include" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 15668 "configure" +#line 15706 "configure" #include "confdefs.h" #include <stdio.h> int @@ -15677,16 +15715,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:15680: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:15718: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:15683: \$? = $ac_status" >&5 + echo "$as_me:15721: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:15686: \"$ac_try\"") >&5 + { (eval echo "$as_me:15724: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:15689: \$? = $ac_status" >&5 + echo "$as_me:15727: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -15703,7 +15741,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}:15706: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:15744: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -15744,7 +15782,7 @@ if test -n "$cf_searchpath/../include" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 15747 "configure" +#line 15785 "configure" #include "confdefs.h" #include <stdio.h> int @@ -15756,16 +15794,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:15759: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:15797: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:15762: \$? = $ac_status" >&5 + echo "$as_me:15800: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:15765: \"$ac_try\"") >&5 + { (eval echo "$as_me:15803: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:15768: \$? = $ac_status" >&5 + echo "$as_me:15806: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -15782,7 +15820,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}:15785: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:15823: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -15798,7 +15836,7 @@ echo "${as_me:-configure}:15785: testing adding $cf_add_incdir to include-path . fi else -{ { echo "$as_me:15801: error: cannot find ssl library under $cf_cv_use_libgnutls" >&5 +{ { echo "$as_me:15839: 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 @@ -15823,7 +15861,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}:15826: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:15864: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -15852,7 +15890,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}:15855: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:15893: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -15861,7 +15899,7 @@ echo "${as_me:-configure}:15855: testing adding $cf_add_libdir to library-path . fi else -{ { echo "$as_me:15864: error: cannot find ssl library under $cf_cv_use_libgnutls" >&5 +{ { echo "$as_me:15902: 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 @@ -15879,12 +15917,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}:15882: testing checking pkg-config for $cf_pkg_gnutls ..." 1>&5 +echo "${as_me:-configure}:15920: 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}:15887: testing ... found $cf_pkg_gnutls in pkg-config ..." 1>&5 +echo "${as_me:-configure}:15925: testing ... found $cf_pkg_gnutls in pkg-config ..." 1>&5 cf_cv_have_gnutls=yes cf_cv_pkg_config_ssl=yes @@ -15996,14 +16034,14 @@ fi esac test -n "$verbose" && echo " adding $cf_libs_ssl to LIBS" 1>&6 -echo "${as_me:-configure}:15999: testing adding $cf_libs_ssl to LIBS ..." 1>&5 +echo "${as_me:-configure}:16037: testing adding $cf_libs_ssl to LIBS ..." 1>&5 LIBS="$cf_libs_ssl $LIBS" fi else test -n "$verbose" && echo " ... did not find $cf_pkg_gnutls in pkg-config" 1>&6 -echo "${as_me:-configure}:16006: testing ... did not find $cf_pkg_gnutls in pkg-config ..." 1>&5 +echo "${as_me:-configure}:16044: testing ... did not find $cf_pkg_gnutls in pkg-config ..." 1>&5 cf_pkg_gnutls=none fi @@ -16023,12 +16061,12 @@ EOF cf_cv_header_path_gnutls= cf_cv_library_path_gnutls= -echo "${as_me:-configure}:16026: testing Starting FIND_LINKAGE(gnutls,) ..." 1>&5 +echo "${as_me:-configure}:16064: testing Starting FIND_LINKAGE(gnutls,) ..." 1>&5 cf_save_LIBS="$LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 16031 "configure" +#line 16069 "configure" #include "confdefs.h" #include <stdio.h> @@ -16057,16 +16095,16 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:16060: \"$ac_link\"") >&5 +if { (eval echo "$as_me:16098: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:16063: \$? = $ac_status" >&5 + echo "$as_me:16101: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:16066: \"$ac_try\"") >&5 + { (eval echo "$as_me:16104: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:16069: \$? = $ac_status" >&5 + echo "$as_me:16107: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_find_linkage_gnutls=yes @@ -16080,7 +16118,7 @@ cat conftest.$ac_ext >&5 LIBS="-lgnutls -lgnutls-openssl -lgnutls-extra -lgnutls -lgcrypt $cf_save_LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 16083 "configure" +#line 16121 "configure" #include "confdefs.h" #include <stdio.h> @@ -16109,16 +16147,16 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:16112: \"$ac_link\"") >&5 +if { (eval echo "$as_me:16150: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:16115: \$? = $ac_status" >&5 + echo "$as_me:16153: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:16118: \"$ac_try\"") >&5 + { (eval echo "$as_me:16156: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:16121: \$? = $ac_status" >&5 + echo "$as_me:16159: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_find_linkage_gnutls=yes @@ -16135,9 +16173,9 @@ cat conftest.$ac_ext >&5 test -n "$verbose" && echo " find linkage for gnutls library" 1>&6 -echo "${as_me:-configure}:16138: testing find linkage for gnutls library ..." 1>&5 +echo "${as_me:-configure}:16176: testing find linkage for gnutls library ..." 1>&5 -echo "${as_me:-configure}:16140: testing Searching for headers in FIND_LINKAGE(gnutls,) ..." 1>&5 +echo "${as_me:-configure}:16178: testing Searching for headers in FIND_LINKAGE(gnutls,) ..." 1>&5 cf_save_CPPFLAGS="$CPPFLAGS" cf_test_CPPFLAGS="$CPPFLAGS" @@ -16250,11 +16288,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}:16253: testing ... testing $cf_cv_header_path_gnutls ..." 1>&5 +echo "${as_me:-configure}:16291: 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 16257 "configure" +#line 16295 "configure" #include "confdefs.h" #include <stdio.h> @@ -16283,21 +16321,21 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:16286: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:16324: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:16289: \$? = $ac_status" >&5 + echo "$as_me:16327: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:16292: \"$ac_try\"") >&5 + { (eval echo "$as_me:16330: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:16295: \$? = $ac_status" >&5 + echo "$as_me:16333: \$? = $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}:16300: testing ... found gnutls headers in $cf_cv_header_path_gnutls ..." 1>&5 +echo "${as_me:-configure}:16338: testing ... found gnutls headers in $cf_cv_header_path_gnutls ..." 1>&5 cf_cv_find_linkage_gnutls=maybe cf_test_CPPFLAGS="$CPPFLAGS" @@ -16315,7 +16353,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "$cf_cv_find_linkage_gnutls" = maybe ; then -echo "${as_me:-configure}:16318: testing Searching for gnutls library in FIND_LINKAGE(gnutls,) ..." 1>&5 +echo "${as_me:-configure}:16356: testing Searching for gnutls library in FIND_LINKAGE(gnutls,) ..." 1>&5 cf_save_LIBS="$LIBS" cf_save_LDFLAGS="$LDFLAGS" @@ -16412,13 +16450,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}:16415: testing ... testing $cf_cv_library_path_gnutls ..." 1>&5 +echo "${as_me:-configure}:16453: testing ... testing $cf_cv_library_path_gnutls ..." 1>&5 CPPFLAGS="$cf_test_CPPFLAGS" LIBS="-lgnutls -lgnutls-openssl -lgnutls-extra -lgnutls -lgcrypt $cf_save_LIBS" LDFLAGS="$cf_save_LDFLAGS -L$cf_cv_library_path_gnutls" cat >conftest.$ac_ext <<_ACEOF -#line 16421 "configure" +#line 16459 "configure" #include "confdefs.h" #include <stdio.h> @@ -16447,21 +16485,21 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:16450: \"$ac_link\"") >&5 +if { (eval echo "$as_me:16488: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:16453: \$? = $ac_status" >&5 + echo "$as_me:16491: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:16456: \"$ac_try\"") >&5 + { (eval echo "$as_me:16494: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:16459: \$? = $ac_status" >&5 + echo "$as_me:16497: \$? = $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}:16464: testing ... found gnutls library in $cf_cv_library_path_gnutls ..." 1>&5 +echo "${as_me:-configure}:16502: testing ... found gnutls library in $cf_cv_library_path_gnutls ..." 1>&5 cf_cv_find_linkage_gnutls=yes cf_cv_library_file_gnutls="-lgnutls" @@ -16538,7 +16576,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 16541 "configure" +#line 16579 "configure" #include "confdefs.h" #include <stdio.h> int @@ -16550,16 +16588,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:16553: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:16591: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:16556: \$? = $ac_status" >&5 + echo "$as_me:16594: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:16559: \"$ac_try\"") >&5 + { (eval echo "$as_me:16597: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:16562: \$? = $ac_status" >&5 + echo "$as_me:16600: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -16576,7 +16614,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}:16579: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:16617: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -16615,7 +16653,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}:16618: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:16656: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -16627,7 +16665,7 @@ fi LIBS="-lgnutls -lgcrypt $LIBS" if test "$cf_pkg_gnutls" = none ; then - echo "$as_me:16630: checking for SSL_connect in -lgnutls-openssl" >&5 + echo "$as_me:16668: 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 @@ -16635,7 +16673,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lgnutls-openssl $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 16638 "configure" +#line 16676 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -16654,16 +16692,16 @@ SSL_connect (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:16657: \"$ac_link\"") >&5 +if { (eval echo "$as_me:16695: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:16660: \$? = $ac_status" >&5 + echo "$as_me:16698: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:16663: \"$ac_try\"") >&5 + { (eval echo "$as_me:16701: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:16666: \$? = $ac_status" >&5 + echo "$as_me:16704: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_gnutls_openssl_SSL_connect=yes else @@ -16674,12 +16712,12 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:16677: result: $ac_cv_lib_gnutls_openssl_SSL_connect" >&5 +echo "$as_me:16715: result: $ac_cv_lib_gnutls_openssl_SSL_connect" >&5 echo "${ECHO_T}$ac_cv_lib_gnutls_openssl_SSL_connect" >&6 if test $ac_cv_lib_gnutls_openssl_SSL_connect = yes; then LIBS="-lgnutls-openssl $LIBS" else - echo "$as_me:16682: checking for SSL_connect in -lgnutls-extra" >&5 + echo "$as_me:16720: 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 @@ -16687,7 +16725,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lgnutls-extra $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 16690 "configure" +#line 16728 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -16706,16 +16744,16 @@ SSL_connect (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:16709: \"$ac_link\"") >&5 +if { (eval echo "$as_me:16747: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:16712: \$? = $ac_status" >&5 + echo "$as_me:16750: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:16715: \"$ac_try\"") >&5 + { (eval echo "$as_me:16753: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:16718: \$? = $ac_status" >&5 + echo "$as_me:16756: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_gnutls_extra_SSL_connect=yes else @@ -16726,12 +16764,12 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:16729: result: $ac_cv_lib_gnutls_extra_SSL_connect" >&5 +echo "$as_me:16767: result: $ac_cv_lib_gnutls_extra_SSL_connect" >&5 echo "${ECHO_T}$ac_cv_lib_gnutls_extra_SSL_connect" >&6 if test $ac_cv_lib_gnutls_extra_SSL_connect = yes; then LIBS="-lgnutls-extra $LIBS" else - { { echo "$as_me:16734: error: cannot find gnutls openssl functions" >&5 + { { echo "$as_me:16772: error: cannot find gnutls openssl functions" >&5 echo "$as_me: error: cannot find gnutls openssl functions" >&2;} { (exit 1); exit 1; }; } fi @@ -16740,10 +16778,10 @@ fi fi -echo "$as_me:16743: checking for X509 support" >&5 +echo "$as_me:16781: checking for X509 support" >&5 echo $ECHO_N "checking for X509 support... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF -#line 16746 "configure" +#line 16784 "configure" #include "confdefs.h" #include <stdio.h> @@ -16767,16 +16805,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:16770: \"$ac_link\"") >&5 +if { (eval echo "$as_me:16808: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:16773: \$? = $ac_status" >&5 + echo "$as_me:16811: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:16776: \"$ac_try\"") >&5 + { (eval echo "$as_me:16814: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:16779: \$? = $ac_status" >&5 + echo "$as_me:16817: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_x509_support=yes else @@ -16785,7 +16823,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:16788: result: $cf_x509_support" >&5 +echo "$as_me:16826: result: $cf_x509_support" >&5 echo "${ECHO_T}$cf_x509_support" >&6 if test "$cf_x509_support" = yes ; then @@ -16817,7 +16855,7 @@ no) #(vi ;; yes) #(vi -echo "$as_me:16820: checking for SSL_get_version in -lnss_compat_ossl" >&5 +echo "$as_me:16858: 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 @@ -16825,7 +16863,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lnss_compat_ossl -lnss_compat_ossl $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 16828 "configure" +#line 16866 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -16844,16 +16882,16 @@ SSL_get_version (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:16847: \"$ac_link\"") >&5 +if { (eval echo "$as_me:16885: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:16850: \$? = $ac_status" >&5 + echo "$as_me:16888: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:16853: \"$ac_try\"") >&5 + { (eval echo "$as_me:16891: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:16856: \$? = $ac_status" >&5 + echo "$as_me:16894: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_nss_compat_ossl_SSL_get_version=yes else @@ -16864,7 +16902,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:16867: result: $ac_cv_lib_nss_compat_ossl_SSL_get_version" >&5 +echo "$as_me:16905: 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 @@ -16879,11 +16917,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}:16882: testing assume it is in $cf_ssl_root ..." 1>&5 +echo "${as_me:-configure}:16920: 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:16886: error: cannot find NSS compilant libraries" >&5 + { { echo "$as_me:16924: error: cannot find NSS compilant libraries" >&5 echo "$as_me: error: cannot find NSS compilant libraries" >&2;} { (exit 1); exit 1; }; } fi @@ -16898,13 +16936,13 @@ fi elif test -d $cf_cv_use_libnss_compat/../include ; then cf_ssl_root=$cf_cv_use_libnss_compat/.. else - { { echo "$as_me:16901: error: cannot find NSS compilant library under $cf_cv_use_libnss_compat" >&5 + { { echo "$as_me:16939: 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:16907: WARNING: expected a directory: $cf_cv_use_libnss_compat" >&5 + { echo "$as_me:16945: WARNING: expected a directory: $cf_cv_use_libnss_compat" >&5 echo "$as_me: WARNING: expected a directory: $cf_cv_use_libnss_compat" >&2;} fi ;; @@ -16998,10 +17036,10 @@ if test -n "$cf_new_extra_cppflags" ; then fi if test "$cf_ssl_subincs" = yes ; then -echo "$as_me:17001: checking for NSS compilant include directory" >&5 +echo "$as_me:17039: 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 17004 "configure" +#line 17042 "configure" #include "confdefs.h" #include <stdio.h> @@ -17015,16 +17053,16 @@ SSL_shutdown((SSL *)0) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:17018: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:17056: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:17021: \$? = $ac_status" >&5 + echo "$as_me:17059: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:17024: \"$ac_try\"") >&5 + { (eval echo "$as_me:17062: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:17027: \$? = $ac_status" >&5 + echo "$as_me:17065: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_ssl_incl=yes else @@ -17033,7 +17071,7 @@ cat conftest.$ac_ext >&5 cf_ssl_incl=no fi rm -f conftest.$ac_objext conftest.$ac_ext -echo "$as_me:17036: result: $cf_ssl_incl" >&5 +echo "$as_me:17074: result: $cf_ssl_incl" >&5 echo "${ECHO_T}$cf_ssl_incl" >&6 test "$cf_ssl_incl" = yes && cat >>confdefs.h <<\EOF @@ -17042,10 +17080,10 @@ EOF fi -echo "$as_me:17045: checking if we can link to NSS compilant library" >&5 +echo "$as_me:17083: 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 17048 "configure" +#line 17086 "configure" #include "confdefs.h" #include <stdio.h> @@ -17064,16 +17102,16 @@ SSL_shutdown((SSL *)0) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:17067: \"$ac_link\"") >&5 +if { (eval echo "$as_me:17105: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:17070: \$? = $ac_status" >&5 + echo "$as_me:17108: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:17073: \"$ac_try\"") >&5 + { (eval echo "$as_me:17111: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:17076: \$? = $ac_status" >&5 + echo "$as_me:17114: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_ssl_library=yes else @@ -17082,7 +17120,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:17085: result: $cf_ssl_library" >&5 +echo "$as_me:17123: result: $cf_ssl_library" >&5 echo "${ECHO_T}$cf_ssl_library" >&6 if test "$cf_ssl_library" = yes ; then @@ -17095,7 +17133,7 @@ cat >>confdefs.h <<\EOF EOF else - { { echo "$as_me:17098: error: Cannot link with NSS compilant libraries" >&5 + { { echo "$as_me:17136: error: Cannot link with NSS compilant libraries" >&5 echo "$as_me: error: Cannot link with NSS compilant libraries" >&2;} { (exit 1); exit 1; }; } fi @@ -17103,7 +17141,7 @@ fi fi ### check for ipv6 support -echo "$as_me:17106: checking whether to enable ipv6" >&5 +echo "$as_me:17144: 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. @@ -17120,11 +17158,11 @@ EOF else enableval=no fi; -echo "$as_me:17123: result: $enableval" >&5 +echo "$as_me:17161: result: $enableval" >&5 echo "${ECHO_T}$enableval" >&6 if test "$enableval" = "yes"; then -echo "$as_me:17127: checking ipv6 stack type" >&5 +echo "$as_me:17165: 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 @@ -17145,7 +17183,7 @@ do ;; inria) #(vi cat >conftest.$ac_ext <<_ACEOF -#line 17148 "configure" +#line 17186 "configure" #include "confdefs.h" #include <netinet/in.h> @@ -17162,7 +17200,7 @@ rm -rf conftest* ;; kame) #(vi cat >conftest.$ac_ext <<_ACEOF -#line 17165 "configure" +#line 17203 "configure" #include "confdefs.h" #include <netinet/in.h> @@ -17179,7 +17217,7 @@ rm -rf conftest* ;; linux-glibc) #(vi cat >conftest.$ac_ext <<_ACEOF -#line 17182 "configure" +#line 17220 "configure" #include "confdefs.h" #include <features.h> @@ -17205,7 +17243,7 @@ rm -rf conftest* ;; toshiba) #(vi cat >conftest.$ac_ext <<_ACEOF -#line 17208 "configure" +#line 17246 "configure" #include "confdefs.h" #include <sys/param.h> @@ -17222,7 +17260,7 @@ rm -rf conftest* ;; v6d) #(vi cat >conftest.$ac_ext <<_ACEOF -#line 17225 "configure" +#line 17263 "configure" #include "confdefs.h" #include </usr/local/v6/include/sys/v6config.h> @@ -17239,7 +17277,7 @@ rm -rf conftest* ;; zeta) cat >conftest.$ac_ext <<_ACEOF -#line 17242 "configure" +#line 17280 "configure" #include "confdefs.h" #include <sys/param.h> @@ -17261,13 +17299,13 @@ rm -rf conftest* done fi -echo "$as_me:17264: result: $cf_cv_ipv6type" >&5 +echo "$as_me:17302: result: $cf_cv_ipv6type" >&5 echo "${ECHO_T}$cf_cv_ipv6type" >&6 cf_ipv6lib=none cf_ipv6dir=none -echo "$as_me:17270: checking for IPv6 library if required" >&5 +echo "$as_me:17308: 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 @@ -17297,13 +17335,13 @@ zeta) cf_ipv6dir=v6 ;; esac -echo "$as_me:17300: result: $cf_ipv6lib" >&5 +echo "$as_me:17338: result: $cf_ipv6lib" >&5 echo "${ECHO_T}$cf_ipv6lib" >&6 if test "$cf_ipv6lib" != "none"; then cat >conftest.$ac_ext <<_ACEOF -#line 17306 "configure" +#line 17344 "configure" #include "confdefs.h" #include <sys/types.h> @@ -17319,16 +17357,16 @@ getaddrinfo(0, 0, 0, 0) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:17322: \"$ac_link\"") >&5 +if { (eval echo "$as_me:17360: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:17325: \$? = $ac_status" >&5 + echo "$as_me:17363: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:17328: \"$ac_try\"") >&5 + { (eval echo "$as_me:17366: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:17331: \$? = $ac_status" >&5 + echo "$as_me:17369: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -17468,7 +17506,7 @@ if test -n "$cf_incdir" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 17471 "configure" +#line 17509 "configure" #include "confdefs.h" #include <stdio.h> int @@ -17480,16 +17518,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:17483: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:17521: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:17486: \$? = $ac_status" >&5 + echo "$as_me:17524: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:17489: \"$ac_try\"") >&5 + { (eval echo "$as_me:17527: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:17492: \$? = $ac_status" >&5 + echo "$as_me:17530: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -17506,7 +17544,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}:17509: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:17547: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -17532,13 +17570,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:17535: checking for getaddrinfo" >&5 + echo "$as_me:17573: 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 17541 "configure" +#line 17579 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char getaddrinfo (); below. */ @@ -17569,16 +17607,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:17572: \"$ac_link\"") >&5 +if { (eval echo "$as_me:17610: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:17575: \$? = $ac_status" >&5 + echo "$as_me:17613: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:17578: \"$ac_try\"") >&5 + { (eval echo "$as_me:17616: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:17581: \$? = $ac_status" >&5 + echo "$as_me:17619: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_getaddrinfo=yes else @@ -17588,18 +17626,18 @@ ac_cv_func_getaddrinfo=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:17591: result: $ac_cv_func_getaddrinfo" >&5 +echo "$as_me:17629: 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:17598: checking for getaddrinfo in -l$cf_ipv6lib" >&5 + echo "$as_me:17636: 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 17602 "configure" +#line 17640 "configure" #include "confdefs.h" #include <sys/types.h> @@ -17615,25 +17653,25 @@ getaddrinfo(0, 0, 0, 0) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:17618: \"$ac_link\"") >&5 +if { (eval echo "$as_me:17656: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:17621: \$? = $ac_status" >&5 + echo "$as_me:17659: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:17624: \"$ac_try\"") >&5 + { (eval echo "$as_me:17662: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:17627: \$? = $ac_status" >&5 + echo "$as_me:17665: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:17629: result: yes" >&5 + echo "$as_me:17667: 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:17636: result: no" >&5 +echo "$as_me:17674: result: no" >&5 echo "${ECHO_T}no" >&6 cf_search= @@ -17723,11 +17761,11 @@ cf_search="$cf_library_path_list $cf_search" for cf_libdir in $cf_search do - echo "$as_me:17726: checking for -l$cf_ipv6lib in $cf_libdir" >&5 + echo "$as_me:17764: 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 17730 "configure" +#line 17768 "configure" #include "confdefs.h" #include <sys/types.h> @@ -17743,25 +17781,25 @@ getaddrinfo(0, 0, 0, 0) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:17746: \"$ac_link\"") >&5 +if { (eval echo "$as_me:17784: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:17749: \$? = $ac_status" >&5 + echo "$as_me:17787: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:17752: \"$ac_try\"") >&5 + { (eval echo "$as_me:17790: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:17755: \$? = $ac_status" >&5 + echo "$as_me:17793: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:17757: result: yes" >&5 + echo "$as_me:17795: 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:17764: result: no" >&5 +echo "$as_me:17802: result: no" >&5 echo "${ECHO_T}no" >&6 LIBS="$cf_save_LIBS" fi @@ -17776,7 +17814,7 @@ fi eval 'cf_found_library=$cf_cv_have_lib_'$cf_ipv6lib if test $cf_found_library = no ; then - { { echo "$as_me:17779: error: No $cf_ipv6lib library found, cannot continue. You must fetch lib$cf_ipv6lib.a + { { echo "$as_me:17817: 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;} @@ -17784,7 +17822,7 @@ from an appropriate IPv6 kit and compile beforehand." >&2;} fi fi -echo "$as_me:17787: checking working getaddrinfo" >&5 +echo "$as_me:17825: 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 @@ -17794,7 +17832,7 @@ if test "$cross_compiling" = yes; then cf_cv_getaddrinfo=unknown else cat >conftest.$ac_ext <<_ACEOF -#line 17797 "configure" +#line 17835 "configure" #include "confdefs.h" #include <sys/types.h> @@ -17874,15 +17912,15 @@ int main() _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:17877: \"$ac_link\"") >&5 +if { (eval echo "$as_me:17915: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:17880: \$? = $ac_status" >&5 + echo "$as_me:17918: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:17882: \"$ac_try\"") >&5 + { (eval echo "$as_me:17920: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:17885: \$? = $ac_status" >&5 + echo "$as_me:17923: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_getaddrinfo=yes else @@ -17895,7 +17933,7 @@ rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext fi fi -echo "$as_me:17898: result: $cf_cv_getaddrinfo" >&5 +echo "$as_me:17936: result: $cf_cv_getaddrinfo" >&5 echo "${ECHO_T}$cf_cv_getaddrinfo" >&6 if test "$cf_cv_getaddrinfo" = yes ; then @@ -17911,12 +17949,12 @@ fi if test "$cf_cv_getaddrinfo" != "yes"; then if test "$cf_cv_ipv6type" != "linux"; then - { echo "$as_me:17914: WARNING: You must get working getaddrinfo() function, + { echo "$as_me:17952: 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:17919: WARNING: The getaddrinfo() implementation on your system seems be buggy. + { echo "$as_me:17957: 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. @@ -17927,7 +17965,7 @@ fi fi -echo "$as_me:17930: checking for screen type" >&5 +echo "$as_me:17968: 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 @@ -17941,7 +17979,7 @@ case $withval in curses|ncurses|ncursesw|pdcurses|slang) cf_cv_screen=$withval ;; -*) { { echo "$as_me:17944: error: Unexpected value" >&5 +*) { { echo "$as_me:17982: error: Unexpected value" >&5 echo "$as_me: error: Unexpected value" >&2;} { (exit 1); exit 1; }; } ;; @@ -17950,13 +17988,13 @@ else cf_cv_screen=curses fi; fi -echo "$as_me:17953: result: $cf_cv_screen" >&5 +echo "$as_me:17991: result: $cf_cv_screen" >&5 echo "${ECHO_T}$cf_cv_screen" >&6 case $cf_cv_screen in curses|ncurses*) -echo "$as_me:17959: checking for specific curses-directory" >&5 +echo "$as_me:17997: 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. @@ -17966,7 +18004,7 @@ if test "${with_curses_dir+set}" = set; then else cf_cv_curses_dir=no fi; -echo "$as_me:17969: result: $cf_cv_curses_dir" >&5 +echo "$as_me:18007: 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" ) @@ -17997,7 +18035,7 @@ case ".$withval" in #(vi withval=`echo $withval | sed -e s%NONE%$cf_path_syntax%` ;; *) - { { echo "$as_me:18000: error: expected a pathname, not \"$withval\"" >&5 + { { echo "$as_me:18038: error: expected a pathname, not \"$withval\"" >&5 echo "$as_me: error: expected a pathname, not \"$withval\"" >&2;} { (exit 1); exit 1; }; } ;; @@ -18030,7 +18068,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 18033 "configure" +#line 18071 "configure" #include "confdefs.h" #include <stdio.h> int @@ -18042,16 +18080,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:18045: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:18083: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:18048: \$? = $ac_status" >&5 + echo "$as_me:18086: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:18051: \"$ac_try\"") >&5 + { (eval echo "$as_me:18089: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:18054: \$? = $ac_status" >&5 + echo "$as_me:18092: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -18068,7 +18106,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}:18071: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:18109: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -18102,7 +18140,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}:18105: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:18143: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -18121,7 +18159,7 @@ dft_color_style=yes case $cf_cv_screen in curses) -echo "$as_me:18124: checking for extra include directories" >&5 +echo "$as_me:18162: 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 @@ -18147,11 +18185,11 @@ sunos3*|sunos4*) esac fi -echo "$as_me:18150: result: $cf_cv_curses_incdir" >&5 +echo "$as_me:18188: 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:18154: checking if we have identified curses headers" >&5 +echo "$as_me:18192: 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 @@ -18163,7 +18201,7 @@ for cf_header in \ curses.h ncurses/ncurses.h ncurses/curses.h do cat >conftest.$ac_ext <<_ACEOF -#line 18166 "configure" +#line 18204 "configure" #include "confdefs.h" #include <${cf_header}> int @@ -18175,16 +18213,16 @@ initscr(); tgoto("?", 0,0) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:18178: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:18216: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:18181: \$? = $ac_status" >&5 + echo "$as_me:18219: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:18184: \"$ac_try\"") >&5 + { (eval echo "$as_me:18222: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:18187: \$? = $ac_status" >&5 + echo "$as_me:18225: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_ncurses_header=$cf_header; break else @@ -18195,11 +18233,11 @@ rm -f conftest.$ac_objext conftest.$ac_ext done fi -echo "$as_me:18198: result: $cf_cv_ncurses_header" >&5 +echo "$as_me:18236: 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:18202: error: No curses header-files found" >&5 + { { echo "$as_me:18240: error: No curses header-files found" >&5 echo "$as_me: error: No curses header-files found" >&2;} { (exit 1); exit 1; }; } fi @@ -18209,23 +18247,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:18212: checking for $ac_header" >&5 +echo "$as_me:18250: 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 18218 "configure" +#line 18256 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:18222: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:18260: \"$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:18228: \$? = $ac_status" >&5 + echo "$as_me:18266: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -18244,7 +18282,7 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:18247: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:18285: 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 @@ -18254,7 +18292,7 @@ EOF fi done -echo "$as_me:18257: checking for terminfo header" >&5 +echo "$as_me:18295: 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 @@ -18272,7 +18310,7 @@ esac for cf_test in $cf_term_header "ncurses/term.h" "ncursesw/term.h" do cat >conftest.$ac_ext <<_ACEOF -#line 18275 "configure" +#line 18313 "configure" #include "confdefs.h" #include <stdio.h> #include <${cf_cv_ncurses_header:-curses.h}> @@ -18287,16 +18325,16 @@ int x = auto_left_margin } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:18290: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:18328: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:18293: \$? = $ac_status" >&5 + echo "$as_me:18331: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:18296: \"$ac_try\"") >&5 + { (eval echo "$as_me:18334: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:18299: \$? = $ac_status" >&5 + echo "$as_me:18337: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_term_header="$cf_test" @@ -18312,7 +18350,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext done fi -echo "$as_me:18315: result: $cf_cv_term_header" >&5 +echo "$as_me:18353: result: $cf_cv_term_header" >&5 echo "${ECHO_T}$cf_cv_term_header" >&6 # Set definitions to allow ifdef'ing to accommodate subdirectories @@ -18344,7 +18382,7 @@ EOF ;; esac -echo "$as_me:18347: checking for ncurses version" >&5 +echo "$as_me:18385: 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 @@ -18370,10 +18408,10 @@ Autoconf "old" #endif EOF cf_try="$ac_cpp conftest.$ac_ext 2>&5 | grep '^Autoconf ' >conftest.out" - { (eval echo "$as_me:18373: \"$cf_try\"") >&5 + { (eval echo "$as_me:18411: \"$cf_try\"") >&5 (eval $cf_try) 2>&5 ac_status=$? - echo "$as_me:18376: \$? = $ac_status" >&5 + echo "$as_me:18414: \$? = $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%".*%%'` @@ -18383,7 +18421,7 @@ EOF else cat >conftest.$ac_ext <<_ACEOF -#line 18386 "configure" +#line 18424 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> @@ -18408,15 +18446,15 @@ int main() } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:18411: \"$ac_link\"") >&5 +if { (eval echo "$as_me:18449: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:18414: \$? = $ac_status" >&5 + echo "$as_me:18452: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:18416: \"$ac_try\"") >&5 + { (eval echo "$as_me:18454: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:18419: \$? = $ac_status" >&5 + echo "$as_me:18457: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_ncurses_version=`cat $cf_tempfile` @@ -18430,17 +18468,17 @@ fi rm -f $cf_tempfile fi -echo "$as_me:18433: result: $cf_cv_ncurses_version" >&5 +echo "$as_me:18471: 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:18440: checking if we have identified curses libraries" >&5 +echo "$as_me:18478: 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 18443 "configure" +#line 18481 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> int @@ -18452,16 +18490,16 @@ initscr(); tgoto("?", 0,0) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:18455: \"$ac_link\"") >&5 +if { (eval echo "$as_me:18493: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:18458: \$? = $ac_status" >&5 + echo "$as_me:18496: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:18461: \"$ac_try\"") >&5 + { (eval echo "$as_me:18499: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:18464: \$? = $ac_status" >&5 + echo "$as_me:18502: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_result=yes else @@ -18470,13 +18508,13 @@ cat conftest.$ac_ext >&5 cf_result=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext -echo "$as_me:18473: result: $cf_result" >&5 +echo "$as_me:18511: 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:18479: checking for tgoto in -lmytinfo" >&5 + echo "$as_me:18517: 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 @@ -18484,7 +18522,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lmytinfo $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 18487 "configure" +#line 18525 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -18503,16 +18541,16 @@ tgoto (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:18506: \"$ac_link\"") >&5 +if { (eval echo "$as_me:18544: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:18509: \$? = $ac_status" >&5 + echo "$as_me:18547: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:18512: \"$ac_try\"") >&5 + { (eval echo "$as_me:18550: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:18515: \$? = $ac_status" >&5 + echo "$as_me:18553: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_mytinfo_tgoto=yes else @@ -18523,7 +18561,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:18526: result: $ac_cv_lib_mytinfo_tgoto" >&5 +echo "$as_me:18564: result: $ac_cv_lib_mytinfo_tgoto" >&5 echo "${ECHO_T}$ac_cv_lib_mytinfo_tgoto" >&6 if test $ac_cv_lib_mytinfo_tgoto = yes; then LIBS="-lmytinfo $LIBS" @@ -18537,7 +18575,7 @@ hpux10.*) #(vi # term.h) for cur_colr if test "x$cf_cv_screen" = "xcurses_colr" then - echo "$as_me:18540: checking for initscr in -lcur_colr" >&5 + echo "$as_me:18578: 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 @@ -18545,7 +18583,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lcur_colr $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 18548 "configure" +#line 18586 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -18564,16 +18602,16 @@ initscr (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:18567: \"$ac_link\"") >&5 +if { (eval echo "$as_me:18605: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:18570: \$? = $ac_status" >&5 + echo "$as_me:18608: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:18573: \"$ac_try\"") >&5 + { (eval echo "$as_me:18611: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:18576: \$? = $ac_status" >&5 + echo "$as_me:18614: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_cur_colr_initscr=yes else @@ -18584,7 +18622,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:18587: result: $ac_cv_lib_cur_colr_initscr" >&5 +echo "$as_me:18625: 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 @@ -18593,7 +18631,7 @@ if test $ac_cv_lib_cur_colr_initscr = yes; then else - echo "$as_me:18596: checking for initscr in -lHcurses" >&5 + echo "$as_me:18634: 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 @@ -18601,7 +18639,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lHcurses $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 18604 "configure" +#line 18642 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -18620,16 +18658,16 @@ initscr (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:18623: \"$ac_link\"") >&5 +if { (eval echo "$as_me:18661: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:18626: \$? = $ac_status" >&5 + echo "$as_me:18664: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:18629: \"$ac_try\"") >&5 + { (eval echo "$as_me:18667: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:18632: \$? = $ac_status" >&5 + echo "$as_me:18670: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_Hcurses_initscr=yes else @@ -18640,7 +18678,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:18643: result: $ac_cv_lib_Hcurses_initscr" >&5 +echo "$as_me:18681: 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 @@ -18680,7 +18718,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}:18683: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:18721: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -18709,7 +18747,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}:18712: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:18750: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -18740,7 +18778,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}:18743: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:18781: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -18775,7 +18813,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}:18778: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:18816: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -18804,13 +18842,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:18807: checking for tgoto" >&5 + echo "$as_me:18845: 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 18813 "configure" +#line 18851 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char tgoto (); below. */ @@ -18841,16 +18879,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:18844: \"$ac_link\"") >&5 +if { (eval echo "$as_me:18882: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:18847: \$? = $ac_status" >&5 + echo "$as_me:18885: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:18850: \"$ac_try\"") >&5 + { (eval echo "$as_me:18888: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:18853: \$? = $ac_status" >&5 + echo "$as_me:18891: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_tgoto=yes else @@ -18860,7 +18898,7 @@ ac_cv_func_tgoto=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:18863: result: $ac_cv_func_tgoto" >&5 +echo "$as_me:18901: 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 @@ -18869,7 +18907,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:18872: checking for tgoto in -l$cf_term_lib" >&5 +echo "$as_me:18910: 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 @@ -18877,7 +18915,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-l$cf_term_lib $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 18880 "configure" +#line 18918 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -18896,16 +18934,16 @@ tgoto (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:18899: \"$ac_link\"") >&5 +if { (eval echo "$as_me:18937: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:18902: \$? = $ac_status" >&5 + echo "$as_me:18940: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:18905: \"$ac_try\"") >&5 + { (eval echo "$as_me:18943: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:18908: \$? = $ac_status" >&5 + echo "$as_me:18946: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_Lib=yes" else @@ -18916,7 +18954,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:18919: result: `eval echo '${'$as_ac_Lib'}'`" >&5 +echo "$as_me:18957: 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 @@ -18935,7 +18973,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:18938: checking for initscr in -l$cf_curs_lib" >&5 +echo "$as_me:18976: 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 @@ -18943,7 +18981,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-l$cf_curs_lib $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 18946 "configure" +#line 18984 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -18962,16 +19000,16 @@ initscr (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:18965: \"$ac_link\"") >&5 +if { (eval echo "$as_me:19003: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:18968: \$? = $ac_status" >&5 + echo "$as_me:19006: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:18971: \"$ac_try\"") >&5 + { (eval echo "$as_me:19009: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:18974: \$? = $ac_status" >&5 + echo "$as_me:19012: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_Lib=yes" else @@ -18982,7 +19020,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:18985: result: `eval echo '${'$as_ac_Lib'}'`" >&5 +echo "$as_me:19023: 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 @@ -18990,16 +19028,16 @@ fi done fi - test $cf_curs_lib = unknown && { { echo "$as_me:18993: error: no curses library found" >&5 + test $cf_curs_lib = unknown && { { echo "$as_me:19031: 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:18999: checking if we can link with $cf_curs_lib library" >&5 + echo "$as_me:19037: 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 19002 "configure" +#line 19040 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> int @@ -19011,16 +19049,16 @@ initscr() } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:19014: \"$ac_link\"") >&5 +if { (eval echo "$as_me:19052: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:19017: \$? = $ac_status" >&5 + echo "$as_me:19055: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:19020: \"$ac_try\"") >&5 + { (eval echo "$as_me:19058: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:19023: \$? = $ac_status" >&5 + echo "$as_me:19061: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_result=yes else @@ -19029,18 +19067,18 @@ cat conftest.$ac_ext >&5 cf_result=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext - echo "$as_me:19032: result: $cf_result" >&5 + echo "$as_me:19070: result: $cf_result" >&5 echo "${ECHO_T}$cf_result" >&6 - test $cf_result = no && { { echo "$as_me:19034: error: Cannot link curses library" >&5 + test $cf_result = no && { { echo "$as_me:19072: 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:19040: checking if we need both $cf_curs_lib and $cf_term_lib libraries" >&5 + echo "$as_me:19078: 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 19043 "configure" +#line 19081 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> int @@ -19052,16 +19090,16 @@ initscr(); tgoto((char *)0, 0, 0); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:19055: \"$ac_link\"") >&5 +if { (eval echo "$as_me:19093: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:19058: \$? = $ac_status" >&5 + echo "$as_me:19096: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:19061: \"$ac_try\"") >&5 + { (eval echo "$as_me:19099: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:19064: \$? = $ac_status" >&5 + echo "$as_me:19102: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_result=no else @@ -19070,7 +19108,7 @@ cat conftest.$ac_ext >&5 LIBS="-l$cf_curs_lib -l$cf_term_lib $cf_save_LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 19073 "configure" +#line 19111 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> int @@ -19082,16 +19120,16 @@ initscr() } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:19085: \"$ac_link\"") >&5 +if { (eval echo "$as_me:19123: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:19088: \$? = $ac_status" >&5 + echo "$as_me:19126: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:19091: \"$ac_try\"") >&5 + { (eval echo "$as_me:19129: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:19094: \$? = $ac_status" >&5 + echo "$as_me:19132: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_result=yes else @@ -19103,13 +19141,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:19106: result: $cf_result" >&5 + echo "$as_me:19144: result: $cf_result" >&5 echo "${ECHO_T}$cf_result" >&6 fi fi fi -echo "$as_me:19112: checking for curses performance tradeoff" >&5 +echo "$as_me:19150: 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 @@ -19117,7 +19155,7 @@ else cf_cv_curs_performance=no cat >conftest.$ac_ext <<_ACEOF -#line 19120 "configure" +#line 19158 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> @@ -19136,20 +19174,20 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:19139: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:19177: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:19142: \$? = $ac_status" >&5 + echo "$as_me:19180: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:19145: \"$ac_try\"") >&5 + { (eval echo "$as_me:19183: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:19148: \$? = $ac_status" >&5 + echo "$as_me:19186: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cat >conftest.$ac_ext <<_ACEOF -#line 19152 "configure" +#line 19190 "configure" #include "confdefs.h" #define CURS_PERFORMANCE @@ -19169,16 +19207,16 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:19172: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:19210: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:19175: \$? = $ac_status" >&5 + echo "$as_me:19213: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:19178: \"$ac_try\"") >&5 + { (eval echo "$as_me:19216: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:19181: \$? = $ac_status" >&5 + echo "$as_me:19219: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_curs_performance=yes else @@ -19193,21 +19231,21 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:19196: result: $cf_cv_curs_performance" >&5 +echo "$as_me:19234: 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:19203: checking for curses touchline function" >&5 +echo "$as_me:19241: 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 19210 "configure" +#line 19248 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> @@ -19220,23 +19258,23 @@ touchline(stdscr, 1,2,3); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:19223: \"$ac_link\"") >&5 +if { (eval echo "$as_me:19261: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:19226: \$? = $ac_status" >&5 + echo "$as_me:19264: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:19229: \"$ac_try\"") >&5 + { (eval echo "$as_me:19267: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:19232: \$? = $ac_status" >&5 + echo "$as_me:19270: \$? = $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 19239 "configure" +#line 19277 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> @@ -19249,16 +19287,16 @@ touchline(stdscr, 1,2); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:19252: \"$ac_link\"") >&5 +if { (eval echo "$as_me:19290: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:19255: \$? = $ac_status" >&5 + echo "$as_me:19293: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:19258: \"$ac_try\"") >&5 + { (eval echo "$as_me:19296: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:19261: \$? = $ac_status" >&5 + echo "$as_me:19299: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_curs_touchline=sysv else @@ -19270,7 +19308,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:19273: result: $cf_cv_curs_touchline" >&5 +echo "$as_me:19311: result: $cf_cv_curs_touchline" >&5 echo "${ECHO_T}$cf_cv_curs_touchline" >&6 case "$cf_cv_curs_touchline" in #(vi bsd) #(vi @@ -19301,7 +19339,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:19304: checking for $ac_word" >&5 +echo "$as_me:19342: 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 @@ -19316,7 +19354,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:19319: found $ac_dir/$ac_word" >&5 +echo "$as_me:19357: found $ac_dir/$ac_word" >&5 break done @@ -19324,10 +19362,10 @@ fi fi NCURSES_CONFIG=$ac_cv_prog_NCURSES_CONFIG if test -n "$NCURSES_CONFIG"; then - echo "$as_me:19327: result: $NCURSES_CONFIG" >&5 + echo "$as_me:19365: result: $NCURSES_CONFIG" >&5 echo "${ECHO_T}$NCURSES_CONFIG" >&6 else - echo "$as_me:19330: result: no" >&5 + echo "$as_me:19368: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -19340,7 +19378,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:19343: checking for $ac_word" >&5 +echo "$as_me:19381: 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 @@ -19355,7 +19393,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:19358: found $ac_dir/$ac_word" >&5 +echo "$as_me:19396: found $ac_dir/$ac_word" >&5 break done @@ -19363,10 +19401,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:19366: result: $ac_ct_NCURSES_CONFIG" >&5 + echo "$as_me:19404: result: $ac_ct_NCURSES_CONFIG" >&5 echo "${ECHO_T}$ac_ct_NCURSES_CONFIG" >&6 else - echo "$as_me:19369: result: no" >&5 + echo "$as_me:19407: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -19384,7 +19422,7 @@ LIBS="`$NCURSES_CONFIG --libs` $LIBS" # even with config script, some packages use no-override for curses.h -echo "$as_me:19387: checking if we have identified curses headers" >&5 +echo "$as_me:19425: 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 @@ -19398,7 +19436,7 @@ for cf_header in \ curses.h do cat >conftest.$ac_ext <<_ACEOF -#line 19401 "configure" +#line 19439 "configure" #include "confdefs.h" #include <${cf_header}> int @@ -19410,16 +19448,16 @@ initscr(); tgoto("?", 0,0) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:19413: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:19451: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:19416: \$? = $ac_status" >&5 + echo "$as_me:19454: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:19419: \"$ac_try\"") >&5 + { (eval echo "$as_me:19457: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:19422: \$? = $ac_status" >&5 + echo "$as_me:19460: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_ncurses_header=$cf_header; break else @@ -19430,11 +19468,11 @@ rm -f conftest.$ac_objext conftest.$ac_ext done fi -echo "$as_me:19433: result: $cf_cv_ncurses_header" >&5 +echo "$as_me:19471: 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:19437: error: No curses header-files found" >&5 + { { echo "$as_me:19475: error: No curses header-files found" >&5 echo "$as_me: error: No curses header-files found" >&2;} { (exit 1); exit 1; }; } fi @@ -19444,23 +19482,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:19447: checking for $ac_header" >&5 +echo "$as_me:19485: 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 19453 "configure" +#line 19491 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:19457: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:19495: \"$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:19463: \$? = $ac_status" >&5 + echo "$as_me:19501: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -19479,7 +19517,7 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:19482: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:19520: 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 @@ -19532,7 +19570,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 19535 "configure" +#line 19573 "configure" #include "confdefs.h" #include <stdio.h> int @@ -19544,16 +19582,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:19547: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:19585: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:19550: \$? = $ac_status" >&5 + echo "$as_me:19588: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:19553: \"$ac_try\"") >&5 + { (eval echo "$as_me:19591: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:19556: \$? = $ac_status" >&5 + echo "$as_me:19594: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -19570,7 +19608,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}:19573: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:19611: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -19587,7 +19625,7 @@ fi } -echo "$as_me:19590: checking for $cf_ncuhdr_root header in include-path" >&5 +echo "$as_me:19628: 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 @@ -19599,7 +19637,7 @@ else do cat >conftest.$ac_ext <<_ACEOF -#line 19602 "configure" +#line 19640 "configure" #include "confdefs.h" #include <$cf_header> @@ -19623,16 +19661,16 @@ printf("old\n"); } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:19626: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:19664: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:19629: \$? = $ac_status" >&5 + echo "$as_me:19667: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:19632: \"$ac_try\"") >&5 + { (eval echo "$as_me:19670: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:19635: \$? = $ac_status" >&5 + echo "$as_me:19673: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_ncurses_h=$cf_header @@ -19647,14 +19685,14 @@ rm -f conftest.$ac_objext conftest.$ac_ext done fi -echo "$as_me:19650: result: $cf_cv_ncurses_h" >&5 +echo "$as_me:19688: 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:19657: checking for $cf_ncuhdr_root include-path" >&5 +echo "$as_me:19695: 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 @@ -19794,7 +19832,7 @@ if test -n "$cf_incdir" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 19797 "configure" +#line 19835 "configure" #include "confdefs.h" #include <stdio.h> int @@ -19806,16 +19844,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:19809: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:19847: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:19812: \$? = $ac_status" >&5 + echo "$as_me:19850: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:19815: \"$ac_try\"") >&5 + { (eval echo "$as_me:19853: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:19818: \$? = $ac_status" >&5 + echo "$as_me:19856: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -19832,7 +19870,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}:19835: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:19873: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -19853,7 +19891,7 @@ fi do cat >conftest.$ac_ext <<_ACEOF -#line 19856 "configure" +#line 19894 "configure" #include "confdefs.h" #include <$cf_header> @@ -19877,16 +19915,16 @@ printf("old\n"); } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:19880: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:19918: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:19883: \$? = $ac_status" >&5 + echo "$as_me:19921: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:19886: \"$ac_try\"") >&5 + { (eval echo "$as_me:19924: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:19889: \$? = $ac_status" >&5 + echo "$as_me:19927: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_ncurses_h2=$cf_header @@ -19907,12 +19945,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:19910: error: not found" >&5 + test "$cf_cv_ncurses_h2" = no && { { echo "$as_me:19948: error: not found" >&5 echo "$as_me: error: not found" >&2;} { (exit 1); exit 1; }; } fi -echo "$as_me:19915: result: $cf_cv_ncurses_h2" >&5 +echo "$as_me:19953: 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%/[^/]*$%%'` @@ -19945,7 +19983,7 @@ if test -n "$cf_1st_incdir" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 19948 "configure" +#line 19986 "configure" #include "confdefs.h" #include <stdio.h> int @@ -19957,16 +19995,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:19960: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:19998: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:19963: \$? = $ac_status" >&5 + echo "$as_me:20001: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:19966: \"$ac_try\"") >&5 + { (eval echo "$as_me:20004: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:19969: \$? = $ac_status" >&5 + echo "$as_me:20007: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -19983,7 +20021,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}:19986: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:20024: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -20029,7 +20067,7 @@ EOF ;; esac -echo "$as_me:20032: checking for terminfo header" >&5 +echo "$as_me:20070: 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 @@ -20047,7 +20085,7 @@ esac for cf_test in $cf_term_header "ncurses/term.h" "ncursesw/term.h" do cat >conftest.$ac_ext <<_ACEOF -#line 20050 "configure" +#line 20088 "configure" #include "confdefs.h" #include <stdio.h> #include <${cf_cv_ncurses_header:-curses.h}> @@ -20062,16 +20100,16 @@ int x = auto_left_margin } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:20065: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:20103: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:20068: \$? = $ac_status" >&5 + echo "$as_me:20106: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:20071: \"$ac_try\"") >&5 + { (eval echo "$as_me:20109: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:20074: \$? = $ac_status" >&5 + echo "$as_me:20112: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_term_header="$cf_test" @@ -20087,7 +20125,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext done fi -echo "$as_me:20090: result: $cf_cv_term_header" >&5 +echo "$as_me:20128: result: $cf_cv_term_header" >&5 echo "${ECHO_T}$cf_cv_term_header" >&6 # Set definitions to allow ifdef'ing to accommodate subdirectories @@ -20125,7 +20163,7 @@ cat >>confdefs.h <<\EOF #define NCURSES 1 EOF -echo "$as_me:20128: checking for ncurses version" >&5 +echo "$as_me:20166: 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 @@ -20151,10 +20189,10 @@ Autoconf "old" #endif EOF cf_try="$ac_cpp conftest.$ac_ext 2>&5 | grep '^Autoconf ' >conftest.out" - { (eval echo "$as_me:20154: \"$cf_try\"") >&5 + { (eval echo "$as_me:20192: \"$cf_try\"") >&5 (eval $cf_try) 2>&5 ac_status=$? - echo "$as_me:20157: \$? = $ac_status" >&5 + echo "$as_me:20195: \$? = $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%".*%%'` @@ -20164,7 +20202,7 @@ EOF else cat >conftest.$ac_ext <<_ACEOF -#line 20167 "configure" +#line 20205 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> @@ -20189,15 +20227,15 @@ int main() } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:20192: \"$ac_link\"") >&5 +if { (eval echo "$as_me:20230: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:20195: \$? = $ac_status" >&5 + echo "$as_me:20233: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:20197: \"$ac_try\"") >&5 + { (eval echo "$as_me:20235: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:20200: \$? = $ac_status" >&5 + echo "$as_me:20238: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_ncurses_version=`cat $cf_tempfile` @@ -20211,7 +20249,7 @@ fi rm -f $cf_tempfile fi -echo "$as_me:20214: result: $cf_cv_ncurses_version" >&5 +echo "$as_me:20252: result: $cf_cv_ncurses_version" >&5 echo "${ECHO_T}$cf_cv_ncurses_version" >&6 test "$cf_cv_ncurses_version" = no || cat >>confdefs.h <<\EOF @@ -20224,7 +20262,7 @@ cf_nculib_root=ncurses # to link gpm. cf_ncurses_LIBS="" cf_ncurses_SAVE="$LIBS" -echo "$as_me:20227: checking for Gpm_Open in -lgpm" >&5 +echo "$as_me:20265: 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 @@ -20232,7 +20270,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lgpm $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 20235 "configure" +#line 20273 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -20251,16 +20289,16 @@ Gpm_Open (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:20254: \"$ac_link\"") >&5 +if { (eval echo "$as_me:20292: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:20257: \$? = $ac_status" >&5 + echo "$as_me:20295: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:20260: \"$ac_try\"") >&5 + { (eval echo "$as_me:20298: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:20263: \$? = $ac_status" >&5 + echo "$as_me:20301: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_gpm_Gpm_Open=yes else @@ -20271,10 +20309,10 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:20274: result: $ac_cv_lib_gpm_Gpm_Open" >&5 +echo "$as_me:20312: 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:20277: checking for initscr in -lgpm" >&5 + echo "$as_me:20315: 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 @@ -20282,7 +20320,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lgpm $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 20285 "configure" +#line 20323 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -20301,16 +20339,16 @@ initscr (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:20304: \"$ac_link\"") >&5 +if { (eval echo "$as_me:20342: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:20307: \$? = $ac_status" >&5 + echo "$as_me:20345: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:20310: \"$ac_try\"") >&5 + { (eval echo "$as_me:20348: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:20313: \$? = $ac_status" >&5 + echo "$as_me:20351: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_gpm_initscr=yes else @@ -20321,7 +20359,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:20324: result: $ac_cv_lib_gpm_initscr" >&5 +echo "$as_me:20362: 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" @@ -20336,7 +20374,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:20339: checking for tgoto in -lmytinfo" >&5 + echo "$as_me:20377: 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 @@ -20344,7 +20382,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lmytinfo $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 20347 "configure" +#line 20385 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -20363,16 +20401,16 @@ tgoto (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:20366: \"$ac_link\"") >&5 +if { (eval echo "$as_me:20404: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:20369: \$? = $ac_status" >&5 + echo "$as_me:20407: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:20372: \"$ac_try\"") >&5 + { (eval echo "$as_me:20410: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:20375: \$? = $ac_status" >&5 + echo "$as_me:20413: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_mytinfo_tgoto=yes else @@ -20383,7 +20421,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:20386: result: $ac_cv_lib_mytinfo_tgoto" >&5 +echo "$as_me:20424: 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" @@ -20402,13 +20440,13 @@ else eval 'cf_cv_have_lib_'$cf_nculib_root'=no' cf_libdir="" - echo "$as_me:20405: checking for initscr" >&5 + echo "$as_me:20443: 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 20411 "configure" +#line 20449 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char initscr (); below. */ @@ -20439,16 +20477,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:20442: \"$ac_link\"") >&5 +if { (eval echo "$as_me:20480: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:20445: \$? = $ac_status" >&5 + echo "$as_me:20483: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:20448: \"$ac_try\"") >&5 + { (eval echo "$as_me:20486: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:20451: \$? = $ac_status" >&5 + echo "$as_me:20489: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_initscr=yes else @@ -20458,18 +20496,18 @@ ac_cv_func_initscr=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:20461: result: $ac_cv_func_initscr" >&5 +echo "$as_me:20499: 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:20468: checking for initscr in -l$cf_nculib_root" >&5 + echo "$as_me:20506: 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 20472 "configure" +#line 20510 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> int @@ -20481,25 +20519,25 @@ initscr() } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:20484: \"$ac_link\"") >&5 +if { (eval echo "$as_me:20522: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:20487: \$? = $ac_status" >&5 + echo "$as_me:20525: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:20490: \"$ac_try\"") >&5 + { (eval echo "$as_me:20528: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:20493: \$? = $ac_status" >&5 + echo "$as_me:20531: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:20495: result: yes" >&5 + echo "$as_me:20533: 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:20502: result: no" >&5 +echo "$as_me:20540: result: no" >&5 echo "${ECHO_T}no" >&6 cf_search= @@ -20589,11 +20627,11 @@ cf_search="$cf_library_path_list $cf_search" for cf_libdir in $cf_search do - echo "$as_me:20592: checking for -l$cf_nculib_root in $cf_libdir" >&5 + echo "$as_me:20630: 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 20596 "configure" +#line 20634 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> int @@ -20605,25 +20643,25 @@ initscr() } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:20608: \"$ac_link\"") >&5 +if { (eval echo "$as_me:20646: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:20611: \$? = $ac_status" >&5 + echo "$as_me:20649: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:20614: \"$ac_try\"") >&5 + { (eval echo "$as_me:20652: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:20617: \$? = $ac_status" >&5 + echo "$as_me:20655: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:20619: result: yes" >&5 + echo "$as_me:20657: 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:20626: result: no" >&5 +echo "$as_me:20664: result: no" >&5 echo "${ECHO_T}no" >&6 LIBS="$cf_save_LIBS" fi @@ -20638,7 +20676,7 @@ fi eval 'cf_found_library=$cf_cv_have_lib_'$cf_nculib_root if test $cf_found_library = no ; then - { { echo "$as_me:20641: error: Cannot link $cf_nculib_root library" >&5 + { { echo "$as_me:20679: error: Cannot link $cf_nculib_root library" >&5 echo "$as_me: error: Cannot link $cf_nculib_root library" >&2;} { (exit 1); exit 1; }; } fi @@ -20646,7 +20684,7 @@ fi fi if test -n "$cf_ncurses_LIBS" ; then - echo "$as_me:20649: checking if we can link $cf_nculib_root without $cf_ncurses_LIBS" >&5 + echo "$as_me:20687: 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 @@ -20656,7 +20694,7 @@ echo $ECHO_N "checking if we can link $cf_nculib_root without $cf_ncurses_LIBS.. fi done cat >conftest.$ac_ext <<_ACEOF -#line 20659 "configure" +#line 20697 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> int @@ -20668,23 +20706,23 @@ initscr(); mousemask(0,0); tgoto((char *)0, 0, 0); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:20671: \"$ac_link\"") >&5 +if { (eval echo "$as_me:20709: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:20674: \$? = $ac_status" >&5 + echo "$as_me:20712: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:20677: \"$ac_try\"") >&5 + { (eval echo "$as_me:20715: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:20680: \$? = $ac_status" >&5 + echo "$as_me:20718: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:20682: result: yes" >&5 + echo "$as_me:20720: result: yes" >&5 echo "${ECHO_T}yes" >&6 else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 -echo "$as_me:20687: result: no" >&5 +echo "$as_me:20725: result: no" >&5 echo "${ECHO_T}no" >&6 LIBS="$cf_ncurses_SAVE" fi @@ -20702,7 +20740,7 @@ fi ;; ncursesw) -echo "$as_me:20705: checking for multibyte character support" >&5 +echo "$as_me:20743: 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 @@ -20710,7 +20748,7 @@ else cf_save_LIBS="$LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 20713 "configure" +#line 20751 "configure" #include "confdefs.h" #include <stdlib.h> @@ -20723,16 +20761,16 @@ putwc(0,0); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:20726: \"$ac_link\"") >&5 +if { (eval echo "$as_me:20764: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:20729: \$? = $ac_status" >&5 + echo "$as_me:20767: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:20732: \"$ac_try\"") >&5 + { (eval echo "$as_me:20770: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:20735: \$? = $ac_status" >&5 + echo "$as_me:20773: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_utf8_lib=yes else @@ -20744,12 +20782,12 @@ cat conftest.$ac_ext >&5 cf_cv_header_path_utf8= cf_cv_library_path_utf8= -echo "${as_me:-configure}:20747: testing Starting FIND_LINKAGE(utf8,) ..." 1>&5 +echo "${as_me:-configure}:20785: testing Starting FIND_LINKAGE(utf8,) ..." 1>&5 cf_save_LIBS="$LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 20752 "configure" +#line 20790 "configure" #include "confdefs.h" #include <libutf8.h> @@ -20762,16 +20800,16 @@ putwc(0,0); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:20765: \"$ac_link\"") >&5 +if { (eval echo "$as_me:20803: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:20768: \$? = $ac_status" >&5 + echo "$as_me:20806: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:20771: \"$ac_try\"") >&5 + { (eval echo "$as_me:20809: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:20774: \$? = $ac_status" >&5 + echo "$as_me:20812: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_find_linkage_utf8=yes @@ -20785,7 +20823,7 @@ cat conftest.$ac_ext >&5 LIBS="-lutf8 $cf_save_LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 20788 "configure" +#line 20826 "configure" #include "confdefs.h" #include <libutf8.h> @@ -20798,16 +20836,16 @@ putwc(0,0); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:20801: \"$ac_link\"") >&5 +if { (eval echo "$as_me:20839: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:20804: \$? = $ac_status" >&5 + echo "$as_me:20842: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:20807: \"$ac_try\"") >&5 + { (eval echo "$as_me:20845: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:20810: \$? = $ac_status" >&5 + echo "$as_me:20848: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_find_linkage_utf8=yes @@ -20824,9 +20862,9 @@ cat conftest.$ac_ext >&5 test -n "$verbose" && echo " find linkage for utf8 library" 1>&6 -echo "${as_me:-configure}:20827: testing find linkage for utf8 library ..." 1>&5 +echo "${as_me:-configure}:20865: testing find linkage for utf8 library ..." 1>&5 -echo "${as_me:-configure}:20829: testing Searching for headers in FIND_LINKAGE(utf8,) ..." 1>&5 +echo "${as_me:-configure}:20867: testing Searching for headers in FIND_LINKAGE(utf8,) ..." 1>&5 cf_save_CPPFLAGS="$CPPFLAGS" cf_test_CPPFLAGS="$CPPFLAGS" @@ -20939,11 +20977,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}:20942: testing ... testing $cf_cv_header_path_utf8 ..." 1>&5 +echo "${as_me:-configure}:20980: 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 20946 "configure" +#line 20984 "configure" #include "confdefs.h" #include <libutf8.h> @@ -20956,21 +20994,21 @@ putwc(0,0); } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:20959: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:20997: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:20962: \$? = $ac_status" >&5 + echo "$as_me:21000: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:20965: \"$ac_try\"") >&5 + { (eval echo "$as_me:21003: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:20968: \$? = $ac_status" >&5 + echo "$as_me:21006: \$? = $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}:20973: testing ... found utf8 headers in $cf_cv_header_path_utf8 ..." 1>&5 +echo "${as_me:-configure}:21011: testing ... found utf8 headers in $cf_cv_header_path_utf8 ..." 1>&5 cf_cv_find_linkage_utf8=maybe cf_test_CPPFLAGS="$CPPFLAGS" @@ -20988,7 +21026,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "$cf_cv_find_linkage_utf8" = maybe ; then -echo "${as_me:-configure}:20991: testing Searching for utf8 library in FIND_LINKAGE(utf8,) ..." 1>&5 +echo "${as_me:-configure}:21029: testing Searching for utf8 library in FIND_LINKAGE(utf8,) ..." 1>&5 cf_save_LIBS="$LIBS" cf_save_LDFLAGS="$LDFLAGS" @@ -21085,13 +21123,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}:21088: testing ... testing $cf_cv_library_path_utf8 ..." 1>&5 +echo "${as_me:-configure}:21126: 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 21094 "configure" +#line 21132 "configure" #include "confdefs.h" #include <libutf8.h> @@ -21104,21 +21142,21 @@ putwc(0,0); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:21107: \"$ac_link\"") >&5 +if { (eval echo "$as_me:21145: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:21110: \$? = $ac_status" >&5 + echo "$as_me:21148: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:21113: \"$ac_try\"") >&5 + { (eval echo "$as_me:21151: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:21116: \$? = $ac_status" >&5 + echo "$as_me:21154: \$? = $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}:21121: testing ... found utf8 library in $cf_cv_library_path_utf8 ..." 1>&5 +echo "${as_me:-configure}:21159: testing ... found utf8 library in $cf_cv_library_path_utf8 ..." 1>&5 cf_cv_find_linkage_utf8=yes cf_cv_library_file_utf8="-lutf8" @@ -21160,7 +21198,7 @@ fi fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:21163: result: $cf_cv_utf8_lib" >&5 +echo "$as_me:21201: 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 @@ -21195,7 +21233,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 21198 "configure" +#line 21236 "configure" #include "confdefs.h" #include <stdio.h> int @@ -21207,16 +21245,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:21210: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:21248: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:21213: \$? = $ac_status" >&5 + echo "$as_me:21251: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:21216: \"$ac_try\"") >&5 + { (eval echo "$as_me:21254: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:21219: \$? = $ac_status" >&5 + echo "$as_me:21257: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -21233,7 +21271,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}:21236: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:21274: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -21267,7 +21305,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}:21270: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:21308: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -21287,7 +21325,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:21290: checking for $ac_word" >&5 +echo "$as_me:21328: 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 @@ -21302,7 +21340,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:21305: found $ac_dir/$ac_word" >&5 +echo "$as_me:21343: found $ac_dir/$ac_word" >&5 break done @@ -21310,10 +21348,10 @@ fi fi NCURSES_CONFIG=$ac_cv_prog_NCURSES_CONFIG if test -n "$NCURSES_CONFIG"; then - echo "$as_me:21313: result: $NCURSES_CONFIG" >&5 + echo "$as_me:21351: result: $NCURSES_CONFIG" >&5 echo "${ECHO_T}$NCURSES_CONFIG" >&6 else - echo "$as_me:21316: result: no" >&5 + echo "$as_me:21354: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -21326,7 +21364,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:21329: checking for $ac_word" >&5 +echo "$as_me:21367: 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 @@ -21341,7 +21379,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:21344: found $ac_dir/$ac_word" >&5 +echo "$as_me:21382: found $ac_dir/$ac_word" >&5 break done @@ -21349,10 +21387,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:21352: result: $ac_ct_NCURSES_CONFIG" >&5 + echo "$as_me:21390: result: $ac_ct_NCURSES_CONFIG" >&5 echo "${ECHO_T}$ac_ct_NCURSES_CONFIG" >&6 else - echo "$as_me:21355: result: no" >&5 + echo "$as_me:21393: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -21370,7 +21408,7 @@ LIBS="`$NCURSES_CONFIG --libs` $LIBS" # even with config script, some packages use no-override for curses.h -echo "$as_me:21373: checking if we have identified curses headers" >&5 +echo "$as_me:21411: 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 @@ -21384,7 +21422,7 @@ for cf_header in \ curses.h do cat >conftest.$ac_ext <<_ACEOF -#line 21387 "configure" +#line 21425 "configure" #include "confdefs.h" #include <${cf_header}> int @@ -21396,16 +21434,16 @@ initscr(); tgoto("?", 0,0) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:21399: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:21437: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:21402: \$? = $ac_status" >&5 + echo "$as_me:21440: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:21405: \"$ac_try\"") >&5 + { (eval echo "$as_me:21443: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:21408: \$? = $ac_status" >&5 + echo "$as_me:21446: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_ncurses_header=$cf_header; break else @@ -21416,11 +21454,11 @@ rm -f conftest.$ac_objext conftest.$ac_ext done fi -echo "$as_me:21419: result: $cf_cv_ncurses_header" >&5 +echo "$as_me:21457: 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:21423: error: No curses header-files found" >&5 + { { echo "$as_me:21461: error: No curses header-files found" >&5 echo "$as_me: error: No curses header-files found" >&2;} { (exit 1); exit 1; }; } fi @@ -21430,23 +21468,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:21433: checking for $ac_header" >&5 +echo "$as_me:21471: 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 21439 "configure" +#line 21477 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:21443: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:21481: \"$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:21449: \$? = $ac_status" >&5 + echo "$as_me:21487: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -21465,7 +21503,7 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:21468: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:21506: 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 @@ -21518,7 +21556,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 21521 "configure" +#line 21559 "configure" #include "confdefs.h" #include <stdio.h> int @@ -21530,16 +21568,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:21533: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:21571: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:21536: \$? = $ac_status" >&5 + echo "$as_me:21574: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:21539: \"$ac_try\"") >&5 + { (eval echo "$as_me:21577: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:21542: \$? = $ac_status" >&5 + echo "$as_me:21580: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -21556,7 +21594,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}:21559: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:21597: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -21573,7 +21611,7 @@ fi } -echo "$as_me:21576: checking for $cf_ncuhdr_root header in include-path" >&5 +echo "$as_me:21614: 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 @@ -21585,7 +21623,7 @@ else do cat >conftest.$ac_ext <<_ACEOF -#line 21588 "configure" +#line 21626 "configure" #include "confdefs.h" #define _XOPEN_SOURCE_EXTENDED @@ -21617,16 +21655,16 @@ printf("old\n"); } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:21620: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:21658: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:21623: \$? = $ac_status" >&5 + echo "$as_me:21661: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:21626: \"$ac_try\"") >&5 + { (eval echo "$as_me:21664: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:21629: \$? = $ac_status" >&5 + echo "$as_me:21667: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_ncurses_h=$cf_header @@ -21641,14 +21679,14 @@ rm -f conftest.$ac_objext conftest.$ac_ext done fi -echo "$as_me:21644: result: $cf_cv_ncurses_h" >&5 +echo "$as_me:21682: 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:21651: checking for $cf_ncuhdr_root include-path" >&5 +echo "$as_me:21689: 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 @@ -21788,7 +21826,7 @@ if test -n "$cf_incdir" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 21791 "configure" +#line 21829 "configure" #include "confdefs.h" #include <stdio.h> int @@ -21800,16 +21838,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:21803: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:21841: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:21806: \$? = $ac_status" >&5 + echo "$as_me:21844: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:21809: \"$ac_try\"") >&5 + { (eval echo "$as_me:21847: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:21812: \$? = $ac_status" >&5 + echo "$as_me:21850: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -21826,7 +21864,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}:21829: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:21867: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -21847,7 +21885,7 @@ fi do cat >conftest.$ac_ext <<_ACEOF -#line 21850 "configure" +#line 21888 "configure" #include "confdefs.h" #include <$cf_header> @@ -21871,16 +21909,16 @@ printf("old\n"); } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:21874: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:21912: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:21877: \$? = $ac_status" >&5 + echo "$as_me:21915: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:21880: \"$ac_try\"") >&5 + { (eval echo "$as_me:21918: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:21883: \$? = $ac_status" >&5 + echo "$as_me:21921: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_ncurses_h2=$cf_header @@ -21901,12 +21939,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:21904: error: not found" >&5 + test "$cf_cv_ncurses_h2" = no && { { echo "$as_me:21942: error: not found" >&5 echo "$as_me: error: not found" >&2;} { (exit 1); exit 1; }; } fi -echo "$as_me:21909: result: $cf_cv_ncurses_h2" >&5 +echo "$as_me:21947: 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%/[^/]*$%%'` @@ -21939,7 +21977,7 @@ if test -n "$cf_1st_incdir" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 21942 "configure" +#line 21980 "configure" #include "confdefs.h" #include <stdio.h> int @@ -21951,16 +21989,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:21954: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:21992: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:21957: \$? = $ac_status" >&5 + echo "$as_me:21995: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:21960: \"$ac_try\"") >&5 + { (eval echo "$as_me:21998: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:21963: \$? = $ac_status" >&5 + echo "$as_me:22001: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -21977,7 +22015,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}:21980: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:22018: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -22023,7 +22061,7 @@ EOF ;; esac -echo "$as_me:22026: checking for terminfo header" >&5 +echo "$as_me:22064: 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 @@ -22041,7 +22079,7 @@ esac for cf_test in $cf_term_header "ncurses/term.h" "ncursesw/term.h" do cat >conftest.$ac_ext <<_ACEOF -#line 22044 "configure" +#line 22082 "configure" #include "confdefs.h" #include <stdio.h> #include <${cf_cv_ncurses_header:-curses.h}> @@ -22056,16 +22094,16 @@ int x = auto_left_margin } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:22059: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:22097: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:22062: \$? = $ac_status" >&5 + echo "$as_me:22100: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:22065: \"$ac_try\"") >&5 + { (eval echo "$as_me:22103: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:22068: \$? = $ac_status" >&5 + echo "$as_me:22106: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_term_header="$cf_test" @@ -22081,7 +22119,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext done fi -echo "$as_me:22084: result: $cf_cv_term_header" >&5 +echo "$as_me:22122: result: $cf_cv_term_header" >&5 echo "${ECHO_T}$cf_cv_term_header" >&6 # Set definitions to allow ifdef'ing to accommodate subdirectories @@ -22119,7 +22157,7 @@ cat >>confdefs.h <<\EOF #define NCURSES 1 EOF -echo "$as_me:22122: checking for ncurses version" >&5 +echo "$as_me:22160: 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 @@ -22145,10 +22183,10 @@ Autoconf "old" #endif EOF cf_try="$ac_cpp conftest.$ac_ext 2>&5 | grep '^Autoconf ' >conftest.out" - { (eval echo "$as_me:22148: \"$cf_try\"") >&5 + { (eval echo "$as_me:22186: \"$cf_try\"") >&5 (eval $cf_try) 2>&5 ac_status=$? - echo "$as_me:22151: \$? = $ac_status" >&5 + echo "$as_me:22189: \$? = $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%".*%%'` @@ -22158,7 +22196,7 @@ EOF else cat >conftest.$ac_ext <<_ACEOF -#line 22161 "configure" +#line 22199 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> @@ -22183,15 +22221,15 @@ int main() } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:22186: \"$ac_link\"") >&5 +if { (eval echo "$as_me:22224: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:22189: \$? = $ac_status" >&5 + echo "$as_me:22227: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:22191: \"$ac_try\"") >&5 + { (eval echo "$as_me:22229: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:22194: \$? = $ac_status" >&5 + echo "$as_me:22232: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_ncurses_version=`cat $cf_tempfile` @@ -22205,7 +22243,7 @@ fi rm -f $cf_tempfile fi -echo "$as_me:22208: result: $cf_cv_ncurses_version" >&5 +echo "$as_me:22246: result: $cf_cv_ncurses_version" >&5 echo "${ECHO_T}$cf_cv_ncurses_version" >&6 test "$cf_cv_ncurses_version" = no || cat >>confdefs.h <<\EOF @@ -22218,7 +22256,7 @@ cf_nculib_root=ncursesw # to link gpm. cf_ncurses_LIBS="" cf_ncurses_SAVE="$LIBS" -echo "$as_me:22221: checking for Gpm_Open in -lgpm" >&5 +echo "$as_me:22259: 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 @@ -22226,7 +22264,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lgpm $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 22229 "configure" +#line 22267 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -22245,16 +22283,16 @@ Gpm_Open (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:22248: \"$ac_link\"") >&5 +if { (eval echo "$as_me:22286: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:22251: \$? = $ac_status" >&5 + echo "$as_me:22289: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:22254: \"$ac_try\"") >&5 + { (eval echo "$as_me:22292: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:22257: \$? = $ac_status" >&5 + echo "$as_me:22295: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_gpm_Gpm_Open=yes else @@ -22265,10 +22303,10 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:22268: result: $ac_cv_lib_gpm_Gpm_Open" >&5 +echo "$as_me:22306: 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:22271: checking for initscr in -lgpm" >&5 + echo "$as_me:22309: 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 @@ -22276,7 +22314,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lgpm $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 22279 "configure" +#line 22317 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -22295,16 +22333,16 @@ initscr (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:22298: \"$ac_link\"") >&5 +if { (eval echo "$as_me:22336: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:22301: \$? = $ac_status" >&5 + echo "$as_me:22339: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:22304: \"$ac_try\"") >&5 + { (eval echo "$as_me:22342: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:22307: \$? = $ac_status" >&5 + echo "$as_me:22345: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_gpm_initscr=yes else @@ -22315,7 +22353,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:22318: result: $ac_cv_lib_gpm_initscr" >&5 +echo "$as_me:22356: 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" @@ -22330,7 +22368,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:22333: checking for tgoto in -lmytinfo" >&5 + echo "$as_me:22371: 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 @@ -22338,7 +22376,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lmytinfo $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 22341 "configure" +#line 22379 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -22357,16 +22395,16 @@ tgoto (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:22360: \"$ac_link\"") >&5 +if { (eval echo "$as_me:22398: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:22363: \$? = $ac_status" >&5 + echo "$as_me:22401: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:22366: \"$ac_try\"") >&5 + { (eval echo "$as_me:22404: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:22369: \$? = $ac_status" >&5 + echo "$as_me:22407: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_mytinfo_tgoto=yes else @@ -22377,7 +22415,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:22380: result: $ac_cv_lib_mytinfo_tgoto" >&5 +echo "$as_me:22418: 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" @@ -22396,13 +22434,13 @@ else eval 'cf_cv_have_lib_'$cf_nculib_root'=no' cf_libdir="" - echo "$as_me:22399: checking for initscr" >&5 + echo "$as_me:22437: 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 22405 "configure" +#line 22443 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char initscr (); below. */ @@ -22433,16 +22471,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:22436: \"$ac_link\"") >&5 +if { (eval echo "$as_me:22474: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:22439: \$? = $ac_status" >&5 + echo "$as_me:22477: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:22442: \"$ac_try\"") >&5 + { (eval echo "$as_me:22480: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:22445: \$? = $ac_status" >&5 + echo "$as_me:22483: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_initscr=yes else @@ -22452,18 +22490,18 @@ ac_cv_func_initscr=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:22455: result: $ac_cv_func_initscr" >&5 +echo "$as_me:22493: 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:22462: checking for initscr in -l$cf_nculib_root" >&5 + echo "$as_me:22500: 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 22466 "configure" +#line 22504 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> int @@ -22475,25 +22513,25 @@ initscr() } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:22478: \"$ac_link\"") >&5 +if { (eval echo "$as_me:22516: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:22481: \$? = $ac_status" >&5 + echo "$as_me:22519: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:22484: \"$ac_try\"") >&5 + { (eval echo "$as_me:22522: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:22487: \$? = $ac_status" >&5 + echo "$as_me:22525: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:22489: result: yes" >&5 + echo "$as_me:22527: 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:22496: result: no" >&5 +echo "$as_me:22534: result: no" >&5 echo "${ECHO_T}no" >&6 cf_search= @@ -22583,11 +22621,11 @@ cf_search="$cf_library_path_list $cf_search" for cf_libdir in $cf_search do - echo "$as_me:22586: checking for -l$cf_nculib_root in $cf_libdir" >&5 + echo "$as_me:22624: 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 22590 "configure" +#line 22628 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> int @@ -22599,25 +22637,25 @@ initscr() } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:22602: \"$ac_link\"") >&5 +if { (eval echo "$as_me:22640: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:22605: \$? = $ac_status" >&5 + echo "$as_me:22643: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:22608: \"$ac_try\"") >&5 + { (eval echo "$as_me:22646: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:22611: \$? = $ac_status" >&5 + echo "$as_me:22649: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:22613: result: yes" >&5 + echo "$as_me:22651: 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:22620: result: no" >&5 +echo "$as_me:22658: result: no" >&5 echo "${ECHO_T}no" >&6 LIBS="$cf_save_LIBS" fi @@ -22632,7 +22670,7 @@ fi eval 'cf_found_library=$cf_cv_have_lib_'$cf_nculib_root if test $cf_found_library = no ; then - { { echo "$as_me:22635: error: Cannot link $cf_nculib_root library" >&5 + { { echo "$as_me:22673: error: Cannot link $cf_nculib_root library" >&5 echo "$as_me: error: Cannot link $cf_nculib_root library" >&2;} { (exit 1); exit 1; }; } fi @@ -22640,7 +22678,7 @@ fi fi if test -n "$cf_ncurses_LIBS" ; then - echo "$as_me:22643: checking if we can link $cf_nculib_root without $cf_ncurses_LIBS" >&5 + echo "$as_me:22681: 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 @@ -22650,7 +22688,7 @@ echo $ECHO_N "checking if we can link $cf_nculib_root without $cf_ncurses_LIBS.. fi done cat >conftest.$ac_ext <<_ACEOF -#line 22653 "configure" +#line 22691 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> int @@ -22662,23 +22700,23 @@ initscr(); mousemask(0,0); tgoto((char *)0, 0, 0); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:22665: \"$ac_link\"") >&5 +if { (eval echo "$as_me:22703: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:22668: \$? = $ac_status" >&5 + echo "$as_me:22706: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:22671: \"$ac_try\"") >&5 + { (eval echo "$as_me:22709: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:22674: \$? = $ac_status" >&5 + echo "$as_me:22712: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:22676: result: yes" >&5 + echo "$as_me:22714: result: yes" >&5 echo "${ECHO_T}yes" >&6 else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 -echo "$as_me:22681: result: no" >&5 +echo "$as_me:22719: result: no" >&5 echo "${ECHO_T}no" >&6 LIBS="$cf_ncurses_SAVE" fi @@ -22696,12 +22734,19 @@ fi cf_wide_curses=yes ;; pdcurses) - cf_cv_ncurses_header=xcurses.h - # do this last, since it changes definition of main: CF_PDCURSES_X11 + case $host_os in + mingw*) + cf_cv_ncurses_header=curses.h + ;; + *) #(vi + cf_cv_ncurses_header=xcurses.h + # do this last, since it changes definition of main: CF_PDCURSES_X11 + ;; + esac ;; slang) -echo "$as_me:22704: checking for slang header file" >&5 +echo "$as_me:22749: 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 @@ -22709,7 +22754,7 @@ else cf_cv_slang_header=no cat >conftest.$ac_ext <<_ACEOF -#line 22712 "configure" +#line 22757 "configure" #include "confdefs.h" #include <slang.h> int @@ -22721,16 +22766,16 @@ printf("%s\n", SLANG_VERSION) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:22724: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:22769: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:22727: \$? = $ac_status" >&5 + echo "$as_me:22772: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:22730: \"$ac_try\"") >&5 + { (eval echo "$as_me:22775: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:22733: \$? = $ac_status" >&5 + echo "$as_me:22778: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_slang_header=predefined else @@ -22857,7 +22902,7 @@ cf_search="$cf_search $cf_header_path_list" fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:22860: result: $cf_cv_slang_header" >&5 +echo "$as_me:22905: result: $cf_cv_slang_header" >&5 echo "${ECHO_T}$cf_cv_slang_header" >&6 if test "x$cf_cv_slang_header" != xno @@ -22898,7 +22943,7 @@ if test -n "$cf_incdir" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 22901 "configure" +#line 22946 "configure" #include "confdefs.h" #include <stdio.h> int @@ -22910,16 +22955,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:22913: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:22958: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:22916: \$? = $ac_status" >&5 + echo "$as_me:22961: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:22919: \"$ac_try\"") >&5 + { (eval echo "$as_me:22964: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:22922: \$? = $ac_status" >&5 + echo "$as_me:22967: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -22936,7 +22981,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}:22939: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:22984: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -22966,7 +23011,7 @@ else cf_cv_termlib=none cat >conftest.$ac_ext <<_ACEOF -#line 22969 "configure" +#line 23014 "configure" #include "confdefs.h" int @@ -22978,19 +23023,19 @@ char *x=(char*)tgoto("",0,0) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:22981: \"$ac_link\"") >&5 +if { (eval echo "$as_me:23026: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:22984: \$? = $ac_status" >&5 + echo "$as_me:23029: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:22987: \"$ac_try\"") >&5 + { (eval echo "$as_me:23032: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:22990: \$? = $ac_status" >&5 + echo "$as_me:23035: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cat >conftest.$ac_ext <<_ACEOF -#line 22993 "configure" +#line 23038 "configure" #include "confdefs.h" int @@ -23002,16 +23047,16 @@ int x=tigetstr("") } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:23005: \"$ac_link\"") >&5 +if { (eval echo "$as_me:23050: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:23008: \$? = $ac_status" >&5 + echo "$as_me:23053: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:23011: \"$ac_try\"") >&5 + { (eval echo "$as_me:23056: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23014: \$? = $ac_status" >&5 + echo "$as_me:23059: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_termlib=terminfo else @@ -23022,7 +23067,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}:23025: testing using functions in predefined $cf_cv_termlib LIBS ..." 1>&5 +echo "${as_me:-configure}:23070: testing using functions in predefined $cf_cv_termlib LIBS ..." 1>&5 else echo "$as_me: failed program was:" >&5 @@ -23037,10 +23082,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:23040: checking for $cf_func in -l$cf_lib" >&5 + echo "$as_me:23085: 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 23043 "configure" +#line 23088 "configure" #include "confdefs.h" int @@ -23052,16 +23097,16 @@ int x=$cf_func("") } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:23055: \"$ac_link\"") >&5 +if { (eval echo "$as_me:23100: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:23058: \$? = $ac_status" >&5 + echo "$as_me:23103: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:23061: \"$ac_try\"") >&5 + { (eval echo "$as_me:23106: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23064: \$? = $ac_status" >&5 + echo "$as_me:23109: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_result=yes else @@ -23070,7 +23115,7 @@ cat conftest.$ac_ext >&5 cf_result=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext - echo "$as_me:23073: result: $cf_result" >&5 + echo "$as_me:23118: result: $cf_result" >&5 echo "${ECHO_T}$cf_result" >&6 if test "$cf_result" = yes ; then if test "$cf_func" = tigetstr ; then @@ -23087,7 +23132,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:23090: checking for initscr in -lcurses" >&5 + echo "$as_me:23135: 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 @@ -23095,7 +23140,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lcurses $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 23098 "configure" +#line 23143 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -23114,16 +23159,16 @@ initscr (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:23117: \"$ac_link\"") >&5 +if { (eval echo "$as_me:23162: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:23120: \$? = $ac_status" >&5 + echo "$as_me:23165: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:23123: \"$ac_try\"") >&5 + { (eval echo "$as_me:23168: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23126: \$? = $ac_status" >&5 + echo "$as_me:23171: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_curses_initscr=yes else @@ -23134,13 +23179,13 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:23137: result: $ac_cv_lib_curses_initscr" >&5 +echo "$as_me:23182: result: $ac_cv_lib_curses_initscr" >&5 echo "${ECHO_T}$ac_cv_lib_curses_initscr" >&6 if test $ac_cv_lib_curses_initscr = yes; then LIBS="-lcurses $LIBS" fi - echo "$as_me:23143: checking for tgoto in -ltermcap" >&5 + echo "$as_me:23188: 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 @@ -23148,7 +23193,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-ltermcap $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 23151 "configure" +#line 23196 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -23167,16 +23212,16 @@ tgoto (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:23170: \"$ac_link\"") >&5 +if { (eval echo "$as_me:23215: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:23173: \$? = $ac_status" >&5 + echo "$as_me:23218: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:23176: \"$ac_try\"") >&5 + { (eval echo "$as_me:23221: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23179: \$? = $ac_status" >&5 + echo "$as_me:23224: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_termcap_tgoto=yes else @@ -23187,7 +23232,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:23190: result: $ac_cv_lib_termcap_tgoto" >&5 +echo "$as_me:23235: result: $ac_cv_lib_termcap_tgoto" >&5 echo "${ECHO_T}$ac_cv_lib_termcap_tgoto" >&6 if test $ac_cv_lib_termcap_tgoto = yes; then LIBS="-ltermcap $LIBS" cf_cv_termlib=termcap @@ -23198,20 +23243,20 @@ fi fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext if test "$cf_cv_termlib" = none; then - { echo "$as_me:23201: WARNING: Cannot find -ltermlib, -lcurses, or -ltermcap" >&5 + { echo "$as_me:23246: 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:23208: checking for acos" >&5 +echo "$as_me:23253: 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 23214 "configure" +#line 23259 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char acos (); below. */ @@ -23242,16 +23287,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:23245: \"$ac_link\"") >&5 +if { (eval echo "$as_me:23290: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:23248: \$? = $ac_status" >&5 + echo "$as_me:23293: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:23251: \"$ac_try\"") >&5 + { (eval echo "$as_me:23296: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23254: \$? = $ac_status" >&5 + echo "$as_me:23299: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_acos=yes else @@ -23261,13 +23306,13 @@ ac_cv_func_acos=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:23264: result: $ac_cv_func_acos" >&5 +echo "$as_me:23309: 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:23270: checking for acos in -lm" >&5 +echo "$as_me:23315: 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 @@ -23275,7 +23320,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lm $LIBS $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 23278 "configure" +#line 23323 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -23294,16 +23339,16 @@ acos (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:23297: \"$ac_link\"") >&5 +if { (eval echo "$as_me:23342: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:23300: \$? = $ac_status" >&5 + echo "$as_me:23345: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:23303: \"$ac_try\"") >&5 + { (eval echo "$as_me:23348: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23306: \$? = $ac_status" >&5 + echo "$as_me:23351: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_m_acos=yes else @@ -23314,7 +23359,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:23317: result: $ac_cv_lib_m_acos" >&5 +echo "$as_me:23362: 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 @@ -23340,13 +23385,13 @@ os2*) eval 'cf_cv_have_lib_'video'=no' cf_libdir="" - echo "$as_me:23343: checking for v_init" >&5 + echo "$as_me:23388: 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 23349 "configure" +#line 23394 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char v_init (); below. */ @@ -23377,16 +23422,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:23380: \"$ac_link\"") >&5 +if { (eval echo "$as_me:23425: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:23383: \$? = $ac_status" >&5 + echo "$as_me:23428: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:23386: \"$ac_try\"") >&5 + { (eval echo "$as_me:23431: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23389: \$? = $ac_status" >&5 + echo "$as_me:23434: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_v_init=yes else @@ -23396,18 +23441,18 @@ ac_cv_func_v_init=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:23399: result: $ac_cv_func_v_init" >&5 +echo "$as_me:23444: 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:23406: checking for v_init in -lvideo" >&5 + echo "$as_me:23451: 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 23410 "configure" +#line 23455 "configure" #include "confdefs.h" #include <sys/video.h> int @@ -23419,25 +23464,25 @@ v_init() } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:23422: \"$ac_link\"") >&5 +if { (eval echo "$as_me:23467: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:23425: \$? = $ac_status" >&5 + echo "$as_me:23470: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:23428: \"$ac_try\"") >&5 + { (eval echo "$as_me:23473: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23431: \$? = $ac_status" >&5 + echo "$as_me:23476: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:23433: result: yes" >&5 + echo "$as_me:23478: 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:23440: result: no" >&5 +echo "$as_me:23485: result: no" >&5 echo "${ECHO_T}no" >&6 cf_search= @@ -23527,11 +23572,11 @@ cf_search="$cf_library_path_list $cf_search" for cf_libdir in $cf_search do - echo "$as_me:23530: checking for -lvideo in $cf_libdir" >&5 + echo "$as_me:23575: 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 23534 "configure" +#line 23579 "configure" #include "confdefs.h" #include <sys/video.h> int @@ -23543,25 +23588,25 @@ v_init() } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:23546: \"$ac_link\"") >&5 +if { (eval echo "$as_me:23591: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:23549: \$? = $ac_status" >&5 + echo "$as_me:23594: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:23552: \"$ac_try\"") >&5 + { (eval echo "$as_me:23597: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23555: \$? = $ac_status" >&5 + echo "$as_me:23600: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:23557: result: yes" >&5 + echo "$as_me:23602: 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:23564: result: no" >&5 +echo "$as_me:23609: result: no" >&5 echo "${ECHO_T}no" >&6 LIBS="$cf_save_LIBS" fi @@ -23576,7 +23621,7 @@ fi eval 'cf_found_library=$cf_cv_have_lib_'video if test $cf_found_library = no ; then - { { echo "$as_me:23579: error: Cannot link video library" >&5 + { { echo "$as_me:23624: error: Cannot link video library" >&5 echo "$as_me: error: Cannot link video library" >&2;} { (exit 1); exit 1; }; } fi @@ -23586,13 +23631,13 @@ esac eval 'cf_cv_have_lib_'slang'=no' cf_libdir="" - echo "$as_me:23589: checking for SLtt_get_screen_size" >&5 + echo "$as_me:23634: 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 23595 "configure" +#line 23640 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char SLtt_get_screen_size (); below. */ @@ -23623,16 +23668,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:23626: \"$ac_link\"") >&5 +if { (eval echo "$as_me:23671: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:23629: \$? = $ac_status" >&5 + echo "$as_me:23674: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:23632: \"$ac_try\"") >&5 + { (eval echo "$as_me:23677: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23635: \$? = $ac_status" >&5 + echo "$as_me:23680: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_SLtt_get_screen_size=yes else @@ -23642,18 +23687,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:23645: result: $ac_cv_func_SLtt_get_screen_size" >&5 +echo "$as_me:23690: 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:23652: checking for SLtt_get_screen_size in -lslang" >&5 + echo "$as_me:23697: 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 23656 "configure" +#line 23701 "configure" #include "confdefs.h" #include <slang.h> int @@ -23665,25 +23710,25 @@ SLtt_get_screen_size() } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:23668: \"$ac_link\"") >&5 +if { (eval echo "$as_me:23713: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:23671: \$? = $ac_status" >&5 + echo "$as_me:23716: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:23674: \"$ac_try\"") >&5 + { (eval echo "$as_me:23719: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23677: \$? = $ac_status" >&5 + echo "$as_me:23722: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:23679: result: yes" >&5 + echo "$as_me:23724: 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:23686: result: no" >&5 +echo "$as_me:23731: result: no" >&5 echo "${ECHO_T}no" >&6 cf_search= @@ -23773,11 +23818,11 @@ cf_search="$cf_library_path_list $cf_search" for cf_libdir in $cf_search do - echo "$as_me:23776: checking for -lslang in $cf_libdir" >&5 + echo "$as_me:23821: 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 23780 "configure" +#line 23825 "configure" #include "confdefs.h" #include <slang.h> int @@ -23789,25 +23834,25 @@ SLtt_get_screen_size() } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:23792: \"$ac_link\"") >&5 +if { (eval echo "$as_me:23837: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:23795: \$? = $ac_status" >&5 + echo "$as_me:23840: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:23798: \"$ac_try\"") >&5 + { (eval echo "$as_me:23843: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23801: \$? = $ac_status" >&5 + echo "$as_me:23846: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:23803: result: yes" >&5 + echo "$as_me:23848: 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:23810: result: no" >&5 +echo "$as_me:23855: result: no" >&5 echo "${ECHO_T}no" >&6 LIBS="$cf_save_LIBS" fi @@ -23822,13 +23867,13 @@ fi eval 'cf_found_library=$cf_cv_have_lib_'slang if test $cf_found_library = no ; then - { { echo "$as_me:23825: error: Cannot link slang library" >&5 + { { echo "$as_me:23870: 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:23831: checking if we can link slang without termcap" >&5 +echo "$as_me:23876: 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%^.%%'` @@ -23837,7 +23882,7 @@ else fi LIBS=`echo ".$cf_slang_LIBS3" | sed -e "s%$cf_exclude%%" -e 's%^.%%'` cat >conftest.$ac_ext <<_ACEOF -#line 23840 "configure" +#line 23885 "configure" #include "confdefs.h" #include <slang.h> int @@ -23849,16 +23894,16 @@ SLtt_get_screen_size() } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:23852: \"$ac_link\"") >&5 +if { (eval echo "$as_me:23897: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:23855: \$? = $ac_status" >&5 + echo "$as_me:23900: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:23858: \"$ac_try\"") >&5 + { (eval echo "$as_me:23903: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23861: \$? = $ac_status" >&5 + echo "$as_me:23906: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_result=yes else @@ -23867,13 +23912,13 @@ cat conftest.$ac_ext >&5 cf_result=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext -echo "$as_me:23870: result: $cf_result" >&5 +echo "$as_me:23915: result: $cf_result" >&5 echo "${ECHO_T}$cf_result" >&6 test $cf_result = no && LIBS="$cf_slang_LIBS3" else -echo "$as_me:23876: checking for slang2 header file" >&5 +echo "$as_me:23921: 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 @@ -23881,7 +23926,7 @@ else cf_cv_slang2_header=no cat >conftest.$ac_ext <<_ACEOF -#line 23884 "configure" +#line 23929 "configure" #include "confdefs.h" #include <slang.h> int @@ -23893,16 +23938,16 @@ printf("%s\n", SLANG_VERSION) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:23896: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:23941: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:23899: \$? = $ac_status" >&5 + echo "$as_me:23944: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:23902: \"$ac_try\"") >&5 + { (eval echo "$as_me:23947: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23905: \$? = $ac_status" >&5 + echo "$as_me:23950: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_slang2_header=predefined else @@ -24029,7 +24074,7 @@ cf_search="$cf_search $cf_header_path_list" fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:24032: result: $cf_cv_slang2_header" >&5 +echo "$as_me:24077: result: $cf_cv_slang2_header" >&5 echo "${ECHO_T}$cf_cv_slang2_header" >&6 if test "x$cf_cv_slang2_header" != xno @@ -24070,7 +24115,7 @@ if test -n "$cf_incdir" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 24073 "configure" +#line 24118 "configure" #include "confdefs.h" #include <stdio.h> int @@ -24082,16 +24127,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:24085: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:24130: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:24088: \$? = $ac_status" >&5 + echo "$as_me:24133: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:24091: \"$ac_try\"") >&5 + { (eval echo "$as_me:24136: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:24094: \$? = $ac_status" >&5 + echo "$as_me:24139: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -24108,7 +24153,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}:24111: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:24156: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -24138,7 +24183,7 @@ else cf_cv_termlib=none cat >conftest.$ac_ext <<_ACEOF -#line 24141 "configure" +#line 24186 "configure" #include "confdefs.h" int @@ -24150,19 +24195,19 @@ char *x=(char*)tgoto("",0,0) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:24153: \"$ac_link\"") >&5 +if { (eval echo "$as_me:24198: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:24156: \$? = $ac_status" >&5 + echo "$as_me:24201: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:24159: \"$ac_try\"") >&5 + { (eval echo "$as_me:24204: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:24162: \$? = $ac_status" >&5 + echo "$as_me:24207: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cat >conftest.$ac_ext <<_ACEOF -#line 24165 "configure" +#line 24210 "configure" #include "confdefs.h" int @@ -24174,16 +24219,16 @@ int x=tigetstr("") } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:24177: \"$ac_link\"") >&5 +if { (eval echo "$as_me:24222: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:24180: \$? = $ac_status" >&5 + echo "$as_me:24225: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:24183: \"$ac_try\"") >&5 + { (eval echo "$as_me:24228: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:24186: \$? = $ac_status" >&5 + echo "$as_me:24231: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_termlib=terminfo else @@ -24194,7 +24239,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}:24197: testing using functions in predefined $cf_cv_termlib LIBS ..." 1>&5 +echo "${as_me:-configure}:24242: testing using functions in predefined $cf_cv_termlib LIBS ..." 1>&5 else echo "$as_me: failed program was:" >&5 @@ -24209,10 +24254,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:24212: checking for $cf_func in -l$cf_lib" >&5 + echo "$as_me:24257: 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 24215 "configure" +#line 24260 "configure" #include "confdefs.h" int @@ -24224,16 +24269,16 @@ int x=$cf_func("") } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:24227: \"$ac_link\"") >&5 +if { (eval echo "$as_me:24272: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:24230: \$? = $ac_status" >&5 + echo "$as_me:24275: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:24233: \"$ac_try\"") >&5 + { (eval echo "$as_me:24278: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:24236: \$? = $ac_status" >&5 + echo "$as_me:24281: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_result=yes else @@ -24242,7 +24287,7 @@ cat conftest.$ac_ext >&5 cf_result=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext - echo "$as_me:24245: result: $cf_result" >&5 + echo "$as_me:24290: result: $cf_result" >&5 echo "${ECHO_T}$cf_result" >&6 if test "$cf_result" = yes ; then if test "$cf_func" = tigetstr ; then @@ -24259,7 +24304,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:24262: checking for initscr in -lcurses" >&5 + echo "$as_me:24307: 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 @@ -24267,7 +24312,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lcurses $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 24270 "configure" +#line 24315 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -24286,16 +24331,16 @@ initscr (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:24289: \"$ac_link\"") >&5 +if { (eval echo "$as_me:24334: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:24292: \$? = $ac_status" >&5 + echo "$as_me:24337: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:24295: \"$ac_try\"") >&5 + { (eval echo "$as_me:24340: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:24298: \$? = $ac_status" >&5 + echo "$as_me:24343: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_curses_initscr=yes else @@ -24306,13 +24351,13 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:24309: result: $ac_cv_lib_curses_initscr" >&5 +echo "$as_me:24354: result: $ac_cv_lib_curses_initscr" >&5 echo "${ECHO_T}$ac_cv_lib_curses_initscr" >&6 if test $ac_cv_lib_curses_initscr = yes; then LIBS="-lcurses $LIBS" fi - echo "$as_me:24315: checking for tgoto in -ltermcap" >&5 + echo "$as_me:24360: 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 @@ -24320,7 +24365,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-ltermcap $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 24323 "configure" +#line 24368 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -24339,16 +24384,16 @@ tgoto (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:24342: \"$ac_link\"") >&5 +if { (eval echo "$as_me:24387: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:24345: \$? = $ac_status" >&5 + echo "$as_me:24390: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:24348: \"$ac_try\"") >&5 + { (eval echo "$as_me:24393: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:24351: \$? = $ac_status" >&5 + echo "$as_me:24396: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_termcap_tgoto=yes else @@ -24359,7 +24404,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:24362: result: $ac_cv_lib_termcap_tgoto" >&5 +echo "$as_me:24407: result: $ac_cv_lib_termcap_tgoto" >&5 echo "${ECHO_T}$ac_cv_lib_termcap_tgoto" >&6 if test $ac_cv_lib_termcap_tgoto = yes; then LIBS="-ltermcap $LIBS" cf_cv_termlib=termcap @@ -24370,20 +24415,20 @@ fi fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext if test "$cf_cv_termlib" = none; then - { echo "$as_me:24373: WARNING: Cannot find -ltermlib, -lcurses, or -ltermcap" >&5 + { echo "$as_me:24418: 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:24380: checking for acos" >&5 +echo "$as_me:24425: 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 24386 "configure" +#line 24431 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char acos (); below. */ @@ -24414,16 +24459,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:24417: \"$ac_link\"") >&5 +if { (eval echo "$as_me:24462: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:24420: \$? = $ac_status" >&5 + echo "$as_me:24465: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:24423: \"$ac_try\"") >&5 + { (eval echo "$as_me:24468: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:24426: \$? = $ac_status" >&5 + echo "$as_me:24471: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_acos=yes else @@ -24433,13 +24478,13 @@ ac_cv_func_acos=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:24436: result: $ac_cv_func_acos" >&5 +echo "$as_me:24481: 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:24442: checking for acos in -lm" >&5 +echo "$as_me:24487: 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 @@ -24447,7 +24492,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lm $LIBS $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 24450 "configure" +#line 24495 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -24466,16 +24511,16 @@ acos (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:24469: \"$ac_link\"") >&5 +if { (eval echo "$as_me:24514: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:24472: \$? = $ac_status" >&5 + echo "$as_me:24517: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:24475: \"$ac_try\"") >&5 + { (eval echo "$as_me:24520: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:24478: \$? = $ac_status" >&5 + echo "$as_me:24523: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_m_acos=yes else @@ -24486,7 +24531,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:24489: result: $ac_cv_lib_m_acos" >&5 +echo "$as_me:24534: 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 @@ -24512,13 +24557,13 @@ os2*) eval 'cf_cv_have_lib_'video'=no' cf_libdir="" - echo "$as_me:24515: checking for v_init" >&5 + echo "$as_me:24560: 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 24521 "configure" +#line 24566 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char v_init (); below. */ @@ -24549,16 +24594,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:24552: \"$ac_link\"") >&5 +if { (eval echo "$as_me:24597: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:24555: \$? = $ac_status" >&5 + echo "$as_me:24600: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:24558: \"$ac_try\"") >&5 + { (eval echo "$as_me:24603: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:24561: \$? = $ac_status" >&5 + echo "$as_me:24606: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_v_init=yes else @@ -24568,18 +24613,18 @@ ac_cv_func_v_init=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:24571: result: $ac_cv_func_v_init" >&5 +echo "$as_me:24616: 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:24578: checking for v_init in -lvideo" >&5 + echo "$as_me:24623: 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 24582 "configure" +#line 24627 "configure" #include "confdefs.h" #include <sys/video.h> int @@ -24591,25 +24636,25 @@ v_init() } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:24594: \"$ac_link\"") >&5 +if { (eval echo "$as_me:24639: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:24597: \$? = $ac_status" >&5 + echo "$as_me:24642: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:24600: \"$ac_try\"") >&5 + { (eval echo "$as_me:24645: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:24603: \$? = $ac_status" >&5 + echo "$as_me:24648: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:24605: result: yes" >&5 + echo "$as_me:24650: 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:24612: result: no" >&5 +echo "$as_me:24657: result: no" >&5 echo "${ECHO_T}no" >&6 cf_search= @@ -24699,11 +24744,11 @@ cf_search="$cf_library_path_list $cf_search" for cf_libdir in $cf_search do - echo "$as_me:24702: checking for -lvideo in $cf_libdir" >&5 + echo "$as_me:24747: 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 24706 "configure" +#line 24751 "configure" #include "confdefs.h" #include <sys/video.h> int @@ -24715,25 +24760,25 @@ v_init() } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:24718: \"$ac_link\"") >&5 +if { (eval echo "$as_me:24763: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:24721: \$? = $ac_status" >&5 + echo "$as_me:24766: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:24724: \"$ac_try\"") >&5 + { (eval echo "$as_me:24769: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:24727: \$? = $ac_status" >&5 + echo "$as_me:24772: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:24729: result: yes" >&5 + echo "$as_me:24774: 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:24736: result: no" >&5 +echo "$as_me:24781: result: no" >&5 echo "${ECHO_T}no" >&6 LIBS="$cf_save_LIBS" fi @@ -24748,7 +24793,7 @@ fi eval 'cf_found_library=$cf_cv_have_lib_'video if test $cf_found_library = no ; then - { { echo "$as_me:24751: error: Cannot link video library" >&5 + { { echo "$as_me:24796: error: Cannot link video library" >&5 echo "$as_me: error: Cannot link video library" >&2;} { (exit 1); exit 1; }; } fi @@ -24758,13 +24803,13 @@ esac eval 'cf_cv_have_lib_'slang2'=no' cf_libdir="" - echo "$as_me:24761: checking for SLtt_get_screen_size" >&5 + echo "$as_me:24806: 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 24767 "configure" +#line 24812 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char SLtt_get_screen_size (); below. */ @@ -24795,16 +24840,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:24798: \"$ac_link\"") >&5 +if { (eval echo "$as_me:24843: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:24801: \$? = $ac_status" >&5 + echo "$as_me:24846: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:24804: \"$ac_try\"") >&5 + { (eval echo "$as_me:24849: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:24807: \$? = $ac_status" >&5 + echo "$as_me:24852: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_SLtt_get_screen_size=yes else @@ -24814,18 +24859,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:24817: result: $ac_cv_func_SLtt_get_screen_size" >&5 +echo "$as_me:24862: 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:24824: checking for SLtt_get_screen_size in -lslang2" >&5 + echo "$as_me:24869: 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 24828 "configure" +#line 24873 "configure" #include "confdefs.h" #include <slang.h> int @@ -24837,25 +24882,25 @@ SLtt_get_screen_size() } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:24840: \"$ac_link\"") >&5 +if { (eval echo "$as_me:24885: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:24843: \$? = $ac_status" >&5 + echo "$as_me:24888: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:24846: \"$ac_try\"") >&5 + { (eval echo "$as_me:24891: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:24849: \$? = $ac_status" >&5 + echo "$as_me:24894: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:24851: result: yes" >&5 + echo "$as_me:24896: 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:24858: result: no" >&5 +echo "$as_me:24903: result: no" >&5 echo "${ECHO_T}no" >&6 cf_search= @@ -24945,11 +24990,11 @@ cf_search="$cf_library_path_list $cf_search" for cf_libdir in $cf_search do - echo "$as_me:24948: checking for -lslang2 in $cf_libdir" >&5 + echo "$as_me:24993: 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 24952 "configure" +#line 24997 "configure" #include "confdefs.h" #include <slang.h> int @@ -24961,25 +25006,25 @@ SLtt_get_screen_size() } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:24964: \"$ac_link\"") >&5 +if { (eval echo "$as_me:25009: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:24967: \$? = $ac_status" >&5 + echo "$as_me:25012: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:24970: \"$ac_try\"") >&5 + { (eval echo "$as_me:25015: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:24973: \$? = $ac_status" >&5 + echo "$as_me:25018: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:24975: result: yes" >&5 + echo "$as_me:25020: 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:24982: result: no" >&5 +echo "$as_me:25027: result: no" >&5 echo "${ECHO_T}no" >&6 LIBS="$cf_save_LIBS" fi @@ -24994,13 +25039,13 @@ fi eval 'cf_found_library=$cf_cv_have_lib_'slang2 if test $cf_found_library = no ; then - { { echo "$as_me:24997: error: Cannot link slang2 library" >&5 + { { echo "$as_me:25042: 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:25003: checking if we can link slang2 without termcap" >&5 +echo "$as_me:25048: 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%^.%%'` @@ -25009,7 +25054,7 @@ else fi LIBS=`echo ".$cf_slang_LIBS3" | sed -e "s%$cf_exclude%%" -e 's%^.%%'` cat >conftest.$ac_ext <<_ACEOF -#line 25012 "configure" +#line 25057 "configure" #include "confdefs.h" #include <slang.h> int @@ -25021,16 +25066,16 @@ SLtt_get_screen_size() } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:25024: \"$ac_link\"") >&5 +if { (eval echo "$as_me:25069: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:25027: \$? = $ac_status" >&5 + echo "$as_me:25072: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:25030: \"$ac_try\"") >&5 + { (eval echo "$as_me:25075: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25033: \$? = $ac_status" >&5 + echo "$as_me:25078: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_result=yes else @@ -25039,12 +25084,12 @@ cat conftest.$ac_ext >&5 cf_result=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext -echo "$as_me:25042: result: $cf_result" >&5 +echo "$as_me:25087: result: $cf_result" >&5 echo "${ECHO_T}$cf_result" >&6 test $cf_result = no && LIBS="$cf_slang_LIBS3" else - { { echo "$as_me:25047: error: cannot find slang headers" >&5 + { { echo "$as_me:25092: error: cannot find slang headers" >&5 echo "$as_me: error: cannot find slang headers" >&2;} { (exit 1); exit 1; }; } fi @@ -25052,14 +25097,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:25055: checking if we must define UTF8" >&5 +echo "$as_me:25100: 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 25062 "configure" +#line 25107 "configure" #include "confdefs.h" #include <slang.h> int @@ -25071,16 +25116,16 @@ SLtt_get_screen_size() } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:25074: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:25119: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:25077: \$? = $ac_status" >&5 + echo "$as_me:25122: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:25080: \"$ac_try\"") >&5 + { (eval echo "$as_me:25125: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25083: \$? = $ac_status" >&5 + echo "$as_me:25128: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_slang_utf8=no else @@ -25088,7 +25133,7 @@ else cat conftest.$ac_ext >&5 cat >conftest.$ac_ext <<_ACEOF -#line 25091 "configure" +#line 25136 "configure" #include "confdefs.h" #define UTF8 @@ -25102,16 +25147,16 @@ SLtt_get_screen_size() } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:25105: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:25150: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:25108: \$? = $ac_status" >&5 + echo "$as_me:25153: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:25111: \"$ac_try\"") >&5 + { (eval echo "$as_me:25156: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25114: \$? = $ac_status" >&5 + echo "$as_me:25159: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_slang_utf8=yes else @@ -25124,7 +25169,7 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:25127: result: $cf_cv_slang_utf8" >&5 +echo "$as_me:25172: result: $cf_cv_slang_utf8" >&5 echo "${ECHO_T}$cf_cv_slang_utf8" >&6 if test "$cf_cv_slang_utf8" = yes ; then @@ -25135,14 +25180,14 @@ EOF fi -echo "$as_me:25138: checking if we must tell slang this is UNIX" >&5 +echo "$as_me:25183: 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 25145 "configure" +#line 25190 "configure" #include "confdefs.h" #include <slang.h> int @@ -25161,16 +25206,16 @@ SLang_TT_Baud_Rate = 1 } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:25164: \"$ac_link\"") >&5 +if { (eval echo "$as_me:25209: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:25167: \$? = $ac_status" >&5 + echo "$as_me:25212: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:25170: \"$ac_try\"") >&5 + { (eval echo "$as_me:25215: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25173: \$? = $ac_status" >&5 + echo "$as_me:25218: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_slang_unix=yes else @@ -25181,20 +25226,20 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:25184: result: $cf_cv_slang_unix" >&5 +echo "$as_me:25229: 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:25191: checking for SLsmg_Color_Type" >&5 + echo "$as_me:25236: 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 25197 "configure" +#line 25242 "configure" #include "confdefs.h" #include <slang.h> @@ -25210,16 +25255,16 @@ if (sizeof (SLsmg_Color_Type)) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:25213: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:25258: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:25216: \$? = $ac_status" >&5 + echo "$as_me:25261: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:25219: \"$ac_try\"") >&5 + { (eval echo "$as_me:25264: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25222: \$? = $ac_status" >&5 + echo "$as_me:25267: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_type_SLsmg_Color_Type=yes else @@ -25229,7 +25274,7 @@ ac_cv_type_SLsmg_Color_Type=no fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:25232: result: $ac_cv_type_SLsmg_Color_Type" >&5 +echo "$as_me:25277: 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 @@ -25245,13 +25290,13 @@ EOF fi - echo "$as_me:25248: checking for SLtt_Char_Type" >&5 + echo "$as_me:25293: 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 25254 "configure" +#line 25299 "configure" #include "confdefs.h" #include <slang.h> @@ -25267,16 +25312,16 @@ if (sizeof (SLtt_Char_Type)) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:25270: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:25315: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:25273: \$? = $ac_status" >&5 + echo "$as_me:25318: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:25276: \"$ac_try\"") >&5 + { (eval echo "$as_me:25321: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25279: \$? = $ac_status" >&5 + echo "$as_me:25324: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_type_SLtt_Char_Type=yes else @@ -25286,7 +25331,7 @@ ac_cv_type_SLtt_Char_Type=no fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:25289: result: $ac_cv_type_SLtt_Char_Type" >&5 +echo "$as_me:25334: 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 @@ -25306,14 +25351,14 @@ fi ;; esac -echo "$as_me:25309: checking for chtype typedef" >&5 +echo "$as_me:25354: 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 25316 "configure" +#line 25361 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> int @@ -25325,16 +25370,16 @@ chtype foo } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:25328: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:25373: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:25331: \$? = $ac_status" >&5 + echo "$as_me:25376: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:25334: \"$ac_try\"") >&5 + { (eval echo "$as_me:25379: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25337: \$? = $ac_status" >&5 + echo "$as_me:25382: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_chtype_decl=yes else @@ -25344,7 +25389,7 @@ cf_cv_chtype_decl=no fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:25347: result: $cf_cv_chtype_decl" >&5 +echo "$as_me:25392: result: $cf_cv_chtype_decl" >&5 echo "${ECHO_T}$cf_cv_chtype_decl" >&6 if test $cf_cv_chtype_decl = yes ; then @@ -25352,14 +25397,14 @@ cat >>confdefs.h <<\EOF #define HAVE_TYPE_CHTYPE 1 EOF - echo "$as_me:25355: checking if chtype is scalar or struct" >&5 + echo "$as_me:25400: 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 25362 "configure" +#line 25407 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> int @@ -25371,16 +25416,16 @@ chtype foo; long x = foo } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:25374: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:25419: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:25377: \$? = $ac_status" >&5 + echo "$as_me:25422: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:25380: \"$ac_try\"") >&5 + { (eval echo "$as_me:25425: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25383: \$? = $ac_status" >&5 + echo "$as_me:25428: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_chtype_type=scalar else @@ -25390,7 +25435,7 @@ cf_cv_chtype_type=struct fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:25393: result: $cf_cv_chtype_type" >&5 +echo "$as_me:25438: result: $cf_cv_chtype_type" >&5 echo "${ECHO_T}$cf_cv_chtype_type" >&6 if test $cf_cv_chtype_type = scalar ; then @@ -25401,7 +25446,7 @@ EOF fi fi -echo "$as_me:25404: checking if you want the wide-curses features" >&5 +echo "$as_me:25449: 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. @@ -25418,10 +25463,10 @@ else use_wide_curses=$cf_wide_curses fi; -echo "$as_me:25421: result: $use_wide_curses" >&5 +echo "$as_me:25466: result: $use_wide_curses" >&5 echo "${ECHO_T}$use_wide_curses" >&6 -echo "$as_me:25424: checking if color-style code should be used" >&5 +echo "$as_me:25469: 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. @@ -25441,7 +25486,7 @@ fi; case $use_color_style in no) - echo "$as_me:25444: result: no" >&5 + echo "$as_me:25489: result: no" >&5 echo "${ECHO_T}no" >&6 INSTALL_LSS= ;; @@ -25451,10 +25496,10 @@ cat >>confdefs.h <<\EOF #define USE_COLOR_STYLE 1 EOF - echo "$as_me:25454: result: yes" >&5 + echo "$as_me:25499: result: yes" >&5 echo "${ECHO_T}yes" >&6 - echo "$as_me:25457: checking for location of style-sheet file" >&5 + echo "$as_me:25502: 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. @@ -25490,7 +25535,7 @@ case ".$withval" in #(vi withval=`echo $withval | sed -e s%NONE%$cf_path_syntax%` ;; *) - { { echo "$as_me:25493: error: expected a pathname, not \"$withval\"" >&5 + { { echo "$as_me:25538: error: expected a pathname, not \"$withval\"" >&5 echo "$as_me: error: expected a pathname, not \"$withval\"" >&2;} { (exit 1); exit 1; }; } ;; @@ -25499,7 +25544,7 @@ esac fi eval LYNX_LSS_FILE="$withval" - echo "$as_me:25502: result: $LYNX_LSS_FILE" >&5 + echo "$as_me:25547: result: $LYNX_LSS_FILE" >&5 echo "${ECHO_T}$LYNX_LSS_FILE" >&6 test "$LYNX_LSS_FILE" = no && LYNX_LSS_FILE= @@ -25512,7 +25557,7 @@ EOF ;; esac -echo "$as_me:25515: checking for the default configuration-file" >&5 +echo "$as_me:25560: 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. @@ -25548,7 +25593,7 @@ case ".$withval" in #(vi withval=`echo $withval | sed -e s%NONE%$cf_path_syntax%` ;; *) - { { echo "$as_me:25551: error: expected a pathname, not \"$withval\"" >&5 + { { echo "$as_me:25596: error: expected a pathname, not \"$withval\"" >&5 echo "$as_me: error: expected a pathname, not \"$withval\"" >&2;} { (exit 1); exit 1; }; } ;; @@ -25557,7 +25602,7 @@ esac fi eval LYNX_CFG_FILE="$withval" -echo "$as_me:25560: result: $LYNX_CFG_FILE" >&5 +echo "$as_me:25605: result: $LYNX_CFG_FILE" >&5 echo "${ECHO_T}$LYNX_CFG_FILE" >&6 test "$LYNX_CFG_FILE" = no && LYNX_CFG_FILE= @@ -25566,7 +25611,7 @@ cat >>confdefs.h <<EOF #define LYNX_CFG_FILE "$LYNX_CFG_FILE" EOF -echo "$as_me:25569: checking if htmlized lynx.cfg should be built" >&5 +echo "$as_me:25614: 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. @@ -25583,7 +25628,7 @@ else use_htmlized_cfg=no fi; -echo "$as_me:25586: result: $use_htmlized_cfg" >&5 +echo "$as_me:25631: result: $use_htmlized_cfg" >&5 echo "${ECHO_T}$use_htmlized_cfg" >&6 LYNXCFG_MAKE='' @@ -25591,7 +25636,7 @@ if test $use_htmlized_cfg = no ; then LYNXCFG_MAKE='#' fi -echo "$as_me:25594: checking if local doc directory should be linked to help page" >&5 +echo "$as_me:25639: 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. @@ -25608,7 +25653,7 @@ else use_local_docs=no fi; -echo "$as_me:25611: result: $use_local_docs" >&5 +echo "$as_me:25656: result: $use_local_docs" >&5 echo "${ECHO_T}$use_local_docs" >&6 LYNXDOC_MAKE='' @@ -25616,7 +25661,7 @@ if test $use_local_docs = no ; then LYNXDOC_MAKE='#' fi -echo "$as_me:25619: checking for MIME library directory" >&5 +echo "$as_me:25664: 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. @@ -25652,7 +25697,7 @@ case ".$withval" in #(vi withval=`echo $withval | sed -e s%NONE%$cf_path_syntax%` ;; *) - { { echo "$as_me:25655: error: expected a pathname, not \"$withval\"" >&5 + { { echo "$as_me:25700: error: expected a pathname, not \"$withval\"" >&5 echo "$as_me: error: expected a pathname, not \"$withval\"" >&2;} { (exit 1); exit 1; }; } ;; @@ -25661,7 +25706,7 @@ esac fi eval MIME_LIBDIR="$withval" -echo "$as_me:25664: result: $MIME_LIBDIR" >&5 +echo "$as_me:25709: result: $MIME_LIBDIR" >&5 echo "${ECHO_T}$MIME_LIBDIR" >&6 MIME_LIBDIR=`echo "$MIME_LIBDIR" | sed -e 's,/$,,' -e 's,$,/,'` @@ -25669,7 +25714,7 @@ cat >>confdefs.h <<EOF #define MIME_LIBDIR "$MIME_LIBDIR" EOF -echo "$as_me:25672: checking if locale-charset selection logic should be used" >&5 +echo "$as_me:25717: 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. @@ -25686,7 +25731,7 @@ else use_locale_charset=yes fi; -echo "$as_me:25689: result: $use_locale_charset" >&5 +echo "$as_me:25734: result: $use_locale_charset" >&5 echo "${ECHO_T}$use_locale_charset" >&6 test $use_locale_charset != no && cat >>confdefs.h <<\EOF @@ -25695,7 +25740,7 @@ EOF CHARSET_DEFS= -echo "$as_me:25698: checking if you want only a few charsets" >&5 +echo "$as_me:25743: 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. @@ -25707,7 +25752,7 @@ else fi; if test -n "$cf_charsets" ; then - echo "$as_me:25710: result: yes" >&5 + echo "$as_me:25755: result: yes" >&5 echo "${ECHO_T}yes" >&6 cat >>confdefs.h <<\EOF @@ -25721,7 +25766,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}:25724: testing using minimal list of charsets: $cf_min_charsets ..." 1>&5 +echo "${as_me:-configure}:25769: 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'` @@ -25748,28 +25793,28 @@ echo "${as_me:-configure}:25724: testing using minimal list of charsets: $cf_min then test -n "$verbose" && echo " found $cf_charset" 1>&6 -echo "${as_me:-configure}:25751: testing found $cf_charset ..." 1>&5 +echo "${as_me:-configure}:25796: 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}:25757: testing not found $cf_charset ..." 1>&5 +echo "${as_me:-configure}:25802: testing not found $cf_charset ..." 1>&5 fi done else - echo "$as_me:25762: result: no" >&5 + echo "$as_me:25807: result: no" >&5 echo "${ECHO_T}no" >&6 fi -echo "$as_me:25766: checking for ANSI C header files" >&5 +echo "$as_me:25811: 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 25772 "configure" +#line 25817 "configure" #include "confdefs.h" #include <stdlib.h> #include <stdarg.h> @@ -25777,13 +25822,13 @@ else #include <float.h> _ACEOF -if { (eval echo "$as_me:25780: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:25825: \"$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:25786: \$? = $ac_status" >&5 + echo "$as_me:25831: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -25805,7 +25850,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 25808 "configure" +#line 25853 "configure" #include "confdefs.h" #include <string.h> @@ -25823,7 +25868,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 25826 "configure" +#line 25871 "configure" #include "confdefs.h" #include <stdlib.h> @@ -25844,7 +25889,7 @@ if test $ac_cv_header_stdc = yes; then : else cat >conftest.$ac_ext <<_ACEOF -#line 25847 "configure" +#line 25892 "configure" #include "confdefs.h" #include <ctype.h> #if ((' ' & 0x0FF) == 0x020) @@ -25870,15 +25915,15 @@ main () } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:25873: \"$ac_link\"") >&5 +if { (eval echo "$as_me:25918: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:25876: \$? = $ac_status" >&5 + echo "$as_me:25921: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:25878: \"$ac_try\"") >&5 + { (eval echo "$as_me:25923: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25881: \$? = $ac_status" >&5 + echo "$as_me:25926: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -25891,7 +25936,7 @@ rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext fi fi fi -echo "$as_me:25894: result: $ac_cv_header_stdc" >&5 +echo "$as_me:25939: result: $ac_cv_header_stdc" >&5 echo "${ECHO_T}$ac_cv_header_stdc" >&6 if test $ac_cv_header_stdc = yes; then @@ -25901,13 +25946,13 @@ EOF fi -echo "$as_me:25904: checking whether time.h and sys/time.h may both be included" >&5 +echo "$as_me:25949: 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 25910 "configure" +#line 25955 "configure" #include "confdefs.h" #include <sys/types.h> #include <sys/time.h> @@ -25923,16 +25968,16 @@ return 0; } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:25926: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:25971: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:25929: \$? = $ac_status" >&5 + echo "$as_me:25974: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:25932: \"$ac_try\"") >&5 + { (eval echo "$as_me:25977: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25935: \$? = $ac_status" >&5 + echo "$as_me:25980: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_header_time=yes else @@ -25942,7 +25987,7 @@ ac_cv_header_time=no fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:25945: result: $ac_cv_header_time" >&5 +echo "$as_me:25990: result: $ac_cv_header_time" >&5 echo "${ECHO_T}$ac_cv_header_time" >&6 if test $ac_cv_header_time = yes; then @@ -25955,13 +26000,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:25958: checking for $ac_hdr that defines DIR" >&5 +echo "$as_me:26003: 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 25964 "configure" +#line 26009 "configure" #include "confdefs.h" #include <sys/types.h> #include <$ac_hdr> @@ -25976,16 +26021,16 @@ return 0; } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:25979: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:26024: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:25982: \$? = $ac_status" >&5 + echo "$as_me:26027: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:25985: \"$ac_try\"") >&5 + { (eval echo "$as_me:26030: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25988: \$? = $ac_status" >&5 + echo "$as_me:26033: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_Header=yes" else @@ -25995,7 +26040,7 @@ eval "$as_ac_Header=no" fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:25998: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:26043: 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 @@ -26008,7 +26053,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:26011: checking for opendir in -ldir" >&5 + echo "$as_me:26056: 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 @@ -26016,7 +26061,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-ldir $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 26019 "configure" +#line 26064 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -26035,16 +26080,16 @@ opendir (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:26038: \"$ac_link\"") >&5 +if { (eval echo "$as_me:26083: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:26041: \$? = $ac_status" >&5 + echo "$as_me:26086: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:26044: \"$ac_try\"") >&5 + { (eval echo "$as_me:26089: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:26047: \$? = $ac_status" >&5 + echo "$as_me:26092: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_dir_opendir=yes else @@ -26055,14 +26100,14 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:26058: result: $ac_cv_lib_dir_opendir" >&5 +echo "$as_me:26103: 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:26065: checking for opendir in -lx" >&5 + echo "$as_me:26110: 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 @@ -26070,7 +26115,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lx $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 26073 "configure" +#line 26118 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -26089,16 +26134,16 @@ opendir (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:26092: \"$ac_link\"") >&5 +if { (eval echo "$as_me:26137: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:26095: \$? = $ac_status" >&5 + echo "$as_me:26140: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:26098: \"$ac_try\"") >&5 + { (eval echo "$as_me:26143: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:26101: \$? = $ac_status" >&5 + echo "$as_me:26146: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_x_opendir=yes else @@ -26109,7 +26154,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:26112: result: $ac_cv_lib_x_opendir" >&5 +echo "$as_me:26157: 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" @@ -26137,23 +26182,23 @@ for ac_header in \ do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` -echo "$as_me:26140: checking for $ac_header" >&5 +echo "$as_me:26185: 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 26146 "configure" +#line 26191 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:26150: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:26195: \"$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:26156: \$? = $ac_status" >&5 + echo "$as_me:26201: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -26172,7 +26217,7 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:26175: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:26220: 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 @@ -26182,14 +26227,14 @@ EOF fi done -echo "$as_me:26185: checking termio.h and termios.h" >&5 +echo "$as_me:26230: 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 26192 "configure" +#line 26237 "configure" #include "confdefs.h" #if HAVE_TERMIO_H @@ -26207,16 +26252,16 @@ putchar (0x0a) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:26210: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:26255: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:26213: \$? = $ac_status" >&5 + echo "$as_me:26258: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:26216: \"$ac_try\"") >&5 + { (eval echo "$as_me:26261: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:26219: \$? = $ac_status" >&5 + echo "$as_me:26264: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_termio_and_termios=yes else @@ -26227,21 +26272,21 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:26230: result: $cf_cv_termio_and_termios" >&5 +echo "$as_me:26275: 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:26237: checking for sigaction and structs" >&5 +echo "$as_me:26282: 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 26244 "configure" +#line 26289 "configure" #include "confdefs.h" #include <sys/types.h> @@ -26261,16 +26306,16 @@ struct sigaction act; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:26264: \"$ac_link\"") >&5 +if { (eval echo "$as_me:26309: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:26267: \$? = $ac_status" >&5 + echo "$as_me:26312: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:26270: \"$ac_try\"") >&5 + { (eval echo "$as_me:26315: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:26273: \$? = $ac_status" >&5 + echo "$as_me:26318: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_func_sigaction=yes else @@ -26281,7 +26326,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:26284: result: $cf_cv_func_sigaction" >&5 +echo "$as_me:26329: result: $cf_cv_func_sigaction" >&5 echo "${ECHO_T}$cf_cv_func_sigaction" >&6 test "$cf_cv_func_sigaction" = yes && cat >>confdefs.h <<\EOF @@ -26291,23 +26336,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:26294: checking for $ac_header" >&5 +echo "$as_me:26339: 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 26300 "configure" +#line 26345 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:26304: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:26349: \"$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:26310: \$? = $ac_status" >&5 + echo "$as_me:26355: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -26326,7 +26371,7 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:26329: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:26374: 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 @@ -26347,23 +26392,23 @@ else for ac_header in wait.h do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` -echo "$as_me:26350: checking for $ac_header" >&5 +echo "$as_me:26395: 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 26356 "configure" +#line 26401 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:26360: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:26405: \"$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:26366: \$? = $ac_status" >&5 + echo "$as_me:26411: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -26382,7 +26427,7 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:26385: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:26430: 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 @@ -26395,23 +26440,23 @@ done for ac_header in waitstatus.h do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` -echo "$as_me:26398: checking for $ac_header" >&5 +echo "$as_me:26443: 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 26404 "configure" +#line 26449 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:26408: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:26453: \"$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:26414: \$? = $ac_status" >&5 + echo "$as_me:26459: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -26430,7 +26475,7 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:26433: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:26478: 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 @@ -26452,14 +26497,14 @@ cf_wait_headers="$cf_wait_headers fi fi -echo "$as_me:26455: checking for union wait" >&5 +echo "$as_me:26500: 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 26462 "configure" +#line 26507 "configure" #include "confdefs.h" $cf_wait_headers int @@ -26475,16 +26520,16 @@ int x; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:26478: \"$ac_link\"") >&5 +if { (eval echo "$as_me:26523: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:26481: \$? = $ac_status" >&5 + echo "$as_me:26526: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:26484: \"$ac_try\"") >&5 + { (eval echo "$as_me:26529: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:26487: \$? = $ac_status" >&5 + echo "$as_me:26532: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_type_unionwait=no echo compiles ok w/o union wait 1>&5 @@ -26494,7 +26539,7 @@ else cat conftest.$ac_ext >&5 cat >conftest.$ac_ext <<_ACEOF -#line 26497 "configure" +#line 26542 "configure" #include "confdefs.h" $cf_wait_headers int @@ -26514,16 +26559,16 @@ union wait x; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:26517: \"$ac_link\"") >&5 +if { (eval echo "$as_me:26562: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:26520: \$? = $ac_status" >&5 + echo "$as_me:26565: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:26523: \"$ac_try\"") >&5 + { (eval echo "$as_me:26568: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:26526: \$? = $ac_status" >&5 + echo "$as_me:26571: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_type_unionwait=yes echo compiles ok with union wait and possibly macros too 1>&5 @@ -26538,7 +26583,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:26541: result: $cf_cv_type_unionwait" >&5 +echo "$as_me:26586: result: $cf_cv_type_unionwait" >&5 echo "${ECHO_T}$cf_cv_type_unionwait" >&6 test $cf_cv_type_unionwait = yes && cat >>confdefs.h <<\EOF @@ -26547,14 +26592,14 @@ EOF if test $cf_cv_type_unionwait = yes; then - echo "$as_me:26550: checking if union wait can be used as wait-arg" >&5 + echo "$as_me:26595: 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 26557 "configure" +#line 26602 "configure" #include "confdefs.h" $cf_wait_headers int @@ -26566,16 +26611,16 @@ union wait x; wait(&x) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:26569: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:26614: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:26572: \$? = $ac_status" >&5 + echo "$as_me:26617: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:26575: \"$ac_try\"") >&5 + { (eval echo "$as_me:26620: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:26578: \$? = $ac_status" >&5 + echo "$as_me:26623: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_arg_union_wait=yes else @@ -26587,21 +26632,21 @@ rm -f conftest.$ac_objext conftest.$ac_ext fi - echo "$as_me:26590: result: $cf_cv_arg_union_wait" >&5 + echo "$as_me:26635: 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:26597: checking if union wait can be used as waitpid-arg" >&5 + echo "$as_me:26642: 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 26604 "configure" +#line 26649 "configure" #include "confdefs.h" $cf_wait_headers int @@ -26613,16 +26658,16 @@ union wait x; waitpid(0, &x, 0) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:26616: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:26661: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:26619: \$? = $ac_status" >&5 + echo "$as_me:26664: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:26622: \"$ac_try\"") >&5 + { (eval echo "$as_me:26667: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:26625: \$? = $ac_status" >&5 + echo "$as_me:26670: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_arg_union_waitpid=yes else @@ -26634,7 +26679,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext fi - echo "$as_me:26637: result: $cf_cv_arg_union_waitpid" >&5 + echo "$as_me:26682: 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 @@ -26643,13 +26688,13 @@ EOF fi -echo "$as_me:26646: checking for uid_t in sys/types.h" >&5 +echo "$as_me:26691: 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 26652 "configure" +#line 26697 "configure" #include "confdefs.h" #include <sys/types.h> @@ -26663,7 +26708,7 @@ fi rm -rf conftest* fi -echo "$as_me:26666: result: $ac_cv_type_uid_t" >&5 +echo "$as_me:26711: 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 @@ -26677,7 +26722,7 @@ EOF fi -echo "$as_me:26680: checking type of array argument to getgroups" >&5 +echo "$as_me:26725: 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 @@ -26686,7 +26731,7 @@ else ac_cv_type_getgroups=cross else cat >conftest.$ac_ext <<_ACEOF -#line 26689 "configure" +#line 26734 "configure" #include "confdefs.h" /* Thanks to Mike Rendell for this test. */ #include <sys/types.h> @@ -26712,15 +26757,15 @@ main () } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:26715: \"$ac_link\"") >&5 +if { (eval echo "$as_me:26760: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:26718: \$? = $ac_status" >&5 + echo "$as_me:26763: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:26720: \"$ac_try\"") >&5 + { (eval echo "$as_me:26765: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:26723: \$? = $ac_status" >&5 + echo "$as_me:26768: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_type_getgroups=gid_t else @@ -26733,7 +26778,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 26736 "configure" +#line 26781 "configure" #include "confdefs.h" #include <unistd.h> @@ -26748,20 +26793,20 @@ rm -rf conftest* fi fi -echo "$as_me:26751: result: $ac_cv_type_getgroups" >&5 +echo "$as_me:26796: 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:26758: checking for off_t" >&5 +echo "$as_me:26803: 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 26764 "configure" +#line 26809 "configure" #include "confdefs.h" $ac_includes_default int @@ -26776,16 +26821,16 @@ if (sizeof (off_t)) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:26779: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:26824: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:26782: \$? = $ac_status" >&5 + echo "$as_me:26827: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:26785: \"$ac_try\"") >&5 + { (eval echo "$as_me:26830: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:26788: \$? = $ac_status" >&5 + echo "$as_me:26833: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_type_off_t=yes else @@ -26795,7 +26840,7 @@ ac_cv_type_off_t=no fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:26798: result: $ac_cv_type_off_t" >&5 +echo "$as_me:26843: 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 : @@ -26807,13 +26852,13 @@ EOF fi -echo "$as_me:26810: checking for pid_t" >&5 +echo "$as_me:26855: 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 26816 "configure" +#line 26861 "configure" #include "confdefs.h" $ac_includes_default int @@ -26828,16 +26873,16 @@ if (sizeof (pid_t)) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:26831: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:26876: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:26834: \$? = $ac_status" >&5 + echo "$as_me:26879: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:26837: \"$ac_try\"") >&5 + { (eval echo "$as_me:26882: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:26840: \$? = $ac_status" >&5 + echo "$as_me:26885: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_type_pid_t=yes else @@ -26847,7 +26892,7 @@ ac_cv_type_pid_t=no fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:26850: result: $ac_cv_type_pid_t" >&5 +echo "$as_me:26895: 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 : @@ -26859,13 +26904,13 @@ EOF fi -echo "$as_me:26862: checking for uid_t in sys/types.h" >&5 +echo "$as_me:26907: 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 26868 "configure" +#line 26913 "configure" #include "confdefs.h" #include <sys/types.h> @@ -26879,7 +26924,7 @@ fi rm -rf conftest* fi -echo "$as_me:26882: result: $ac_cv_type_uid_t" >&5 +echo "$as_me:26927: 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 @@ -26893,13 +26938,13 @@ EOF fi -echo "$as_me:26896: checking for mode_t" >&5 +echo "$as_me:26941: 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 26902 "configure" +#line 26947 "configure" #include "confdefs.h" $ac_includes_default int @@ -26914,16 +26959,16 @@ if (sizeof (mode_t)) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:26917: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:26962: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:26920: \$? = $ac_status" >&5 + echo "$as_me:26965: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:26923: \"$ac_try\"") >&5 + { (eval echo "$as_me:26968: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:26926: \$? = $ac_status" >&5 + echo "$as_me:26971: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_type_mode_t=yes else @@ -26933,7 +26978,7 @@ ac_cv_type_mode_t=no fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:26936: result: $ac_cv_type_mode_t" >&5 +echo "$as_me:26981: 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 : @@ -26945,13 +26990,13 @@ EOF fi - echo "$as_me:26948: checking for ssize_t" >&5 + echo "$as_me:26993: 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 26954 "configure" +#line 26999 "configure" #include "confdefs.h" $ac_includes_default int @@ -26966,16 +27011,16 @@ if (sizeof (ssize_t)) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:26969: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:27014: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:26972: \$? = $ac_status" >&5 + echo "$as_me:27017: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:26975: \"$ac_try\"") >&5 + { (eval echo "$as_me:27020: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:26978: \$? = $ac_status" >&5 + echo "$as_me:27023: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_type_ssize_t=yes else @@ -26985,7 +27030,7 @@ ac_cv_type_ssize_t=no fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:26988: result: $ac_cv_type_ssize_t" >&5 +echo "$as_me:27033: 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 @@ -27001,13 +27046,13 @@ EOF fi - echo "$as_me:27004: checking for socklen_t" >&5 + echo "$as_me:27049: 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 27010 "configure" +#line 27055 "configure" #include "confdefs.h" #include <sys/types.h> @@ -27025,16 +27070,16 @@ if (sizeof (socklen_t)) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:27028: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:27073: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:27031: \$? = $ac_status" >&5 + echo "$as_me:27076: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:27034: \"$ac_try\"") >&5 + { (eval echo "$as_me:27079: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27037: \$? = $ac_status" >&5 + echo "$as_me:27082: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_type_socklen_t=yes else @@ -27044,7 +27089,7 @@ ac_cv_type_socklen_t=no fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:27047: result: $ac_cv_type_socklen_t" >&5 +echo "$as_me:27092: 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 @@ -27060,7 +27105,7 @@ EOF fi -echo "$as_me:27063: checking for long long type" >&5 +echo "$as_me:27108: 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 @@ -27091,7 +27136,7 @@ _CFEOF rm -f conftest* fi -echo "$as_me:27094: result: $cf_cv_type_long_long" >&5 +echo "$as_me:27139: 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 @@ -27102,14 +27147,14 @@ EOF fi -echo "$as_me:27105: checking for tm.tm_gmtoff" >&5 +echo "$as_me:27150: 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 27112 "configure" +#line 27157 "configure" #include "confdefs.h" #ifdef TIME_WITH_SYS_TIME @@ -27134,16 +27179,16 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:27137: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:27182: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:27140: \$? = $ac_status" >&5 + echo "$as_me:27185: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:27143: \"$ac_try\"") >&5 + { (eval echo "$as_me:27188: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27146: \$? = $ac_status" >&5 + echo "$as_me:27191: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_tm_gmtoff=yes else @@ -27154,20 +27199,20 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:27157: result: $cf_cv_tm_gmtoff" >&5 +echo "$as_me:27202: 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:27164: checking for int" >&5 +echo "$as_me:27209: 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 27170 "configure" +#line 27215 "configure" #include "confdefs.h" $ac_includes_default int @@ -27182,16 +27227,16 @@ if (sizeof (int)) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:27185: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:27230: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:27188: \$? = $ac_status" >&5 + echo "$as_me:27233: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:27191: \"$ac_try\"") >&5 + { (eval echo "$as_me:27236: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27194: \$? = $ac_status" >&5 + echo "$as_me:27239: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_type_int=yes else @@ -27201,10 +27246,10 @@ ac_cv_type_int=no fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:27204: result: $ac_cv_type_int" >&5 +echo "$as_me:27249: result: $ac_cv_type_int" >&5 echo "${ECHO_T}$ac_cv_type_int" >&6 -echo "$as_me:27207: checking size of int" >&5 +echo "$as_me:27252: 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 @@ -27213,7 +27258,7 @@ else if test "$cross_compiling" = yes; then # Depending upon the size, compute the lo and hi bounds. cat >conftest.$ac_ext <<_ACEOF -#line 27216 "configure" +#line 27261 "configure" #include "confdefs.h" $ac_includes_default int @@ -27225,21 +27270,21 @@ int _array_ [1 - 2 * !((sizeof (int)) >= 0)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:27228: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:27273: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:27231: \$? = $ac_status" >&5 + echo "$as_me:27276: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:27234: \"$ac_try\"") >&5 + { (eval echo "$as_me:27279: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27237: \$? = $ac_status" >&5 + echo "$as_me:27282: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_lo=0 ac_mid=0 while :; do cat >conftest.$ac_ext <<_ACEOF -#line 27242 "configure" +#line 27287 "configure" #include "confdefs.h" $ac_includes_default int @@ -27251,16 +27296,16 @@ int _array_ [1 - 2 * !((sizeof (int)) <= $ac_mid)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:27254: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:27299: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:27257: \$? = $ac_status" >&5 + echo "$as_me:27302: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:27260: \"$ac_try\"") >&5 + { (eval echo "$as_me:27305: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27263: \$? = $ac_status" >&5 + echo "$as_me:27308: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_hi=$ac_mid; break else @@ -27276,7 +27321,7 @@ cat conftest.$ac_ext >&5 ac_hi=-1 ac_mid=-1 while :; do cat >conftest.$ac_ext <<_ACEOF -#line 27279 "configure" +#line 27324 "configure" #include "confdefs.h" $ac_includes_default int @@ -27288,16 +27333,16 @@ int _array_ [1 - 2 * !((sizeof (int)) >= $ac_mid)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:27291: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:27336: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:27294: \$? = $ac_status" >&5 + echo "$as_me:27339: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:27297: \"$ac_try\"") >&5 + { (eval echo "$as_me:27342: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27300: \$? = $ac_status" >&5 + echo "$as_me:27345: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_lo=$ac_mid; break else @@ -27313,7 +27358,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 27316 "configure" +#line 27361 "configure" #include "confdefs.h" $ac_includes_default int @@ -27325,16 +27370,16 @@ int _array_ [1 - 2 * !((sizeof (int)) <= $ac_mid)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:27328: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:27373: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:27331: \$? = $ac_status" >&5 + echo "$as_me:27376: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:27334: \"$ac_try\"") >&5 + { (eval echo "$as_me:27379: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27337: \$? = $ac_status" >&5 + echo "$as_me:27382: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_hi=$ac_mid else @@ -27347,12 +27392,12 @@ done ac_cv_sizeof_int=$ac_lo else if test "$cross_compiling" = yes; then - { { echo "$as_me:27350: error: cannot run test program while cross compiling" >&5 + { { echo "$as_me:27395: 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 27355 "configure" +#line 27400 "configure" #include "confdefs.h" $ac_includes_default int @@ -27368,15 +27413,15 @@ fclose (f); } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:27371: \"$ac_link\"") >&5 +if { (eval echo "$as_me:27416: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:27374: \$? = $ac_status" >&5 + echo "$as_me:27419: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:27376: \"$ac_try\"") >&5 + { (eval echo "$as_me:27421: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27379: \$? = $ac_status" >&5 + echo "$as_me:27424: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_sizeof_int=`cat conftest.val` else @@ -27392,7 +27437,7 @@ else ac_cv_sizeof_int=0 fi fi -echo "$as_me:27395: result: $ac_cv_sizeof_int" >&5 +echo "$as_me:27440: 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 @@ -27400,23 +27445,23 @@ EOF if test "${ac_cv_type_int:+set}" = set; then if test "${ac_cv_sizeof_int:+set}" != set; then - { echo "$as_me:27403: WARNING: using 4 for sizeof int" >&5 + { echo "$as_me:27448: 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:27407: WARNING: sizeof int not found, using 4" >&5 + { echo "$as_me:27452: 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:27413: checking for long" >&5 +echo "$as_me:27458: 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 27419 "configure" +#line 27464 "configure" #include "confdefs.h" $ac_includes_default int @@ -27431,16 +27476,16 @@ if (sizeof (long)) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:27434: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:27479: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:27437: \$? = $ac_status" >&5 + echo "$as_me:27482: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:27440: \"$ac_try\"") >&5 + { (eval echo "$as_me:27485: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27443: \$? = $ac_status" >&5 + echo "$as_me:27488: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_type_long=yes else @@ -27450,10 +27495,10 @@ ac_cv_type_long=no fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:27453: result: $ac_cv_type_long" >&5 +echo "$as_me:27498: result: $ac_cv_type_long" >&5 echo "${ECHO_T}$ac_cv_type_long" >&6 -echo "$as_me:27456: checking size of long" >&5 +echo "$as_me:27501: 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 @@ -27462,7 +27507,7 @@ else if test "$cross_compiling" = yes; then # Depending upon the size, compute the lo and hi bounds. cat >conftest.$ac_ext <<_ACEOF -#line 27465 "configure" +#line 27510 "configure" #include "confdefs.h" $ac_includes_default int @@ -27474,21 +27519,21 @@ int _array_ [1 - 2 * !((sizeof (long)) >= 0)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:27477: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:27522: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:27480: \$? = $ac_status" >&5 + echo "$as_me:27525: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:27483: \"$ac_try\"") >&5 + { (eval echo "$as_me:27528: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27486: \$? = $ac_status" >&5 + echo "$as_me:27531: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_lo=0 ac_mid=0 while :; do cat >conftest.$ac_ext <<_ACEOF -#line 27491 "configure" +#line 27536 "configure" #include "confdefs.h" $ac_includes_default int @@ -27500,16 +27545,16 @@ int _array_ [1 - 2 * !((sizeof (long)) <= $ac_mid)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:27503: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:27548: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:27506: \$? = $ac_status" >&5 + echo "$as_me:27551: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:27509: \"$ac_try\"") >&5 + { (eval echo "$as_me:27554: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27512: \$? = $ac_status" >&5 + echo "$as_me:27557: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_hi=$ac_mid; break else @@ -27525,7 +27570,7 @@ cat conftest.$ac_ext >&5 ac_hi=-1 ac_mid=-1 while :; do cat >conftest.$ac_ext <<_ACEOF -#line 27528 "configure" +#line 27573 "configure" #include "confdefs.h" $ac_includes_default int @@ -27537,16 +27582,16 @@ int _array_ [1 - 2 * !((sizeof (long)) >= $ac_mid)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:27540: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:27585: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:27543: \$? = $ac_status" >&5 + echo "$as_me:27588: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:27546: \"$ac_try\"") >&5 + { (eval echo "$as_me:27591: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27549: \$? = $ac_status" >&5 + echo "$as_me:27594: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_lo=$ac_mid; break else @@ -27562,7 +27607,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 27565 "configure" +#line 27610 "configure" #include "confdefs.h" $ac_includes_default int @@ -27574,16 +27619,16 @@ int _array_ [1 - 2 * !((sizeof (long)) <= $ac_mid)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:27577: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:27622: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:27580: \$? = $ac_status" >&5 + echo "$as_me:27625: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:27583: \"$ac_try\"") >&5 + { (eval echo "$as_me:27628: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27586: \$? = $ac_status" >&5 + echo "$as_me:27631: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_hi=$ac_mid else @@ -27596,12 +27641,12 @@ done ac_cv_sizeof_long=$ac_lo else if test "$cross_compiling" = yes; then - { { echo "$as_me:27599: error: cannot run test program while cross compiling" >&5 + { { echo "$as_me:27644: 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 27604 "configure" +#line 27649 "configure" #include "confdefs.h" $ac_includes_default int @@ -27617,15 +27662,15 @@ fclose (f); } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:27620: \"$ac_link\"") >&5 +if { (eval echo "$as_me:27665: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:27623: \$? = $ac_status" >&5 + echo "$as_me:27668: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:27625: \"$ac_try\"") >&5 + { (eval echo "$as_me:27670: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27628: \$? = $ac_status" >&5 + echo "$as_me:27673: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_sizeof_long=`cat conftest.val` else @@ -27641,7 +27686,7 @@ else ac_cv_sizeof_long=0 fi fi -echo "$as_me:27644: result: $ac_cv_sizeof_long" >&5 +echo "$as_me:27689: 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 @@ -27649,23 +27694,23 @@ EOF if test "${ac_cv_type_long:+set}" = set; then if test "${ac_cv_sizeof_long:+set}" != set; then - { echo "$as_me:27652: WARNING: using 4 for sizeof long" >&5 + { echo "$as_me:27697: 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:27656: WARNING: sizeof long not found, using 4" >&5 + { echo "$as_me:27701: 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:27662: checking for off_t" >&5 +echo "$as_me:27707: 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 27668 "configure" +#line 27713 "configure" #include "confdefs.h" $ac_includes_default int @@ -27680,16 +27725,16 @@ if (sizeof (off_t)) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:27683: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:27728: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:27686: \$? = $ac_status" >&5 + echo "$as_me:27731: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:27689: \"$ac_try\"") >&5 + { (eval echo "$as_me:27734: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27692: \$? = $ac_status" >&5 + echo "$as_me:27737: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_type_off_t=yes else @@ -27699,10 +27744,10 @@ ac_cv_type_off_t=no fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:27702: result: $ac_cv_type_off_t" >&5 +echo "$as_me:27747: result: $ac_cv_type_off_t" >&5 echo "${ECHO_T}$ac_cv_type_off_t" >&6 -echo "$as_me:27705: checking size of off_t" >&5 +echo "$as_me:27750: 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 @@ -27711,7 +27756,7 @@ else if test "$cross_compiling" = yes; then # Depending upon the size, compute the lo and hi bounds. cat >conftest.$ac_ext <<_ACEOF -#line 27714 "configure" +#line 27759 "configure" #include "confdefs.h" $ac_includes_default int @@ -27723,21 +27768,21 @@ int _array_ [1 - 2 * !((sizeof (off_t)) >= 0)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:27726: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:27771: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:27729: \$? = $ac_status" >&5 + echo "$as_me:27774: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:27732: \"$ac_try\"") >&5 + { (eval echo "$as_me:27777: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27735: \$? = $ac_status" >&5 + echo "$as_me:27780: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_lo=0 ac_mid=0 while :; do cat >conftest.$ac_ext <<_ACEOF -#line 27740 "configure" +#line 27785 "configure" #include "confdefs.h" $ac_includes_default int @@ -27749,16 +27794,16 @@ int _array_ [1 - 2 * !((sizeof (off_t)) <= $ac_mid)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:27752: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:27797: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:27755: \$? = $ac_status" >&5 + echo "$as_me:27800: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:27758: \"$ac_try\"") >&5 + { (eval echo "$as_me:27803: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27761: \$? = $ac_status" >&5 + echo "$as_me:27806: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_hi=$ac_mid; break else @@ -27774,7 +27819,7 @@ cat conftest.$ac_ext >&5 ac_hi=-1 ac_mid=-1 while :; do cat >conftest.$ac_ext <<_ACEOF -#line 27777 "configure" +#line 27822 "configure" #include "confdefs.h" $ac_includes_default int @@ -27786,16 +27831,16 @@ int _array_ [1 - 2 * !((sizeof (off_t)) >= $ac_mid)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:27789: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:27834: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:27792: \$? = $ac_status" >&5 + echo "$as_me:27837: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:27795: \"$ac_try\"") >&5 + { (eval echo "$as_me:27840: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27798: \$? = $ac_status" >&5 + echo "$as_me:27843: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_lo=$ac_mid; break else @@ -27811,7 +27856,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 27814 "configure" +#line 27859 "configure" #include "confdefs.h" $ac_includes_default int @@ -27823,16 +27868,16 @@ int _array_ [1 - 2 * !((sizeof (off_t)) <= $ac_mid)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:27826: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:27871: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:27829: \$? = $ac_status" >&5 + echo "$as_me:27874: \$? = $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:27877: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27835: \$? = $ac_status" >&5 + echo "$as_me:27880: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_hi=$ac_mid else @@ -27845,12 +27890,12 @@ done ac_cv_sizeof_off_t=$ac_lo else if test "$cross_compiling" = yes; then - { { echo "$as_me:27848: error: cannot run test program while cross compiling" >&5 + { { echo "$as_me:27893: 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 27853 "configure" +#line 27898 "configure" #include "confdefs.h" $ac_includes_default int @@ -27866,15 +27911,15 @@ fclose (f); } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:27869: \"$ac_link\"") >&5 +if { (eval echo "$as_me:27914: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:27872: \$? = $ac_status" >&5 + echo "$as_me:27917: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:27874: \"$ac_try\"") >&5 + { (eval echo "$as_me:27919: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27877: \$? = $ac_status" >&5 + echo "$as_me:27922: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_sizeof_off_t=`cat conftest.val` else @@ -27890,7 +27935,7 @@ else ac_cv_sizeof_off_t=0 fi fi -echo "$as_me:27893: result: $ac_cv_sizeof_off_t" >&5 +echo "$as_me:27938: 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 @@ -27898,23 +27943,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:27901: WARNING: using 4 for sizeof off_t" >&5 + { echo "$as_me:27946: 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:27905: WARNING: sizeof off_t not found, using 4" >&5 + { echo "$as_me:27950: 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:27911: checking for time_t" >&5 +echo "$as_me:27956: 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 27917 "configure" +#line 27962 "configure" #include "confdefs.h" $ac_includes_default int @@ -27929,16 +27974,16 @@ if (sizeof (time_t)) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:27932: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:27977: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:27935: \$? = $ac_status" >&5 + echo "$as_me:27980: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:27938: \"$ac_try\"") >&5 + { (eval echo "$as_me:27983: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27941: \$? = $ac_status" >&5 + echo "$as_me:27986: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_type_time_t=yes else @@ -27948,10 +27993,10 @@ ac_cv_type_time_t=no fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:27951: result: $ac_cv_type_time_t" >&5 +echo "$as_me:27996: result: $ac_cv_type_time_t" >&5 echo "${ECHO_T}$ac_cv_type_time_t" >&6 -echo "$as_me:27954: checking size of time_t" >&5 +echo "$as_me:27999: 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 @@ -27960,7 +28005,7 @@ else if test "$cross_compiling" = yes; then # Depending upon the size, compute the lo and hi bounds. cat >conftest.$ac_ext <<_ACEOF -#line 27963 "configure" +#line 28008 "configure" #include "confdefs.h" $ac_includes_default int @@ -27972,21 +28017,21 @@ int _array_ [1 - 2 * !((sizeof (time_t)) >= 0)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:27975: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:28020: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:27978: \$? = $ac_status" >&5 + echo "$as_me:28023: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:27981: \"$ac_try\"") >&5 + { (eval echo "$as_me:28026: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27984: \$? = $ac_status" >&5 + echo "$as_me:28029: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_lo=0 ac_mid=0 while :; do cat >conftest.$ac_ext <<_ACEOF -#line 27989 "configure" +#line 28034 "configure" #include "confdefs.h" $ac_includes_default int @@ -27998,16 +28043,16 @@ int _array_ [1 - 2 * !((sizeof (time_t)) <= $ac_mid)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:28001: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:28046: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:28004: \$? = $ac_status" >&5 + echo "$as_me:28049: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:28007: \"$ac_try\"") >&5 + { (eval echo "$as_me:28052: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28010: \$? = $ac_status" >&5 + echo "$as_me:28055: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_hi=$ac_mid; break else @@ -28023,7 +28068,7 @@ cat conftest.$ac_ext >&5 ac_hi=-1 ac_mid=-1 while :; do cat >conftest.$ac_ext <<_ACEOF -#line 28026 "configure" +#line 28071 "configure" #include "confdefs.h" $ac_includes_default int @@ -28035,16 +28080,16 @@ int _array_ [1 - 2 * !((sizeof (time_t)) >= $ac_mid)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:28038: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:28083: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:28041: \$? = $ac_status" >&5 + echo "$as_me:28086: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:28044: \"$ac_try\"") >&5 + { (eval echo "$as_me:28089: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28047: \$? = $ac_status" >&5 + echo "$as_me:28092: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_lo=$ac_mid; break else @@ -28060,7 +28105,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 28063 "configure" +#line 28108 "configure" #include "confdefs.h" $ac_includes_default int @@ -28072,16 +28117,16 @@ int _array_ [1 - 2 * !((sizeof (time_t)) <= $ac_mid)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:28075: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:28120: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:28078: \$? = $ac_status" >&5 + echo "$as_me:28123: \$? = $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:28126: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28084: \$? = $ac_status" >&5 + echo "$as_me:28129: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_hi=$ac_mid else @@ -28094,12 +28139,12 @@ done ac_cv_sizeof_time_t=$ac_lo else if test "$cross_compiling" = yes; then - { { echo "$as_me:28097: error: cannot run test program while cross compiling" >&5 + { { echo "$as_me:28142: 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 28102 "configure" +#line 28147 "configure" #include "confdefs.h" $ac_includes_default int @@ -28115,15 +28160,15 @@ fclose (f); } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:28118: \"$ac_link\"") >&5 +if { (eval echo "$as_me:28163: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:28121: \$? = $ac_status" >&5 + echo "$as_me:28166: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:28123: \"$ac_try\"") >&5 + { (eval echo "$as_me:28168: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28126: \$? = $ac_status" >&5 + echo "$as_me:28171: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_sizeof_time_t=`cat conftest.val` else @@ -28139,7 +28184,7 @@ else ac_cv_sizeof_time_t=0 fi fi -echo "$as_me:28142: result: $ac_cv_sizeof_time_t" >&5 +echo "$as_me:28187: 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 @@ -28147,23 +28192,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:28150: WARNING: using 4 for sizeof time_t" >&5 + { echo "$as_me:28195: 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:28154: WARNING: sizeof time_t not found, using 4" >&5 + { echo "$as_me:28199: 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:28160: checking for intptr_t" >&5 +echo "$as_me:28205: 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 28166 "configure" +#line 28211 "configure" #include "confdefs.h" $ac_includes_default int @@ -28178,16 +28223,16 @@ if (sizeof (intptr_t)) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:28181: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:28226: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:28184: \$? = $ac_status" >&5 + echo "$as_me:28229: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:28187: \"$ac_try\"") >&5 + { (eval echo "$as_me:28232: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28190: \$? = $ac_status" >&5 + echo "$as_me:28235: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_type_intptr_t=yes else @@ -28197,7 +28242,7 @@ ac_cv_type_intptr_t=no fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:28200: result: $ac_cv_type_intptr_t" >&5 +echo "$as_me:28245: 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 : @@ -28211,13 +28256,13 @@ fi # The Ultrix 4.2 mips builtin alloca declared by alloca.h only works # for constant arguments. Useless! -echo "$as_me:28214: checking for working alloca.h" >&5 +echo "$as_me:28259: 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 28220 "configure" +#line 28265 "configure" #include "confdefs.h" #include <alloca.h> int @@ -28229,16 +28274,16 @@ char *p = (char *) alloca (2 * sizeof (int)); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:28232: \"$ac_link\"") >&5 +if { (eval echo "$as_me:28277: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:28235: \$? = $ac_status" >&5 + echo "$as_me:28280: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:28238: \"$ac_try\"") >&5 + { (eval echo "$as_me:28283: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28241: \$? = $ac_status" >&5 + echo "$as_me:28286: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_working_alloca_h=yes else @@ -28248,7 +28293,7 @@ ac_cv_working_alloca_h=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:28251: result: $ac_cv_working_alloca_h" >&5 +echo "$as_me:28296: 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 @@ -28258,13 +28303,13 @@ EOF fi -echo "$as_me:28261: checking for alloca" >&5 +echo "$as_me:28306: 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 28267 "configure" +#line 28312 "configure" #include "confdefs.h" #ifdef __GNUC__ # define alloca __builtin_alloca @@ -28296,16 +28341,16 @@ char *p = (char *) alloca (1); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:28299: \"$ac_link\"") >&5 +if { (eval echo "$as_me:28344: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:28302: \$? = $ac_status" >&5 + echo "$as_me:28347: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:28305: \"$ac_try\"") >&5 + { (eval echo "$as_me:28350: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28308: \$? = $ac_status" >&5 + echo "$as_me:28353: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_alloca_works=yes else @@ -28315,7 +28360,7 @@ ac_cv_func_alloca_works=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:28318: result: $ac_cv_func_alloca_works" >&5 +echo "$as_me:28363: 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 @@ -28336,13 +28381,13 @@ cat >>confdefs.h <<\EOF #define C_ALLOCA 1 EOF -echo "$as_me:28339: checking whether \`alloca.c' needs Cray hooks" >&5 +echo "$as_me:28384: 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 28345 "configure" +#line 28390 "configure" #include "confdefs.h" #if defined(CRAY) && ! defined(CRAY2) webecray @@ -28360,18 +28405,18 @@ fi rm -rf conftest* fi -echo "$as_me:28363: result: $ac_cv_os_cray" >&5 +echo "$as_me:28408: 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:28368: checking for $ac_func" >&5 +echo "$as_me:28413: 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 28374 "configure" +#line 28419 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. */ @@ -28402,16 +28447,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:28405: \"$ac_link\"") >&5 +if { (eval echo "$as_me:28450: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:28408: \$? = $ac_status" >&5 + echo "$as_me:28453: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:28411: \"$ac_try\"") >&5 + { (eval echo "$as_me:28456: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28414: \$? = $ac_status" >&5 + echo "$as_me:28459: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else @@ -28421,7 +28466,7 @@ eval "$as_ac_var=no" fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:28424: result: `eval echo '${'$as_ac_var'}'`" >&5 +echo "$as_me:28469: 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 @@ -28435,7 +28480,7 @@ fi done fi -echo "$as_me:28438: checking stack direction for C alloca" >&5 +echo "$as_me:28483: 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 @@ -28444,7 +28489,7 @@ else ac_cv_c_stack_direction=0 else cat >conftest.$ac_ext <<_ACEOF -#line 28447 "configure" +#line 28492 "configure" #include "confdefs.h" int find_stack_direction () @@ -28467,15 +28512,15 @@ main () } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:28470: \"$ac_link\"") >&5 +if { (eval echo "$as_me:28515: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:28473: \$? = $ac_status" >&5 + echo "$as_me:28518: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:28475: \"$ac_try\"") >&5 + { (eval echo "$as_me:28520: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28478: \$? = $ac_status" >&5 + echo "$as_me:28523: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_c_stack_direction=1 else @@ -28487,7 +28532,7 @@ fi rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext fi fi -echo "$as_me:28490: result: $ac_cv_c_stack_direction" >&5 +echo "$as_me:28535: result: $ac_cv_c_stack_direction" >&5 echo "${ECHO_T}$ac_cv_c_stack_direction" >&6 cat >>confdefs.h <<EOF @@ -28499,23 +28544,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:28502: checking for $ac_header" >&5 +echo "$as_me:28547: 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 28508 "configure" +#line 28553 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:28512: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:28557: \"$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:28518: \$? = $ac_status" >&5 + echo "$as_me:28563: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -28534,7 +28579,7 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:28537: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:28582: 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 @@ -28547,13 +28592,13 @@ done for ac_func in fork vfork do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` -echo "$as_me:28550: checking for $ac_func" >&5 +echo "$as_me:28595: 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 28556 "configure" +#line 28601 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. */ @@ -28584,16 +28629,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:28587: \"$ac_link\"") >&5 +if { (eval echo "$as_me:28632: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:28590: \$? = $ac_status" >&5 + echo "$as_me:28635: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:28593: \"$ac_try\"") >&5 + { (eval echo "$as_me:28638: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28596: \$? = $ac_status" >&5 + echo "$as_me:28641: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else @@ -28603,7 +28648,7 @@ eval "$as_ac_var=no" fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:28606: result: `eval echo '${'$as_ac_var'}'`" >&5 +echo "$as_me:28651: 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 @@ -28615,7 +28660,7 @@ done ac_cv_func_fork_works=$ac_cv_func_fork if test "x$ac_cv_func_fork" = xyes; then - echo "$as_me:28618: checking for working fork" >&5 + echo "$as_me:28663: 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 @@ -28638,15 +28683,15 @@ else } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:28641: \"$ac_link\"") >&5 +if { (eval echo "$as_me:28686: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:28644: \$? = $ac_status" >&5 + echo "$as_me:28689: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:28646: \"$ac_try\"") >&5 + { (eval echo "$as_me:28691: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28649: \$? = $ac_status" >&5 + echo "$as_me:28694: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_fork_works=yes else @@ -28658,7 +28703,7 @@ fi rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext fi fi -echo "$as_me:28661: result: $ac_cv_func_fork_works" >&5 +echo "$as_me:28706: result: $ac_cv_func_fork_works" >&5 echo "${ECHO_T}$ac_cv_func_fork_works" >&6 fi @@ -28672,12 +28717,12 @@ if test "x$ac_cv_func_fork_works" = xcross; then ac_cv_func_fork_works=yes ;; esac - { echo "$as_me:28675: WARNING: CROSS: Result $ac_cv_func_fork_works guessed due to cross-compiling." >&5 + { echo "$as_me:28720: 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:28680: checking for working vfork" >&5 + echo "$as_me:28725: 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 @@ -28686,7 +28731,7 @@ else ac_cv_func_vfork_works=cross else cat >conftest.$ac_ext <<_ACEOF -#line 28689 "configure" +#line 28734 "configure" #include "confdefs.h" /* Thanks to Paul Eggert for this test. */ #include <stdio.h> @@ -28783,15 +28828,15 @@ main () } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:28786: \"$ac_link\"") >&5 +if { (eval echo "$as_me:28831: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:28789: \$? = $ac_status" >&5 + echo "$as_me:28834: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:28791: \"$ac_try\"") >&5 + { (eval echo "$as_me:28836: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28794: \$? = $ac_status" >&5 + echo "$as_me:28839: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_vfork_works=yes else @@ -28803,13 +28848,13 @@ fi rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext fi fi -echo "$as_me:28806: result: $ac_cv_func_vfork_works" >&5 +echo "$as_me:28851: 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:28812: WARNING: CROSS: Result $ac_cv_func_vfork_works guessed due to cross-compiling." >&5 + { echo "$as_me:28857: 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 @@ -28834,14 +28879,14 @@ EOF fi -echo "$as_me:28837: checking if we should use fcntl or ioctl" >&5 +echo "$as_me:28882: 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 28844 "configure" +#line 28889 "configure" #include "confdefs.h" #include <sys/types.h> @@ -28858,16 +28903,16 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:28861: \"$ac_link\"") >&5 +if { (eval echo "$as_me:28906: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:28864: \$? = $ac_status" >&5 + echo "$as_me:28909: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:28867: \"$ac_try\"") >&5 + { (eval echo "$as_me:28912: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28870: \$? = $ac_status" >&5 + echo "$as_me:28915: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_fionbio=ioctl else @@ -28875,7 +28920,7 @@ else cat conftest.$ac_ext >&5 cat >conftest.$ac_ext <<_ACEOF -#line 28878 "configure" +#line 28923 "configure" #include "confdefs.h" #include <sys/types.h> @@ -28897,16 +28942,16 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:28900: \"$ac_link\"") >&5 +if { (eval echo "$as_me:28945: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:28903: \$? = $ac_status" >&5 + echo "$as_me:28948: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:28906: \"$ac_try\"") >&5 + { (eval echo "$as_me:28951: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28909: \$? = $ac_status" >&5 + echo "$as_me:28954: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_fionbio=fcntl else @@ -28919,21 +28964,21 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:28922: result: $cf_cv_fionbio" >&5 +echo "$as_me:28967: 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:28929: checking for broken/missing definition of remove" >&5 +echo "$as_me:28974: 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 28936 "configure" +#line 28981 "configure" #include "confdefs.h" #include <stdio.h> int @@ -28945,23 +28990,23 @@ remove("dummy") } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:28948: \"$ac_link\"") >&5 +if { (eval echo "$as_me:28993: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:28951: \$? = $ac_status" >&5 + echo "$as_me:28996: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:28954: \"$ac_try\"") >&5 + { (eval echo "$as_me:28999: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28957: \$? = $ac_status" >&5 + echo "$as_me:29002: \$? = $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 28964 "configure" +#line 29009 "configure" #include "confdefs.h" #include <stdio.h> int __unlink(name) { return unlink(name); } @@ -28974,16 +29019,16 @@ remove("dummy") } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:28977: \"$ac_link\"") >&5 +if { (eval echo "$as_me:29022: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:28980: \$? = $ac_status" >&5 + echo "$as_me:29025: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:28983: \"$ac_try\"") >&5 + { (eval echo "$as_me:29028: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28986: \$? = $ac_status" >&5 + echo "$as_me:29031: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_baddef_remove=yes else @@ -28998,21 +29043,21 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:29001: result: $cf_cv_baddef_remove" >&5 +echo "$as_me:29046: 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:29008: checking for lstat" >&5 +echo "$as_me:29053: 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 29015 "configure" +#line 29060 "configure" #include "confdefs.h" #include <sys/types.h> @@ -29026,16 +29071,16 @@ lstat(".", (struct stat *)0) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:29029: \"$ac_link\"") >&5 +if { (eval echo "$as_me:29074: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:29032: \$? = $ac_status" >&5 + echo "$as_me:29077: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:29035: \"$ac_try\"") >&5 + { (eval echo "$as_me:29080: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:29038: \$? = $ac_status" >&5 + echo "$as_me:29083: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_lstat=yes else @@ -29047,7 +29092,7 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:29050: result: $ac_cv_func_lstat " >&5 +echo "$as_me:29095: result: $ac_cv_func_lstat " >&5 echo "${ECHO_T}$ac_cv_func_lstat " >&6 if test $ac_cv_func_lstat = yes; then @@ -29082,13 +29127,13 @@ for ac_func in \ do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` -echo "$as_me:29085: checking for $ac_func" >&5 +echo "$as_me:29130: 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 29091 "configure" +#line 29136 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. */ @@ -29119,16 +29164,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:29122: \"$ac_link\"") >&5 +if { (eval echo "$as_me:29167: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:29125: \$? = $ac_status" >&5 + echo "$as_me:29170: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:29128: \"$ac_try\"") >&5 + { (eval echo "$as_me:29173: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:29131: \$? = $ac_status" >&5 + echo "$as_me:29176: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else @@ -29138,7 +29183,7 @@ eval "$as_ac_var=no" fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:29141: result: `eval echo '${'$as_ac_var'}'`" >&5 +echo "$as_me:29186: 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 @@ -29154,13 +29199,13 @@ for ac_func in \ do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` -echo "$as_me:29157: checking for $ac_func" >&5 +echo "$as_me:29202: 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 29163 "configure" +#line 29208 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. */ @@ -29191,16 +29236,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:29194: \"$ac_link\"") >&5 +if { (eval echo "$as_me:29239: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:29197: \$? = $ac_status" >&5 + echo "$as_me:29242: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:29200: \"$ac_try\"") >&5 + { (eval echo "$as_me:29245: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:29203: \$? = $ac_status" >&5 + echo "$as_me:29248: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else @@ -29210,7 +29255,7 @@ eval "$as_ac_var=no" fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:29213: result: `eval echo '${'$as_ac_var'}'`" >&5 +echo "$as_me:29258: 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 @@ -29222,7 +29267,7 @@ else fi done -echo "$as_me:29225: checking for random-integer functions" >&5 +echo "$as_me:29270: 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 @@ -29242,7 +29287,7 @@ do esac cat >conftest.$ac_ext <<_ACEOF -#line 29245 "configure" +#line 29290 "configure" #include "confdefs.h" #ifdef HAVE_STDLIB_H @@ -29261,16 +29306,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:29264: \"$ac_link\"") >&5 +if { (eval echo "$as_me:29309: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:29267: \$? = $ac_status" >&5 + echo "$as_me:29312: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:29270: \"$ac_try\"") >&5 + { (eval echo "$as_me:29315: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:29273: \$? = $ac_status" >&5 + echo "$as_me:29318: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_srand_func=$cf_func break @@ -29282,10 +29327,10 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext done fi -echo "$as_me:29285: result: $cf_cv_srand_func" >&5 +echo "$as_me:29330: 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:29288: checking for range of random-integers" >&5 + echo "$as_me:29333: 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 @@ -29306,7 +29351,7 @@ else ;; esac cat >conftest.$ac_ext <<_ACEOF -#line 29309 "configure" +#line 29354 "configure" #include "confdefs.h" #ifdef HAVE_STDLIB_H @@ -29325,16 +29370,16 @@ long x = $cf_cv_rand_max } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:29328: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:29373: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:29331: \$? = $ac_status" >&5 + echo "$as_me:29376: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:29334: \"$ac_try\"") >&5 + { (eval echo "$as_me:29379: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:29337: \$? = $ac_status" >&5 + echo "$as_me:29382: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -29345,15 +29390,15 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:29348: result: $cf_cv_rand_max" >&5 +echo "$as_me:29393: result: $cf_cv_rand_max" >&5 echo "${ECHO_T}$cf_cv_rand_max" >&6 case $cf_cv_srand_func in */arc4random) - echo "$as_me:29353: checking if <bsd/stdlib.h> should be included" >&5 + echo "$as_me:29398: 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 29356 "configure" +#line 29401 "configure" #include "confdefs.h" #include <bsd/stdlib.h> int @@ -29366,23 +29411,23 @@ void *arc4random(int); } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:29369: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:29414: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:29372: \$? = $ac_status" >&5 + echo "$as_me:29417: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:29375: \"$ac_try\"") >&5 + { (eval echo "$as_me:29420: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:29378: \$? = $ac_status" >&5 + echo "$as_me:29423: \$? = $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 29385 "configure" +#line 29430 "configure" #include "confdefs.h" #include <bsd/stdlib.h> int @@ -29394,16 +29439,16 @@ unsigned x = arc4random() } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:29397: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:29442: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:29400: \$? = $ac_status" >&5 + echo "$as_me:29445: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:29403: \"$ac_try\"") >&5 + { (eval echo "$as_me:29448: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:29406: \$? = $ac_status" >&5 + echo "$as_me:29451: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_bsd_stdlib_h=yes else @@ -29414,7 +29459,7 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi rm -f conftest.$ac_objext conftest.$ac_ext - echo "$as_me:29417: result: $cf_bsd_stdlib_h" >&5 + echo "$as_me:29462: result: $cf_bsd_stdlib_h" >&5 echo "${ECHO_T}$cf_bsd_stdlib_h" >&6 if test "$cf_bsd_stdlib_h" = yes then @@ -29424,10 +29469,10 @@ cat >>confdefs.h <<\EOF EOF else - echo "$as_me:29427: checking if <bsd/random.h> should be included" >&5 + echo "$as_me:29472: 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 29430 "configure" +#line 29475 "configure" #include "confdefs.h" #include <bsd/random.h> int @@ -29440,23 +29485,23 @@ void *arc4random(int); } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:29443: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:29488: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:29446: \$? = $ac_status" >&5 + echo "$as_me:29491: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:29449: \"$ac_try\"") >&5 + { (eval echo "$as_me:29494: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:29452: \$? = $ac_status" >&5 + echo "$as_me:29497: \$? = $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 29459 "configure" +#line 29504 "configure" #include "confdefs.h" #include <bsd/random.h> int @@ -29468,16 +29513,16 @@ unsigned x = arc4random() } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:29471: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:29516: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:29474: \$? = $ac_status" >&5 + echo "$as_me:29519: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:29477: \"$ac_try\"") >&5 + { (eval echo "$as_me:29522: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:29480: \$? = $ac_status" >&5 + echo "$as_me:29525: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_bsd_random_h=yes else @@ -29488,7 +29533,7 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi rm -f conftest.$ac_objext conftest.$ac_ext - echo "$as_me:29491: result: $cf_bsd_random_h" >&5 + echo "$as_me:29536: result: $cf_bsd_random_h" >&5 echo "${ECHO_T}$cf_bsd_random_h" >&6 if test "$cf_bsd_random_h" = yes then @@ -29498,7 +29543,7 @@ cat >>confdefs.h <<\EOF EOF else - { echo "$as_me:29501: WARNING: no header file found for arc4random" >&5 + { echo "$as_me:29546: WARNING: no header file found for arc4random" >&5 echo "$as_me: WARNING: no header file found for arc4random" >&2;} fi fi @@ -29530,16 +29575,126 @@ EOF fi +for ac_func in sleep +do + +echo "$as_me:29581: 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 29587 "configure" +#include "confdefs.h" + +#ifdef HAVE_STDLIB_H +#include <stdlib.h> +#endif +#ifdef HAVE_UNISTD_H +#include <unistd.h> +#endif + +int +main () +{ +#ifndef $ac_func +extern int $ac_func(); +#endif + ; + return 0; +} +_ACEOF +rm -f conftest.$ac_objext +if { (eval echo "$as_me:29608: \"$ac_compile\"") >&5 + (eval $ac_compile) 2>&5 + ac_status=$? + echo "$as_me:29611: \$? = $ac_status" >&5 + (exit $ac_status); } && + { ac_try='test -s conftest.$ac_objext' + { (eval echo "$as_me:29614: \"$ac_try\"") >&5 + (eval $ac_try) 2>&5 + ac_status=$? + echo "$as_me:29617: \$? = $ac_status" >&5 + (exit $ac_status); }; }; then + +cat >conftest.$ac_ext <<_ACEOF +#line 29621 "configure" +#include "confdefs.h" + +#ifdef HAVE_STDLIB_H +#include <stdlib.h> +#endif +#ifdef HAVE_UNISTD_H +#include <unistd.h> +#endif + +int +main () +{ +#ifndef $ac_func +int (*p)() = $ac_func; +#endif + ; + return 0; +} +_ACEOF +rm -f conftest.$ac_objext +if { (eval echo "$as_me:29642: \"$ac_compile\"") >&5 + (eval $ac_compile) 2>&5 + ac_status=$? + echo "$as_me:29645: \$? = $ac_status" >&5 + (exit $ac_status); } && + { ac_try='test -s conftest.$ac_objext' + { (eval echo "$as_me:29648: \"$ac_try\"") >&5 + (eval $ac_try) 2>&5 + ac_status=$? + echo "$as_me:29651: \$? = $ac_status" >&5 + (exit $ac_status); }; }; then + +eval "ac_cv_func_decl_$ac_func=yes" +else + echo "$as_me: failed program was:" >&5 +cat conftest.$ac_ext >&5 + +eval "ac_cv_func_decl_$ac_func=no" +fi +rm -f conftest.$ac_objext conftest.$ac_ext +else + echo "$as_me: failed program was:" >&5 +cat conftest.$ac_ext >&5 + +eval "ac_cv_func_decl_$ac_func=yes" +fi +rm -f conftest.$ac_objext conftest.$ac_ext +fi + +if eval "test \"`echo '$ac_cv_func_'decl_$ac_func`\" = yes"; then + echo "$as_me:29672: result: yes" >&5 +echo "${ECHO_T}yes" >&6 + : +else + echo "$as_me:29676: result: no" >&5 +echo "${ECHO_T}no" >&6 + +ac_tr_func=`echo "DECL_$ac_func" | sed y%abcdefghijklmnopqrstuvwxyz./-%ABCDEFGHIJKLMNOPQRSTUVWXYZ___%` + + cat >>confdefs.h <<EOF +#define $ac_tr_func 1 +EOF + +fi +done + for ac_func in strstr do -echo "$as_me:29536: checking for $ac_func declaration" >&5 +echo "$as_me:29691: 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 29542 "configure" +#line 29697 "configure" #include "confdefs.h" #include <string.h> int @@ -29553,20 +29708,20 @@ extern int $ac_func(); } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:29556: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:29711: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:29559: \$? = $ac_status" >&5 + echo "$as_me:29714: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:29562: \"$ac_try\"") >&5 + { (eval echo "$as_me:29717: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:29565: \$? = $ac_status" >&5 + echo "$as_me:29720: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cat >conftest.$ac_ext <<_ACEOF -#line 29569 "configure" +#line 29724 "configure" #include "confdefs.h" #include <string.h> int @@ -29580,16 +29735,16 @@ int (*p)() = $ac_func; } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:29583: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:29738: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:29586: \$? = $ac_status" >&5 + echo "$as_me:29741: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:29589: \"$ac_try\"") >&5 + { (eval echo "$as_me:29744: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:29592: \$? = $ac_status" >&5 + echo "$as_me:29747: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "ac_cv_func_decl_$ac_func=yes" @@ -29610,11 +29765,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:29613: result: yes" >&5 + echo "$as_me:29768: result: yes" >&5 echo "${ECHO_T}yes" >&6 : else - echo "$as_me:29617: result: no" >&5 + echo "$as_me:29772: result: no" >&5 echo "${ECHO_T}no" >&6 ac_tr_func=`echo "DECL_$ac_func" | sed y%abcdefghijklmnopqrstuvwxyz./-%ABCDEFGHIJKLMNOPQRSTUVWXYZ___%` @@ -29629,13 +29784,13 @@ done for ac_func in getgrgid getgrnam do -echo "$as_me:29632: checking for $ac_func declaration" >&5 +echo "$as_me:29787: 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 29638 "configure" +#line 29793 "configure" #include "confdefs.h" #include <stdio.h> @@ -29651,20 +29806,20 @@ extern int $ac_func(); } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:29654: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:29809: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:29657: \$? = $ac_status" >&5 + echo "$as_me:29812: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:29660: \"$ac_try\"") >&5 + { (eval echo "$as_me:29815: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:29663: \$? = $ac_status" >&5 + echo "$as_me:29818: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cat >conftest.$ac_ext <<_ACEOF -#line 29667 "configure" +#line 29822 "configure" #include "confdefs.h" #include <stdio.h> @@ -29680,16 +29835,16 @@ int (*p)() = $ac_func; } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:29683: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:29838: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:29686: \$? = $ac_status" >&5 + echo "$as_me:29841: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:29689: \"$ac_try\"") >&5 + { (eval echo "$as_me:29844: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:29692: \$? = $ac_status" >&5 + echo "$as_me:29847: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "ac_cv_func_decl_$ac_func=yes" @@ -29710,11 +29865,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:29713: result: yes" >&5 + echo "$as_me:29868: result: yes" >&5 echo "${ECHO_T}yes" >&6 : else - echo "$as_me:29717: result: no" >&5 + echo "$as_me:29872: result: no" >&5 echo "${ECHO_T}no" >&6 ac_tr_func=`echo "DECL_$ac_func" | sed y%abcdefghijklmnopqrstuvwxyz./-%ABCDEFGHIJKLMNOPQRSTUVWXYZ___%` @@ -29726,14 +29881,14 @@ EOF fi done -echo "$as_me:29729: checking if TRUE/FALSE are defined" >&5 +echo "$as_me:29884: 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 29736 "configure" +#line 29891 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> @@ -29747,16 +29902,16 @@ int x = TRUE, y = FALSE } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:29750: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:29905: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:29753: \$? = $ac_status" >&5 + echo "$as_me:29908: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:29756: \"$ac_try\"") >&5 + { (eval echo "$as_me:29911: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:29759: \$? = $ac_status" >&5 + echo "$as_me:29914: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_bool_defs=yes else @@ -29767,7 +29922,7 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:29770: result: $cf_cv_bool_defs" >&5 +echo "$as_me:29925: result: $cf_cv_bool_defs" >&5 echo "${ECHO_T}$cf_cv_bool_defs" >&6 if test "$cf_cv_bool_defs" = no ; then @@ -29781,14 +29936,14 @@ EOF fi -echo "$as_me:29784: checking if external errno is declared" >&5 +echo "$as_me:29939: 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 29791 "configure" +#line 29946 "configure" #include "confdefs.h" #ifdef HAVE_STDLIB_H @@ -29806,16 +29961,16 @@ int x = (int) errno } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:29809: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:29964: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:29812: \$? = $ac_status" >&5 + echo "$as_me:29967: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:29815: \"$ac_try\"") >&5 + { (eval echo "$as_me:29970: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:29818: \$? = $ac_status" >&5 + echo "$as_me:29973: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_dcl_errno=yes else @@ -29826,7 +29981,7 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:29829: result: $cf_cv_dcl_errno" >&5 +echo "$as_me:29984: result: $cf_cv_dcl_errno" >&5 echo "${ECHO_T}$cf_cv_dcl_errno" >&6 if test "$cf_cv_dcl_errno" = no ; then @@ -29841,14 +29996,14 @@ fi # It's possible (for near-UNIX clones) that the data doesn't exist -echo "$as_me:29844: checking if external errno exists" >&5 +echo "$as_me:29999: 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 29851 "configure" +#line 30006 "configure" #include "confdefs.h" #undef errno @@ -29863,16 +30018,16 @@ errno = 2 } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:29866: \"$ac_link\"") >&5 +if { (eval echo "$as_me:30021: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:29869: \$? = $ac_status" >&5 + echo "$as_me:30024: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:29872: \"$ac_try\"") >&5 + { (eval echo "$as_me:30027: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:29875: \$? = $ac_status" >&5 + echo "$as_me:30030: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_have_errno=yes else @@ -29883,7 +30038,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:29886: result: $cf_cv_have_errno" >&5 +echo "$as_me:30041: result: $cf_cv_have_errno" >&5 echo "${ECHO_T}$cf_cv_have_errno" >&6 if test "$cf_cv_have_errno" = yes ; then @@ -29896,7 +30051,7 @@ EOF fi -echo "$as_me:29899: checking if we can set errno" >&5 +echo "$as_me:30054: 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 @@ -29904,7 +30059,7 @@ else if test "$cross_compiling" = yes; then cat >conftest.$ac_ext <<_ACEOF -#line 29907 "configure" +#line 30062 "configure" #include "confdefs.h" #include <errno.h> int @@ -29916,16 +30071,16 @@ errno = 255 } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:29919: \"$ac_link\"") >&5 +if { (eval echo "$as_me:30074: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:29922: \$? = $ac_status" >&5 + echo "$as_me:30077: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:29925: \"$ac_try\"") >&5 + { (eval echo "$as_me:30080: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:29928: \$? = $ac_status" >&5 + echo "$as_me:30083: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_set_errno=maybe else @@ -29936,7 +30091,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext else cat >conftest.$ac_ext <<_ACEOF -#line 29939 "configure" +#line 30094 "configure" #include "confdefs.h" #include <errno.h> @@ -29947,15 +30102,15 @@ int main() } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:29950: \"$ac_link\"") >&5 +if { (eval echo "$as_me:30105: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:29953: \$? = $ac_status" >&5 + echo "$as_me:30108: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:29955: \"$ac_try\"") >&5 + { (eval echo "$as_me:30110: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:29958: \$? = $ac_status" >&5 + echo "$as_me:30113: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_set_errno=yes else @@ -29968,21 +30123,21 @@ rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext fi fi -echo "$as_me:29971: result: $cf_cv_set_errno" >&5 +echo "$as_me:30126: 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:29978: checking for setlocale()" >&5 +echo "$as_me:30133: 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 29985 "configure" +#line 30140 "configure" #include "confdefs.h" #include <locale.h> int @@ -29994,16 +30149,16 @@ setlocale(LC_ALL, "") } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:29997: \"$ac_link\"") >&5 +if { (eval echo "$as_me:30152: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:30000: \$? = $ac_status" >&5 + echo "$as_me:30155: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:30003: \"$ac_try\"") >&5 + { (eval echo "$as_me:30158: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:30006: \$? = $ac_status" >&5 + echo "$as_me:30161: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_locale=yes else @@ -30015,7 +30170,7 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:30018: result: $cf_cv_locale" >&5 +echo "$as_me:30173: result: $cf_cv_locale" >&5 echo "${ECHO_T}$cf_cv_locale" >&6 test $cf_cv_locale = yes && { cat >>confdefs.h <<\EOF @@ -30023,14 +30178,14 @@ cat >>confdefs.h <<\EOF EOF } -echo "$as_me:30026: checking if NGROUPS is defined" >&5 +echo "$as_me:30181: 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 30033 "configure" +#line 30188 "configure" #include "confdefs.h" #if HAVE_SYS_PARAM_H @@ -30049,23 +30204,23 @@ int x = NGROUPS } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:30052: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:30207: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:30055: \$? = $ac_status" >&5 + echo "$as_me:30210: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:30058: \"$ac_try\"") >&5 + { (eval echo "$as_me:30213: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:30061: \$? = $ac_status" >&5 + echo "$as_me:30216: \$? = $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 30068 "configure" +#line 30223 "configure" #include "confdefs.h" #if HAVE_SYS_PARAM_H @@ -30084,16 +30239,16 @@ int x = NGROUPS_MAX } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:30087: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:30242: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:30090: \$? = $ac_status" >&5 + echo "$as_me:30245: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:30093: \"$ac_try\"") >&5 + { (eval echo "$as_me:30248: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:30096: \$? = $ac_status" >&5 + echo "$as_me:30251: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_ngroups=NGROUPS_MAX else @@ -30105,7 +30260,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext fi rm -f conftest.$ac_objext conftest.$ac_ext -echo "$as_me:30108: result: $cf_cv_ngroups" >&5 +echo "$as_me:30263: result: $cf_cv_ngroups" >&5 echo "${ECHO_T}$cf_cv_ngroups" >&6 fi @@ -30123,14 +30278,14 @@ EOF fi -echo "$as_me:30126: checking if external sys_nerr is declared" >&5 +echo "$as_me:30281: 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 30133 "configure" +#line 30288 "configure" #include "confdefs.h" #ifdef HAVE_STDLIB_H @@ -30148,16 +30303,16 @@ int x = (int) sys_nerr } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:30151: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:30306: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:30154: \$? = $ac_status" >&5 + echo "$as_me:30309: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:30157: \"$ac_try\"") >&5 + { (eval echo "$as_me:30312: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:30160: \$? = $ac_status" >&5 + echo "$as_me:30315: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_dcl_sys_nerr=yes else @@ -30168,7 +30323,7 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:30171: result: $cf_cv_dcl_sys_nerr" >&5 +echo "$as_me:30326: 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 @@ -30183,14 +30338,14 @@ fi # It's possible (for near-UNIX clones) that the data doesn't exist -echo "$as_me:30186: checking if external sys_nerr exists" >&5 +echo "$as_me:30341: 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 30193 "configure" +#line 30348 "configure" #include "confdefs.h" #undef sys_nerr @@ -30205,16 +30360,16 @@ sys_nerr = 2 } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:30208: \"$ac_link\"") >&5 +if { (eval echo "$as_me:30363: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:30211: \$? = $ac_status" >&5 + echo "$as_me:30366: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:30214: \"$ac_try\"") >&5 + { (eval echo "$as_me:30369: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:30217: \$? = $ac_status" >&5 + echo "$as_me:30372: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_have_sys_nerr=yes else @@ -30225,7 +30380,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:30228: result: $cf_cv_have_sys_nerr" >&5 +echo "$as_me:30383: 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 @@ -30238,14 +30393,14 @@ EOF fi -echo "$as_me:30241: checking if external sys_errlist is declared" >&5 +echo "$as_me:30396: 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 30248 "configure" +#line 30403 "configure" #include "confdefs.h" #ifdef HAVE_STDLIB_H @@ -30263,16 +30418,16 @@ int x = (int) sys_errlist } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:30266: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:30421: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:30269: \$? = $ac_status" >&5 + echo "$as_me:30424: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:30272: \"$ac_try\"") >&5 + { (eval echo "$as_me:30427: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:30275: \$? = $ac_status" >&5 + echo "$as_me:30430: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_dcl_sys_errlist=yes else @@ -30283,7 +30438,7 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:30286: result: $cf_cv_dcl_sys_errlist" >&5 +echo "$as_me:30441: 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 @@ -30298,14 +30453,14 @@ fi # It's possible (for near-UNIX clones) that the data doesn't exist -echo "$as_me:30301: checking if external sys_errlist exists" >&5 +echo "$as_me:30456: 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 30308 "configure" +#line 30463 "configure" #include "confdefs.h" #undef sys_errlist @@ -30320,16 +30475,16 @@ sys_errlist = 2 } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:30323: \"$ac_link\"") >&5 +if { (eval echo "$as_me:30478: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:30326: \$? = $ac_status" >&5 + echo "$as_me:30481: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:30329: \"$ac_try\"") >&5 + { (eval echo "$as_me:30484: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:30332: \$? = $ac_status" >&5 + echo "$as_me:30487: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_have_sys_errlist=yes else @@ -30340,7 +30495,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:30343: result: $cf_cv_have_sys_errlist" >&5 +echo "$as_me:30498: 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 @@ -30356,23 +30511,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:30359: checking for $ac_header" >&5 +echo "$as_me:30514: 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 30365 "configure" +#line 30520 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:30369: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:30524: \"$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:30375: \$? = $ac_status" >&5 + echo "$as_me:30530: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -30391,7 +30546,7 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:30394: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:30549: 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 @@ -30401,14 +30556,14 @@ EOF fi done -echo "$as_me:30404: checking for lastlog path" >&5 +echo "$as_me:30559: 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 30411 "configure" +#line 30566 "configure" #include "confdefs.h" #include <sys/types.h> @@ -30428,16 +30583,16 @@ char *path = _PATH_LASTLOG } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:30431: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:30586: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:30434: \$? = $ac_status" >&5 + echo "$as_me:30589: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:30437: \"$ac_try\"") >&5 + { (eval echo "$as_me:30592: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:30440: \$? = $ac_status" >&5 + echo "$as_me:30595: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_path_lastlog="_PATH_LASTLOG" else @@ -30452,14 +30607,14 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:30455: result: $cf_cv_path_lastlog" >&5 +echo "$as_me:30610: 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:30462: checking for utmp implementation" >&5 +echo "$as_me:30617: 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 @@ -30476,7 +30631,7 @@ cf_utmp_includes=" #endif " cat >conftest.$ac_ext <<_ACEOF -#line 30479 "configure" +#line 30634 "configure" #include "confdefs.h" $cf_utmp_includes int @@ -30490,16 +30645,16 @@ struct $cf_header x; } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:30493: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:30648: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:30496: \$? = $ac_status" >&5 + echo "$as_me:30651: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:30499: \"$ac_try\"") >&5 + { (eval echo "$as_me:30654: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:30502: \$? = $ac_status" >&5 + echo "$as_me:30657: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_have_utmp=$cf_header break @@ -30508,7 +30663,7 @@ else cat conftest.$ac_ext >&5 cat >conftest.$ac_ext <<_ACEOF -#line 30511 "configure" +#line 30666 "configure" #include "confdefs.h" $cf_utmp_includes int @@ -30522,16 +30677,16 @@ struct $cf_header x; } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:30525: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:30680: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:30528: \$? = $ac_status" >&5 + echo "$as_me:30683: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:30531: \"$ac_try\"") >&5 + { (eval echo "$as_me:30686: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:30534: \$? = $ac_status" >&5 + echo "$as_me:30689: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_have_utmp=$cf_header break @@ -30546,7 +30701,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext done fi -echo "$as_me:30549: result: $cf_cv_have_utmp" >&5 +echo "$as_me:30704: result: $cf_cv_have_utmp" >&5 echo "${ECHO_T}$cf_cv_have_utmp" >&6 if test $cf_cv_have_utmp != no ; then @@ -30561,14 +30716,14 @@ cat >>confdefs.h <<\EOF EOF if test $cf_cv_have_utmp != no ; then -echo "$as_me:30564: checking if ${cf_cv_have_utmp}.ut_host is declared" >&5 +echo "$as_me:30719: 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 30571 "configure" +#line 30726 "configure" #include "confdefs.h" #include <sys/types.h> @@ -30582,16 +30737,16 @@ struct $cf_cv_have_utmp x; char *y = &x.ut_host[0] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:30585: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:30740: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:30588: \$? = $ac_status" >&5 + echo "$as_me:30743: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:30591: \"$ac_try\"") >&5 + { (eval echo "$as_me:30746: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:30594: \$? = $ac_status" >&5 + echo "$as_me:30749: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_have_utmp_ut_host=yes else @@ -30603,7 +30758,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:30606: result: $cf_cv_have_utmp_ut_host" >&5 +echo "$as_me:30761: 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 @@ -30613,14 +30768,14 @@ EOF fi if test $cf_cv_have_utmp != no ; then -echo "$as_me:30616: checking if ${cf_cv_have_utmp}.ut_syslen is declared" >&5 +echo "$as_me:30771: 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 30623 "configure" +#line 30778 "configure" #include "confdefs.h" #include <sys/types.h> @@ -30634,16 +30789,16 @@ struct $cf_cv_have_utmp x; int y = x.ut_syslen } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:30637: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:30792: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:30640: \$? = $ac_status" >&5 + echo "$as_me:30795: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:30643: \"$ac_try\"") >&5 + { (eval echo "$as_me:30798: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:30646: \$? = $ac_status" >&5 + echo "$as_me:30801: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_have_utmp_ut_syslen=yes else @@ -30655,7 +30810,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:30658: result: $cf_cv_have_utmp_ut_syslen" >&5 +echo "$as_me:30813: 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 @@ -30665,7 +30820,7 @@ EOF fi if test $cf_cv_have_utmp != no ; then -echo "$as_me:30668: checking if ${cf_cv_have_utmp}.ut_name is declared" >&5 +echo "$as_me:30823: 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 @@ -30682,7 +30837,7 @@ cf_utmp_includes=" " for cf_header in ut_name ut_user ; do cat >conftest.$ac_ext <<_ACEOF -#line 30685 "configure" +#line 30840 "configure" #include "confdefs.h" $cf_utmp_includes int @@ -30696,16 +30851,16 @@ struct $cf_cv_have_utmp x; } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:30699: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:30854: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:30702: \$? = $ac_status" >&5 + echo "$as_me:30857: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:30705: \"$ac_try\"") >&5 + { (eval echo "$as_me:30860: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:30708: \$? = $ac_status" >&5 + echo "$as_me:30863: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_have_utmp_ut_name=$cf_header break @@ -30717,12 +30872,12 @@ rm -f conftest.$ac_objext conftest.$ac_ext done fi -echo "$as_me:30720: result: $cf_cv_have_utmp_ut_name" >&5 +echo "$as_me:30875: 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:30725: error: Cannot find declaration for ut.ut_name" >&5 + { { echo "$as_me:30880: 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; }; } ;; @@ -30737,7 +30892,7 @@ esac fi if test $cf_cv_have_utmp != no ; then -echo "$as_me:30740: checking for exit-status in $cf_cv_have_utmp" >&5 +echo "$as_me:30895: 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 @@ -30750,7 +30905,7 @@ for cf_result in \ ut_exit.ut_exit do cat >conftest.$ac_ext <<_ACEOF -#line 30753 "configure" +#line 30908 "configure" #include "confdefs.h" #include <sys/types.h> @@ -30764,16 +30919,16 @@ struct $cf_cv_have_utmp x; long y = x.$cf_result = 0 } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:30767: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:30922: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:30770: \$? = $ac_status" >&5 + echo "$as_me:30925: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:30773: \"$ac_try\"") >&5 + { (eval echo "$as_me:30928: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:30776: \$? = $ac_status" >&5 + echo "$as_me:30931: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_have_utmp_ut_xstatus=$cf_result break @@ -30786,7 +30941,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext done fi -echo "$as_me:30789: result: $cf_cv_have_utmp_ut_xstatus" >&5 +echo "$as_me:30944: 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 @@ -30802,14 +30957,14 @@ fi fi if test $cf_cv_have_utmp != no ; then -echo "$as_me:30805: checking if ${cf_cv_have_utmp}.ut_xtime is declared" >&5 +echo "$as_me:30960: 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 30812 "configure" +#line 30967 "configure" #include "confdefs.h" #include <sys/types.h> @@ -30823,23 +30978,23 @@ struct $cf_cv_have_utmp x; long y = x.ut_xtime = 0 } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:30826: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:30981: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:30829: \$? = $ac_status" >&5 + echo "$as_me:30984: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:30832: \"$ac_try\"") >&5 + { (eval echo "$as_me:30987: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:30835: \$? = $ac_status" >&5 + echo "$as_me:30990: \$? = $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 30842 "configure" +#line 30997 "configure" #include "confdefs.h" #include <sys/types.h> @@ -30853,16 +31008,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:30856: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:31011: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:30859: \$? = $ac_status" >&5 + echo "$as_me:31014: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:30862: \"$ac_try\"") >&5 + { (eval echo "$as_me:31017: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:30865: \$? = $ac_status" >&5 + echo "$as_me:31020: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_have_utmp_ut_xtime=define else @@ -30876,7 +31031,7 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:30879: result: $cf_cv_have_utmp_ut_xtime" >&5 +echo "$as_me:31034: 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 @@ -30895,14 +31050,14 @@ fi fi if test $cf_cv_have_utmp != no ; then -echo "$as_me:30898: checking if ${cf_cv_have_utmp}.ut_session is declared" >&5 +echo "$as_me:31053: 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 30905 "configure" +#line 31060 "configure" #include "confdefs.h" #include <sys/types.h> @@ -30916,16 +31071,16 @@ struct $cf_cv_have_utmp x; long y = x.ut_session } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:30919: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:31074: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:30922: \$? = $ac_status" >&5 + echo "$as_me:31077: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:30925: \"$ac_try\"") >&5 + { (eval echo "$as_me:31080: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:30928: \$? = $ac_status" >&5 + echo "$as_me:31083: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_have_utmp_ut_session=yes else @@ -30936,7 +31091,7 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:30939: result: $cf_cv_have_utmp_ut_session" >&5 +echo "$as_me:31094: 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 @@ -30947,7 +31102,7 @@ EOF fi fi -echo "$as_me:30950: checking if $cf_cv_have_utmp is SYSV flavor" >&5 +echo "$as_me:31105: 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 @@ -30955,7 +31110,7 @@ else test "$cf_cv_have_utmp" = "utmp" && cf_prefix="ut" || cf_prefix="utx" cat >conftest.$ac_ext <<_ACEOF -#line 30958 "configure" +#line 31113 "configure" #include "confdefs.h" #include <sys/types.h> @@ -30974,16 +31129,16 @@ struct $cf_cv_have_utmp x; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:30977: \"$ac_link\"") >&5 +if { (eval echo "$as_me:31132: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:30980: \$? = $ac_status" >&5 + echo "$as_me:31135: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:30983: \"$ac_try\"") >&5 + { (eval echo "$as_me:31138: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:30986: \$? = $ac_status" >&5 + echo "$as_me:31141: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_sysv_utmp=yes else @@ -30994,7 +31149,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:30997: result: $cf_cv_sysv_utmp" >&5 +echo "$as_me:31152: result: $cf_cv_sysv_utmp" >&5 echo "${ECHO_T}$cf_cv_sysv_utmp" >&6 test $cf_cv_sysv_utmp = yes && cat >>confdefs.h <<\EOF @@ -31003,14 +31158,14 @@ EOF fi -echo "$as_me:31006: checking if external h_errno exists" >&5 +echo "$as_me:31161: 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 31013 "configure" +#line 31168 "configure" #include "confdefs.h" #undef h_errno @@ -31025,16 +31180,16 @@ h_errno = 2 } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:31028: \"$ac_link\"") >&5 +if { (eval echo "$as_me:31183: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:31031: \$? = $ac_status" >&5 + echo "$as_me:31186: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:31034: \"$ac_try\"") >&5 + { (eval echo "$as_me:31189: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:31037: \$? = $ac_status" >&5 + echo "$as_me:31192: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_have_h_errno=yes else @@ -31045,7 +31200,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:31048: result: $cf_cv_have_h_errno" >&5 +echo "$as_me:31203: 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 @@ -31058,7 +31213,7 @@ EOF fi -echo "$as_me:31061: checking if bibp: URLs should be supported" >&5 +echo "$as_me:31216: 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. @@ -31075,14 +31230,14 @@ else use_bibp_urls=yes fi; -echo "$as_me:31078: result: $use_bibp_urls" >&5 +echo "$as_me:31233: 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:31085: checking if configuration info should be browsable" >&5 +echo "$as_me:31240: 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. @@ -31099,14 +31254,14 @@ else use_config_info=yes fi; -echo "$as_me:31102: result: $use_config_info" >&5 +echo "$as_me:31257: 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:31109: checking if new-style forms-based options screen should be used" >&5 +echo "$as_me:31264: 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. @@ -31123,14 +31278,14 @@ else use_forms_options=yes fi; -echo "$as_me:31126: result: $use_forms_options" >&5 +echo "$as_me:31281: 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:31133: checking if old-style options menu should be used" >&5 +echo "$as_me:31288: 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. @@ -31147,14 +31302,14 @@ else use_menu_options=yes fi; -echo "$as_me:31150: result: $use_menu_options" >&5 +echo "$as_me:31305: 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:31157: checking if sessions code should be used" >&5 +echo "$as_me:31312: 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. @@ -31171,7 +31326,7 @@ else use_sessions=yes fi; -echo "$as_me:31174: result: $use_sessions" >&5 +echo "$as_me:31329: result: $use_sessions" >&5 echo "${ECHO_T}$use_sessions" >&6 if test $use_sessions != no ; then @@ -31182,7 +31337,7 @@ EOF EXTRA_OBJS="$EXTRA_OBJS LYSession\$o" fi -echo "$as_me:31185: checking if session-caching code should be used" >&5 +echo "$as_me:31340: 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. @@ -31199,7 +31354,7 @@ else use_session_cache=yes fi; -echo "$as_me:31202: result: $use_session_cache" >&5 +echo "$as_me:31357: result: $use_session_cache" >&5 echo "${ECHO_T}$use_session_cache" >&6 if test $use_session_cache != no ; then @@ -31209,7 +31364,7 @@ EOF fi -echo "$as_me:31212: checking if address-list page should be used" >&5 +echo "$as_me:31367: 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. @@ -31226,14 +31381,14 @@ else use_addrlist_page=yes fi; -echo "$as_me:31229: result: $use_addrlist_page" >&5 +echo "$as_me:31384: 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:31236: checking if experimental CJK logic should be used" >&5 +echo "$as_me:31391: 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. @@ -31250,14 +31405,14 @@ else use_cjk=no fi; -echo "$as_me:31253: result: $use_cjk" >&5 +echo "$as_me:31408: 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:31260: checking if experimental Japanese UTF-8 logic should be used" >&5 +echo "$as_me:31415: 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. @@ -31274,7 +31429,7 @@ else use_ja_utf8=no fi; -echo "$as_me:31277: result: $use_ja_utf8" >&5 +echo "$as_me:31432: result: $use_ja_utf8" >&5 echo "${ECHO_T}$use_ja_utf8" >&6 if test $use_ja_utf8 != no ; then @@ -31320,7 +31475,7 @@ if test -n "$cf_searchpath/include" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 31323 "configure" +#line 31478 "configure" #include "confdefs.h" #include <stdio.h> int @@ -31332,16 +31487,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:31335: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:31490: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:31338: \$? = $ac_status" >&5 + echo "$as_me:31493: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:31341: \"$ac_try\"") >&5 + { (eval echo "$as_me:31496: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:31344: \$? = $ac_status" >&5 + echo "$as_me:31499: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -31358,7 +31513,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}:31361: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:31516: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -31399,7 +31554,7 @@ if test -n "$cf_searchpath/../include" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 31402 "configure" +#line 31557 "configure" #include "confdefs.h" #include <stdio.h> int @@ -31411,16 +31566,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:31414: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:31569: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:31417: \$? = $ac_status" >&5 + echo "$as_me:31572: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:31420: \"$ac_try\"") >&5 + { (eval echo "$as_me:31575: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:31423: \$? = $ac_status" >&5 + echo "$as_me:31578: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -31437,7 +31592,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}:31440: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:31595: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -31453,7 +31608,7 @@ echo "${as_me:-configure}:31440: testing adding $cf_add_incdir to include-path . fi else -{ { echo "$as_me:31456: error: cannot find libiconv under $withval" >&5 +{ { echo "$as_me:31611: error: cannot find libiconv under $withval" >&5 echo "$as_me: error: cannot find libiconv under $withval" >&2;} { (exit 1); exit 1; }; } fi @@ -31478,7 +31633,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}:31481: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:31636: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -31507,7 +31662,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}:31510: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:31665: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -31516,7 +31671,7 @@ echo "${as_me:-configure}:31510: testing adding $cf_add_libdir to library-path . fi else -{ { echo "$as_me:31519: error: cannot find libiconv under $withval" >&5 +{ { echo "$as_me:31674: error: cannot find libiconv under $withval" >&5 echo "$as_me: error: cannot find libiconv under $withval" >&2;} { (exit 1); exit 1; }; } fi @@ -31527,7 +31682,7 @@ done fi; - echo "$as_me:31530: checking for iconv" >&5 + echo "$as_me:31685: 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 @@ -31538,12 +31693,12 @@ else cf_cv_header_path_iconv= cf_cv_library_path_iconv= -echo "${as_me:-configure}:31541: testing Starting FIND_LINKAGE(iconv,) ..." 1>&5 +echo "${as_me:-configure}:31696: testing Starting FIND_LINKAGE(iconv,) ..." 1>&5 cf_save_LIBS="$LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 31546 "configure" +#line 31701 "configure" #include "confdefs.h" #include <stdlib.h> @@ -31562,16 +31717,16 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:31565: \"$ac_link\"") >&5 +if { (eval echo "$as_me:31720: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:31568: \$? = $ac_status" >&5 + echo "$as_me:31723: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:31571: \"$ac_try\"") >&5 + { (eval echo "$as_me:31726: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:31574: \$? = $ac_status" >&5 + echo "$as_me:31729: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_find_linkage_iconv=yes @@ -31585,7 +31740,7 @@ cat conftest.$ac_ext >&5 LIBS="-liconv $cf_save_LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 31588 "configure" +#line 31743 "configure" #include "confdefs.h" #include <stdlib.h> @@ -31604,16 +31759,16 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:31607: \"$ac_link\"") >&5 +if { (eval echo "$as_me:31762: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:31610: \$? = $ac_status" >&5 + echo "$as_me:31765: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:31613: \"$ac_try\"") >&5 + { (eval echo "$as_me:31768: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:31616: \$? = $ac_status" >&5 + echo "$as_me:31771: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_find_linkage_iconv=yes @@ -31630,9 +31785,9 @@ cat conftest.$ac_ext >&5 test -n "$verbose" && echo " find linkage for iconv library" 1>&6 -echo "${as_me:-configure}:31633: testing find linkage for iconv library ..." 1>&5 +echo "${as_me:-configure}:31788: testing find linkage for iconv library ..." 1>&5 -echo "${as_me:-configure}:31635: testing Searching for headers in FIND_LINKAGE(iconv,) ..." 1>&5 +echo "${as_me:-configure}:31790: testing Searching for headers in FIND_LINKAGE(iconv,) ..." 1>&5 cf_save_CPPFLAGS="$CPPFLAGS" cf_test_CPPFLAGS="$CPPFLAGS" @@ -31745,11 +31900,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}:31748: testing ... testing $cf_cv_header_path_iconv ..." 1>&5 +echo "${as_me:-configure}:31903: 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 31752 "configure" +#line 31907 "configure" #include "confdefs.h" #include <stdlib.h> @@ -31768,21 +31923,21 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:31771: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:31926: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:31774: \$? = $ac_status" >&5 + echo "$as_me:31929: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:31777: \"$ac_try\"") >&5 + { (eval echo "$as_me:31932: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:31780: \$? = $ac_status" >&5 + echo "$as_me:31935: \$? = $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}:31785: testing ... found iconv headers in $cf_cv_header_path_iconv ..." 1>&5 +echo "${as_me:-configure}:31940: testing ... found iconv headers in $cf_cv_header_path_iconv ..." 1>&5 cf_cv_find_linkage_iconv=maybe cf_test_CPPFLAGS="$CPPFLAGS" @@ -31800,7 +31955,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "$cf_cv_find_linkage_iconv" = maybe ; then -echo "${as_me:-configure}:31803: testing Searching for iconv library in FIND_LINKAGE(iconv,) ..." 1>&5 +echo "${as_me:-configure}:31958: testing Searching for iconv library in FIND_LINKAGE(iconv,) ..." 1>&5 cf_save_LIBS="$LIBS" cf_save_LDFLAGS="$LDFLAGS" @@ -31897,13 +32052,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}:31900: testing ... testing $cf_cv_library_path_iconv ..." 1>&5 +echo "${as_me:-configure}:32055: 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 31906 "configure" +#line 32061 "configure" #include "confdefs.h" #include <stdlib.h> @@ -31922,21 +32077,21 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:31925: \"$ac_link\"") >&5 +if { (eval echo "$as_me:32080: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:31928: \$? = $ac_status" >&5 + echo "$as_me:32083: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:31931: \"$ac_try\"") >&5 + { (eval echo "$as_me:32086: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:31934: \$? = $ac_status" >&5 + echo "$as_me:32089: \$? = $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}:31939: testing ... found iconv library in $cf_cv_library_path_iconv ..." 1>&5 +echo "${as_me:-configure}:32094: testing ... found iconv library in $cf_cv_library_path_iconv ..." 1>&5 cf_cv_find_linkage_iconv=yes cf_cv_library_file_iconv="-liconv" @@ -31976,7 +32131,7 @@ am_cv_func_iconv="no, consider installing GNU libiconv" fi fi -echo "$as_me:31979: result: $am_cv_func_iconv" >&5 +echo "$as_me:32134: result: $am_cv_func_iconv" >&5 echo "${ECHO_T}$am_cv_func_iconv" >&6 if test "$am_cv_func_iconv" = yes; then @@ -31985,14 +32140,14 @@ cat >>confdefs.h <<\EOF #define HAVE_ICONV 1 EOF - echo "$as_me:31988: checking if the declaration of iconv() needs const." >&5 + echo "$as_me:32143: 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 31995 "configure" +#line 32150 "configure" #include "confdefs.h" #include <stdlib.h> @@ -32017,16 +32172,16 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:32020: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:32175: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:32023: \$? = $ac_status" >&5 + echo "$as_me:32178: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:32026: \"$ac_try\"") >&5 + { (eval echo "$as_me:32181: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:32029: \$? = $ac_status" >&5 + echo "$as_me:32184: \$? = $ac_status" >&5 (exit $ac_status); }; }; then am_cv_proto_iconv_const=no else @@ -32036,7 +32191,7 @@ am_cv_proto_iconv_const=yes fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:32039: result: $am_cv_proto_iconv_const" >&5 +echo "$as_me:32194: 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 @@ -32078,7 +32233,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 32081 "configure" +#line 32236 "configure" #include "confdefs.h" #include <stdio.h> int @@ -32090,16 +32245,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:32093: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:32248: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:32096: \$? = $ac_status" >&5 + echo "$as_me:32251: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:32099: \"$ac_try\"") >&5 + { (eval echo "$as_me:32254: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:32102: \$? = $ac_status" >&5 + echo "$as_me:32257: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -32116,7 +32271,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}:32119: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:32274: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -32153,7 +32308,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}:32156: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:32311: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -32177,7 +32332,7 @@ curses|slang|ncurses*) esac if test "$use_dft_colors" != no ; then -echo "$as_me:32180: checking if you want to use default-colors" >&5 +echo "$as_me:32335: 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. @@ -32194,7 +32349,7 @@ else use_dft_colors=no fi; -echo "$as_me:32197: result: $use_dft_colors" >&5 +echo "$as_me:32352: result: $use_dft_colors" >&5 echo "${ECHO_T}$use_dft_colors" >&6 test $use_dft_colors = "yes" && cat >>confdefs.h <<\EOF @@ -32203,7 +32358,7 @@ EOF fi -echo "$as_me:32206: checking if experimental keyboard-layout logic should be used" >&5 +echo "$as_me:32361: 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. @@ -32220,14 +32375,14 @@ else use_kbd_layout=no fi; -echo "$as_me:32223: result: $use_kbd_layout" >&5 +echo "$as_me:32378: 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:32230: checking if experimental nested-table logic should be used" >&5 +echo "$as_me:32385: 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. @@ -32244,14 +32399,14 @@ else use_nested_tables=no fi; -echo "$as_me:32247: result: $use_nested_tables" >&5 +echo "$as_me:32402: 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:32254: checking if alternative line-edit bindings should be used" >&5 +echo "$as_me:32409: 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. @@ -32268,14 +32423,14 @@ else use_alt_bindings=yes fi; -echo "$as_me:32271: result: $use_alt_bindings" >&5 +echo "$as_me:32426: 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:32278: checking if ascii case-conversion should be used" >&5 +echo "$as_me:32433: 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. @@ -32292,14 +32447,14 @@ else use_ascii_ctypes=yes fi; -echo "$as_me:32295: result: $use_ascii_ctypes" >&5 +echo "$as_me:32450: 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:32302: checking if you want to use extended HTML DTD logic" >&5 +echo "$as_me:32457: 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. @@ -32316,14 +32471,14 @@ else use_ext_htmldtd=yes fi; -echo "$as_me:32319: result: $use_ext_htmldtd" >&5 +echo "$as_me:32474: 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:32326: checking if file-upload logic should be used" >&5 +echo "$as_me:32481: 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. @@ -32340,14 +32495,14 @@ else use_file_upload=yes fi; -echo "$as_me:32343: result: $use_file_upload" >&5 +echo "$as_me:32498: 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:32350: checking if IDNA support should be used" >&5 +echo "$as_me:32505: 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. @@ -32364,7 +32519,7 @@ else use_idna=yes fi; -echo "$as_me:32367: result: $use_idna" >&5 +echo "$as_me:32522: result: $use_idna" >&5 echo "${ECHO_T}$use_idna" >&6 if test "$use_idna" = yes ; then @@ -32403,7 +32558,7 @@ if test -n "$cf_searchpath/include" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 32406 "configure" +#line 32561 "configure" #include "confdefs.h" #include <stdio.h> int @@ -32415,16 +32570,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:32418: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:32573: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:32421: \$? = $ac_status" >&5 + echo "$as_me:32576: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:32424: \"$ac_try\"") >&5 + { (eval echo "$as_me:32579: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:32427: \$? = $ac_status" >&5 + echo "$as_me:32582: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -32441,7 +32596,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}:32444: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:32599: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -32482,7 +32637,7 @@ if test -n "$cf_searchpath/../include" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 32485 "configure" +#line 32640 "configure" #include "confdefs.h" #include <stdio.h> int @@ -32494,16 +32649,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:32497: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:32652: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:32500: \$? = $ac_status" >&5 + echo "$as_me:32655: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:32503: \"$ac_try\"") >&5 + { (eval echo "$as_me:32658: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:32506: \$? = $ac_status" >&5 + echo "$as_me:32661: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -32520,7 +32675,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}:32523: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:32678: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -32536,7 +32691,7 @@ echo "${as_me:-configure}:32523: testing adding $cf_add_incdir to include-path . fi else -{ { echo "$as_me:32539: error: cannot find under $use_idna" >&5 +{ { echo "$as_me:32694: error: cannot find under $use_idna" >&5 echo "$as_me: error: cannot find under $use_idna" >&2;} { (exit 1); exit 1; }; } fi @@ -32561,7 +32716,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}:32564: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:32719: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -32590,7 +32745,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}:32593: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:32748: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -32599,7 +32754,7 @@ echo "${as_me:-configure}:32593: testing adding $cf_add_libdir to library-path . fi else -{ { echo "$as_me:32602: error: cannot find under $use_idna" >&5 +{ { echo "$as_me:32757: error: cannot find under $use_idna" >&5 echo "$as_me: error: cannot find under $use_idna" >&2;} { (exit 1); exit 1; }; } fi @@ -32613,12 +32768,12 @@ done cf_cv_header_path_idn= cf_cv_library_path_idn= -echo "${as_me:-configure}:32616: testing Starting FIND_LINKAGE(idn,) ..." 1>&5 +echo "${as_me:-configure}:32771: testing Starting FIND_LINKAGE(idn,) ..." 1>&5 cf_save_LIBS="$LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 32621 "configure" +#line 32776 "configure" #include "confdefs.h" #include <stdio.h> @@ -32636,16 +32791,16 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:32639: \"$ac_link\"") >&5 +if { (eval echo "$as_me:32794: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:32642: \$? = $ac_status" >&5 + echo "$as_me:32797: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:32645: \"$ac_try\"") >&5 + { (eval echo "$as_me:32800: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:32648: \$? = $ac_status" >&5 + echo "$as_me:32803: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_find_linkage_idn=yes @@ -32659,7 +32814,7 @@ cat conftest.$ac_ext >&5 LIBS="-lidn $LIBICONV $cf_save_LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 32662 "configure" +#line 32817 "configure" #include "confdefs.h" #include <stdio.h> @@ -32677,16 +32832,16 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:32680: \"$ac_link\"") >&5 +if { (eval echo "$as_me:32835: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:32683: \$? = $ac_status" >&5 + echo "$as_me:32838: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:32686: \"$ac_try\"") >&5 + { (eval echo "$as_me:32841: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:32689: \$? = $ac_status" >&5 + echo "$as_me:32844: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_find_linkage_idn=yes @@ -32703,9 +32858,9 @@ cat conftest.$ac_ext >&5 test -n "$verbose" && echo " find linkage for idn library" 1>&6 -echo "${as_me:-configure}:32706: testing find linkage for idn library ..." 1>&5 +echo "${as_me:-configure}:32861: testing find linkage for idn library ..." 1>&5 -echo "${as_me:-configure}:32708: testing Searching for headers in FIND_LINKAGE(idn,) ..." 1>&5 +echo "${as_me:-configure}:32863: testing Searching for headers in FIND_LINKAGE(idn,) ..." 1>&5 cf_save_CPPFLAGS="$CPPFLAGS" cf_test_CPPFLAGS="$CPPFLAGS" @@ -32818,11 +32973,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}:32821: testing ... testing $cf_cv_header_path_idn ..." 1>&5 +echo "${as_me:-configure}:32976: 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 32825 "configure" +#line 32980 "configure" #include "confdefs.h" #include <stdio.h> @@ -32840,21 +32995,21 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:32843: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:32998: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:32846: \$? = $ac_status" >&5 + echo "$as_me:33001: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:32849: \"$ac_try\"") >&5 + { (eval echo "$as_me:33004: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:32852: \$? = $ac_status" >&5 + echo "$as_me:33007: \$? = $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}:32857: testing ... found idn headers in $cf_cv_header_path_idn ..." 1>&5 +echo "${as_me:-configure}:33012: testing ... found idn headers in $cf_cv_header_path_idn ..." 1>&5 cf_cv_find_linkage_idn=maybe cf_test_CPPFLAGS="$CPPFLAGS" @@ -32872,7 +33027,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "$cf_cv_find_linkage_idn" = maybe ; then -echo "${as_me:-configure}:32875: testing Searching for idn library in FIND_LINKAGE(idn,) ..." 1>&5 +echo "${as_me:-configure}:33030: testing Searching for idn library in FIND_LINKAGE(idn,) ..." 1>&5 cf_save_LIBS="$LIBS" cf_save_LDFLAGS="$LDFLAGS" @@ -32969,13 +33124,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}:32972: testing ... testing $cf_cv_library_path_idn ..." 1>&5 +echo "${as_me:-configure}:33127: 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 32978 "configure" +#line 33133 "configure" #include "confdefs.h" #include <stdio.h> @@ -32993,21 +33148,21 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:32996: \"$ac_link\"") >&5 +if { (eval echo "$as_me:33151: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:32999: \$? = $ac_status" >&5 + echo "$as_me:33154: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:33002: \"$ac_try\"") >&5 + { (eval echo "$as_me:33157: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:33005: \$? = $ac_status" >&5 + echo "$as_me:33160: \$? = $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}:33010: testing ... found idn library in $cf_cv_library_path_idn ..." 1>&5 +echo "${as_me:-configure}:33165: testing ... found idn library in $cf_cv_library_path_idn ..." 1>&5 cf_cv_find_linkage_idn=yes cf_cv_library_file_idn="-lidn" @@ -33066,7 +33221,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 33069 "configure" +#line 33224 "configure" #include "confdefs.h" #include <stdio.h> int @@ -33078,16 +33233,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:33081: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:33236: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:33084: \$? = $ac_status" >&5 + echo "$as_me:33239: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:33087: \"$ac_try\"") >&5 + { (eval echo "$as_me:33242: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:33090: \$? = $ac_status" >&5 + echo "$as_me:33245: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -33104,7 +33259,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}:33107: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:33262: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -33138,7 +33293,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}:33141: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:33296: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -33149,7 +33304,7 @@ fi LIBS="-lidn $LIBS" else -{ echo "$as_me:33152: WARNING: Cannot find idn library" >&5 +{ echo "$as_me:33307: WARNING: Cannot find idn library" >&5 echo "$as_me: WARNING: Cannot find idn library" >&2;} fi @@ -33163,7 +33318,7 @@ fi fi -echo "$as_me:33166: checking if element-justification logic should be used" >&5 +echo "$as_me:33321: 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. @@ -33180,14 +33335,14 @@ else use_justify_elts=yes fi; -echo "$as_me:33183: result: $use_justify_elts" >&5 +echo "$as_me:33338: 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:33190: checking if partial-display should be used" >&5 +echo "$as_me:33345: 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. @@ -33204,14 +33359,14 @@ else use_partial_display=yes fi; -echo "$as_me:33207: result: $use_partial_display" >&5 +echo "$as_me:33362: 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:33214: checking if persistent-cookie logic should be used" >&5 +echo "$as_me:33369: 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. @@ -33228,14 +33383,14 @@ else use_filed_cookies=yes fi; -echo "$as_me:33231: result: $use_filed_cookies" >&5 +echo "$as_me:33386: 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:33238: checking if html source should be colorized" >&5 +echo "$as_me:33393: 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. @@ -33252,14 +33407,14 @@ else use_prettysrc=yes fi; -echo "$as_me:33255: result: $use_prettysrc" >&5 +echo "$as_me:33410: 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:33262: checking if progress-bar code should be used" >&5 +echo "$as_me:33417: 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. @@ -33276,14 +33431,14 @@ else use_progressbar=yes fi; -echo "$as_me:33279: result: $use_progressbar" >&5 +echo "$as_me:33434: 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:33286: checking if read-progress message should show ETA" >&5 +echo "$as_me:33441: 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. @@ -33300,14 +33455,14 @@ else use_read_eta=yes fi; -echo "$as_me:33303: result: $use_read_eta" >&5 +echo "$as_me:33458: 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:33310: checking if source caching should be used" >&5 +echo "$as_me:33465: 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. @@ -33324,14 +33479,14 @@ else use_source_cache=yes fi; -echo "$as_me:33327: result: $use_source_cache" >&5 +echo "$as_me:33482: 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:33334: checking if scrollbar code should be used" >&5 +echo "$as_me:33489: 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. @@ -33348,10 +33503,10 @@ else use_scrollbar=yes fi; -echo "$as_me:33351: result: $use_scrollbar" >&5 +echo "$as_me:33506: result: $use_scrollbar" >&5 echo "${ECHO_T}$use_scrollbar" >&6 -echo "$as_me:33354: checking if charset-selection logic should be used" >&5 +echo "$as_me:33509: 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. @@ -33368,14 +33523,14 @@ else use_charset_choice=no fi; -echo "$as_me:33371: result: $use_charset_choice" >&5 +echo "$as_me:33526: 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:33378: checking if you want to use external commands" >&5 +echo "$as_me:33533: 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. @@ -33392,7 +33547,7 @@ else use_externs=no fi; -echo "$as_me:33395: result: $use_externs" >&5 +echo "$as_me:33550: result: $use_externs" >&5 echo "${ECHO_T}$use_externs" >&6 if test $use_externs != "no" ; then @@ -33403,7 +33558,7 @@ EOF EXTRA_OBJS="$EXTRA_OBJS LYExtern\$o" fi -echo "$as_me:33406: checking if you want to use setfont support" >&5 +echo "$as_me:33561: 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. @@ -33420,7 +33575,7 @@ else use_setfont=no fi; -echo "$as_me:33423: result: $use_setfont" >&5 +echo "$as_me:33578: result: $use_setfont" >&5 echo "${ECHO_T}$use_setfont" >&6 if test $use_setfont = yes ; then case $host_os in @@ -33431,7 +33586,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:33434: checking for $ac_word" >&5 +echo "$as_me:33589: 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 @@ -33448,7 +33603,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:33451: found $ac_dir/$ac_word" >&5 + echo "$as_me:33606: found $ac_dir/$ac_word" >&5 break fi done @@ -33459,10 +33614,10 @@ fi SETFONT=$ac_cv_path_SETFONT if test -n "$SETFONT"; then - echo "$as_me:33462: result: $SETFONT" >&5 + echo "$as_me:33617: result: $SETFONT" >&5 echo "${ECHO_T}$SETFONT" >&6 else - echo "$as_me:33465: result: no" >&5 + echo "$as_me:33620: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -33521,7 +33676,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me:-configure}:33524: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me:-configure}:33679: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define SETFONT_PATH "$cf_path_prog" @@ -33539,19 +33694,19 @@ fi SETFONT=built-in test -n "$verbose" && echo " Assume $host_os has font-switching" 1>&6 -echo "${as_me:-configure}:33542: testing Assume $host_os has font-switching ..." 1>&5 +echo "${as_me:-configure}:33697: 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}:33549: testing Assume $host_os has no font-switching ..." 1>&5 +echo "${as_me:-configure}:33704: testing Assume $host_os has no font-switching ..." 1>&5 ;; esac if test -z "$SETFONT" ; then - { echo "$as_me:33554: WARNING: Cannot find a font-setting program" >&5 + { echo "$as_me:33709: WARNING: Cannot find a font-setting program" >&5 echo "$as_me: WARNING: Cannot find a font-setting program" >&2;} elif test "$SETFONT" != unknown ; then @@ -33562,7 +33717,7 @@ EOF fi fi -echo "$as_me:33565: checking if you want cgi-link support" >&5 +echo "$as_me:33720: 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. @@ -33579,10 +33734,10 @@ EOF else enableval=no fi; -echo "$as_me:33582: result: $enableval" >&5 +echo "$as_me:33737: result: $enableval" >&5 echo "${ECHO_T}$enableval" >&6 -echo "$as_me:33585: checking if you want change-exec support" >&5 +echo "$as_me:33740: 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. @@ -33599,14 +33754,14 @@ else use_change_exec=no fi; -echo "$as_me:33602: result: $use_change_exec" >&5 +echo "$as_me:33757: 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:33609: checking if you want exec-links support" >&5 +echo "$as_me:33764: 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. @@ -33623,14 +33778,14 @@ else use_exec_links=$enableval fi; -echo "$as_me:33626: result: $use_exec_links" >&5 +echo "$as_me:33781: 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:33633: checking if you want exec-scripts support" >&5 +echo "$as_me:33788: 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. @@ -33647,14 +33802,14 @@ else use_exec_scripts=$enableval fi; -echo "$as_me:33650: result: $use_exec_scripts" >&5 +echo "$as_me:33805: 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:33657: checking if you want internal-links feature" >&5 +echo "$as_me:33812: 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. @@ -33671,14 +33826,14 @@ else use_internal_links=no fi; -echo "$as_me:33674: result: $use_internal_links" >&5 +echo "$as_me:33829: 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:33681: checking if you want to fork NSL requests" >&5 +echo "$as_me:33836: 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. @@ -33695,7 +33850,7 @@ else use_nsl_fork=no fi; -echo "$as_me:33698: result: $use_nsl_fork" >&5 +echo "$as_me:33853: result: $use_nsl_fork" >&5 echo "${ECHO_T}$use_nsl_fork" >&6 if test $use_nsl_fork = yes ; then case $host_os in @@ -33716,7 +33871,7 @@ EOF esac fi -echo "$as_me:33719: checking if you want to log URL requests via syslog" >&5 +echo "$as_me:33874: 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. @@ -33733,14 +33888,14 @@ else use_syslog=no fi; -echo "$as_me:33736: result: $use_syslog" >&5 +echo "$as_me:33891: 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:33743: checking if you want to underline links" >&5 +echo "$as_me:33898: 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. @@ -33757,7 +33912,7 @@ else use_underline=no fi; -echo "$as_me:33760: result: $use_underline" >&5 +echo "$as_me:33915: result: $use_underline" >&5 echo "${ECHO_T}$use_underline" >&6 test $use_underline = yes && cat >>confdefs.h <<\EOF @@ -33769,7 +33924,7 @@ cat >>confdefs.h <<\EOF #define UNDERLINE_LINKS 0 EOF -echo "$as_me:33772: checking if help files should be gzip'ed" >&5 +echo "$as_me:33927: 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. @@ -33786,10 +33941,10 @@ else use_gzip_help=no fi; -echo "$as_me:33789: result: $use_gzip_help" >&5 +echo "$as_me:33944: result: $use_gzip_help" >&5 echo "${ECHO_T}$use_gzip_help" >&6 -echo "$as_me:33792: checking if you want to use libbz2 for decompression of some bzip2 files" >&5 +echo "$as_me:33947: 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. @@ -33799,7 +33954,7 @@ if test "${with_bzlib+set}" = set; then else use_bzlib=no fi; -echo "$as_me:33802: result: $use_bzlib" >&5 +echo "$as_me:33957: result: $use_bzlib" >&5 echo "${ECHO_T}$use_bzlib" >&6 if test ".$use_bzlib" != ".no" ; then @@ -33838,7 +33993,7 @@ if test -n "$cf_searchpath/include" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 33841 "configure" +#line 33996 "configure" #include "confdefs.h" #include <stdio.h> int @@ -33850,16 +34005,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:33853: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:34008: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:33856: \$? = $ac_status" >&5 + echo "$as_me:34011: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:33859: \"$ac_try\"") >&5 + { (eval echo "$as_me:34014: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:33862: \$? = $ac_status" >&5 + echo "$as_me:34017: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -33876,7 +34031,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}:33879: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:34034: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -33917,7 +34072,7 @@ if test -n "$cf_searchpath/../include" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 33920 "configure" +#line 34075 "configure" #include "confdefs.h" #include <stdio.h> int @@ -33929,16 +34084,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:33932: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:34087: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:33935: \$? = $ac_status" >&5 + echo "$as_me:34090: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:33938: \"$ac_try\"") >&5 + { (eval echo "$as_me:34093: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:33941: \$? = $ac_status" >&5 + echo "$as_me:34096: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -33955,7 +34110,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}:33958: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:34113: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -33971,7 +34126,7 @@ echo "${as_me:-configure}:33958: testing adding $cf_add_incdir to include-path . fi else -{ { echo "$as_me:33974: error: cannot find under $use_bzlib" >&5 +{ { echo "$as_me:34129: error: cannot find under $use_bzlib" >&5 echo "$as_me: error: cannot find under $use_bzlib" >&2;} { (exit 1); exit 1; }; } fi @@ -33996,7 +34151,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}:33999: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:34154: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -34025,7 +34180,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}:34028: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:34183: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -34034,7 +34189,7 @@ echo "${as_me:-configure}:34028: testing adding $cf_add_libdir to library-path . fi else -{ { echo "$as_me:34037: error: cannot find under $use_bzlib" >&5 +{ { echo "$as_me:34192: error: cannot find under $use_bzlib" >&5 echo "$as_me: error: cannot find under $use_bzlib" >&2;} { (exit 1); exit 1; }; } fi @@ -34048,12 +34203,12 @@ done cf_cv_header_path_bz2= cf_cv_library_path_bz2= -echo "${as_me:-configure}:34051: testing Starting FIND_LINKAGE(bz2,bzlib) ..." 1>&5 +echo "${as_me:-configure}:34206: testing Starting FIND_LINKAGE(bz2,bzlib) ..." 1>&5 cf_save_LIBS="$LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 34056 "configure" +#line 34211 "configure" #include "confdefs.h" #include <stdio.h> @@ -34070,16 +34225,16 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:34073: \"$ac_link\"") >&5 +if { (eval echo "$as_me:34228: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:34076: \$? = $ac_status" >&5 + echo "$as_me:34231: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:34079: \"$ac_try\"") >&5 + { (eval echo "$as_me:34234: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:34082: \$? = $ac_status" >&5 + echo "$as_me:34237: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_find_linkage_bz2=yes @@ -34093,7 +34248,7 @@ cat conftest.$ac_ext >&5 LIBS="-lbz2 $cf_save_LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 34096 "configure" +#line 34251 "configure" #include "confdefs.h" #include <stdio.h> @@ -34110,16 +34265,16 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:34113: \"$ac_link\"") >&5 +if { (eval echo "$as_me:34268: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:34116: \$? = $ac_status" >&5 + echo "$as_me:34271: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:34119: \"$ac_try\"") >&5 + { (eval echo "$as_me:34274: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:34122: \$? = $ac_status" >&5 + echo "$as_me:34277: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_find_linkage_bz2=yes @@ -34136,9 +34291,9 @@ cat conftest.$ac_ext >&5 test -n "$verbose" && echo " find linkage for bz2 library" 1>&6 -echo "${as_me:-configure}:34139: testing find linkage for bz2 library ..." 1>&5 +echo "${as_me:-configure}:34294: testing find linkage for bz2 library ..." 1>&5 -echo "${as_me:-configure}:34141: testing Searching for headers in FIND_LINKAGE(bz2,bzlib) ..." 1>&5 +echo "${as_me:-configure}:34296: testing Searching for headers in FIND_LINKAGE(bz2,bzlib) ..." 1>&5 cf_save_CPPFLAGS="$CPPFLAGS" cf_test_CPPFLAGS="$CPPFLAGS" @@ -34251,11 +34406,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}:34254: testing ... testing $cf_cv_header_path_bz2 ..." 1>&5 +echo "${as_me:-configure}:34409: 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 34258 "configure" +#line 34413 "configure" #include "confdefs.h" #include <stdio.h> @@ -34272,21 +34427,21 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:34275: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:34430: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:34278: \$? = $ac_status" >&5 + echo "$as_me:34433: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:34281: \"$ac_try\"") >&5 + { (eval echo "$as_me:34436: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:34284: \$? = $ac_status" >&5 + echo "$as_me:34439: \$? = $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}:34289: testing ... found bz2 headers in $cf_cv_header_path_bz2 ..." 1>&5 +echo "${as_me:-configure}:34444: testing ... found bz2 headers in $cf_cv_header_path_bz2 ..." 1>&5 cf_cv_find_linkage_bz2=maybe cf_test_CPPFLAGS="$CPPFLAGS" @@ -34304,7 +34459,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "$cf_cv_find_linkage_bz2" = maybe ; then -echo "${as_me:-configure}:34307: testing Searching for bz2 library in FIND_LINKAGE(bz2,bzlib) ..." 1>&5 +echo "${as_me:-configure}:34462: testing Searching for bz2 library in FIND_LINKAGE(bz2,bzlib) ..." 1>&5 cf_save_LIBS="$LIBS" cf_save_LDFLAGS="$LDFLAGS" @@ -34312,7 +34467,7 @@ echo "${as_me:-configure}:34307: testing Searching for bz2 library in FIND_LINKA CPPFLAGS="$cf_test_CPPFLAGS" LIBS="-lbz2 $cf_save_LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 34315 "configure" +#line 34470 "configure" #include "confdefs.h" #include <stdio.h> @@ -34329,21 +34484,21 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:34332: \"$ac_link\"") >&5 +if { (eval echo "$as_me:34487: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:34335: \$? = $ac_status" >&5 + echo "$as_me:34490: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:34338: \"$ac_try\"") >&5 + { (eval echo "$as_me:34493: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:34341: \$? = $ac_status" >&5 + echo "$as_me:34496: \$? = $ac_status" >&5 (exit $ac_status); }; }; then test -n "$verbose" && echo " ... found bz2 library in system" 1>&6 -echo "${as_me:-configure}:34346: testing ... found bz2 library in system ..." 1>&5 +echo "${as_me:-configure}:34501: testing ... found bz2 library in system ..." 1>&5 cf_cv_find_linkage_bz2=yes else @@ -34446,13 +34601,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}:34449: testing ... testing $cf_cv_library_path_bz2 ..." 1>&5 +echo "${as_me:-configure}:34604: 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 34455 "configure" +#line 34610 "configure" #include "confdefs.h" #include <stdio.h> @@ -34469,21 +34624,21 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:34472: \"$ac_link\"") >&5 +if { (eval echo "$as_me:34627: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:34475: \$? = $ac_status" >&5 + echo "$as_me:34630: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:34478: \"$ac_try\"") >&5 + { (eval echo "$as_me:34633: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:34481: \$? = $ac_status" >&5 + echo "$as_me:34636: \$? = $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}:34486: testing ... found bz2 library in $cf_cv_library_path_bz2 ..." 1>&5 +echo "${as_me:-configure}:34641: testing ... found bz2 library in $cf_cv_library_path_bz2 ..." 1>&5 cf_cv_find_linkage_bz2=yes cf_cv_library_file_bz2="-lbz2" @@ -34542,7 +34697,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 34545 "configure" +#line 34700 "configure" #include "confdefs.h" #include <stdio.h> int @@ -34554,16 +34709,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:34557: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:34712: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:34560: \$? = $ac_status" >&5 + echo "$as_me:34715: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:34563: \"$ac_try\"") >&5 + { (eval echo "$as_me:34718: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:34566: \$? = $ac_status" >&5 + echo "$as_me:34721: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -34580,7 +34735,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}:34583: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:34738: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -34614,7 +34769,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}:34617: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:34772: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -34625,7 +34780,7 @@ fi LIBS="-lbz2 $LIBS" else -{ echo "$as_me:34628: WARNING: Cannot find bz2 library" >&5 +{ echo "$as_me:34783: WARNING: Cannot find bz2 library" >&5 echo "$as_me: WARNING: Cannot find bz2 library" >&2;} fi @@ -34636,7 +34791,7 @@ EOF fi -echo "$as_me:34639: checking if you want to use zlib for decompression of some gzip files" >&5 +echo "$as_me:34794: 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. @@ -34646,7 +34801,7 @@ if test "${with_zlib+set}" = set; then else use_zlib=no fi; -echo "$as_me:34649: result: $use_zlib" >&5 +echo "$as_me:34804: result: $use_zlib" >&5 echo "${ECHO_T}$use_zlib" >&6 if test ".$use_zlib" != ".no" ; then @@ -34685,7 +34840,7 @@ if test -n "$cf_searchpath/include" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 34688 "configure" +#line 34843 "configure" #include "confdefs.h" #include <stdio.h> int @@ -34697,16 +34852,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:34700: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:34855: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:34703: \$? = $ac_status" >&5 + echo "$as_me:34858: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:34706: \"$ac_try\"") >&5 + { (eval echo "$as_me:34861: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:34709: \$? = $ac_status" >&5 + echo "$as_me:34864: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -34723,7 +34878,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}:34726: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:34881: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -34764,7 +34919,7 @@ if test -n "$cf_searchpath/../include" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 34767 "configure" +#line 34922 "configure" #include "confdefs.h" #include <stdio.h> int @@ -34776,16 +34931,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:34779: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:34934: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:34782: \$? = $ac_status" >&5 + echo "$as_me:34937: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:34785: \"$ac_try\"") >&5 + { (eval echo "$as_me:34940: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:34788: \$? = $ac_status" >&5 + echo "$as_me:34943: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -34802,7 +34957,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}:34805: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:34960: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -34818,7 +34973,7 @@ echo "${as_me:-configure}:34805: testing adding $cf_add_incdir to include-path . fi else -{ { echo "$as_me:34821: error: cannot find under $use_zlib" >&5 +{ { echo "$as_me:34976: error: cannot find under $use_zlib" >&5 echo "$as_me: error: cannot find under $use_zlib" >&2;} { (exit 1); exit 1; }; } fi @@ -34843,7 +34998,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}:34846: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:35001: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -34872,7 +35027,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}:34875: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:35030: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -34881,7 +35036,7 @@ echo "${as_me:-configure}:34875: testing adding $cf_add_libdir to library-path . fi else -{ { echo "$as_me:34884: error: cannot find under $use_zlib" >&5 +{ { echo "$as_me:35039: error: cannot find under $use_zlib" >&5 echo "$as_me: error: cannot find under $use_zlib" >&2;} { (exit 1); exit 1; }; } fi @@ -34895,12 +35050,12 @@ done cf_cv_header_path_z= cf_cv_library_path_z= -echo "${as_me:-configure}:34898: testing Starting FIND_LINKAGE(z,zlib) ..." 1>&5 +echo "${as_me:-configure}:35053: testing Starting FIND_LINKAGE(z,zlib) ..." 1>&5 cf_save_LIBS="$LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 34903 "configure" +#line 35058 "configure" #include "confdefs.h" #include <zlib.h> @@ -34916,16 +35071,16 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:34919: \"$ac_link\"") >&5 +if { (eval echo "$as_me:35074: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:34922: \$? = $ac_status" >&5 + echo "$as_me:35077: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:34925: \"$ac_try\"") >&5 + { (eval echo "$as_me:35080: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:34928: \$? = $ac_status" >&5 + echo "$as_me:35083: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_find_linkage_z=yes @@ -34939,7 +35094,7 @@ cat conftest.$ac_ext >&5 LIBS="-lz $cf_save_LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 34942 "configure" +#line 35097 "configure" #include "confdefs.h" #include <zlib.h> @@ -34955,16 +35110,16 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:34958: \"$ac_link\"") >&5 +if { (eval echo "$as_me:35113: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:34961: \$? = $ac_status" >&5 + echo "$as_me:35116: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:34964: \"$ac_try\"") >&5 + { (eval echo "$as_me:35119: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:34967: \$? = $ac_status" >&5 + echo "$as_me:35122: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_find_linkage_z=yes @@ -34981,9 +35136,9 @@ cat conftest.$ac_ext >&5 test -n "$verbose" && echo " find linkage for z library" 1>&6 -echo "${as_me:-configure}:34984: testing find linkage for z library ..." 1>&5 +echo "${as_me:-configure}:35139: testing find linkage for z library ..." 1>&5 -echo "${as_me:-configure}:34986: testing Searching for headers in FIND_LINKAGE(z,zlib) ..." 1>&5 +echo "${as_me:-configure}:35141: testing Searching for headers in FIND_LINKAGE(z,zlib) ..." 1>&5 cf_save_CPPFLAGS="$CPPFLAGS" cf_test_CPPFLAGS="$CPPFLAGS" @@ -35096,11 +35251,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}:35099: testing ... testing $cf_cv_header_path_z ..." 1>&5 +echo "${as_me:-configure}:35254: 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 35103 "configure" +#line 35258 "configure" #include "confdefs.h" #include <zlib.h> @@ -35116,21 +35271,21 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:35119: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:35274: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:35122: \$? = $ac_status" >&5 + echo "$as_me:35277: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:35125: \"$ac_try\"") >&5 + { (eval echo "$as_me:35280: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:35128: \$? = $ac_status" >&5 + echo "$as_me:35283: \$? = $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}:35133: testing ... found z headers in $cf_cv_header_path_z ..." 1>&5 +echo "${as_me:-configure}:35288: testing ... found z headers in $cf_cv_header_path_z ..." 1>&5 cf_cv_find_linkage_z=maybe cf_test_CPPFLAGS="$CPPFLAGS" @@ -35148,7 +35303,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "$cf_cv_find_linkage_z" = maybe ; then -echo "${as_me:-configure}:35151: testing Searching for z library in FIND_LINKAGE(z,zlib) ..." 1>&5 +echo "${as_me:-configure}:35306: testing Searching for z library in FIND_LINKAGE(z,zlib) ..." 1>&5 cf_save_LIBS="$LIBS" cf_save_LDFLAGS="$LDFLAGS" @@ -35156,7 +35311,7 @@ echo "${as_me:-configure}:35151: testing Searching for z library in FIND_LINKAGE CPPFLAGS="$cf_test_CPPFLAGS" LIBS="-lz $cf_save_LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 35159 "configure" +#line 35314 "configure" #include "confdefs.h" #include <zlib.h> @@ -35172,21 +35327,21 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:35175: \"$ac_link\"") >&5 +if { (eval echo "$as_me:35330: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:35178: \$? = $ac_status" >&5 + echo "$as_me:35333: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:35181: \"$ac_try\"") >&5 + { (eval echo "$as_me:35336: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:35184: \$? = $ac_status" >&5 + echo "$as_me:35339: \$? = $ac_status" >&5 (exit $ac_status); }; }; then test -n "$verbose" && echo " ... found z library in system" 1>&6 -echo "${as_me:-configure}:35189: testing ... found z library in system ..." 1>&5 +echo "${as_me:-configure}:35344: testing ... found z library in system ..." 1>&5 cf_cv_find_linkage_z=yes else @@ -35289,13 +35444,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}:35292: testing ... testing $cf_cv_library_path_z ..." 1>&5 +echo "${as_me:-configure}:35447: 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 35298 "configure" +#line 35453 "configure" #include "confdefs.h" #include <zlib.h> @@ -35311,21 +35466,21 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:35314: \"$ac_link\"") >&5 +if { (eval echo "$as_me:35469: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:35317: \$? = $ac_status" >&5 + echo "$as_me:35472: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:35320: \"$ac_try\"") >&5 + { (eval echo "$as_me:35475: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:35323: \$? = $ac_status" >&5 + echo "$as_me:35478: \$? = $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}:35328: testing ... found z library in $cf_cv_library_path_z ..." 1>&5 +echo "${as_me:-configure}:35483: testing ... found z library in $cf_cv_library_path_z ..." 1>&5 cf_cv_find_linkage_z=yes cf_cv_library_file_z="-lz" @@ -35384,7 +35539,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 35387 "configure" +#line 35542 "configure" #include "confdefs.h" #include <stdio.h> int @@ -35396,16 +35551,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:35399: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:35554: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:35402: \$? = $ac_status" >&5 + echo "$as_me:35557: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:35405: \"$ac_try\"") >&5 + { (eval echo "$as_me:35560: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:35408: \$? = $ac_status" >&5 + echo "$as_me:35563: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -35422,7 +35577,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}:35425: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:35580: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -35456,7 +35611,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}:35459: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:35614: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -35467,7 +35622,7 @@ fi LIBS="-lz $LIBS" else -{ echo "$as_me:35470: WARNING: Cannot find z library" >&5 +{ echo "$as_me:35625: WARNING: Cannot find z library" >&5 echo "$as_me: WARNING: Cannot find z library" >&2;} fi @@ -35476,13 +35631,13 @@ for ac_func in \ do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` -echo "$as_me:35479: checking for $ac_func" >&5 +echo "$as_me:35634: 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 35485 "configure" +#line 35640 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. */ @@ -35513,16 +35668,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:35516: \"$ac_link\"") >&5 +if { (eval echo "$as_me:35671: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:35519: \$? = $ac_status" >&5 + echo "$as_me:35674: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:35522: \"$ac_try\"") >&5 + { (eval echo "$as_me:35677: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:35525: \$? = $ac_status" >&5 + echo "$as_me:35680: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else @@ -35532,7 +35687,7 @@ eval "$as_ac_var=no" fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:35535: result: `eval echo '${'$as_ac_var'}'`" >&5 +echo "$as_me:35690: 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 @@ -35549,7 +35704,7 @@ EOF fi -echo "$as_me:35552: checking if you want to exclude FINGER code" >&5 +echo "$as_me:35707: 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. @@ -35566,14 +35721,14 @@ else use_finger=no fi; -echo "$as_me:35569: result: $use_finger" >&5 +echo "$as_me:35724: 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:35576: checking if you want to exclude GOPHER code" >&5 +echo "$as_me:35731: 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. @@ -35590,14 +35745,14 @@ else use_gopher=no fi; -echo "$as_me:35593: result: $use_gopher" >&5 +echo "$as_me:35748: 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:35600: checking if you want to exclude NEWS code" >&5 +echo "$as_me:35755: 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. @@ -35614,14 +35769,14 @@ else use_news=no fi; -echo "$as_me:35617: result: $use_news" >&5 +echo "$as_me:35772: 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:35624: checking if you want to exclude FTP code" >&5 +echo "$as_me:35779: 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. @@ -35638,14 +35793,14 @@ else use_ftp=no fi; -echo "$as_me:35641: result: $use_ftp" >&5 +echo "$as_me:35796: 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:35648: checking if you want to include WAIS code" >&5 +echo "$as_me:35803: 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. @@ -35662,13 +35817,13 @@ else use_wais=no fi; -echo "$as_me:35665: result: $use_wais" >&5 +echo "$as_me:35820: result: $use_wais" >&5 echo "${ECHO_T}$use_wais" >&6 MAKE_WAIS="#" if test $use_wais != "no" then - echo "$as_me:35671: checking for fs_free in -lwais" >&5 + echo "$as_me:35826: 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 @@ -35676,7 +35831,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lwais $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 35679 "configure" +#line 35834 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -35695,16 +35850,16 @@ fs_free (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:35698: \"$ac_link\"") >&5 +if { (eval echo "$as_me:35853: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:35701: \$? = $ac_status" >&5 + echo "$as_me:35856: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:35704: \"$ac_try\"") >&5 + { (eval echo "$as_me:35859: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:35707: \$? = $ac_status" >&5 + echo "$as_me:35862: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_wais_fs_free=yes else @@ -35715,18 +35870,18 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:35718: result: $ac_cv_lib_wais_fs_free" >&5 +echo "$as_me:35873: 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:35722: checking if -lm needed for math functions" >&5 +echo "$as_me:35877: 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 35729 "configure" +#line 35884 "configure" #include "confdefs.h" #include <stdio.h> @@ -35741,16 +35896,16 @@ double x = rand(); printf("result = %g\n", sin(x)) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:35744: \"$ac_link\"") >&5 +if { (eval echo "$as_me:35899: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:35747: \$? = $ac_status" >&5 + echo "$as_me:35902: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:35750: \"$ac_try\"") >&5 + { (eval echo "$as_me:35905: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:35753: \$? = $ac_status" >&5 + echo "$as_me:35908: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_need_libm=no else @@ -35760,7 +35915,7 @@ cf_cv_need_libm=yes fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:35763: result: $cf_cv_need_libm" >&5 +echo "$as_me:35918: result: $cf_cv_need_libm" >&5 echo "${ECHO_T}$cf_cv_need_libm" >&6 if test "$cf_cv_need_libm" = yes then @@ -35774,23 +35929,23 @@ fi for ac_header in wais.h do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` -echo "$as_me:35777: checking for $ac_header" >&5 +echo "$as_me:35932: 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 35783 "configure" +#line 35938 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:35787: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:35942: \"$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:35793: \$? = $ac_status" >&5 + echo "$as_me:35948: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -35809,7 +35964,7 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:35812: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:35967: 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 @@ -35822,7 +35977,7 @@ done MAKE_WAIS= else - { echo "$as_me:35825: WARNING: could not find WAIS library" >&5 + { echo "$as_me:35980: WARNING: could not find WAIS library" >&5 echo "$as_me: WARNING: could not find WAIS library" >&2;} fi @@ -35830,7 +35985,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:35833: checking if directory-editor code should be used" >&5 +echo "$as_me:35988: 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. @@ -35847,7 +36002,7 @@ else use_dired=yes fi; -echo "$as_me:35850: result: $use_dired" >&5 +echo "$as_me:36005: result: $use_dired" >&5 echo "${ECHO_T}$use_dired" >&6 if test ".$use_dired" != ".no" ; then @@ -35857,7 +36012,7 @@ cat >>confdefs.h <<\EOF #define DIRED_SUPPORT 1 EOF - echo "$as_me:35860: checking if you wish to allow extracting from archives via DirEd" >&5 + echo "$as_me:36015: 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. @@ -35874,10 +36029,10 @@ EOF else enableval=yes fi; - echo "$as_me:35877: result: $enableval" >&5 + echo "$as_me:36032: result: $enableval" >&5 echo "${ECHO_T}$enableval" >&6 - echo "$as_me:35880: checking if DirEd mode should override keys" >&5 + echo "$as_me:36035: 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. @@ -35901,10 +36056,10 @@ cat >>confdefs.h <<\EOF EOF fi; - echo "$as_me:35904: result: $enableval" >&5 + echo "$as_me:36059: result: $enableval" >&5 echo "${ECHO_T}$enableval" >&6 - echo "$as_me:35907: checking if you wish to allow permissions commands via DirEd" >&5 + echo "$as_me:36062: 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. @@ -35928,10 +36083,10 @@ cat >>confdefs.h <<\EOF EOF fi; - echo "$as_me:35931: result: $enableval" >&5 + echo "$as_me:36086: result: $enableval" >&5 echo "${ECHO_T}$enableval" >&6 - echo "$as_me:35934: checking if you wish to allow executable-permission commands via DirEd" >&5 + echo "$as_me:36089: 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. @@ -35948,10 +36103,10 @@ EOF else enableval=yes fi; - echo "$as_me:35951: result: $enableval" >&5 + echo "$as_me:36106: result: $enableval" >&5 echo "${ECHO_T}$enableval" >&6 - echo "$as_me:35954: checking if you wish to allow \"tar\" commands from DirEd" >&5 + echo "$as_me:36109: 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. @@ -35975,10 +36130,10 @@ cat >>confdefs.h <<\EOF EOF fi; - echo "$as_me:35978: result: $enableval" >&5 + echo "$as_me:36133: result: $enableval" >&5 echo "${ECHO_T}$enableval" >&6 - echo "$as_me:35981: checking if you wish to allow \"uudecode\" commands from DirEd" >&5 + echo "$as_me:36136: 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. @@ -36002,10 +36157,10 @@ cat >>confdefs.h <<\EOF EOF fi; - echo "$as_me:36005: result: $enableval" >&5 + echo "$as_me:36160: result: $enableval" >&5 echo "${ECHO_T}$enableval" >&6 - echo "$as_me:36008: checking if you wish to allow \"zip\" and \"unzip\" commands from DirEd" >&5 + echo "$as_me:36163: 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. @@ -36029,10 +36184,10 @@ cat >>confdefs.h <<\EOF EOF fi; - echo "$as_me:36032: result: $enableval" >&5 + echo "$as_me:36187: result: $enableval" >&5 echo "${ECHO_T}$enableval" >&6 - echo "$as_me:36035: checking if you wish to allow \"gzip\" and \"gunzip\" commands from DirEd" >&5 + echo "$as_me:36190: 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. @@ -36056,11 +36211,11 @@ cat >>confdefs.h <<\EOF EOF fi; - echo "$as_me:36059: result: $enableval" >&5 + echo "$as_me:36214: result: $enableval" >&5 echo "${ECHO_T}$enableval" >&6 fi -echo "$as_me:36063: checking if you want long-directory listings" >&5 +echo "$as_me:36218: 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. @@ -36084,10 +36239,10 @@ cat >>confdefs.h <<\EOF EOF fi; -echo "$as_me:36087: result: $enableval" >&5 +echo "$as_me:36242: result: $enableval" >&5 echo "${ECHO_T}$enableval" >&6 -echo "$as_me:36090: checking if parent-directory references are permitted" >&5 +echo "$as_me:36245: 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. @@ -36104,7 +36259,7 @@ EOF else enableval=yes fi; -echo "$as_me:36107: result: $enableval" >&5 +echo "$as_me:36262: result: $enableval" >&5 echo "${ECHO_T}$enableval" >&6 test -z "$TELNET" && TELNET=telnet @@ -36112,7 +36267,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:36115: checking for $ac_word" >&5 +echo "$as_me:36270: 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 @@ -36129,7 +36284,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:36132: found $ac_dir/$ac_word" >&5 + echo "$as_me:36287: found $ac_dir/$ac_word" >&5 break fi done @@ -36140,10 +36295,10 @@ fi TELNET=$ac_cv_path_TELNET if test -n "$TELNET"; then - echo "$as_me:36143: result: $TELNET" >&5 + echo "$as_me:36298: result: $TELNET" >&5 echo "${ECHO_T}$TELNET" >&6 else - echo "$as_me:36146: result: no" >&5 + echo "$as_me:36301: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -36202,7 +36357,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me:-configure}:36205: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me:-configure}:36360: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define TELNET_PATH "$cf_path_prog" @@ -36220,7 +36375,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:36223: checking for $ac_word" >&5 +echo "$as_me:36378: 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 @@ -36237,7 +36392,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:36240: found $ac_dir/$ac_word" >&5 + echo "$as_me:36395: found $ac_dir/$ac_word" >&5 break fi done @@ -36248,10 +36403,10 @@ fi TN3270=$ac_cv_path_TN3270 if test -n "$TN3270"; then - echo "$as_me:36251: result: $TN3270" >&5 + echo "$as_me:36406: result: $TN3270" >&5 echo "${ECHO_T}$TN3270" >&6 else - echo "$as_me:36254: result: no" >&5 + echo "$as_me:36409: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -36310,7 +36465,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me:-configure}:36313: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me:-configure}:36468: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define TN3270_PATH "$cf_path_prog" @@ -36328,7 +36483,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:36331: checking for $ac_word" >&5 +echo "$as_me:36486: 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 @@ -36345,7 +36500,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:36348: found $ac_dir/$ac_word" >&5 + echo "$as_me:36503: found $ac_dir/$ac_word" >&5 break fi done @@ -36356,10 +36511,10 @@ fi RLOGIN=$ac_cv_path_RLOGIN if test -n "$RLOGIN"; then - echo "$as_me:36359: result: $RLOGIN" >&5 + echo "$as_me:36514: result: $RLOGIN" >&5 echo "${ECHO_T}$RLOGIN" >&6 else - echo "$as_me:36362: result: no" >&5 + echo "$as_me:36517: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -36418,7 +36573,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me:-configure}:36421: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me:-configure}:36576: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define RLOGIN_PATH "$cf_path_prog" @@ -36436,7 +36591,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:36439: checking for $ac_word" >&5 +echo "$as_me:36594: 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 @@ -36453,7 +36608,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:36456: found $ac_dir/$ac_word" >&5 + echo "$as_me:36611: found $ac_dir/$ac_word" >&5 break fi done @@ -36464,10 +36619,10 @@ fi MV=$ac_cv_path_MV if test -n "$MV"; then - echo "$as_me:36467: result: $MV" >&5 + echo "$as_me:36622: result: $MV" >&5 echo "${ECHO_T}$MV" >&6 else - echo "$as_me:36470: result: no" >&5 + echo "$as_me:36625: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -36526,7 +36681,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me:-configure}:36529: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me:-configure}:36684: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define MV_PATH "$cf_path_prog" @@ -36544,7 +36699,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:36547: checking for $ac_word" >&5 +echo "$as_me:36702: 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 @@ -36561,7 +36716,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:36564: found $ac_dir/$ac_word" >&5 + echo "$as_me:36719: found $ac_dir/$ac_word" >&5 break fi done @@ -36572,10 +36727,10 @@ fi GZIP=$ac_cv_path_GZIP if test -n "$GZIP"; then - echo "$as_me:36575: result: $GZIP" >&5 + echo "$as_me:36730: result: $GZIP" >&5 echo "${ECHO_T}$GZIP" >&6 else - echo "$as_me:36578: result: no" >&5 + echo "$as_me:36733: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -36634,7 +36789,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me:-configure}:36637: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me:-configure}:36792: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define GZIP_PATH "$cf_path_prog" @@ -36652,7 +36807,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:36655: checking for $ac_word" >&5 +echo "$as_me:36810: 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 @@ -36669,7 +36824,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:36672: found $ac_dir/$ac_word" >&5 + echo "$as_me:36827: found $ac_dir/$ac_word" >&5 break fi done @@ -36680,10 +36835,10 @@ fi UNCOMPRESS=$ac_cv_path_UNCOMPRESS if test -n "$UNCOMPRESS"; then - echo "$as_me:36683: result: $UNCOMPRESS" >&5 + echo "$as_me:36838: result: $UNCOMPRESS" >&5 echo "${ECHO_T}$UNCOMPRESS" >&6 else - echo "$as_me:36686: result: no" >&5 + echo "$as_me:36841: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -36742,7 +36897,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me:-configure}:36745: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me:-configure}:36900: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define UNCOMPRESS_PATH "$cf_path_prog" @@ -36760,7 +36915,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:36763: checking for $ac_word" >&5 +echo "$as_me:36918: 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 @@ -36777,7 +36932,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:36780: found $ac_dir/$ac_word" >&5 + echo "$as_me:36935: found $ac_dir/$ac_word" >&5 break fi done @@ -36788,10 +36943,10 @@ fi UNZIP=$ac_cv_path_UNZIP if test -n "$UNZIP"; then - echo "$as_me:36791: result: $UNZIP" >&5 + echo "$as_me:36946: result: $UNZIP" >&5 echo "${ECHO_T}$UNZIP" >&6 else - echo "$as_me:36794: result: no" >&5 + echo "$as_me:36949: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -36850,7 +37005,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me:-configure}:36853: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me:-configure}:37008: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define UNZIP_PATH "$cf_path_prog" @@ -36868,7 +37023,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:36871: checking for $ac_word" >&5 +echo "$as_me:37026: 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 @@ -36885,7 +37040,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:36888: found $ac_dir/$ac_word" >&5 + echo "$as_me:37043: found $ac_dir/$ac_word" >&5 break fi done @@ -36896,10 +37051,10 @@ fi BZIP2=$ac_cv_path_BZIP2 if test -n "$BZIP2"; then - echo "$as_me:36899: result: $BZIP2" >&5 + echo "$as_me:37054: result: $BZIP2" >&5 echo "${ECHO_T}$BZIP2" >&6 else - echo "$as_me:36902: result: no" >&5 + echo "$as_me:37057: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -36958,7 +37113,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me:-configure}:36961: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me:-configure}:37116: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define BZIP2_PATH "$cf_path_prog" @@ -36976,7 +37131,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:36979: checking for $ac_word" >&5 +echo "$as_me:37134: 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 @@ -36993,7 +37148,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:36996: found $ac_dir/$ac_word" >&5 + echo "$as_me:37151: found $ac_dir/$ac_word" >&5 break fi done @@ -37004,10 +37159,10 @@ fi TAR=$ac_cv_path_TAR if test -n "$TAR"; then - echo "$as_me:37007: result: $TAR" >&5 + echo "$as_me:37162: result: $TAR" >&5 echo "${ECHO_T}$TAR" >&6 else - echo "$as_me:37010: result: no" >&5 + echo "$as_me:37165: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -37066,7 +37221,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me:-configure}:37069: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me:-configure}:37224: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define TAR_PATH "$cf_path_prog" @@ -37124,7 +37279,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:37127: checking for $ac_word" >&5 +echo "$as_me:37282: 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 @@ -37141,7 +37296,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:37144: found $ac_dir/$ac_word" >&5 + echo "$as_me:37299: found $ac_dir/$ac_word" >&5 break fi done @@ -37152,10 +37307,10 @@ fi COMPRESS=$ac_cv_path_COMPRESS if test -n "$COMPRESS"; then - echo "$as_me:37155: result: $COMPRESS" >&5 + echo "$as_me:37310: result: $COMPRESS" >&5 echo "${ECHO_T}$COMPRESS" >&6 else - echo "$as_me:37158: result: no" >&5 + echo "$as_me:37313: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -37214,7 +37369,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me:-configure}:37217: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me:-configure}:37372: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define COMPRESS_PATH "$cf_path_prog" @@ -37232,7 +37387,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:37235: checking for $ac_word" >&5 +echo "$as_me:37390: 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 @@ -37249,7 +37404,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:37252: found $ac_dir/$ac_word" >&5 + echo "$as_me:37407: found $ac_dir/$ac_word" >&5 break fi done @@ -37260,10 +37415,10 @@ fi RM=$ac_cv_path_RM if test -n "$RM"; then - echo "$as_me:37263: result: $RM" >&5 + echo "$as_me:37418: result: $RM" >&5 echo "${ECHO_T}$RM" >&6 else - echo "$as_me:37266: result: no" >&5 + echo "$as_me:37421: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -37322,7 +37477,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me:-configure}:37325: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me:-configure}:37480: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define RM_PATH "$cf_path_prog" @@ -37340,7 +37495,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:37343: checking for $ac_word" >&5 +echo "$as_me:37498: 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 @@ -37357,7 +37512,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:37360: found $ac_dir/$ac_word" >&5 + echo "$as_me:37515: found $ac_dir/$ac_word" >&5 break fi done @@ -37368,10 +37523,10 @@ fi UUDECODE=$ac_cv_path_UUDECODE if test -n "$UUDECODE"; then - echo "$as_me:37371: result: $UUDECODE" >&5 + echo "$as_me:37526: result: $UUDECODE" >&5 echo "${ECHO_T}$UUDECODE" >&6 else - echo "$as_me:37374: result: no" >&5 + echo "$as_me:37529: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -37430,7 +37585,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me:-configure}:37433: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me:-configure}:37588: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define UUDECODE_PATH "$cf_path_prog" @@ -37448,7 +37603,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:37451: checking for $ac_word" >&5 +echo "$as_me:37606: 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 @@ -37465,7 +37620,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:37468: found $ac_dir/$ac_word" >&5 + echo "$as_me:37623: found $ac_dir/$ac_word" >&5 break fi done @@ -37476,10 +37631,10 @@ fi ZCAT=$ac_cv_path_ZCAT if test -n "$ZCAT"; then - echo "$as_me:37479: result: $ZCAT" >&5 + echo "$as_me:37634: result: $ZCAT" >&5 echo "${ECHO_T}$ZCAT" >&6 else - echo "$as_me:37482: result: no" >&5 + echo "$as_me:37637: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -37538,7 +37693,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me:-configure}:37541: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me:-configure}:37696: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define ZCAT_PATH "$cf_path_prog" @@ -37556,7 +37711,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:37559: checking for $ac_word" >&5 +echo "$as_me:37714: 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 @@ -37573,7 +37728,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:37576: found $ac_dir/$ac_word" >&5 + echo "$as_me:37731: found $ac_dir/$ac_word" >&5 break fi done @@ -37584,10 +37739,10 @@ fi ZIP=$ac_cv_path_ZIP if test -n "$ZIP"; then - echo "$as_me:37587: result: $ZIP" >&5 + echo "$as_me:37742: result: $ZIP" >&5 echo "${ECHO_T}$ZIP" >&6 else - echo "$as_me:37590: result: no" >&5 + echo "$as_me:37745: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -37646,7 +37801,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me:-configure}:37649: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me:-configure}:37804: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define ZIP_PATH "$cf_path_prog" @@ -37674,7 +37829,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:37677: checking for $ac_word" >&5 +echo "$as_me:37832: 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 @@ -37691,7 +37846,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:37694: found $ac_dir/$ac_word" >&5 + echo "$as_me:37849: found $ac_dir/$ac_word" >&5 break fi done @@ -37702,10 +37857,10 @@ fi INSTALL=$ac_cv_path_INSTALL if test -n "$INSTALL"; then - echo "$as_me:37705: result: $INSTALL" >&5 + echo "$as_me:37860: result: $INSTALL" >&5 echo "${ECHO_T}$INSTALL" >&6 else - echo "$as_me:37708: result: no" >&5 + echo "$as_me:37863: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -37764,7 +37919,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me:-configure}:37767: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me:-configure}:37922: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define INSTALL_PATH "$cf_path_prog" @@ -37791,7 +37946,198 @@ fi if test $cf_cv_screen = pdcurses ; then - echo "$as_me:37794: checking for X" >&5 + case $host_os in #(vi + mingw*) + +echo "$as_me:37952: 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 +else + ac_check_lib_save_LIBS=$LIBS +LIBS="-lpdcurses $LIBS" +cat >conftest.$ac_ext <<_ACEOF +#line 37960 "configure" +#include "confdefs.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 initscr (); +int +main () +{ +initscr (); + ; + return 0; +} +_ACEOF +rm -f conftest.$ac_objext conftest$ac_exeext +if { (eval echo "$as_me:37979: \"$ac_link\"") >&5 + (eval $ac_link) 2>&5 + ac_status=$? + echo "$as_me:37982: \$? = $ac_status" >&5 + (exit $ac_status); } && + { ac_try='test -s conftest$ac_exeext' + { (eval echo "$as_me:37985: \"$ac_try\"") >&5 + (eval $ac_try) 2>&5 + ac_status=$? + echo "$as_me:37988: \$? = $ac_status" >&5 + (exit $ac_status); }; }; then + ac_cv_lib_pdcurses_initscr=yes +else + echo "$as_me: failed program was:" >&5 +cat conftest.$ac_ext >&5 +ac_cv_lib_pdcurses_initscr=no +fi +rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext +LIBS=$ac_check_lib_save_LIBS +fi +echo "$as_me:37999: 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 + + LIBS="-lpdcurses $LIBS" + cf_cv_term_header=no + cf_cv_unctrl_header=no + echo "$as_me:38006: 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 38012 "configure" +#include "confdefs.h" +/* System header to define __stub macros and hopefully few prototypes, + which can conflict with char winwstr (); 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 winwstr (); +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_winwstr) || defined (__stub___winwstr) +choke me +#else +f = winwstr; /* 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:38043: \"$ac_link\"") >&5 + (eval $ac_link) 2>&5 + ac_status=$? + echo "$as_me:38046: \$? = $ac_status" >&5 + (exit $ac_status); } && + { ac_try='test -s conftest$ac_exeext' + { (eval echo "$as_me:38049: \"$ac_try\"") >&5 + (eval $ac_try) 2>&5 + ac_status=$? + echo "$as_me:38052: \$? = $ac_status" >&5 + (exit $ac_status); }; }; then + ac_cv_func_winwstr=yes +else + echo "$as_me: failed program was:" >&5 +cat conftest.$ac_ext >&5 +ac_cv_func_winwstr=no +fi +rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext +fi +echo "$as_me:38062: 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 +#define PDC_WIDE 1 +EOF + +fi + + echo "$as_me:38071: 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 38077 "configure" +#include "confdefs.h" +/* System header to define __stub macros and hopefully few prototypes, + which can conflict with char pdcurses_dll_iname (); 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 pdcurses_dll_iname (); +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_pdcurses_dll_iname) || defined (__stub___pdcurses_dll_iname) +choke me +#else +f = pdcurses_dll_iname; /* 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:38108: \"$ac_link\"") >&5 + (eval $ac_link) 2>&5 + ac_status=$? + echo "$as_me:38111: \$? = $ac_status" >&5 + (exit $ac_status); } && + { ac_try='test -s conftest$ac_exeext' + { (eval echo "$as_me:38114: \"$ac_try\"") >&5 + (eval $ac_try) 2>&5 + ac_status=$? + echo "$as_me:38117: \$? = $ac_status" >&5 + (exit $ac_status); }; }; then + ac_cv_func_pdcurses_dll_iname=yes +else + echo "$as_me: failed program was:" >&5 +cat conftest.$ac_ext >&5 +ac_cv_func_pdcurses_dll_iname=no +fi +rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext +fi +echo "$as_me:38127: 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 +#define PDC_DLL_BUILD 1 +EOF + +fi + +fi + + ;; + *) #(vi + echo "$as_me:38140: checking for X" >&5 echo $ECHO_N "checking for X... $ECHO_C" >&6 # Check whether --with-x or --without-x was given. @@ -37888,17 +38234,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 37891 "configure" +#line 38237 "configure" #include "confdefs.h" #include <X11/Intrinsic.h> _ACEOF -if { (eval echo "$as_me:37895: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:38241: \"$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:37901: \$? = $ac_status" >&5 + echo "$as_me:38247: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -37931,7 +38277,7 @@ if test "$ac_x_libraries" = no; then ac_save_LIBS=$LIBS LIBS="-lXt $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 37934 "configure" +#line 38280 "configure" #include "confdefs.h" #include <X11/Intrinsic.h> int @@ -37943,16 +38289,16 @@ XtMalloc (0) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:37946: \"$ac_link\"") >&5 +if { (eval echo "$as_me:38292: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:37949: \$? = $ac_status" >&5 + echo "$as_me:38295: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:37952: \"$ac_try\"") >&5 + { (eval echo "$as_me:38298: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:37955: \$? = $ac_status" >&5 + echo "$as_me:38301: \$? = $ac_status" >&5 (exit $ac_status); }; }; then LIBS=$ac_save_LIBS # We can link X programs with no special library path. @@ -37990,7 +38336,7 @@ fi fi # $with_x != no if test "$have_x" != yes; then - echo "$as_me:37993: result: $have_x" >&5 + echo "$as_me:38339: result: $have_x" >&5 echo "${ECHO_T}$have_x" >&6 no_x=yes else @@ -38000,7 +38346,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:38003: result: libraries $x_libraries, headers $x_includes" >&5 + echo "$as_me:38349: result: libraries $x_libraries, headers $x_includes" >&5 echo "${ECHO_T}libraries $x_libraries, headers $x_includes" >&6 fi @@ -38024,11 +38370,11 @@ else # others require no space. Words are not sufficient . . . . case `(uname -sr) 2>/dev/null` in "SunOS 5"*) - echo "$as_me:38027: checking whether -R must be followed by a space" >&5 + echo "$as_me:38373: 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 38031 "configure" +#line 38377 "configure" #include "confdefs.h" int @@ -38040,16 +38386,16 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:38043: \"$ac_link\"") >&5 +if { (eval echo "$as_me:38389: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:38046: \$? = $ac_status" >&5 + echo "$as_me:38392: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:38049: \"$ac_try\"") >&5 + { (eval echo "$as_me:38395: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:38052: \$? = $ac_status" >&5 + echo "$as_me:38398: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_R_nospace=yes else @@ -38059,13 +38405,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:38062: result: no" >&5 + echo "$as_me:38408: 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 38068 "configure" +#line 38414 "configure" #include "confdefs.h" int @@ -38077,16 +38423,16 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:38080: \"$ac_link\"") >&5 +if { (eval echo "$as_me:38426: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:38083: \$? = $ac_status" >&5 + echo "$as_me:38429: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:38086: \"$ac_try\"") >&5 + { (eval echo "$as_me:38432: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:38089: \$? = $ac_status" >&5 + echo "$as_me:38435: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_R_space=yes else @@ -38096,11 +38442,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:38099: result: yes" >&5 + echo "$as_me:38445: result: yes" >&5 echo "${ECHO_T}yes" >&6 X_LIBS="$X_LIBS -R $x_libraries" else - echo "$as_me:38103: result: neither works" >&5 + echo "$as_me:38449: result: neither works" >&5 echo "${ECHO_T}neither works" >&6 fi fi @@ -38120,7 +38466,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 38123 "configure" +#line 38469 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -38139,22 +38485,22 @@ XOpenDisplay (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:38142: \"$ac_link\"") >&5 +if { (eval echo "$as_me:38488: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:38145: \$? = $ac_status" >&5 + echo "$as_me:38491: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:38148: \"$ac_try\"") >&5 + { (eval echo "$as_me:38494: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:38151: \$? = $ac_status" >&5 + echo "$as_me:38497: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 -echo "$as_me:38157: checking for dnet_ntoa in -ldnet" >&5 +echo "$as_me:38503: 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 @@ -38162,7 +38508,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-ldnet $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 38165 "configure" +#line 38511 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -38181,16 +38527,16 @@ dnet_ntoa (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:38184: \"$ac_link\"") >&5 +if { (eval echo "$as_me:38530: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:38187: \$? = $ac_status" >&5 + echo "$as_me:38533: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:38190: \"$ac_try\"") >&5 + { (eval echo "$as_me:38536: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:38193: \$? = $ac_status" >&5 + echo "$as_me:38539: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_dnet_dnet_ntoa=yes else @@ -38201,14 +38547,14 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:38204: result: $ac_cv_lib_dnet_dnet_ntoa" >&5 +echo "$as_me:38550: 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:38211: checking for dnet_ntoa in -ldnet_stub" >&5 + echo "$as_me:38557: 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 @@ -38216,7 +38562,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-ldnet_stub $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 38219 "configure" +#line 38565 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -38235,16 +38581,16 @@ dnet_ntoa (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:38238: \"$ac_link\"") >&5 +if { (eval echo "$as_me:38584: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:38241: \$? = $ac_status" >&5 + echo "$as_me:38587: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:38244: \"$ac_try\"") >&5 + { (eval echo "$as_me:38590: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:38247: \$? = $ac_status" >&5 + echo "$as_me:38593: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_dnet_stub_dnet_ntoa=yes else @@ -38255,7 +38601,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:38258: result: $ac_cv_lib_dnet_stub_dnet_ntoa" >&5 +echo "$as_me:38604: 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" @@ -38274,13 +38620,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:38277: checking for gethostbyname" >&5 + echo "$as_me:38623: 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 38283 "configure" +#line 38629 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char gethostbyname (); below. */ @@ -38311,16 +38657,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:38314: \"$ac_link\"") >&5 +if { (eval echo "$as_me:38660: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:38317: \$? = $ac_status" >&5 + echo "$as_me:38663: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:38320: \"$ac_try\"") >&5 + { (eval echo "$as_me:38666: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:38323: \$? = $ac_status" >&5 + echo "$as_me:38669: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_gethostbyname=yes else @@ -38330,11 +38676,11 @@ ac_cv_func_gethostbyname=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:38333: result: $ac_cv_func_gethostbyname" >&5 +echo "$as_me:38679: 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:38337: checking for gethostbyname in -lnsl" >&5 + echo "$as_me:38683: 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 @@ -38342,7 +38688,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lnsl $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 38345 "configure" +#line 38691 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -38361,16 +38707,16 @@ gethostbyname (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:38364: \"$ac_link\"") >&5 +if { (eval echo "$as_me:38710: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:38367: \$? = $ac_status" >&5 + echo "$as_me:38713: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:38370: \"$ac_try\"") >&5 + { (eval echo "$as_me:38716: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:38373: \$? = $ac_status" >&5 + echo "$as_me:38719: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_nsl_gethostbyname=yes else @@ -38381,14 +38727,14 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:38384: result: $ac_cv_lib_nsl_gethostbyname" >&5 +echo "$as_me:38730: 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:38391: checking for gethostbyname in -lbsd" >&5 + echo "$as_me:38737: 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 @@ -38396,7 +38742,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lbsd $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 38399 "configure" +#line 38745 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -38415,16 +38761,16 @@ gethostbyname (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:38418: \"$ac_link\"") >&5 +if { (eval echo "$as_me:38764: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:38421: \$? = $ac_status" >&5 + echo "$as_me:38767: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:38424: \"$ac_try\"") >&5 + { (eval echo "$as_me:38770: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:38427: \$? = $ac_status" >&5 + echo "$as_me:38773: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_bsd_gethostbyname=yes else @@ -38435,7 +38781,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:38438: result: $ac_cv_lib_bsd_gethostbyname" >&5 +echo "$as_me:38784: 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" @@ -38451,13 +38797,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:38454: checking for connect" >&5 + echo "$as_me:38800: 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 38460 "configure" +#line 38806 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char connect (); below. */ @@ -38488,16 +38834,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:38491: \"$ac_link\"") >&5 +if { (eval echo "$as_me:38837: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:38494: \$? = $ac_status" >&5 + echo "$as_me:38840: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:38497: \"$ac_try\"") >&5 + { (eval echo "$as_me:38843: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:38500: \$? = $ac_status" >&5 + echo "$as_me:38846: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_connect=yes else @@ -38507,11 +38853,11 @@ ac_cv_func_connect=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:38510: result: $ac_cv_func_connect" >&5 +echo "$as_me:38856: 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:38514: checking for connect in -lsocket" >&5 + echo "$as_me:38860: 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 @@ -38519,7 +38865,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lsocket $X_EXTRA_LIBS $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 38522 "configure" +#line 38868 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -38538,16 +38884,16 @@ connect (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:38541: \"$ac_link\"") >&5 +if { (eval echo "$as_me:38887: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:38544: \$? = $ac_status" >&5 + echo "$as_me:38890: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:38547: \"$ac_try\"") >&5 + { (eval echo "$as_me:38893: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:38550: \$? = $ac_status" >&5 + echo "$as_me:38896: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_socket_connect=yes else @@ -38558,7 +38904,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:38561: result: $ac_cv_lib_socket_connect" >&5 +echo "$as_me:38907: 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" @@ -38567,13 +38913,13 @@ fi fi # Guillermo Gomez says -lposix is necessary on A/UX. - echo "$as_me:38570: checking for remove" >&5 + echo "$as_me:38916: 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 38576 "configure" +#line 38922 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char remove (); below. */ @@ -38604,16 +38950,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:38607: \"$ac_link\"") >&5 +if { (eval echo "$as_me:38953: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:38610: \$? = $ac_status" >&5 + echo "$as_me:38956: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:38613: \"$ac_try\"") >&5 + { (eval echo "$as_me:38959: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:38616: \$? = $ac_status" >&5 + echo "$as_me:38962: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_remove=yes else @@ -38623,11 +38969,11 @@ ac_cv_func_remove=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:38626: result: $ac_cv_func_remove" >&5 +echo "$as_me:38972: 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:38630: checking for remove in -lposix" >&5 + echo "$as_me:38976: 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 @@ -38635,7 +38981,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lposix $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 38638 "configure" +#line 38984 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -38654,16 +39000,16 @@ remove (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:38657: \"$ac_link\"") >&5 +if { (eval echo "$as_me:39003: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:38660: \$? = $ac_status" >&5 + echo "$as_me:39006: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:38663: \"$ac_try\"") >&5 + { (eval echo "$as_me:39009: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:38666: \$? = $ac_status" >&5 + echo "$as_me:39012: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_posix_remove=yes else @@ -38674,7 +39020,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:38677: result: $ac_cv_lib_posix_remove" >&5 +echo "$as_me:39023: 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" @@ -38683,13 +39029,13 @@ fi fi # BSDI BSD/OS 2.1 needs -lipc for XOpenDisplay. - echo "$as_me:38686: checking for shmat" >&5 + echo "$as_me:39032: 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 38692 "configure" +#line 39038 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char shmat (); below. */ @@ -38720,16 +39066,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:38723: \"$ac_link\"") >&5 +if { (eval echo "$as_me:39069: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:38726: \$? = $ac_status" >&5 + echo "$as_me:39072: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:38729: \"$ac_try\"") >&5 + { (eval echo "$as_me:39075: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:38732: \$? = $ac_status" >&5 + echo "$as_me:39078: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_shmat=yes else @@ -38739,11 +39085,11 @@ ac_cv_func_shmat=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:38742: result: $ac_cv_func_shmat" >&5 +echo "$as_me:39088: 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:38746: checking for shmat in -lipc" >&5 + echo "$as_me:39092: 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 @@ -38751,7 +39097,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lipc $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 38754 "configure" +#line 39100 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -38770,16 +39116,16 @@ shmat (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:38773: \"$ac_link\"") >&5 +if { (eval echo "$as_me:39119: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:38776: \$? = $ac_status" >&5 + echo "$as_me:39122: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:38779: \"$ac_try\"") >&5 + { (eval echo "$as_me:39125: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:38782: \$? = $ac_status" >&5 + echo "$as_me:39128: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_ipc_shmat=yes else @@ -38790,7 +39136,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:38793: result: $ac_cv_lib_ipc_shmat" >&5 +echo "$as_me:39139: 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" @@ -38808,7 +39154,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:38811: checking for IceConnectionNumber in -lICE" >&5 + echo "$as_me:39157: 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 @@ -38816,7 +39162,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lICE $X_EXTRA_LIBS $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 38819 "configure" +#line 39165 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -38835,16 +39181,16 @@ IceConnectionNumber (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:38838: \"$ac_link\"") >&5 +if { (eval echo "$as_me:39184: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:38841: \$? = $ac_status" >&5 + echo "$as_me:39187: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:38844: \"$ac_try\"") >&5 + { (eval echo "$as_me:39190: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:38847: \$? = $ac_status" >&5 + echo "$as_me:39193: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_ICE_IceConnectionNumber=yes else @@ -38855,7 +39201,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:38858: result: $ac_cv_lib_ICE_IceConnectionNumber" >&5 +echo "$as_me:39204: 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" @@ -38867,7 +39213,7 @@ fi cf_x_athena=${cf_x_athena:-Xaw} -echo "$as_me:38870: checking if you want to link with Xaw 3d library" >&5 +echo "$as_me:39216: 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= @@ -38878,14 +39224,14 @@ if test "${with_Xaw3d+set}" = set; then fi; if test "$withval" = yes ; then cf_x_athena=Xaw3d - echo "$as_me:38881: result: yes" >&5 + echo "$as_me:39227: result: yes" >&5 echo "${ECHO_T}yes" >&6 else - echo "$as_me:38884: result: no" >&5 + echo "$as_me:39230: result: no" >&5 echo "${ECHO_T}no" >&6 fi -echo "$as_me:38888: checking if you want to link with neXT Athena library" >&5 +echo "$as_me:39234: 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= @@ -38896,14 +39242,14 @@ if test "${with_neXtaw+set}" = set; then fi; if test "$withval" = yes ; then cf_x_athena=neXtaw - echo "$as_me:38899: result: yes" >&5 + echo "$as_me:39245: result: yes" >&5 echo "${ECHO_T}yes" >&6 else - echo "$as_me:38902: result: no" >&5 + echo "$as_me:39248: result: no" >&5 echo "${ECHO_T}no" >&6 fi -echo "$as_me:38906: checking if you want to link with Athena-Plus library" >&5 +echo "$as_me:39252: 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= @@ -38914,10 +39260,10 @@ if test "${with_XawPlus+set}" = set; then fi; if test "$withval" = yes ; then cf_x_athena=XawPlus - echo "$as_me:38917: result: yes" >&5 + echo "$as_me:39263: result: yes" >&5 echo "${ECHO_T}yes" >&6 else - echo "$as_me:38920: result: no" >&5 + echo "$as_me:39266: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -38937,17 +39283,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}:38940: testing found package $cf_athena_pkg ..." 1>&5 +echo "${as_me:-configure}:39286: 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}:38946: testing package $cf_athena_pkg CFLAGS: $cf_pkgconfig_incs ..." 1>&5 +echo "${as_me:-configure}:39292: 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}:38950: testing package $cf_athena_pkg LIBS: $cf_pkgconfig_libs ..." 1>&5 +echo "${as_me:-configure}:39296: testing package $cf_athena_pkg LIBS: $cf_pkgconfig_libs ..." 1>&5 cf_fix_cppflags=no cf_new_cflags= @@ -39044,20 +39390,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}:39047: testing ..trimmed $LIBS ..." 1>&5 +echo "${as_me:-configure}:39393: testing ..trimmed $LIBS ..." 1>&5 ;; esac done -echo "$as_me:39053: checking for usable $cf_x_athena/Xmu package" >&5 +echo "$as_me:39399: 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 39060 "configure" +#line 39406 "configure" #include "confdefs.h" #include <X11/Xmu/CharSet.h> @@ -39073,16 +39419,16 @@ int check = XmuCompareISOLatin1("big", "small") } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:39076: \"$ac_link\"") >&5 +if { (eval echo "$as_me:39422: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:39079: \$? = $ac_status" >&5 + echo "$as_me:39425: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:39082: \"$ac_try\"") >&5 + { (eval echo "$as_me:39428: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:39085: \$? = $ac_status" >&5 + echo "$as_me:39431: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_xaw_compat=yes else @@ -39092,7 +39438,7 @@ cf_cv_xaw_compat=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:39095: result: $cf_cv_xaw_compat" >&5 +echo "$as_me:39441: result: $cf_cv_xaw_compat" >&5 echo "${ECHO_T}$cf_cv_xaw_compat" >&6 if test "$cf_cv_xaw_compat" = no @@ -39104,7 +39450,7 @@ echo "${ECHO_T}$cf_cv_xaw_compat" >&6 *) test -n "$verbose" && echo " work around broken package" 1>&6 -echo "${as_me:-configure}:39107: testing work around broken package ..." 1>&5 +echo "${as_me:-configure}:39453: testing work around broken package ..." 1>&5 cf_save_xmu="$LIBS" cf_first_lib=`echo "$cf_save_xmu" | sed -e 's/^ *//' -e 's/ .*//'` @@ -39112,17 +39458,17 @@ echo "${as_me:-configure}:39107: 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}:39115: testing found package xmu ..." 1>&5 +echo "${as_me:-configure}:39461: 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}:39121: testing package xmu CFLAGS: $cf_pkgconfig_incs ..." 1>&5 +echo "${as_me:-configure}:39467: 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}:39125: testing package xmu LIBS: $cf_pkgconfig_libs ..." 1>&5 +echo "${as_me:-configure}:39471: testing package xmu LIBS: $cf_pkgconfig_libs ..." 1>&5 cf_fix_cppflags=no cf_new_cflags= @@ -39208,12 +39554,12 @@ fi test -n "$verbose" && echo " ...before $LIBS" 1>&6 -echo "${as_me:-configure}:39211: testing ...before $LIBS ..." 1>&5 +echo "${as_me:-configure}:39557: 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}:39216: testing ...after $LIBS ..." 1>&5 +echo "${as_me:-configure}:39562: testing ...after $LIBS ..." 1>&5 else cf_pkgconfig_incs= @@ -39221,12 +39567,12 @@ else test -n "$verbose" && echo " ...before $LIBS" 1>&6 -echo "${as_me:-configure}:39224: testing ...before $LIBS ..." 1>&5 +echo "${as_me:-configure}:39570: 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}:39229: testing ...after $LIBS ..." 1>&5 +echo "${as_me:-configure}:39575: testing ...after $LIBS ..." 1>&5 fi @@ -39237,7 +39583,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}:39240: testing ..trimmed $LIBS ..." 1>&5 +echo "${as_me:-configure}:39586: testing ..trimmed $LIBS ..." 1>&5 ;; esac @@ -39262,17 +39608,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}:39265: testing found package Xext ..." 1>&5 +echo "${as_me:-configure}:39611: 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}:39271: testing package Xext CFLAGS: $cf_pkgconfig_incs ..." 1>&5 +echo "${as_me:-configure}:39617: 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}:39275: testing package Xext LIBS: $cf_pkgconfig_libs ..." 1>&5 +echo "${as_me:-configure}:39621: testing package Xext LIBS: $cf_pkgconfig_libs ..." 1>&5 cf_fix_cppflags=no cf_new_cflags= @@ -39358,7 +39704,7 @@ else cf_pkgconfig_incs= cf_pkgconfig_libs= - echo "$as_me:39361: checking for XextCreateExtension in -lXext" >&5 + echo "$as_me:39707: 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 @@ -39366,7 +39712,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lXext $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 39369 "configure" +#line 39715 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -39385,16 +39731,16 @@ XextCreateExtension (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:39388: \"$ac_link\"") >&5 +if { (eval echo "$as_me:39734: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:39391: \$? = $ac_status" >&5 + echo "$as_me:39737: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:39394: \"$ac_try\"") >&5 + { (eval echo "$as_me:39740: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:39397: \$? = $ac_status" >&5 + echo "$as_me:39743: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_Xext_XextCreateExtension=yes else @@ -39405,7 +39751,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:39408: result: $ac_cv_lib_Xext_XextCreateExtension" >&5 +echo "$as_me:39754: result: $ac_cv_lib_Xext_XextCreateExtension" >&5 echo "${ECHO_T}$ac_cv_lib_Xext_XextCreateExtension" >&6 if test $ac_cv_lib_Xext_XextCreateExtension = yes; then LIBS="-lXext $LIBS" @@ -39418,17 +39764,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}:39421: testing found package xt ..." 1>&5 +echo "${as_me:-configure}:39767: 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}:39427: testing package xt CFLAGS: $cf_pkgconfig_incs ..." 1>&5 +echo "${as_me:-configure}:39773: 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}:39431: testing package xt LIBS: $cf_pkgconfig_libs ..." 1>&5 +echo "${as_me:-configure}:39777: testing package xt LIBS: $cf_pkgconfig_libs ..." 1>&5 cf_fix_cppflags=no cf_new_cflags= @@ -39515,14 +39861,14 @@ fi ;; *) # we have an "xt" package, but it may omit Xt's dependency on X11 -echo "$as_me:39518: checking for usable X dependency" >&5 +echo "$as_me:39864: 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 39525 "configure" +#line 39871 "configure" #include "confdefs.h" #include <X11/Xlib.h> @@ -39541,16 +39887,16 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:39544: \"$ac_link\"") >&5 +if { (eval echo "$as_me:39890: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:39547: \$? = $ac_status" >&5 + echo "$as_me:39893: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:39550: \"$ac_try\"") >&5 + { (eval echo "$as_me:39896: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:39553: \$? = $ac_status" >&5 + echo "$as_me:39899: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_xt_x11_compat=yes else @@ -39560,30 +39906,30 @@ cf_cv_xt_x11_compat=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:39563: result: $cf_cv_xt_x11_compat" >&5 +echo "$as_me:39909: 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}:39569: testing work around broken X11 dependency ..." 1>&5 +echo "${as_me:-configure}:39915: 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}:39576: testing found package x11 ..." 1>&5 +echo "${as_me:-configure}:39922: 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}:39582: testing package x11 CFLAGS: $cf_pkgconfig_incs ..." 1>&5 +echo "${as_me:-configure}:39928: 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}:39586: testing package x11 LIBS: $cf_pkgconfig_libs ..." 1>&5 +echo "${as_me:-configure}:39932: testing package x11 LIBS: $cf_pkgconfig_libs ..." 1>&5 cf_fix_cppflags=no cf_new_cflags= @@ -39671,12 +40017,12 @@ else test -n "$verbose" && echo " ...before $LIBS" 1>&6 -echo "${as_me:-configure}:39674: testing ...before $LIBS ..." 1>&5 +echo "${as_me:-configure}:40020: 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}:39679: testing ...after $LIBS ..." 1>&5 +echo "${as_me:-configure}:40025: testing ...after $LIBS ..." 1>&5 fi @@ -39684,14 +40030,14 @@ fi ;; esac -echo "$as_me:39687: checking for usable X Toolkit package" >&5 +echo "$as_me:40033: 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 39694 "configure" +#line 40040 "configure" #include "confdefs.h" #include <X11/Shell.h> @@ -39706,16 +40052,16 @@ int num = IceConnectionNumber(0) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:39709: \"$ac_link\"") >&5 +if { (eval echo "$as_me:40055: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:39712: \$? = $ac_status" >&5 + echo "$as_me:40058: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:39715: \"$ac_try\"") >&5 + { (eval echo "$as_me:40061: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:39718: \$? = $ac_status" >&5 + echo "$as_me:40064: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_xt_ice_compat=yes else @@ -39725,7 +40071,7 @@ cf_cv_xt_ice_compat=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:39728: result: $cf_cv_xt_ice_compat" >&5 +echo "$as_me:40074: result: $cf_cv_xt_ice_compat" >&5 echo "${ECHO_T}$cf_cv_xt_ice_compat" >&6 if test "$cf_cv_xt_ice_compat" = no @@ -39739,22 +40085,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}:39742: testing work around broken ICE dependency ..." 1>&5 +echo "${as_me:-configure}:40088: 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}:39747: testing found package ice ..." 1>&5 +echo "${as_me:-configure}:40093: 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}:39753: testing package ice CFLAGS: $cf_pkgconfig_incs ..." 1>&5 +echo "${as_me:-configure}:40099: 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}:39757: testing package ice LIBS: $cf_pkgconfig_libs ..." 1>&5 +echo "${as_me:-configure}:40103: testing package ice LIBS: $cf_pkgconfig_libs ..." 1>&5 cf_fix_cppflags=no cf_new_cflags= @@ -39839,17 +40185,17 @@ fi if test "$PKG_CONFIG" != none && "$PKG_CONFIG" --exists sm; then test -n "$verbose" && echo " found package sm" 1>&6 -echo "${as_me:-configure}:39842: testing found package sm ..." 1>&5 +echo "${as_me:-configure}:40188: 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}:39848: testing package sm CFLAGS: $cf_pkgconfig_incs ..." 1>&5 +echo "${as_me:-configure}:40194: 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}:39852: testing package sm LIBS: $cf_pkgconfig_libs ..." 1>&5 +echo "${as_me:-configure}:40198: testing package sm LIBS: $cf_pkgconfig_libs ..." 1>&5 cf_fix_cppflags=no cf_new_cflags= @@ -39943,12 +40289,12 @@ else test -n "$verbose" && echo " ...before $LIBS" 1>&6 -echo "${as_me:-configure}:39946: testing ...before $LIBS ..." 1>&5 +echo "${as_me:-configure}:40292: 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}:39951: testing ...after $LIBS ..." 1>&5 +echo "${as_me:-configure}:40297: testing ...after $LIBS ..." 1>&5 fi @@ -39968,7 +40314,7 @@ else test -n "$verbose" && echo " checking additions to CFLAGS" 1>&6 -echo "${as_me:-configure}:39971: testing checking additions to CFLAGS ..." 1>&5 +echo "${as_me:-configure}:40317: testing checking additions to CFLAGS ..." 1>&5 cf_check_cflags="$CFLAGS" cf_check_cppflags="$CPPFLAGS" @@ -40039,7 +40385,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}:40042: testing add to \$CFLAGS $cf_new_cflags ..." 1>&5 +echo "${as_me:-configure}:40388: testing add to \$CFLAGS $cf_new_cflags ..." 1>&5 CFLAGS="$CFLAGS $cf_new_cflags" fi @@ -40047,7 +40393,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}:40050: testing add to \$CPPFLAGS $cf_new_cppflags ..." 1>&5 +echo "${as_me:-configure}:40396: testing add to \$CPPFLAGS $cf_new_cppflags ..." 1>&5 CPPFLAGS="$CPPFLAGS $cf_new_cppflags" fi @@ -40055,14 +40401,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}:40058: testing add to \$EXTRA_CPPFLAGS $cf_new_extra_cppflags ..." 1>&5 +echo "${as_me:-configure}:40404: testing add to \$EXTRA_CPPFLAGS $cf_new_extra_cppflags ..." 1>&5 EXTRA_CPPFLAGS="$cf_new_extra_cppflags $EXTRA_CPPFLAGS" fi if test "$cf_check_cflags" != "$CFLAGS" ; then cat >conftest.$ac_ext <<_ACEOF -#line 40065 "configure" +#line 40411 "configure" #include "confdefs.h" #include <stdio.h> int @@ -40074,16 +40420,16 @@ printf("Hello world"); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:40077: \"$ac_link\"") >&5 +if { (eval echo "$as_me:40423: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:40080: \$? = $ac_status" >&5 + echo "$as_me:40426: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:40083: \"$ac_try\"") >&5 + { (eval echo "$as_me:40429: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:40086: \$? = $ac_status" >&5 + echo "$as_me:40432: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -40091,12 +40437,12 @@ else cat conftest.$ac_ext >&5 test -n "$verbose" && echo " test-compile failed. Undoing change to \$CFLAGS" 1>&6 -echo "${as_me:-configure}:40094: testing test-compile failed. Undoing change to \$CFLAGS ..." 1>&5 +echo "${as_me:-configure}:40440: testing test-compile failed. Undoing change to \$CFLAGS ..." 1>&5 if test "$cf_check_cppflags" != "$CPPFLAGS" ; then test -n "$verbose" && echo " but keeping change to \$CPPFLAGS" 1>&6 -echo "${as_me:-configure}:40099: testing but keeping change to \$CPPFLAGS ..." 1>&5 +echo "${as_me:-configure}:40445: testing but keeping change to \$CPPFLAGS ..." 1>&5 fi CFLAGS="$cf_check_flags" @@ -40104,13 +40450,13 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi - echo "$as_me:40107: checking for XOpenDisplay" >&5 + echo "$as_me:40453: 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 40113 "configure" +#line 40459 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char XOpenDisplay (); below. */ @@ -40141,16 +40487,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:40144: \"$ac_link\"") >&5 +if { (eval echo "$as_me:40490: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:40147: \$? = $ac_status" >&5 + echo "$as_me:40493: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:40150: \"$ac_try\"") >&5 + { (eval echo "$as_me:40496: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:40153: \$? = $ac_status" >&5 + echo "$as_me:40499: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_XOpenDisplay=yes else @@ -40160,13 +40506,13 @@ ac_cv_func_XOpenDisplay=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:40163: result: $ac_cv_func_XOpenDisplay" >&5 +echo "$as_me:40509: 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:40169: checking for XOpenDisplay in -lX11" >&5 + echo "$as_me:40515: 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 @@ -40174,7 +40520,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lX11 $X_PRE_LIBS $LIBS $X_EXTRA_LIBS $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 40177 "configure" +#line 40523 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -40193,16 +40539,16 @@ XOpenDisplay (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:40196: \"$ac_link\"") >&5 +if { (eval echo "$as_me:40542: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:40199: \$? = $ac_status" >&5 + echo "$as_me:40545: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:40202: \"$ac_try\"") >&5 + { (eval echo "$as_me:40548: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:40205: \$? = $ac_status" >&5 + echo "$as_me:40551: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_X11_XOpenDisplay=yes else @@ -40213,7 +40559,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:40216: result: $ac_cv_lib_X11_XOpenDisplay" >&5 +echo "$as_me:40562: result: $ac_cv_lib_X11_XOpenDisplay" >&5 echo "${ECHO_T}$ac_cv_lib_X11_XOpenDisplay" >&6 if test $ac_cv_lib_X11_XOpenDisplay = yes; then LIBS="-lX11 $LIBS" @@ -40221,13 +40567,13 @@ fi fi - echo "$as_me:40224: checking for XtAppInitialize" >&5 + echo "$as_me:40570: 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 40230 "configure" +#line 40576 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char XtAppInitialize (); below. */ @@ -40258,16 +40604,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:40261: \"$ac_link\"") >&5 +if { (eval echo "$as_me:40607: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:40264: \$? = $ac_status" >&5 + echo "$as_me:40610: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:40267: \"$ac_try\"") >&5 + { (eval echo "$as_me:40613: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:40270: \$? = $ac_status" >&5 + echo "$as_me:40616: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_XtAppInitialize=yes else @@ -40277,13 +40623,13 @@ ac_cv_func_XtAppInitialize=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:40280: result: $ac_cv_func_XtAppInitialize" >&5 +echo "$as_me:40626: 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:40286: checking for XtAppInitialize in -lXt" >&5 + echo "$as_me:40632: 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 @@ -40291,7 +40637,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lXt $X_PRE_LIBS $LIBS $X_EXTRA_LIBS $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 40294 "configure" +#line 40640 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -40310,16 +40656,16 @@ XtAppInitialize (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:40313: \"$ac_link\"") >&5 +if { (eval echo "$as_me:40659: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:40316: \$? = $ac_status" >&5 + echo "$as_me:40662: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:40319: \"$ac_try\"") >&5 + { (eval echo "$as_me:40665: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:40322: \$? = $ac_status" >&5 + echo "$as_me:40668: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_Xt_XtAppInitialize=yes else @@ -40330,7 +40676,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:40333: result: $ac_cv_lib_Xt_XtAppInitialize" >&5 +echo "$as_me:40679: 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 @@ -40347,7 +40693,7 @@ fi fi if test $cf_have_X_LIBS = no ; then - { echo "$as_me:40350: WARNING: Unable to successfully link X Toolkit library (-lXt) with + { echo "$as_me:40696: 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 @@ -40369,14 +40715,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:40372: checking for $cf_test in $cf_path" >&5 + echo "$as_me:40718: 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:40375: checking for $cf_test" >&5 + echo "$as_me:40721: checking for $cf_test" >&5 echo $ECHO_N "checking for $cf_test... $ECHO_C" >&6 fi cat >conftest.$ac_ext <<_ACEOF -#line 40379 "configure" +#line 40725 "configure" #include "confdefs.h" #include <X11/Intrinsic.h> @@ -40390,16 +40736,16 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:40393: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:40739: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:40396: \$? = $ac_status" >&5 + echo "$as_me:40742: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:40399: \"$ac_try\"") >&5 + { (eval echo "$as_me:40745: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:40402: \$? = $ac_status" >&5 + echo "$as_me:40748: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_result=yes else @@ -40408,7 +40754,7 @@ cat conftest.$ac_ext >&5 cf_result=no fi rm -f conftest.$ac_objext conftest.$ac_ext - echo "$as_me:40411: result: $cf_result" >&5 + echo "$as_me:40757: result: $cf_result" >&5 echo "${ECHO_T}$cf_result" >&6 if test "$cf_result" = yes ; then cf_x_athena_inc=$cf_path @@ -40420,7 +40766,7 @@ echo "${ECHO_T}$cf_result" >&6 done if test -z "$cf_x_athena_inc" ; then - { echo "$as_me:40423: WARNING: Unable to successfully find Athena header files with test program" >&5 + { echo "$as_me:40769: 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" @@ -40450,15 +40796,15 @@ do cf_test=XawSimpleMenuAddGlobalActions if test $cf_path != default ; then LIBS="-L$cf_path/lib $cf_libs $LIBS" - echo "$as_me:40453: checking for $cf_libs in $cf_path" >&5 + echo "$as_me:40799: checking for $cf_libs in $cf_path" >&5 echo $ECHO_N "checking for $cf_libs in $cf_path... $ECHO_C" >&6 else LIBS="$cf_libs $LIBS" - echo "$as_me:40457: checking for $cf_test in $cf_libs" >&5 + echo "$as_me:40803: 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 40461 "configure" +#line 40807 "configure" #include "confdefs.h" #include <X11/Intrinsic.h> @@ -40474,16 +40820,16 @@ $cf_test((XtAppContext) 0) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:40477: \"$ac_link\"") >&5 +if { (eval echo "$as_me:40823: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:40480: \$? = $ac_status" >&5 + echo "$as_me:40826: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:40483: \"$ac_try\"") >&5 + { (eval echo "$as_me:40829: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:40486: \$? = $ac_status" >&5 + echo "$as_me:40832: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_result=yes else @@ -40492,7 +40838,7 @@ cat conftest.$ac_ext >&5 cf_result=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext - echo "$as_me:40495: result: $cf_result" >&5 + echo "$as_me:40841: result: $cf_result" >&5 echo "${ECHO_T}$cf_result" >&6 if test "$cf_result" = yes ; then cf_x_athena_lib="$cf_libs" @@ -40506,7 +40852,7 @@ echo "${ECHO_T}$cf_result" >&6 done if test -z "$cf_x_athena_lib" ; then - { { echo "$as_me:40509: error: Unable to successfully link Athena library (-l$cf_x_athena_root) with test program" >&5 + { { echo "$as_me:40855: 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 @@ -40524,7 +40870,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:40527: checking for $ac_word" >&5 +echo "$as_me:40873: 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 @@ -40539,7 +40885,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:40542: found $ac_dir/$ac_word" >&5 +echo "$as_me:40888: found $ac_dir/$ac_word" >&5 break done @@ -40547,10 +40893,10 @@ fi fi XCURSES_CONFIG=$ac_cv_prog_XCURSES_CONFIG if test -n "$XCURSES_CONFIG"; then - echo "$as_me:40550: result: $XCURSES_CONFIG" >&5 + echo "$as_me:40896: result: $XCURSES_CONFIG" >&5 echo "${ECHO_T}$XCURSES_CONFIG" >&6 else - echo "$as_me:40553: result: no" >&5 + echo "$as_me:40899: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -40563,7 +40909,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:40566: checking for $ac_word" >&5 +echo "$as_me:40912: 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 @@ -40578,7 +40924,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:40581: found $ac_dir/$ac_word" >&5 +echo "$as_me:40927: found $ac_dir/$ac_word" >&5 break done @@ -40586,10 +40932,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:40589: result: $ac_ct_XCURSES_CONFIG" >&5 + echo "$as_me:40935: result: $ac_ct_XCURSES_CONFIG" >&5 echo "${ECHO_T}$ac_ct_XCURSES_CONFIG" >&6 else - echo "$as_me:40592: result: no" >&5 + echo "$as_me:40938: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -40613,7 +40959,7 @@ LDFLAGS="$LDFLAGS $X_LIBS" test -n "$verbose" && echo " checking additions to CFLAGS" 1>&6 -echo "${as_me:-configure}:40616: testing checking additions to CFLAGS ..." 1>&5 +echo "${as_me:-configure}:40962: testing checking additions to CFLAGS ..." 1>&5 cf_check_cflags="$CFLAGS" cf_check_cppflags="$CPPFLAGS" @@ -40684,7 +41030,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}:40687: testing add to \$CFLAGS $cf_new_cflags ..." 1>&5 +echo "${as_me:-configure}:41033: testing add to \$CFLAGS $cf_new_cflags ..." 1>&5 CFLAGS="$CFLAGS $cf_new_cflags" fi @@ -40692,7 +41038,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}:40695: testing add to \$CPPFLAGS $cf_new_cppflags ..." 1>&5 +echo "${as_me:-configure}:41041: testing add to \$CPPFLAGS $cf_new_cppflags ..." 1>&5 CPPFLAGS="$CPPFLAGS $cf_new_cppflags" fi @@ -40700,14 +41046,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}:40703: testing add to \$EXTRA_CPPFLAGS $cf_new_extra_cppflags ..." 1>&5 +echo "${as_me:-configure}:41049: testing add to \$EXTRA_CPPFLAGS $cf_new_extra_cppflags ..." 1>&5 EXTRA_CPPFLAGS="$cf_new_extra_cppflags $EXTRA_CPPFLAGS" fi if test "$cf_check_cflags" != "$CFLAGS" ; then cat >conftest.$ac_ext <<_ACEOF -#line 40710 "configure" +#line 41056 "configure" #include "confdefs.h" #include <stdio.h> int @@ -40719,16 +41065,16 @@ printf("Hello world"); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:40722: \"$ac_link\"") >&5 +if { (eval echo "$as_me:41068: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:40725: \$? = $ac_status" >&5 + echo "$as_me:41071: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:40728: \"$ac_try\"") >&5 + { (eval echo "$as_me:41074: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:40731: \$? = $ac_status" >&5 + echo "$as_me:41077: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -40736,12 +41082,12 @@ else cat conftest.$ac_ext >&5 test -n "$verbose" && echo " test-compile failed. Undoing change to \$CFLAGS" 1>&6 -echo "${as_me:-configure}:40739: testing test-compile failed. Undoing change to \$CFLAGS ..." 1>&5 +echo "${as_me:-configure}:41085: testing test-compile failed. Undoing change to \$CFLAGS ..." 1>&5 if test "$cf_check_cppflags" != "$CPPFLAGS" ; then test -n "$verbose" && echo " but keeping change to \$CPPFLAGS" 1>&6 -echo "${as_me:-configure}:40744: testing but keeping change to \$CPPFLAGS ..." 1>&5 +echo "${as_me:-configure}:41090: testing but keeping change to \$CPPFLAGS ..." 1>&5 fi CFLAGS="$cf_check_flags" @@ -40749,7 +41095,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:40752: checking for XOpenDisplay in -lX11" >&5 +echo "$as_me:41098: 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 @@ -40757,7 +41103,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lX11 $X_PRE_LIBS $LIBS $X_EXTRA_LIBS $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 40760 "configure" +#line 41106 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -40776,16 +41122,16 @@ XOpenDisplay (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:40779: \"$ac_link\"") >&5 +if { (eval echo "$as_me:41125: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:40782: \$? = $ac_status" >&5 + echo "$as_me:41128: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:40785: \"$ac_try\"") >&5 + { (eval echo "$as_me:41131: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:40788: \$? = $ac_status" >&5 + echo "$as_me:41134: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_X11_XOpenDisplay=yes else @@ -40796,13 +41142,13 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:40799: result: $ac_cv_lib_X11_XOpenDisplay" >&5 +echo "$as_me:41145: result: $ac_cv_lib_X11_XOpenDisplay" >&5 echo "${ECHO_T}$ac_cv_lib_X11_XOpenDisplay" >&6 if test $ac_cv_lib_X11_XOpenDisplay = yes; then LIBS="-lX11 $LIBS" fi -echo "$as_me:40805: checking for XCurses library" >&5 +echo "$as_me:41151: 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 @@ -40810,7 +41156,7 @@ else LIBS="-lXCurses $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 40813 "configure" +#line 41159 "configure" #include "confdefs.h" #include <xcurses.h> @@ -40825,16 +41171,16 @@ XCursesExit(); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:40828: \"$ac_link\"") >&5 +if { (eval echo "$as_me:41174: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:40831: \$? = $ac_status" >&5 + echo "$as_me:41177: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:40834: \"$ac_try\"") >&5 + { (eval echo "$as_me:41180: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:40837: \$? = $ac_status" >&5 + echo "$as_me:41183: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_lib_XCurses=yes else @@ -40845,7 +41191,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:40848: result: $cf_cv_lib_XCurses" >&5 +echo "$as_me:41194: result: $cf_cv_lib_XCurses" >&5 echo "${ECHO_T}$cf_cv_lib_XCurses" >&6 fi @@ -40860,23 +41206,23 @@ cat >>confdefs.h <<\EOF #define XCURSES 1 EOF - echo "$as_me:40863: checking for xcurses.h" >&5 + echo "$as_me:41209: 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 40869 "configure" +#line 41215 "configure" #include "confdefs.h" #include <xcurses.h> _ACEOF -if { (eval echo "$as_me:40873: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:41219: \"$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:40879: \$? = $ac_status" >&5 + echo "$as_me:41225: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -40895,7 +41241,7 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:40898: result: $ac_cv_header_xcurses_h" >&5 +echo "$as_me:41244: 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 @@ -40906,14 +41252,16 @@ EOF fi else - { { echo "$as_me:40909: error: Cannot link with XCurses" >&5 + { { echo "$as_me:41255: error: Cannot link with XCurses" >&5 echo "$as_me: error: Cannot link with XCurses" >&2;} { (exit 1); exit 1; }; } fi + ;; + esac else -echo "$as_me:40916: checking if we can include termio.h with curses" >&5 +echo "$as_me:41264: 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 @@ -40923,7 +41271,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 40926 "configure" +#line 41274 "configure" #include "confdefs.h" #include <LYCurses.h> @@ -40937,16 +41285,16 @@ putchar(0x0a) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:40940: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:41288: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:40943: \$? = $ac_status" >&5 + echo "$as_me:41291: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:40946: \"$ac_try\"") >&5 + { (eval echo "$as_me:41294: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:40949: \$? = $ac_status" >&5 + echo "$as_me:41297: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_termio_and_curses=yes else @@ -40959,7 +41307,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext rm -f lynx_cfg.h fi -echo "$as_me:40962: result: $cf_cv_termio_and_curses" >&5 +echo "$as_me:41310: result: $cf_cv_termio_and_curses" >&5 echo "${ECHO_T}$cf_cv_termio_and_curses" >&6 test $cf_cv_termio_and_curses = yes && @@ -40971,27 +41319,28 @@ fi ### These tests must be run after establishing the curses library. if test $cf_cv_screen != slang ; then + if test $cf_cv_screen != pdcurses ; 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:40978: checking for $ac_header" >&5 +echo "$as_me:41327: 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 40984 "configure" +#line 41333 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:40988: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:41337: \"$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:40994: \$? = $ac_status" >&5 + echo "$as_me:41343: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -41010,7 +41359,7 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:41013: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:41362: 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 @@ -41020,7 +41369,9 @@ EOF fi done -echo "$as_me:41023: checking if curses supports alternate-character set" >&5 + fi + +echo "$as_me:41374: 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 @@ -41029,7 +41380,7 @@ else for mapname in acs_map _acs_map do cat >conftest.$ac_ext <<_ACEOF -#line 41032 "configure" +#line 41383 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> @@ -41043,16 +41394,16 @@ chtype x = $mapname['l']; $mapname['m'] = 0 } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:41046: \"$ac_link\"") >&5 +if { (eval echo "$as_me:41397: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:41049: \$? = $ac_status" >&5 + echo "$as_me:41400: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:41052: \"$ac_try\"") >&5 + { (eval echo "$as_me:41403: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:41055: \$? = $ac_status" >&5 + echo "$as_me:41406: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_alt_char_set=$mapname break @@ -41066,21 +41417,21 @@ done fi -echo "$as_me:41069: result: $cf_cv_alt_char_set" >&5 +echo "$as_me:41420: 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:41076: checking if curses supports fancy attributes" >&5 +echo "$as_me:41427: 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 41083 "configure" +#line 41434 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> @@ -41098,16 +41449,16 @@ attrset(A_UNDERLINE|A_BOLD|A_REVERSE); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:41101: \"$ac_link\"") >&5 +if { (eval echo "$as_me:41452: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:41104: \$? = $ac_status" >&5 + echo "$as_me:41455: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:41107: \"$ac_try\"") >&5 + { (eval echo "$as_me:41458: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:41110: \$? = $ac_status" >&5 + echo "$as_me:41461: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_fancy_curses=yes else @@ -41119,14 +41470,14 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:41122: result: $cf_cv_fancy_curses" >&5 +echo "$as_me:41473: 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:41129: checking for function curses_version" >&5 +echo "$as_me:41480: 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 @@ -41136,7 +41487,7 @@ if test "$cross_compiling" = yes; then cf_cv_func_curses_version=unknown else cat >conftest.$ac_ext <<_ACEOF -#line 41139 "configure" +#line 41490 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> @@ -41149,15 +41500,15 @@ int main() _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:41152: \"$ac_link\"") >&5 +if { (eval echo "$as_me:41503: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:41155: \$? = $ac_status" >&5 + echo "$as_me:41506: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:41157: \"$ac_try\"") >&5 + { (eval echo "$as_me:41508: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:41160: \$? = $ac_status" >&5 + echo "$as_me:41511: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_func_curses_version=yes @@ -41172,7 +41523,7 @@ rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext fi rm -f core fi -echo "$as_me:41175: result: $cf_cv_func_curses_version" >&5 +echo "$as_me:41526: 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 @@ -41180,14 +41531,14 @@ cat >>confdefs.h <<\EOF EOF if test "$cf_cv_ncurses_version" != no ; then -echo "$as_me:41183: checking for obsolete/broken version of ncurses" >&5 +echo "$as_me:41534: 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 41190 "configure" +#line 41541 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> @@ -41206,16 +41557,16 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:41209: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:41560: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:41212: \$? = $ac_status" >&5 + echo "$as_me:41563: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:41215: \"$ac_try\"") >&5 + { (eval echo "$as_me:41566: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:41218: \$? = $ac_status" >&5 + echo "$as_me:41569: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_ncurses_broken=no else @@ -41227,10 +41578,10 @@ rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:41230: result: $cf_cv_ncurses_broken" >&5 +echo "$as_me:41581: 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:41233: WARNING: hmm... you should get an up-to-date version of ncurses" >&5 + { echo "$as_me:41584: 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 @@ -41240,14 +41591,14 @@ EOF fi fi -echo "$as_me:41243: checking if curses supports color attributes" >&5 +echo "$as_me:41594: 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 41250 "configure" +#line 41601 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> @@ -41267,16 +41618,16 @@ chtype x = COLOR_BLUE; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:41270: \"$ac_link\"") >&5 +if { (eval echo "$as_me:41621: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:41273: \$? = $ac_status" >&5 + echo "$as_me:41624: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:41276: \"$ac_try\"") >&5 + { (eval echo "$as_me:41627: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:41279: \$? = $ac_status" >&5 + echo "$as_me:41630: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_color_curses=yes else @@ -41288,7 +41639,7 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:41291: result: $cf_cv_color_curses" >&5 +echo "$as_me:41642: result: $cf_cv_color_curses" >&5 echo "${ECHO_T}$cf_cv_color_curses" >&6 if test $cf_cv_color_curses = yes ; then @@ -41310,23 +41661,23 @@ unistd.h \ do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` -echo "$as_me:41313: checking for $ac_header" >&5 +echo "$as_me:41664: 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 41319 "configure" +#line 41670 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:41323: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:41674: \"$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:41329: \$? = $ac_status" >&5 + echo "$as_me:41680: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -41345,7 +41696,7 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:41348: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:41699: 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 @@ -41360,23 +41711,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:41363: checking for $ac_header" >&5 +echo "$as_me:41714: 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 41369 "configure" +#line 41720 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:41373: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:41724: \"$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:41379: \$? = $ac_status" >&5 + echo "$as_me:41730: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -41395,7 +41746,7 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:41398: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:41749: 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 @@ -41413,10 +41764,10 @@ if test "$ac_cv_header_termios_h" = yes ; then *) termios_bad=maybe ;; esac if test "$termios_bad" = maybe ; then - echo "$as_me:41416: checking whether termios.h needs _POSIX_SOURCE" >&5 + echo "$as_me:41767: 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 41419 "configure" +#line 41770 "configure" #include "confdefs.h" #include <termios.h> int @@ -41428,16 +41779,16 @@ struct termios foo; int x = foo.c_iflag } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:41431: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:41782: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:41434: \$? = $ac_status" >&5 + echo "$as_me:41785: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:41437: \"$ac_try\"") >&5 + { (eval echo "$as_me:41788: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:41440: \$? = $ac_status" >&5 + echo "$as_me:41791: \$? = $ac_status" >&5 (exit $ac_status); }; }; then termios_bad=no else @@ -41445,7 +41796,7 @@ else cat conftest.$ac_ext >&5 cat >conftest.$ac_ext <<_ACEOF -#line 41448 "configure" +#line 41799 "configure" #include "confdefs.h" #define _POSIX_SOURCE @@ -41459,16 +41810,16 @@ struct termios foo; int x = foo.c_iflag } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:41462: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:41813: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:41465: \$? = $ac_status" >&5 + echo "$as_me:41816: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:41468: \"$ac_try\"") >&5 + { (eval echo "$as_me:41819: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:41471: \$? = $ac_status" >&5 + echo "$as_me:41822: \$? = $ac_status" >&5 (exit $ac_status); }; }; then termios_bad=unknown else @@ -41484,12 +41835,12 @@ rm -f conftest.$ac_objext conftest.$ac_ext fi rm -f conftest.$ac_objext conftest.$ac_ext - echo "$as_me:41487: result: $termios_bad" >&5 + echo "$as_me:41838: result: $termios_bad" >&5 echo "${ECHO_T}$termios_bad" >&6 fi fi -echo "$as_me:41492: checking declaration of size-change" >&5 +echo "$as_me:41843: 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 @@ -41504,7 +41855,7 @@ do CPPFLAGS="$cf_save_CPPFLAGS" test -n "$cf_opts" && CPPFLAGS="$CPPFLAGS -D$cf_opts" cat >conftest.$ac_ext <<_ACEOF -#line 41507 "configure" +#line 41858 "configure" #include "confdefs.h" #include <sys/types.h> #ifdef HAVE_TERMIOS_H @@ -41548,16 +41899,16 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:41551: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:41902: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:41554: \$? = $ac_status" >&5 + echo "$as_me:41905: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:41557: \"$ac_try\"") >&5 + { (eval echo "$as_me:41908: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:41560: \$? = $ac_status" >&5 + echo "$as_me:41911: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_sizechange=yes else @@ -41576,7 +41927,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext done fi -echo "$as_me:41579: result: $cf_cv_sizechange" >&5 +echo "$as_me:41930: result: $cf_cv_sizechange" >&5 echo "${ECHO_T}$cf_cv_sizechange" >&6 if test "$cf_cv_sizechange" != no ; then @@ -41594,14 +41945,14 @@ EOF esac fi -echo "$as_me:41597: checking if ttytype is declared in curses library" >&5 +echo "$as_me:41948: 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 41604 "configure" +#line 41955 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> int @@ -41613,16 +41964,16 @@ char *x = &ttytype[1]; *x = 1 } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:41616: \"$ac_link\"") >&5 +if { (eval echo "$as_me:41967: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:41619: \$? = $ac_status" >&5 + echo "$as_me:41970: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:41622: \"$ac_try\"") >&5 + { (eval echo "$as_me:41973: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:41625: \$? = $ac_status" >&5 + echo "$as_me:41976: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_have_ttytype=yes else @@ -41634,7 +41985,7 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:41637: result: $cf_cv_have_ttytype" >&5 +echo "$as_me:41988: result: $cf_cv_have_ttytype" >&5 echo "${ECHO_T}$cf_cv_have_ttytype" >&6 test $cf_cv_have_ttytype = yes && cat >>confdefs.h <<\EOF @@ -41643,14 +41994,14 @@ EOF if test "$use_wide_curses" = yes ; then -echo "$as_me:41646: checking if curses supports wide characters" >&5 +echo "$as_me:41997: 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 41653 "configure" +#line 42004 "configure" #include "confdefs.h" #include <stdlib.h> @@ -41669,16 +42020,16 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:41672: \"$ac_link\"") >&5 +if { (eval echo "$as_me:42023: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:41675: \$? = $ac_status" >&5 + echo "$as_me:42026: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:41678: \"$ac_try\"") >&5 + { (eval echo "$as_me:42029: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:41681: \$? = $ac_status" >&5 + echo "$as_me:42032: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_widec_curses=yes else @@ -41689,7 +42040,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:41692: result: $cf_cv_widec_curses" >&5 +echo "$as_me:42043: result: $cf_cv_widec_curses" >&5 echo "${ECHO_T}$cf_cv_widec_curses" >&6 if test "$cf_cv_widec_curses" = yes ; then @@ -41699,14 +42050,14 @@ cat >>confdefs.h <<\EOF EOF # This is needed on Tru64 5.0 to declare mbstate_t - echo "$as_me:41702: checking if we must include wchar.h to declare mbstate_t" >&5 + echo "$as_me:42053: 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 41709 "configure" +#line 42060 "configure" #include "confdefs.h" #include <stdlib.h> @@ -41720,23 +42071,23 @@ mbstate_t state } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:41723: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:42074: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:41726: \$? = $ac_status" >&5 + echo "$as_me:42077: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:41729: \"$ac_try\"") >&5 + { (eval echo "$as_me:42080: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:41732: \$? = $ac_status" >&5 + echo "$as_me:42083: \$? = $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 41739 "configure" +#line 42090 "configure" #include "confdefs.h" #include <stdlib.h> @@ -41751,16 +42102,16 @@ mbstate_t state } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:41754: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:42105: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:41757: \$? = $ac_status" >&5 + echo "$as_me:42108: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:41760: \"$ac_try\"") >&5 + { (eval echo "$as_me:42111: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:41763: \$? = $ac_status" >&5 + echo "$as_me:42114: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_widec_mbstate=yes else @@ -41772,7 +42123,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:41775: result: $cf_cv_widec_mbstate" >&5 +echo "$as_me:42126: result: $cf_cv_widec_mbstate" >&5 echo "${ECHO_T}$cf_cv_widec_mbstate" >&6 if test "$cf_cv_widec_mbstate" = yes ; then @@ -41795,14 +42146,14 @@ fi fi -echo "$as_me:41798: checking if we must define _XOPEN_SOURCE_EXTENDED" >&5 +echo "$as_me:42149: 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 41805 "configure" +#line 42156 "configure" #include "confdefs.h" #include <stdlib.h> @@ -41824,23 +42175,23 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:41827: \"$ac_link\"") >&5 +if { (eval echo "$as_me:42178: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:41830: \$? = $ac_status" >&5 + echo "$as_me:42181: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:41833: \"$ac_try\"") >&5 + { (eval echo "$as_me:42184: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:41836: \$? = $ac_status" >&5 + echo "$as_me:42187: \$? = $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 41843 "configure" +#line 42194 "configure" #include "confdefs.h" #define _XOPEN_SOURCE_EXTENDED @@ -41862,16 +42213,16 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:41865: \"$ac_link\"") >&5 +if { (eval echo "$as_me:42216: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:41868: \$? = $ac_status" >&5 + echo "$as_me:42219: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:41871: \"$ac_try\"") >&5 + { (eval echo "$as_me:42222: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:41874: \$? = $ac_status" >&5 + echo "$as_me:42225: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_need_xopen_extension=yes else @@ -41883,11 +42234,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:41886: result: $cf_cv_need_xopen_extension" >&5 +echo "$as_me:42237: 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:41890: checking for term.h" >&5 +echo "$as_me:42241: 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 @@ -41908,7 +42259,7 @@ esac for cf_header in $cf_header_list do cat >conftest.$ac_ext <<_ACEOF -#line 41911 "configure" +#line 42262 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> @@ -41922,16 +42273,16 @@ WINDOW *x } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:41925: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:42276: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:41928: \$? = $ac_status" >&5 + echo "$as_me:42279: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:41931: \"$ac_try\"") >&5 + { (eval echo "$as_me:42282: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:41934: \$? = $ac_status" >&5 + echo "$as_me:42285: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_term_header=$cf_header break @@ -41950,7 +42301,7 @@ no) for cf_header in ncurses/term.h ncursesw/term.h do cat >conftest.$ac_ext <<_ACEOF -#line 41953 "configure" +#line 42304 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> @@ -41968,16 +42319,16 @@ WINDOW *x } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:41971: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:42322: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:41974: \$? = $ac_status" >&5 + echo "$as_me:42325: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:41977: \"$ac_try\"") >&5 + { (eval echo "$as_me:42328: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:41980: \$? = $ac_status" >&5 + echo "$as_me:42331: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_term_header=$cf_header break @@ -41992,7 +42343,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext esac fi -echo "$as_me:41995: result: $cf_cv_term_header" >&5 +echo "$as_me:42346: result: $cf_cv_term_header" >&5 echo "${ECHO_T}$cf_cv_term_header" >&6 case $cf_cv_term_header in #(vi @@ -42019,7 +42370,7 @@ EOF ;; esac -echo "$as_me:42022: checking for unctrl.h" >&5 +echo "$as_me:42373: 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 @@ -42040,7 +42391,7 @@ esac for cf_header in $cf_header_list do cat >conftest.$ac_ext <<_ACEOF -#line 42043 "configure" +#line 42394 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> @@ -42054,16 +42405,16 @@ WINDOW *x } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:42057: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:42408: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:42060: \$? = $ac_status" >&5 + echo "$as_me:42411: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:42063: \"$ac_try\"") >&5 + { (eval echo "$as_me:42414: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:42066: \$? = $ac_status" >&5 + echo "$as_me:42417: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_unctrl_header=$cf_header break @@ -42077,13 +42428,13 @@ done case $cf_cv_unctrl_header in #(vi no) - { echo "$as_me:42080: WARNING: unctrl.h header not found" >&5 + { echo "$as_me:42431: WARNING: unctrl.h header not found" >&5 echo "$as_me: WARNING: unctrl.h header not found" >&2;} ;; esac fi -echo "$as_me:42086: result: $cf_cv_unctrl_header" >&5 +echo "$as_me:42437: result: $cf_cv_unctrl_header" >&5 echo "${ECHO_T}$cf_cv_unctrl_header" >&6 case $cf_cv_unctrl_header in #(vi @@ -42137,10 +42488,10 @@ do cf_tr_func=`echo "$cf_func" | sed y%abcdefghijklmnopqrstuvwxyz./-%ABCDEFGHIJKLMNOPQRSTUVWXYZ___%` - echo "$as_me:42140: checking for ${cf_func}" >&5 + echo "$as_me:42491: checking for ${cf_func}" >&5 echo $ECHO_N "checking for ${cf_func}... $ECHO_C" >&6 -echo "${as_me:-configure}:42143: testing ${cf_func} ..." 1>&5 +echo "${as_me:-configure}:42494: testing ${cf_func} ..." 1>&5 if eval "test \"\${cf_cv_func_$cf_func+set}\" = set"; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -42149,7 +42500,7 @@ else eval cf_result='$ac_cv_func_'$cf_func if test ".$cf_result" != ".no"; then cat >conftest.$ac_ext <<_ACEOF -#line 42152 "configure" +#line 42503 "configure" #include "confdefs.h" #ifdef HAVE_XCURSES @@ -42181,16 +42532,16 @@ if (foo + 1234 > 5678) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:42184: \"$ac_link\"") >&5 +if { (eval echo "$as_me:42535: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:42187: \$? = $ac_status" >&5 + echo "$as_me:42538: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:42190: \"$ac_try\"") >&5 + { (eval echo "$as_me:42541: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:42193: \$? = $ac_status" >&5 + echo "$as_me:42544: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_result=yes else @@ -42206,7 +42557,7 @@ fi # use the computed/retrieved cache-value: eval 'cf_result=$cf_cv_func_'$cf_func - echo "$as_me:42209: result: $cf_result" >&5 + echo "$as_me:42560: result: $cf_result" >&5 echo "${ECHO_T}$cf_result" >&6 if test $cf_result != no; then cat >>confdefs.h <<EOF @@ -42222,13 +42573,13 @@ for ac_func in \ do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` -echo "$as_me:42225: checking for $ac_func" >&5 +echo "$as_me:42576: 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 42231 "configure" +#line 42582 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. */ @@ -42259,16 +42610,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:42262: \"$ac_link\"") >&5 +if { (eval echo "$as_me:42613: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:42265: \$? = $ac_status" >&5 + echo "$as_me:42616: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:42268: \"$ac_try\"") >&5 + { (eval echo "$as_me:42619: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:42271: \$? = $ac_status" >&5 + echo "$as_me:42622: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else @@ -42278,7 +42629,7 @@ eval "$as_ac_var=no" fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:42281: result: `eval echo '${'$as_ac_var'}'`" >&5 +echo "$as_me:42632: 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 @@ -42292,12 +42643,12 @@ fi if test $use_color_style != no ; then if test .$cf_cv_color_curses != .yes ; then - { { echo "$as_me:42295: error: Configuration does not support color-styles" >&5 + { { echo "$as_me:42646: 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:42300: error: Configuration does not support color-styles" >&5 + { { echo "$as_me:42651: error: Configuration does not support color-styles" >&5 echo "$as_me: error: Configuration does not support color-styles" >&2;} { (exit 1); exit 1; }; } fi @@ -42305,7 +42656,7 @@ fi if test $use_scrollbar != no ; then if test .$cf_cv_fancy_curses != .yes ; then - { echo "$as_me:42308: WARNING: Configuration does not support ACS_xxx definitions" >&5 + { echo "$as_me:42659: WARNING: Configuration does not support ACS_xxx definitions" >&5 echo "$as_me: WARNING: Configuration does not support ACS_xxx definitions" >&2;} else @@ -42319,7 +42670,7 @@ fi # use rpath for libraries in unusual places LD_RPATH_OPT= -echo "$as_me:42322: checking for an rpath option" >&5 +echo "$as_me:42673: 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 @@ -42350,17 +42701,17 @@ solaris2*) #(vi *) ;; esac -echo "$as_me:42353: result: $LD_RPATH_OPT" >&5 +echo "$as_me:42704: result: $LD_RPATH_OPT" >&5 echo "${ECHO_T}$LD_RPATH_OPT" >&6 case "x$LD_RPATH_OPT" in #(vi x-R*) - echo "$as_me:42358: checking if we need a space after rpath option" >&5 + echo "$as_me:42709: checking if we need a space after rpath option" >&5 echo $ECHO_N "checking if we need a space after rpath option... $ECHO_C" >&6 cf_save_LIBS="$LIBS" LIBS="${LD_RPATH_OPT}$libdir $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 42363 "configure" +#line 42714 "configure" #include "confdefs.h" int @@ -42372,16 +42723,16 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:42375: \"$ac_link\"") >&5 +if { (eval echo "$as_me:42726: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:42378: \$? = $ac_status" >&5 + echo "$as_me:42729: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:42381: \"$ac_try\"") >&5 + { (eval echo "$as_me:42732: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:42384: \$? = $ac_status" >&5 + echo "$as_me:42735: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_rpath_space=no else @@ -42391,13 +42742,13 @@ cf_rpath_space=yes fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS="$cf_save_LIBS" - echo "$as_me:42394: result: $cf_rpath_space" >&5 + echo "$as_me:42745: 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:42400: checking if rpath-hack should be disabled" >&5 +echo "$as_me:42751: 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. @@ -42414,21 +42765,21 @@ else cf_disable_rpath_hack=no fi; -echo "$as_me:42417: result: $cf_disable_rpath_hack" >&5 +echo "$as_me:42768: 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:42421: checking for updated LDFLAGS" >&5 +echo "$as_me:42772: 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:42424: result: maybe" >&5 + echo "$as_me:42775: 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:42431: checking for $ac_word" >&5 +echo "$as_me:42782: 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 @@ -42443,7 +42794,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:42446: found $ac_dir/$ac_word" >&5 +echo "$as_me:42797: found $ac_dir/$ac_word" >&5 break done @@ -42451,10 +42802,10 @@ fi fi cf_ldd_prog=$ac_cv_prog_cf_ldd_prog if test -n "$cf_ldd_prog"; then - echo "$as_me:42454: result: $cf_ldd_prog" >&5 + echo "$as_me:42805: result: $cf_ldd_prog" >&5 echo "${ECHO_T}$cf_ldd_prog" >&6 else - echo "$as_me:42457: result: no" >&5 + echo "$as_me:42808: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -42468,7 +42819,7 @@ test -n "$cf_ldd_prog" || cf_ldd_prog="no" cf_rpath_oops= cat >conftest.$ac_ext <<_ACEOF -#line 42471 "configure" +#line 42822 "configure" #include "confdefs.h" #include <stdio.h> int @@ -42480,16 +42831,16 @@ printf("Hello"); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:42483: \"$ac_link\"") >&5 +if { (eval echo "$as_me:42834: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:42486: \$? = $ac_status" >&5 + echo "$as_me:42837: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:42489: \"$ac_try\"") >&5 + { (eval echo "$as_me:42840: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:42492: \$? = $ac_status" >&5 + echo "$as_me:42843: \$? = $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` @@ -42517,7 +42868,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}:42520: testing ...adding -L$cf_rpath_dir/lib to LDFLAGS for $cf_rpath_src ..." 1>&5 +echo "${as_me:-configure}:42871: testing ...adding -L$cf_rpath_dir/lib to LDFLAGS for $cf_rpath_src ..." 1>&5 LDFLAGS="$LDFLAGS -L$cf_rpath_dir/lib" break @@ -42529,11 +42880,11 @@ echo "${as_me:-configure}:42520: testing ...adding -L$cf_rpath_dir/lib to LDFLAG test -n "$verbose" && echo " ...checking EXTRA_LDFLAGS $EXTRA_LDFLAGS" 1>&6 -echo "${as_me:-configure}:42532: testing ...checking EXTRA_LDFLAGS $EXTRA_LDFLAGS ..." 1>&5 +echo "${as_me:-configure}:42883: testing ...checking EXTRA_LDFLAGS $EXTRA_LDFLAGS ..." 1>&5 test -n "$verbose" && echo " ...checking LDFLAGS $LDFLAGS" 1>&6 -echo "${as_me:-configure}:42536: testing ...checking LDFLAGS $LDFLAGS ..." 1>&5 +echo "${as_me:-configure}:42887: testing ...checking LDFLAGS $LDFLAGS ..." 1>&5 cf_rpath_dst= for cf_rpath_src in $LDFLAGS @@ -42570,7 +42921,7 @@ do then test -n "$verbose" && echo " ...Filter $cf_rpath_src ->$cf_rpath_tmp" 1>&6 -echo "${as_me:-configure}:42573: testing ...Filter $cf_rpath_src ->$cf_rpath_tmp ..." 1>&5 +echo "${as_me:-configure}:42924: testing ...Filter $cf_rpath_src ->$cf_rpath_tmp ..." 1>&5 EXTRA_LDFLAGS="$cf_rpath_tmp $EXTRA_LDFLAGS" fi @@ -42583,11 +42934,11 @@ LDFLAGS=$cf_rpath_dst test -n "$verbose" && echo " ...checked LDFLAGS $LDFLAGS" 1>&6 -echo "${as_me:-configure}:42586: testing ...checked LDFLAGS $LDFLAGS ..." 1>&5 +echo "${as_me:-configure}:42937: testing ...checked LDFLAGS $LDFLAGS ..." 1>&5 test -n "$verbose" && echo " ...checking LIBS $LIBS" 1>&6 -echo "${as_me:-configure}:42590: testing ...checking LIBS $LIBS ..." 1>&5 +echo "${as_me:-configure}:42941: testing ...checking LIBS $LIBS ..." 1>&5 cf_rpath_dst= for cf_rpath_src in $LIBS @@ -42624,7 +42975,7 @@ do then test -n "$verbose" && echo " ...Filter $cf_rpath_src ->$cf_rpath_tmp" 1>&6 -echo "${as_me:-configure}:42627: testing ...Filter $cf_rpath_src ->$cf_rpath_tmp ..." 1>&5 +echo "${as_me:-configure}:42978: testing ...Filter $cf_rpath_src ->$cf_rpath_tmp ..." 1>&5 EXTRA_LDFLAGS="$cf_rpath_tmp $EXTRA_LDFLAGS" fi @@ -42637,14 +42988,14 @@ LIBS=$cf_rpath_dst test -n "$verbose" && echo " ...checked LIBS $LIBS" 1>&6 -echo "${as_me:-configure}:42640: testing ...checked LIBS $LIBS ..." 1>&5 +echo "${as_me:-configure}:42991: testing ...checked LIBS $LIBS ..." 1>&5 test -n "$verbose" && echo " ...checked EXTRA_LDFLAGS $EXTRA_LDFLAGS" 1>&6 -echo "${as_me:-configure}:42644: testing ...checked EXTRA_LDFLAGS $EXTRA_LDFLAGS ..." 1>&5 +echo "${as_me:-configure}:42995: testing ...checked EXTRA_LDFLAGS $EXTRA_LDFLAGS ..." 1>&5 else - echo "$as_me:42647: result: no" >&5 + echo "$as_me:42998: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -42745,7 +43096,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:42748: creating $CONFIG_STATUS" >&5 +{ echo "$as_me:43099: creating $CONFIG_STATUS" >&5 echo "$as_me: creating $CONFIG_STATUS" >&6;} cat >$CONFIG_STATUS <<_ACEOF #! $SHELL @@ -42921,7 +43272,7 @@ cat >>$CONFIG_STATUS <<\EOF echo "$ac_cs_version"; exit 0 ;; --he | --h) # Conflict between --help and --header - { { echo "$as_me:42924: error: ambiguous option: $1 + { { echo "$as_me:43275: 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;} @@ -42940,7 +43291,7 @@ Try \`$0 --help' for more information." >&2;} ac_need_defaults=false;; # This is an error. - -*) { { echo "$as_me:42943: error: unrecognized option: $1 + -*) { { echo "$as_me:43294: 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;} @@ -42993,7 +43344,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:42996: error: invalid argument: $ac_config_target" >&5 + *) { { echo "$as_me:43347: error: invalid argument: $ac_config_target" >&5 echo "$as_me: error: invalid argument: $ac_config_target" >&2;} { (exit 1); exit 1; }; };; esac @@ -43326,7 +43677,7 @@ done; } esac if test x"$ac_file" != x-; then - { echo "$as_me:43329: creating $ac_file" >&5 + { echo "$as_me:43680: creating $ac_file" >&5 echo "$as_me: creating $ac_file" >&6;} rm -f "$ac_file" fi @@ -43344,7 +43695,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:43347: error: cannot find input file: $f" >&5 + test -f "$f" || { { echo "$as_me:43698: error: cannot find input file: $f" >&5 echo "$as_me: error: cannot find input file: $f" >&2;} { (exit 1); exit 1; }; } echo $f;; @@ -43357,7 +43708,7 @@ echo "$as_me: error: cannot find input file: $f" >&2;} echo $srcdir/$f else # /dev/null tree - { { echo "$as_me:43360: error: cannot find input file: $f" >&5 + { { echo "$as_me:43711: error: cannot find input file: $f" >&5 echo "$as_me: error: cannot find input file: $f" >&2;} { (exit 1); exit 1; }; } fi;; @@ -43373,7 +43724,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:43376: WARNING: datarootdir was used implicitly but not set: + { echo "$as_me:43727: 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;} @@ -43382,7 +43733,7 @@ $ac_seen" >&2;} fi ac_seen=`grep '${datarootdir}' $ac_item` if test -n "$ac_seen"; then - { echo "$as_me:43385: WARNING: datarootdir was used explicitly but not set: + { echo "$as_me:43736: 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;} @@ -43419,7 +43770,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:43422: WARNING: Variable $ac_name is used but was not set: + { echo "$as_me:43773: 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;} @@ -43430,7 +43781,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:43433: WARNING: Some variables may not be substituted: + { echo "$as_me:43784: WARNING: Some variables may not be substituted: $ac_seen" >&5 echo "$as_me: WARNING: Some variables may not be substituted: $ac_seen" >&2;} @@ -43479,7 +43830,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:43482: creating $ac_file" >&5 + test x"$ac_file" != x- && { echo "$as_me:43833: creating $ac_file" >&5 echo "$as_me: creating $ac_file" >&6;} # First look for the input files in the build tree, otherwise in the @@ -43490,7 +43841,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:43493: error: cannot find input file: $f" >&5 + test -f "$f" || { { echo "$as_me:43844: error: cannot find input file: $f" >&5 echo "$as_me: error: cannot find input file: $f" >&2;} { (exit 1); exit 1; }; } echo $f;; @@ -43503,7 +43854,7 @@ echo "$as_me: error: cannot find input file: $f" >&2;} echo $srcdir/$f else # /dev/null tree - { { echo "$as_me:43506: error: cannot find input file: $f" >&5 + { { echo "$as_me:43857: error: cannot find input file: $f" >&5 echo "$as_me: error: cannot find input file: $f" >&2;} { (exit 1); exit 1; }; } fi;; @@ -43621,7 +43972,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:43624: $ac_file is unchanged" >&5 + { echo "$as_me:43975: $ac_file is unchanged" >&5 echo "$as_me: $ac_file is unchanged" >&6;} else ac_dir=`$as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ diff --git a/configure.in b/configure.in index edab037a..b7a25642 100644 --- a/configure.in +++ b/configure.in @@ -1,4 +1,4 @@ -dnl $LynxId: configure.in,v 1.248 2013/07/29 21:38:35 tom Exp $ +dnl $LynxId: configure.in,v 1.250 2013/10/07 11:50:02 tom Exp $ dnl dnl Process this file with autoconf to produce a configure script. dnl @@ -549,8 +549,15 @@ ncursesw) cf_wide_curses=yes ;; pdcurses) - cf_cv_ncurses_header=xcurses.h - # do this last, since it changes definition of main: CF_PDCURSES_X11 + case $host_os in + mingw*) + cf_cv_ncurses_header=curses.h + ;; + *) #(vi + cf_cv_ncurses_header=xcurses.h + # do this last, since it changes definition of main: CF_PDCURSES_X11 + ;; + esac ;; slang) CF_SLANG_UNIX_DEFS @@ -807,6 +814,14 @@ AC_REPLACE_FUNCS( \ ) CF_SRAND(lynx_) +CF_CHECK_FUNCDECLS([ +#ifdef HAVE_STDLIB_H +#include <stdlib.h> +#endif +#ifdef HAVE_UNISTD_H +#include <unistd.h> +#endif +], sleep) CF_CHECK_FUNCDECLS([#include <string.h>], strstr) CF_CHECK_FUNCDECLS([ #include <stdio.h> @@ -1444,14 +1459,23 @@ AC_SUBST(COMPRESS_EXT) if test $cf_cv_screen = pdcurses ; then CF_HELP_MESSAGE(Special Libraries for PDCurses X11:) - CF_PDCURSES_X11 + case $host_os in #(vi + mingw*) + CF_PDCURSES_W32 + ;; + *) #(vi + CF_PDCURSES_X11 + ;; + esac else CF_TERMIO_AND_CURSES(LYCurses.h) fi ### These tests must be run after establishing the curses library. if test $cf_cv_screen != slang ; then - AC_CHECK_HEADERS($cf_cv_screen/term.h term.h) + if test $cf_cv_screen != pdcurses ; then + AC_CHECK_HEADERS($cf_cv_screen/term.h term.h) + fi CF_ALT_CHAR_SET CF_FANCY_CURSES CF_FUNC_CURSES_VERSION diff --git a/src/LYStyle.c b/src/LYStyle.c index 3aa0517d..1f4263be 100644 --- a/src/LYStyle.c +++ b/src/LYStyle.c @@ -1,5 +1,5 @@ /* - * $LynxId: LYStyle.c,v 1.75 2013/10/02 14:47:09 tom Exp $ + * $LynxId: LYStyle.c,v 1.76 2013/10/03 18:44:56 tom Exp $ * * character level styles for Lynx * (c) 1996 Rob Partington -- donated to the Lyncei (if they want it :-) @@ -452,17 +452,9 @@ static void initialise_default_stylesheet(void) { 4, "strike" }, { 4, "strong" }, { 4, "u" }, -#if 0 - { 5, "a.b" }, - { 5, "b.a" }, - { 5, "var.a" }, -#endif + { 5, "input" }, { 6, "alink" }, { 7, "whereis" }, -#if 0 - { 0, "h2.link" }, - { 0, "link.h2" }, -#endif #ifdef USE_PRETTYSRC /* FIXME: HTL_tagspecs_defaults[] has similar info */ { 4, "span.htmlsrc_comment" }, |