diff options
author | Thomas E. Dickey <dickey@invisible-island.net> | 2020-02-27 10:23:24 +0000 |
---|---|---|
committer | Thomas E. Dickey <dickey@invisible-island.net> | 2020-02-27 10:23:24 +0000 |
commit | ec4362144bcd953cad9c096ea88b5274e46e9772 (patch) | |
tree | fb2d38f0dc22f265d384bcc1af9eb696e18d070e | |
parent | 48ab6b47540d90cfeb5b320294cf904b5dbb520b (diff) | |
download | lynx-snapshots-ec4362144bcd953cad9c096ea88b5274e46e9772.tar.gz |
snapshot of project "lynx", label v2-9-0dev_4o
-rw-r--r-- | CHANGES | 6 | ||||
-rw-r--r-- | WWW/Library/Implementation/HTFTP.c | 40 | ||||
-rw-r--r-- | aclocal.m4 | 44 | ||||
-rwxr-xr-x | configure | 4766 | ||||
-rw-r--r-- | src/LYexit.c | 6 |
5 files changed, 2652 insertions, 2210 deletions
diff --git a/CHANGES b/CHANGES index 16d12f2b..ab9158ff 100644 --- a/CHANGES +++ b/CHANGES @@ -1,9 +1,11 @@ --- $LynxId: CHANGES,v 1.1042 2020/02/25 10:16:56 tom Exp $ +-- $LynxId: CHANGES,v 1.1045 2020/02/27 09:51:17 tom Exp $ =============================================================================== Changes since Lynx 2.8 release =============================================================================== -2020-02-25 (2.9.0dev.5) +2020-02-27 (2.9.0dev.5) +* fix gcc9 warning about sprintf in HTFTP.c -TD +* workaround for MacOS clang wrapper c99 "-W" option, in configure script -TD * use curses_exit() from ncurses 6.2 for leak-checking -TD * amend workaround in 2.8.6dev.19 for "-notitle" option, fixing an off-by-one display (report by Keith Bowes) -TD diff --git a/WWW/Library/Implementation/HTFTP.c b/WWW/Library/Implementation/HTFTP.c index 7a7efaa4..7403326d 100644 --- a/WWW/Library/Implementation/HTFTP.c +++ b/WWW/Library/Implementation/HTFTP.c @@ -1,5 +1,5 @@ /* - * $LynxId: HTFTP.c,v 1.141 2020/01/21 22:07:13 tom Exp $ + * $LynxId: HTFTP.c,v 1.142 2020/02/26 23:40:14 tom Exp $ * * File Transfer Protocol (FTP) Client * for a WorldWideWeb browser @@ -235,7 +235,7 @@ static PortNumber port_number = FIRST_TCP_PORT; static BOOL have_socket = FALSE; /* true if master_socket is valid */ static LYNX_FD master_socket; /* Listening socket = invalid */ -static char port_command[255]; /* Command for setting the port */ +static char *port_command; /* Command for setting the port */ static fd_set open_sockets; /* Mask of active channels */ static LYNX_FD num_sockets; /* Number of sockets to scan */ static PortNumber passive_port; /* Port server specified for data */ @@ -918,7 +918,7 @@ static int get_connection(const char *arg, /* Now we log in Look up username, prompt for pw. */ - status = response((char *) 0); /* Get greeting */ + status = response(NULL); /* Get greeting */ CheckForInterrupt("at beginning of login"); server_type = GENERIC_SERVER; /* reset */ @@ -1167,6 +1167,7 @@ static int get_listen_socket(void) FD_ZERO(&open_sockets); /* Clear our record of open sockets */ num_sockets = 0; + FREE(port_command); #ifndef REPEAT_LISTEN if (have_socket) return master_socket; /* Done already */ @@ -1327,14 +1328,14 @@ static int get_listen_socket(void) switch (SOCKADDR_OF(soc_A)->sa_family) { case AF_INET: #endif /* INET6 */ - sprintf(port_command, "PORT %d,%d,%d,%d,%d,%d%c%c", - (int) *((unsigned char *) (&soc_A.soc_in.sin_addr) + 0), - (int) *((unsigned char *) (&soc_A.soc_in.sin_addr) + 1), - (int) *((unsigned char *) (&soc_A.soc_in.sin_addr) + 2), - (int) *((unsigned char *) (&soc_A.soc_in.sin_addr) + 3), - (int) *((unsigned char *) (&soc_A.soc_in.sin_port) + 0), - (int) *((unsigned char *) (&soc_A.soc_in.sin_port) + 1), - CR, LF); + HTSprintf0(&port_command, "PORT %d,%d,%d,%d,%d,%d%c%c", + (int) *((unsigned char *) (&soc_A.soc_in.sin_addr) + 0), + (int) *((unsigned char *) (&soc_A.soc_in.sin_addr) + 1), + (int) *((unsigned char *) (&soc_A.soc_in.sin_addr) + 2), + (int) *((unsigned char *) (&soc_A.soc_in.sin_addr) + 3), + (int) *((unsigned char *) (&soc_A.soc_in.sin_port) + 0), + (int) *((unsigned char *) (&soc_A.soc_in.sin_port) + 1), + CR, LF); #ifdef INET6 break; @@ -1351,15 +1352,17 @@ static int get_listen_socket(void) portbuf, (socklen_t) sizeof(portbuf), NI_NUMERICHOST | NI_NUMERICSERV); - sprintf(port_command, "EPRT |%d|%s|%s|%c%c", 2, hostbuf, portbuf, - CR, LF); + HTSprintf0(&port_command, "EPRT |%d|%s|%s|%c%c", 2, hostbuf, portbuf, + CR, LF); break; } default: - sprintf(port_command, "JUNK%c%c", CR, LF); + HTSprintf0(&port_command, "JUNK%c%c", CR, LF); break; } #endif /* INET6 */ + if (port_command == NULL) + return -1; /* Inform TCP that we will accept connections */ @@ -3206,7 +3209,7 @@ static int read_directory(HTParentAnchor *parent, if (WasInterrupted || data_soc != -1) { /* should always be true */ /* - * Without closing the data socket first, the response(0) later may + * Without closing the data socket first, the response(NULL) later may * hang. Some servers expect the client to fin/ack the close of the * data connection before proceeding with the conversation on the * control connection. - kw @@ -3271,6 +3274,7 @@ static int setup_connection(const char *name, /* Inform the server of the port number we will listen on */ status = response(port_command); + FREE(port_command); if (status == HT_INTERRUPTED) { CTRACE((tfp, "HTFTP: Interrupted in response (port_command)\n")); _HTProgress(CONNECTION_INTERRUPTED); @@ -4023,7 +4027,7 @@ int HTFTPLoad(const char *name, if (final_status > 0) { if (server_type != CMS_SERVER) if (outstanding-- > 0) { - status = response(0); + status = response(NULL); if (status < 0 || (status == 2 && !StrNCmp(response_text, "221", 3))) outstanding = 0; @@ -4115,7 +4119,7 @@ int HTFTPLoad(const char *name, (void) HTInetStatus("close"); /* Comment only */ } else { if (rv != HT_LOADED && outstanding--) { - status = response(0); /* Pick up final reply */ + status = response(NULL); /* Pick up final reply */ if (status != 2 && rv != HT_INTERRUPTED && rv != -1) { data_soc = -1; /* invalidate it */ init_help_message_cache(); /* to free memory */ @@ -4129,7 +4133,7 @@ int HTFTPLoad(const char *name, } while (outstanding-- > 0 && (status > 0)) { - status = response(0); + status = response(NULL); if (status == 2 && !StrNCmp(response_text, "221", 3)) break; } diff --git a/aclocal.m4 b/aclocal.m4 index 283bce24..10af8672 100644 --- a/aclocal.m4 +++ b/aclocal.m4 @@ -1,4 +1,4 @@ -dnl $LynxId: aclocal.m4,v 1.260 2020/01/21 23:44:20 tom Exp $ +dnl $LynxId: aclocal.m4,v 1.265 2020/02/27 10:21:59 tom Exp $ dnl Macros for auto-configure script. dnl by Thomas E. Dickey <dickey@invisible-island.net> dnl and Jim Spath <jspath@mail.bcpl.lib.md.us> @@ -3998,7 +3998,7 @@ printf("old\n"); ,[$1=no]) ])dnl dnl --------------------------------------------------------------------------- -dnl CF_NCURSES_CONFIG version: 21 updated: 2018/06/20 20:23:13 +dnl CF_NCURSES_CONFIG version: 23 updated: 2020/02/27 05:21:59 dnl ----------------- dnl Tie together the configure-script macros for ncurses, preferring these in dnl order: @@ -4020,11 +4020,47 @@ if test "x${PKG_CONFIG:=none}" != xnone; then AC_MSG_CHECKING(if the $cf_ncuconfig_root package files work) cf_have_ncuconfig=unknown + cf_save_CFLAGS="$CFLAGS" cf_save_CPPFLAGS="$CPPFLAGS" cf_save_LIBS="$LIBS" - CF_ADD_CFLAGS(`$PKG_CONFIG --cflags $cf_ncuconfig_root`) - CF_ADD_LIBS(`$PKG_CONFIG --libs $cf_ncuconfig_root`) + cf_pkg_cflags=`$PKG_CONFIG --cflags $cf_ncuconfig_root` + cf_pkg_libs=`$PKG_CONFIG --libs $cf_ncuconfig_root` + + # while -W for passing linker flags is prevalent, it is not "standard". + # At least one wrapper for c89/c99 (in Apple's xcode) has its own + # incompatible _and_ non-standard -W option which gives an error. Work + # around that pitfall. + case "x${CC}@@${cf_pkg_libs}@${cf_pkg_cflags}" in + (x*c[[89]]9@@*-W*) + CF_ADD_CFLAGS($cf_pkg_cflags) + CF_ADD_LIBS($cf_pkg_libs) + + AC_TRY_LINK([#include <${cf_cv_ncurses_header:-curses.h}>], + [initscr(); mousemask(0,0); tgoto((char *)0, 0, 0);], + [AC_TRY_RUN([#include <${cf_cv_ncurses_header:-curses.h}> + int main(void) + { char *xx = curses_version(); return (xx == 0); }], + [cf_test_ncuconfig=yes], + [cf_test_ncuconfig=no], + [cf_test_ncuconfig=maybe])], + [cf_test_ncuconfig=no]) + + CFLAGS="$cf_save_CFLAGS" + CPPFLAGS="$cf_save_CPPFLAGS" + LIBS="$cf_save_LIBS" + + if test "x$cf_test_ncuconfig" != xyes; then + cf_temp=`echo "x$cf_pkg_cflags" | sed -e s/^x// -e 's/-W[[^ ]]*//g'` + cf_pkg_cflags="$cf_temp" + cf_temp=`echo "x$cf_pkg_libs" | sed -e s/^x// -e 's/-W[[^ ]]*//g'` + cf_pkg_libs="$cf_temp" + fi + ;; + esac + + CF_ADD_CFLAGS($cf_pkg_cflags) + CF_ADD_LIBS($cf_pkg_libs) AC_TRY_LINK([#include <${cf_cv_ncurses_header:-curses.h}>], [initscr(); mousemask(0,0); tgoto((char *)0, 0, 0);], diff --git a/configure b/configure index a66affc2..8989e532 100755 --- a/configure +++ b/configure @@ -22672,15 +22672,214 @@ echo "${ECHO_T}yes" >&6 echo $ECHO_N "checking if the $cf_ncuconfig_root package files work... $ECHO_C" >&6 cf_have_ncuconfig=unknown + cf_save_CFLAGS="$CFLAGS" cf_save_CPPFLAGS="$CPPFLAGS" cf_save_LIBS="$LIBS" + cf_pkg_cflags=`$PKG_CONFIG --cflags $cf_ncuconfig_root` + cf_pkg_libs=`$PKG_CONFIG --libs $cf_ncuconfig_root` + + # while -W for passing linker flags is prevalent, it is not "standard". + # At least one wrapper for c89/c99 (in Apple's xcode) has its own + # incompatible _and_ non-standard -W option which gives an error. Work + # around that pitfall. + case "x${CC}@@${cf_pkg_libs}@${cf_pkg_cflags}" in + (x*c[89]9@@*-W*) + +cf_fix_cppflags=no +cf_new_cflags= +cf_new_cppflags= +cf_new_extra_cppflags= + +for cf_add_cflags in $cf_pkg_cflags +do +case $cf_fix_cppflags in +(no) + case $cf_add_cflags in + (-undef|-nostdinc*|-I*|-D*|-U*|-E|-P|-C) + case $cf_add_cflags in + (-D*) + cf_tst_cflags=`echo ${cf_add_cflags} |sed -e 's/^-D[^=]*='\''\"[^"]*//'` + + test "x${cf_add_cflags}" != "x${cf_tst_cflags}" \ + && test -z "${cf_tst_cflags}" \ + && cf_fix_cppflags=yes + + if test $cf_fix_cppflags = yes ; then + + test -n "$cf_new_extra_cppflags" && cf_new_extra_cppflags="$cf_new_extra_cppflags " + cf_new_extra_cppflags="${cf_new_extra_cppflags}$cf_add_cflags" + + continue + elif test "${cf_tst_cflags}" = "\"'" ; then + + test -n "$cf_new_extra_cppflags" && cf_new_extra_cppflags="$cf_new_extra_cppflags " + cf_new_extra_cppflags="${cf_new_extra_cppflags}$cf_add_cflags" + + continue + fi + ;; + esac + case "$CPPFLAGS" in + (*$cf_add_cflags) + ;; + (*) + case $cf_add_cflags in + (-D*) + cf_tst_cppflags=`echo "x$cf_add_cflags" | sed -e 's/^...//' -e 's/=.*//'` + +CPPFLAGS=`echo "$CPPFLAGS" | \ + sed -e 's/-[UD]'"$cf_tst_cppflags"'\(=[^ ]*\)\?[ ]/ /g' \ + -e 's/-[UD]'"$cf_tst_cppflags"'\(=[^ ]*\)\?$//g'` + + ;; + esac + + test -n "$cf_new_cppflags" && cf_new_cppflags="$cf_new_cppflags " + cf_new_cppflags="${cf_new_cppflags}$cf_add_cflags" + + ;; + esac + ;; + (*) + + test -n "$cf_new_cflags" && cf_new_cflags="$cf_new_cflags " + cf_new_cflags="${cf_new_cflags}$cf_add_cflags" + + ;; + esac + ;; +(yes) + + test -n "$cf_new_extra_cppflags" && cf_new_extra_cppflags="$cf_new_extra_cppflags " + cf_new_extra_cppflags="${cf_new_extra_cppflags}$cf_add_cflags" + + cf_tst_cflags=`echo ${cf_add_cflags} |sed -e 's/^[^"]*"'\''//'` + + test "x${cf_add_cflags}" != "x${cf_tst_cflags}" \ + && test -z "${cf_tst_cflags}" \ + && cf_fix_cppflags=no + ;; +esac +done + +if test -n "$cf_new_cflags" ; then + + test -n "$CFLAGS" && CFLAGS="$CFLAGS " + CFLAGS="${CFLAGS}$cf_new_cflags" + +fi + +if test -n "$cf_new_cppflags" ; then + + test -n "$CPPFLAGS" && CPPFLAGS="$CPPFLAGS " + CPPFLAGS="${CPPFLAGS}$cf_new_cppflags" + +fi + +if test -n "$cf_new_extra_cppflags" ; then + + test -n "$EXTRA_CPPFLAGS" && EXTRA_CPPFLAGS="$EXTRA_CPPFLAGS " + EXTRA_CPPFLAGS="${EXTRA_CPPFLAGS}$cf_new_extra_cppflags" + +fi + +cf_add_libs="$LIBS" +# reverse order +cf_add_0lib= +for cf_add_1lib in $cf_pkg_libs; do cf_add_0lib="$cf_add_1lib $cf_add_0lib"; done +# filter duplicates +for cf_add_1lib in $cf_add_0lib; do + for cf_add_2lib in $cf_add_libs; do + if test "x$cf_add_1lib" = "x$cf_add_2lib"; then + cf_add_1lib= + break + fi + done + test -n "$cf_add_1lib" && cf_add_libs="$cf_add_1lib $cf_add_libs" +done +LIBS="$cf_add_libs" + + cat >conftest.$ac_ext <<_ACEOF +#line 22804 "configure" +#include "confdefs.h" +#include <${cf_cv_ncurses_header:-curses.h}> +int +main (void) +{ +initscr(); mousemask(0,0); tgoto((char *)0, 0, 0); + ; + return 0; +} +_ACEOF +rm -f conftest.$ac_objext conftest$ac_exeext +if { (eval echo "$as_me:22816: \"$ac_link\"") >&5 + (eval $ac_link) 2>&5 + ac_status=$? + echo "$as_me:22819: \$? = $ac_status" >&5 + (exit $ac_status); } && + { ac_try='test -s conftest$ac_exeext' + { (eval echo "$as_me:22822: \"$ac_try\"") >&5 + (eval $ac_try) 2>&5 + ac_status=$? + echo "$as_me:22825: \$? = $ac_status" >&5 + (exit $ac_status); }; }; then + if test "$cross_compiling" = yes; then + cf_test_ncuconfig=maybe +else + cat >conftest.$ac_ext <<_ACEOF +#line 22831 "configure" +#include "confdefs.h" +#include <${cf_cv_ncurses_header:-curses.h}> + int main(void) + { char *xx = curses_version(); return (xx == 0); } +_ACEOF +rm -f conftest$ac_exeext +if { (eval echo "$as_me:22838: \"$ac_link\"") >&5 + (eval $ac_link) 2>&5 + ac_status=$? + echo "$as_me:22841: \$? = $ac_status" >&5 + (exit $ac_status); } && { ac_try='./conftest$ac_exeext' + { (eval echo "$as_me:22843: \"$ac_try\"") >&5 + (eval $ac_try) 2>&5 + ac_status=$? + echo "$as_me:22846: \$? = $ac_status" >&5 + (exit $ac_status); }; }; then + cf_test_ncuconfig=yes +else + echo "$as_me: program exited with status $ac_status" >&5 +echo "$as_me: failed program was:" >&5 +cat conftest.$ac_ext >&5 +cf_test_ncuconfig=no +fi +rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext +fi +else + echo "$as_me: failed program was:" >&5 +cat conftest.$ac_ext >&5 +cf_test_ncuconfig=no +fi +rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext + + CFLAGS="$cf_save_CFLAGS" + CPPFLAGS="$cf_save_CPPFLAGS" + LIBS="$cf_save_LIBS" + + if test "x$cf_test_ncuconfig" != xyes; then + cf_temp=`echo "x$cf_pkg_cflags" | sed -e s/^x// -e 's/-W[^ ]*//g'` + cf_pkg_cflags="$cf_temp" + cf_temp=`echo "x$cf_pkg_libs" | sed -e s/^x// -e 's/-W[^ ]*//g'` + cf_pkg_libs="$cf_temp" + fi + ;; + esac + cf_fix_cppflags=no cf_new_cflags= cf_new_cppflags= cf_new_extra_cppflags= -for cf_add_cflags in `$PKG_CONFIG --cflags $cf_ncuconfig_root` +for cf_add_cflags in $cf_pkg_cflags do case $cf_fix_cppflags in (no) @@ -22776,7 +22975,7 @@ fi cf_add_libs="$LIBS" # reverse order cf_add_0lib= -for cf_add_1lib in `$PKG_CONFIG --libs $cf_ncuconfig_root`; do cf_add_0lib="$cf_add_1lib $cf_add_0lib"; done +for cf_add_1lib in $cf_pkg_libs; do cf_add_0lib="$cf_add_1lib $cf_add_0lib"; done # filter duplicates for cf_add_1lib in $cf_add_0lib; do for cf_add_2lib in $cf_add_libs; do @@ -22790,7 +22989,7 @@ done LIBS="$cf_add_libs" cat >conftest.$ac_ext <<_ACEOF -#line 22793 "configure" +#line 22992 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> int @@ -22802,37 +23001,37 @@ initscr(); mousemask(0,0); tgoto((char *)0, 0, 0); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:22805: \"$ac_link\"") >&5 +if { (eval echo "$as_me:23004: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:22808: \$? = $ac_status" >&5 + echo "$as_me:23007: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:22811: \"$ac_try\"") >&5 + { (eval echo "$as_me:23010: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:22814: \$? = $ac_status" >&5 + echo "$as_me:23013: \$? = $ac_status" >&5 (exit $ac_status); }; }; then if test "$cross_compiling" = yes; then cf_have_ncuconfig=maybe else cat >conftest.$ac_ext <<_ACEOF -#line 22820 "configure" +#line 23019 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> int main(void) { char *xx = curses_version(); return (xx == 0); } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:22827: \"$ac_link\"") >&5 +if { (eval echo "$as_me:23026: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:22830: \$? = $ac_status" >&5 + echo "$as_me:23029: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:22832: \"$ac_try\"") >&5 + { (eval echo "$as_me:23031: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:22835: \$? = $ac_status" >&5 + echo "$as_me:23034: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_have_ncuconfig=yes else @@ -22849,7 +23048,7 @@ cat conftest.$ac_ext >&5 cf_have_ncuconfig=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext - echo "$as_me:22852: result: $cf_have_ncuconfig" >&5 + echo "$as_me:23051: result: $cf_have_ncuconfig" >&5 echo "${ECHO_T}$cf_have_ncuconfig" >&6 test "$cf_have_ncuconfig" = maybe && cf_have_ncuconfig=yes if test "$cf_have_ncuconfig" != "yes" @@ -22865,7 +23064,7 @@ EOF NCURSES_CONFIG_PKG=$cf_ncuconfig_root -echo "$as_me:22868: checking for terminfo header" >&5 +echo "$as_me:23067: 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 @@ -22883,7 +23082,7 @@ esac for cf_test in $cf_term_header "ncurses/term.h" "ncursesw/term.h" do cat >conftest.$ac_ext <<_ACEOF -#line 22886 "configure" +#line 23085 "configure" #include "confdefs.h" #include <stdio.h> #include <${cf_cv_ncurses_header:-curses.h}> @@ -22898,16 +23097,16 @@ int x = auto_left_margin } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:22901: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:23100: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:22904: \$? = $ac_status" >&5 + echo "$as_me:23103: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:22907: \"$ac_try\"") >&5 + { (eval echo "$as_me:23106: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:22910: \$? = $ac_status" >&5 + echo "$as_me:23109: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_term_header="$cf_test" @@ -22923,7 +23122,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext done fi -echo "$as_me:22926: result: $cf_cv_term_header" >&5 +echo "$as_me:23125: result: $cf_cv_term_header" >&5 echo "${ECHO_T}$cf_cv_term_header" >&6 # Set definitions to allow ifdef'ing to accommodate subdirectories @@ -22958,7 +23157,7 @@ esac fi else - echo "$as_me:22961: result: no" >&5 + echo "$as_me:23160: result: no" >&5 echo "${ECHO_T}no" >&6 NCURSES_CONFIG_PKG=none fi @@ -22974,7 +23173,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:22977: checking for $ac_word" >&5 +echo "$as_me:23176: 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 @@ -22989,7 +23188,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:22992: found $ac_dir/$ac_word" >&5 +echo "$as_me:23191: found $ac_dir/$ac_word" >&5 break done @@ -22997,10 +23196,10 @@ fi fi NCURSES_CONFIG=$ac_cv_prog_NCURSES_CONFIG if test -n "$NCURSES_CONFIG"; then - echo "$as_me:23000: result: $NCURSES_CONFIG" >&5 + echo "$as_me:23199: result: $NCURSES_CONFIG" >&5 echo "${ECHO_T}$NCURSES_CONFIG" >&6 else - echo "$as_me:23003: result: no" >&5 + echo "$as_me:23202: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -23013,7 +23212,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:23016: checking for $ac_word" >&5 +echo "$as_me:23215: 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 @@ -23028,7 +23227,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:23031: found $ac_dir/$ac_word" >&5 +echo "$as_me:23230: found $ac_dir/$ac_word" >&5 break done @@ -23036,10 +23235,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:23039: result: $ac_ct_NCURSES_CONFIG" >&5 + echo "$as_me:23238: result: $ac_ct_NCURSES_CONFIG" >&5 echo "${ECHO_T}$ac_ct_NCURSES_CONFIG" >&6 else - echo "$as_me:23042: result: no" >&5 + echo "$as_me:23241: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -23168,7 +23367,7 @@ LIBS="$cf_add_libs" # even with config script, some packages use no-override for curses.h -echo "$as_me:23171: checking if we have identified curses headers" >&5 +echo "$as_me:23370: 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 @@ -23180,7 +23379,7 @@ for cf_header in \ curses.h $cf_cv_screen/curses.h do cat >conftest.$ac_ext <<_ACEOF -#line 23183 "configure" +#line 23382 "configure" #include "confdefs.h" #include <${cf_header}> int @@ -23192,16 +23391,16 @@ initscr(); tgoto("?", 0,0) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:23195: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:23394: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:23198: \$? = $ac_status" >&5 + echo "$as_me:23397: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:23201: \"$ac_try\"") >&5 + { (eval echo "$as_me:23400: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23204: \$? = $ac_status" >&5 + echo "$as_me:23403: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_ncurses_header=$cf_header; break else @@ -23212,11 +23411,11 @@ rm -f conftest.$ac_objext conftest.$ac_ext done fi -echo "$as_me:23215: result: $cf_cv_ncurses_header" >&5 +echo "$as_me:23414: 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:23219: error: No curses header-files found" >&5 + { { echo "$as_me:23418: error: No curses header-files found" >&5 echo "$as_me: error: No curses header-files found" >&2;} { (exit 1); exit 1; }; } fi @@ -23226,23 +23425,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:23229: checking for $ac_header" >&5 +echo "$as_me:23428: 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 23235 "configure" +#line 23434 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:23239: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:23438: \"$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:23245: \$? = $ac_status" >&5 + echo "$as_me:23444: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -23261,7 +23460,7 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:23264: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:23463: 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 @@ -23317,7 +23516,7 @@ if test -n "$cf_cv_curses_dir/include/$cf_ncuhdr_root" ; then CPPFLAGS="${CPPFLAGS}-I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 23320 "configure" +#line 23519 "configure" #include "confdefs.h" #include <stdio.h> int @@ -23329,16 +23528,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:23332: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:23531: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:23335: \$? = $ac_status" >&5 + echo "$as_me:23534: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:23338: \"$ac_try\"") >&5 + { (eval echo "$as_me:23537: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23341: \$? = $ac_status" >&5 + echo "$as_me:23540: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -23355,7 +23554,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}:23358: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:23557: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -23374,7 +23573,7 @@ fi } -echo "$as_me:23377: checking for $cf_ncuhdr_root header in include-path" >&5 +echo "$as_me:23576: 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 @@ -23386,7 +23585,7 @@ else do cat >conftest.$ac_ext <<_ACEOF -#line 23389 "configure" +#line 23588 "configure" #include "confdefs.h" #include <$cf_header> @@ -23410,16 +23609,16 @@ printf("old\n"); } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:23413: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:23612: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:23416: \$? = $ac_status" >&5 + echo "$as_me:23615: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:23419: \"$ac_try\"") >&5 + { (eval echo "$as_me:23618: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23422: \$? = $ac_status" >&5 + echo "$as_me:23621: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_ncurses_h=$cf_header @@ -23434,14 +23633,14 @@ rm -f conftest.$ac_objext conftest.$ac_ext done fi -echo "$as_me:23437: result: $cf_cv_ncurses_h" >&5 +echo "$as_me:23636: 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:23444: checking for $cf_ncuhdr_root include-path" >&5 +echo "$as_me:23643: 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 @@ -23562,7 +23761,7 @@ if test -n "$cf_incdir" ; then CPPFLAGS="${CPPFLAGS}-I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 23565 "configure" +#line 23764 "configure" #include "confdefs.h" #include <stdio.h> int @@ -23574,16 +23773,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:23577: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:23776: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:23580: \$? = $ac_status" >&5 + echo "$as_me:23779: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:23583: \"$ac_try\"") >&5 + { (eval echo "$as_me:23782: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23586: \$? = $ac_status" >&5 + echo "$as_me:23785: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -23600,7 +23799,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}:23603: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:23802: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -23623,7 +23822,7 @@ fi do cat >conftest.$ac_ext <<_ACEOF -#line 23626 "configure" +#line 23825 "configure" #include "confdefs.h" #include <$cf_header> @@ -23647,16 +23846,16 @@ printf("old\n"); } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:23650: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:23849: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:23653: \$? = $ac_status" >&5 + echo "$as_me:23852: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:23656: \"$ac_try\"") >&5 + { (eval echo "$as_me:23855: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23659: \$? = $ac_status" >&5 + echo "$as_me:23858: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_ncurses_h2=$cf_header @@ -23677,12 +23876,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:23680: error: not found" >&5 + test "$cf_cv_ncurses_h2" = no && { { echo "$as_me:23879: error: not found" >&5 echo "$as_me: error: not found" >&2;} { (exit 1); exit 1; }; } fi -echo "$as_me:23685: result: $cf_cv_ncurses_h2" >&5 +echo "$as_me:23884: 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%/[^/]*$%%'` @@ -23718,7 +23917,7 @@ if test -n "$cf_1st_incdir" ; then CPPFLAGS="${CPPFLAGS}-I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 23721 "configure" +#line 23920 "configure" #include "confdefs.h" #include <stdio.h> int @@ -23730,16 +23929,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:23733: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:23932: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:23736: \$? = $ac_status" >&5 + echo "$as_me:23935: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:23739: \"$ac_try\"") >&5 + { (eval echo "$as_me:23938: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23742: \$? = $ac_status" >&5 + echo "$as_me:23941: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -23756,7 +23955,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}:23759: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:23958: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -23804,7 +24003,7 @@ EOF ;; esac -echo "$as_me:23807: checking for terminfo header" >&5 +echo "$as_me:24006: 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 @@ -23822,7 +24021,7 @@ esac for cf_test in $cf_term_header "ncurses/term.h" "ncursesw/term.h" do cat >conftest.$ac_ext <<_ACEOF -#line 23825 "configure" +#line 24024 "configure" #include "confdefs.h" #include <stdio.h> #include <${cf_cv_ncurses_header:-curses.h}> @@ -23837,16 +24036,16 @@ int x = auto_left_margin } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:23840: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:24039: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:23843: \$? = $ac_status" >&5 + echo "$as_me:24042: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:23846: \"$ac_try\"") >&5 + { (eval echo "$as_me:24045: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23849: \$? = $ac_status" >&5 + echo "$as_me:24048: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_term_header="$cf_test" @@ -23862,7 +24061,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext done fi -echo "$as_me:23865: result: $cf_cv_term_header" >&5 +echo "$as_me:24064: result: $cf_cv_term_header" >&5 echo "${ECHO_T}$cf_cv_term_header" >&6 # Set definitions to allow ifdef'ing to accommodate subdirectories @@ -23900,7 +24099,7 @@ cat >>confdefs.h <<\EOF #define NCURSES 1 EOF -echo "$as_me:23903: checking for ncurses version" >&5 +echo "$as_me:24102: 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 @@ -23926,10 +24125,10 @@ Autoconf "old" #endif EOF cf_try="$ac_cpp conftest.$ac_ext 2>&5 | grep '^Autoconf ' >conftest.out" - { (eval echo "$as_me:23929: \"$cf_try\"") >&5 + { (eval echo "$as_me:24128: \"$cf_try\"") >&5 (eval $cf_try) 2>&5 ac_status=$? - echo "$as_me:23932: \$? = $ac_status" >&5 + echo "$as_me:24131: \$? = $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%".*%%'` @@ -23939,7 +24138,7 @@ EOF else cat >conftest.$ac_ext <<_ACEOF -#line 23942 "configure" +#line 24141 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> @@ -23964,15 +24163,15 @@ int main(void) } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:23967: \"$ac_link\"") >&5 +if { (eval echo "$as_me:24166: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:23970: \$? = $ac_status" >&5 + echo "$as_me:24169: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:23972: \"$ac_try\"") >&5 + { (eval echo "$as_me:24171: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23975: \$? = $ac_status" >&5 + echo "$as_me:24174: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_ncurses_version=`cat $cf_tempfile` @@ -23986,7 +24185,7 @@ fi rm -f $cf_tempfile fi -echo "$as_me:23989: result: $cf_cv_ncurses_version" >&5 +echo "$as_me:24188: result: $cf_cv_ncurses_version" >&5 echo "${ECHO_T}$cf_cv_ncurses_version" >&6 test "$cf_cv_ncurses_version" = no || cat >>confdefs.h <<\EOF @@ -23999,7 +24198,7 @@ cf_nculib_root=$cf_cv_screen # to link gpm. cf_ncurses_LIBS="" cf_ncurses_SAVE="$LIBS" -echo "$as_me:24002: checking for Gpm_Open in -lgpm" >&5 +echo "$as_me:24201: 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 @@ -24007,7 +24206,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lgpm $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 24010 "configure" +#line 24209 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -24026,16 +24225,16 @@ Gpm_Open (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:24029: \"$ac_link\"") >&5 +if { (eval echo "$as_me:24228: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:24032: \$? = $ac_status" >&5 + echo "$as_me:24231: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:24035: \"$ac_try\"") >&5 + { (eval echo "$as_me:24234: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:24038: \$? = $ac_status" >&5 + echo "$as_me:24237: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_gpm_Gpm_Open=yes else @@ -24046,10 +24245,10 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:24049: result: $ac_cv_lib_gpm_Gpm_Open" >&5 +echo "$as_me:24248: 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:24052: checking for initscr in -lgpm" >&5 + echo "$as_me:24251: 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 @@ -24057,7 +24256,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lgpm $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 24060 "configure" +#line 24259 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -24076,16 +24275,16 @@ initscr (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:24079: \"$ac_link\"") >&5 +if { (eval echo "$as_me:24278: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:24082: \$? = $ac_status" >&5 + echo "$as_me:24281: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:24085: \"$ac_try\"") >&5 + { (eval echo "$as_me:24284: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:24088: \$? = $ac_status" >&5 + echo "$as_me:24287: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_gpm_initscr=yes else @@ -24096,7 +24295,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:24099: result: $ac_cv_lib_gpm_initscr" >&5 +echo "$as_me:24298: 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" @@ -24111,7 +24310,7 @@ case $host_os in # This is only necessary if you are linking against an obsolete # version of ncurses (but it should do no harm, since it's static). if test "$cf_nculib_root" = ncurses ; then - echo "$as_me:24114: checking for tgoto in -lmytinfo" >&5 + echo "$as_me:24313: 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 @@ -24119,7 +24318,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lmytinfo $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 24122 "configure" +#line 24321 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -24138,16 +24337,16 @@ tgoto (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:24141: \"$ac_link\"") >&5 +if { (eval echo "$as_me:24340: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:24144: \$? = $ac_status" >&5 + echo "$as_me:24343: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:24147: \"$ac_try\"") >&5 + { (eval echo "$as_me:24346: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:24150: \$? = $ac_status" >&5 + echo "$as_me:24349: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_mytinfo_tgoto=yes else @@ -24158,7 +24357,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:24161: result: $ac_cv_lib_mytinfo_tgoto" >&5 +echo "$as_me:24360: 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" @@ -24207,13 +24406,13 @@ else eval 'cf_cv_have_lib_'$cf_nculib_root'=no' cf_libdir="" - echo "$as_me:24210: checking for initscr" >&5 + echo "$as_me:24409: 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 24216 "configure" +#line 24415 "configure" #include "confdefs.h" #define initscr autoconf_temporary #include <limits.h> /* least-intrusive standard header which defines gcc2 __stub macros */ @@ -24244,16 +24443,16 @@ main (void) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:24247: \"$ac_link\"") >&5 +if { (eval echo "$as_me:24446: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:24250: \$? = $ac_status" >&5 + echo "$as_me:24449: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:24253: \"$ac_try\"") >&5 + { (eval echo "$as_me:24452: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:24256: \$? = $ac_status" >&5 + echo "$as_me:24455: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_initscr=yes else @@ -24263,18 +24462,18 @@ ac_cv_func_initscr=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:24266: result: $ac_cv_func_initscr" >&5 +echo "$as_me:24465: 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:24273: checking for initscr in -l$cf_nculib_root" >&5 + echo "$as_me:24472: 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 24277 "configure" +#line 24476 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> int @@ -24286,25 +24485,25 @@ initscr() } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:24289: \"$ac_link\"") >&5 +if { (eval echo "$as_me:24488: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:24292: \$? = $ac_status" >&5 + echo "$as_me:24491: \$? = $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:24494: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:24298: \$? = $ac_status" >&5 + echo "$as_me:24497: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:24300: result: yes" >&5 + echo "$as_me:24499: 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:24307: result: no" >&5 +echo "$as_me:24506: result: no" >&5 echo "${ECHO_T}no" >&6 cf_search= @@ -24372,11 +24571,11 @@ cf_search="$cf_library_path_list $cf_search" for cf_libdir in $cf_search do - echo "$as_me:24375: checking for -l$cf_nculib_root in $cf_libdir" >&5 + echo "$as_me:24574: 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 24379 "configure" +#line 24578 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> int @@ -24388,25 +24587,25 @@ initscr() } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:24391: \"$ac_link\"") >&5 +if { (eval echo "$as_me:24590: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:24394: \$? = $ac_status" >&5 + echo "$as_me:24593: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:24397: \"$ac_try\"") >&5 + { (eval echo "$as_me:24596: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:24400: \$? = $ac_status" >&5 + echo "$as_me:24599: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:24402: result: yes" >&5 + echo "$as_me:24601: 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:24409: result: no" >&5 +echo "$as_me:24608: result: no" >&5 echo "${ECHO_T}no" >&6 LIBS="$cf_save_LIBS" fi @@ -24421,7 +24620,7 @@ fi eval 'cf_found_library=$cf_cv_have_lib_'$cf_nculib_root if test $cf_found_library = no ; then - { { echo "$as_me:24424: error: Cannot link $cf_nculib_root library" >&5 + { { echo "$as_me:24623: error: Cannot link $cf_nculib_root library" >&5 echo "$as_me: error: Cannot link $cf_nculib_root library" >&2;} { (exit 1); exit 1; }; } fi @@ -24429,7 +24628,7 @@ fi fi if test -n "$cf_ncurses_LIBS" ; then - echo "$as_me:24432: checking if we can link $cf_nculib_root without $cf_ncurses_LIBS" >&5 + echo "$as_me:24631: 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 @@ -24439,7 +24638,7 @@ echo $ECHO_N "checking if we can link $cf_nculib_root without $cf_ncurses_LIBS.. fi done cat >conftest.$ac_ext <<_ACEOF -#line 24442 "configure" +#line 24641 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> int @@ -24451,23 +24650,23 @@ initscr(); mousemask(0,0); tgoto((char *)0, 0, 0); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:24454: \"$ac_link\"") >&5 +if { (eval echo "$as_me:24653: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:24457: \$? = $ac_status" >&5 + echo "$as_me:24656: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:24460: \"$ac_try\"") >&5 + { (eval echo "$as_me:24659: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:24463: \$? = $ac_status" >&5 + echo "$as_me:24662: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:24465: result: yes" >&5 + echo "$as_me:24664: result: yes" >&5 echo "${ECHO_T}yes" >&6 else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 -echo "$as_me:24470: result: no" >&5 +echo "$as_me:24669: result: no" >&5 echo "${ECHO_T}no" >&6 LIBS="$cf_ncurses_SAVE" fi @@ -24493,25 +24692,224 @@ cf_ncuconfig_root=$cf_cv_screen cf_have_ncuconfig=no if test "x${PKG_CONFIG:=none}" != xnone; then - echo "$as_me:24496: checking pkg-config for $cf_ncuconfig_root" >&5 + echo "$as_me:24695: checking pkg-config for $cf_ncuconfig_root" >&5 echo $ECHO_N "checking pkg-config for $cf_ncuconfig_root... $ECHO_C" >&6 if "$PKG_CONFIG" --exists $cf_ncuconfig_root ; then - echo "$as_me:24499: result: yes" >&5 + echo "$as_me:24698: result: yes" >&5 echo "${ECHO_T}yes" >&6 - echo "$as_me:24502: checking if the $cf_ncuconfig_root package files work" >&5 + echo "$as_me:24701: checking if the $cf_ncuconfig_root package files work" >&5 echo $ECHO_N "checking if the $cf_ncuconfig_root package files work... $ECHO_C" >&6 cf_have_ncuconfig=unknown + cf_save_CFLAGS="$CFLAGS" cf_save_CPPFLAGS="$CPPFLAGS" cf_save_LIBS="$LIBS" + cf_pkg_cflags=`$PKG_CONFIG --cflags $cf_ncuconfig_root` + cf_pkg_libs=`$PKG_CONFIG --libs $cf_ncuconfig_root` + + # while -W for passing linker flags is prevalent, it is not "standard". + # At least one wrapper for c89/c99 (in Apple's xcode) has its own + # incompatible _and_ non-standard -W option which gives an error. Work + # around that pitfall. + case "x${CC}@@${cf_pkg_libs}@${cf_pkg_cflags}" in + (x*c[89]9@@*-W*) + +cf_fix_cppflags=no +cf_new_cflags= +cf_new_cppflags= +cf_new_extra_cppflags= + +for cf_add_cflags in $cf_pkg_cflags +do +case $cf_fix_cppflags in +(no) + case $cf_add_cflags in + (-undef|-nostdinc*|-I*|-D*|-U*|-E|-P|-C) + case $cf_add_cflags in + (-D*) + cf_tst_cflags=`echo ${cf_add_cflags} |sed -e 's/^-D[^=]*='\''\"[^"]*//'` + + test "x${cf_add_cflags}" != "x${cf_tst_cflags}" \ + && test -z "${cf_tst_cflags}" \ + && cf_fix_cppflags=yes + + if test $cf_fix_cppflags = yes ; then + + test -n "$cf_new_extra_cppflags" && cf_new_extra_cppflags="$cf_new_extra_cppflags " + cf_new_extra_cppflags="${cf_new_extra_cppflags}$cf_add_cflags" + + continue + elif test "${cf_tst_cflags}" = "\"'" ; then + + test -n "$cf_new_extra_cppflags" && cf_new_extra_cppflags="$cf_new_extra_cppflags " + cf_new_extra_cppflags="${cf_new_extra_cppflags}$cf_add_cflags" + + continue + fi + ;; + esac + case "$CPPFLAGS" in + (*$cf_add_cflags) + ;; + (*) + case $cf_add_cflags in + (-D*) + cf_tst_cppflags=`echo "x$cf_add_cflags" | sed -e 's/^...//' -e 's/=.*//'` + +CPPFLAGS=`echo "$CPPFLAGS" | \ + sed -e 's/-[UD]'"$cf_tst_cppflags"'\(=[^ ]*\)\?[ ]/ /g' \ + -e 's/-[UD]'"$cf_tst_cppflags"'\(=[^ ]*\)\?$//g'` + + ;; + esac + + test -n "$cf_new_cppflags" && cf_new_cppflags="$cf_new_cppflags " + cf_new_cppflags="${cf_new_cppflags}$cf_add_cflags" + + ;; + esac + ;; + (*) + + test -n "$cf_new_cflags" && cf_new_cflags="$cf_new_cflags " + cf_new_cflags="${cf_new_cflags}$cf_add_cflags" + + ;; + esac + ;; +(yes) + + test -n "$cf_new_extra_cppflags" && cf_new_extra_cppflags="$cf_new_extra_cppflags " + cf_new_extra_cppflags="${cf_new_extra_cppflags}$cf_add_cflags" + + cf_tst_cflags=`echo ${cf_add_cflags} |sed -e 's/^[^"]*"'\''//'` + + test "x${cf_add_cflags}" != "x${cf_tst_cflags}" \ + && test -z "${cf_tst_cflags}" \ + && cf_fix_cppflags=no + ;; +esac +done + +if test -n "$cf_new_cflags" ; then + + test -n "$CFLAGS" && CFLAGS="$CFLAGS " + CFLAGS="${CFLAGS}$cf_new_cflags" + +fi + +if test -n "$cf_new_cppflags" ; then + + test -n "$CPPFLAGS" && CPPFLAGS="$CPPFLAGS " + CPPFLAGS="${CPPFLAGS}$cf_new_cppflags" + +fi + +if test -n "$cf_new_extra_cppflags" ; then + + test -n "$EXTRA_CPPFLAGS" && EXTRA_CPPFLAGS="$EXTRA_CPPFLAGS " + EXTRA_CPPFLAGS="${EXTRA_CPPFLAGS}$cf_new_extra_cppflags" + +fi + +cf_add_libs="$LIBS" +# reverse order +cf_add_0lib= +for cf_add_1lib in $cf_pkg_libs; do cf_add_0lib="$cf_add_1lib $cf_add_0lib"; done +# filter duplicates +for cf_add_1lib in $cf_add_0lib; do + for cf_add_2lib in $cf_add_libs; do + if test "x$cf_add_1lib" = "x$cf_add_2lib"; then + cf_add_1lib= + break + fi + done + test -n "$cf_add_1lib" && cf_add_libs="$cf_add_1lib $cf_add_libs" +done +LIBS="$cf_add_libs" + + cat >conftest.$ac_ext <<_ACEOF +#line 24834 "configure" +#include "confdefs.h" +#include <${cf_cv_ncurses_header:-curses.h}> +int +main (void) +{ +initscr(); mousemask(0,0); tgoto((char *)0, 0, 0); + ; + return 0; +} +_ACEOF +rm -f conftest.$ac_objext conftest$ac_exeext +if { (eval echo "$as_me:24846: \"$ac_link\"") >&5 + (eval $ac_link) 2>&5 + ac_status=$? + echo "$as_me:24849: \$? = $ac_status" >&5 + (exit $ac_status); } && + { ac_try='test -s conftest$ac_exeext' + { (eval echo "$as_me:24852: \"$ac_try\"") >&5 + (eval $ac_try) 2>&5 + ac_status=$? + echo "$as_me:24855: \$? = $ac_status" >&5 + (exit $ac_status); }; }; then + if test "$cross_compiling" = yes; then + cf_test_ncuconfig=maybe +else + cat >conftest.$ac_ext <<_ACEOF +#line 24861 "configure" +#include "confdefs.h" +#include <${cf_cv_ncurses_header:-curses.h}> + int main(void) + { char *xx = curses_version(); return (xx == 0); } +_ACEOF +rm -f conftest$ac_exeext +if { (eval echo "$as_me:24868: \"$ac_link\"") >&5 + (eval $ac_link) 2>&5 + ac_status=$? + echo "$as_me:24871: \$? = $ac_status" >&5 + (exit $ac_status); } && { ac_try='./conftest$ac_exeext' + { (eval echo "$as_me:24873: \"$ac_try\"") >&5 + (eval $ac_try) 2>&5 + ac_status=$? + echo "$as_me:24876: \$? = $ac_status" >&5 + (exit $ac_status); }; }; then + cf_test_ncuconfig=yes +else + echo "$as_me: program exited with status $ac_status" >&5 +echo "$as_me: failed program was:" >&5 +cat conftest.$ac_ext >&5 +cf_test_ncuconfig=no +fi +rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext +fi +else + echo "$as_me: failed program was:" >&5 +cat conftest.$ac_ext >&5 +cf_test_ncuconfig=no +fi +rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext + + CFLAGS="$cf_save_CFLAGS" + CPPFLAGS="$cf_save_CPPFLAGS" + LIBS="$cf_save_LIBS" + + if test "x$cf_test_ncuconfig" != xyes; then + cf_temp=`echo "x$cf_pkg_cflags" | sed -e s/^x// -e 's/-W[^ ]*//g'` + cf_pkg_cflags="$cf_temp" + cf_temp=`echo "x$cf_pkg_libs" | sed -e s/^x// -e 's/-W[^ ]*//g'` + cf_pkg_libs="$cf_temp" + fi + ;; + esac + cf_fix_cppflags=no cf_new_cflags= cf_new_cppflags= cf_new_extra_cppflags= -for cf_add_cflags in `$PKG_CONFIG --cflags $cf_ncuconfig_root` +for cf_add_cflags in $cf_pkg_cflags do case $cf_fix_cppflags in (no) @@ -24607,7 +25005,7 @@ fi cf_add_libs="$LIBS" # reverse order cf_add_0lib= -for cf_add_1lib in `$PKG_CONFIG --libs $cf_ncuconfig_root`; do cf_add_0lib="$cf_add_1lib $cf_add_0lib"; done +for cf_add_1lib in $cf_pkg_libs; do cf_add_0lib="$cf_add_1lib $cf_add_0lib"; done # filter duplicates for cf_add_1lib in $cf_add_0lib; do for cf_add_2lib in $cf_add_libs; do @@ -24621,7 +25019,7 @@ done LIBS="$cf_add_libs" cat >conftest.$ac_ext <<_ACEOF -#line 24624 "configure" +#line 25022 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> int @@ -24633,37 +25031,37 @@ initscr(); mousemask(0,0); tgoto((char *)0, 0, 0); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:24636: \"$ac_link\"") >&5 +if { (eval echo "$as_me:25034: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:24639: \$? = $ac_status" >&5 + echo "$as_me:25037: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:24642: \"$ac_try\"") >&5 + { (eval echo "$as_me:25040: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:24645: \$? = $ac_status" >&5 + echo "$as_me:25043: \$? = $ac_status" >&5 (exit $ac_status); }; }; then if test "$cross_compiling" = yes; then cf_have_ncuconfig=maybe else cat >conftest.$ac_ext <<_ACEOF -#line 24651 "configure" +#line 25049 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> int main(void) { char *xx = curses_version(); return (xx == 0); } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:24658: \"$ac_link\"") >&5 +if { (eval echo "$as_me:25056: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:24661: \$? = $ac_status" >&5 + echo "$as_me:25059: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:24663: \"$ac_try\"") >&5 + { (eval echo "$as_me:25061: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:24666: \$? = $ac_status" >&5 + echo "$as_me:25064: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_have_ncuconfig=yes else @@ -24680,7 +25078,7 @@ cat conftest.$ac_ext >&5 cf_have_ncuconfig=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext - echo "$as_me:24683: result: $cf_have_ncuconfig" >&5 + echo "$as_me:25081: result: $cf_have_ncuconfig" >&5 echo "${ECHO_T}$cf_have_ncuconfig" >&6 test "$cf_have_ncuconfig" = maybe && cf_have_ncuconfig=yes if test "$cf_have_ncuconfig" != "yes" @@ -24696,7 +25094,7 @@ EOF NCURSES_CONFIG_PKG=$cf_ncuconfig_root -echo "$as_me:24699: checking for terminfo header" >&5 +echo "$as_me:25097: 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 @@ -24714,7 +25112,7 @@ esac for cf_test in $cf_term_header "ncurses/term.h" "ncursesw/term.h" do cat >conftest.$ac_ext <<_ACEOF -#line 24717 "configure" +#line 25115 "configure" #include "confdefs.h" #include <stdio.h> #include <${cf_cv_ncurses_header:-curses.h}> @@ -24729,16 +25127,16 @@ int x = auto_left_margin } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:24732: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:25130: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:24735: \$? = $ac_status" >&5 + echo "$as_me:25133: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:24738: \"$ac_try\"") >&5 + { (eval echo "$as_me:25136: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:24741: \$? = $ac_status" >&5 + echo "$as_me:25139: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_term_header="$cf_test" @@ -24754,7 +25152,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext done fi -echo "$as_me:24757: result: $cf_cv_term_header" >&5 +echo "$as_me:25155: result: $cf_cv_term_header" >&5 echo "${ECHO_T}$cf_cv_term_header" >&6 # Set definitions to allow ifdef'ing to accommodate subdirectories @@ -24789,7 +25187,7 @@ esac fi else - echo "$as_me:24792: result: no" >&5 + echo "$as_me:25190: result: no" >&5 echo "${ECHO_T}no" >&6 NCURSES_CONFIG_PKG=none fi @@ -24805,7 +25203,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:24808: checking for $ac_word" >&5 +echo "$as_me:25206: 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 @@ -24820,7 +25218,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:24823: found $ac_dir/$ac_word" >&5 +echo "$as_me:25221: found $ac_dir/$ac_word" >&5 break done @@ -24828,10 +25226,10 @@ fi fi NCURSES_CONFIG=$ac_cv_prog_NCURSES_CONFIG if test -n "$NCURSES_CONFIG"; then - echo "$as_me:24831: result: $NCURSES_CONFIG" >&5 + echo "$as_me:25229: result: $NCURSES_CONFIG" >&5 echo "${ECHO_T}$NCURSES_CONFIG" >&6 else - echo "$as_me:24834: result: no" >&5 + echo "$as_me:25232: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -24844,7 +25242,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:24847: checking for $ac_word" >&5 +echo "$as_me:25245: 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 @@ -24859,7 +25257,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:24862: found $ac_dir/$ac_word" >&5 +echo "$as_me:25260: found $ac_dir/$ac_word" >&5 break done @@ -24867,10 +25265,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:24870: result: $ac_ct_NCURSES_CONFIG" >&5 + echo "$as_me:25268: result: $ac_ct_NCURSES_CONFIG" >&5 echo "${ECHO_T}$ac_ct_NCURSES_CONFIG" >&6 else - echo "$as_me:24873: result: no" >&5 + echo "$as_me:25271: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -24999,7 +25397,7 @@ LIBS="$cf_add_libs" # even with config script, some packages use no-override for curses.h -echo "$as_me:25002: checking if we have identified curses headers" >&5 +echo "$as_me:25400: 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 @@ -25011,7 +25409,7 @@ for cf_header in \ curses.h $cf_cv_screen/curses.h do cat >conftest.$ac_ext <<_ACEOF -#line 25014 "configure" +#line 25412 "configure" #include "confdefs.h" #include <${cf_header}> int @@ -25023,16 +25421,16 @@ initscr(); tgoto("?", 0,0) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:25026: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:25424: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:25029: \$? = $ac_status" >&5 + echo "$as_me:25427: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:25032: \"$ac_try\"") >&5 + { (eval echo "$as_me:25430: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25035: \$? = $ac_status" >&5 + echo "$as_me:25433: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_ncurses_header=$cf_header; break else @@ -25043,11 +25441,11 @@ rm -f conftest.$ac_objext conftest.$ac_ext done fi -echo "$as_me:25046: result: $cf_cv_ncurses_header" >&5 +echo "$as_me:25444: 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:25050: error: No curses header-files found" >&5 + { { echo "$as_me:25448: error: No curses header-files found" >&5 echo "$as_me: error: No curses header-files found" >&2;} { (exit 1); exit 1; }; } fi @@ -25057,23 +25455,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:25060: checking for $ac_header" >&5 +echo "$as_me:25458: 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 25066 "configure" +#line 25464 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:25070: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:25468: \"$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:25076: \$? = $ac_status" >&5 + echo "$as_me:25474: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -25092,7 +25490,7 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:25095: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:25493: 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 @@ -25148,7 +25546,7 @@ if test -n "$cf_cv_curses_dir/include/$cf_ncuhdr_root" ; then CPPFLAGS="${CPPFLAGS}-I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 25151 "configure" +#line 25549 "configure" #include "confdefs.h" #include <stdio.h> int @@ -25160,16 +25558,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:25163: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:25561: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:25166: \$? = $ac_status" >&5 + echo "$as_me:25564: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:25169: \"$ac_try\"") >&5 + { (eval echo "$as_me:25567: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25172: \$? = $ac_status" >&5 + echo "$as_me:25570: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -25186,7 +25584,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}:25189: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:25587: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -25205,7 +25603,7 @@ fi } -echo "$as_me:25208: checking for $cf_ncuhdr_root header in include-path" >&5 +echo "$as_me:25606: 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 @@ -25217,7 +25615,7 @@ else do cat >conftest.$ac_ext <<_ACEOF -#line 25220 "configure" +#line 25618 "configure" #include "confdefs.h" #include <$cf_header> @@ -25241,16 +25639,16 @@ printf("old\n"); } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:25244: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:25642: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:25247: \$? = $ac_status" >&5 + echo "$as_me:25645: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:25250: \"$ac_try\"") >&5 + { (eval echo "$as_me:25648: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25253: \$? = $ac_status" >&5 + echo "$as_me:25651: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_ncurses_h=$cf_header @@ -25265,14 +25663,14 @@ rm -f conftest.$ac_objext conftest.$ac_ext done fi -echo "$as_me:25268: result: $cf_cv_ncurses_h" >&5 +echo "$as_me:25666: 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:25275: checking for $cf_ncuhdr_root include-path" >&5 +echo "$as_me:25673: 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 @@ -25393,7 +25791,7 @@ if test -n "$cf_incdir" ; then CPPFLAGS="${CPPFLAGS}-I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 25396 "configure" +#line 25794 "configure" #include "confdefs.h" #include <stdio.h> int @@ -25405,16 +25803,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:25408: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:25806: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:25411: \$? = $ac_status" >&5 + echo "$as_me:25809: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:25414: \"$ac_try\"") >&5 + { (eval echo "$as_me:25812: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25417: \$? = $ac_status" >&5 + echo "$as_me:25815: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -25431,7 +25829,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}:25434: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:25832: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -25454,7 +25852,7 @@ fi do cat >conftest.$ac_ext <<_ACEOF -#line 25457 "configure" +#line 25855 "configure" #include "confdefs.h" #include <$cf_header> @@ -25478,16 +25876,16 @@ printf("old\n"); } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:25481: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:25879: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:25484: \$? = $ac_status" >&5 + echo "$as_me:25882: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:25487: \"$ac_try\"") >&5 + { (eval echo "$as_me:25885: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25490: \$? = $ac_status" >&5 + echo "$as_me:25888: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_ncurses_h2=$cf_header @@ -25508,12 +25906,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:25511: error: not found" >&5 + test "$cf_cv_ncurses_h2" = no && { { echo "$as_me:25909: error: not found" >&5 echo "$as_me: error: not found" >&2;} { (exit 1); exit 1; }; } fi -echo "$as_me:25516: result: $cf_cv_ncurses_h2" >&5 +echo "$as_me:25914: 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%/[^/]*$%%'` @@ -25549,7 +25947,7 @@ if test -n "$cf_1st_incdir" ; then CPPFLAGS="${CPPFLAGS}-I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 25552 "configure" +#line 25950 "configure" #include "confdefs.h" #include <stdio.h> int @@ -25561,16 +25959,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:25564: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:25962: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:25567: \$? = $ac_status" >&5 + echo "$as_me:25965: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:25570: \"$ac_try\"") >&5 + { (eval echo "$as_me:25968: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25573: \$? = $ac_status" >&5 + echo "$as_me:25971: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -25587,7 +25985,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}:25590: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:25988: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -25635,7 +26033,7 @@ EOF ;; esac -echo "$as_me:25638: checking for terminfo header" >&5 +echo "$as_me:26036: 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 @@ -25653,7 +26051,7 @@ esac for cf_test in $cf_term_header "ncurses/term.h" "ncursesw/term.h" do cat >conftest.$ac_ext <<_ACEOF -#line 25656 "configure" +#line 26054 "configure" #include "confdefs.h" #include <stdio.h> #include <${cf_cv_ncurses_header:-curses.h}> @@ -25668,16 +26066,16 @@ int x = auto_left_margin } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:25671: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:26069: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:25674: \$? = $ac_status" >&5 + echo "$as_me:26072: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:25677: \"$ac_try\"") >&5 + { (eval echo "$as_me:26075: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25680: \$? = $ac_status" >&5 + echo "$as_me:26078: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_term_header="$cf_test" @@ -25693,7 +26091,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext done fi -echo "$as_me:25696: result: $cf_cv_term_header" >&5 +echo "$as_me:26094: result: $cf_cv_term_header" >&5 echo "${ECHO_T}$cf_cv_term_header" >&6 # Set definitions to allow ifdef'ing to accommodate subdirectories @@ -25731,7 +26129,7 @@ cat >>confdefs.h <<\EOF #define NCURSES 1 EOF -echo "$as_me:25734: checking for ncurses version" >&5 +echo "$as_me:26132: 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 @@ -25757,10 +26155,10 @@ Autoconf "old" #endif EOF cf_try="$ac_cpp conftest.$ac_ext 2>&5 | grep '^Autoconf ' >conftest.out" - { (eval echo "$as_me:25760: \"$cf_try\"") >&5 + { (eval echo "$as_me:26158: \"$cf_try\"") >&5 (eval $cf_try) 2>&5 ac_status=$? - echo "$as_me:25763: \$? = $ac_status" >&5 + echo "$as_me:26161: \$? = $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%".*%%'` @@ -25770,7 +26168,7 @@ EOF else cat >conftest.$ac_ext <<_ACEOF -#line 25773 "configure" +#line 26171 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> @@ -25795,15 +26193,15 @@ int main(void) } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:25798: \"$ac_link\"") >&5 +if { (eval echo "$as_me:26196: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:25801: \$? = $ac_status" >&5 + echo "$as_me:26199: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:25803: \"$ac_try\"") >&5 + { (eval echo "$as_me:26201: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25806: \$? = $ac_status" >&5 + echo "$as_me:26204: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_ncurses_version=`cat $cf_tempfile` @@ -25817,7 +26215,7 @@ fi rm -f $cf_tempfile fi -echo "$as_me:25820: result: $cf_cv_ncurses_version" >&5 +echo "$as_me:26218: result: $cf_cv_ncurses_version" >&5 echo "${ECHO_T}$cf_cv_ncurses_version" >&6 test "$cf_cv_ncurses_version" = no || cat >>confdefs.h <<\EOF @@ -25830,7 +26228,7 @@ cf_nculib_root=$cf_cv_screen # to link gpm. cf_ncurses_LIBS="" cf_ncurses_SAVE="$LIBS" -echo "$as_me:25833: checking for Gpm_Open in -lgpm" >&5 +echo "$as_me:26231: 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 @@ -25838,7 +26236,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lgpm $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 25841 "configure" +#line 26239 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -25857,16 +26255,16 @@ Gpm_Open (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:25860: \"$ac_link\"") >&5 +if { (eval echo "$as_me:26258: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:25863: \$? = $ac_status" >&5 + echo "$as_me:26261: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:25866: \"$ac_try\"") >&5 + { (eval echo "$as_me:26264: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25869: \$? = $ac_status" >&5 + echo "$as_me:26267: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_gpm_Gpm_Open=yes else @@ -25877,10 +26275,10 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:25880: result: $ac_cv_lib_gpm_Gpm_Open" >&5 +echo "$as_me:26278: 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:25883: checking for initscr in -lgpm" >&5 + echo "$as_me:26281: 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 @@ -25888,7 +26286,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lgpm $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 25891 "configure" +#line 26289 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -25907,16 +26305,16 @@ initscr (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:25910: \"$ac_link\"") >&5 +if { (eval echo "$as_me:26308: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:25913: \$? = $ac_status" >&5 + echo "$as_me:26311: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:25916: \"$ac_try\"") >&5 + { (eval echo "$as_me:26314: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25919: \$? = $ac_status" >&5 + echo "$as_me:26317: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_gpm_initscr=yes else @@ -25927,7 +26325,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:25930: result: $ac_cv_lib_gpm_initscr" >&5 +echo "$as_me:26328: 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" @@ -25942,7 +26340,7 @@ case $host_os in # This is only necessary if you are linking against an obsolete # version of ncurses (but it should do no harm, since it's static). if test "$cf_nculib_root" = ncurses ; then - echo "$as_me:25945: checking for tgoto in -lmytinfo" >&5 + echo "$as_me:26343: 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 @@ -25950,7 +26348,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lmytinfo $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 25953 "configure" +#line 26351 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -25969,16 +26367,16 @@ tgoto (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:25972: \"$ac_link\"") >&5 +if { (eval echo "$as_me:26370: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:25975: \$? = $ac_status" >&5 + echo "$as_me:26373: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:25978: \"$ac_try\"") >&5 + { (eval echo "$as_me:26376: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25981: \$? = $ac_status" >&5 + echo "$as_me:26379: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_mytinfo_tgoto=yes else @@ -25989,7 +26387,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:25992: result: $ac_cv_lib_mytinfo_tgoto" >&5 +echo "$as_me:26390: 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" @@ -26038,13 +26436,13 @@ else eval 'cf_cv_have_lib_'$cf_nculib_root'=no' cf_libdir="" - echo "$as_me:26041: checking for initscr" >&5 + echo "$as_me:26439: 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 26047 "configure" +#line 26445 "configure" #include "confdefs.h" #define initscr autoconf_temporary #include <limits.h> /* least-intrusive standard header which defines gcc2 __stub macros */ @@ -26075,16 +26473,16 @@ main (void) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:26078: \"$ac_link\"") >&5 +if { (eval echo "$as_me:26476: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:26081: \$? = $ac_status" >&5 + echo "$as_me:26479: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:26084: \"$ac_try\"") >&5 + { (eval echo "$as_me:26482: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:26087: \$? = $ac_status" >&5 + echo "$as_me:26485: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_initscr=yes else @@ -26094,18 +26492,18 @@ ac_cv_func_initscr=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:26097: result: $ac_cv_func_initscr" >&5 +echo "$as_me:26495: 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:26104: checking for initscr in -l$cf_nculib_root" >&5 + echo "$as_me:26502: 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 26108 "configure" +#line 26506 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> int @@ -26117,25 +26515,25 @@ initscr() } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:26120: \"$ac_link\"") >&5 +if { (eval echo "$as_me:26518: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:26123: \$? = $ac_status" >&5 + echo "$as_me:26521: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:26126: \"$ac_try\"") >&5 + { (eval echo "$as_me:26524: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:26129: \$? = $ac_status" >&5 + echo "$as_me:26527: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:26131: result: yes" >&5 + echo "$as_me:26529: 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:26138: result: no" >&5 +echo "$as_me:26536: result: no" >&5 echo "${ECHO_T}no" >&6 cf_search= @@ -26203,11 +26601,11 @@ cf_search="$cf_library_path_list $cf_search" for cf_libdir in $cf_search do - echo "$as_me:26206: checking for -l$cf_nculib_root in $cf_libdir" >&5 + echo "$as_me:26604: 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 26210 "configure" +#line 26608 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> int @@ -26219,25 +26617,25 @@ initscr() } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:26222: \"$ac_link\"") >&5 +if { (eval echo "$as_me:26620: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:26225: \$? = $ac_status" >&5 + echo "$as_me:26623: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:26228: \"$ac_try\"") >&5 + { (eval echo "$as_me:26626: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:26231: \$? = $ac_status" >&5 + echo "$as_me:26629: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:26233: result: yes" >&5 + echo "$as_me:26631: 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:26240: result: no" >&5 +echo "$as_me:26638: result: no" >&5 echo "${ECHO_T}no" >&6 LIBS="$cf_save_LIBS" fi @@ -26252,7 +26650,7 @@ fi eval 'cf_found_library=$cf_cv_have_lib_'$cf_nculib_root if test $cf_found_library = no ; then - { { echo "$as_me:26255: error: Cannot link $cf_nculib_root library" >&5 + { { echo "$as_me:26653: error: Cannot link $cf_nculib_root library" >&5 echo "$as_me: error: Cannot link $cf_nculib_root library" >&2;} { (exit 1); exit 1; }; } fi @@ -26260,7 +26658,7 @@ fi fi if test -n "$cf_ncurses_LIBS" ; then - echo "$as_me:26263: checking if we can link $cf_nculib_root without $cf_ncurses_LIBS" >&5 + echo "$as_me:26661: 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 @@ -26270,7 +26668,7 @@ echo $ECHO_N "checking if we can link $cf_nculib_root without $cf_ncurses_LIBS.. fi done cat >conftest.$ac_ext <<_ACEOF -#line 26273 "configure" +#line 26671 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> int @@ -26282,23 +26680,23 @@ initscr(); mousemask(0,0); tgoto((char *)0, 0, 0); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:26285: \"$ac_link\"") >&5 +if { (eval echo "$as_me:26683: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:26288: \$? = $ac_status" >&5 + echo "$as_me:26686: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:26291: \"$ac_try\"") >&5 + { (eval echo "$as_me:26689: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:26294: \$? = $ac_status" >&5 + echo "$as_me:26692: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:26296: result: yes" >&5 + echo "$as_me:26694: result: yes" >&5 echo "${ECHO_T}yes" >&6 else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 -echo "$as_me:26301: result: no" >&5 +echo "$as_me:26699: result: no" >&5 echo "${ECHO_T}no" >&6 LIBS="$cf_ncurses_SAVE" fi @@ -26330,7 +26728,7 @@ fi ;; (slang) -echo "$as_me:26333: checking for slang header file" >&5 +echo "$as_me:26731: 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 @@ -26338,7 +26736,7 @@ else cf_cv_slang_header=no cat >conftest.$ac_ext <<_ACEOF -#line 26341 "configure" +#line 26739 "configure" #include "confdefs.h" #include <slang.h> int @@ -26350,16 +26748,16 @@ printf("%s\n", SLANG_VERSION) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:26353: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:26751: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:26356: \$? = $ac_status" >&5 + echo "$as_me:26754: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:26359: \"$ac_try\"") >&5 + { (eval echo "$as_me:26757: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:26362: \$? = $ac_status" >&5 + echo "$as_me:26760: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_slang_header=predefined else @@ -26464,7 +26862,7 @@ cf_search="$cf_search $cf_header_path_list" fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:26467: result: $cf_cv_slang_header" >&5 +echo "$as_me:26865: result: $cf_cv_slang_header" >&5 echo "${ECHO_T}$cf_cv_slang_header" >&6 if test "x$cf_cv_slang_header" != xno @@ -26508,7 +26906,7 @@ if test -n "$cf_incdir" ; then CPPFLAGS="${CPPFLAGS}-I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 26511 "configure" +#line 26909 "configure" #include "confdefs.h" #include <stdio.h> int @@ -26520,16 +26918,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:26523: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:26921: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:26526: \$? = $ac_status" >&5 + echo "$as_me:26924: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:26529: \"$ac_try\"") >&5 + { (eval echo "$as_me:26927: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:26532: \$? = $ac_status" >&5 + echo "$as_me:26930: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -26546,7 +26944,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}:26549: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:26947: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -26578,7 +26976,7 @@ else cf_cv_termlib=none cat >conftest.$ac_ext <<_ACEOF -#line 26581 "configure" +#line 26979 "configure" #include "confdefs.h" int @@ -26590,19 +26988,19 @@ char *x=(char*)tgoto("",0,0) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:26593: \"$ac_link\"") >&5 +if { (eval echo "$as_me:26991: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:26596: \$? = $ac_status" >&5 + echo "$as_me:26994: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:26599: \"$ac_try\"") >&5 + { (eval echo "$as_me:26997: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:26602: \$? = $ac_status" >&5 + echo "$as_me:27000: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cat >conftest.$ac_ext <<_ACEOF -#line 26605 "configure" +#line 27003 "configure" #include "confdefs.h" int @@ -26614,16 +27012,16 @@ int x=tigetstr("") } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:26617: \"$ac_link\"") >&5 +if { (eval echo "$as_me:27015: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:26620: \$? = $ac_status" >&5 + echo "$as_me:27018: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:26623: \"$ac_try\"") >&5 + { (eval echo "$as_me:27021: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:26626: \$? = $ac_status" >&5 + echo "$as_me:27024: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_termlib=terminfo else @@ -26634,7 +27032,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}:26637: testing using functions in predefined $cf_cv_termlib LIBS ..." 1>&5 +echo "${as_me:-configure}:27035: testing using functions in predefined $cf_cv_termlib LIBS ..." 1>&5 else echo "$as_me: failed program was:" >&5 @@ -26649,10 +27047,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:26652: checking for $cf_func in -l$cf_lib" >&5 + echo "$as_me:27050: 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 26655 "configure" +#line 27053 "configure" #include "confdefs.h" int @@ -26664,16 +27062,16 @@ int x=$cf_func("") } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:26667: \"$ac_link\"") >&5 +if { (eval echo "$as_me:27065: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:26670: \$? = $ac_status" >&5 + echo "$as_me:27068: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:26673: \"$ac_try\"") >&5 + { (eval echo "$as_me:27071: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:26676: \$? = $ac_status" >&5 + echo "$as_me:27074: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_result=yes else @@ -26682,7 +27080,7 @@ cat conftest.$ac_ext >&5 cf_result=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext - echo "$as_me:26685: result: $cf_result" >&5 + echo "$as_me:27083: result: $cf_result" >&5 echo "${ECHO_T}$cf_result" >&6 if test "$cf_result" = yes ; then if test "$cf_func" = tigetstr ; then @@ -26699,7 +27097,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:26702: checking for initscr in -lcurses" >&5 + echo "$as_me:27100: 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 @@ -26707,7 +27105,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lcurses $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 26710 "configure" +#line 27108 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -26726,16 +27124,16 @@ initscr (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:26729: \"$ac_link\"") >&5 +if { (eval echo "$as_me:27127: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:26732: \$? = $ac_status" >&5 + echo "$as_me:27130: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:26735: \"$ac_try\"") >&5 + { (eval echo "$as_me:27133: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:26738: \$? = $ac_status" >&5 + echo "$as_me:27136: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_curses_initscr=yes else @@ -26746,7 +27144,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:26749: result: $ac_cv_lib_curses_initscr" >&5 +echo "$as_me:27147: 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 @@ -26768,7 +27166,7 @@ LIBS="$cf_add_libs" fi - echo "$as_me:26771: checking for tgoto in -ltermcap" >&5 + echo "$as_me:27169: 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 @@ -26776,7 +27174,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-ltermcap $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 26779 "configure" +#line 27177 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -26795,16 +27193,16 @@ tgoto (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:26798: \"$ac_link\"") >&5 +if { (eval echo "$as_me:27196: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:26801: \$? = $ac_status" >&5 + echo "$as_me:27199: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:26804: \"$ac_try\"") >&5 + { (eval echo "$as_me:27202: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:26807: \$? = $ac_status" >&5 + echo "$as_me:27205: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_termcap_tgoto=yes else @@ -26815,7 +27213,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:26818: result: $ac_cv_lib_termcap_tgoto" >&5 +echo "$as_me:27216: 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 @@ -26842,20 +27240,20 @@ fi fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext if test "$cf_cv_termlib" = none; then - { echo "$as_me:26845: WARNING: Cannot find -ltermlib, -lcurses, or -ltermcap" >&5 + { echo "$as_me:27243: 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:26852: checking for acos" >&5 +echo "$as_me:27250: 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 26858 "configure" +#line 27256 "configure" #include "confdefs.h" #define acos autoconf_temporary #include <limits.h> /* least-intrusive standard header which defines gcc2 __stub macros */ @@ -26886,16 +27284,16 @@ main (void) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:26889: \"$ac_link\"") >&5 +if { (eval echo "$as_me:27287: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:26892: \$? = $ac_status" >&5 + echo "$as_me:27290: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:26895: \"$ac_try\"") >&5 + { (eval echo "$as_me:27293: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:26898: \$? = $ac_status" >&5 + echo "$as_me:27296: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_acos=yes else @@ -26905,13 +27303,13 @@ ac_cv_func_acos=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:26908: result: $ac_cv_func_acos" >&5 +echo "$as_me:27306: 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:26914: checking for acos in -lm" >&5 +echo "$as_me:27312: 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 @@ -26919,7 +27317,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lm $LIBS $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 26922 "configure" +#line 27320 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -26938,16 +27336,16 @@ acos (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:26941: \"$ac_link\"") >&5 +if { (eval echo "$as_me:27339: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:26944: \$? = $ac_status" >&5 + echo "$as_me:27342: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:26947: \"$ac_try\"") >&5 + { (eval echo "$as_me:27345: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:26950: \$? = $ac_status" >&5 + echo "$as_me:27348: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_m_acos=yes else @@ -26958,7 +27356,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:26961: result: $ac_cv_lib_m_acos" >&5 +echo "$as_me:27359: 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 @@ -26984,13 +27382,13 @@ case $host_os in eval 'cf_cv_have_lib_'video'=no' cf_libdir="" - echo "$as_me:26987: checking for v_init" >&5 + echo "$as_me:27385: 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 26993 "configure" +#line 27391 "configure" #include "confdefs.h" #define v_init autoconf_temporary #include <limits.h> /* least-intrusive standard header which defines gcc2 __stub macros */ @@ -27021,16 +27419,16 @@ main (void) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:27024: \"$ac_link\"") >&5 +if { (eval echo "$as_me:27422: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:27027: \$? = $ac_status" >&5 + echo "$as_me:27425: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:27030: \"$ac_try\"") >&5 + { (eval echo "$as_me:27428: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27033: \$? = $ac_status" >&5 + echo "$as_me:27431: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_v_init=yes else @@ -27040,18 +27438,18 @@ ac_cv_func_v_init=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:27043: result: $ac_cv_func_v_init" >&5 +echo "$as_me:27441: 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:27050: checking for v_init in -lvideo" >&5 + echo "$as_me:27448: 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 27054 "configure" +#line 27452 "configure" #include "confdefs.h" #include <sys/video.h> int @@ -27063,25 +27461,25 @@ v_init() } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:27066: \"$ac_link\"") >&5 +if { (eval echo "$as_me:27464: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:27069: \$? = $ac_status" >&5 + echo "$as_me:27467: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:27072: \"$ac_try\"") >&5 + { (eval echo "$as_me:27470: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27075: \$? = $ac_status" >&5 + echo "$as_me:27473: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:27077: result: yes" >&5 + echo "$as_me:27475: 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:27084: result: no" >&5 +echo "$as_me:27482: result: no" >&5 echo "${ECHO_T}no" >&6 cf_search= @@ -27149,11 +27547,11 @@ cf_search="$cf_library_path_list $cf_search" for cf_libdir in $cf_search do - echo "$as_me:27152: checking for -lvideo in $cf_libdir" >&5 + echo "$as_me:27550: 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 27156 "configure" +#line 27554 "configure" #include "confdefs.h" #include <sys/video.h> int @@ -27165,25 +27563,25 @@ v_init() } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:27168: \"$ac_link\"") >&5 +if { (eval echo "$as_me:27566: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:27171: \$? = $ac_status" >&5 + echo "$as_me:27569: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:27174: \"$ac_try\"") >&5 + { (eval echo "$as_me:27572: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27177: \$? = $ac_status" >&5 + echo "$as_me:27575: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:27179: result: yes" >&5 + echo "$as_me:27577: 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:27186: result: no" >&5 +echo "$as_me:27584: result: no" >&5 echo "${ECHO_T}no" >&6 LIBS="$cf_save_LIBS" fi @@ -27198,7 +27596,7 @@ fi eval 'cf_found_library=$cf_cv_have_lib_'video if test $cf_found_library = no ; then - { { echo "$as_me:27201: error: Cannot link video library" >&5 + { { echo "$as_me:27599: error: Cannot link video library" >&5 echo "$as_me: error: Cannot link video library" >&2;} { (exit 1); exit 1; }; } fi @@ -27208,13 +27606,13 @@ esac eval 'cf_cv_have_lib_'slang'=no' cf_libdir="" - echo "$as_me:27211: checking for SLtt_get_screen_size" >&5 + echo "$as_me:27609: 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 27217 "configure" +#line 27615 "configure" #include "confdefs.h" #define SLtt_get_screen_size autoconf_temporary #include <limits.h> /* least-intrusive standard header which defines gcc2 __stub macros */ @@ -27245,16 +27643,16 @@ main (void) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:27248: \"$ac_link\"") >&5 +if { (eval echo "$as_me:27646: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:27251: \$? = $ac_status" >&5 + echo "$as_me:27649: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:27254: \"$ac_try\"") >&5 + { (eval echo "$as_me:27652: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27257: \$? = $ac_status" >&5 + echo "$as_me:27655: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_SLtt_get_screen_size=yes else @@ -27264,18 +27662,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:27267: result: $ac_cv_func_SLtt_get_screen_size" >&5 +echo "$as_me:27665: 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:27274: checking for SLtt_get_screen_size in -lslang" >&5 + echo "$as_me:27672: 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 27278 "configure" +#line 27676 "configure" #include "confdefs.h" #include <slang.h> int @@ -27287,25 +27685,25 @@ SLtt_get_screen_size() } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:27290: \"$ac_link\"") >&5 +if { (eval echo "$as_me:27688: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:27293: \$? = $ac_status" >&5 + echo "$as_me:27691: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:27296: \"$ac_try\"") >&5 + { (eval echo "$as_me:27694: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27299: \$? = $ac_status" >&5 + echo "$as_me:27697: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:27301: result: yes" >&5 + echo "$as_me:27699: 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:27308: result: no" >&5 +echo "$as_me:27706: result: no" >&5 echo "${ECHO_T}no" >&6 cf_search= @@ -27373,11 +27771,11 @@ cf_search="$cf_library_path_list $cf_search" for cf_libdir in $cf_search do - echo "$as_me:27376: checking for -lslang in $cf_libdir" >&5 + echo "$as_me:27774: 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 27380 "configure" +#line 27778 "configure" #include "confdefs.h" #include <slang.h> int @@ -27389,25 +27787,25 @@ SLtt_get_screen_size() } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:27392: \"$ac_link\"") >&5 +if { (eval echo "$as_me:27790: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:27395: \$? = $ac_status" >&5 + echo "$as_me:27793: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:27398: \"$ac_try\"") >&5 + { (eval echo "$as_me:27796: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27401: \$? = $ac_status" >&5 + echo "$as_me:27799: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:27403: result: yes" >&5 + echo "$as_me:27801: 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:27410: result: no" >&5 +echo "$as_me:27808: result: no" >&5 echo "${ECHO_T}no" >&6 LIBS="$cf_save_LIBS" fi @@ -27422,13 +27820,13 @@ fi eval 'cf_found_library=$cf_cv_have_lib_'slang if test $cf_found_library = no ; then - { { echo "$as_me:27425: error: Cannot link slang library" >&5 + { { echo "$as_me:27823: 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:27431: checking if we can link slang without termcap" >&5 +echo "$as_me:27829: 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%^.%%'` @@ -27437,7 +27835,7 @@ else fi LIBS=`echo ".$cf_slang_LIBS3" | sed -e "s%$cf_exclude%%" -e 's%^.%%'` cat >conftest.$ac_ext <<_ACEOF -#line 27440 "configure" +#line 27838 "configure" #include "confdefs.h" #include <slang.h> int @@ -27449,16 +27847,16 @@ SLtt_get_screen_size() } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:27452: \"$ac_link\"") >&5 +if { (eval echo "$as_me:27850: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:27455: \$? = $ac_status" >&5 + echo "$as_me:27853: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:27458: \"$ac_try\"") >&5 + { (eval echo "$as_me:27856: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27461: \$? = $ac_status" >&5 + echo "$as_me:27859: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_result=yes else @@ -27467,13 +27865,13 @@ cat conftest.$ac_ext >&5 cf_result=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext -echo "$as_me:27470: result: $cf_result" >&5 +echo "$as_me:27868: result: $cf_result" >&5 echo "${ECHO_T}$cf_result" >&6 test $cf_result = no && LIBS="$cf_slang_LIBS3" else -echo "$as_me:27476: checking for slang2 header file" >&5 +echo "$as_me:27874: 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 @@ -27481,7 +27879,7 @@ else cf_cv_slang2_header=no cat >conftest.$ac_ext <<_ACEOF -#line 27484 "configure" +#line 27882 "configure" #include "confdefs.h" #include <slang.h> int @@ -27493,16 +27891,16 @@ printf("%s\n", SLANG_VERSION) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:27496: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:27894: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:27499: \$? = $ac_status" >&5 + echo "$as_me:27897: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:27502: \"$ac_try\"") >&5 + { (eval echo "$as_me:27900: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27505: \$? = $ac_status" >&5 + echo "$as_me:27903: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_slang2_header=predefined else @@ -27607,7 +28005,7 @@ cf_search="$cf_search $cf_header_path_list" fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:27610: result: $cf_cv_slang2_header" >&5 +echo "$as_me:28008: result: $cf_cv_slang2_header" >&5 echo "${ECHO_T}$cf_cv_slang2_header" >&6 if test "x$cf_cv_slang2_header" != xno @@ -27651,7 +28049,7 @@ if test -n "$cf_incdir" ; then CPPFLAGS="${CPPFLAGS}-I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 27654 "configure" +#line 28052 "configure" #include "confdefs.h" #include <stdio.h> int @@ -27663,16 +28061,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:27666: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:28064: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:27669: \$? = $ac_status" >&5 + echo "$as_me:28067: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:27672: \"$ac_try\"") >&5 + { (eval echo "$as_me:28070: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27675: \$? = $ac_status" >&5 + echo "$as_me:28073: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -27689,7 +28087,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}:27692: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:28090: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -27721,7 +28119,7 @@ else cf_cv_termlib=none cat >conftest.$ac_ext <<_ACEOF -#line 27724 "configure" +#line 28122 "configure" #include "confdefs.h" int @@ -27733,19 +28131,19 @@ char *x=(char*)tgoto("",0,0) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:27736: \"$ac_link\"") >&5 +if { (eval echo "$as_me:28134: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:27739: \$? = $ac_status" >&5 + echo "$as_me:28137: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:27742: \"$ac_try\"") >&5 + { (eval echo "$as_me:28140: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27745: \$? = $ac_status" >&5 + echo "$as_me:28143: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cat >conftest.$ac_ext <<_ACEOF -#line 27748 "configure" +#line 28146 "configure" #include "confdefs.h" int @@ -27757,16 +28155,16 @@ int x=tigetstr("") } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:27760: \"$ac_link\"") >&5 +if { (eval echo "$as_me:28158: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:27763: \$? = $ac_status" >&5 + echo "$as_me:28161: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:27766: \"$ac_try\"") >&5 + { (eval echo "$as_me:28164: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27769: \$? = $ac_status" >&5 + echo "$as_me:28167: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_termlib=terminfo else @@ -27777,7 +28175,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}:27780: testing using functions in predefined $cf_cv_termlib LIBS ..." 1>&5 +echo "${as_me:-configure}:28178: testing using functions in predefined $cf_cv_termlib LIBS ..." 1>&5 else echo "$as_me: failed program was:" >&5 @@ -27792,10 +28190,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:27795: checking for $cf_func in -l$cf_lib" >&5 + echo "$as_me:28193: 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 27798 "configure" +#line 28196 "configure" #include "confdefs.h" int @@ -27807,16 +28205,16 @@ int x=$cf_func("") } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:27810: \"$ac_link\"") >&5 +if { (eval echo "$as_me:28208: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:27813: \$? = $ac_status" >&5 + echo "$as_me:28211: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:27816: \"$ac_try\"") >&5 + { (eval echo "$as_me:28214: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27819: \$? = $ac_status" >&5 + echo "$as_me:28217: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_result=yes else @@ -27825,7 +28223,7 @@ cat conftest.$ac_ext >&5 cf_result=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext - echo "$as_me:27828: result: $cf_result" >&5 + echo "$as_me:28226: result: $cf_result" >&5 echo "${ECHO_T}$cf_result" >&6 if test "$cf_result" = yes ; then if test "$cf_func" = tigetstr ; then @@ -27842,7 +28240,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:27845: checking for initscr in -lcurses" >&5 + echo "$as_me:28243: 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 @@ -27850,7 +28248,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lcurses $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 27853 "configure" +#line 28251 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -27869,16 +28267,16 @@ initscr (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:27872: \"$ac_link\"") >&5 +if { (eval echo "$as_me:28270: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:27875: \$? = $ac_status" >&5 + echo "$as_me:28273: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:27878: \"$ac_try\"") >&5 + { (eval echo "$as_me:28276: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27881: \$? = $ac_status" >&5 + echo "$as_me:28279: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_curses_initscr=yes else @@ -27889,7 +28287,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:27892: result: $ac_cv_lib_curses_initscr" >&5 +echo "$as_me:28290: 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 @@ -27911,7 +28309,7 @@ LIBS="$cf_add_libs" fi - echo "$as_me:27914: checking for tgoto in -ltermcap" >&5 + echo "$as_me:28312: 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 @@ -27919,7 +28317,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-ltermcap $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 27922 "configure" +#line 28320 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -27938,16 +28336,16 @@ tgoto (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:27941: \"$ac_link\"") >&5 +if { (eval echo "$as_me:28339: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:27944: \$? = $ac_status" >&5 + echo "$as_me:28342: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:27947: \"$ac_try\"") >&5 + { (eval echo "$as_me:28345: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27950: \$? = $ac_status" >&5 + echo "$as_me:28348: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_termcap_tgoto=yes else @@ -27958,7 +28356,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:27961: result: $ac_cv_lib_termcap_tgoto" >&5 +echo "$as_me:28359: 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 @@ -27985,20 +28383,20 @@ fi fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext if test "$cf_cv_termlib" = none; then - { echo "$as_me:27988: WARNING: Cannot find -ltermlib, -lcurses, or -ltermcap" >&5 + { echo "$as_me:28386: 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:27995: checking for acos" >&5 +echo "$as_me:28393: 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 28001 "configure" +#line 28399 "configure" #include "confdefs.h" #define acos autoconf_temporary #include <limits.h> /* least-intrusive standard header which defines gcc2 __stub macros */ @@ -28029,16 +28427,16 @@ main (void) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:28032: \"$ac_link\"") >&5 +if { (eval echo "$as_me:28430: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:28035: \$? = $ac_status" >&5 + echo "$as_me:28433: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:28038: \"$ac_try\"") >&5 + { (eval echo "$as_me:28436: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28041: \$? = $ac_status" >&5 + echo "$as_me:28439: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_acos=yes else @@ -28048,13 +28446,13 @@ ac_cv_func_acos=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:28051: result: $ac_cv_func_acos" >&5 +echo "$as_me:28449: 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:28057: checking for acos in -lm" >&5 +echo "$as_me:28455: 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 @@ -28062,7 +28460,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lm $LIBS $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 28065 "configure" +#line 28463 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -28081,16 +28479,16 @@ acos (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:28084: \"$ac_link\"") >&5 +if { (eval echo "$as_me:28482: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:28087: \$? = $ac_status" >&5 + echo "$as_me:28485: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:28090: \"$ac_try\"") >&5 + { (eval echo "$as_me:28488: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28093: \$? = $ac_status" >&5 + echo "$as_me:28491: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_m_acos=yes else @@ -28101,7 +28499,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:28104: result: $ac_cv_lib_m_acos" >&5 +echo "$as_me:28502: 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 @@ -28127,13 +28525,13 @@ case $host_os in eval 'cf_cv_have_lib_'video'=no' cf_libdir="" - echo "$as_me:28130: checking for v_init" >&5 + echo "$as_me:28528: 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 28136 "configure" +#line 28534 "configure" #include "confdefs.h" #define v_init autoconf_temporary #include <limits.h> /* least-intrusive standard header which defines gcc2 __stub macros */ @@ -28164,16 +28562,16 @@ main (void) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:28167: \"$ac_link\"") >&5 +if { (eval echo "$as_me:28565: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:28170: \$? = $ac_status" >&5 + echo "$as_me:28568: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:28173: \"$ac_try\"") >&5 + { (eval echo "$as_me:28571: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28176: \$? = $ac_status" >&5 + echo "$as_me:28574: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_v_init=yes else @@ -28183,18 +28581,18 @@ ac_cv_func_v_init=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:28186: result: $ac_cv_func_v_init" >&5 +echo "$as_me:28584: 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:28193: checking for v_init in -lvideo" >&5 + echo "$as_me:28591: 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 28197 "configure" +#line 28595 "configure" #include "confdefs.h" #include <sys/video.h> int @@ -28206,25 +28604,25 @@ v_init() } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:28209: \"$ac_link\"") >&5 +if { (eval echo "$as_me:28607: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:28212: \$? = $ac_status" >&5 + echo "$as_me:28610: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:28215: \"$ac_try\"") >&5 + { (eval echo "$as_me:28613: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28218: \$? = $ac_status" >&5 + echo "$as_me:28616: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:28220: result: yes" >&5 + echo "$as_me:28618: 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:28227: result: no" >&5 +echo "$as_me:28625: result: no" >&5 echo "${ECHO_T}no" >&6 cf_search= @@ -28292,11 +28690,11 @@ cf_search="$cf_library_path_list $cf_search" for cf_libdir in $cf_search do - echo "$as_me:28295: checking for -lvideo in $cf_libdir" >&5 + echo "$as_me:28693: 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 28299 "configure" +#line 28697 "configure" #include "confdefs.h" #include <sys/video.h> int @@ -28308,25 +28706,25 @@ v_init() } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:28311: \"$ac_link\"") >&5 +if { (eval echo "$as_me:28709: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:28314: \$? = $ac_status" >&5 + echo "$as_me:28712: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:28317: \"$ac_try\"") >&5 + { (eval echo "$as_me:28715: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28320: \$? = $ac_status" >&5 + echo "$as_me:28718: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:28322: result: yes" >&5 + echo "$as_me:28720: 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:28329: result: no" >&5 +echo "$as_me:28727: result: no" >&5 echo "${ECHO_T}no" >&6 LIBS="$cf_save_LIBS" fi @@ -28341,7 +28739,7 @@ fi eval 'cf_found_library=$cf_cv_have_lib_'video if test $cf_found_library = no ; then - { { echo "$as_me:28344: error: Cannot link video library" >&5 + { { echo "$as_me:28742: error: Cannot link video library" >&5 echo "$as_me: error: Cannot link video library" >&2;} { (exit 1); exit 1; }; } fi @@ -28351,13 +28749,13 @@ esac eval 'cf_cv_have_lib_'slang2'=no' cf_libdir="" - echo "$as_me:28354: checking for SLtt_get_screen_size" >&5 + echo "$as_me:28752: 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 28360 "configure" +#line 28758 "configure" #include "confdefs.h" #define SLtt_get_screen_size autoconf_temporary #include <limits.h> /* least-intrusive standard header which defines gcc2 __stub macros */ @@ -28388,16 +28786,16 @@ main (void) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:28391: \"$ac_link\"") >&5 +if { (eval echo "$as_me:28789: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:28394: \$? = $ac_status" >&5 + echo "$as_me:28792: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:28397: \"$ac_try\"") >&5 + { (eval echo "$as_me:28795: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28400: \$? = $ac_status" >&5 + echo "$as_me:28798: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_SLtt_get_screen_size=yes else @@ -28407,18 +28805,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:28410: result: $ac_cv_func_SLtt_get_screen_size" >&5 +echo "$as_me:28808: 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:28417: checking for SLtt_get_screen_size in -lslang2" >&5 + echo "$as_me:28815: 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 28421 "configure" +#line 28819 "configure" #include "confdefs.h" #include <slang.h> int @@ -28430,25 +28828,25 @@ SLtt_get_screen_size() } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:28433: \"$ac_link\"") >&5 +if { (eval echo "$as_me:28831: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:28436: \$? = $ac_status" >&5 + echo "$as_me:28834: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:28439: \"$ac_try\"") >&5 + { (eval echo "$as_me:28837: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28442: \$? = $ac_status" >&5 + echo "$as_me:28840: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:28444: result: yes" >&5 + echo "$as_me:28842: 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:28451: result: no" >&5 +echo "$as_me:28849: result: no" >&5 echo "${ECHO_T}no" >&6 cf_search= @@ -28516,11 +28914,11 @@ cf_search="$cf_library_path_list $cf_search" for cf_libdir in $cf_search do - echo "$as_me:28519: checking for -lslang2 in $cf_libdir" >&5 + echo "$as_me:28917: 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 28523 "configure" +#line 28921 "configure" #include "confdefs.h" #include <slang.h> int @@ -28532,25 +28930,25 @@ SLtt_get_screen_size() } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:28535: \"$ac_link\"") >&5 +if { (eval echo "$as_me:28933: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:28538: \$? = $ac_status" >&5 + echo "$as_me:28936: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:28541: \"$ac_try\"") >&5 + { (eval echo "$as_me:28939: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28544: \$? = $ac_status" >&5 + echo "$as_me:28942: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:28546: result: yes" >&5 + echo "$as_me:28944: 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:28553: result: no" >&5 +echo "$as_me:28951: result: no" >&5 echo "${ECHO_T}no" >&6 LIBS="$cf_save_LIBS" fi @@ -28565,13 +28963,13 @@ fi eval 'cf_found_library=$cf_cv_have_lib_'slang2 if test $cf_found_library = no ; then - { { echo "$as_me:28568: error: Cannot link slang2 library" >&5 + { { echo "$as_me:28966: 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:28574: checking if we can link slang2 without termcap" >&5 +echo "$as_me:28972: 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%^.%%'` @@ -28580,7 +28978,7 @@ else fi LIBS=`echo ".$cf_slang_LIBS3" | sed -e "s%$cf_exclude%%" -e 's%^.%%'` cat >conftest.$ac_ext <<_ACEOF -#line 28583 "configure" +#line 28981 "configure" #include "confdefs.h" #include <slang.h> int @@ -28592,16 +28990,16 @@ SLtt_get_screen_size() } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:28595: \"$ac_link\"") >&5 +if { (eval echo "$as_me:28993: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:28598: \$? = $ac_status" >&5 + echo "$as_me:28996: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:28601: \"$ac_try\"") >&5 + { (eval echo "$as_me:28999: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28604: \$? = $ac_status" >&5 + echo "$as_me:29002: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_result=yes else @@ -28610,12 +29008,12 @@ cat conftest.$ac_ext >&5 cf_result=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext -echo "$as_me:28613: result: $cf_result" >&5 +echo "$as_me:29011: result: $cf_result" >&5 echo "${ECHO_T}$cf_result" >&6 test $cf_result = no && LIBS="$cf_slang_LIBS3" else - { { echo "$as_me:28618: error: cannot find slang headers" >&5 + { { echo "$as_me:29016: error: cannot find slang headers" >&5 echo "$as_me: error: cannot find slang headers" >&2;} { (exit 1); exit 1; }; } fi @@ -28623,14 +29021,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:28626: checking if we must define UTF8" >&5 +echo "$as_me:29024: 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 28633 "configure" +#line 29031 "configure" #include "confdefs.h" #include <slang.h> int @@ -28642,16 +29040,16 @@ SLtt_get_screen_size() } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:28645: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:29043: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:28648: \$? = $ac_status" >&5 + echo "$as_me:29046: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:28651: \"$ac_try\"") >&5 + { (eval echo "$as_me:29049: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28654: \$? = $ac_status" >&5 + echo "$as_me:29052: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_slang_utf8=no else @@ -28659,7 +29057,7 @@ else cat conftest.$ac_ext >&5 cat >conftest.$ac_ext <<_ACEOF -#line 28662 "configure" +#line 29060 "configure" #include "confdefs.h" #define UTF8 @@ -28673,16 +29071,16 @@ SLtt_get_screen_size() } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:28676: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:29074: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:28679: \$? = $ac_status" >&5 + echo "$as_me:29077: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:28682: \"$ac_try\"") >&5 + { (eval echo "$as_me:29080: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28685: \$? = $ac_status" >&5 + echo "$as_me:29083: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_slang_utf8=yes else @@ -28695,7 +29093,7 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:28698: result: $cf_cv_slang_utf8" >&5 +echo "$as_me:29096: result: $cf_cv_slang_utf8" >&5 echo "${ECHO_T}$cf_cv_slang_utf8" >&6 if test "$cf_cv_slang_utf8" = yes ; then @@ -28706,14 +29104,14 @@ EOF fi -echo "$as_me:28709: checking if we must tell slang this is UNIX" >&5 +echo "$as_me:29107: 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 28716 "configure" +#line 29114 "configure" #include "confdefs.h" #include <slang.h> int @@ -28732,16 +29130,16 @@ SLang_TT_Baud_Rate = 1 } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:28735: \"$ac_link\"") >&5 +if { (eval echo "$as_me:29133: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:28738: \$? = $ac_status" >&5 + echo "$as_me:29136: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:28741: \"$ac_try\"") >&5 + { (eval echo "$as_me:29139: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28744: \$? = $ac_status" >&5 + echo "$as_me:29142: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_slang_unix=yes else @@ -28752,20 +29150,20 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:28755: result: $cf_cv_slang_unix" >&5 +echo "$as_me:29153: 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:28762: checking for SLsmg_Color_Type" >&5 + echo "$as_me:29160: 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 28768 "configure" +#line 29166 "configure" #include "confdefs.h" #include <slang.h> @@ -28781,16 +29179,16 @@ if (sizeof (SLsmg_Color_Type)) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:28784: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:29182: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:28787: \$? = $ac_status" >&5 + echo "$as_me:29185: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:28790: \"$ac_try\"") >&5 + { (eval echo "$as_me:29188: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28793: \$? = $ac_status" >&5 + echo "$as_me:29191: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_type_SLsmg_Color_Type=yes else @@ -28800,7 +29198,7 @@ ac_cv_type_SLsmg_Color_Type=no fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:28803: result: $ac_cv_type_SLsmg_Color_Type" >&5 +echo "$as_me:29201: 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 @@ -28816,13 +29214,13 @@ EOF fi - echo "$as_me:28819: checking for SLtt_Char_Type" >&5 + echo "$as_me:29217: 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 28825 "configure" +#line 29223 "configure" #include "confdefs.h" #include <slang.h> @@ -28838,16 +29236,16 @@ if (sizeof (SLtt_Char_Type)) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:28841: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:29239: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:28844: \$? = $ac_status" >&5 + echo "$as_me:29242: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:28847: \"$ac_try\"") >&5 + { (eval echo "$as_me:29245: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28850: \$? = $ac_status" >&5 + echo "$as_me:29248: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_type_SLtt_Char_Type=yes else @@ -28857,7 +29255,7 @@ ac_cv_type_SLtt_Char_Type=no fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:28860: result: $ac_cv_type_SLtt_Char_Type" >&5 +echo "$as_me:29258: 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 @@ -28880,7 +29278,7 @@ esac LD_RPATH_OPT= if test "x$cf_cv_enable_rpath" != xno then - echo "$as_me:28883: checking for an rpath option" >&5 + echo "$as_me:29281: checking for an rpath option" >&5 echo $ECHO_N "checking for an rpath option... $ECHO_C" >&6 case $cf_cv_system_name in (irix*) @@ -28911,12 +29309,12 @@ echo $ECHO_N "checking for an rpath option... $ECHO_C" >&6 (*) ;; esac - echo "$as_me:28914: result: $LD_RPATH_OPT" >&5 + echo "$as_me:29312: result: $LD_RPATH_OPT" >&5 echo "${ECHO_T}$LD_RPATH_OPT" >&6 case "x$LD_RPATH_OPT" in (x-R*) - echo "$as_me:28919: checking if we need a space after rpath option" >&5 + echo "$as_me:29317: 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" @@ -28937,7 +29335,7 @@ done LIBS="$cf_add_libs" cat >conftest.$ac_ext <<_ACEOF -#line 28940 "configure" +#line 29338 "configure" #include "confdefs.h" int @@ -28949,16 +29347,16 @@ main (void) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:28952: \"$ac_link\"") >&5 +if { (eval echo "$as_me:29350: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:28955: \$? = $ac_status" >&5 + echo "$as_me:29353: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:28958: \"$ac_try\"") >&5 + { (eval echo "$as_me:29356: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28961: \$? = $ac_status" >&5 + echo "$as_me:29359: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_rpath_space=no else @@ -28968,7 +29366,7 @@ cf_rpath_space=yes fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS="$cf_save_LIBS" - echo "$as_me:28971: result: $cf_rpath_space" >&5 + echo "$as_me:29369: result: $cf_rpath_space" >&5 echo "${ECHO_T}$cf_rpath_space" >&6 test "$cf_rpath_space" = yes && LD_RPATH_OPT="$LD_RPATH_OPT " ;; @@ -28979,13 +29377,13 @@ if test -z "$LD_RPATH_OPT" then test -n "$verbose" && echo " will not attempt to use rpath" 1>&6 -echo "${as_me:-configure}:28982: testing will not attempt to use rpath ..." 1>&5 +echo "${as_me:-configure}:29380: testing will not attempt to use rpath ..." 1>&5 elif test "x${enable_rpath_hack:-yes}" = "xno" then test -n "$verbose" && echo " "rpath is disabled" 1>&6 -echo "${as_me:-configure}:28988: testing "rpath is disabled ..." 1>&5 +echo "${as_me:-configure}:29386: testing "rpath is disabled ..." 1>&5 elif test -z "${LD_RUN_PATH}${LD_LIBRARY_PATH}" then @@ -28996,7 +29394,7 @@ if test "$cross_compiling" = yes; then cf_check_run=unknown else cat >conftest.$ac_ext <<_ACEOF -#line 28999 "configure" +#line 29397 "configure" #include "confdefs.h" #include <stdio.h> int main(void) { @@ -29005,15 +29403,15 @@ int main(void) { } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:29008: \"$ac_link\"") >&5 +if { (eval echo "$as_me:29406: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:29011: \$? = $ac_status" >&5 + echo "$as_me:29409: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:29013: \"$ac_try\"") >&5 + { (eval echo "$as_me:29411: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:29016: \$? = $ac_status" >&5 + echo "$as_me:29414: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_check_run=yes else @@ -29029,7 +29427,7 @@ fi then test -n "$verbose" && echo " linkage is broken" 1>&6 -echo "${as_me:-configure}:29032: testing linkage is broken ..." 1>&5 +echo "${as_me:-configure}:29430: testing linkage is broken ..." 1>&5 cf_result= for cf_item in $LIBS @@ -29061,7 +29459,7 @@ if test "$cross_compiling" = yes; then cf_check_run=unknown else cat >conftest.$ac_ext <<_ACEOF -#line 29064 "configure" +#line 29462 "configure" #include "confdefs.h" #include <stdio.h> int main(void) { @@ -29070,15 +29468,15 @@ int main(void) { } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:29073: \"$ac_link\"") >&5 +if { (eval echo "$as_me:29471: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:29076: \$? = $ac_status" >&5 + echo "$as_me:29474: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:29078: \"$ac_try\"") >&5 + { (eval echo "$as_me:29476: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:29081: \$? = $ac_status" >&5 + echo "$as_me:29479: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_check_run=yes else @@ -29094,12 +29492,12 @@ fi then test -n "$verbose" && echo " use rpath for $cf_save_LIBS" 1>&6 -echo "${as_me:-configure}:29097: testing use rpath for $cf_save_LIBS ..." 1>&5 +echo "${as_me:-configure}:29495: testing use rpath for $cf_save_LIBS ..." 1>&5 LIBS="$cf_result" test -n "$verbose" && echo " result is now $LIBS" 1>&6 -echo "${as_me:-configure}:29102: testing result is now $LIBS ..." 1>&5 +echo "${as_me:-configure}:29500: testing result is now $LIBS ..." 1>&5 else LIBS="$cf_save_LIBS" @@ -29110,20 +29508,20 @@ echo "${as_me:-configure}:29102: testing result is now $LIBS ..." 1>&5 (*) test -n "$verbose" && echo " will not attempt to use rpath" 1>&6 -echo "${as_me:-configure}:29113: testing will not attempt to use rpath ..." 1>&5 +echo "${as_me:-configure}:29511: testing will not attempt to use rpath ..." 1>&5 ;; esac fi -echo "$as_me:29119: checking for chtype typedef" >&5 +echo "$as_me:29517: 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 29126 "configure" +#line 29524 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> int @@ -29135,16 +29533,16 @@ chtype foo } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:29138: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:29536: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:29141: \$? = $ac_status" >&5 + echo "$as_me:29539: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:29144: \"$ac_try\"") >&5 + { (eval echo "$as_me:29542: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:29147: \$? = $ac_status" >&5 + echo "$as_me:29545: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_chtype_decl=yes else @@ -29154,7 +29552,7 @@ cf_cv_chtype_decl=no fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:29157: result: $cf_cv_chtype_decl" >&5 +echo "$as_me:29555: result: $cf_cv_chtype_decl" >&5 echo "${ECHO_T}$cf_cv_chtype_decl" >&6 if test $cf_cv_chtype_decl = yes ; then @@ -29162,14 +29560,14 @@ cat >>confdefs.h <<\EOF #define HAVE_TYPE_CHTYPE 1 EOF - echo "$as_me:29165: checking if chtype is scalar or struct" >&5 + echo "$as_me:29563: 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 29172 "configure" +#line 29570 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> int @@ -29181,16 +29579,16 @@ chtype foo; long x = foo } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:29184: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:29582: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:29187: \$? = $ac_status" >&5 + echo "$as_me:29585: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:29190: \"$ac_try\"") >&5 + { (eval echo "$as_me:29588: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:29193: \$? = $ac_status" >&5 + echo "$as_me:29591: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_chtype_type=scalar else @@ -29200,7 +29598,7 @@ cf_cv_chtype_type=struct fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:29203: result: $cf_cv_chtype_type" >&5 +echo "$as_me:29601: result: $cf_cv_chtype_type" >&5 echo "${ECHO_T}$cf_cv_chtype_type" >&6 if test $cf_cv_chtype_type = scalar ; then @@ -29211,7 +29609,7 @@ EOF fi fi -echo "$as_me:29214: checking if you want the wide-curses features" >&5 +echo "$as_me:29612: 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. @@ -29228,10 +29626,10 @@ else use_wide_curses=$cf_wide_curses fi; -echo "$as_me:29231: result: $use_wide_curses" >&5 +echo "$as_me:29629: result: $use_wide_curses" >&5 echo "${ECHO_T}$use_wide_curses" >&6 -echo "$as_me:29234: checking if color-style code should be used" >&5 +echo "$as_me:29632: 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. @@ -29251,7 +29649,7 @@ fi; case $use_color_style in (no) - echo "$as_me:29254: result: no" >&5 + echo "$as_me:29652: result: no" >&5 echo "${ECHO_T}no" >&6 INSTALL_LSS= ;; @@ -29261,10 +29659,10 @@ cat >>confdefs.h <<\EOF #define USE_COLOR_STYLE 1 EOF - echo "$as_me:29264: result: yes" >&5 + echo "$as_me:29662: result: yes" >&5 echo "${ECHO_T}yes" >&6 - echo "$as_me:29267: checking for location of style-sheet file" >&5 + echo "$as_me:29665: 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. @@ -29300,7 +29698,7 @@ case ".$withval" in withval=`echo $withval | sed -e s%NONE%$cf_path_syntax%` ;; (*) - { { echo "$as_me:29303: error: expected a pathname, not \"$withval\"" >&5 + { { echo "$as_me:29701: error: expected a pathname, not \"$withval\"" >&5 echo "$as_me: error: expected a pathname, not \"$withval\"" >&2;} { (exit 1); exit 1; }; } ;; @@ -29309,7 +29707,7 @@ esac fi eval LYNX_LSS_FILE="$withval" - echo "$as_me:29312: result: $LYNX_LSS_FILE" >&5 + echo "$as_me:29710: result: $LYNX_LSS_FILE" >&5 echo "${ECHO_T}$LYNX_LSS_FILE" >&6 test "$LYNX_LSS_FILE" = no && LYNX_LSS_FILE= @@ -29322,7 +29720,7 @@ EOF ;; esac -echo "$as_me:29325: checking for the default configuration-file" >&5 +echo "$as_me:29723: 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. @@ -29358,7 +29756,7 @@ case ".$withval" in withval=`echo $withval | sed -e s%NONE%$cf_path_syntax%` ;; (*) - { { echo "$as_me:29361: error: expected a pathname, not \"$withval\"" >&5 + { { echo "$as_me:29759: error: expected a pathname, not \"$withval\"" >&5 echo "$as_me: error: expected a pathname, not \"$withval\"" >&2;} { (exit 1); exit 1; }; } ;; @@ -29367,7 +29765,7 @@ esac fi eval LYNX_CFG_FILE="$withval" -echo "$as_me:29370: result: $LYNX_CFG_FILE" >&5 +echo "$as_me:29768: result: $LYNX_CFG_FILE" >&5 echo "${ECHO_T}$LYNX_CFG_FILE" >&6 test "$LYNX_CFG_FILE" = no && LYNX_CFG_FILE= @@ -29376,7 +29774,7 @@ cat >>confdefs.h <<EOF #define LYNX_CFG_FILE "$LYNX_CFG_FILE" EOF -echo "$as_me:29379: checking for the default configuration-path" >&5 +echo "$as_me:29777: checking for the default configuration-path" >&5 echo $ECHO_N "checking for the default configuration-path... $ECHO_C" >&6 # Check whether --with-cfg-path or --without-cfg-path was given. @@ -29412,7 +29810,7 @@ case ".$withval" in withval=`echo $withval | sed -e s%NONE%$cf_path_syntax%` ;; (*) - { { echo "$as_me:29415: error: expected a pathname, not \"$withval\"" >&5 + { { echo "$as_me:29813: error: expected a pathname, not \"$withval\"" >&5 echo "$as_me: error: expected a pathname, not \"$withval\"" >&2;} { (exit 1); exit 1; }; } ;; @@ -29421,7 +29819,7 @@ esac fi eval LYNX_CFG_PATH="$withval" -echo "$as_me:29424: result: $LYNX_CFG_PATH" >&5 +echo "$as_me:29822: result: $LYNX_CFG_PATH" >&5 echo "${ECHO_T}$LYNX_CFG_PATH" >&6 test -z "$LYNX_CFG_PATH" && `echo "$LYNX_CFG_FILE" | sed -e 's%/[^/]*$%%'` @@ -29431,7 +29829,7 @@ cat >>confdefs.h <<EOF #define LYNX_CFG_PATH "$LYNX_CFG_PATH" EOF -echo "$as_me:29434: checking if htmlized lynx.cfg should be built" >&5 +echo "$as_me:29832: 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. @@ -29448,7 +29846,7 @@ else use_htmlized_cfg=no fi; -echo "$as_me:29451: result: $use_htmlized_cfg" >&5 +echo "$as_me:29849: result: $use_htmlized_cfg" >&5 echo "${ECHO_T}$use_htmlized_cfg" >&6 LYNXCFG_MAKE='' @@ -29456,7 +29854,7 @@ if test $use_htmlized_cfg = no ; then LYNXCFG_MAKE='#' fi -echo "$as_me:29459: checking if local doc directory should be linked to help page" >&5 +echo "$as_me:29857: 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. @@ -29473,7 +29871,7 @@ else use_local_docs=no fi; -echo "$as_me:29476: result: $use_local_docs" >&5 +echo "$as_me:29874: result: $use_local_docs" >&5 echo "${ECHO_T}$use_local_docs" >&6 LYNXDOC_MAKE='' @@ -29481,7 +29879,7 @@ if test $use_local_docs = no ; then LYNXDOC_MAKE='#' fi -echo "$as_me:29484: checking for MIME library directory" >&5 +echo "$as_me:29882: 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. @@ -29517,7 +29915,7 @@ case ".$withval" in withval=`echo $withval | sed -e s%NONE%$cf_path_syntax%` ;; (*) - { { echo "$as_me:29520: error: expected a pathname, not \"$withval\"" >&5 + { { echo "$as_me:29918: error: expected a pathname, not \"$withval\"" >&5 echo "$as_me: error: expected a pathname, not \"$withval\"" >&2;} { (exit 1); exit 1; }; } ;; @@ -29526,7 +29924,7 @@ esac fi eval MIME_LIBDIR="$withval" -echo "$as_me:29529: result: $MIME_LIBDIR" >&5 +echo "$as_me:29927: result: $MIME_LIBDIR" >&5 echo "${ECHO_T}$MIME_LIBDIR" >&6 MIME_LIBDIR=`echo "$MIME_LIBDIR" | sed -e 's,/$,,' -e 's,$,/,'` @@ -29534,7 +29932,7 @@ cat >>confdefs.h <<EOF #define MIME_LIBDIR "$MIME_LIBDIR" EOF -echo "$as_me:29537: checking if locale-charset selection logic should be used" >&5 +echo "$as_me:29935: 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. @@ -29551,7 +29949,7 @@ else use_locale_charset=yes fi; -echo "$as_me:29554: result: $use_locale_charset" >&5 +echo "$as_me:29952: result: $use_locale_charset" >&5 echo "${ECHO_T}$use_locale_charset" >&6 test $use_locale_charset != no && cat >>confdefs.h <<\EOF @@ -29560,7 +29958,7 @@ EOF CHARSET_DEFS= -echo "$as_me:29563: checking if you want only a few charsets" >&5 +echo "$as_me:29961: 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. @@ -29572,7 +29970,7 @@ else fi; if test -n "$cf_charsets" ; then - echo "$as_me:29575: result: yes" >&5 + echo "$as_me:29973: result: yes" >&5 echo "${ECHO_T}yes" >&6 cat >>confdefs.h <<\EOF @@ -29586,7 +29984,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}:29589: testing using minimal list of charsets: $cf_min_charsets ..." 1>&5 +echo "${as_me:-configure}:29987: 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'` @@ -29613,28 +30011,28 @@ echo "${as_me:-configure}:29589: testing using minimal list of charsets: $cf_min then test -n "$verbose" && echo " found $cf_charset" 1>&6 -echo "${as_me:-configure}:29616: testing found $cf_charset ..." 1>&5 +echo "${as_me:-configure}:30014: 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}:29622: testing not found $cf_charset ..." 1>&5 +echo "${as_me:-configure}:30020: testing not found $cf_charset ..." 1>&5 fi done else - echo "$as_me:29627: result: no" >&5 + echo "$as_me:30025: result: no" >&5 echo "${ECHO_T}no" >&6 fi -echo "$as_me:29631: checking for ANSI C header files" >&5 +echo "$as_me:30029: 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 29637 "configure" +#line 30035 "configure" #include "confdefs.h" #include <stdlib.h> #include <stdarg.h> @@ -29642,13 +30040,13 @@ else #include <float.h> _ACEOF -if { (eval echo "$as_me:29645: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:30043: \"$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:29651: \$? = $ac_status" >&5 + echo "$as_me:30049: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -29670,7 +30068,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 29673 "configure" +#line 30071 "configure" #include "confdefs.h" #include <string.h> @@ -29688,7 +30086,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 29691 "configure" +#line 30089 "configure" #include "confdefs.h" #include <stdlib.h> @@ -29709,7 +30107,7 @@ if test $ac_cv_header_stdc = yes; then : else cat >conftest.$ac_ext <<_ACEOF -#line 29712 "configure" +#line 30110 "configure" #include "confdefs.h" #include <ctype.h> #if ((' ' & 0x0FF) == 0x020) @@ -29735,15 +30133,15 @@ main (void) } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:29738: \"$ac_link\"") >&5 +if { (eval echo "$as_me:30136: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:29741: \$? = $ac_status" >&5 + echo "$as_me:30139: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:29743: \"$ac_try\"") >&5 + { (eval echo "$as_me:30141: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:29746: \$? = $ac_status" >&5 + echo "$as_me:30144: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -29756,7 +30154,7 @@ rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext fi fi fi -echo "$as_me:29759: result: $ac_cv_header_stdc" >&5 +echo "$as_me:30157: result: $ac_cv_header_stdc" >&5 echo "${ECHO_T}$ac_cv_header_stdc" >&6 if test $ac_cv_header_stdc = yes; then @@ -29766,13 +30164,13 @@ EOF fi -echo "$as_me:29769: checking whether time.h and sys/time.h may both be included" >&5 +echo "$as_me:30167: 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 29775 "configure" +#line 30173 "configure" #include "confdefs.h" #include <sys/types.h> #include <sys/time.h> @@ -29788,16 +30186,16 @@ return 0; } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:29791: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:30189: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:29794: \$? = $ac_status" >&5 + echo "$as_me:30192: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:29797: \"$ac_try\"") >&5 + { (eval echo "$as_me:30195: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:29800: \$? = $ac_status" >&5 + echo "$as_me:30198: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_header_time=yes else @@ -29807,7 +30205,7 @@ ac_cv_header_time=no fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:29810: result: $ac_cv_header_time" >&5 +echo "$as_me:30208: result: $ac_cv_header_time" >&5 echo "${ECHO_T}$ac_cv_header_time" >&6 if test $ac_cv_header_time = yes; then @@ -29820,13 +30218,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:29823: checking for $ac_hdr that defines DIR" >&5 +echo "$as_me:30221: 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 29829 "configure" +#line 30227 "configure" #include "confdefs.h" #include <sys/types.h> #include <$ac_hdr> @@ -29841,16 +30239,16 @@ return 0; } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:29844: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:30242: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:29847: \$? = $ac_status" >&5 + echo "$as_me:30245: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:29850: \"$ac_try\"") >&5 + { (eval echo "$as_me:30248: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:29853: \$? = $ac_status" >&5 + echo "$as_me:30251: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_Header=yes" else @@ -29860,7 +30258,7 @@ eval "$as_ac_Header=no" fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:29863: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:30261: 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 @@ -29873,7 +30271,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:29876: checking for opendir in -ldir" >&5 + echo "$as_me:30274: 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 @@ -29881,7 +30279,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-ldir $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 29884 "configure" +#line 30282 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -29900,16 +30298,16 @@ opendir (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:29903: \"$ac_link\"") >&5 +if { (eval echo "$as_me:30301: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:29906: \$? = $ac_status" >&5 + echo "$as_me:30304: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:29909: \"$ac_try\"") >&5 + { (eval echo "$as_me:30307: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:29912: \$? = $ac_status" >&5 + echo "$as_me:30310: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_dir_opendir=yes else @@ -29920,14 +30318,14 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:29923: result: $ac_cv_lib_dir_opendir" >&5 +echo "$as_me:30321: 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:29930: checking for opendir in -lx" >&5 + echo "$as_me:30328: 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 @@ -29935,7 +30333,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lx $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 29938 "configure" +#line 30336 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -29954,16 +30352,16 @@ opendir (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:29957: \"$ac_link\"") >&5 +if { (eval echo "$as_me:30355: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:29960: \$? = $ac_status" >&5 + echo "$as_me:30358: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:29963: \"$ac_try\"") >&5 + { (eval echo "$as_me:30361: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:29966: \$? = $ac_status" >&5 + echo "$as_me:30364: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_x_opendir=yes else @@ -29974,7 +30372,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:29977: result: $ac_cv_lib_x_opendir" >&5 +echo "$as_me:30375: 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" @@ -30003,23 +30401,23 @@ for ac_header in \ do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` -echo "$as_me:30006: checking for $ac_header" >&5 +echo "$as_me:30404: 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 30012 "configure" +#line 30410 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:30016: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:30414: \"$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:30022: \$? = $ac_status" >&5 + echo "$as_me:30420: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -30038,7 +30436,7 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:30041: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:30439: 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 @@ -30048,14 +30446,14 @@ EOF fi done -echo "$as_me:30051: checking termio.h and termios.h" >&5 +echo "$as_me:30449: 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 30058 "configure" +#line 30456 "configure" #include "confdefs.h" #if HAVE_TERMIO_H @@ -30073,16 +30471,16 @@ putchar (0x0a) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:30076: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:30474: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:30079: \$? = $ac_status" >&5 + echo "$as_me:30477: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:30082: \"$ac_try\"") >&5 + { (eval echo "$as_me:30480: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:30085: \$? = $ac_status" >&5 + echo "$as_me:30483: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_termio_and_termios=yes else @@ -30093,21 +30491,21 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:30096: result: $cf_cv_termio_and_termios" >&5 +echo "$as_me:30494: 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:30103: checking for sigaction and structs" >&5 +echo "$as_me:30501: 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 30110 "configure" +#line 30508 "configure" #include "confdefs.h" #include <sys/types.h> @@ -30127,16 +30525,16 @@ struct sigaction act; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:30130: \"$ac_link\"") >&5 +if { (eval echo "$as_me:30528: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:30133: \$? = $ac_status" >&5 + echo "$as_me:30531: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:30136: \"$ac_try\"") >&5 + { (eval echo "$as_me:30534: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:30139: \$? = $ac_status" >&5 + echo "$as_me:30537: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_func_sigaction=yes else @@ -30147,7 +30545,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:30150: result: $cf_cv_func_sigaction" >&5 +echo "$as_me:30548: result: $cf_cv_func_sigaction" >&5 echo "${ECHO_T}$cf_cv_func_sigaction" >&6 test "$cf_cv_func_sigaction" = yes && cat >>confdefs.h <<\EOF @@ -30157,23 +30555,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:30160: checking for $ac_header" >&5 +echo "$as_me:30558: 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 30166 "configure" +#line 30564 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:30170: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:30568: \"$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:30176: \$? = $ac_status" >&5 + echo "$as_me:30574: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -30192,7 +30590,7 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:30195: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:30593: 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 @@ -30213,23 +30611,23 @@ else for ac_header in wait.h do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` -echo "$as_me:30216: checking for $ac_header" >&5 +echo "$as_me:30614: 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 30222 "configure" +#line 30620 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:30226: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:30624: \"$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:30232: \$? = $ac_status" >&5 + echo "$as_me:30630: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -30248,7 +30646,7 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:30251: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:30649: 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 @@ -30261,23 +30659,23 @@ done for ac_header in waitstatus.h do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` -echo "$as_me:30264: checking for $ac_header" >&5 +echo "$as_me:30662: 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 30270 "configure" +#line 30668 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:30274: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:30672: \"$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:30280: \$? = $ac_status" >&5 + echo "$as_me:30678: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -30296,7 +30694,7 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:30299: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:30697: 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 @@ -30318,14 +30716,14 @@ cf_wait_headers="$cf_wait_headers fi fi -echo "$as_me:30321: checking for union wait" >&5 +echo "$as_me:30719: 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 30328 "configure" +#line 30726 "configure" #include "confdefs.h" $cf_wait_headers int @@ -30341,16 +30739,16 @@ int x; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:30344: \"$ac_link\"") >&5 +if { (eval echo "$as_me:30742: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:30347: \$? = $ac_status" >&5 + echo "$as_me:30745: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:30350: \"$ac_try\"") >&5 + { (eval echo "$as_me:30748: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:30353: \$? = $ac_status" >&5 + echo "$as_me:30751: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_type_unionwait=no echo compiles ok w/o union wait 1>&5 @@ -30360,7 +30758,7 @@ else cat conftest.$ac_ext >&5 cat >conftest.$ac_ext <<_ACEOF -#line 30363 "configure" +#line 30761 "configure" #include "confdefs.h" $cf_wait_headers int @@ -30380,16 +30778,16 @@ union wait x; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:30383: \"$ac_link\"") >&5 +if { (eval echo "$as_me:30781: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:30386: \$? = $ac_status" >&5 + echo "$as_me:30784: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:30389: \"$ac_try\"") >&5 + { (eval echo "$as_me:30787: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:30392: \$? = $ac_status" >&5 + echo "$as_me:30790: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_type_unionwait=yes echo compiles ok with union wait and possibly macros too 1>&5 @@ -30404,7 +30802,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:30407: result: $cf_cv_type_unionwait" >&5 +echo "$as_me:30805: result: $cf_cv_type_unionwait" >&5 echo "${ECHO_T}$cf_cv_type_unionwait" >&6 test $cf_cv_type_unionwait = yes && cat >>confdefs.h <<\EOF @@ -30413,14 +30811,14 @@ EOF if test $cf_cv_type_unionwait = yes; then - echo "$as_me:30416: checking if union wait can be used as wait-arg" >&5 + echo "$as_me:30814: 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 30423 "configure" +#line 30821 "configure" #include "confdefs.h" $cf_wait_headers int @@ -30432,16 +30830,16 @@ union wait x; wait(&x) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:30435: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:30833: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:30438: \$? = $ac_status" >&5 + echo "$as_me:30836: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:30441: \"$ac_try\"") >&5 + { (eval echo "$as_me:30839: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:30444: \$? = $ac_status" >&5 + echo "$as_me:30842: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_arg_union_wait=yes else @@ -30453,21 +30851,21 @@ rm -f conftest.$ac_objext conftest.$ac_ext fi - echo "$as_me:30456: result: $cf_cv_arg_union_wait" >&5 + echo "$as_me:30854: 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:30463: checking if union wait can be used as waitpid-arg" >&5 + echo "$as_me:30861: 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 30470 "configure" +#line 30868 "configure" #include "confdefs.h" $cf_wait_headers int @@ -30479,16 +30877,16 @@ union wait x; waitpid(0, &x, 0) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:30482: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:30880: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:30485: \$? = $ac_status" >&5 + echo "$as_me:30883: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:30488: \"$ac_try\"") >&5 + { (eval echo "$as_me:30886: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:30491: \$? = $ac_status" >&5 + echo "$as_me:30889: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_arg_union_waitpid=yes else @@ -30500,7 +30898,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext fi - echo "$as_me:30503: result: $cf_cv_arg_union_waitpid" >&5 + echo "$as_me:30901: 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 @@ -30509,13 +30907,13 @@ EOF fi -echo "$as_me:30512: checking for uid_t in sys/types.h" >&5 +echo "$as_me:30910: 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 30518 "configure" +#line 30916 "configure" #include "confdefs.h" #include <sys/types.h> @@ -30529,7 +30927,7 @@ fi rm -rf conftest* fi -echo "$as_me:30532: result: $ac_cv_type_uid_t" >&5 +echo "$as_me:30930: 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 @@ -30543,7 +30941,7 @@ EOF fi -echo "$as_me:30546: checking type of array argument to getgroups" >&5 +echo "$as_me:30944: 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 @@ -30552,7 +30950,7 @@ else ac_cv_type_getgroups=cross else cat >conftest.$ac_ext <<_ACEOF -#line 30555 "configure" +#line 30953 "configure" #include "confdefs.h" /* Thanks to Mike Rendell for this test. */ #include <sys/types.h> @@ -30578,15 +30976,15 @@ main (void) } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:30581: \"$ac_link\"") >&5 +if { (eval echo "$as_me:30979: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:30584: \$? = $ac_status" >&5 + echo "$as_me:30982: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:30586: \"$ac_try\"") >&5 + { (eval echo "$as_me:30984: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:30589: \$? = $ac_status" >&5 + echo "$as_me:30987: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_type_getgroups=gid_t else @@ -30599,7 +30997,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 30602 "configure" +#line 31000 "configure" #include "confdefs.h" #include <unistd.h> @@ -30614,20 +31012,20 @@ rm -rf conftest* fi fi -echo "$as_me:30617: result: $ac_cv_type_getgroups" >&5 +echo "$as_me:31015: 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:30624: checking for off_t" >&5 +echo "$as_me:31022: 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 30630 "configure" +#line 31028 "configure" #include "confdefs.h" $ac_includes_default int @@ -30642,16 +31040,16 @@ if (sizeof (off_t)) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:30645: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:31043: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:30648: \$? = $ac_status" >&5 + echo "$as_me:31046: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:30651: \"$ac_try\"") >&5 + { (eval echo "$as_me:31049: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:30654: \$? = $ac_status" >&5 + echo "$as_me:31052: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_type_off_t=yes else @@ -30661,7 +31059,7 @@ ac_cv_type_off_t=no fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:30664: result: $ac_cv_type_off_t" >&5 +echo "$as_me:31062: 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 : @@ -30673,13 +31071,13 @@ EOF fi -echo "$as_me:30676: checking for pid_t" >&5 +echo "$as_me:31074: 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 30682 "configure" +#line 31080 "configure" #include "confdefs.h" $ac_includes_default int @@ -30694,16 +31092,16 @@ if (sizeof (pid_t)) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:30697: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:31095: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:30700: \$? = $ac_status" >&5 + echo "$as_me:31098: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:30703: \"$ac_try\"") >&5 + { (eval echo "$as_me:31101: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:30706: \$? = $ac_status" >&5 + echo "$as_me:31104: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_type_pid_t=yes else @@ -30713,7 +31111,7 @@ ac_cv_type_pid_t=no fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:30716: result: $ac_cv_type_pid_t" >&5 +echo "$as_me:31114: 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 : @@ -30725,13 +31123,13 @@ EOF fi -echo "$as_me:30728: checking for uid_t in sys/types.h" >&5 +echo "$as_me:31126: 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 30734 "configure" +#line 31132 "configure" #include "confdefs.h" #include <sys/types.h> @@ -30745,7 +31143,7 @@ fi rm -rf conftest* fi -echo "$as_me:30748: result: $ac_cv_type_uid_t" >&5 +echo "$as_me:31146: 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 @@ -30759,13 +31157,13 @@ EOF fi -echo "$as_me:30762: checking for mode_t" >&5 +echo "$as_me:31160: 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 30768 "configure" +#line 31166 "configure" #include "confdefs.h" $ac_includes_default int @@ -30780,16 +31178,16 @@ if (sizeof (mode_t)) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:30783: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:31181: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:30786: \$? = $ac_status" >&5 + echo "$as_me:31184: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:30789: \"$ac_try\"") >&5 + { (eval echo "$as_me:31187: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:30792: \$? = $ac_status" >&5 + echo "$as_me:31190: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_type_mode_t=yes else @@ -30799,7 +31197,7 @@ ac_cv_type_mode_t=no fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:30802: result: $ac_cv_type_mode_t" >&5 +echo "$as_me:31200: 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 : @@ -30811,13 +31209,13 @@ EOF fi - echo "$as_me:30814: checking for ssize_t" >&5 + echo "$as_me:31212: 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 30820 "configure" +#line 31218 "configure" #include "confdefs.h" $ac_includes_default int @@ -30832,16 +31230,16 @@ if (sizeof (ssize_t)) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:30835: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:31233: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:30838: \$? = $ac_status" >&5 + echo "$as_me:31236: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:30841: \"$ac_try\"") >&5 + { (eval echo "$as_me:31239: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:30844: \$? = $ac_status" >&5 + echo "$as_me:31242: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_type_ssize_t=yes else @@ -30851,7 +31249,7 @@ ac_cv_type_ssize_t=no fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:30854: result: $ac_cv_type_ssize_t" >&5 +echo "$as_me:31252: 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 @@ -30867,13 +31265,13 @@ EOF fi - echo "$as_me:30870: checking for socklen_t" >&5 + echo "$as_me:31268: 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 30876 "configure" +#line 31274 "configure" #include "confdefs.h" #include <sys/types.h> @@ -30891,16 +31289,16 @@ if (sizeof (socklen_t)) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:30894: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:31292: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:30897: \$? = $ac_status" >&5 + echo "$as_me:31295: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:30900: \"$ac_try\"") >&5 + { (eval echo "$as_me:31298: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:30903: \$? = $ac_status" >&5 + echo "$as_me:31301: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_type_socklen_t=yes else @@ -30910,7 +31308,7 @@ ac_cv_type_socklen_t=no fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:30913: result: $ac_cv_type_socklen_t" >&5 +echo "$as_me:31311: 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 @@ -30926,7 +31324,7 @@ EOF fi -echo "$as_me:30929: checking for long long type" >&5 +echo "$as_me:31327: 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 @@ -30957,7 +31355,7 @@ _CFEOF rm -f conftest* fi -echo "$as_me:30960: result: $cf_cv_type_long_long" >&5 +echo "$as_me:31358: 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 @@ -30968,14 +31366,14 @@ EOF fi -echo "$as_me:30971: checking for tm.tm_gmtoff" >&5 +echo "$as_me:31369: 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 30978 "configure" +#line 31376 "configure" #include "confdefs.h" #ifdef TIME_WITH_SYS_TIME @@ -31000,16 +31398,16 @@ main (void) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:31003: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:31401: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:31006: \$? = $ac_status" >&5 + echo "$as_me:31404: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:31009: \"$ac_try\"") >&5 + { (eval echo "$as_me:31407: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:31012: \$? = $ac_status" >&5 + echo "$as_me:31410: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_tm_gmtoff=yes else @@ -31020,20 +31418,20 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:31023: result: $cf_cv_tm_gmtoff" >&5 +echo "$as_me:31421: 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:31030: checking for int" >&5 +echo "$as_me:31428: 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 31036 "configure" +#line 31434 "configure" #include "confdefs.h" $ac_includes_default int @@ -31048,16 +31446,16 @@ if (sizeof (int)) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:31051: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:31449: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:31054: \$? = $ac_status" >&5 + echo "$as_me:31452: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:31057: \"$ac_try\"") >&5 + { (eval echo "$as_me:31455: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:31060: \$? = $ac_status" >&5 + echo "$as_me:31458: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_type_int=yes else @@ -31067,10 +31465,10 @@ ac_cv_type_int=no fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:31070: result: $ac_cv_type_int" >&5 +echo "$as_me:31468: result: $ac_cv_type_int" >&5 echo "${ECHO_T}$ac_cv_type_int" >&6 -echo "$as_me:31073: checking size of int" >&5 +echo "$as_me:31471: 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 @@ -31079,7 +31477,7 @@ else if test "$cross_compiling" = yes; then # Depending upon the size, compute the lo and hi bounds. cat >conftest.$ac_ext <<_ACEOF -#line 31082 "configure" +#line 31480 "configure" #include "confdefs.h" $ac_includes_default int @@ -31091,21 +31489,21 @@ int _array_ [1 - 2 * !((sizeof (int)) >= 0)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:31094: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:31492: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:31097: \$? = $ac_status" >&5 + echo "$as_me:31495: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:31100: \"$ac_try\"") >&5 + { (eval echo "$as_me:31498: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:31103: \$? = $ac_status" >&5 + echo "$as_me:31501: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_lo=0 ac_mid=0 while :; do cat >conftest.$ac_ext <<_ACEOF -#line 31108 "configure" +#line 31506 "configure" #include "confdefs.h" $ac_includes_default int @@ -31117,16 +31515,16 @@ int _array_ [1 - 2 * !((sizeof (int)) <= $ac_mid)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:31120: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:31518: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:31123: \$? = $ac_status" >&5 + echo "$as_me:31521: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:31126: \"$ac_try\"") >&5 + { (eval echo "$as_me:31524: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:31129: \$? = $ac_status" >&5 + echo "$as_me:31527: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_hi=$ac_mid; break else @@ -31142,7 +31540,7 @@ cat conftest.$ac_ext >&5 ac_hi=-1 ac_mid=-1 while :; do cat >conftest.$ac_ext <<_ACEOF -#line 31145 "configure" +#line 31543 "configure" #include "confdefs.h" $ac_includes_default int @@ -31154,16 +31552,16 @@ int _array_ [1 - 2 * !((sizeof (int)) >= $ac_mid)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:31157: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:31555: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:31160: \$? = $ac_status" >&5 + echo "$as_me:31558: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:31163: \"$ac_try\"") >&5 + { (eval echo "$as_me:31561: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:31166: \$? = $ac_status" >&5 + echo "$as_me:31564: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_lo=$ac_mid; break else @@ -31179,7 +31577,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 31182 "configure" +#line 31580 "configure" #include "confdefs.h" $ac_includes_default int @@ -31191,16 +31589,16 @@ int _array_ [1 - 2 * !((sizeof (int)) <= $ac_mid)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:31194: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:31592: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:31197: \$? = $ac_status" >&5 + echo "$as_me:31595: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:31200: \"$ac_try\"") >&5 + { (eval echo "$as_me:31598: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:31203: \$? = $ac_status" >&5 + echo "$as_me:31601: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_hi=$ac_mid else @@ -31213,12 +31611,12 @@ done ac_cv_sizeof_int=$ac_lo else if test "$cross_compiling" = yes; then - { { echo "$as_me:31216: error: cannot run test program while cross compiling" >&5 + { { echo "$as_me:31614: 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 31221 "configure" +#line 31619 "configure" #include "confdefs.h" $ac_includes_default int @@ -31234,15 +31632,15 @@ fclose (f); } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:31237: \"$ac_link\"") >&5 +if { (eval echo "$as_me:31635: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:31240: \$? = $ac_status" >&5 + echo "$as_me:31638: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:31242: \"$ac_try\"") >&5 + { (eval echo "$as_me:31640: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:31245: \$? = $ac_status" >&5 + echo "$as_me:31643: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_sizeof_int=`cat conftest.val` else @@ -31258,7 +31656,7 @@ else ac_cv_sizeof_int=0 fi fi -echo "$as_me:31261: result: $ac_cv_sizeof_int" >&5 +echo "$as_me:31659: 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 @@ -31267,11 +31665,11 @@ EOF if test "${ac_cv_type_int+set}" = set; then cf_cv_sizeof="$ac_cv_sizeof_int" if test "${ac_cv_sizeof_int+set}" != set; then - { echo "$as_me:31270: WARNING: using 4 for sizeof int" >&5 + { echo "$as_me:31668: 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:31274: WARNING: sizeof int not found, using 4" >&5 + { echo "$as_me:31672: 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 @@ -31285,13 +31683,13 @@ cf_cv_type=`echo "sizeof_int" | sed y%abcdefghijklmnopqrstuvwxyz./-%ABCDEFGHIJKL fi fi -echo "$as_me:31288: checking for long" >&5 +echo "$as_me:31686: 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 31294 "configure" +#line 31692 "configure" #include "confdefs.h" $ac_includes_default int @@ -31306,16 +31704,16 @@ if (sizeof (long)) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:31309: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:31707: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:31312: \$? = $ac_status" >&5 + echo "$as_me:31710: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:31315: \"$ac_try\"") >&5 + { (eval echo "$as_me:31713: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:31318: \$? = $ac_status" >&5 + echo "$as_me:31716: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_type_long=yes else @@ -31325,10 +31723,10 @@ ac_cv_type_long=no fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:31328: result: $ac_cv_type_long" >&5 +echo "$as_me:31726: result: $ac_cv_type_long" >&5 echo "${ECHO_T}$ac_cv_type_long" >&6 -echo "$as_me:31331: checking size of long" >&5 +echo "$as_me:31729: 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 @@ -31337,7 +31735,7 @@ else if test "$cross_compiling" = yes; then # Depending upon the size, compute the lo and hi bounds. cat >conftest.$ac_ext <<_ACEOF -#line 31340 "configure" +#line 31738 "configure" #include "confdefs.h" $ac_includes_default int @@ -31349,21 +31747,21 @@ int _array_ [1 - 2 * !((sizeof (long)) >= 0)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:31352: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:31750: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:31355: \$? = $ac_status" >&5 + echo "$as_me:31753: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:31358: \"$ac_try\"") >&5 + { (eval echo "$as_me:31756: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:31361: \$? = $ac_status" >&5 + echo "$as_me:31759: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_lo=0 ac_mid=0 while :; do cat >conftest.$ac_ext <<_ACEOF -#line 31366 "configure" +#line 31764 "configure" #include "confdefs.h" $ac_includes_default int @@ -31375,16 +31773,16 @@ int _array_ [1 - 2 * !((sizeof (long)) <= $ac_mid)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:31378: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:31776: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:31381: \$? = $ac_status" >&5 + echo "$as_me:31779: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:31384: \"$ac_try\"") >&5 + { (eval echo "$as_me:31782: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:31387: \$? = $ac_status" >&5 + echo "$as_me:31785: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_hi=$ac_mid; break else @@ -31400,7 +31798,7 @@ cat conftest.$ac_ext >&5 ac_hi=-1 ac_mid=-1 while :; do cat >conftest.$ac_ext <<_ACEOF -#line 31403 "configure" +#line 31801 "configure" #include "confdefs.h" $ac_includes_default int @@ -31412,16 +31810,16 @@ int _array_ [1 - 2 * !((sizeof (long)) >= $ac_mid)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:31415: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:31813: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:31418: \$? = $ac_status" >&5 + echo "$as_me:31816: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:31421: \"$ac_try\"") >&5 + { (eval echo "$as_me:31819: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:31424: \$? = $ac_status" >&5 + echo "$as_me:31822: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_lo=$ac_mid; break else @@ -31437,7 +31835,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 31440 "configure" +#line 31838 "configure" #include "confdefs.h" $ac_includes_default int @@ -31449,16 +31847,16 @@ int _array_ [1 - 2 * !((sizeof (long)) <= $ac_mid)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:31452: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:31850: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:31455: \$? = $ac_status" >&5 + echo "$as_me:31853: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:31458: \"$ac_try\"") >&5 + { (eval echo "$as_me:31856: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:31461: \$? = $ac_status" >&5 + echo "$as_me:31859: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_hi=$ac_mid else @@ -31471,12 +31869,12 @@ done ac_cv_sizeof_long=$ac_lo else if test "$cross_compiling" = yes; then - { { echo "$as_me:31474: error: cannot run test program while cross compiling" >&5 + { { echo "$as_me:31872: 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 31479 "configure" +#line 31877 "configure" #include "confdefs.h" $ac_includes_default int @@ -31492,15 +31890,15 @@ fclose (f); } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:31495: \"$ac_link\"") >&5 +if { (eval echo "$as_me:31893: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:31498: \$? = $ac_status" >&5 + echo "$as_me:31896: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:31500: \"$ac_try\"") >&5 + { (eval echo "$as_me:31898: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:31503: \$? = $ac_status" >&5 + echo "$as_me:31901: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_sizeof_long=`cat conftest.val` else @@ -31516,7 +31914,7 @@ else ac_cv_sizeof_long=0 fi fi -echo "$as_me:31519: result: $ac_cv_sizeof_long" >&5 +echo "$as_me:31917: 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 @@ -31525,11 +31923,11 @@ EOF if test "${ac_cv_type_long+set}" = set; then cf_cv_sizeof="$ac_cv_sizeof_long" if test "${ac_cv_sizeof_long+set}" != set; then - { echo "$as_me:31528: WARNING: using 4 for sizeof long" >&5 + { echo "$as_me:31926: 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:31532: WARNING: sizeof long not found, using 4" >&5 + { echo "$as_me:31930: 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 @@ -31543,13 +31941,13 @@ cf_cv_type=`echo "sizeof_long" | sed y%abcdefghijklmnopqrstuvwxyz./-%ABCDEFGHIJK fi fi -echo "$as_me:31546: checking for off_t" >&5 +echo "$as_me:31944: 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 31552 "configure" +#line 31950 "configure" #include "confdefs.h" $ac_includes_default int @@ -31564,16 +31962,16 @@ if (sizeof (off_t)) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:31567: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:31965: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:31570: \$? = $ac_status" >&5 + echo "$as_me:31968: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:31573: \"$ac_try\"") >&5 + { (eval echo "$as_me:31971: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:31576: \$? = $ac_status" >&5 + echo "$as_me:31974: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_type_off_t=yes else @@ -31583,10 +31981,10 @@ ac_cv_type_off_t=no fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:31586: result: $ac_cv_type_off_t" >&5 +echo "$as_me:31984: result: $ac_cv_type_off_t" >&5 echo "${ECHO_T}$ac_cv_type_off_t" >&6 -echo "$as_me:31589: checking size of off_t" >&5 +echo "$as_me:31987: 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 @@ -31595,7 +31993,7 @@ else if test "$cross_compiling" = yes; then # Depending upon the size, compute the lo and hi bounds. cat >conftest.$ac_ext <<_ACEOF -#line 31598 "configure" +#line 31996 "configure" #include "confdefs.h" $ac_includes_default int @@ -31607,21 +32005,21 @@ int _array_ [1 - 2 * !((sizeof (off_t)) >= 0)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:31610: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:32008: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:31613: \$? = $ac_status" >&5 + echo "$as_me:32011: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:31616: \"$ac_try\"") >&5 + { (eval echo "$as_me:32014: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:31619: \$? = $ac_status" >&5 + echo "$as_me:32017: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_lo=0 ac_mid=0 while :; do cat >conftest.$ac_ext <<_ACEOF -#line 31624 "configure" +#line 32022 "configure" #include "confdefs.h" $ac_includes_default int @@ -31633,16 +32031,16 @@ int _array_ [1 - 2 * !((sizeof (off_t)) <= $ac_mid)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:31636: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:32034: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:31639: \$? = $ac_status" >&5 + echo "$as_me:32037: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:31642: \"$ac_try\"") >&5 + { (eval echo "$as_me:32040: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:31645: \$? = $ac_status" >&5 + echo "$as_me:32043: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_hi=$ac_mid; break else @@ -31658,7 +32056,7 @@ cat conftest.$ac_ext >&5 ac_hi=-1 ac_mid=-1 while :; do cat >conftest.$ac_ext <<_ACEOF -#line 31661 "configure" +#line 32059 "configure" #include "confdefs.h" $ac_includes_default int @@ -31670,16 +32068,16 @@ int _array_ [1 - 2 * !((sizeof (off_t)) >= $ac_mid)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:31673: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:32071: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:31676: \$? = $ac_status" >&5 + echo "$as_me:32074: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:31679: \"$ac_try\"") >&5 + { (eval echo "$as_me:32077: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:31682: \$? = $ac_status" >&5 + echo "$as_me:32080: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_lo=$ac_mid; break else @@ -31695,7 +32093,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 31698 "configure" +#line 32096 "configure" #include "confdefs.h" $ac_includes_default int @@ -31707,16 +32105,16 @@ int _array_ [1 - 2 * !((sizeof (off_t)) <= $ac_mid)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:31710: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:32108: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:31713: \$? = $ac_status" >&5 + echo "$as_me:32111: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:31716: \"$ac_try\"") >&5 + { (eval echo "$as_me:32114: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:31719: \$? = $ac_status" >&5 + echo "$as_me:32117: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_hi=$ac_mid else @@ -31729,12 +32127,12 @@ done ac_cv_sizeof_off_t=$ac_lo else if test "$cross_compiling" = yes; then - { { echo "$as_me:31732: error: cannot run test program while cross compiling" >&5 + { { echo "$as_me:32130: 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 31737 "configure" +#line 32135 "configure" #include "confdefs.h" $ac_includes_default int @@ -31750,15 +32148,15 @@ fclose (f); } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:31753: \"$ac_link\"") >&5 +if { (eval echo "$as_me:32151: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:31756: \$? = $ac_status" >&5 + echo "$as_me:32154: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:31758: \"$ac_try\"") >&5 + { (eval echo "$as_me:32156: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:31761: \$? = $ac_status" >&5 + echo "$as_me:32159: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_sizeof_off_t=`cat conftest.val` else @@ -31774,7 +32172,7 @@ else ac_cv_sizeof_off_t=0 fi fi -echo "$as_me:31777: result: $ac_cv_sizeof_off_t" >&5 +echo "$as_me:32175: 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 @@ -31783,11 +32181,11 @@ EOF if test "${ac_cv_type_off_t+set}" = set; then cf_cv_sizeof="$ac_cv_sizeof_off_t" if test "${ac_cv_sizeof_off_t+set}" != set; then - { echo "$as_me:31786: WARNING: using 4 for sizeof off_t" >&5 + { echo "$as_me:32184: 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:31790: WARNING: sizeof off_t not found, using 4" >&5 + { echo "$as_me:32188: 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 @@ -31801,13 +32199,13 @@ cf_cv_type=`echo "sizeof_off_t" | sed y%abcdefghijklmnopqrstuvwxyz./-%ABCDEFGHIJ fi fi -echo "$as_me:31804: checking for size_t" >&5 +echo "$as_me:32202: checking for size_t" >&5 echo $ECHO_N "checking for size_t... $ECHO_C" >&6 if test "${ac_cv_type_size_t+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 31810 "configure" +#line 32208 "configure" #include "confdefs.h" $ac_includes_default int @@ -31822,16 +32220,16 @@ if (sizeof (size_t)) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:31825: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:32223: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:31828: \$? = $ac_status" >&5 + echo "$as_me:32226: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:31831: \"$ac_try\"") >&5 + { (eval echo "$as_me:32229: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:31834: \$? = $ac_status" >&5 + echo "$as_me:32232: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_type_size_t=yes else @@ -31841,10 +32239,10 @@ ac_cv_type_size_t=no fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:31844: result: $ac_cv_type_size_t" >&5 +echo "$as_me:32242: result: $ac_cv_type_size_t" >&5 echo "${ECHO_T}$ac_cv_type_size_t" >&6 -echo "$as_me:31847: checking size of size_t" >&5 +echo "$as_me:32245: checking size of size_t" >&5 echo $ECHO_N "checking size of size_t... $ECHO_C" >&6 if test "${ac_cv_sizeof_size_t+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -31853,7 +32251,7 @@ else if test "$cross_compiling" = yes; then # Depending upon the size, compute the lo and hi bounds. cat >conftest.$ac_ext <<_ACEOF -#line 31856 "configure" +#line 32254 "configure" #include "confdefs.h" $ac_includes_default int @@ -31865,21 +32263,21 @@ int _array_ [1 - 2 * !((sizeof (size_t)) >= 0)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:31868: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:32266: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:31871: \$? = $ac_status" >&5 + echo "$as_me:32269: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:31874: \"$ac_try\"") >&5 + { (eval echo "$as_me:32272: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:31877: \$? = $ac_status" >&5 + echo "$as_me:32275: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_lo=0 ac_mid=0 while :; do cat >conftest.$ac_ext <<_ACEOF -#line 31882 "configure" +#line 32280 "configure" #include "confdefs.h" $ac_includes_default int @@ -31891,16 +32289,16 @@ int _array_ [1 - 2 * !((sizeof (size_t)) <= $ac_mid)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:31894: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:32292: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:31897: \$? = $ac_status" >&5 + echo "$as_me:32295: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:31900: \"$ac_try\"") >&5 + { (eval echo "$as_me:32298: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:31903: \$? = $ac_status" >&5 + echo "$as_me:32301: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_hi=$ac_mid; break else @@ -31916,7 +32314,7 @@ cat conftest.$ac_ext >&5 ac_hi=-1 ac_mid=-1 while :; do cat >conftest.$ac_ext <<_ACEOF -#line 31919 "configure" +#line 32317 "configure" #include "confdefs.h" $ac_includes_default int @@ -31928,16 +32326,16 @@ int _array_ [1 - 2 * !((sizeof (size_t)) >= $ac_mid)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:31931: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:32329: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:31934: \$? = $ac_status" >&5 + echo "$as_me:32332: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:31937: \"$ac_try\"") >&5 + { (eval echo "$as_me:32335: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:31940: \$? = $ac_status" >&5 + echo "$as_me:32338: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_lo=$ac_mid; break else @@ -31953,7 +32351,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 31956 "configure" +#line 32354 "configure" #include "confdefs.h" $ac_includes_default int @@ -31965,16 +32363,16 @@ int _array_ [1 - 2 * !((sizeof (size_t)) <= $ac_mid)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:31968: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:32366: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:31971: \$? = $ac_status" >&5 + echo "$as_me:32369: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:31974: \"$ac_try\"") >&5 + { (eval echo "$as_me:32372: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:31977: \$? = $ac_status" >&5 + echo "$as_me:32375: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_hi=$ac_mid else @@ -31987,12 +32385,12 @@ done ac_cv_sizeof_size_t=$ac_lo else if test "$cross_compiling" = yes; then - { { echo "$as_me:31990: error: cannot run test program while cross compiling" >&5 + { { echo "$as_me:32388: 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 31995 "configure" +#line 32393 "configure" #include "confdefs.h" $ac_includes_default int @@ -32008,15 +32406,15 @@ fclose (f); } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:32011: \"$ac_link\"") >&5 +if { (eval echo "$as_me:32409: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:32014: \$? = $ac_status" >&5 + echo "$as_me:32412: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:32016: \"$ac_try\"") >&5 + { (eval echo "$as_me:32414: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:32019: \$? = $ac_status" >&5 + echo "$as_me:32417: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_sizeof_size_t=`cat conftest.val` else @@ -32032,7 +32430,7 @@ else ac_cv_sizeof_size_t=0 fi fi -echo "$as_me:32035: result: $ac_cv_sizeof_size_t" >&5 +echo "$as_me:32433: result: $ac_cv_sizeof_size_t" >&5 echo "${ECHO_T}$ac_cv_sizeof_size_t" >&6 cat >>confdefs.h <<EOF #define SIZEOF_SIZE_T $ac_cv_sizeof_size_t @@ -32041,11 +32439,11 @@ EOF if test "${ac_cv_type_size_t+set}" = set; then cf_cv_sizeof="$ac_cv_sizeof_size_t" if test "${ac_cv_sizeof_size_t+set}" != set; then - { echo "$as_me:32044: WARNING: using 4 for sizeof size_t" >&5 + { echo "$as_me:32442: WARNING: using 4 for sizeof size_t" >&5 echo "$as_me: WARNING: using 4 for sizeof size_t" >&2;} ac_cv_sizeof_size_t=4 elif test "x${ac_cv_sizeof_size_t}" = x0; then - { echo "$as_me:32048: WARNING: sizeof size_t not found, using 4" >&5 + { echo "$as_me:32446: WARNING: sizeof size_t not found, using 4" >&5 echo "$as_me: WARNING: sizeof size_t not found, using 4" >&2;} ac_cv_sizeof_size_t=4 fi @@ -32059,13 +32457,13 @@ cf_cv_type=`echo "sizeof_size_t" | sed y%abcdefghijklmnopqrstuvwxyz./-%ABCDEFGHI fi fi -echo "$as_me:32062: checking for time_t" >&5 +echo "$as_me:32460: 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 32068 "configure" +#line 32466 "configure" #include "confdefs.h" $ac_includes_default int @@ -32080,16 +32478,16 @@ if (sizeof (time_t)) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:32083: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:32481: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:32086: \$? = $ac_status" >&5 + echo "$as_me:32484: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:32089: \"$ac_try\"") >&5 + { (eval echo "$as_me:32487: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:32092: \$? = $ac_status" >&5 + echo "$as_me:32490: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_type_time_t=yes else @@ -32099,10 +32497,10 @@ ac_cv_type_time_t=no fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:32102: result: $ac_cv_type_time_t" >&5 +echo "$as_me:32500: result: $ac_cv_type_time_t" >&5 echo "${ECHO_T}$ac_cv_type_time_t" >&6 -echo "$as_me:32105: checking size of time_t" >&5 +echo "$as_me:32503: 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 @@ -32111,7 +32509,7 @@ else if test "$cross_compiling" = yes; then # Depending upon the size, compute the lo and hi bounds. cat >conftest.$ac_ext <<_ACEOF -#line 32114 "configure" +#line 32512 "configure" #include "confdefs.h" $ac_includes_default int @@ -32123,21 +32521,21 @@ int _array_ [1 - 2 * !((sizeof (time_t)) >= 0)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:32126: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:32524: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:32129: \$? = $ac_status" >&5 + echo "$as_me:32527: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:32132: \"$ac_try\"") >&5 + { (eval echo "$as_me:32530: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:32135: \$? = $ac_status" >&5 + echo "$as_me:32533: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_lo=0 ac_mid=0 while :; do cat >conftest.$ac_ext <<_ACEOF -#line 32140 "configure" +#line 32538 "configure" #include "confdefs.h" $ac_includes_default int @@ -32149,16 +32547,16 @@ int _array_ [1 - 2 * !((sizeof (time_t)) <= $ac_mid)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:32152: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:32550: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:32155: \$? = $ac_status" >&5 + echo "$as_me:32553: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:32158: \"$ac_try\"") >&5 + { (eval echo "$as_me:32556: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:32161: \$? = $ac_status" >&5 + echo "$as_me:32559: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_hi=$ac_mid; break else @@ -32174,7 +32572,7 @@ cat conftest.$ac_ext >&5 ac_hi=-1 ac_mid=-1 while :; do cat >conftest.$ac_ext <<_ACEOF -#line 32177 "configure" +#line 32575 "configure" #include "confdefs.h" $ac_includes_default int @@ -32186,16 +32584,16 @@ int _array_ [1 - 2 * !((sizeof (time_t)) >= $ac_mid)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:32189: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:32587: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:32192: \$? = $ac_status" >&5 + echo "$as_me:32590: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:32195: \"$ac_try\"") >&5 + { (eval echo "$as_me:32593: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:32198: \$? = $ac_status" >&5 + echo "$as_me:32596: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_lo=$ac_mid; break else @@ -32211,7 +32609,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 32214 "configure" +#line 32612 "configure" #include "confdefs.h" $ac_includes_default int @@ -32223,16 +32621,16 @@ int _array_ [1 - 2 * !((sizeof (time_t)) <= $ac_mid)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:32226: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:32624: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:32229: \$? = $ac_status" >&5 + echo "$as_me:32627: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:32232: \"$ac_try\"") >&5 + { (eval echo "$as_me:32630: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:32235: \$? = $ac_status" >&5 + echo "$as_me:32633: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_hi=$ac_mid else @@ -32245,12 +32643,12 @@ done ac_cv_sizeof_time_t=$ac_lo else if test "$cross_compiling" = yes; then - { { echo "$as_me:32248: error: cannot run test program while cross compiling" >&5 + { { echo "$as_me:32646: 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 32253 "configure" +#line 32651 "configure" #include "confdefs.h" $ac_includes_default int @@ -32266,15 +32664,15 @@ fclose (f); } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:32269: \"$ac_link\"") >&5 +if { (eval echo "$as_me:32667: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:32272: \$? = $ac_status" >&5 + echo "$as_me:32670: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:32274: \"$ac_try\"") >&5 + { (eval echo "$as_me:32672: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:32277: \$? = $ac_status" >&5 + echo "$as_me:32675: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_sizeof_time_t=`cat conftest.val` else @@ -32290,7 +32688,7 @@ else ac_cv_sizeof_time_t=0 fi fi -echo "$as_me:32293: result: $ac_cv_sizeof_time_t" >&5 +echo "$as_me:32691: 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 @@ -32299,11 +32697,11 @@ EOF if test "${ac_cv_type_time_t+set}" = set; then cf_cv_sizeof="$ac_cv_sizeof_time_t" if test "${ac_cv_sizeof_time_t+set}" != set; then - { echo "$as_me:32302: WARNING: using 4 for sizeof time_t" >&5 + { echo "$as_me:32700: 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:32306: WARNING: sizeof time_t not found, using 4" >&5 + { echo "$as_me:32704: 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 @@ -32317,13 +32715,13 @@ cf_cv_type=`echo "sizeof_time_t" | sed y%abcdefghijklmnopqrstuvwxyz./-%ABCDEFGHI fi fi -echo "$as_me:32320: checking for intptr_t" >&5 +echo "$as_me:32718: 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 32326 "configure" +#line 32724 "configure" #include "confdefs.h" $ac_includes_default int @@ -32338,16 +32736,16 @@ if (sizeof (intptr_t)) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:32341: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:32739: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:32344: \$? = $ac_status" >&5 + echo "$as_me:32742: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:32347: \"$ac_try\"") >&5 + { (eval echo "$as_me:32745: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:32350: \$? = $ac_status" >&5 + echo "$as_me:32748: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_type_intptr_t=yes else @@ -32357,7 +32755,7 @@ ac_cv_type_intptr_t=no fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:32360: result: $ac_cv_type_intptr_t" >&5 +echo "$as_me:32758: 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 : @@ -32371,13 +32769,13 @@ fi # The Ultrix 4.2 mips builtin alloca declared by alloca.h only works # for constant arguments. Useless! -echo "$as_me:32374: checking for working alloca.h" >&5 +echo "$as_me:32772: 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 32380 "configure" +#line 32778 "configure" #include "confdefs.h" #include <alloca.h> int @@ -32389,16 +32787,16 @@ char *p = (char *) alloca (2 * sizeof (int)); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:32392: \"$ac_link\"") >&5 +if { (eval echo "$as_me:32790: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:32395: \$? = $ac_status" >&5 + echo "$as_me:32793: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:32398: \"$ac_try\"") >&5 + { (eval echo "$as_me:32796: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:32401: \$? = $ac_status" >&5 + echo "$as_me:32799: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_working_alloca_h=yes else @@ -32408,7 +32806,7 @@ ac_cv_working_alloca_h=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:32411: result: $ac_cv_working_alloca_h" >&5 +echo "$as_me:32809: 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 @@ -32418,13 +32816,13 @@ EOF fi -echo "$as_me:32421: checking for alloca" >&5 +echo "$as_me:32819: 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 32427 "configure" +#line 32825 "configure" #include "confdefs.h" #ifdef __GNUC__ # define alloca __builtin_alloca @@ -32456,16 +32854,16 @@ char *p = (char *) alloca (1); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:32459: \"$ac_link\"") >&5 +if { (eval echo "$as_me:32857: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:32462: \$? = $ac_status" >&5 + echo "$as_me:32860: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:32465: \"$ac_try\"") >&5 + { (eval echo "$as_me:32863: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:32468: \$? = $ac_status" >&5 + echo "$as_me:32866: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_alloca_works=yes else @@ -32475,7 +32873,7 @@ ac_cv_func_alloca_works=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:32478: result: $ac_cv_func_alloca_works" >&5 +echo "$as_me:32876: 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 @@ -32496,13 +32894,13 @@ cat >>confdefs.h <<\EOF #define C_ALLOCA 1 EOF -echo "$as_me:32499: checking whether \`alloca.c' needs Cray hooks" >&5 +echo "$as_me:32897: 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 32505 "configure" +#line 32903 "configure" #include "confdefs.h" #if defined(CRAY) && ! defined(CRAY2) webecray @@ -32520,18 +32918,18 @@ fi rm -rf conftest* fi -echo "$as_me:32523: result: $ac_cv_os_cray" >&5 +echo "$as_me:32921: 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:32528: checking for $ac_func" >&5 +echo "$as_me:32926: 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 32534 "configure" +#line 32932 "configure" #include "confdefs.h" #define $ac_func autoconf_temporary #include <limits.h> /* least-intrusive standard header which defines gcc2 __stub macros */ @@ -32562,16 +32960,16 @@ main (void) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:32565: \"$ac_link\"") >&5 +if { (eval echo "$as_me:32963: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:32568: \$? = $ac_status" >&5 + echo "$as_me:32966: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:32571: \"$ac_try\"") >&5 + { (eval echo "$as_me:32969: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:32574: \$? = $ac_status" >&5 + echo "$as_me:32972: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else @@ -32581,7 +32979,7 @@ eval "$as_ac_var=no" fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:32584: result: `eval echo '${'$as_ac_var'}'`" >&5 +echo "$as_me:32982: 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 @@ -32595,7 +32993,7 @@ fi done fi -echo "$as_me:32598: checking stack direction for C alloca" >&5 +echo "$as_me:32996: 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 @@ -32604,7 +33002,7 @@ else ac_cv_c_stack_direction=0 else cat >conftest.$ac_ext <<_ACEOF -#line 32607 "configure" +#line 33005 "configure" #include "confdefs.h" int find_stack_direction (void) @@ -32627,15 +33025,15 @@ main (void) } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:32630: \"$ac_link\"") >&5 +if { (eval echo "$as_me:33028: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:32633: \$? = $ac_status" >&5 + echo "$as_me:33031: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:32635: \"$ac_try\"") >&5 + { (eval echo "$as_me:33033: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:32638: \$? = $ac_status" >&5 + echo "$as_me:33036: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_c_stack_direction=1 else @@ -32647,7 +33045,7 @@ fi rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext fi fi -echo "$as_me:32650: result: $ac_cv_c_stack_direction" >&5 +echo "$as_me:33048: result: $ac_cv_c_stack_direction" >&5 echo "${ECHO_T}$ac_cv_c_stack_direction" >&6 cat >>confdefs.h <<EOF @@ -32659,23 +33057,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:32662: checking for $ac_header" >&5 +echo "$as_me:33060: 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 32668 "configure" +#line 33066 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:32672: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:33070: \"$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:32678: \$? = $ac_status" >&5 + echo "$as_me:33076: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -32694,7 +33092,7 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:32697: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:33095: 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 @@ -32707,13 +33105,13 @@ done for ac_func in fork vfork do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` -echo "$as_me:32710: checking for $ac_func" >&5 +echo "$as_me:33108: 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 32716 "configure" +#line 33114 "configure" #include "confdefs.h" #define $ac_func autoconf_temporary #include <limits.h> /* least-intrusive standard header which defines gcc2 __stub macros */ @@ -32744,16 +33142,16 @@ main (void) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:32747: \"$ac_link\"") >&5 +if { (eval echo "$as_me:33145: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:32750: \$? = $ac_status" >&5 + echo "$as_me:33148: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:32753: \"$ac_try\"") >&5 + { (eval echo "$as_me:33151: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:32756: \$? = $ac_status" >&5 + echo "$as_me:33154: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else @@ -32763,7 +33161,7 @@ eval "$as_ac_var=no" fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:32766: result: `eval echo '${'$as_ac_var'}'`" >&5 +echo "$as_me:33164: 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 @@ -32775,7 +33173,7 @@ done ac_cv_func_fork_works=$ac_cv_func_fork if test "x$ac_cv_func_fork" = xyes; then - echo "$as_me:32778: checking for working fork" >&5 + echo "$as_me:33176: 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 @@ -32798,15 +33196,15 @@ else } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:32801: \"$ac_link\"") >&5 +if { (eval echo "$as_me:33199: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:32804: \$? = $ac_status" >&5 + echo "$as_me:33202: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:32806: \"$ac_try\"") >&5 + { (eval echo "$as_me:33204: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:32809: \$? = $ac_status" >&5 + echo "$as_me:33207: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_fork_works=yes else @@ -32818,7 +33216,7 @@ fi rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext fi fi -echo "$as_me:32821: result: $ac_cv_func_fork_works" >&5 +echo "$as_me:33219: result: $ac_cv_func_fork_works" >&5 echo "${ECHO_T}$ac_cv_func_fork_works" >&6 fi @@ -32832,12 +33230,12 @@ if test "x$ac_cv_func_fork_works" = xcross; then ac_cv_func_fork_works=yes ;; esac - { echo "$as_me:32835: WARNING: CROSS: Result $ac_cv_func_fork_works guessed due to cross-compiling." >&5 + { echo "$as_me:33233: 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:32840: checking for working vfork" >&5 + echo "$as_me:33238: 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 @@ -32846,7 +33244,7 @@ else ac_cv_func_vfork_works=cross else cat >conftest.$ac_ext <<_ACEOF -#line 32849 "configure" +#line 33247 "configure" #include "confdefs.h" /* Thanks to Paul Eggert for this test. */ #include <stdio.h> @@ -32943,15 +33341,15 @@ main (void) } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:32946: \"$ac_link\"") >&5 +if { (eval echo "$as_me:33344: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:32949: \$? = $ac_status" >&5 + echo "$as_me:33347: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:32951: \"$ac_try\"") >&5 + { (eval echo "$as_me:33349: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:32954: \$? = $ac_status" >&5 + echo "$as_me:33352: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_vfork_works=yes else @@ -32963,13 +33361,13 @@ fi rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext fi fi -echo "$as_me:32966: result: $ac_cv_func_vfork_works" >&5 +echo "$as_me:33364: 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:32972: WARNING: CROSS: Result $ac_cv_func_vfork_works guessed due to cross-compiling." >&5 + { echo "$as_me:33370: 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 @@ -32994,14 +33392,14 @@ EOF fi -echo "$as_me:32997: checking if we should use fcntl or ioctl" >&5 +echo "$as_me:33395: 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 33004 "configure" +#line 33402 "configure" #include "confdefs.h" #include <sys/types.h> @@ -33018,16 +33416,16 @@ main (void) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:33021: \"$ac_link\"") >&5 +if { (eval echo "$as_me:33419: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:33024: \$? = $ac_status" >&5 + echo "$as_me:33422: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:33027: \"$ac_try\"") >&5 + { (eval echo "$as_me:33425: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:33030: \$? = $ac_status" >&5 + echo "$as_me:33428: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_fionbio=ioctl else @@ -33035,7 +33433,7 @@ else cat conftest.$ac_ext >&5 cat >conftest.$ac_ext <<_ACEOF -#line 33038 "configure" +#line 33436 "configure" #include "confdefs.h" #include <sys/types.h> @@ -33057,16 +33455,16 @@ main (void) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:33060: \"$ac_link\"") >&5 +if { (eval echo "$as_me:33458: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:33063: \$? = $ac_status" >&5 + echo "$as_me:33461: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:33066: \"$ac_try\"") >&5 + { (eval echo "$as_me:33464: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:33069: \$? = $ac_status" >&5 + echo "$as_me:33467: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_fionbio=fcntl else @@ -33079,21 +33477,21 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:33082: result: $cf_cv_fionbio" >&5 +echo "$as_me:33480: 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:33089: checking for broken/missing definition of remove" >&5 +echo "$as_me:33487: 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 33096 "configure" +#line 33494 "configure" #include "confdefs.h" #include <stdio.h> int @@ -33105,23 +33503,23 @@ remove("dummy") } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:33108: \"$ac_link\"") >&5 +if { (eval echo "$as_me:33506: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:33111: \$? = $ac_status" >&5 + echo "$as_me:33509: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:33114: \"$ac_try\"") >&5 + { (eval echo "$as_me:33512: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:33117: \$? = $ac_status" >&5 + echo "$as_me:33515: \$? = $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 33124 "configure" +#line 33522 "configure" #include "confdefs.h" #include <stdio.h> int __unlink(name) { return unlink(name); } @@ -33134,16 +33532,16 @@ remove("dummy") } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:33137: \"$ac_link\"") >&5 +if { (eval echo "$as_me:33535: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:33140: \$? = $ac_status" >&5 + echo "$as_me:33538: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:33143: \"$ac_try\"") >&5 + { (eval echo "$as_me:33541: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:33146: \$? = $ac_status" >&5 + echo "$as_me:33544: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_baddef_remove=yes else @@ -33158,21 +33556,21 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:33161: result: $cf_cv_baddef_remove" >&5 +echo "$as_me:33559: 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:33168: checking for lstat" >&5 +echo "$as_me:33566: 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 33175 "configure" +#line 33573 "configure" #include "confdefs.h" #include <sys/types.h> @@ -33186,16 +33584,16 @@ lstat(".", (struct stat *)0) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:33189: \"$ac_link\"") >&5 +if { (eval echo "$as_me:33587: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:33192: \$? = $ac_status" >&5 + echo "$as_me:33590: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:33195: \"$ac_try\"") >&5 + { (eval echo "$as_me:33593: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:33198: \$? = $ac_status" >&5 + echo "$as_me:33596: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_lstat=yes else @@ -33207,7 +33605,7 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:33210: result: $ac_cv_func_lstat " >&5 +echo "$as_me:33608: result: $ac_cv_func_lstat " >&5 echo "${ECHO_T}$ac_cv_func_lstat " >&6 if test $ac_cv_func_lstat = yes; then @@ -33217,13 +33615,13 @@ EOF fi -echo "$as_me:33220: checking for vasprintf" >&5 +echo "$as_me:33618: checking for vasprintf" >&5 echo $ECHO_N "checking for vasprintf... $ECHO_C" >&6 if test "${ac_cv_func_vasprintf+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 33226 "configure" +#line 33624 "configure" #include "confdefs.h" #define vasprintf autoconf_temporary #include <limits.h> /* least-intrusive standard header which defines gcc2 __stub macros */ @@ -33254,16 +33652,16 @@ main (void) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:33257: \"$ac_link\"") >&5 +if { (eval echo "$as_me:33655: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:33260: \$? = $ac_status" >&5 + echo "$as_me:33658: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:33263: \"$ac_try\"") >&5 + { (eval echo "$as_me:33661: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:33266: \$? = $ac_status" >&5 + echo "$as_me:33664: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_vasprintf=yes else @@ -33273,7 +33671,7 @@ ac_cv_func_vasprintf=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:33276: result: $ac_cv_func_vasprintf" >&5 +echo "$as_me:33674: result: $ac_cv_func_vasprintf" >&5 echo "${ECHO_T}$ac_cv_func_vasprintf" >&6 if test $ac_cv_func_vasprintf = yes; then @@ -33281,10 +33679,10 @@ cat >>confdefs.h <<\EOF #define HAVE_VASPRINTF 1 EOF - echo "$as_me:33284: checking if vasprintf requires workaround" >&5 + echo "$as_me:33682: checking if vasprintf requires workaround" >&5 echo $ECHO_N "checking if vasprintf requires workaround... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF -#line 33287 "configure" +#line 33685 "configure" #include "confdefs.h" #include <stdio.h> @@ -33300,19 +33698,19 @@ main (void) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:33303: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:33701: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:33306: \$? = $ac_status" >&5 + echo "$as_me:33704: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:33309: \"$ac_try\"") >&5 + { (eval echo "$as_me:33707: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:33312: \$? = $ac_status" >&5 + echo "$as_me:33710: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:33315: result: no" >&5 + echo "$as_me:33713: result: no" >&5 echo "${ECHO_T}no" >&6 else @@ -33320,7 +33718,7 @@ else cat conftest.$ac_ext >&5 cat >conftest.$ac_ext <<_ACEOF -#line 33323 "configure" +#line 33721 "configure" #include "confdefs.h" #ifndef _GNU_SOURCE @@ -33339,19 +33737,19 @@ main (void) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:33342: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:33740: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:33345: \$? = $ac_status" >&5 + echo "$as_me:33743: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:33348: \"$ac_try\"") >&5 + { (eval echo "$as_me:33746: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:33351: \$? = $ac_status" >&5 + echo "$as_me:33749: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:33354: result: yes" >&5 + echo "$as_me:33752: result: yes" >&5 echo "${ECHO_T}yes" >&6 test -n "$CPPFLAGS" && CPPFLAGS="$CPPFLAGS " @@ -33361,7 +33759,7 @@ else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 - echo "$as_me:33364: result: unknown" >&5 + echo "$as_me:33762: result: unknown" >&5 echo "${ECHO_T}unknown" >&6 fi @@ -33396,13 +33794,13 @@ for ac_func in \ do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` -echo "$as_me:33399: checking for $ac_func" >&5 +echo "$as_me:33797: 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 33405 "configure" +#line 33803 "configure" #include "confdefs.h" #define $ac_func autoconf_temporary #include <limits.h> /* least-intrusive standard header which defines gcc2 __stub macros */ @@ -33433,16 +33831,16 @@ main (void) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:33436: \"$ac_link\"") >&5 +if { (eval echo "$as_me:33834: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:33439: \$? = $ac_status" >&5 + echo "$as_me:33837: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:33442: \"$ac_try\"") >&5 + { (eval echo "$as_me:33840: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:33445: \$? = $ac_status" >&5 + echo "$as_me:33843: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else @@ -33452,7 +33850,7 @@ eval "$as_ac_var=no" fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:33455: result: `eval echo '${'$as_ac_var'}'`" >&5 +echo "$as_me:33853: 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 @@ -33469,13 +33867,13 @@ for ac_func in \ do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` -echo "$as_me:33472: checking for $ac_func" >&5 +echo "$as_me:33870: 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 33478 "configure" +#line 33876 "configure" #include "confdefs.h" #define $ac_func autoconf_temporary #include <limits.h> /* least-intrusive standard header which defines gcc2 __stub macros */ @@ -33506,16 +33904,16 @@ main (void) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:33509: \"$ac_link\"") >&5 +if { (eval echo "$as_me:33907: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:33512: \$? = $ac_status" >&5 + echo "$as_me:33910: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:33515: \"$ac_try\"") >&5 + { (eval echo "$as_me:33913: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:33518: \$? = $ac_status" >&5 + echo "$as_me:33916: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else @@ -33525,7 +33923,7 @@ eval "$as_ac_var=no" fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:33528: result: `eval echo '${'$as_ac_var'}'`" >&5 +echo "$as_me:33926: 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 @@ -33537,7 +33935,7 @@ else fi done -echo "$as_me:33540: checking for random-integer functions" >&5 +echo "$as_me:33938: 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 @@ -33557,7 +33955,7 @@ do esac cat >conftest.$ac_ext <<_ACEOF -#line 33560 "configure" +#line 33958 "configure" #include "confdefs.h" #ifdef HAVE_STDLIB_H @@ -33576,16 +33974,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:33579: \"$ac_link\"") >&5 +if { (eval echo "$as_me:33977: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:33582: \$? = $ac_status" >&5 + echo "$as_me:33980: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:33585: \"$ac_try\"") >&5 + { (eval echo "$as_me:33983: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:33588: \$? = $ac_status" >&5 + echo "$as_me:33986: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_srand_func=$cf_func break @@ -33597,10 +33995,10 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext done fi -echo "$as_me:33600: result: $cf_cv_srand_func" >&5 +echo "$as_me:33998: 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:33603: checking for range of random-integers" >&5 + echo "$as_me:34001: 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 @@ -33621,7 +34019,7 @@ else ;; esac cat >conftest.$ac_ext <<_ACEOF -#line 33624 "configure" +#line 34022 "configure" #include "confdefs.h" #ifdef HAVE_STDLIB_H @@ -33640,16 +34038,16 @@ long x = $cf_cv_rand_max } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:33643: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:34041: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:33646: \$? = $ac_status" >&5 + echo "$as_me:34044: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:33649: \"$ac_try\"") >&5 + { (eval echo "$as_me:34047: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:33652: \$? = $ac_status" >&5 + echo "$as_me:34050: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -33660,15 +34058,15 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:33663: result: $cf_cv_rand_max" >&5 +echo "$as_me:34061: result: $cf_cv_rand_max" >&5 echo "${ECHO_T}$cf_cv_rand_max" >&6 case $cf_cv_srand_func in (*/arc4random) - echo "$as_me:33668: checking if <bsd/stdlib.h> should be included" >&5 + echo "$as_me:34066: 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 33671 "configure" +#line 34069 "configure" #include "confdefs.h" #include <bsd/stdlib.h> int @@ -33681,23 +34079,23 @@ void *arc4random(int); } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:33684: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:34082: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:33687: \$? = $ac_status" >&5 + echo "$as_me:34085: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:33690: \"$ac_try\"") >&5 + { (eval echo "$as_me:34088: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:33693: \$? = $ac_status" >&5 + echo "$as_me:34091: \$? = $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 33700 "configure" +#line 34098 "configure" #include "confdefs.h" #include <bsd/stdlib.h> int @@ -33709,16 +34107,16 @@ unsigned x = arc4random() } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:33712: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:34110: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:33715: \$? = $ac_status" >&5 + echo "$as_me:34113: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:33718: \"$ac_try\"") >&5 + { (eval echo "$as_me:34116: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:33721: \$? = $ac_status" >&5 + echo "$as_me:34119: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_bsd_stdlib_h=yes else @@ -33729,7 +34127,7 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi rm -f conftest.$ac_objext conftest.$ac_ext - echo "$as_me:33732: result: $cf_bsd_stdlib_h" >&5 + echo "$as_me:34130: result: $cf_bsd_stdlib_h" >&5 echo "${ECHO_T}$cf_bsd_stdlib_h" >&6 if test "$cf_bsd_stdlib_h" = yes then @@ -33739,10 +34137,10 @@ cat >>confdefs.h <<\EOF EOF else - echo "$as_me:33742: checking if <bsd/random.h> should be included" >&5 + echo "$as_me:34140: 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 33745 "configure" +#line 34143 "configure" #include "confdefs.h" #include <bsd/random.h> int @@ -33755,23 +34153,23 @@ void *arc4random(int); } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:33758: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:34156: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:33761: \$? = $ac_status" >&5 + echo "$as_me:34159: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:33764: \"$ac_try\"") >&5 + { (eval echo "$as_me:34162: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:33767: \$? = $ac_status" >&5 + echo "$as_me:34165: \$? = $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 33774 "configure" +#line 34172 "configure" #include "confdefs.h" #include <bsd/random.h> int @@ -33783,16 +34181,16 @@ unsigned x = arc4random() } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:33786: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:34184: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:33789: \$? = $ac_status" >&5 + echo "$as_me:34187: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:33792: \"$ac_try\"") >&5 + { (eval echo "$as_me:34190: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:33795: \$? = $ac_status" >&5 + echo "$as_me:34193: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_bsd_random_h=yes else @@ -33803,7 +34201,7 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi rm -f conftest.$ac_objext conftest.$ac_ext - echo "$as_me:33806: result: $cf_bsd_random_h" >&5 + echo "$as_me:34204: result: $cf_bsd_random_h" >&5 echo "${ECHO_T}$cf_bsd_random_h" >&6 if test "$cf_bsd_random_h" = yes then @@ -33813,7 +34211,7 @@ cat >>confdefs.h <<\EOF EOF else - { echo "$as_me:33816: WARNING: no header file found for arc4random" >&5 + { echo "$as_me:34214: WARNING: no header file found for arc4random" >&5 echo "$as_me: WARNING: no header file found for arc4random" >&2;} fi fi @@ -33848,13 +34246,13 @@ fi for ac_func in sleep do -echo "$as_me:33851: checking for $ac_func declaration" >&5 +echo "$as_me:34249: 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 33857 "configure" +#line 34255 "configure" #include "confdefs.h" #ifdef HAVE_STDLIB_H @@ -33875,20 +34273,20 @@ extern int $ac_func(); } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:33878: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:34276: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:33881: \$? = $ac_status" >&5 + echo "$as_me:34279: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:33884: \"$ac_try\"") >&5 + { (eval echo "$as_me:34282: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:33887: \$? = $ac_status" >&5 + echo "$as_me:34285: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cat >conftest.$ac_ext <<_ACEOF -#line 33891 "configure" +#line 34289 "configure" #include "confdefs.h" #ifdef HAVE_STDLIB_H @@ -33909,16 +34307,16 @@ int (*p)() = $ac_func; } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:33912: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:34310: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:33915: \$? = $ac_status" >&5 + echo "$as_me:34313: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:33918: \"$ac_try\"") >&5 + { (eval echo "$as_me:34316: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:33921: \$? = $ac_status" >&5 + echo "$as_me:34319: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "ac_cv_func_decl_$ac_func=yes" @@ -33939,11 +34337,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:33942: result: yes" >&5 + echo "$as_me:34340: result: yes" >&5 echo "${ECHO_T}yes" >&6 : else - echo "$as_me:33946: result: no" >&5 + echo "$as_me:34344: result: no" >&5 echo "${ECHO_T}no" >&6 ac_tr_func=`echo "DECL_$ac_func" | sed y%abcdefghijklmnopqrstuvwxyz./-%ABCDEFGHIJKLMNOPQRSTUVWXYZ___%` @@ -33958,13 +34356,13 @@ done for ac_func in strstr do -echo "$as_me:33961: checking for $ac_func declaration" >&5 +echo "$as_me:34359: 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 33967 "configure" +#line 34365 "configure" #include "confdefs.h" #include <string.h> int @@ -33978,20 +34376,20 @@ extern int $ac_func(); } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:33981: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:34379: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:33984: \$? = $ac_status" >&5 + echo "$as_me:34382: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:33987: \"$ac_try\"") >&5 + { (eval echo "$as_me:34385: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:33990: \$? = $ac_status" >&5 + echo "$as_me:34388: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cat >conftest.$ac_ext <<_ACEOF -#line 33994 "configure" +#line 34392 "configure" #include "confdefs.h" #include <string.h> int @@ -34005,16 +34403,16 @@ int (*p)() = $ac_func; } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:34008: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:34406: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:34011: \$? = $ac_status" >&5 + echo "$as_me:34409: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:34014: \"$ac_try\"") >&5 + { (eval echo "$as_me:34412: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:34017: \$? = $ac_status" >&5 + echo "$as_me:34415: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "ac_cv_func_decl_$ac_func=yes" @@ -34035,11 +34433,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:34038: result: yes" >&5 + echo "$as_me:34436: result: yes" >&5 echo "${ECHO_T}yes" >&6 : else - echo "$as_me:34042: result: no" >&5 + echo "$as_me:34440: result: no" >&5 echo "${ECHO_T}no" >&6 ac_tr_func=`echo "DECL_$ac_func" | sed y%abcdefghijklmnopqrstuvwxyz./-%ABCDEFGHIJKLMNOPQRSTUVWXYZ___%` @@ -34054,13 +34452,13 @@ done for ac_func in getgrgid getgrnam do -echo "$as_me:34057: checking for $ac_func declaration" >&5 +echo "$as_me:34455: 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 34063 "configure" +#line 34461 "configure" #include "confdefs.h" #include <stdio.h> @@ -34076,20 +34474,20 @@ extern int $ac_func(); } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:34079: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:34477: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:34082: \$? = $ac_status" >&5 + echo "$as_me:34480: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:34085: \"$ac_try\"") >&5 + { (eval echo "$as_me:34483: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:34088: \$? = $ac_status" >&5 + echo "$as_me:34486: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cat >conftest.$ac_ext <<_ACEOF -#line 34092 "configure" +#line 34490 "configure" #include "confdefs.h" #include <stdio.h> @@ -34105,16 +34503,16 @@ int (*p)() = $ac_func; } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:34108: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:34506: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:34111: \$? = $ac_status" >&5 + echo "$as_me:34509: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:34114: \"$ac_try\"") >&5 + { (eval echo "$as_me:34512: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:34117: \$? = $ac_status" >&5 + echo "$as_me:34515: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "ac_cv_func_decl_$ac_func=yes" @@ -34135,11 +34533,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:34138: result: yes" >&5 + echo "$as_me:34536: result: yes" >&5 echo "${ECHO_T}yes" >&6 : else - echo "$as_me:34142: result: no" >&5 + echo "$as_me:34540: result: no" >&5 echo "${ECHO_T}no" >&6 ac_tr_func=`echo "DECL_$ac_func" | sed y%abcdefghijklmnopqrstuvwxyz./-%ABCDEFGHIJKLMNOPQRSTUVWXYZ___%` @@ -34151,14 +34549,14 @@ EOF fi done -echo "$as_me:34154: checking if TRUE/FALSE are defined" >&5 +echo "$as_me:34552: 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 34161 "configure" +#line 34559 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> @@ -34172,16 +34570,16 @@ int x = TRUE, y = FALSE } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:34175: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:34573: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:34178: \$? = $ac_status" >&5 + echo "$as_me:34576: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:34181: \"$ac_try\"") >&5 + { (eval echo "$as_me:34579: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:34184: \$? = $ac_status" >&5 + echo "$as_me:34582: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_bool_defs=yes else @@ -34192,7 +34590,7 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:34195: result: $cf_cv_bool_defs" >&5 +echo "$as_me:34593: result: $cf_cv_bool_defs" >&5 echo "${ECHO_T}$cf_cv_bool_defs" >&6 if test "$cf_cv_bool_defs" = no ; then @@ -34206,14 +34604,14 @@ EOF fi -echo "$as_me:34209: checking if external errno is declared" >&5 +echo "$as_me:34607: 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 34216 "configure" +#line 34614 "configure" #include "confdefs.h" #ifdef HAVE_STDLIB_H @@ -34231,16 +34629,16 @@ int x = (int) errno } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:34234: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:34632: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:34237: \$? = $ac_status" >&5 + echo "$as_me:34635: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:34240: \"$ac_try\"") >&5 + { (eval echo "$as_me:34638: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:34243: \$? = $ac_status" >&5 + echo "$as_me:34641: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_dcl_errno=yes else @@ -34251,7 +34649,7 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:34254: result: $cf_cv_dcl_errno" >&5 +echo "$as_me:34652: result: $cf_cv_dcl_errno" >&5 echo "${ECHO_T}$cf_cv_dcl_errno" >&6 if test "$cf_cv_dcl_errno" = no ; then @@ -34266,14 +34664,14 @@ fi # It's possible (for near-UNIX clones) that the data doesn't exist -echo "$as_me:34269: checking if external errno exists" >&5 +echo "$as_me:34667: 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 34276 "configure" +#line 34674 "configure" #include "confdefs.h" #undef errno @@ -34288,16 +34686,16 @@ errno = 2 } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:34291: \"$ac_link\"") >&5 +if { (eval echo "$as_me:34689: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:34294: \$? = $ac_status" >&5 + echo "$as_me:34692: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:34297: \"$ac_try\"") >&5 + { (eval echo "$as_me:34695: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:34300: \$? = $ac_status" >&5 + echo "$as_me:34698: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_have_errno=yes else @@ -34308,7 +34706,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:34311: result: $cf_cv_have_errno" >&5 +echo "$as_me:34709: result: $cf_cv_have_errno" >&5 echo "${ECHO_T}$cf_cv_have_errno" >&6 if test "$cf_cv_have_errno" = yes ; then @@ -34321,7 +34719,7 @@ EOF fi -echo "$as_me:34324: checking if we can set errno" >&5 +echo "$as_me:34722: 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 @@ -34329,7 +34727,7 @@ else if test "$cross_compiling" = yes; then cat >conftest.$ac_ext <<_ACEOF -#line 34332 "configure" +#line 34730 "configure" #include "confdefs.h" #include <errno.h> int @@ -34341,16 +34739,16 @@ errno = 255 } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:34344: \"$ac_link\"") >&5 +if { (eval echo "$as_me:34742: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:34347: \$? = $ac_status" >&5 + echo "$as_me:34745: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:34350: \"$ac_try\"") >&5 + { (eval echo "$as_me:34748: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:34353: \$? = $ac_status" >&5 + echo "$as_me:34751: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_set_errno=maybe else @@ -34361,7 +34759,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext else cat >conftest.$ac_ext <<_ACEOF -#line 34364 "configure" +#line 34762 "configure" #include "confdefs.h" #include <errno.h> @@ -34372,15 +34770,15 @@ int main(void) } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:34375: \"$ac_link\"") >&5 +if { (eval echo "$as_me:34773: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:34378: \$? = $ac_status" >&5 + echo "$as_me:34776: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:34380: \"$ac_try\"") >&5 + { (eval echo "$as_me:34778: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:34383: \$? = $ac_status" >&5 + echo "$as_me:34781: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_set_errno=yes else @@ -34393,21 +34791,21 @@ rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext fi fi -echo "$as_me:34396: result: $cf_cv_set_errno" >&5 +echo "$as_me:34794: 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:34403: checking for setlocale()" >&5 +echo "$as_me:34801: 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 34410 "configure" +#line 34808 "configure" #include "confdefs.h" #include <locale.h> int @@ -34419,16 +34817,16 @@ setlocale(LC_ALL, "") } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:34422: \"$ac_link\"") >&5 +if { (eval echo "$as_me:34820: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:34425: \$? = $ac_status" >&5 + echo "$as_me:34823: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:34428: \"$ac_try\"") >&5 + { (eval echo "$as_me:34826: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:34431: \$? = $ac_status" >&5 + echo "$as_me:34829: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_locale=yes else @@ -34440,7 +34838,7 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:34443: result: $cf_cv_locale" >&5 +echo "$as_me:34841: result: $cf_cv_locale" >&5 echo "${ECHO_T}$cf_cv_locale" >&6 test $cf_cv_locale = yes && { cat >>confdefs.h <<\EOF @@ -34448,14 +34846,14 @@ cat >>confdefs.h <<\EOF EOF } -echo "$as_me:34451: checking if NGROUPS is defined" >&5 +echo "$as_me:34849: 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 34458 "configure" +#line 34856 "configure" #include "confdefs.h" #if HAVE_SYS_PARAM_H @@ -34474,23 +34872,23 @@ int x = NGROUPS } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:34477: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:34875: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:34480: \$? = $ac_status" >&5 + echo "$as_me:34878: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:34483: \"$ac_try\"") >&5 + { (eval echo "$as_me:34881: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:34486: \$? = $ac_status" >&5 + echo "$as_me:34884: \$? = $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 34493 "configure" +#line 34891 "configure" #include "confdefs.h" #if HAVE_SYS_PARAM_H @@ -34509,16 +34907,16 @@ int x = NGROUPS_MAX } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:34512: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:34910: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:34515: \$? = $ac_status" >&5 + echo "$as_me:34913: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:34518: \"$ac_try\"") >&5 + { (eval echo "$as_me:34916: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:34521: \$? = $ac_status" >&5 + echo "$as_me:34919: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_ngroups=NGROUPS_MAX else @@ -34530,7 +34928,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext fi rm -f conftest.$ac_objext conftest.$ac_ext -echo "$as_me:34533: result: $cf_cv_ngroups" >&5 +echo "$as_me:34931: result: $cf_cv_ngroups" >&5 echo "${ECHO_T}$cf_cv_ngroups" >&6 fi @@ -34548,14 +34946,14 @@ EOF fi -echo "$as_me:34551: checking if external sys_nerr is declared" >&5 +echo "$as_me:34949: 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 34558 "configure" +#line 34956 "configure" #include "confdefs.h" #ifdef HAVE_STDLIB_H @@ -34573,16 +34971,16 @@ int x = (int) sys_nerr } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:34576: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:34974: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:34579: \$? = $ac_status" >&5 + echo "$as_me:34977: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:34582: \"$ac_try\"") >&5 + { (eval echo "$as_me:34980: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:34585: \$? = $ac_status" >&5 + echo "$as_me:34983: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_dcl_sys_nerr=yes else @@ -34593,7 +34991,7 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:34596: result: $cf_cv_dcl_sys_nerr" >&5 +echo "$as_me:34994: 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 @@ -34608,14 +35006,14 @@ fi # It's possible (for near-UNIX clones) that the data doesn't exist -echo "$as_me:34611: checking if external sys_nerr exists" >&5 +echo "$as_me:35009: 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 34618 "configure" +#line 35016 "configure" #include "confdefs.h" #undef sys_nerr @@ -34630,16 +35028,16 @@ sys_nerr = 2 } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:34633: \"$ac_link\"") >&5 +if { (eval echo "$as_me:35031: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:34636: \$? = $ac_status" >&5 + echo "$as_me:35034: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:34639: \"$ac_try\"") >&5 + { (eval echo "$as_me:35037: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:34642: \$? = $ac_status" >&5 + echo "$as_me:35040: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_have_sys_nerr=yes else @@ -34650,7 +35048,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:34653: result: $cf_cv_have_sys_nerr" >&5 +echo "$as_me:35051: 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 @@ -34663,14 +35061,14 @@ EOF fi -echo "$as_me:34666: checking if external sys_errlist is declared" >&5 +echo "$as_me:35064: 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 34673 "configure" +#line 35071 "configure" #include "confdefs.h" #ifdef HAVE_STDLIB_H @@ -34688,16 +35086,16 @@ int x = (int) sys_errlist } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:34691: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:35089: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:34694: \$? = $ac_status" >&5 + echo "$as_me:35092: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:34697: \"$ac_try\"") >&5 + { (eval echo "$as_me:35095: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:34700: \$? = $ac_status" >&5 + echo "$as_me:35098: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_dcl_sys_errlist=yes else @@ -34708,7 +35106,7 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:34711: result: $cf_cv_dcl_sys_errlist" >&5 +echo "$as_me:35109: 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 @@ -34723,14 +35121,14 @@ fi # It's possible (for near-UNIX clones) that the data doesn't exist -echo "$as_me:34726: checking if external sys_errlist exists" >&5 +echo "$as_me:35124: 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 34733 "configure" +#line 35131 "configure" #include "confdefs.h" #undef sys_errlist @@ -34745,16 +35143,16 @@ sys_errlist = 2 } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:34748: \"$ac_link\"") >&5 +if { (eval echo "$as_me:35146: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:34751: \$? = $ac_status" >&5 + echo "$as_me:35149: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:34754: \"$ac_try\"") >&5 + { (eval echo "$as_me:35152: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:34757: \$? = $ac_status" >&5 + echo "$as_me:35155: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_have_sys_errlist=yes else @@ -34765,7 +35163,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:34768: result: $cf_cv_have_sys_errlist" >&5 +echo "$as_me:35166: 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 @@ -34781,23 +35179,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:34784: checking for $ac_header" >&5 +echo "$as_me:35182: 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 34790 "configure" +#line 35188 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:34794: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:35192: \"$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:34800: \$? = $ac_status" >&5 + echo "$as_me:35198: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -34816,7 +35214,7 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:34819: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:35217: 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 @@ -34826,14 +35224,14 @@ EOF fi done -echo "$as_me:34829: checking for lastlog path" >&5 +echo "$as_me:35227: 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 34836 "configure" +#line 35234 "configure" #include "confdefs.h" #include <sys/types.h> @@ -34853,16 +35251,16 @@ char *path = _PATH_LASTLOG } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:34856: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:35254: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:34859: \$? = $ac_status" >&5 + echo "$as_me:35257: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:34862: \"$ac_try\"") >&5 + { (eval echo "$as_me:35260: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:34865: \$? = $ac_status" >&5 + echo "$as_me:35263: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_path_lastlog="_PATH_LASTLOG" else @@ -34877,14 +35275,14 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:34880: result: $cf_cv_path_lastlog" >&5 +echo "$as_me:35278: 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:34887: checking for utmp implementation" >&5 +echo "$as_me:35285: 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 @@ -34901,7 +35299,7 @@ cf_utmp_includes=" #endif " cat >conftest.$ac_ext <<_ACEOF -#line 34904 "configure" +#line 35302 "configure" #include "confdefs.h" $cf_utmp_includes int @@ -34915,16 +35313,16 @@ struct $cf_header x; } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:34918: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:35316: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:34921: \$? = $ac_status" >&5 + echo "$as_me:35319: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:34924: \"$ac_try\"") >&5 + { (eval echo "$as_me:35322: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:34927: \$? = $ac_status" >&5 + echo "$as_me:35325: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_have_utmp=$cf_header break @@ -34933,7 +35331,7 @@ else cat conftest.$ac_ext >&5 cat >conftest.$ac_ext <<_ACEOF -#line 34936 "configure" +#line 35334 "configure" #include "confdefs.h" $cf_utmp_includes int @@ -34947,16 +35345,16 @@ struct $cf_header x; } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:34950: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:35348: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:34953: \$? = $ac_status" >&5 + echo "$as_me:35351: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:34956: \"$ac_try\"") >&5 + { (eval echo "$as_me:35354: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:34959: \$? = $ac_status" >&5 + echo "$as_me:35357: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_have_utmp=$cf_header break @@ -34971,7 +35369,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext done fi -echo "$as_me:34974: result: $cf_cv_have_utmp" >&5 +echo "$as_me:35372: result: $cf_cv_have_utmp" >&5 echo "${ECHO_T}$cf_cv_have_utmp" >&6 if test $cf_cv_have_utmp != no ; then @@ -34986,14 +35384,14 @@ cat >>confdefs.h <<\EOF EOF if test $cf_cv_have_utmp != no ; then -echo "$as_me:34989: checking if ${cf_cv_have_utmp}.ut_host is declared" >&5 +echo "$as_me:35387: 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 34996 "configure" +#line 35394 "configure" #include "confdefs.h" #include <sys/types.h> @@ -35007,16 +35405,16 @@ struct $cf_cv_have_utmp x; char *y = &x.ut_host[0] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:35010: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:35408: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:35013: \$? = $ac_status" >&5 + echo "$as_me:35411: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:35016: \"$ac_try\"") >&5 + { (eval echo "$as_me:35414: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:35019: \$? = $ac_status" >&5 + echo "$as_me:35417: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_have_utmp_ut_host=yes else @@ -35028,7 +35426,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:35031: result: $cf_cv_have_utmp_ut_host" >&5 +echo "$as_me:35429: 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 @@ -35038,14 +35436,14 @@ EOF fi if test $cf_cv_have_utmp != no ; then -echo "$as_me:35041: checking if ${cf_cv_have_utmp}.ut_syslen is declared" >&5 +echo "$as_me:35439: 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 35048 "configure" +#line 35446 "configure" #include "confdefs.h" #include <sys/types.h> @@ -35059,16 +35457,16 @@ struct $cf_cv_have_utmp x; int y = x.ut_syslen } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:35062: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:35460: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:35065: \$? = $ac_status" >&5 + echo "$as_me:35463: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:35068: \"$ac_try\"") >&5 + { (eval echo "$as_me:35466: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:35071: \$? = $ac_status" >&5 + echo "$as_me:35469: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_have_utmp_ut_syslen=yes else @@ -35080,7 +35478,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:35083: result: $cf_cv_have_utmp_ut_syslen" >&5 +echo "$as_me:35481: 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 @@ -35090,7 +35488,7 @@ EOF fi if test $cf_cv_have_utmp != no ; then -echo "$as_me:35093: checking if ${cf_cv_have_utmp}.ut_name is declared" >&5 +echo "$as_me:35491: 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 @@ -35107,7 +35505,7 @@ cf_utmp_includes=" " for cf_header in ut_name ut_user ; do cat >conftest.$ac_ext <<_ACEOF -#line 35110 "configure" +#line 35508 "configure" #include "confdefs.h" $cf_utmp_includes int @@ -35121,16 +35519,16 @@ struct $cf_cv_have_utmp x; } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:35124: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:35522: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:35127: \$? = $ac_status" >&5 + echo "$as_me:35525: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:35130: \"$ac_try\"") >&5 + { (eval echo "$as_me:35528: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:35133: \$? = $ac_status" >&5 + echo "$as_me:35531: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_have_utmp_ut_name=$cf_header break @@ -35142,12 +35540,12 @@ rm -f conftest.$ac_objext conftest.$ac_ext done fi -echo "$as_me:35145: result: $cf_cv_have_utmp_ut_name" >&5 +echo "$as_me:35543: result: $cf_cv_have_utmp_ut_name" >&5 echo "${ECHO_T}$cf_cv_have_utmp_ut_name" >&6 case $cf_cv_have_utmp_ut_name in (no) - { { echo "$as_me:35150: error: Cannot find declaration for ut.ut_name" >&5 + { { echo "$as_me:35548: 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; }; } ;; @@ -35162,7 +35560,7 @@ esac fi if test $cf_cv_have_utmp != no ; then -echo "$as_me:35165: checking for exit-status in $cf_cv_have_utmp" >&5 +echo "$as_me:35563: 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 @@ -35175,7 +35573,7 @@ for cf_result in \ ut_exit.ut_exit do cat >conftest.$ac_ext <<_ACEOF -#line 35178 "configure" +#line 35576 "configure" #include "confdefs.h" #include <sys/types.h> @@ -35189,16 +35587,16 @@ struct $cf_cv_have_utmp x; long y = x.$cf_result = 0 } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:35192: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:35590: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:35195: \$? = $ac_status" >&5 + echo "$as_me:35593: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:35198: \"$ac_try\"") >&5 + { (eval echo "$as_me:35596: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:35201: \$? = $ac_status" >&5 + echo "$as_me:35599: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_have_utmp_ut_xstatus=$cf_result break @@ -35211,7 +35609,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext done fi -echo "$as_me:35214: result: $cf_cv_have_utmp_ut_xstatus" >&5 +echo "$as_me:35612: 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 @@ -35227,14 +35625,14 @@ fi fi if test $cf_cv_have_utmp != no ; then -echo "$as_me:35230: checking if ${cf_cv_have_utmp}.ut_xtime is declared" >&5 +echo "$as_me:35628: 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 35237 "configure" +#line 35635 "configure" #include "confdefs.h" #include <sys/types.h> @@ -35248,23 +35646,23 @@ struct $cf_cv_have_utmp x; long y = x.ut_xtime = 0 } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:35251: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:35649: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:35254: \$? = $ac_status" >&5 + echo "$as_me:35652: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:35257: \"$ac_try\"") >&5 + { (eval echo "$as_me:35655: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:35260: \$? = $ac_status" >&5 + echo "$as_me:35658: \$? = $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 35267 "configure" +#line 35665 "configure" #include "confdefs.h" #include <sys/types.h> @@ -35278,16 +35676,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:35281: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:35679: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:35284: \$? = $ac_status" >&5 + echo "$as_me:35682: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:35287: \"$ac_try\"") >&5 + { (eval echo "$as_me:35685: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:35290: \$? = $ac_status" >&5 + echo "$as_me:35688: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_have_utmp_ut_xtime=define else @@ -35301,7 +35699,7 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:35304: result: $cf_cv_have_utmp_ut_xtime" >&5 +echo "$as_me:35702: 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 @@ -35320,14 +35718,14 @@ fi fi if test $cf_cv_have_utmp != no ; then -echo "$as_me:35323: checking if ${cf_cv_have_utmp}.ut_session is declared" >&5 +echo "$as_me:35721: 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 35330 "configure" +#line 35728 "configure" #include "confdefs.h" #include <sys/types.h> @@ -35341,16 +35739,16 @@ struct $cf_cv_have_utmp x; long y = x.ut_session } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:35344: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:35742: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:35347: \$? = $ac_status" >&5 + echo "$as_me:35745: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:35350: \"$ac_try\"") >&5 + { (eval echo "$as_me:35748: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:35353: \$? = $ac_status" >&5 + echo "$as_me:35751: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_have_utmp_ut_session=yes else @@ -35361,7 +35759,7 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:35364: result: $cf_cv_have_utmp_ut_session" >&5 +echo "$as_me:35762: 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 @@ -35372,7 +35770,7 @@ EOF fi fi -echo "$as_me:35375: checking if $cf_cv_have_utmp is SYSV flavor" >&5 +echo "$as_me:35773: 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 @@ -35380,7 +35778,7 @@ else test "$cf_cv_have_utmp" = "utmp" && cf_prefix="ut" || cf_prefix="utx" cat >conftest.$ac_ext <<_ACEOF -#line 35383 "configure" +#line 35781 "configure" #include "confdefs.h" #include <sys/types.h> @@ -35399,16 +35797,16 @@ struct $cf_cv_have_utmp x; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:35402: \"$ac_link\"") >&5 +if { (eval echo "$as_me:35800: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:35405: \$? = $ac_status" >&5 + echo "$as_me:35803: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:35408: \"$ac_try\"") >&5 + { (eval echo "$as_me:35806: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:35411: \$? = $ac_status" >&5 + echo "$as_me:35809: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_sysv_utmp=yes else @@ -35419,7 +35817,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:35422: result: $cf_cv_sysv_utmp" >&5 +echo "$as_me:35820: result: $cf_cv_sysv_utmp" >&5 echo "${ECHO_T}$cf_cv_sysv_utmp" >&6 test $cf_cv_sysv_utmp = yes && cat >>confdefs.h <<\EOF @@ -35428,14 +35826,14 @@ EOF fi -echo "$as_me:35431: checking if external h_errno exists" >&5 +echo "$as_me:35829: 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 35438 "configure" +#line 35836 "configure" #include "confdefs.h" #undef h_errno @@ -35450,16 +35848,16 @@ h_errno = 2 } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:35453: \"$ac_link\"") >&5 +if { (eval echo "$as_me:35851: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:35456: \$? = $ac_status" >&5 + echo "$as_me:35854: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:35459: \"$ac_try\"") >&5 + { (eval echo "$as_me:35857: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:35462: \$? = $ac_status" >&5 + echo "$as_me:35860: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_have_h_errno=yes else @@ -35470,7 +35868,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:35473: result: $cf_cv_have_h_errno" >&5 +echo "$as_me:35871: 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 @@ -35483,7 +35881,7 @@ EOF fi -echo "$as_me:35486: checking if bibp: URLs should be supported" >&5 +echo "$as_me:35884: 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. @@ -35500,14 +35898,14 @@ else use_bibp_urls=yes fi; -echo "$as_me:35503: result: $use_bibp_urls" >&5 +echo "$as_me:35901: 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:35510: checking if configuration info should be browsable" >&5 +echo "$as_me:35908: 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. @@ -35524,14 +35922,14 @@ else use_config_info=yes fi; -echo "$as_me:35527: result: $use_config_info" >&5 +echo "$as_me:35925: 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:35534: checking if new-style forms-based options screen should be used" >&5 +echo "$as_me:35932: 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. @@ -35548,14 +35946,14 @@ else use_forms_options=yes fi; -echo "$as_me:35551: result: $use_forms_options" >&5 +echo "$as_me:35949: 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:35558: checking if old-style options menu should be used" >&5 +echo "$as_me:35956: 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. @@ -35572,14 +35970,14 @@ else use_menu_options=yes fi; -echo "$as_me:35575: result: $use_menu_options" >&5 +echo "$as_me:35973: 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:35582: checking if sessions code should be used" >&5 +echo "$as_me:35980: 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. @@ -35596,7 +35994,7 @@ else use_sessions=yes fi; -echo "$as_me:35599: result: $use_sessions" >&5 +echo "$as_me:35997: result: $use_sessions" >&5 echo "${ECHO_T}$use_sessions" >&6 if test $use_sessions != no ; then @@ -35607,7 +36005,7 @@ EOF EXTRA_OBJS="$EXTRA_OBJS LYSession\$o" fi -echo "$as_me:35610: checking if session-caching code should be used" >&5 +echo "$as_me:36008: 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. @@ -35624,7 +36022,7 @@ else use_session_cache=yes fi; -echo "$as_me:35627: result: $use_session_cache" >&5 +echo "$as_me:36025: result: $use_session_cache" >&5 echo "${ECHO_T}$use_session_cache" >&6 if test $use_session_cache != no ; then @@ -35634,7 +36032,7 @@ EOF fi -echo "$as_me:35637: checking if address-list page should be used" >&5 +echo "$as_me:36035: 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. @@ -35651,14 +36049,14 @@ else use_addrlist_page=yes fi; -echo "$as_me:35654: result: $use_addrlist_page" >&5 +echo "$as_me:36052: 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:35661: checking if experimental CJK logic should be used" >&5 +echo "$as_me:36059: 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. @@ -35675,14 +36073,14 @@ else use_cjk=no fi; -echo "$as_me:35678: result: $use_cjk" >&5 +echo "$as_me:36076: 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:35685: checking if experimental Japanese UTF-8 logic should be used" >&5 +echo "$as_me:36083: 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. @@ -35699,7 +36097,7 @@ else use_ja_utf8=no fi; -echo "$as_me:35702: result: $use_ja_utf8" >&5 +echo "$as_me:36100: result: $use_ja_utf8" >&5 echo "${ECHO_T}$use_ja_utf8" >&6 if test $use_ja_utf8 != no ; then @@ -35748,7 +36146,7 @@ if test -n "$cf_searchpath/include" ; then CPPFLAGS="${CPPFLAGS}-I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 35751 "configure" +#line 36149 "configure" #include "confdefs.h" #include <stdio.h> int @@ -35760,16 +36158,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:35763: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:36161: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:35766: \$? = $ac_status" >&5 + echo "$as_me:36164: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:35769: \"$ac_try\"") >&5 + { (eval echo "$as_me:36167: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:35772: \$? = $ac_status" >&5 + echo "$as_me:36170: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -35786,7 +36184,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}:35789: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:36187: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -35832,7 +36230,7 @@ if test -n "$cf_searchpath/../include" ; then CPPFLAGS="${CPPFLAGS}-I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 35835 "configure" +#line 36233 "configure" #include "confdefs.h" #include <stdio.h> int @@ -35844,16 +36242,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:35847: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:36245: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:35850: \$? = $ac_status" >&5 + echo "$as_me:36248: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:35853: \"$ac_try\"") >&5 + { (eval echo "$as_me:36251: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:35856: \$? = $ac_status" >&5 + echo "$as_me:36254: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -35870,7 +36268,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}:35873: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:36271: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -35888,7 +36286,7 @@ echo "${as_me:-configure}:35873: testing adding $cf_add_incdir to include-path . fi else -{ { echo "$as_me:35891: error: cannot find libiconv under $withval" >&5 +{ { echo "$as_me:36289: error: cannot find libiconv under $withval" >&5 echo "$as_me: error: cannot find libiconv under $withval" >&2;} { (exit 1); exit 1; }; } fi @@ -35913,7 +36311,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}:35916: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:36314: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -35942,7 +36340,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}:35945: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:36343: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -35951,7 +36349,7 @@ echo "${as_me:-configure}:35945: testing adding $cf_add_libdir to library-path . fi else -{ { echo "$as_me:35954: error: cannot find libiconv under $withval" >&5 +{ { echo "$as_me:36352: error: cannot find libiconv under $withval" >&5 echo "$as_me: error: cannot find libiconv under $withval" >&2;} { (exit 1); exit 1; }; } fi @@ -35962,7 +36360,7 @@ esac fi; - echo "$as_me:35965: checking for iconv" >&5 + echo "$as_me:36363: 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 @@ -35973,12 +36371,12 @@ else cf_cv_header_path_iconv= cf_cv_library_path_iconv= -echo "${as_me:-configure}:35976: testing Starting FIND_LINKAGE(iconv,) ..." 1>&5 +echo "${as_me:-configure}:36374: testing Starting FIND_LINKAGE(iconv,) ..." 1>&5 cf_save_LIBS="$LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 35981 "configure" +#line 36379 "configure" #include "confdefs.h" #include <stdlib.h> @@ -35997,16 +36395,16 @@ main (void) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:36000: \"$ac_link\"") >&5 +if { (eval echo "$as_me:36398: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:36003: \$? = $ac_status" >&5 + echo "$as_me:36401: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:36006: \"$ac_try\"") >&5 + { (eval echo "$as_me:36404: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:36009: \$? = $ac_status" >&5 + echo "$as_me:36407: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_find_linkage_iconv=yes @@ -36020,7 +36418,7 @@ cat conftest.$ac_ext >&5 LIBS="-liconv $cf_save_LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 36023 "configure" +#line 36421 "configure" #include "confdefs.h" #include <stdlib.h> @@ -36039,16 +36437,16 @@ main (void) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:36042: \"$ac_link\"") >&5 +if { (eval echo "$as_me:36440: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:36045: \$? = $ac_status" >&5 + echo "$as_me:36443: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:36048: \"$ac_try\"") >&5 + { (eval echo "$as_me:36446: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:36051: \$? = $ac_status" >&5 + echo "$as_me:36449: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_find_linkage_iconv=yes @@ -36065,9 +36463,9 @@ cat conftest.$ac_ext >&5 test -n "$verbose" && echo " find linkage for iconv library" 1>&6 -echo "${as_me:-configure}:36068: testing find linkage for iconv library ..." 1>&5 +echo "${as_me:-configure}:36466: testing find linkage for iconv library ..." 1>&5 -echo "${as_me:-configure}:36070: testing Searching for headers in FIND_LINKAGE(iconv,) ..." 1>&5 +echo "${as_me:-configure}:36468: testing Searching for headers in FIND_LINKAGE(iconv,) ..." 1>&5 cf_save_CPPFLAGS="$CPPFLAGS" cf_test_CPPFLAGS="$CPPFLAGS" @@ -36158,7 +36556,7 @@ cf_search="$cf_search $cf_header_path_list" if test -d $cf_cv_header_path_iconv ; then test -n "$verbose" && echo " ... testing $cf_cv_header_path_iconv" 1>&6 -echo "${as_me:-configure}:36161: testing ... testing $cf_cv_header_path_iconv ..." 1>&5 +echo "${as_me:-configure}:36559: testing ... testing $cf_cv_header_path_iconv ..." 1>&5 CPPFLAGS="$cf_save_CPPFLAGS" @@ -36166,7 +36564,7 @@ echo "${as_me:-configure}:36161: testing ... testing $cf_cv_header_path_iconv .. CPPFLAGS="${CPPFLAGS}-I$cf_cv_header_path_iconv" cat >conftest.$ac_ext <<_ACEOF -#line 36169 "configure" +#line 36567 "configure" #include "confdefs.h" #include <stdlib.h> @@ -36185,21 +36583,21 @@ main (void) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:36188: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:36586: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:36191: \$? = $ac_status" >&5 + echo "$as_me:36589: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:36194: \"$ac_try\"") >&5 + { (eval echo "$as_me:36592: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:36197: \$? = $ac_status" >&5 + echo "$as_me:36595: \$? = $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}:36202: testing ... found iconv headers in $cf_cv_header_path_iconv ..." 1>&5 +echo "${as_me:-configure}:36600: testing ... found iconv headers in $cf_cv_header_path_iconv ..." 1>&5 cf_cv_find_linkage_iconv=maybe cf_test_CPPFLAGS="$CPPFLAGS" @@ -36217,7 +36615,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "$cf_cv_find_linkage_iconv" = maybe ; then -echo "${as_me:-configure}:36220: testing Searching for iconv library in FIND_LINKAGE(iconv,) ..." 1>&5 +echo "${as_me:-configure}:36618: testing Searching for iconv library in FIND_LINKAGE(iconv,) ..." 1>&5 cf_save_LIBS="$LIBS" cf_save_LDFLAGS="$LDFLAGS" @@ -36292,13 +36690,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}:36295: testing ... testing $cf_cv_library_path_iconv ..." 1>&5 +echo "${as_me:-configure}:36693: 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 36301 "configure" +#line 36699 "configure" #include "confdefs.h" #include <stdlib.h> @@ -36317,21 +36715,21 @@ main (void) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:36320: \"$ac_link\"") >&5 +if { (eval echo "$as_me:36718: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:36323: \$? = $ac_status" >&5 + echo "$as_me:36721: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:36326: \"$ac_try\"") >&5 + { (eval echo "$as_me:36724: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:36329: \$? = $ac_status" >&5 + echo "$as_me:36727: \$? = $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}:36334: testing ... found iconv library in $cf_cv_library_path_iconv ..." 1>&5 +echo "${as_me:-configure}:36732: testing ... found iconv library in $cf_cv_library_path_iconv ..." 1>&5 cf_cv_find_linkage_iconv=yes cf_cv_library_file_iconv="-liconv" @@ -36371,7 +36769,7 @@ am_cv_func_iconv="no, consider installing GNU libiconv" fi fi -echo "$as_me:36374: result: $am_cv_func_iconv" >&5 +echo "$as_me:36772: result: $am_cv_func_iconv" >&5 echo "${ECHO_T}$am_cv_func_iconv" >&6 if test "$am_cv_func_iconv" = yes; then @@ -36380,14 +36778,14 @@ cat >>confdefs.h <<\EOF #define HAVE_ICONV 1 EOF - echo "$as_me:36383: checking if the declaration of iconv() needs const." >&5 + echo "$as_me:36781: 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 36390 "configure" +#line 36788 "configure" #include "confdefs.h" #include <stdlib.h> @@ -36412,16 +36810,16 @@ main (void) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:36415: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:36813: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:36418: \$? = $ac_status" >&5 + echo "$as_me:36816: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:36421: \"$ac_try\"") >&5 + { (eval echo "$as_me:36819: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:36424: \$? = $ac_status" >&5 + echo "$as_me:36822: \$? = $ac_status" >&5 (exit $ac_status); }; }; then am_cv_proto_iconv_const=no else @@ -36431,7 +36829,7 @@ am_cv_proto_iconv_const=yes fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:36434: result: $am_cv_proto_iconv_const" >&5 +echo "$as_me:36832: 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 @@ -36476,7 +36874,7 @@ if test -n "$cf_cv_header_path_iconv" ; then CPPFLAGS="${CPPFLAGS}-I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 36479 "configure" +#line 36877 "configure" #include "confdefs.h" #include <stdio.h> int @@ -36488,16 +36886,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:36491: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:36889: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:36494: \$? = $ac_status" >&5 + echo "$as_me:36892: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:36497: \"$ac_try\"") >&5 + { (eval echo "$as_me:36895: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:36500: \$? = $ac_status" >&5 + echo "$as_me:36898: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -36514,7 +36912,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}:36517: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:36915: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -36553,7 +36951,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}:36556: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:36954: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -36569,7 +36967,7 @@ fi fi fi -echo "$as_me:36572: checking if experimental wcwidth/UTF-8 logic should be used" >&5 +echo "$as_me:36970: checking if experimental wcwidth/UTF-8 logic should be used" >&5 echo $ECHO_N "checking if experimental wcwidth/UTF-8 logic should be used... $ECHO_C" >&6 # Check whether --enable-wcwidth-support or --disable-wcwidth-support was given. @@ -36586,7 +36984,7 @@ else use_wcwidth=no fi; -echo "$as_me:36589: result: $use_wcwidth" >&5 +echo "$as_me:36987: result: $use_wcwidth" >&5 echo "${ECHO_T}$use_wcwidth" >&6 test $use_wcwidth != no && cat >>confdefs.h <<\EOF @@ -36601,7 +36999,7 @@ case $cf_cv_screen in esac if test "$use_dft_colors" != no ; then -echo "$as_me:36604: checking if you want to use default-colors" >&5 +echo "$as_me:37002: 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. @@ -36618,7 +37016,7 @@ else use_dft_colors=no fi; -echo "$as_me:36621: result: $use_dft_colors" >&5 +echo "$as_me:37019: result: $use_dft_colors" >&5 echo "${ECHO_T}$use_dft_colors" >&6 test $use_dft_colors = "yes" && cat >>confdefs.h <<\EOF @@ -36627,7 +37025,7 @@ EOF fi -echo "$as_me:36630: checking if experimental keyboard-layout logic should be used" >&5 +echo "$as_me:37028: 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. @@ -36644,14 +37042,14 @@ else use_kbd_layout=no fi; -echo "$as_me:36647: result: $use_kbd_layout" >&5 +echo "$as_me:37045: 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:36654: checking if experimental nested-table logic should be used" >&5 +echo "$as_me:37052: 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. @@ -36668,14 +37066,14 @@ else use_nested_tables=no fi; -echo "$as_me:36671: result: $use_nested_tables" >&5 +echo "$as_me:37069: 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:36678: checking if alternative line-edit bindings should be used" >&5 +echo "$as_me:37076: 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. @@ -36692,14 +37090,14 @@ else use_alt_bindings=yes fi; -echo "$as_me:36695: result: $use_alt_bindings" >&5 +echo "$as_me:37093: 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:36702: checking if ascii case-conversion should be used" >&5 +echo "$as_me:37100: 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. @@ -36716,14 +37114,14 @@ else use_ascii_ctypes=yes fi; -echo "$as_me:36719: result: $use_ascii_ctypes" >&5 +echo "$as_me:37117: 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:36726: checking if you want to use extended HTML DTD logic" >&5 +echo "$as_me:37124: 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. @@ -36740,14 +37138,14 @@ else use_ext_htmldtd=yes fi; -echo "$as_me:36743: result: $use_ext_htmldtd" >&5 +echo "$as_me:37141: 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:36750: checking if file-upload logic should be used" >&5 +echo "$as_me:37148: 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. @@ -36764,14 +37162,14 @@ else use_file_upload=yes fi; -echo "$as_me:36767: result: $use_file_upload" >&5 +echo "$as_me:37165: 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:36774: checking if IDNA support should be used" >&5 +echo "$as_me:37172: 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. @@ -36788,7 +37186,7 @@ else use_idna=yes fi; -echo "$as_me:36791: result: $use_idna" >&5 +echo "$as_me:37189: result: $use_idna" >&5 echo "${ECHO_T}$use_idna" >&6 if test "$use_idna" = yes ; then @@ -36830,7 +37228,7 @@ if test -n "$cf_searchpath/include" ; then CPPFLAGS="${CPPFLAGS}-I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 36833 "configure" +#line 37231 "configure" #include "confdefs.h" #include <stdio.h> int @@ -36842,16 +37240,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:36845: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:37243: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:36848: \$? = $ac_status" >&5 + echo "$as_me:37246: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:36851: \"$ac_try\"") >&5 + { (eval echo "$as_me:37249: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:36854: \$? = $ac_status" >&5 + echo "$as_me:37252: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -36868,7 +37266,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}:36871: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:37269: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -36914,7 +37312,7 @@ if test -n "$cf_searchpath/../include" ; then CPPFLAGS="${CPPFLAGS}-I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 36917 "configure" +#line 37315 "configure" #include "confdefs.h" #include <stdio.h> int @@ -36926,16 +37324,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:36929: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:37327: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:36932: \$? = $ac_status" >&5 + echo "$as_me:37330: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:36935: \"$ac_try\"") >&5 + { (eval echo "$as_me:37333: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:36938: \$? = $ac_status" >&5 + echo "$as_me:37336: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -36952,7 +37350,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}:36955: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:37353: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -36970,7 +37368,7 @@ echo "${as_me:-configure}:36955: testing adding $cf_add_incdir to include-path . fi else -{ { echo "$as_me:36973: error: cannot find under $use_idna" >&5 +{ { echo "$as_me:37371: error: cannot find under $use_idna" >&5 echo "$as_me: error: cannot find under $use_idna" >&2;} { (exit 1); exit 1; }; } fi @@ -36995,7 +37393,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}:36998: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:37396: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -37024,7 +37422,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}:37027: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:37425: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -37033,7 +37431,7 @@ echo "${as_me:-configure}:37027: testing adding $cf_add_libdir to library-path . fi else -{ { echo "$as_me:37036: error: cannot find under $use_idna" >&5 +{ { echo "$as_me:37434: error: cannot find under $use_idna" >&5 echo "$as_me: error: cannot find under $use_idna" >&2;} { (exit 1); exit 1; }; } fi @@ -37047,12 +37445,12 @@ esac cf_cv_header_path_idn= cf_cv_library_path_idn= -echo "${as_me:-configure}:37050: testing Starting FIND_LINKAGE(idn,) ..." 1>&5 +echo "${as_me:-configure}:37448: testing Starting FIND_LINKAGE(idn,) ..." 1>&5 cf_save_LIBS="$LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 37055 "configure" +#line 37453 "configure" #include "confdefs.h" #include <stdio.h> @@ -37070,16 +37468,16 @@ main (void) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:37073: \"$ac_link\"") >&5 +if { (eval echo "$as_me:37471: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:37076: \$? = $ac_status" >&5 + echo "$as_me:37474: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:37079: \"$ac_try\"") >&5 + { (eval echo "$as_me:37477: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:37082: \$? = $ac_status" >&5 + echo "$as_me:37480: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_find_linkage_idn=yes @@ -37093,7 +37491,7 @@ cat conftest.$ac_ext >&5 LIBS="-lidn $LIBICONV $cf_save_LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 37096 "configure" +#line 37494 "configure" #include "confdefs.h" #include <stdio.h> @@ -37111,16 +37509,16 @@ main (void) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:37114: \"$ac_link\"") >&5 +if { (eval echo "$as_me:37512: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:37117: \$? = $ac_status" >&5 + echo "$as_me:37515: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:37120: \"$ac_try\"") >&5 + { (eval echo "$as_me:37518: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:37123: \$? = $ac_status" >&5 + echo "$as_me:37521: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_find_linkage_idn=yes @@ -37137,9 +37535,9 @@ cat conftest.$ac_ext >&5 test -n "$verbose" && echo " find linkage for idn library" 1>&6 -echo "${as_me:-configure}:37140: testing find linkage for idn library ..." 1>&5 +echo "${as_me:-configure}:37538: testing find linkage for idn library ..." 1>&5 -echo "${as_me:-configure}:37142: testing Searching for headers in FIND_LINKAGE(idn,) ..." 1>&5 +echo "${as_me:-configure}:37540: testing Searching for headers in FIND_LINKAGE(idn,) ..." 1>&5 cf_save_CPPFLAGS="$CPPFLAGS" cf_test_CPPFLAGS="$CPPFLAGS" @@ -37230,7 +37628,7 @@ cf_search="$cf_search $cf_header_path_list" if test -d $cf_cv_header_path_idn ; then test -n "$verbose" && echo " ... testing $cf_cv_header_path_idn" 1>&6 -echo "${as_me:-configure}:37233: testing ... testing $cf_cv_header_path_idn ..." 1>&5 +echo "${as_me:-configure}:37631: testing ... testing $cf_cv_header_path_idn ..." 1>&5 CPPFLAGS="$cf_save_CPPFLAGS" @@ -37238,7 +37636,7 @@ echo "${as_me:-configure}:37233: testing ... testing $cf_cv_header_path_idn ..." CPPFLAGS="${CPPFLAGS}-I$cf_cv_header_path_idn" cat >conftest.$ac_ext <<_ACEOF -#line 37241 "configure" +#line 37639 "configure" #include "confdefs.h" #include <stdio.h> @@ -37256,21 +37654,21 @@ main (void) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:37259: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:37657: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:37262: \$? = $ac_status" >&5 + echo "$as_me:37660: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:37265: \"$ac_try\"") >&5 + { (eval echo "$as_me:37663: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:37268: \$? = $ac_status" >&5 + echo "$as_me:37666: \$? = $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}:37273: testing ... found idn headers in $cf_cv_header_path_idn ..." 1>&5 +echo "${as_me:-configure}:37671: testing ... found idn headers in $cf_cv_header_path_idn ..." 1>&5 cf_cv_find_linkage_idn=maybe cf_test_CPPFLAGS="$CPPFLAGS" @@ -37288,7 +37686,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "$cf_cv_find_linkage_idn" = maybe ; then -echo "${as_me:-configure}:37291: testing Searching for idn library in FIND_LINKAGE(idn,) ..." 1>&5 +echo "${as_me:-configure}:37689: testing Searching for idn library in FIND_LINKAGE(idn,) ..." 1>&5 cf_save_LIBS="$LIBS" cf_save_LDFLAGS="$LDFLAGS" @@ -37363,13 +37761,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}:37366: testing ... testing $cf_cv_library_path_idn ..." 1>&5 +echo "${as_me:-configure}:37764: 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 37372 "configure" +#line 37770 "configure" #include "confdefs.h" #include <stdio.h> @@ -37387,21 +37785,21 @@ main (void) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:37390: \"$ac_link\"") >&5 +if { (eval echo "$as_me:37788: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:37393: \$? = $ac_status" >&5 + echo "$as_me:37791: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:37396: \"$ac_try\"") >&5 + { (eval echo "$as_me:37794: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:37399: \$? = $ac_status" >&5 + echo "$as_me:37797: \$? = $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}:37404: testing ... found idn library in $cf_cv_library_path_idn ..." 1>&5 +echo "${as_me:-configure}:37802: testing ... found idn library in $cf_cv_library_path_idn ..." 1>&5 cf_cv_find_linkage_idn=yes cf_cv_library_file_idn="-lidn" @@ -37463,7 +37861,7 @@ if test -n "$cf_cv_header_path_idn" ; then CPPFLAGS="${CPPFLAGS}-I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 37466 "configure" +#line 37864 "configure" #include "confdefs.h" #include <stdio.h> int @@ -37475,16 +37873,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:37478: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:37876: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:37481: \$? = $ac_status" >&5 + echo "$as_me:37879: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:37484: \"$ac_try\"") >&5 + { (eval echo "$as_me:37882: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:37487: \$? = $ac_status" >&5 + echo "$as_me:37885: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -37501,7 +37899,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}:37504: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:37902: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -37537,7 +37935,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}:37540: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:37938: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -37562,7 +37960,7 @@ done LIBS="$cf_add_libs" else -{ echo "$as_me:37565: WARNING: Cannot find idn library" >&5 +{ echo "$as_me:37963: WARNING: Cannot find idn library" >&5 echo "$as_me: WARNING: Cannot find idn library" >&2;} fi @@ -37576,7 +37974,7 @@ fi fi -echo "$as_me:37579: checking if element-justification logic should be used" >&5 +echo "$as_me:37977: 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. @@ -37593,14 +37991,14 @@ else use_justify_elts=yes fi; -echo "$as_me:37596: result: $use_justify_elts" >&5 +echo "$as_me:37994: 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:37603: checking if partial-display should be used" >&5 +echo "$as_me:38001: 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. @@ -37617,14 +38015,14 @@ else use_partial_display=yes fi; -echo "$as_me:37620: result: $use_partial_display" >&5 +echo "$as_me:38018: 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:37627: checking if persistent-cookie logic should be used" >&5 +echo "$as_me:38025: 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. @@ -37641,14 +38039,14 @@ else use_filed_cookies=yes fi; -echo "$as_me:37644: result: $use_filed_cookies" >&5 +echo "$as_me:38042: 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:37651: checking if html source should be colorized" >&5 +echo "$as_me:38049: 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. @@ -37665,14 +38063,14 @@ else use_prettysrc=yes fi; -echo "$as_me:37668: result: $use_prettysrc" >&5 +echo "$as_me:38066: 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:37675: checking if progress-bar code should be used" >&5 +echo "$as_me:38073: 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. @@ -37689,14 +38087,14 @@ else use_progressbar=yes fi; -echo "$as_me:37692: result: $use_progressbar" >&5 +echo "$as_me:38090: 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:37699: checking if read-progress message should show ETA" >&5 +echo "$as_me:38097: 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. @@ -37713,14 +38111,14 @@ else use_read_eta=yes fi; -echo "$as_me:37716: result: $use_read_eta" >&5 +echo "$as_me:38114: 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:37723: checking if source caching should be used" >&5 +echo "$as_me:38121: 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. @@ -37737,14 +38135,14 @@ else use_source_cache=yes fi; -echo "$as_me:37740: result: $use_source_cache" >&5 +echo "$as_me:38138: 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:37747: checking if scrollbar code should be used" >&5 +echo "$as_me:38145: 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. @@ -37761,10 +38159,10 @@ else use_scrollbar=yes fi; -echo "$as_me:37764: result: $use_scrollbar" >&5 +echo "$as_me:38162: result: $use_scrollbar" >&5 echo "${ECHO_T}$use_scrollbar" >&6 -echo "$as_me:37767: checking if charset-selection logic should be used" >&5 +echo "$as_me:38165: 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. @@ -37781,14 +38179,14 @@ else use_charset_choice=no fi; -echo "$as_me:37784: result: $use_charset_choice" >&5 +echo "$as_me:38182: 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:37791: checking if you want to use external commands" >&5 +echo "$as_me:38189: 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. @@ -37805,7 +38203,7 @@ else use_externs=no fi; -echo "$as_me:37808: result: $use_externs" >&5 +echo "$as_me:38206: result: $use_externs" >&5 echo "${ECHO_T}$use_externs" >&6 if test $use_externs != "no" ; then @@ -37816,7 +38214,7 @@ EOF EXTRA_OBJS="$EXTRA_OBJS LYExtern\$o" fi -echo "$as_me:37819: checking if you want to use setfont support" >&5 +echo "$as_me:38217: 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. @@ -37833,7 +38231,7 @@ else use_setfont=no fi; -echo "$as_me:37836: result: $use_setfont" >&5 +echo "$as_me:38234: result: $use_setfont" >&5 echo "${ECHO_T}$use_setfont" >&6 if test $use_setfont = yes ; then case $host_os in @@ -37844,7 +38242,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:37847: checking for $ac_word" >&5 +echo "$as_me:38245: 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 @@ -37861,7 +38259,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:37864: found $ac_dir/$ac_word" >&5 + echo "$as_me:38262: found $ac_dir/$ac_word" >&5 break fi done @@ -37872,10 +38270,10 @@ fi SETFONT=$ac_cv_path_SETFONT if test -n "$SETFONT"; then - echo "$as_me:37875: result: $SETFONT" >&5 + echo "$as_me:38273: result: $SETFONT" >&5 echo "${ECHO_T}$SETFONT" >&6 else - echo "$as_me:37878: result: no" >&5 + echo "$as_me:38276: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -37934,7 +38332,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me:-configure}:37937: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me:-configure}:38335: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define SETFONT_PATH "$cf_path_prog" @@ -37952,19 +38350,19 @@ fi SETFONT=built-in test -n "$verbose" && echo " Assume $host_os has font-switching" 1>&6 -echo "${as_me:-configure}:37955: testing Assume $host_os has font-switching ..." 1>&5 +echo "${as_me:-configure}:38353: 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}:37962: testing Assume $host_os has no font-switching ..." 1>&5 +echo "${as_me:-configure}:38360: testing Assume $host_os has no font-switching ..." 1>&5 ;; esac if test -z "$SETFONT" ; then - { echo "$as_me:37967: WARNING: Cannot find a font-setting program" >&5 + { echo "$as_me:38365: WARNING: Cannot find a font-setting program" >&5 echo "$as_me: WARNING: Cannot find a font-setting program" >&2;} elif test "$SETFONT" != unknown ; then @@ -37975,7 +38373,7 @@ EOF fi fi -echo "$as_me:37978: checking if you want cgi-link support" >&5 +echo "$as_me:38376: 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. @@ -37992,10 +38390,10 @@ EOF else enableval=no fi; -echo "$as_me:37995: result: $enableval" >&5 +echo "$as_me:38393: result: $enableval" >&5 echo "${ECHO_T}$enableval" >&6 -echo "$as_me:37998: checking if you want change-exec support" >&5 +echo "$as_me:38396: 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. @@ -38012,14 +38410,14 @@ else use_change_exec=no fi; -echo "$as_me:38015: result: $use_change_exec" >&5 +echo "$as_me:38413: 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:38022: checking if you want exec-links support" >&5 +echo "$as_me:38420: 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. @@ -38036,14 +38434,14 @@ else use_exec_links=$enableval fi; -echo "$as_me:38039: result: $use_exec_links" >&5 +echo "$as_me:38437: 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:38046: checking if you want exec-scripts support" >&5 +echo "$as_me:38444: 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. @@ -38060,14 +38458,14 @@ else use_exec_scripts=$enableval fi; -echo "$as_me:38063: result: $use_exec_scripts" >&5 +echo "$as_me:38461: 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:38070: checking if you want internal-links feature" >&5 +echo "$as_me:38468: 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. @@ -38084,14 +38482,14 @@ else use_internal_links=no fi; -echo "$as_me:38087: result: $use_internal_links" >&5 +echo "$as_me:38485: 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:38094: checking if you want to fork NSL requests" >&5 +echo "$as_me:38492: 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. @@ -38108,7 +38506,7 @@ else use_nsl_fork=no fi; -echo "$as_me:38111: result: $use_nsl_fork" >&5 +echo "$as_me:38509: result: $use_nsl_fork" >&5 echo "${ECHO_T}$use_nsl_fork" >&6 if test $use_nsl_fork = yes ; then case $host_os in @@ -38129,7 +38527,7 @@ EOF esac fi -echo "$as_me:38132: checking if you want to log URL requests via syslog" >&5 +echo "$as_me:38530: 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. @@ -38146,14 +38544,14 @@ else use_syslog=no fi; -echo "$as_me:38149: result: $use_syslog" >&5 +echo "$as_me:38547: 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:38156: checking if you want to underline links" >&5 +echo "$as_me:38554: 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. @@ -38170,7 +38568,7 @@ else use_underline=no fi; -echo "$as_me:38173: result: $use_underline" >&5 +echo "$as_me:38571: result: $use_underline" >&5 echo "${ECHO_T}$use_underline" >&6 test $use_underline = yes && cat >>confdefs.h <<\EOF @@ -38182,7 +38580,7 @@ cat >>confdefs.h <<\EOF #define UNDERLINE_LINKS 0 EOF -echo "$as_me:38185: checking if help files should be gzip'ed" >&5 +echo "$as_me:38583: 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. @@ -38199,10 +38597,10 @@ else use_gzip_help=no fi; -echo "$as_me:38202: result: $use_gzip_help" >&5 +echo "$as_me:38600: result: $use_gzip_help" >&5 echo "${ECHO_T}$use_gzip_help" >&6 -echo "$as_me:38205: checking if you want to use libbz2 for decompression of some bzip2 files" >&5 +echo "$as_me:38603: 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. @@ -38212,7 +38610,7 @@ if test "${with_bzlib+set}" = set; then else use_bzlib=no fi; -echo "$as_me:38215: result: $use_bzlib" >&5 +echo "$as_me:38613: result: $use_bzlib" >&5 echo "${ECHO_T}$use_bzlib" >&6 if test ".$use_bzlib" != ".no" ; then @@ -38254,7 +38652,7 @@ if test -n "$cf_searchpath/include" ; then CPPFLAGS="${CPPFLAGS}-I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 38257 "configure" +#line 38655 "configure" #include "confdefs.h" #include <stdio.h> int @@ -38266,16 +38664,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:38269: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:38667: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:38272: \$? = $ac_status" >&5 + echo "$as_me:38670: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:38275: \"$ac_try\"") >&5 + { (eval echo "$as_me:38673: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:38278: \$? = $ac_status" >&5 + echo "$as_me:38676: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -38292,7 +38690,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}:38295: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:38693: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -38338,7 +38736,7 @@ if test -n "$cf_searchpath/../include" ; then CPPFLAGS="${CPPFLAGS}-I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 38341 "configure" +#line 38739 "configure" #include "confdefs.h" #include <stdio.h> int @@ -38350,16 +38748,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:38353: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:38751: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:38356: \$? = $ac_status" >&5 + echo "$as_me:38754: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:38359: \"$ac_try\"") >&5 + { (eval echo "$as_me:38757: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:38362: \$? = $ac_status" >&5 + echo "$as_me:38760: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -38376,7 +38774,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}:38379: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:38777: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -38394,7 +38792,7 @@ echo "${as_me:-configure}:38379: testing adding $cf_add_incdir to include-path . fi else -{ { echo "$as_me:38397: error: cannot find under $use_bzlib" >&5 +{ { echo "$as_me:38795: error: cannot find under $use_bzlib" >&5 echo "$as_me: error: cannot find under $use_bzlib" >&2;} { (exit 1); exit 1; }; } fi @@ -38419,7 +38817,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}:38422: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:38820: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -38448,7 +38846,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}:38451: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:38849: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -38457,7 +38855,7 @@ echo "${as_me:-configure}:38451: testing adding $cf_add_libdir to library-path . fi else -{ { echo "$as_me:38460: error: cannot find under $use_bzlib" >&5 +{ { echo "$as_me:38858: error: cannot find under $use_bzlib" >&5 echo "$as_me: error: cannot find under $use_bzlib" >&2;} { (exit 1); exit 1; }; } fi @@ -38471,12 +38869,12 @@ esac cf_cv_header_path_bz2= cf_cv_library_path_bz2= -echo "${as_me:-configure}:38474: testing Starting FIND_LINKAGE(bz2,bzlib) ..." 1>&5 +echo "${as_me:-configure}:38872: testing Starting FIND_LINKAGE(bz2,bzlib) ..." 1>&5 cf_save_LIBS="$LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 38479 "configure" +#line 38877 "configure" #include "confdefs.h" #include <stdio.h> @@ -38493,16 +38891,16 @@ main (void) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:38496: \"$ac_link\"") >&5 +if { (eval echo "$as_me:38894: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:38499: \$? = $ac_status" >&5 + echo "$as_me:38897: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:38502: \"$ac_try\"") >&5 + { (eval echo "$as_me:38900: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:38505: \$? = $ac_status" >&5 + echo "$as_me:38903: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_find_linkage_bz2=yes @@ -38516,7 +38914,7 @@ cat conftest.$ac_ext >&5 LIBS="-lbz2 $cf_save_LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 38519 "configure" +#line 38917 "configure" #include "confdefs.h" #include <stdio.h> @@ -38533,16 +38931,16 @@ main (void) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:38536: \"$ac_link\"") >&5 +if { (eval echo "$as_me:38934: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:38539: \$? = $ac_status" >&5 + echo "$as_me:38937: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:38542: \"$ac_try\"") >&5 + { (eval echo "$as_me:38940: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:38545: \$? = $ac_status" >&5 + echo "$as_me:38943: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_find_linkage_bz2=yes @@ -38559,9 +38957,9 @@ cat conftest.$ac_ext >&5 test -n "$verbose" && echo " find linkage for bz2 library" 1>&6 -echo "${as_me:-configure}:38562: testing find linkage for bz2 library ..." 1>&5 +echo "${as_me:-configure}:38960: testing find linkage for bz2 library ..." 1>&5 -echo "${as_me:-configure}:38564: testing Searching for headers in FIND_LINKAGE(bz2,bzlib) ..." 1>&5 +echo "${as_me:-configure}:38962: testing Searching for headers in FIND_LINKAGE(bz2,bzlib) ..." 1>&5 cf_save_CPPFLAGS="$CPPFLAGS" cf_test_CPPFLAGS="$CPPFLAGS" @@ -38652,7 +39050,7 @@ cf_search="$cf_search $cf_header_path_list" if test -d $cf_cv_header_path_bz2 ; then test -n "$verbose" && echo " ... testing $cf_cv_header_path_bz2" 1>&6 -echo "${as_me:-configure}:38655: testing ... testing $cf_cv_header_path_bz2 ..." 1>&5 +echo "${as_me:-configure}:39053: testing ... testing $cf_cv_header_path_bz2 ..." 1>&5 CPPFLAGS="$cf_save_CPPFLAGS" @@ -38660,7 +39058,7 @@ echo "${as_me:-configure}:38655: testing ... testing $cf_cv_header_path_bz2 ..." CPPFLAGS="${CPPFLAGS}-I$cf_cv_header_path_bz2" cat >conftest.$ac_ext <<_ACEOF -#line 38663 "configure" +#line 39061 "configure" #include "confdefs.h" #include <stdio.h> @@ -38677,21 +39075,21 @@ main (void) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:38680: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:39078: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:38683: \$? = $ac_status" >&5 + echo "$as_me:39081: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:38686: \"$ac_try\"") >&5 + { (eval echo "$as_me:39084: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:38689: \$? = $ac_status" >&5 + echo "$as_me:39087: \$? = $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}:38694: testing ... found bz2 headers in $cf_cv_header_path_bz2 ..." 1>&5 +echo "${as_me:-configure}:39092: testing ... found bz2 headers in $cf_cv_header_path_bz2 ..." 1>&5 cf_cv_find_linkage_bz2=maybe cf_test_CPPFLAGS="$CPPFLAGS" @@ -38709,7 +39107,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "$cf_cv_find_linkage_bz2" = maybe ; then -echo "${as_me:-configure}:38712: testing Searching for bz2 library in FIND_LINKAGE(bz2,bzlib) ..." 1>&5 +echo "${as_me:-configure}:39110: testing Searching for bz2 library in FIND_LINKAGE(bz2,bzlib) ..." 1>&5 cf_save_LIBS="$LIBS" cf_save_LDFLAGS="$LDFLAGS" @@ -38717,7 +39115,7 @@ echo "${as_me:-configure}:38712: testing Searching for bz2 library in FIND_LINKA CPPFLAGS="$cf_test_CPPFLAGS" LIBS="-lbz2 $cf_save_LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 38720 "configure" +#line 39118 "configure" #include "confdefs.h" #include <stdio.h> @@ -38734,21 +39132,21 @@ main (void) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:38737: \"$ac_link\"") >&5 +if { (eval echo "$as_me:39135: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:38740: \$? = $ac_status" >&5 + echo "$as_me:39138: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:38743: \"$ac_try\"") >&5 + { (eval echo "$as_me:39141: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:38746: \$? = $ac_status" >&5 + echo "$as_me:39144: \$? = $ac_status" >&5 (exit $ac_status); }; }; then test -n "$verbose" && echo " ... found bz2 library in system" 1>&6 -echo "${as_me:-configure}:38751: testing ... found bz2 library in system ..." 1>&5 +echo "${as_me:-configure}:39149: testing ... found bz2 library in system ..." 1>&5 cf_cv_find_linkage_bz2=yes else @@ -38829,13 +39227,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}:38832: testing ... testing $cf_cv_library_path_bz2 ..." 1>&5 +echo "${as_me:-configure}:39230: 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 38838 "configure" +#line 39236 "configure" #include "confdefs.h" #include <stdio.h> @@ -38852,21 +39250,21 @@ main (void) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:38855: \"$ac_link\"") >&5 +if { (eval echo "$as_me:39253: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:38858: \$? = $ac_status" >&5 + echo "$as_me:39256: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:38861: \"$ac_try\"") >&5 + { (eval echo "$as_me:39259: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:38864: \$? = $ac_status" >&5 + echo "$as_me:39262: \$? = $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}:38869: testing ... found bz2 library in $cf_cv_library_path_bz2 ..." 1>&5 +echo "${as_me:-configure}:39267: testing ... found bz2 library in $cf_cv_library_path_bz2 ..." 1>&5 cf_cv_find_linkage_bz2=yes cf_cv_library_file_bz2="-lbz2" @@ -38928,7 +39326,7 @@ if test -n "$cf_cv_header_path_bz2" ; then CPPFLAGS="${CPPFLAGS}-I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 38931 "configure" +#line 39329 "configure" #include "confdefs.h" #include <stdio.h> int @@ -38940,16 +39338,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:38943: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:39341: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:38946: \$? = $ac_status" >&5 + echo "$as_me:39344: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:38949: \"$ac_try\"") >&5 + { (eval echo "$as_me:39347: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:38952: \$? = $ac_status" >&5 + echo "$as_me:39350: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -38966,7 +39364,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}:38969: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:39367: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -39002,7 +39400,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}:39005: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:39403: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -39027,7 +39425,7 @@ done LIBS="$cf_add_libs" else -{ echo "$as_me:39030: WARNING: Cannot find bz2 library" >&5 +{ echo "$as_me:39428: WARNING: Cannot find bz2 library" >&5 echo "$as_me: WARNING: Cannot find bz2 library" >&2;} fi @@ -39038,7 +39436,7 @@ EOF fi -echo "$as_me:39041: checking if you want to use zlib for decompression of some gzip files" >&5 +echo "$as_me:39439: 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. @@ -39048,7 +39446,7 @@ if test "${with_zlib+set}" = set; then else use_zlib=no fi; -echo "$as_me:39051: result: $use_zlib" >&5 +echo "$as_me:39449: result: $use_zlib" >&5 echo "${ECHO_T}$use_zlib" >&6 if test ".$use_zlib" != ".no" ; then @@ -39090,7 +39488,7 @@ if test -n "$cf_searchpath/include" ; then CPPFLAGS="${CPPFLAGS}-I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 39093 "configure" +#line 39491 "configure" #include "confdefs.h" #include <stdio.h> int @@ -39102,16 +39500,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:39105: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:39503: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:39108: \$? = $ac_status" >&5 + echo "$as_me:39506: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:39111: \"$ac_try\"") >&5 + { (eval echo "$as_me:39509: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:39114: \$? = $ac_status" >&5 + echo "$as_me:39512: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -39128,7 +39526,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}:39131: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:39529: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -39174,7 +39572,7 @@ if test -n "$cf_searchpath/../include" ; then CPPFLAGS="${CPPFLAGS}-I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 39177 "configure" +#line 39575 "configure" #include "confdefs.h" #include <stdio.h> int @@ -39186,16 +39584,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:39189: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:39587: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:39192: \$? = $ac_status" >&5 + echo "$as_me:39590: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:39195: \"$ac_try\"") >&5 + { (eval echo "$as_me:39593: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:39198: \$? = $ac_status" >&5 + echo "$as_me:39596: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -39212,7 +39610,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}:39215: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:39613: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -39230,7 +39628,7 @@ echo "${as_me:-configure}:39215: testing adding $cf_add_incdir to include-path . fi else -{ { echo "$as_me:39233: error: cannot find under $use_zlib" >&5 +{ { echo "$as_me:39631: error: cannot find under $use_zlib" >&5 echo "$as_me: error: cannot find under $use_zlib" >&2;} { (exit 1); exit 1; }; } fi @@ -39255,7 +39653,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}:39258: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:39656: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -39284,7 +39682,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}:39287: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:39685: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -39293,7 +39691,7 @@ echo "${as_me:-configure}:39287: testing adding $cf_add_libdir to library-path . fi else -{ { echo "$as_me:39296: error: cannot find under $use_zlib" >&5 +{ { echo "$as_me:39694: error: cannot find under $use_zlib" >&5 echo "$as_me: error: cannot find under $use_zlib" >&2;} { (exit 1); exit 1; }; } fi @@ -39307,12 +39705,12 @@ esac cf_cv_header_path_z= cf_cv_library_path_z= -echo "${as_me:-configure}:39310: testing Starting FIND_LINKAGE(z,zlib) ..." 1>&5 +echo "${as_me:-configure}:39708: testing Starting FIND_LINKAGE(z,zlib) ..." 1>&5 cf_save_LIBS="$LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 39315 "configure" +#line 39713 "configure" #include "confdefs.h" #include <zlib.h> @@ -39328,16 +39726,16 @@ main (void) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:39331: \"$ac_link\"") >&5 +if { (eval echo "$as_me:39729: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:39334: \$? = $ac_status" >&5 + echo "$as_me:39732: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:39337: \"$ac_try\"") >&5 + { (eval echo "$as_me:39735: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:39340: \$? = $ac_status" >&5 + echo "$as_me:39738: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_find_linkage_z=yes @@ -39351,7 +39749,7 @@ cat conftest.$ac_ext >&5 LIBS="-lz $cf_save_LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 39354 "configure" +#line 39752 "configure" #include "confdefs.h" #include <zlib.h> @@ -39367,16 +39765,16 @@ main (void) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:39370: \"$ac_link\"") >&5 +if { (eval echo "$as_me:39768: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:39373: \$? = $ac_status" >&5 + echo "$as_me:39771: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:39376: \"$ac_try\"") >&5 + { (eval echo "$as_me:39774: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:39379: \$? = $ac_status" >&5 + echo "$as_me:39777: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_find_linkage_z=yes @@ -39393,9 +39791,9 @@ cat conftest.$ac_ext >&5 test -n "$verbose" && echo " find linkage for z library" 1>&6 -echo "${as_me:-configure}:39396: testing find linkage for z library ..." 1>&5 +echo "${as_me:-configure}:39794: testing find linkage for z library ..." 1>&5 -echo "${as_me:-configure}:39398: testing Searching for headers in FIND_LINKAGE(z,zlib) ..." 1>&5 +echo "${as_me:-configure}:39796: testing Searching for headers in FIND_LINKAGE(z,zlib) ..." 1>&5 cf_save_CPPFLAGS="$CPPFLAGS" cf_test_CPPFLAGS="$CPPFLAGS" @@ -39486,7 +39884,7 @@ cf_search="$cf_search $cf_header_path_list" if test -d $cf_cv_header_path_z ; then test -n "$verbose" && echo " ... testing $cf_cv_header_path_z" 1>&6 -echo "${as_me:-configure}:39489: testing ... testing $cf_cv_header_path_z ..." 1>&5 +echo "${as_me:-configure}:39887: testing ... testing $cf_cv_header_path_z ..." 1>&5 CPPFLAGS="$cf_save_CPPFLAGS" @@ -39494,7 +39892,7 @@ echo "${as_me:-configure}:39489: testing ... testing $cf_cv_header_path_z ..." 1 CPPFLAGS="${CPPFLAGS}-I$cf_cv_header_path_z" cat >conftest.$ac_ext <<_ACEOF -#line 39497 "configure" +#line 39895 "configure" #include "confdefs.h" #include <zlib.h> @@ -39510,21 +39908,21 @@ main (void) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:39513: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:39911: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:39516: \$? = $ac_status" >&5 + echo "$as_me:39914: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:39519: \"$ac_try\"") >&5 + { (eval echo "$as_me:39917: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:39522: \$? = $ac_status" >&5 + echo "$as_me:39920: \$? = $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}:39527: testing ... found z headers in $cf_cv_header_path_z ..." 1>&5 +echo "${as_me:-configure}:39925: testing ... found z headers in $cf_cv_header_path_z ..." 1>&5 cf_cv_find_linkage_z=maybe cf_test_CPPFLAGS="$CPPFLAGS" @@ -39542,7 +39940,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "$cf_cv_find_linkage_z" = maybe ; then -echo "${as_me:-configure}:39545: testing Searching for z library in FIND_LINKAGE(z,zlib) ..." 1>&5 +echo "${as_me:-configure}:39943: testing Searching for z library in FIND_LINKAGE(z,zlib) ..." 1>&5 cf_save_LIBS="$LIBS" cf_save_LDFLAGS="$LDFLAGS" @@ -39550,7 +39948,7 @@ echo "${as_me:-configure}:39545: testing Searching for z library in FIND_LINKAGE CPPFLAGS="$cf_test_CPPFLAGS" LIBS="-lz $cf_save_LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 39553 "configure" +#line 39951 "configure" #include "confdefs.h" #include <zlib.h> @@ -39566,21 +39964,21 @@ main (void) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:39569: \"$ac_link\"") >&5 +if { (eval echo "$as_me:39967: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:39572: \$? = $ac_status" >&5 + echo "$as_me:39970: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:39575: \"$ac_try\"") >&5 + { (eval echo "$as_me:39973: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:39578: \$? = $ac_status" >&5 + echo "$as_me:39976: \$? = $ac_status" >&5 (exit $ac_status); }; }; then test -n "$verbose" && echo " ... found z library in system" 1>&6 -echo "${as_me:-configure}:39583: testing ... found z library in system ..." 1>&5 +echo "${as_me:-configure}:39981: testing ... found z library in system ..." 1>&5 cf_cv_find_linkage_z=yes else @@ -39661,13 +40059,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}:39664: testing ... testing $cf_cv_library_path_z ..." 1>&5 +echo "${as_me:-configure}:40062: 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 39670 "configure" +#line 40068 "configure" #include "confdefs.h" #include <zlib.h> @@ -39683,21 +40081,21 @@ main (void) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:39686: \"$ac_link\"") >&5 +if { (eval echo "$as_me:40084: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:39689: \$? = $ac_status" >&5 + echo "$as_me:40087: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:39692: \"$ac_try\"") >&5 + { (eval echo "$as_me:40090: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:39695: \$? = $ac_status" >&5 + echo "$as_me:40093: \$? = $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}:39700: testing ... found z library in $cf_cv_library_path_z ..." 1>&5 +echo "${as_me:-configure}:40098: testing ... found z library in $cf_cv_library_path_z ..." 1>&5 cf_cv_find_linkage_z=yes cf_cv_library_file_z="-lz" @@ -39759,7 +40157,7 @@ if test -n "$cf_cv_header_path_z" ; then CPPFLAGS="${CPPFLAGS}-I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 39762 "configure" +#line 40160 "configure" #include "confdefs.h" #include <stdio.h> int @@ -39771,16 +40169,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:39774: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:40172: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:39777: \$? = $ac_status" >&5 + echo "$as_me:40175: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:39780: \"$ac_try\"") >&5 + { (eval echo "$as_me:40178: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:39783: \$? = $ac_status" >&5 + echo "$as_me:40181: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -39797,7 +40195,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}:39800: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:40198: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -39833,7 +40231,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}:39836: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:40234: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -39858,7 +40256,7 @@ done LIBS="$cf_add_libs" else -{ echo "$as_me:39861: WARNING: Cannot find z library" >&5 +{ echo "$as_me:40259: WARNING: Cannot find z library" >&5 echo "$as_me: WARNING: Cannot find z library" >&2;} fi @@ -39867,13 +40265,13 @@ for ac_func in \ do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` -echo "$as_me:39870: checking for $ac_func" >&5 +echo "$as_me:40268: 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 39876 "configure" +#line 40274 "configure" #include "confdefs.h" #define $ac_func autoconf_temporary #include <limits.h> /* least-intrusive standard header which defines gcc2 __stub macros */ @@ -39904,16 +40302,16 @@ main (void) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:39907: \"$ac_link\"") >&5 +if { (eval echo "$as_me:40305: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:39910: \$? = $ac_status" >&5 + echo "$as_me:40308: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:39913: \"$ac_try\"") >&5 + { (eval echo "$as_me:40311: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:39916: \$? = $ac_status" >&5 + echo "$as_me:40314: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else @@ -39923,7 +40321,7 @@ eval "$as_ac_var=no" fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:39926: result: `eval echo '${'$as_ac_var'}'`" >&5 +echo "$as_me:40324: 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 @@ -39940,7 +40338,7 @@ EOF fi -echo "$as_me:39943: checking if you want to exclude FINGER code" >&5 +echo "$as_me:40341: 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. @@ -39957,14 +40355,14 @@ else use_finger=no fi; -echo "$as_me:39960: result: $use_finger" >&5 +echo "$as_me:40358: 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:39967: checking if you want to exclude GOPHER code" >&5 +echo "$as_me:40365: 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. @@ -39981,14 +40379,14 @@ else use_gopher=no fi; -echo "$as_me:39984: result: $use_gopher" >&5 +echo "$as_me:40382: 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:39991: checking if you want to exclude NEWS code" >&5 +echo "$as_me:40389: 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. @@ -40005,14 +40403,14 @@ else use_news=no fi; -echo "$as_me:40008: result: $use_news" >&5 +echo "$as_me:40406: 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:40015: checking if you want to exclude FTP code" >&5 +echo "$as_me:40413: 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. @@ -40029,14 +40427,14 @@ else use_ftp=no fi; -echo "$as_me:40032: result: $use_ftp" >&5 +echo "$as_me:40430: 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:40039: checking if you want to include WAIS code" >&5 +echo "$as_me:40437: 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. @@ -40053,13 +40451,13 @@ else use_wais=no fi; -echo "$as_me:40056: result: $use_wais" >&5 +echo "$as_me:40454: result: $use_wais" >&5 echo "${ECHO_T}$use_wais" >&6 MAKE_WAIS="#" if test $use_wais != "no" then - echo "$as_me:40062: checking for fs_free in -lwais" >&5 + echo "$as_me:40460: 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 @@ -40067,7 +40465,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lwais $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 40070 "configure" +#line 40468 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -40086,16 +40484,16 @@ fs_free (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:40089: \"$ac_link\"") >&5 +if { (eval echo "$as_me:40487: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:40092: \$? = $ac_status" >&5 + echo "$as_me:40490: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:40095: \"$ac_try\"") >&5 + { (eval echo "$as_me:40493: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:40098: \$? = $ac_status" >&5 + echo "$as_me:40496: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_wais_fs_free=yes else @@ -40106,18 +40504,18 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:40109: result: $ac_cv_lib_wais_fs_free" >&5 +echo "$as_me:40507: 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:40113: checking if -lm needed for math functions" >&5 +echo "$as_me:40511: 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 40120 "configure" +#line 40518 "configure" #include "confdefs.h" #include <stdio.h> @@ -40133,16 +40531,16 @@ double x = rand(); printf("result = %g\n", sin(x)) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:40136: \"$ac_link\"") >&5 +if { (eval echo "$as_me:40534: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:40139: \$? = $ac_status" >&5 + echo "$as_me:40537: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:40142: \"$ac_try\"") >&5 + { (eval echo "$as_me:40540: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:40145: \$? = $ac_status" >&5 + echo "$as_me:40543: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_need_libm=no else @@ -40152,7 +40550,7 @@ cf_cv_need_libm=yes fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:40155: result: $cf_cv_need_libm" >&5 +echo "$as_me:40553: result: $cf_cv_need_libm" >&5 echo "${ECHO_T}$cf_cv_need_libm" >&6 if test "$cf_cv_need_libm" = yes then @@ -40194,23 +40592,23 @@ LIBS="$cf_add_libs" for ac_header in wais.h do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` -echo "$as_me:40197: checking for $ac_header" >&5 +echo "$as_me:40595: 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 40203 "configure" +#line 40601 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:40207: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:40605: \"$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:40213: \$? = $ac_status" >&5 + echo "$as_me:40611: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -40229,7 +40627,7 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:40232: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:40630: 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 @@ -40242,7 +40640,7 @@ done MAKE_WAIS= else - { echo "$as_me:40245: WARNING: could not find WAIS library" >&5 + { echo "$as_me:40643: WARNING: could not find WAIS library" >&5 echo "$as_me: WARNING: could not find WAIS library" >&2;} fi @@ -40250,7 +40648,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:40253: checking if directory-editor code should be used" >&5 +echo "$as_me:40651: 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. @@ -40267,7 +40665,7 @@ else use_dired=yes fi; -echo "$as_me:40270: result: $use_dired" >&5 +echo "$as_me:40668: result: $use_dired" >&5 echo "${ECHO_T}$use_dired" >&6 if test ".$use_dired" != ".no" ; then @@ -40277,7 +40675,7 @@ cat >>confdefs.h <<\EOF #define DIRED_SUPPORT 1 EOF - echo "$as_me:40280: checking if you wish to allow extracting from archives via DirEd" >&5 + echo "$as_me:40678: 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. @@ -40294,10 +40692,10 @@ EOF else enableval=yes fi; - echo "$as_me:40297: result: $enableval" >&5 + echo "$as_me:40695: result: $enableval" >&5 echo "${ECHO_T}$enableval" >&6 - echo "$as_me:40300: checking if DirEd mode should override keys" >&5 + echo "$as_me:40698: 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. @@ -40321,10 +40719,10 @@ cat >>confdefs.h <<\EOF EOF fi; - echo "$as_me:40324: result: $enableval" >&5 + echo "$as_me:40722: result: $enableval" >&5 echo "${ECHO_T}$enableval" >&6 - echo "$as_me:40327: checking if you wish to allow permissions commands via DirEd" >&5 + echo "$as_me:40725: 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. @@ -40348,10 +40746,10 @@ cat >>confdefs.h <<\EOF EOF fi; - echo "$as_me:40351: result: $enableval" >&5 + echo "$as_me:40749: result: $enableval" >&5 echo "${ECHO_T}$enableval" >&6 - echo "$as_me:40354: checking if you wish to allow executable-permission commands via DirEd" >&5 + echo "$as_me:40752: 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. @@ -40368,10 +40766,10 @@ EOF else enableval=yes fi; - echo "$as_me:40371: result: $enableval" >&5 + echo "$as_me:40769: result: $enableval" >&5 echo "${ECHO_T}$enableval" >&6 - echo "$as_me:40374: checking if you wish to allow \"tar\" commands from DirEd" >&5 + echo "$as_me:40772: 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. @@ -40395,10 +40793,10 @@ cat >>confdefs.h <<\EOF EOF fi; - echo "$as_me:40398: result: $enableval" >&5 + echo "$as_me:40796: result: $enableval" >&5 echo "${ECHO_T}$enableval" >&6 - echo "$as_me:40401: checking if you wish to allow \"uudecode\" commands from DirEd" >&5 + echo "$as_me:40799: 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. @@ -40422,10 +40820,10 @@ cat >>confdefs.h <<\EOF EOF fi; - echo "$as_me:40425: result: $enableval" >&5 + echo "$as_me:40823: result: $enableval" >&5 echo "${ECHO_T}$enableval" >&6 - echo "$as_me:40428: checking if you wish to allow \"zip\" and \"unzip\" commands from DirEd" >&5 + echo "$as_me:40826: 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. @@ -40449,10 +40847,10 @@ cat >>confdefs.h <<\EOF EOF fi; - echo "$as_me:40452: result: $enableval" >&5 + echo "$as_me:40850: result: $enableval" >&5 echo "${ECHO_T}$enableval" >&6 - echo "$as_me:40455: checking if you wish to allow \"gzip\" and \"gunzip\" commands from DirEd" >&5 + echo "$as_me:40853: 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. @@ -40476,11 +40874,11 @@ cat >>confdefs.h <<\EOF EOF fi; - echo "$as_me:40479: result: $enableval" >&5 + echo "$as_me:40877: result: $enableval" >&5 echo "${ECHO_T}$enableval" >&6 fi -echo "$as_me:40483: checking if you want long-directory listings" >&5 +echo "$as_me:40881: 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. @@ -40504,10 +40902,10 @@ cat >>confdefs.h <<\EOF EOF fi; -echo "$as_me:40507: result: $enableval" >&5 +echo "$as_me:40905: result: $enableval" >&5 echo "${ECHO_T}$enableval" >&6 -echo "$as_me:40510: checking if parent-directory references are permitted" >&5 +echo "$as_me:40908: 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. @@ -40524,7 +40922,7 @@ EOF else enableval=yes fi; -echo "$as_me:40527: result: $enableval" >&5 +echo "$as_me:40925: result: $enableval" >&5 echo "${ECHO_T}$enableval" >&6 test -z "$TELNET" && TELNET=telnet @@ -40532,7 +40930,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:40535: checking for $ac_word" >&5 +echo "$as_me:40933: 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 @@ -40549,7 +40947,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:40552: found $ac_dir/$ac_word" >&5 + echo "$as_me:40950: found $ac_dir/$ac_word" >&5 break fi done @@ -40560,10 +40958,10 @@ fi TELNET=$ac_cv_path_TELNET if test -n "$TELNET"; then - echo "$as_me:40563: result: $TELNET" >&5 + echo "$as_me:40961: result: $TELNET" >&5 echo "${ECHO_T}$TELNET" >&6 else - echo "$as_me:40566: result: no" >&5 + echo "$as_me:40964: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -40622,7 +41020,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me:-configure}:40625: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me:-configure}:41023: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define TELNET_PATH "$cf_path_prog" @@ -40640,7 +41038,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:40643: checking for $ac_word" >&5 +echo "$as_me:41041: 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 @@ -40657,7 +41055,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:40660: found $ac_dir/$ac_word" >&5 + echo "$as_me:41058: found $ac_dir/$ac_word" >&5 break fi done @@ -40668,10 +41066,10 @@ fi TN3270=$ac_cv_path_TN3270 if test -n "$TN3270"; then - echo "$as_me:40671: result: $TN3270" >&5 + echo "$as_me:41069: result: $TN3270" >&5 echo "${ECHO_T}$TN3270" >&6 else - echo "$as_me:40674: result: no" >&5 + echo "$as_me:41072: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -40730,7 +41128,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me:-configure}:40733: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me:-configure}:41131: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define TN3270_PATH "$cf_path_prog" @@ -40748,7 +41146,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:40751: checking for $ac_word" >&5 +echo "$as_me:41149: 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 @@ -40765,7 +41163,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:40768: found $ac_dir/$ac_word" >&5 + echo "$as_me:41166: found $ac_dir/$ac_word" >&5 break fi done @@ -40776,10 +41174,10 @@ fi RLOGIN=$ac_cv_path_RLOGIN if test -n "$RLOGIN"; then - echo "$as_me:40779: result: $RLOGIN" >&5 + echo "$as_me:41177: result: $RLOGIN" >&5 echo "${ECHO_T}$RLOGIN" >&6 else - echo "$as_me:40782: result: no" >&5 + echo "$as_me:41180: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -40838,7 +41236,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me:-configure}:40841: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me:-configure}:41239: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define RLOGIN_PATH "$cf_path_prog" @@ -40856,7 +41254,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:40859: checking for $ac_word" >&5 +echo "$as_me:41257: 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 @@ -40873,7 +41271,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:40876: found $ac_dir/$ac_word" >&5 + echo "$as_me:41274: found $ac_dir/$ac_word" >&5 break fi done @@ -40884,10 +41282,10 @@ fi MV=$ac_cv_path_MV if test -n "$MV"; then - echo "$as_me:40887: result: $MV" >&5 + echo "$as_me:41285: result: $MV" >&5 echo "${ECHO_T}$MV" >&6 else - echo "$as_me:40890: result: no" >&5 + echo "$as_me:41288: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -40946,7 +41344,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me:-configure}:40949: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me:-configure}:41347: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define MV_PATH "$cf_path_prog" @@ -40964,7 +41362,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:40967: checking for $ac_word" >&5 +echo "$as_me:41365: 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 @@ -40981,7 +41379,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:40984: found $ac_dir/$ac_word" >&5 + echo "$as_me:41382: found $ac_dir/$ac_word" >&5 break fi done @@ -40992,10 +41390,10 @@ fi GZIP=$ac_cv_path_GZIP if test -n "$GZIP"; then - echo "$as_me:40995: result: $GZIP" >&5 + echo "$as_me:41393: result: $GZIP" >&5 echo "${ECHO_T}$GZIP" >&6 else - echo "$as_me:40998: result: no" >&5 + echo "$as_me:41396: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -41054,7 +41452,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me:-configure}:41057: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me:-configure}:41455: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define GZIP_PATH "$cf_path_prog" @@ -41072,7 +41470,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:41075: checking for $ac_word" >&5 +echo "$as_me:41473: 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 @@ -41089,7 +41487,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:41092: found $ac_dir/$ac_word" >&5 + echo "$as_me:41490: found $ac_dir/$ac_word" >&5 break fi done @@ -41100,10 +41498,10 @@ fi UNCOMPRESS=$ac_cv_path_UNCOMPRESS if test -n "$UNCOMPRESS"; then - echo "$as_me:41103: result: $UNCOMPRESS" >&5 + echo "$as_me:41501: result: $UNCOMPRESS" >&5 echo "${ECHO_T}$UNCOMPRESS" >&6 else - echo "$as_me:41106: result: no" >&5 + echo "$as_me:41504: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -41162,7 +41560,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me:-configure}:41165: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me:-configure}:41563: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define UNCOMPRESS_PATH "$cf_path_prog" @@ -41180,7 +41578,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:41183: checking for $ac_word" >&5 +echo "$as_me:41581: 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 @@ -41197,7 +41595,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:41200: found $ac_dir/$ac_word" >&5 + echo "$as_me:41598: found $ac_dir/$ac_word" >&5 break fi done @@ -41208,10 +41606,10 @@ fi UNZIP=$ac_cv_path_UNZIP if test -n "$UNZIP"; then - echo "$as_me:41211: result: $UNZIP" >&5 + echo "$as_me:41609: result: $UNZIP" >&5 echo "${ECHO_T}$UNZIP" >&6 else - echo "$as_me:41214: result: no" >&5 + echo "$as_me:41612: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -41270,7 +41668,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me:-configure}:41273: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me:-configure}:41671: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define UNZIP_PATH "$cf_path_prog" @@ -41288,7 +41686,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:41291: checking for $ac_word" >&5 +echo "$as_me:41689: 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 @@ -41305,7 +41703,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:41308: found $ac_dir/$ac_word" >&5 + echo "$as_me:41706: found $ac_dir/$ac_word" >&5 break fi done @@ -41316,10 +41714,10 @@ fi BZIP2=$ac_cv_path_BZIP2 if test -n "$BZIP2"; then - echo "$as_me:41319: result: $BZIP2" >&5 + echo "$as_me:41717: result: $BZIP2" >&5 echo "${ECHO_T}$BZIP2" >&6 else - echo "$as_me:41322: result: no" >&5 + echo "$as_me:41720: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -41378,7 +41776,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me:-configure}:41381: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me:-configure}:41779: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define BZIP2_PATH "$cf_path_prog" @@ -41396,7 +41794,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:41399: checking for $ac_word" >&5 +echo "$as_me:41797: 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 @@ -41413,7 +41811,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:41416: found $ac_dir/$ac_word" >&5 + echo "$as_me:41814: found $ac_dir/$ac_word" >&5 break fi done @@ -41424,10 +41822,10 @@ fi TAR=$ac_cv_path_TAR if test -n "$TAR"; then - echo "$as_me:41427: result: $TAR" >&5 + echo "$as_me:41825: result: $TAR" >&5 echo "${ECHO_T}$TAR" >&6 else - echo "$as_me:41430: result: no" >&5 + echo "$as_me:41828: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -41486,7 +41884,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me:-configure}:41489: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me:-configure}:41887: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define TAR_PATH "$cf_path_prog" @@ -41544,7 +41942,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:41547: checking for $ac_word" >&5 +echo "$as_me:41945: 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 @@ -41561,7 +41959,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:41564: found $ac_dir/$ac_word" >&5 + echo "$as_me:41962: found $ac_dir/$ac_word" >&5 break fi done @@ -41572,10 +41970,10 @@ fi COMPRESS=$ac_cv_path_COMPRESS if test -n "$COMPRESS"; then - echo "$as_me:41575: result: $COMPRESS" >&5 + echo "$as_me:41973: result: $COMPRESS" >&5 echo "${ECHO_T}$COMPRESS" >&6 else - echo "$as_me:41578: result: no" >&5 + echo "$as_me:41976: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -41634,7 +42032,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me:-configure}:41637: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me:-configure}:42035: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define COMPRESS_PATH "$cf_path_prog" @@ -41652,7 +42050,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:41655: checking for $ac_word" >&5 +echo "$as_me:42053: 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 @@ -41669,7 +42067,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:41672: found $ac_dir/$ac_word" >&5 + echo "$as_me:42070: found $ac_dir/$ac_word" >&5 break fi done @@ -41680,10 +42078,10 @@ fi RM=$ac_cv_path_RM if test -n "$RM"; then - echo "$as_me:41683: result: $RM" >&5 + echo "$as_me:42081: result: $RM" >&5 echo "${ECHO_T}$RM" >&6 else - echo "$as_me:41686: result: no" >&5 + echo "$as_me:42084: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -41742,7 +42140,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me:-configure}:41745: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me:-configure}:42143: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define RM_PATH "$cf_path_prog" @@ -41760,7 +42158,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:41763: checking for $ac_word" >&5 +echo "$as_me:42161: 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 @@ -41777,7 +42175,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:41780: found $ac_dir/$ac_word" >&5 + echo "$as_me:42178: found $ac_dir/$ac_word" >&5 break fi done @@ -41788,10 +42186,10 @@ fi UUDECODE=$ac_cv_path_UUDECODE if test -n "$UUDECODE"; then - echo "$as_me:41791: result: $UUDECODE" >&5 + echo "$as_me:42189: result: $UUDECODE" >&5 echo "${ECHO_T}$UUDECODE" >&6 else - echo "$as_me:41794: result: no" >&5 + echo "$as_me:42192: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -41850,7 +42248,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me:-configure}:41853: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me:-configure}:42251: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define UUDECODE_PATH "$cf_path_prog" @@ -41868,7 +42266,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:41871: checking for $ac_word" >&5 +echo "$as_me:42269: 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 @@ -41885,7 +42283,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:41888: found $ac_dir/$ac_word" >&5 + echo "$as_me:42286: found $ac_dir/$ac_word" >&5 break fi done @@ -41896,10 +42294,10 @@ fi ZCAT=$ac_cv_path_ZCAT if test -n "$ZCAT"; then - echo "$as_me:41899: result: $ZCAT" >&5 + echo "$as_me:42297: result: $ZCAT" >&5 echo "${ECHO_T}$ZCAT" >&6 else - echo "$as_me:41902: result: no" >&5 + echo "$as_me:42300: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -41958,7 +42356,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me:-configure}:41961: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me:-configure}:42359: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define ZCAT_PATH "$cf_path_prog" @@ -41976,7 +42374,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:41979: checking for $ac_word" >&5 +echo "$as_me:42377: 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 @@ -41993,7 +42391,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:41996: found $ac_dir/$ac_word" >&5 + echo "$as_me:42394: found $ac_dir/$ac_word" >&5 break fi done @@ -42004,10 +42402,10 @@ fi ZIP=$ac_cv_path_ZIP if test -n "$ZIP"; then - echo "$as_me:42007: result: $ZIP" >&5 + echo "$as_me:42405: result: $ZIP" >&5 echo "${ECHO_T}$ZIP" >&6 else - echo "$as_me:42010: result: no" >&5 + echo "$as_me:42408: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -42066,7 +42464,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me:-configure}:42069: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me:-configure}:42467: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define ZIP_PATH "$cf_path_prog" @@ -42094,7 +42492,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:42097: checking for $ac_word" >&5 +echo "$as_me:42495: 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 @@ -42111,7 +42509,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:42114: found $ac_dir/$ac_word" >&5 + echo "$as_me:42512: found $ac_dir/$ac_word" >&5 break fi done @@ -42122,10 +42520,10 @@ fi INSTALL=$ac_cv_path_INSTALL if test -n "$INSTALL"; then - echo "$as_me:42125: result: $INSTALL" >&5 + echo "$as_me:42523: result: $INSTALL" >&5 echo "${ECHO_T}$INSTALL" >&6 else - echo "$as_me:42128: result: no" >&5 + echo "$as_me:42526: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -42184,7 +42582,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me:-configure}:42187: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me:-configure}:42585: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define INSTALL_PATH "$cf_path_prog" @@ -42214,7 +42612,7 @@ if test $cf_cv_screen = pdcurses ; then case $host_os in (mingw*) -echo "$as_me:42217: checking for initscr in -lpdcurses" >&5 +echo "$as_me:42615: 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 @@ -42222,7 +42620,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lpdcurses $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 42225 "configure" +#line 42623 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -42241,16 +42639,16 @@ initscr (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:42244: \"$ac_link\"") >&5 +if { (eval echo "$as_me:42642: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:42247: \$? = $ac_status" >&5 + echo "$as_me:42645: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:42250: \"$ac_try\"") >&5 + { (eval echo "$as_me:42648: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:42253: \$? = $ac_status" >&5 + echo "$as_me:42651: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_pdcurses_initscr=yes else @@ -42261,7 +42659,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:42264: result: $ac_cv_lib_pdcurses_initscr" >&5 +echo "$as_me:42662: 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 @@ -42283,13 +42681,13 @@ LIBS="$cf_add_libs" cf_cv_term_header=no cf_cv_unctrl_header=no - echo "$as_me:42286: checking for winwstr" >&5 + echo "$as_me:42684: 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 42292 "configure" +#line 42690 "configure" #include "confdefs.h" #define winwstr autoconf_temporary #include <limits.h> /* least-intrusive standard header which defines gcc2 __stub macros */ @@ -42320,16 +42718,16 @@ main (void) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:42323: \"$ac_link\"") >&5 +if { (eval echo "$as_me:42721: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:42326: \$? = $ac_status" >&5 + echo "$as_me:42724: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:42329: \"$ac_try\"") >&5 + { (eval echo "$as_me:42727: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:42332: \$? = $ac_status" >&5 + echo "$as_me:42730: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_winwstr=yes else @@ -42339,7 +42737,7 @@ ac_cv_func_winwstr=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:42342: result: $ac_cv_func_winwstr" >&5 +echo "$as_me:42740: result: $ac_cv_func_winwstr" >&5 echo "${ECHO_T}$ac_cv_func_winwstr" >&6 if test $ac_cv_func_winwstr = yes; then @@ -42349,13 +42747,13 @@ EOF fi - echo "$as_me:42352: checking for pdcurses_dll_iname" >&5 + echo "$as_me:42750: 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 42358 "configure" +#line 42756 "configure" #include "confdefs.h" #define pdcurses_dll_iname autoconf_temporary #include <limits.h> /* least-intrusive standard header which defines gcc2 __stub macros */ @@ -42386,16 +42784,16 @@ main (void) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:42389: \"$ac_link\"") >&5 +if { (eval echo "$as_me:42787: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:42392: \$? = $ac_status" >&5 + echo "$as_me:42790: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:42395: \"$ac_try\"") >&5 + { (eval echo "$as_me:42793: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:42398: \$? = $ac_status" >&5 + echo "$as_me:42796: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_pdcurses_dll_iname=yes else @@ -42405,7 +42803,7 @@ ac_cv_func_pdcurses_dll_iname=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:42408: result: $ac_cv_func_pdcurses_dll_iname" >&5 +echo "$as_me:42806: 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 @@ -42422,7 +42820,7 @@ fi cf_x_athena=${cf_x_athena:-Xaw} -echo "$as_me:42425: checking if you want to link with Xaw 3d library" >&5 +echo "$as_me:42823: 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= @@ -42433,14 +42831,14 @@ if test "${with_Xaw3d+set}" = set; then fi; if test "$withval" = yes ; then cf_x_athena=Xaw3d - echo "$as_me:42436: result: yes" >&5 + echo "$as_me:42834: result: yes" >&5 echo "${ECHO_T}yes" >&6 else - echo "$as_me:42439: result: no" >&5 + echo "$as_me:42837: result: no" >&5 echo "${ECHO_T}no" >&6 fi -echo "$as_me:42443: checking if you want to link with Xaw 3d xft library" >&5 +echo "$as_me:42841: checking if you want to link with Xaw 3d xft library" >&5 echo $ECHO_N "checking if you want to link with Xaw 3d xft library... $ECHO_C" >&6 withval= @@ -42451,14 +42849,14 @@ if test "${with_Xaw3dxft+set}" = set; then fi; if test "$withval" = yes ; then cf_x_athena=Xaw3dxft - echo "$as_me:42454: result: yes" >&5 + echo "$as_me:42852: result: yes" >&5 echo "${ECHO_T}yes" >&6 else - echo "$as_me:42457: result: no" >&5 + echo "$as_me:42855: result: no" >&5 echo "${ECHO_T}no" >&6 fi -echo "$as_me:42461: checking if you want to link with neXT Athena library" >&5 +echo "$as_me:42859: 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= @@ -42469,14 +42867,14 @@ if test "${with_neXtaw+set}" = set; then fi; if test "$withval" = yes ; then cf_x_athena=neXtaw - echo "$as_me:42472: result: yes" >&5 + echo "$as_me:42870: result: yes" >&5 echo "${ECHO_T}yes" >&6 else - echo "$as_me:42475: result: no" >&5 + echo "$as_me:42873: result: no" >&5 echo "${ECHO_T}no" >&6 fi -echo "$as_me:42479: checking if you want to link with Athena-Plus library" >&5 +echo "$as_me:42877: 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= @@ -42487,10 +42885,10 @@ if test "${with_XawPlus+set}" = set; then fi; if test "$withval" = yes ; then cf_x_athena=XawPlus - echo "$as_me:42490: result: yes" >&5 + echo "$as_me:42888: result: yes" >&5 echo "${ECHO_T}yes" >&6 else - echo "$as_me:42493: result: no" >&5 + echo "$as_me:42891: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -42510,17 +42908,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}:42513: testing found package $cf_athena_pkg ..." 1>&5 +echo "${as_me:-configure}:42911: 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}:42519: testing package $cf_athena_pkg CFLAGS: $cf_pkgconfig_incs ..." 1>&5 +echo "${as_me:-configure}:42917: 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}:42523: testing package $cf_athena_pkg LIBS: $cf_pkgconfig_libs ..." 1>&5 +echo "${as_me:-configure}:42921: testing package $cf_athena_pkg LIBS: $cf_pkgconfig_libs ..." 1>&5 cf_fix_cppflags=no cf_new_cflags= @@ -42651,20 +43049,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}:42654: testing ..trimmed $LIBS ..." 1>&5 +echo "${as_me:-configure}:43052: testing ..trimmed $LIBS ..." 1>&5 ;; esac done -echo "$as_me:42660: checking for usable $cf_x_athena/Xmu package" >&5 +echo "$as_me:43058: 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 42667 "configure" +#line 43065 "configure" #include "confdefs.h" #include <X11/Xmu/CharSet.h> @@ -42680,16 +43078,16 @@ int check = XmuCompareISOLatin1("big", "small") } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:42683: \"$ac_link\"") >&5 +if { (eval echo "$as_me:43081: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:42686: \$? = $ac_status" >&5 + echo "$as_me:43084: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:42689: \"$ac_try\"") >&5 + { (eval echo "$as_me:43087: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:42692: \$? = $ac_status" >&5 + echo "$as_me:43090: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_xaw_compat=yes else @@ -42699,7 +43097,7 @@ cf_cv_xaw_compat=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:42702: result: $cf_cv_xaw_compat" >&5 +echo "$as_me:43100: result: $cf_cv_xaw_compat" >&5 echo "${ECHO_T}$cf_cv_xaw_compat" >&6 if test "$cf_cv_xaw_compat" = no @@ -42711,7 +43109,7 @@ echo "${ECHO_T}$cf_cv_xaw_compat" >&6 (*) test -n "$verbose" && echo " work around broken package" 1>&6 -echo "${as_me:-configure}:42714: testing work around broken package ..." 1>&5 +echo "${as_me:-configure}:43112: testing work around broken package ..." 1>&5 cf_save_xmu="$LIBS" cf_first_lib=`echo "$cf_save_xmu" | sed -e 's/^ *//' -e 's/ .*//'` @@ -42719,17 +43117,17 @@ echo "${as_me:-configure}:42714: 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}:42722: testing found package xmu ..." 1>&5 +echo "${as_me:-configure}:43120: 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}:42728: testing package xmu CFLAGS: $cf_pkgconfig_incs ..." 1>&5 +echo "${as_me:-configure}:43126: 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}:42732: testing package xmu LIBS: $cf_pkgconfig_libs ..." 1>&5 +echo "${as_me:-configure}:43130: testing package xmu LIBS: $cf_pkgconfig_libs ..." 1>&5 cf_fix_cppflags=no cf_new_cflags= @@ -42849,12 +43247,12 @@ LIBS="$cf_add_libs" test -n "$verbose" && echo " ...before $LIBS" 1>&6 -echo "${as_me:-configure}:42852: testing ...before $LIBS ..." 1>&5 +echo "${as_me:-configure}:43250: 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}:42857: testing ...after $LIBS ..." 1>&5 +echo "${as_me:-configure}:43255: testing ...after $LIBS ..." 1>&5 else cf_pkgconfig_incs= @@ -42862,12 +43260,12 @@ else test -n "$verbose" && echo " ...before $LIBS" 1>&6 -echo "${as_me:-configure}:42865: testing ...before $LIBS ..." 1>&5 +echo "${as_me:-configure}:43263: 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}:42870: testing ...after $LIBS ..." 1>&5 +echo "${as_me:-configure}:43268: testing ...after $LIBS ..." 1>&5 fi @@ -42878,7 +43276,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}:42881: testing ..trimmed $LIBS ..." 1>&5 +echo "${as_me:-configure}:43279: testing ..trimmed $LIBS ..." 1>&5 ;; esac @@ -42903,17 +43301,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}:42906: testing found package Xext ..." 1>&5 +echo "${as_me:-configure}:43304: 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}:42912: testing package Xext CFLAGS: $cf_pkgconfig_incs ..." 1>&5 +echo "${as_me:-configure}:43310: 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}:42916: testing package Xext LIBS: $cf_pkgconfig_libs ..." 1>&5 +echo "${as_me:-configure}:43314: testing package Xext LIBS: $cf_pkgconfig_libs ..." 1>&5 cf_fix_cppflags=no cf_new_cflags= @@ -43034,7 +43432,7 @@ else cf_pkgconfig_incs= cf_pkgconfig_libs= - echo "$as_me:43037: checking for XextCreateExtension in -lXext" >&5 + echo "$as_me:43435: 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 @@ -43042,7 +43440,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lXext $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 43045 "configure" +#line 43443 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -43061,16 +43459,16 @@ XextCreateExtension (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:43064: \"$ac_link\"") >&5 +if { (eval echo "$as_me:43462: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:43067: \$? = $ac_status" >&5 + echo "$as_me:43465: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:43070: \"$ac_try\"") >&5 + { (eval echo "$as_me:43468: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:43073: \$? = $ac_status" >&5 + echo "$as_me:43471: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_Xext_XextCreateExtension=yes else @@ -43081,7 +43479,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:43084: result: $ac_cv_lib_Xext_XextCreateExtension" >&5 +echo "$as_me:43482: 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 @@ -43117,17 +43515,17 @@ then if test "$PKG_CONFIG" != none && "$PKG_CONFIG" --exists x11; then test -n "$verbose" && echo " found package x11" 1>&6 -echo "${as_me:-configure}:43120: testing found package x11 ..." 1>&5 +echo "${as_me:-configure}:43518: 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}:43126: testing package x11 CFLAGS: $cf_pkgconfig_incs ..." 1>&5 +echo "${as_me:-configure}:43524: 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}:43130: testing package x11 LIBS: $cf_pkgconfig_libs ..." 1>&5 +echo "${as_me:-configure}:43528: testing package x11 LIBS: $cf_pkgconfig_libs ..." 1>&5 cf_fix_cppflags=no cf_new_cflags= @@ -43247,24 +43645,24 @@ LIBS="$cf_add_libs" else cf_pkgconfig_incs= cf_pkgconfig_libs= - { echo "$as_me:43250: WARNING: unable to find X11 library" >&5 + { echo "$as_me:43648: WARNING: unable to find X11 library" >&5 echo "$as_me: WARNING: unable to find X11 library" >&2;} fi if test "$PKG_CONFIG" != none && "$PKG_CONFIG" --exists ice; then test -n "$verbose" && echo " found package ice" 1>&6 -echo "${as_me:-configure}:43257: testing found package ice ..." 1>&5 +echo "${as_me:-configure}:43655: 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}:43263: testing package ice CFLAGS: $cf_pkgconfig_incs ..." 1>&5 +echo "${as_me:-configure}:43661: 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}:43267: testing package ice LIBS: $cf_pkgconfig_libs ..." 1>&5 +echo "${as_me:-configure}:43665: testing package ice LIBS: $cf_pkgconfig_libs ..." 1>&5 cf_fix_cppflags=no cf_new_cflags= @@ -43384,24 +43782,24 @@ LIBS="$cf_add_libs" else cf_pkgconfig_incs= cf_pkgconfig_libs= - { echo "$as_me:43387: WARNING: unable to find ICE library" >&5 + { echo "$as_me:43785: WARNING: unable to find ICE library" >&5 echo "$as_me: WARNING: unable to find ICE library" >&2;} fi if test "$PKG_CONFIG" != none && "$PKG_CONFIG" --exists sm; then test -n "$verbose" && echo " found package sm" 1>&6 -echo "${as_me:-configure}:43394: testing found package sm ..." 1>&5 +echo "${as_me:-configure}:43792: 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}:43400: testing package sm CFLAGS: $cf_pkgconfig_incs ..." 1>&5 +echo "${as_me:-configure}:43798: 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}:43404: testing package sm LIBS: $cf_pkgconfig_libs ..." 1>&5 +echo "${as_me:-configure}:43802: testing package sm LIBS: $cf_pkgconfig_libs ..." 1>&5 cf_fix_cppflags=no cf_new_cflags= @@ -43521,24 +43919,24 @@ LIBS="$cf_add_libs" else cf_pkgconfig_incs= cf_pkgconfig_libs= - { echo "$as_me:43524: WARNING: unable to find SM library" >&5 + { echo "$as_me:43922: WARNING: unable to find SM library" >&5 echo "$as_me: WARNING: unable to find SM library" >&2;} fi if test "$PKG_CONFIG" != none && "$PKG_CONFIG" --exists xt; then test -n "$verbose" && echo " found package xt" 1>&6 -echo "${as_me:-configure}:43531: testing found package xt ..." 1>&5 +echo "${as_me:-configure}:43929: 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}:43537: testing package xt CFLAGS: $cf_pkgconfig_incs ..." 1>&5 +echo "${as_me:-configure}:43935: 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}:43541: testing package xt LIBS: $cf_pkgconfig_libs ..." 1>&5 +echo "${as_me:-configure}:43939: testing package xt LIBS: $cf_pkgconfig_libs ..." 1>&5 cf_fix_cppflags=no cf_new_cflags= @@ -43658,7 +44056,7 @@ LIBS="$cf_add_libs" else cf_pkgconfig_incs= cf_pkgconfig_libs= - { echo "$as_me:43661: WARNING: unable to find Xt library" >&5 + { echo "$as_me:44059: WARNING: unable to find Xt library" >&5 echo "$as_me: WARNING: unable to find Xt library" >&2;} fi @@ -43669,17 +44067,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}:43672: testing found package xt ..." 1>&5 +echo "${as_me:-configure}:44070: 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}:43678: testing package xt CFLAGS: $cf_pkgconfig_incs ..." 1>&5 +echo "${as_me:-configure}:44076: 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}:43682: testing package xt LIBS: $cf_pkgconfig_libs ..." 1>&5 +echo "${as_me:-configure}:44080: testing package xt LIBS: $cf_pkgconfig_libs ..." 1>&5 cf_fix_cppflags=no cf_new_cflags= @@ -43800,14 +44198,14 @@ LIBS="$cf_add_libs" ;; (*) # we have an "xt" package, but it may omit Xt's dependency on X11 -echo "$as_me:43803: checking for usable X dependency" >&5 +echo "$as_me:44201: 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 43810 "configure" +#line 44208 "configure" #include "confdefs.h" #include <X11/Xlib.h> @@ -43826,16 +44224,16 @@ main (void) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:43829: \"$ac_link\"") >&5 +if { (eval echo "$as_me:44227: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:43832: \$? = $ac_status" >&5 + echo "$as_me:44230: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:43835: \"$ac_try\"") >&5 + { (eval echo "$as_me:44233: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:43838: \$? = $ac_status" >&5 + echo "$as_me:44236: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_xt_x11_compat=yes else @@ -43845,30 +44243,30 @@ cf_cv_xt_x11_compat=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:43848: result: $cf_cv_xt_x11_compat" >&5 +echo "$as_me:44246: 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}:43854: testing work around broken X11 dependency ..." 1>&5 +echo "${as_me:-configure}:44252: 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}:43861: testing found package x11 ..." 1>&5 +echo "${as_me:-configure}:44259: 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}:43867: testing package x11 CFLAGS: $cf_pkgconfig_incs ..." 1>&5 +echo "${as_me:-configure}:44265: 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}:43871: testing package x11 LIBS: $cf_pkgconfig_libs ..." 1>&5 +echo "${as_me:-configure}:44269: testing package x11 LIBS: $cf_pkgconfig_libs ..." 1>&5 cf_fix_cppflags=no cf_new_cflags= @@ -43991,12 +44389,12 @@ else test -n "$verbose" && echo " ...before $LIBS" 1>&6 -echo "${as_me:-configure}:43994: testing ...before $LIBS ..." 1>&5 +echo "${as_me:-configure}:44392: 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}:43999: testing ...after $LIBS ..." 1>&5 +echo "${as_me:-configure}:44397: testing ...after $LIBS ..." 1>&5 fi @@ -44004,14 +44402,14 @@ fi ;; esac -echo "$as_me:44007: checking for usable X Toolkit package" >&5 +echo "$as_me:44405: 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 44014 "configure" +#line 44412 "configure" #include "confdefs.h" #include <X11/Shell.h> @@ -44026,16 +44424,16 @@ int num = IceConnectionNumber(0) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:44029: \"$ac_link\"") >&5 +if { (eval echo "$as_me:44427: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:44032: \$? = $ac_status" >&5 + echo "$as_me:44430: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:44035: \"$ac_try\"") >&5 + { (eval echo "$as_me:44433: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:44038: \$? = $ac_status" >&5 + echo "$as_me:44436: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_xt_ice_compat=yes else @@ -44045,7 +44443,7 @@ cf_cv_xt_ice_compat=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:44048: result: $cf_cv_xt_ice_compat" >&5 +echo "$as_me:44446: result: $cf_cv_xt_ice_compat" >&5 echo "${ECHO_T}$cf_cv_xt_ice_compat" >&6 if test "$cf_cv_xt_ice_compat" = no @@ -44059,22 +44457,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}:44062: testing work around broken ICE dependency ..." 1>&5 +echo "${as_me:-configure}:44460: 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}:44067: testing found package ice ..." 1>&5 +echo "${as_me:-configure}:44465: 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}:44073: testing package ice CFLAGS: $cf_pkgconfig_incs ..." 1>&5 +echo "${as_me:-configure}:44471: 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}:44077: testing package ice LIBS: $cf_pkgconfig_libs ..." 1>&5 +echo "${as_me:-configure}:44475: testing package ice LIBS: $cf_pkgconfig_libs ..." 1>&5 cf_fix_cppflags=no cf_new_cflags= @@ -44193,17 +44591,17 @@ LIBS="$cf_add_libs" if test "$PKG_CONFIG" != none && "$PKG_CONFIG" --exists sm; then test -n "$verbose" && echo " found package sm" 1>&6 -echo "${as_me:-configure}:44196: testing found package sm ..." 1>&5 +echo "${as_me:-configure}:44594: 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}:44202: testing package sm CFLAGS: $cf_pkgconfig_incs ..." 1>&5 +echo "${as_me:-configure}:44600: 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}:44206: testing package sm LIBS: $cf_pkgconfig_libs ..." 1>&5 +echo "${as_me:-configure}:44604: testing package sm LIBS: $cf_pkgconfig_libs ..." 1>&5 cf_fix_cppflags=no cf_new_cflags= @@ -44332,12 +44730,12 @@ else test -n "$verbose" && echo " ...before $LIBS" 1>&6 -echo "${as_me:-configure}:44335: testing ...before $LIBS ..." 1>&5 +echo "${as_me:-configure}:44733: 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}:44340: testing ...after $LIBS ..." 1>&5 +echo "${as_me:-configure}:44738: testing ...after $LIBS ..." 1>&5 fi @@ -44357,7 +44755,7 @@ else test -n "$verbose" && echo " checking additions to CFLAGS" 1>&6 -echo "${as_me:-configure}:44360: testing checking additions to CFLAGS ..." 1>&5 +echo "${as_me:-configure}:44758: testing checking additions to CFLAGS ..." 1>&5 cf_check_cflags="$CFLAGS" cf_check_cppflags="$CPPFLAGS" @@ -44442,7 +44840,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}:44445: testing add to \$CFLAGS $cf_new_cflags ..." 1>&5 +echo "${as_me:-configure}:44843: testing add to \$CFLAGS $cf_new_cflags ..." 1>&5 test -n "$CFLAGS" && CFLAGS="$CFLAGS " CFLAGS="${CFLAGS}$cf_new_cflags" @@ -44452,7 +44850,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}:44455: testing add to \$CPPFLAGS $cf_new_cppflags ..." 1>&5 +echo "${as_me:-configure}:44853: testing add to \$CPPFLAGS $cf_new_cppflags ..." 1>&5 test -n "$CPPFLAGS" && CPPFLAGS="$CPPFLAGS " CPPFLAGS="${CPPFLAGS}$cf_new_cppflags" @@ -44462,7 +44860,7 @@ fi if test -n "$cf_new_extra_cppflags" ; then test -n "$verbose" && echo " add to \$EXTRA_CPPFLAGS $cf_new_extra_cppflags" 1>&6 -echo "${as_me:-configure}:44465: testing add to \$EXTRA_CPPFLAGS $cf_new_extra_cppflags ..." 1>&5 +echo "${as_me:-configure}:44863: testing add to \$EXTRA_CPPFLAGS $cf_new_extra_cppflags ..." 1>&5 test -n "$EXTRA_CPPFLAGS" && EXTRA_CPPFLAGS="$EXTRA_CPPFLAGS " EXTRA_CPPFLAGS="${EXTRA_CPPFLAGS}$cf_new_extra_cppflags" @@ -44471,7 +44869,7 @@ fi if test "x$cf_check_cflags" != "x$CFLAGS" ; then cat >conftest.$ac_ext <<_ACEOF -#line 44474 "configure" +#line 44872 "configure" #include "confdefs.h" #include <stdio.h> int @@ -44483,16 +44881,16 @@ printf("Hello world"); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:44486: \"$ac_link\"") >&5 +if { (eval echo "$as_me:44884: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:44489: \$? = $ac_status" >&5 + echo "$as_me:44887: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:44492: \"$ac_try\"") >&5 + { (eval echo "$as_me:44890: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:44495: \$? = $ac_status" >&5 + echo "$as_me:44893: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -44500,12 +44898,12 @@ else cat conftest.$ac_ext >&5 test -n "$verbose" && echo " test-compile failed. Undoing change to \$CFLAGS" 1>&6 -echo "${as_me:-configure}:44503: testing test-compile failed. Undoing change to \$CFLAGS ..." 1>&5 +echo "${as_me:-configure}:44901: testing test-compile failed. Undoing change to \$CFLAGS ..." 1>&5 if test "x$cf_check_cppflags" != "x$CPPFLAGS" ; then test -n "$verbose" && echo " but keeping change to \$CPPFLAGS" 1>&6 -echo "${as_me:-configure}:44508: testing but keeping change to \$CPPFLAGS ..." 1>&5 +echo "${as_me:-configure}:44906: testing but keeping change to \$CPPFLAGS ..." 1>&5 fi CFLAGS="$cf_check_flags" @@ -44513,13 +44911,13 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi - echo "$as_me:44516: checking for XOpenDisplay" >&5 + echo "$as_me:44914: 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 44522 "configure" +#line 44920 "configure" #include "confdefs.h" #define XOpenDisplay autoconf_temporary #include <limits.h> /* least-intrusive standard header which defines gcc2 __stub macros */ @@ -44550,16 +44948,16 @@ main (void) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:44553: \"$ac_link\"") >&5 +if { (eval echo "$as_me:44951: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:44556: \$? = $ac_status" >&5 + echo "$as_me:44954: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:44559: \"$ac_try\"") >&5 + { (eval echo "$as_me:44957: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:44562: \$? = $ac_status" >&5 + echo "$as_me:44960: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_XOpenDisplay=yes else @@ -44569,13 +44967,13 @@ ac_cv_func_XOpenDisplay=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:44572: result: $ac_cv_func_XOpenDisplay" >&5 +echo "$as_me:44970: 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:44578: checking for XOpenDisplay in -lX11" >&5 + echo "$as_me:44976: 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 @@ -44583,7 +44981,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lX11 $X_PRE_LIBS $LIBS $X_EXTRA_LIBS $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 44586 "configure" +#line 44984 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -44602,16 +45000,16 @@ XOpenDisplay (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:44605: \"$ac_link\"") >&5 +if { (eval echo "$as_me:45003: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:44608: \$? = $ac_status" >&5 + echo "$as_me:45006: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:44611: \"$ac_try\"") >&5 + { (eval echo "$as_me:45009: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:44614: \$? = $ac_status" >&5 + echo "$as_me:45012: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_X11_XOpenDisplay=yes else @@ -44622,7 +45020,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:44625: result: $ac_cv_lib_X11_XOpenDisplay" >&5 +echo "$as_me:45023: 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 @@ -44646,13 +45044,13 @@ fi fi - echo "$as_me:44649: checking for XtAppInitialize" >&5 + echo "$as_me:45047: 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 44655 "configure" +#line 45053 "configure" #include "confdefs.h" #define XtAppInitialize autoconf_temporary #include <limits.h> /* least-intrusive standard header which defines gcc2 __stub macros */ @@ -44683,16 +45081,16 @@ main (void) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:44686: \"$ac_link\"") >&5 +if { (eval echo "$as_me:45084: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:44689: \$? = $ac_status" >&5 + echo "$as_me:45087: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:44692: \"$ac_try\"") >&5 + { (eval echo "$as_me:45090: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:44695: \$? = $ac_status" >&5 + echo "$as_me:45093: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_XtAppInitialize=yes else @@ -44702,13 +45100,13 @@ ac_cv_func_XtAppInitialize=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:44705: result: $ac_cv_func_XtAppInitialize" >&5 +echo "$as_me:45103: 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:44711: checking for XtAppInitialize in -lXt" >&5 + echo "$as_me:45109: 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 @@ -44716,7 +45114,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lXt $X_PRE_LIBS $LIBS $X_EXTRA_LIBS $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 44719 "configure" +#line 45117 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -44735,16 +45133,16 @@ XtAppInitialize (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:44738: \"$ac_link\"") >&5 +if { (eval echo "$as_me:45136: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:44741: \$? = $ac_status" >&5 + echo "$as_me:45139: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:44744: \"$ac_try\"") >&5 + { (eval echo "$as_me:45142: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:44747: \$? = $ac_status" >&5 + echo "$as_me:45145: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_Xt_XtAppInitialize=yes else @@ -44755,7 +45153,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:44758: result: $ac_cv_lib_Xt_XtAppInitialize" >&5 +echo "$as_me:45156: 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 @@ -44772,7 +45170,7 @@ fi fi if test $cf_have_X_LIBS = no ; then - { echo "$as_me:44775: WARNING: Unable to successfully link X Toolkit library (-lXt) with + { echo "$as_me:45173: 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 @@ -44813,14 +45211,14 @@ done test -n "$CPPFLAGS" && CPPFLAGS="$CPPFLAGS " CPPFLAGS="${CPPFLAGS}-I$cf_path/include" - echo "$as_me:44816: checking for $cf_test in $cf_path" >&5 + echo "$as_me:45214: 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:44819: checking for $cf_test" >&5 + echo "$as_me:45217: checking for $cf_test" >&5 echo $ECHO_N "checking for $cf_test... $ECHO_C" >&6 fi cat >conftest.$ac_ext <<_ACEOF -#line 44823 "configure" +#line 45221 "configure" #include "confdefs.h" #include <X11/Intrinsic.h> @@ -44834,16 +45232,16 @@ main (void) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:44837: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:45235: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:44840: \$? = $ac_status" >&5 + echo "$as_me:45238: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:44843: \"$ac_try\"") >&5 + { (eval echo "$as_me:45241: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:44846: \$? = $ac_status" >&5 + echo "$as_me:45244: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_result=yes else @@ -44852,7 +45250,7 @@ cat conftest.$ac_ext >&5 cf_result=no fi rm -f conftest.$ac_objext conftest.$ac_ext - echo "$as_me:44855: result: $cf_result" >&5 + echo "$as_me:45253: result: $cf_result" >&5 echo "${ECHO_T}$cf_result" >&6 LIBS="$cf_save_LIBS_CF_X_ATHENA_CPPFLAGS" @@ -44868,7 +45266,7 @@ CPPFLAGS="$cf_save_CPPFLAGS_CF_X_ATHENA_CPPFLAGS" done if test -z "$cf_x_athena_inc" ; then - { echo "$as_me:44871: WARNING: Unable to find Athena header files" >&5 + { echo "$as_me:45269: WARNING: Unable to find Athena header files" >&5 echo "$as_me: WARNING: Unable to find Athena header files" >&2;} elif test "$cf_x_athena_inc" != default ; then @@ -44933,10 +45331,10 @@ for cf_add_1lib in $cf_add_0lib; do done LIBS="$cf_add_libs" - echo "$as_me:44936: checking for $cf_test in $cf_libs" >&5 + echo "$as_me:45334: checking for $cf_test in $cf_libs" >&5 echo $ECHO_N "checking for $cf_test in $cf_libs... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF -#line 44939 "configure" +#line 45337 "configure" #include "confdefs.h" #include <X11/Intrinsic.h> @@ -44952,16 +45350,16 @@ $cf_test((XtAppContext) 0) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:44955: \"$ac_link\"") >&5 +if { (eval echo "$as_me:45353: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:44958: \$? = $ac_status" >&5 + echo "$as_me:45356: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:44961: \"$ac_try\"") >&5 + { (eval echo "$as_me:45359: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:44964: \$? = $ac_status" >&5 + echo "$as_me:45362: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_result=yes else @@ -44970,7 +45368,7 @@ cat conftest.$ac_ext >&5 cf_result=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext - echo "$as_me:44973: result: $cf_result" >&5 + echo "$as_me:45371: result: $cf_result" >&5 echo "${ECHO_T}$cf_result" >&6 LIBS="$cf_save_LIBS_CF_X_ATHENA_LIBS" @@ -44987,7 +45385,7 @@ CPPFLAGS="$cf_save_CPPFLAGS_CF_X_ATHENA_LIBS" done if test -z "$cf_x_athena_lib" ; then - { { echo "$as_me:44990: error: Unable to successfully link Athena library (-l$cf_x_athena_root) with test program" >&5 + { { echo "$as_me:45388: 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 @@ -45021,7 +45419,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:45024: checking for $ac_word" >&5 +echo "$as_me:45422: 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 @@ -45036,7 +45434,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:45039: found $ac_dir/$ac_word" >&5 +echo "$as_me:45437: found $ac_dir/$ac_word" >&5 break done @@ -45044,10 +45442,10 @@ fi fi XCURSES_CONFIG=$ac_cv_prog_XCURSES_CONFIG if test -n "$XCURSES_CONFIG"; then - echo "$as_me:45047: result: $XCURSES_CONFIG" >&5 + echo "$as_me:45445: result: $XCURSES_CONFIG" >&5 echo "${ECHO_T}$XCURSES_CONFIG" >&6 else - echo "$as_me:45050: result: no" >&5 + echo "$as_me:45448: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -45060,7 +45458,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:45063: checking for $ac_word" >&5 +echo "$as_me:45461: 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 @@ -45075,7 +45473,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:45078: found $ac_dir/$ac_word" >&5 +echo "$as_me:45476: found $ac_dir/$ac_word" >&5 break done @@ -45083,10 +45481,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:45086: result: $ac_ct_XCURSES_CONFIG" >&5 + echo "$as_me:45484: result: $ac_ct_XCURSES_CONFIG" >&5 echo "${ECHO_T}$ac_ct_XCURSES_CONFIG" >&6 else - echo "$as_me:45089: result: no" >&5 + echo "$as_me:45487: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -45221,7 +45619,7 @@ LDFLAGS="$LDFLAGS $X_LIBS" test -n "$verbose" && echo " checking additions to CFLAGS" 1>&6 -echo "${as_me:-configure}:45224: testing checking additions to CFLAGS ..." 1>&5 +echo "${as_me:-configure}:45622: testing checking additions to CFLAGS ..." 1>&5 cf_check_cflags="$CFLAGS" cf_check_cppflags="$CPPFLAGS" @@ -45306,7 +45704,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}:45309: testing add to \$CFLAGS $cf_new_cflags ..." 1>&5 +echo "${as_me:-configure}:45707: testing add to \$CFLAGS $cf_new_cflags ..." 1>&5 test -n "$CFLAGS" && CFLAGS="$CFLAGS " CFLAGS="${CFLAGS}$cf_new_cflags" @@ -45316,7 +45714,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}:45319: testing add to \$CPPFLAGS $cf_new_cppflags ..." 1>&5 +echo "${as_me:-configure}:45717: testing add to \$CPPFLAGS $cf_new_cppflags ..." 1>&5 test -n "$CPPFLAGS" && CPPFLAGS="$CPPFLAGS " CPPFLAGS="${CPPFLAGS}$cf_new_cppflags" @@ -45326,7 +45724,7 @@ fi if test -n "$cf_new_extra_cppflags" ; then test -n "$verbose" && echo " add to \$EXTRA_CPPFLAGS $cf_new_extra_cppflags" 1>&6 -echo "${as_me:-configure}:45329: testing add to \$EXTRA_CPPFLAGS $cf_new_extra_cppflags ..." 1>&5 +echo "${as_me:-configure}:45727: testing add to \$EXTRA_CPPFLAGS $cf_new_extra_cppflags ..." 1>&5 test -n "$EXTRA_CPPFLAGS" && EXTRA_CPPFLAGS="$EXTRA_CPPFLAGS " EXTRA_CPPFLAGS="${EXTRA_CPPFLAGS}$cf_new_extra_cppflags" @@ -45335,7 +45733,7 @@ fi if test "x$cf_check_cflags" != "x$CFLAGS" ; then cat >conftest.$ac_ext <<_ACEOF -#line 45338 "configure" +#line 45736 "configure" #include "confdefs.h" #include <stdio.h> int @@ -45347,16 +45745,16 @@ printf("Hello world"); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:45350: \"$ac_link\"") >&5 +if { (eval echo "$as_me:45748: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:45353: \$? = $ac_status" >&5 + echo "$as_me:45751: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:45356: \"$ac_try\"") >&5 + { (eval echo "$as_me:45754: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:45359: \$? = $ac_status" >&5 + echo "$as_me:45757: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -45364,12 +45762,12 @@ else cat conftest.$ac_ext >&5 test -n "$verbose" && echo " test-compile failed. Undoing change to \$CFLAGS" 1>&6 -echo "${as_me:-configure}:45367: testing test-compile failed. Undoing change to \$CFLAGS ..." 1>&5 +echo "${as_me:-configure}:45765: testing test-compile failed. Undoing change to \$CFLAGS ..." 1>&5 if test "x$cf_check_cppflags" != "x$CPPFLAGS" ; then test -n "$verbose" && echo " but keeping change to \$CPPFLAGS" 1>&6 -echo "${as_me:-configure}:45372: testing but keeping change to \$CPPFLAGS ..." 1>&5 +echo "${as_me:-configure}:45770: testing but keeping change to \$CPPFLAGS ..." 1>&5 fi CFLAGS="$cf_check_flags" @@ -45377,7 +45775,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:45380: checking for XOpenDisplay in -lX11" >&5 +echo "$as_me:45778: 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 @@ -45385,7 +45783,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lX11 $X_PRE_LIBS $LIBS $X_EXTRA_LIBS $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 45388 "configure" +#line 45786 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -45404,16 +45802,16 @@ XOpenDisplay (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:45407: \"$ac_link\"") >&5 +if { (eval echo "$as_me:45805: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:45410: \$? = $ac_status" >&5 + echo "$as_me:45808: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:45413: \"$ac_try\"") >&5 + { (eval echo "$as_me:45811: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:45416: \$? = $ac_status" >&5 + echo "$as_me:45814: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_X11_XOpenDisplay=yes else @@ -45424,7 +45822,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:45427: result: $ac_cv_lib_X11_XOpenDisplay" >&5 +echo "$as_me:45825: 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 @@ -45446,7 +45844,7 @@ LIBS="$cf_add_libs" fi -echo "$as_me:45449: checking for XCurses library" >&5 +echo "$as_me:45847: 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 @@ -45469,7 +45867,7 @@ done LIBS="$cf_add_libs" cat >conftest.$ac_ext <<_ACEOF -#line 45472 "configure" +#line 45870 "configure" #include "confdefs.h" #include <xcurses.h> @@ -45484,16 +45882,16 @@ XCursesExit(); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:45487: \"$ac_link\"") >&5 +if { (eval echo "$as_me:45885: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:45490: \$? = $ac_status" >&5 + echo "$as_me:45888: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:45493: \"$ac_try\"") >&5 + { (eval echo "$as_me:45891: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:45496: \$? = $ac_status" >&5 + echo "$as_me:45894: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_lib_XCurses=yes else @@ -45504,7 +45902,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:45507: result: $cf_cv_lib_XCurses" >&5 +echo "$as_me:45905: result: $cf_cv_lib_XCurses" >&5 echo "${ECHO_T}$cf_cv_lib_XCurses" >&6 fi @@ -45519,23 +45917,23 @@ cat >>confdefs.h <<\EOF #define XCURSES 1 EOF - echo "$as_me:45522: checking for xcurses.h" >&5 + echo "$as_me:45920: 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 45528 "configure" +#line 45926 "configure" #include "confdefs.h" #include <xcurses.h> _ACEOF -if { (eval echo "$as_me:45532: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:45930: \"$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:45538: \$? = $ac_status" >&5 + echo "$as_me:45936: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -45554,7 +45952,7 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:45557: result: $ac_cv_header_xcurses_h" >&5 +echo "$as_me:45955: 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 @@ -45565,7 +45963,7 @@ EOF fi else - { { echo "$as_me:45568: error: Cannot link with XCurses" >&5 + { { echo "$as_me:45966: error: Cannot link with XCurses" >&5 echo "$as_me: error: Cannot link with XCurses" >&2;} { (exit 1); exit 1; }; } fi @@ -45574,7 +45972,7 @@ fi esac else -echo "$as_me:45577: checking if we can include termio.h with curses" >&5 +echo "$as_me:45975: 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 @@ -45584,7 +45982,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 45587 "configure" +#line 45985 "configure" #include "confdefs.h" #include <LYCurses.h> @@ -45598,16 +45996,16 @@ putchar(0x0a) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:45601: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:45999: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:45604: \$? = $ac_status" >&5 + echo "$as_me:46002: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:45607: \"$ac_try\"") >&5 + { (eval echo "$as_me:46005: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:45610: \$? = $ac_status" >&5 + echo "$as_me:46008: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_termio_and_curses=yes else @@ -45620,7 +46018,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext rm -f lynx_cfg.h fi -echo "$as_me:45623: result: $cf_cv_termio_and_curses" >&5 +echo "$as_me:46021: result: $cf_cv_termio_and_curses" >&5 echo "${ECHO_T}$cf_cv_termio_and_curses" >&6 test $cf_cv_termio_and_curses = yes && @@ -45637,23 +46035,23 @@ if test $cf_cv_screen != slang ; then for ac_header in $cf_cv_screen/term.h term.h do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` -echo "$as_me:45640: checking for $ac_header" >&5 +echo "$as_me:46038: 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 45646 "configure" +#line 46044 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:45650: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:46048: \"$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:45656: \$? = $ac_status" >&5 + echo "$as_me:46054: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -45672,7 +46070,7 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:45675: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:46073: 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 @@ -45684,7 +46082,7 @@ done fi -echo "$as_me:45687: checking if curses supports alternate-character set" >&5 +echo "$as_me:46085: 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 @@ -45693,7 +46091,7 @@ else for mapname in acs_map _acs_map do cat >conftest.$ac_ext <<_ACEOF -#line 45696 "configure" +#line 46094 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> @@ -45707,16 +46105,16 @@ chtype x = $mapname['l']; $mapname['m'] = 0 } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:45710: \"$ac_link\"") >&5 +if { (eval echo "$as_me:46108: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:45713: \$? = $ac_status" >&5 + echo "$as_me:46111: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:45716: \"$ac_try\"") >&5 + { (eval echo "$as_me:46114: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:45719: \$? = $ac_status" >&5 + echo "$as_me:46117: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_alt_char_set=$mapname break @@ -45730,21 +46128,21 @@ done fi -echo "$as_me:45733: result: $cf_cv_alt_char_set" >&5 +echo "$as_me:46131: 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:45740: checking if curses supports fancy attributes" >&5 +echo "$as_me:46138: 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 45747 "configure" +#line 46145 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> @@ -45762,16 +46160,16 @@ attrset(A_UNDERLINE|A_BOLD|A_REVERSE); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:45765: \"$ac_link\"") >&5 +if { (eval echo "$as_me:46163: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:45768: \$? = $ac_status" >&5 + echo "$as_me:46166: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:45771: \"$ac_try\"") >&5 + { (eval echo "$as_me:46169: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:45774: \$? = $ac_status" >&5 + echo "$as_me:46172: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_fancy_curses=yes else @@ -45783,14 +46181,14 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:45786: result: $cf_cv_fancy_curses" >&5 +echo "$as_me:46184: 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:45793: checking for function curses_version" >&5 +echo "$as_me:46191: 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 @@ -45800,7 +46198,7 @@ if test "$cross_compiling" = yes; then cf_cv_func_curses_version=unknown else cat >conftest.$ac_ext <<_ACEOF -#line 45803 "configure" +#line 46201 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> @@ -45813,15 +46211,15 @@ int main(void) _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:45816: \"$ac_link\"") >&5 +if { (eval echo "$as_me:46214: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:45819: \$? = $ac_status" >&5 + echo "$as_me:46217: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:45821: \"$ac_try\"") >&5 + { (eval echo "$as_me:46219: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:45824: \$? = $ac_status" >&5 + echo "$as_me:46222: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_func_curses_version=yes @@ -45836,7 +46234,7 @@ rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext fi rm -f core fi -echo "$as_me:45839: result: $cf_cv_func_curses_version" >&5 +echo "$as_me:46237: 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 @@ -45844,14 +46242,14 @@ cat >>confdefs.h <<\EOF EOF if test "$cf_cv_ncurses_version" != no ; then -echo "$as_me:45847: checking for obsolete/broken version of ncurses" >&5 +echo "$as_me:46245: 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 45854 "configure" +#line 46252 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> @@ -45870,16 +46268,16 @@ main (void) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:45873: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:46271: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:45876: \$? = $ac_status" >&5 + echo "$as_me:46274: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:45879: \"$ac_try\"") >&5 + { (eval echo "$as_me:46277: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:45882: \$? = $ac_status" >&5 + echo "$as_me:46280: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_ncurses_broken=no else @@ -45891,10 +46289,10 @@ rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:45894: result: $cf_cv_ncurses_broken" >&5 +echo "$as_me:46292: 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:45897: WARNING: hmm... you should get an up-to-date version of ncurses" >&5 + { echo "$as_me:46295: 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 @@ -45904,14 +46302,14 @@ EOF fi fi -echo "$as_me:45907: checking if curses supports color attributes" >&5 +echo "$as_me:46305: 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 45914 "configure" +#line 46312 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> @@ -45931,16 +46329,16 @@ chtype x = COLOR_BLUE; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:45934: \"$ac_link\"") >&5 +if { (eval echo "$as_me:46332: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:45937: \$? = $ac_status" >&5 + echo "$as_me:46335: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:45940: \"$ac_try\"") >&5 + { (eval echo "$as_me:46338: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:45943: \$? = $ac_status" >&5 + echo "$as_me:46341: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_color_curses=yes else @@ -45952,7 +46350,7 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:45955: result: $cf_cv_color_curses" >&5 +echo "$as_me:46353: result: $cf_cv_color_curses" >&5 echo "${ECHO_T}$cf_cv_color_curses" >&6 if test $cf_cv_color_curses = yes ; then @@ -45976,23 +46374,23 @@ sys/termio.h \ do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` -echo "$as_me:45979: checking for $ac_header" >&5 +echo "$as_me:46377: 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 45985 "configure" +#line 46383 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:45989: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:46387: \"$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:45995: \$? = $ac_status" >&5 + echo "$as_me:46393: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -46011,7 +46409,7 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:46014: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:46412: 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 @@ -46028,10 +46426,10 @@ if test "$ac_cv_header_termios_h" = yes ; then (*) termios_bad=maybe ;; esac if test "$termios_bad" = maybe ; then - echo "$as_me:46031: checking whether termios.h needs _POSIX_SOURCE" >&5 + echo "$as_me:46429: 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 46034 "configure" +#line 46432 "configure" #include "confdefs.h" #include <termios.h> int @@ -46043,16 +46441,16 @@ struct termios foo; int x = foo.c_iflag } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:46046: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:46444: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:46049: \$? = $ac_status" >&5 + echo "$as_me:46447: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:46052: \"$ac_try\"") >&5 + { (eval echo "$as_me:46450: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:46055: \$? = $ac_status" >&5 + echo "$as_me:46453: \$? = $ac_status" >&5 (exit $ac_status); }; }; then termios_bad=no else @@ -46060,7 +46458,7 @@ else cat conftest.$ac_ext >&5 cat >conftest.$ac_ext <<_ACEOF -#line 46063 "configure" +#line 46461 "configure" #include "confdefs.h" #define _POSIX_SOURCE @@ -46074,16 +46472,16 @@ struct termios foo; int x = foo.c_iflag } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:46077: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:46475: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:46080: \$? = $ac_status" >&5 + echo "$as_me:46478: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:46083: \"$ac_try\"") >&5 + { (eval echo "$as_me:46481: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:46086: \$? = $ac_status" >&5 + echo "$as_me:46484: \$? = $ac_status" >&5 (exit $ac_status); }; }; then termios_bad=unknown else @@ -46099,12 +46497,12 @@ rm -f conftest.$ac_objext conftest.$ac_ext fi rm -f conftest.$ac_objext conftest.$ac_ext - echo "$as_me:46102: result: $termios_bad" >&5 + echo "$as_me:46500: result: $termios_bad" >&5 echo "${ECHO_T}$termios_bad" >&6 fi fi -echo "$as_me:46107: checking declaration of size-change" >&5 +echo "$as_me:46505: 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 @@ -46125,7 +46523,7 @@ do fi cat >conftest.$ac_ext <<_ACEOF -#line 46128 "configure" +#line 46526 "configure" #include "confdefs.h" #include <sys/types.h> #ifdef HAVE_TERMIOS_H @@ -46171,16 +46569,16 @@ main (void) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:46174: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:46572: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:46177: \$? = $ac_status" >&5 + echo "$as_me:46575: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:46180: \"$ac_try\"") >&5 + { (eval echo "$as_me:46578: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:46183: \$? = $ac_status" >&5 + echo "$as_me:46581: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_sizechange=yes else @@ -46199,7 +46597,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext done fi -echo "$as_me:46202: result: $cf_cv_sizechange" >&5 +echo "$as_me:46600: result: $cf_cv_sizechange" >&5 echo "${ECHO_T}$cf_cv_sizechange" >&6 if test "$cf_cv_sizechange" != no ; then @@ -46217,14 +46615,14 @@ EOF esac fi -echo "$as_me:46220: checking if ttytype is declared in curses library" >&5 +echo "$as_me:46618: 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 46227 "configure" +#line 46625 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> int @@ -46236,16 +46634,16 @@ char *x = &ttytype[1]; *x = 1 } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:46239: \"$ac_link\"") >&5 +if { (eval echo "$as_me:46637: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:46242: \$? = $ac_status" >&5 + echo "$as_me:46640: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:46245: \"$ac_try\"") >&5 + { (eval echo "$as_me:46643: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:46248: \$? = $ac_status" >&5 + echo "$as_me:46646: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_have_ttytype=yes else @@ -46257,7 +46655,7 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:46260: result: $cf_cv_have_ttytype" >&5 +echo "$as_me:46658: result: $cf_cv_have_ttytype" >&5 echo "${ECHO_T}$cf_cv_have_ttytype" >&6 test $cf_cv_have_ttytype = yes && cat >>confdefs.h <<\EOF @@ -46266,14 +46664,14 @@ EOF if test "$use_wide_curses" = yes ; then -echo "$as_me:46269: checking if curses supports wide characters" >&5 +echo "$as_me:46667: 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 46276 "configure" +#line 46674 "configure" #include "confdefs.h" #include <stdlib.h> @@ -46292,16 +46690,16 @@ main (void) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:46295: \"$ac_link\"") >&5 +if { (eval echo "$as_me:46693: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:46298: \$? = $ac_status" >&5 + echo "$as_me:46696: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:46301: \"$ac_try\"") >&5 + { (eval echo "$as_me:46699: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:46304: \$? = $ac_status" >&5 + echo "$as_me:46702: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_widec_curses=yes else @@ -46312,7 +46710,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:46315: result: $cf_cv_widec_curses" >&5 +echo "$as_me:46713: result: $cf_cv_widec_curses" >&5 echo "${ECHO_T}$cf_cv_widec_curses" >&6 if test "$cf_cv_widec_curses" = yes ; then @@ -46322,14 +46720,14 @@ cat >>confdefs.h <<\EOF EOF # This is needed on Tru64 5.0 to declare mbstate_t - echo "$as_me:46325: checking if we must include wchar.h to declare mbstate_t" >&5 + echo "$as_me:46723: 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 46332 "configure" +#line 46730 "configure" #include "confdefs.h" #include <stdlib.h> @@ -46343,23 +46741,23 @@ mbstate_t state } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:46346: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:46744: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:46349: \$? = $ac_status" >&5 + echo "$as_me:46747: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:46352: \"$ac_try\"") >&5 + { (eval echo "$as_me:46750: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:46355: \$? = $ac_status" >&5 + echo "$as_me:46753: \$? = $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 46362 "configure" +#line 46760 "configure" #include "confdefs.h" #include <stdlib.h> @@ -46374,16 +46772,16 @@ mbstate_t state } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:46377: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:46775: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:46380: \$? = $ac_status" >&5 + echo "$as_me:46778: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:46383: \"$ac_try\"") >&5 + { (eval echo "$as_me:46781: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:46386: \$? = $ac_status" >&5 + echo "$as_me:46784: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_widec_mbstate=yes else @@ -46395,7 +46793,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:46398: result: $cf_cv_widec_mbstate" >&5 +echo "$as_me:46796: result: $cf_cv_widec_mbstate" >&5 echo "${ECHO_T}$cf_cv_widec_mbstate" >&6 if test "$cf_cv_widec_mbstate" = yes ; then @@ -46418,7 +46816,7 @@ fi fi -echo "$as_me:46421: checking definition to turn on extended curses functions" >&5 +echo "$as_me:46819: checking definition to turn on extended curses functions" >&5 echo $ECHO_N "checking definition to turn on extended curses functions... $ECHO_C" >&6 if test "${cf_cv_need_xopen_extension+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -46426,7 +46824,7 @@ else cf_cv_need_xopen_extension=unknown cat >conftest.$ac_ext <<_ACEOF -#line 46429 "configure" +#line 46827 "configure" #include "confdefs.h" #include <stdlib.h> @@ -46452,16 +46850,16 @@ main (void) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:46455: \"$ac_link\"") >&5 +if { (eval echo "$as_me:46853: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:46458: \$? = $ac_status" >&5 + echo "$as_me:46856: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:46461: \"$ac_try\"") >&5 + { (eval echo "$as_me:46859: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:46464: \$? = $ac_status" >&5 + echo "$as_me:46862: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_need_xopen_extension=none else @@ -46471,7 +46869,7 @@ cat conftest.$ac_ext >&5 for cf_try_xopen_extension in _XOPEN_SOURCE_EXTENDED NCURSES_WIDECHAR do cat >conftest.$ac_ext <<_ACEOF -#line 46474 "configure" +#line 46872 "configure" #include "confdefs.h" #define $cf_try_xopen_extension 1 @@ -46493,16 +46891,16 @@ main (void) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:46496: \"$ac_link\"") >&5 +if { (eval echo "$as_me:46894: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:46499: \$? = $ac_status" >&5 + echo "$as_me:46897: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:46502: \"$ac_try\"") >&5 + { (eval echo "$as_me:46900: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:46505: \$? = $ac_status" >&5 + echo "$as_me:46903: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_need_xopen_extension=$cf_try_xopen_extension; break else @@ -46516,7 +46914,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:46519: result: $cf_cv_need_xopen_extension" >&5 +echo "$as_me:46917: result: $cf_cv_need_xopen_extension" >&5 echo "${ECHO_T}$cf_cv_need_xopen_extension" >&6 case $cf_cv_need_xopen_extension in @@ -46528,7 +46926,7 @@ case $cf_cv_need_xopen_extension in ;; esac -echo "$as_me:46531: checking for term.h" >&5 +echo "$as_me:46929: 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 @@ -46549,7 +46947,7 @@ esac for cf_header in $cf_header_list do cat >conftest.$ac_ext <<_ACEOF -#line 46552 "configure" +#line 46950 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> @@ -46563,16 +46961,16 @@ WINDOW *x } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:46566: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:46964: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:46569: \$? = $ac_status" >&5 + echo "$as_me:46967: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:46572: \"$ac_try\"") >&5 + { (eval echo "$as_me:46970: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:46575: \$? = $ac_status" >&5 + echo "$as_me:46973: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_term_header=$cf_header break @@ -46591,7 +46989,7 @@ case $cf_cv_term_header in for cf_header in ncurses/term.h ncursesw/term.h do cat >conftest.$ac_ext <<_ACEOF -#line 46594 "configure" +#line 46992 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> @@ -46609,16 +47007,16 @@ WINDOW *x } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:46612: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:47010: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:46615: \$? = $ac_status" >&5 + echo "$as_me:47013: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:46618: \"$ac_try\"") >&5 + { (eval echo "$as_me:47016: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:46621: \$? = $ac_status" >&5 + echo "$as_me:47019: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_term_header=$cf_header break @@ -46633,7 +47031,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext esac fi -echo "$as_me:46636: result: $cf_cv_term_header" >&5 +echo "$as_me:47034: result: $cf_cv_term_header" >&5 echo "${ECHO_T}$cf_cv_term_header" >&6 case $cf_cv_term_header in @@ -46660,7 +47058,7 @@ EOF ;; esac -echo "$as_me:46663: checking for unctrl.h" >&5 +echo "$as_me:47061: 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 @@ -46681,7 +47079,7 @@ esac for cf_header in $cf_header_list do cat >conftest.$ac_ext <<_ACEOF -#line 46684 "configure" +#line 47082 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> @@ -46695,16 +47093,16 @@ WINDOW *x } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:46698: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:47096: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:46701: \$? = $ac_status" >&5 + echo "$as_me:47099: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:46704: \"$ac_try\"") >&5 + { (eval echo "$as_me:47102: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:46707: \$? = $ac_status" >&5 + echo "$as_me:47105: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_unctrl_header=$cf_header break @@ -46717,12 +47115,12 @@ rm -f conftest.$ac_objext conftest.$ac_ext done fi -echo "$as_me:46720: result: $cf_cv_unctrl_header" >&5 +echo "$as_me:47118: result: $cf_cv_unctrl_header" >&5 echo "${ECHO_T}$cf_cv_unctrl_header" >&6 case $cf_cv_unctrl_header in (no) - { echo "$as_me:46725: WARNING: unctrl.h header not found" >&5 + { echo "$as_me:47123: WARNING: unctrl.h header not found" >&5 echo "$as_me: WARNING: unctrl.h header not found" >&2;} ;; esac @@ -46778,10 +47176,10 @@ do cf_tr_func=`echo "$cf_func" | sed y%abcdefghijklmnopqrstuvwxyz./-%ABCDEFGHIJKLMNOPQRSTUVWXYZ___%` - echo "$as_me:46781: checking for ${cf_func}" >&5 + echo "$as_me:47179: checking for ${cf_func}" >&5 echo $ECHO_N "checking for ${cf_func}... $ECHO_C" >&6 -echo "${as_me:-configure}:46784: testing ${cf_func} ..." 1>&5 +echo "${as_me:-configure}:47182: testing ${cf_func} ..." 1>&5 if eval "test \"\${cf_cv_func_$cf_func+set}\" = set"; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -46790,7 +47188,7 @@ else eval cf_result='$ac_cv_func_'$cf_func if test ".$cf_result" != ".no"; then cat >conftest.$ac_ext <<_ACEOF -#line 46793 "configure" +#line 47191 "configure" #include "confdefs.h" #ifdef HAVE_XCURSES @@ -46823,16 +47221,16 @@ if (foo + 1234L > 5678L) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:46826: \"$ac_link\"") >&5 +if { (eval echo "$as_me:47224: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:46829: \$? = $ac_status" >&5 + echo "$as_me:47227: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:46832: \"$ac_try\"") >&5 + { (eval echo "$as_me:47230: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:46835: \$? = $ac_status" >&5 + echo "$as_me:47233: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_result=yes else @@ -46848,7 +47246,7 @@ fi # use the computed/retrieved cache-value: eval 'cf_result=$cf_cv_func_'$cf_func - echo "$as_me:46851: result: $cf_result" >&5 + echo "$as_me:47249: result: $cf_result" >&5 echo "${ECHO_T}$cf_result" >&6 if test $cf_result != no; then cat >>confdefs.h <<EOF @@ -46865,13 +47263,13 @@ for ac_func in \ do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` -echo "$as_me:46868: checking for $ac_func" >&5 +echo "$as_me:47266: 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 46874 "configure" +#line 47272 "configure" #include "confdefs.h" #define $ac_func autoconf_temporary #include <limits.h> /* least-intrusive standard header which defines gcc2 __stub macros */ @@ -46902,16 +47300,16 @@ main (void) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:46905: \"$ac_link\"") >&5 +if { (eval echo "$as_me:47303: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:46908: \$? = $ac_status" >&5 + echo "$as_me:47306: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:46911: \"$ac_try\"") >&5 + { (eval echo "$as_me:47309: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:46914: \$? = $ac_status" >&5 + echo "$as_me:47312: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else @@ -46921,7 +47319,7 @@ eval "$as_ac_var=no" fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:46924: result: `eval echo '${'$as_ac_var'}'`" >&5 +echo "$as_me:47322: 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 @@ -46935,12 +47333,12 @@ fi if test $use_color_style != no ; then if test .$cf_cv_color_curses != .yes ; then - { { echo "$as_me:46938: error: Configuration does not support color-styles" >&5 + { { echo "$as_me:47336: 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:46943: error: Configuration does not support color-styles" >&5 + { { echo "$as_me:47341: error: Configuration does not support color-styles" >&5 echo "$as_me: error: Configuration does not support color-styles" >&2;} { (exit 1); exit 1; }; } fi @@ -46948,7 +47346,7 @@ fi if test $use_scrollbar != no ; then if test .$cf_cv_fancy_curses != .yes ; then - { echo "$as_me:46951: WARNING: Configuration does not support ACS_xxx definitions" >&5 + { echo "$as_me:47349: WARNING: Configuration does not support ACS_xxx definitions" >&5 echo "$as_me: WARNING: Configuration does not support ACS_xxx definitions" >&2;} else @@ -46961,7 +47359,7 @@ fi # use rpath for libraries in unusual places -echo "$as_me:46964: checking if rpath-hack should be disabled" >&5 +echo "$as_me:47362: 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. @@ -46978,21 +47376,21 @@ else cf_disable_rpath_hack=no fi; -echo "$as_me:46981: result: $cf_disable_rpath_hack" >&5 +echo "$as_me:47379: 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:46985: checking for updated LDFLAGS" >&5 +echo "$as_me:47383: 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:46988: result: maybe" >&5 + echo "$as_me:47386: 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:46995: checking for $ac_word" >&5 +echo "$as_me:47393: 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 @@ -47007,7 +47405,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:47010: found $ac_dir/$ac_word" >&5 +echo "$as_me:47408: found $ac_dir/$ac_word" >&5 break done @@ -47015,10 +47413,10 @@ fi fi cf_ldd_prog=$ac_cv_prog_cf_ldd_prog if test -n "$cf_ldd_prog"; then - echo "$as_me:47018: result: $cf_ldd_prog" >&5 + echo "$as_me:47416: result: $cf_ldd_prog" >&5 echo "${ECHO_T}$cf_ldd_prog" >&6 else - echo "$as_me:47021: result: no" >&5 + echo "$as_me:47419: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -47032,7 +47430,7 @@ test -n "$cf_ldd_prog" || cf_ldd_prog="no" cf_rpath_oops= cat >conftest.$ac_ext <<_ACEOF -#line 47035 "configure" +#line 47433 "configure" #include "confdefs.h" #include <stdio.h> int @@ -47044,16 +47442,16 @@ printf("Hello"); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:47047: \"$ac_link\"") >&5 +if { (eval echo "$as_me:47445: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:47050: \$? = $ac_status" >&5 + echo "$as_me:47448: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:47053: \"$ac_try\"") >&5 + { (eval echo "$as_me:47451: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:47056: \$? = $ac_status" >&5 + echo "$as_me:47454: \$? = $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` @@ -47081,7 +47479,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}:47084: testing ...adding -L$cf_rpath_dir/lib to LDFLAGS for $cf_rpath_src ..." 1>&5 +echo "${as_me:-configure}:47482: testing ...adding -L$cf_rpath_dir/lib to LDFLAGS for $cf_rpath_src ..." 1>&5 LDFLAGS="$LDFLAGS -L$cf_rpath_dir/lib" break @@ -47093,11 +47491,11 @@ echo "${as_me:-configure}:47084: testing ...adding -L$cf_rpath_dir/lib to LDFLAG test -n "$verbose" && echo " ...checking EXTRA_LDFLAGS $EXTRA_LDFLAGS" 1>&6 -echo "${as_me:-configure}:47096: testing ...checking EXTRA_LDFLAGS $EXTRA_LDFLAGS ..." 1>&5 +echo "${as_me:-configure}:47494: testing ...checking EXTRA_LDFLAGS $EXTRA_LDFLAGS ..." 1>&5 test -n "$verbose" && echo " ...checking LDFLAGS $LDFLAGS" 1>&6 -echo "${as_me:-configure}:47100: testing ...checking LDFLAGS $LDFLAGS ..." 1>&5 +echo "${as_me:-configure}:47498: testing ...checking LDFLAGS $LDFLAGS ..." 1>&5 cf_rpath_dst= for cf_rpath_src in $LDFLAGS @@ -47134,7 +47532,7 @@ do then test -n "$verbose" && echo " ...Filter $cf_rpath_src ->$cf_rpath_tmp" 1>&6 -echo "${as_me:-configure}:47137: testing ...Filter $cf_rpath_src ->$cf_rpath_tmp ..." 1>&5 +echo "${as_me:-configure}:47535: testing ...Filter $cf_rpath_src ->$cf_rpath_tmp ..." 1>&5 EXTRA_LDFLAGS="$cf_rpath_tmp $EXTRA_LDFLAGS" fi @@ -47147,11 +47545,11 @@ LDFLAGS=$cf_rpath_dst test -n "$verbose" && echo " ...checked LDFLAGS $LDFLAGS" 1>&6 -echo "${as_me:-configure}:47150: testing ...checked LDFLAGS $LDFLAGS ..." 1>&5 +echo "${as_me:-configure}:47548: testing ...checked LDFLAGS $LDFLAGS ..." 1>&5 test -n "$verbose" && echo " ...checking LIBS $LIBS" 1>&6 -echo "${as_me:-configure}:47154: testing ...checking LIBS $LIBS ..." 1>&5 +echo "${as_me:-configure}:47552: testing ...checking LIBS $LIBS ..." 1>&5 cf_rpath_dst= for cf_rpath_src in $LIBS @@ -47188,7 +47586,7 @@ do then test -n "$verbose" && echo " ...Filter $cf_rpath_src ->$cf_rpath_tmp" 1>&6 -echo "${as_me:-configure}:47191: testing ...Filter $cf_rpath_src ->$cf_rpath_tmp ..." 1>&5 +echo "${as_me:-configure}:47589: testing ...Filter $cf_rpath_src ->$cf_rpath_tmp ..." 1>&5 EXTRA_LDFLAGS="$cf_rpath_tmp $EXTRA_LDFLAGS" fi @@ -47201,14 +47599,14 @@ LIBS=$cf_rpath_dst test -n "$verbose" && echo " ...checked LIBS $LIBS" 1>&6 -echo "${as_me:-configure}:47204: testing ...checked LIBS $LIBS ..." 1>&5 +echo "${as_me:-configure}:47602: testing ...checked LIBS $LIBS ..." 1>&5 test -n "$verbose" && echo " ...checked EXTRA_LDFLAGS $EXTRA_LDFLAGS" 1>&6 -echo "${as_me:-configure}:47208: testing ...checked EXTRA_LDFLAGS $EXTRA_LDFLAGS ..." 1>&5 +echo "${as_me:-configure}:47606: testing ...checked EXTRA_LDFLAGS $EXTRA_LDFLAGS ..." 1>&5 else - echo "$as_me:47211: result: no" >&5 + echo "$as_me:47609: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -47315,7 +47713,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:47318: creating $CONFIG_STATUS" >&5 +{ echo "$as_me:47716: creating $CONFIG_STATUS" >&5 echo "$as_me: creating $CONFIG_STATUS" >&6;} cat >$CONFIG_STATUS <<_ACEOF #! $SHELL @@ -47491,7 +47889,7 @@ cat >>$CONFIG_STATUS <<\EOF echo "$ac_cs_version"; exit 0 ;; --he | --h) # Conflict between --help and --header - { { echo "$as_me:47494: error: ambiguous option: $1 + { { echo "$as_me:47892: 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;} @@ -47510,7 +47908,7 @@ Try \`$0 --help' for more information." >&2;} ac_need_defaults=false;; # This is an error. - -*) { { echo "$as_me:47513: error: unrecognized option: $1 + -*) { { echo "$as_me:47911: 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;} @@ -47563,7 +47961,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:47566: error: invalid argument: $ac_config_target" >&5 + *) { { echo "$as_me:47964: error: invalid argument: $ac_config_target" >&5 echo "$as_me: error: invalid argument: $ac_config_target" >&2;} { (exit 1); exit 1; }; };; esac @@ -47917,7 +48315,7 @@ done; } esac if test x"$ac_file" != x-; then - { echo "$as_me:47920: creating $ac_file" >&5 + { echo "$as_me:48318: creating $ac_file" >&5 echo "$as_me: creating $ac_file" >&6;} rm -f "$ac_file" fi @@ -47935,7 +48333,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:47938: error: cannot find input file: $f" >&5 + test -f "$f" || { { echo "$as_me:48336: error: cannot find input file: $f" >&5 echo "$as_me: error: cannot find input file: $f" >&2;} { (exit 1); exit 1; }; } echo $f;; @@ -47948,7 +48346,7 @@ echo "$as_me: error: cannot find input file: $f" >&2;} echo $srcdir/$f else # /dev/null tree - { { echo "$as_me:47951: error: cannot find input file: $f" >&5 + { { echo "$as_me:48349: error: cannot find input file: $f" >&5 echo "$as_me: error: cannot find input file: $f" >&2;} { (exit 1); exit 1; }; } fi;; @@ -47964,7 +48362,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:47967: WARNING: datarootdir was used implicitly but not set: + { echo "$as_me:48365: 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;} @@ -47973,7 +48371,7 @@ $ac_seen" >&2;} fi ac_seen=`grep '${datarootdir}' $ac_item` if test -n "$ac_seen"; then - { echo "$as_me:47976: WARNING: datarootdir was used explicitly but not set: + { echo "$as_me:48374: 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;} @@ -48010,7 +48408,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:48013: WARNING: Variable $ac_name is used but was not set: + { echo "$as_me:48411: 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;} @@ -48021,7 +48419,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:48024: WARNING: Some variables may not be substituted: + { echo "$as_me:48422: WARNING: Some variables may not be substituted: $ac_seen" >&5 echo "$as_me: WARNING: Some variables may not be substituted: $ac_seen" >&2;} @@ -48070,7 +48468,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:48073: creating $ac_file" >&5 + test x"$ac_file" != x- && { echo "$as_me:48471: creating $ac_file" >&5 echo "$as_me: creating $ac_file" >&6;} # First look for the input files in the build tree, otherwise in the @@ -48081,7 +48479,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:48084: error: cannot find input file: $f" >&5 + test -f "$f" || { { echo "$as_me:48482: error: cannot find input file: $f" >&5 echo "$as_me: error: cannot find input file: $f" >&2;} { (exit 1); exit 1; }; } echo $f;; @@ -48094,7 +48492,7 @@ echo "$as_me: error: cannot find input file: $f" >&2;} echo $srcdir/$f else # /dev/null tree - { { echo "$as_me:48097: error: cannot find input file: $f" >&5 + { { echo "$as_me:48495: error: cannot find input file: $f" >&5 echo "$as_me: error: cannot find input file: $f" >&2;} { (exit 1); exit 1; }; } fi;; @@ -48212,7 +48610,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:48215: $ac_file is unchanged" >&5 + { echo "$as_me:48613: $ac_file is unchanged" >&5 echo "$as_me: $ac_file is unchanged" >&6;} else ac_dir=`$as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ diff --git a/src/LYexit.c b/src/LYexit.c index b266117f..8b94048a 100644 --- a/src/LYexit.c +++ b/src/LYexit.c @@ -1,5 +1,5 @@ /* - * $LynxId: LYexit.c,v 1.37 2018/03/21 00:50:51 tom Exp $ + * $LynxId: LYexit.c,v 1.38 2020/02/25 10:14:48 tom Exp $ * * Copyright (c) 1994, University of Kansas, All Rights Reserved * (most of this file was rewritten in 1996 and 2004). @@ -164,7 +164,9 @@ void LYexit(int status) show_alloc(); #if defined(NCURSES_VERSION) && defined(LY_FIND_LEAKS) -#if defined(HAVE__NC_FREE_AND_EXIT) +#if defined(HAVE_CURSES_EXIT) + curses_exit(status); +#elif defined(HAVE__NC_FREE_AND_EXIT) _nc_free_and_exit(status); #elif defined(HAVE__NC_FREEALL) _nc_freeall(); |