diff options
-rw-r--r-- | CHANGES | 12 | ||||
-rw-r--r-- | INSTALLATION | 5 | ||||
-rw-r--r-- | WWW/Library/Implementation/HTWAIS.c | 85 | ||||
-rw-r--r-- | WWW/Library/Implementation/makefile.in | 10 | ||||
-rw-r--r-- | WWW/Library/Implementation/www_tcp.h | 6 | ||||
-rw-r--r-- | WWW/Library/vms/libmake.com | 14 | ||||
-rw-r--r-- | aclocal.m4 | 26 | ||||
-rw-r--r-- | build.com | 36 | ||||
-rw-r--r-- | config.hin | 3 | ||||
-rwxr-xr-x | configure | 6975 | ||||
-rw-r--r-- | configure.in | 22 | ||||
-rw-r--r-- | src/LYUtils.h | 4 | ||||
-rw-r--r-- | src/multinet_ucx.opt | 1 | ||||
-rw-r--r-- | userdefs.h | 8 |
14 files changed, 3752 insertions, 3455 deletions
diff --git a/CHANGES b/CHANGES index 1ffb756b..c966a053 100644 --- a/CHANGES +++ b/CHANGES @@ -1,9 +1,19 @@ --- $LynxId: CHANGES,v 1.484 2010/06/19 11:14:10 tom Exp $ +-- $LynxId: CHANGES,v 1.486 2010/06/19 17:19:38 tom Exp $ =============================================================================== Changes since Lynx 2.8 release =============================================================================== 2010-06-17 (2.8.8dev.4) +* add configure option --enable-wais, for test-compiles with freeWAIS -TD +* fixes to build with VMS -Christoph J Gartmann + + created [.src]multinet_ucx.opt with a single line + multinet_root:[multinet.library]ucx$ipc/LIBRARY + + modified build.com to have an additional option "Multinet with + UCX emulation" + + modified libmake.com for the same reason + + modified [.www.library.implementation]www_tcp.h for the same reason + + provide definition of IS_CJK_TTY for HTWAIS.c by adding include of + LYStrings.h * fix typo in users's guide -PBM * drop mkdirs.sh and MKINSTALLDIRS symbol from makefiles, using "mkdir -p" -TD * limit parsed URIs with new config parameter MAX_URI_SIZE, default 8192 diff --git a/INSTALLATION b/INSTALLATION index bd2c877e..c1c94057 100644 --- a/INSTALLATION +++ b/INSTALLATION @@ -514,6 +514,9 @@ II. Compile instructions -- UNIX --enable-warnings Use this option to turn on GCC compiler warnings. + --enable-wais + Use this option to turn on configure check for freeWAIS library. + --enable-widec Use this option to allow the configure script to look for wide-curses features. If you do not specify the option, the configure script @@ -1381,4 +1384,4 @@ VIII. Acknowledgment -- 1999/04/24 - H. Nelson <lynx-admin@irm.nara.kindai.ac.jp> -- vile:txtmode --- $LynxId: INSTALLATION,v 1.111 2010/04/20 09:44:11 tom Exp $ +-- $LynxId: INSTALLATION,v 1.112 2010/06/19 17:22:59 tom Exp $ diff --git a/WWW/Library/Implementation/HTWAIS.c b/WWW/Library/Implementation/HTWAIS.c index 0e09f761..b04d380f 100644 --- a/WWW/Library/Implementation/HTWAIS.c +++ b/WWW/Library/Implementation/HTWAIS.c @@ -1,5 +1,5 @@ /* - * $LynxId: HTWAIS.c,v 1.31 2008/09/06 15:47:08 tom Exp $ + * $LynxId: HTWAIS.c,v 1.34 2010/06/19 17:43:32 tom Exp $ * * WorldWideWeb - Wide Area Informaion Server Access HTWAIS.c * ================================================== @@ -59,6 +59,10 @@ #include <HTTCP.h> #include <HTCJK.h> #include <HTAlert.h> +#include <LYStrings.h> + +#undef lines /* term.h conflict with wais.h */ +#undef alloca /* alloca.h conflict with wais.h */ /* From WAIS * --------- @@ -66,6 +70,8 @@ #ifdef VMS #include <HTVMS_WaisUI.h> #include <HTVMS_WaisProt.h> +#elif defined(HAVE_WAIS_H) +#include <wais.h> #else #include <ui.h> #endif /* VMS */ @@ -126,7 +132,7 @@ static int fd_mosaic_connect_to_server(char *host_name, int status; int result; - HTSprintf0(&dummy, "%s//%s:%d/", STR_WAIS_URL, host_name, port); + HTSprintf0(&dummy, "%s//%s:%ld/", STR_WAIS_URL, host_name, port); status = HTDoConnect(dummy, "WAIS", 210, (int *) fd); if (status == HT_INTERRUPTED) { @@ -266,14 +272,14 @@ static char *WWW_from_WAIS(any *docid) int i, l; if (TRACE) { - char *p; + char *p2; fprintf(tfp, "WAIS id (%d bytes) is ", (int) docid->size); - for (p = docid->bytes; p < docid->bytes + docid->size; p++) { - if ((*p >= ' ') && (*p <= '~')) /* Assume ASCII! */ - fprintf(tfp, "%c", *p); + for (p2 = docid->bytes; p2 < docid->bytes + docid->size; p2++) { + if ((*p2 >= ' ') && (*p2 <= '~')) /* Assume ASCII! */ + fprintf(tfp, "%c", *p2); else - fprintf(tfp, "<%x>", (unsigned) *p); + fprintf(tfp, "<%x>", (unsigned) *p2); } fprintf(tfp, "\n"); } @@ -284,22 +290,22 @@ static char *WWW_from_WAIS(any *docid) CTRACE((tfp, "Eh? DOCID record type of %d!\n", *p)); return 0; } { /* Bug fix -- allow any byte value 15 Apr 93 */ - unsigned int i = (unsigned) *p++; + unsigned int i2 = (unsigned) *p++; - if (i > 99) { - *q++ = (i / 100) + '0'; - i = i % 100; + if (i2 > 99) { + *q++ = (i2 / 100) + '0'; + i2 = i2 % 100; } - if (i > 9) { - *q++ = (i / 10) + '0'; - i = i % 10; + if (i2 > 9) { + *q++ = (i2 / 10) + '0'; + i2 = i2 % 10; } - *q++ = i + '0'; /* Record type */ + *q++ = i2 + '0'; /* Record type */ } *q++ = '='; /* Separate */ l = *p++; /* Length */ for (i = 0; i < l; i++, p++) { - if (!acceptable[*p]) { + if (!acceptable[UCH(*p)]) { *q++ = HEX_ESCAPE; /* Means hex coming */ *q++ = hex[(*p) >> 4]; *q++ = hex[(*p) & 15]; @@ -389,14 +395,14 @@ static any *WAIS_from_WWW(any *docid, char *docname) } if (TRACE) { - char *p; + char *p2; fprintf(tfp, "WAIS id (%d bytes) is ", (int) docid->size); - for (p = docid->bytes; p < docid->bytes + docid->size; p++) { - if ((*p >= ' ') && (*p <= '~')) /* Assume ASCII! */ - fprintf(tfp, "%c", *p); + for (p2 = docid->bytes; p2 < docid->bytes + docid->size; p2++) { + if ((*p2 >= ' ') && (*p2 <= '~')) /* Assume ASCII! */ + fprintf(tfp, "%c", *p2); else - fprintf(tfp, "<%x>", (unsigned) *p); + fprintf(tfp, "<%x>", (unsigned) *p2); } fprintf(tfp, "\n"); } @@ -409,10 +415,9 @@ static any *WAIS_from_WWW(any *docid, char *docname) */ static void output_text_record(HTStream *target, WAISDocumentText *record, - boolean quote_string_quotes, boolean binary) { - long count; + unsigned long count; /* printf(" Text\n"); print_any(" DocumentID: ", record->DocumentID); @@ -452,18 +457,18 @@ static void output_text_record(HTStream *target, * displays either a text record or a set of headlines. */ static void display_search_response(HTStructured * target, SearchResponseAPDU *response, - char *database, + char *the_database, char *keywords) { WAISSearchResponse *info; long i, k; - BOOL archie = strstr(database, "archie") != 0; /* Special handling */ + BOOL archie = strstr(the_database, "archie") != 0; /* Special handling */ CTRACE((tfp, "HTWAIS: Displaying search response\n")); PUTS(gettext("Index ")); START(HTML_EM); - PUTS(database); + PUTS(the_database); END(HTML_EM); sprintf(line, gettext(" contains the following %d item%s relevant to \""), (int) (response->NumberOfRecordsReturned), @@ -525,7 +530,7 @@ static void display_search_response(HTStructured * target, SearchResponseAPDU *r (!strcmp(head->Types[0], "URL"))) { HTStartAnchor(target, NULL, headline); } else { - char *dbname = HTEscape(database, URL_XPALPHAS); + char *dbname = HTEscape(the_database, URL_XPALPHAS); char *w3_address = NULL; HTSprintf0(&w3_address, @@ -574,7 +579,7 @@ static void display_search_response(HTStructured * target, SearchResponseAPDU *r i++; PUTS(gettext("\nText record\n")); output_text_record((HTStream *) target, - info->Text[k++], false, false); + info->Text[k++], false); } } if (info->Headlines != 0) { @@ -620,14 +625,14 @@ int HTLoadWAIS(const char *arg, long request_buffer_length; /* how of the request is left */ SearchResponseAPDU *retrieval_response = 0; char keywords[MAX_KEYWORDS_LENGTH + 1]; - char *server_name; + char *the_server_name; char *wais_database = NULL; /* name of current database */ char *www_database; /* Same name escaped */ char *service; char *doctype; char *doclength; - long document_length; - char *docname; + long document_length = 0; + char *docname = 0; #ifdef VMS long connection = 0; @@ -661,10 +666,10 @@ int HTLoadWAIS(const char *arg, HTUnEscape(key); } if (names[0] == '/') { - server_name = names + 1; - if ((as_gate = (*server_name == '/')) != 0) - server_name++; /* Accept one or two */ - www_database = strchr(server_name, '/'); + the_server_name = names + 1; + if ((as_gate = (*the_server_name == '/')) != 0) + the_server_name++; /* Accept one or two */ + www_database = strchr(the_server_name, '/'); if (www_database) { *www_database++ = 0; /* Separate database name */ doctype = strchr(www_database, '/'); @@ -703,7 +708,7 @@ int HTLoadWAIS(const char *arg, else service = "210"; - if (server_name[0] == 0) { + if (the_server_name[0] == 0) { #ifdef VMS connection = 0; #else @@ -714,7 +719,7 @@ int HTLoadWAIS(const char *arg, int status; CTRACE((tfp, "===WAIS=== calling mosaic_connect_to_server\n")); - status = mosaic_connect_to_server(server_name, + status = mosaic_connect_to_server(the_server_name, atoi(service), &connection); if (status == 0) { @@ -791,7 +796,7 @@ int HTLoadWAIS(const char *arg, #ifdef CACHE_FILE_PREFIX HTSprintf0(&filename, "%sWSRC-%s:%s:%.100s.txt", CACHE_FILE_PREFIX, - server_name, service, www_database); + the_server_name, service, www_database); fp = fopen(filename, "r"); /* Have we found this already? */ CTRACE((tfp, "HTWAIS: Description of server %s %s.\n", @@ -915,7 +920,7 @@ int HTLoadWAIS(const char *arg, CTRACE((tfp, "HTWAIS: Retrieve document id `%s' type `%s' length %ld\n", - docname, doctype, document_length)); + NonNull(docname), doctype, document_length)); format_in = !strcmp(doctype, "WSRC") ? HTAtom_for("application/x-wais-source") : @@ -1034,7 +1039,7 @@ int HTLoadWAIS(const char *arg, output_text_record(target, ((WAISSearchResponse *) retrieval_response->DatabaseDiagnosticRecords)->Text[0], - false, binary); + binary); } /* If text existed */ #ifdef VMS diff --git a/WWW/Library/Implementation/makefile.in b/WWW/Library/Implementation/makefile.in index a9d87b28..c631b109 100644 --- a/WWW/Library/Implementation/makefile.in +++ b/WWW/Library/Implementation/makefile.in @@ -1,4 +1,4 @@ -# $LynxId: makefile.in,v 1.28 2010/04/30 08:20:28 tom Exp $ +# $LynxId: makefile.in,v 1.29 2010/06/19 17:02:35 tom Exp $ # Make WWW under unix for a.n.other unix system (bsd) # Use this as a template @@ -88,11 +88,11 @@ LOB = . # Only needed if HTWAIS.c is to be compiled. Put into your Makefile.include # uncomment these and fill in WAISINC for adding direct wais access # to Lynx. -#HTWAIS_c = $(CMN)/HTWAIS.c -#HTWAIS_o = $(LOB)/HTWAIS$o -#WAIS = YES +@MAKE_WAIS@HTWAIS_c = $(CMN)/HTWAIS.c +@MAKE_WAIS@HTWAIS_o = $(LOB)/HTWAIS$o +@MAKE_WAIS@WAIS = YES #WAISINC = -I../../../../freeWAIS-0.202/ir -#WAISCFLAGS = -DDIRECT_WAIS +@MAKE_WAIS@WAISCFLAGS = -DDIRECT_WAIS # # add -DNEW_GATEWAY here for the new gateway config stuff diff --git a/WWW/Library/Implementation/www_tcp.h b/WWW/Library/Implementation/www_tcp.h index cc3bddd0..686a97bd 100644 --- a/WWW/Library/Implementation/www_tcp.h +++ b/WWW/Library/Implementation/www_tcp.h @@ -1,5 +1,5 @@ /* System dependencies in the W3 library - * $LynxId: www_tcp.h,v 1.40 2010/06/16 23:46:28 tom Exp $ + * $LynxId: www_tcp.h,v 1.41 2010/06/19 12:41:35 Christoph.J.Gartmann Exp $ * SYSTEM DEPENDENCIES @@ -504,7 +504,11 @@ struct timeval { #include "tcpware_include:ucx$inetdef.h" #else #include <netdb.h> +#ifdef MUCX +#include <multinet_root:[multinet.include.vms]ucx$inetdef.h> +#else #include <ucx$inetdef.h> +#endif /* MUCX */ #endif /* TCPWARE */ #define TCP_INCLUDES_DONE #endif /* UCX */ diff --git a/WWW/Library/vms/libmake.com b/WWW/Library/vms/libmake.com index 014d510a..a3835581 100644 --- a/WWW/Library/vms/libmake.com +++ b/WWW/Library/vms/libmake.com @@ -1,10 +1,12 @@ $ v0 = 0 $ v = f$verify(v0) -$! $LynxId: libmake.com,v 1.12 2007/07/01 16:02:59 tom Exp $ +$! $LynxId: libmake.com,v 1.13 2010/06/19 16:04:14 Christoph.J.Gartmann Exp $ $! LIBMAKE.COM $! $! Command file to build the WWWLibrary on VMS systems. $! +$! 11-Jul-2010 Ch. Gartmann +$! add support for "MULTINETUCX" $! 01-Jul-2007 T.Dickey $! add support for "TCPIP" (TCPIP Services) $! 23-Oct-2004 T.Dickey @@ -67,7 +69,8 @@ $ write sys$output " [5] SOCKETSHR_TCP" $ write sys$output " [6] TCPWARE" $ write sys$output " [7] DECNET" $ write sys$output " [8] TCPIP" -$ read sys$command/prompt="Agent [1,2,3,4,5,6,7,8] (RETURN = [1]) " agent +$ write sys$output " [9] Multinet UCX emulation" +$ read sys$command/prompt="Agent [1,2,3,4,5,6,7,8,9] (RETURN = [1]) " agent $ ENDIF $ if agent .eq. 1 .or. agent .eqs. "" .or. p1 .eqs. "MULTINET" then - transport = "MULTINET" @@ -78,6 +81,11 @@ $ if agent .eq. 5 .or. p1 .eqs. "SOCKETSHR_TCP" then transport = "SOCKETSHR_TCP" $ if agent .eq. 6 .or. p1 .eqs. "TCPWARE" then transport = "TCPWARE" $ if agent .eq. 7 .or. p1 .eqs. "DECNET" then transport = "DECNET" $ if agent .eq. 8 .or. p1 .eqs. "TCPIP" then transport = "TCPIP" +$ IF agent .EQ. 9 .OR. P1 .EQS. "MULTINETUCX" +$ THEN +$ transport = "UCX" +$ extra_defs = extra_defs + ",MUCX" +$ ENDIF $! $ if transport .eqs. "SOCKETSHR_TCP" then extra_defs = extra_defs + ",_DECC_V4_SOURCE" $ if transport .eqs. "TCPIP" then extra_defs = extra_defs + ",_DECC_V4_SOURCE,TCPIP_SERVICES" @@ -107,6 +115,8 @@ $ endif $ if value_parm .eqs. "SSL" $ then $ write sys$output "** adding SSL to build." +$ IF F$TYPE( ssl_lib ) .EQS. "" THEN ssl_lib = F$TRNLNM("SSLLIB") +$ IF F$TYPE( ssl_inc ) .EQS. "" THEN ssl_inc = F$TRNLNM("SSLINCLUDE") $ extra_defs = extra_defs + ",USE_SSL,USE_OPENSSL_INCL" $ extra_libs = extra_libs + "," + SSL_LIB + "libssl/LIB," + SSL_LIB + "libcrypto/LIB" $! diff --git a/aclocal.m4 b/aclocal.m4 index 75eb6563..8c37b543 100644 --- a/aclocal.m4 +++ b/aclocal.m4 @@ -1,4 +1,4 @@ -dnl $LynxId: aclocal.m4,v 1.161 2010/06/19 11:04:07 tom Exp $ +dnl $LynxId: aclocal.m4,v 1.162 2010/06/19 17:08:42 tom Exp $ dnl Macros for auto-configure script. dnl by T.E.Dickey <dickey@invisible-island.net> dnl and Jim Spath <jspath@mail.bcpl.lib.md.us> @@ -3254,6 +3254,30 @@ AC_MSG_RESULT($cf_cv_locale) test $cf_cv_locale = yes && { ifelse($1,,AC_DEFINE(LOCALE),[$1]) } ])dnl dnl --------------------------------------------------------------------------- +dnl CF_MATH_LIB version: 6 updated: 2009/12/19 13:46:49 +dnl ----------- +dnl Checks for libraries. At least one UNIX system, Apple Macintosh +dnl Rhapsody 5.5, does not have -lm. We cannot use the simpler +dnl AC_CHECK_LIB(m,sin), because that fails for C++. +AC_DEFUN([CF_MATH_LIB], +[ +AC_CACHE_CHECK(if -lm needed for math functions, + cf_cv_need_libm,[ + AC_TRY_LINK([ + #include <stdio.h> + #include <math.h> + ], + [double x = rand(); printf("result = %g\n", ]ifelse($2,,sin(x),$2)[)], + [cf_cv_need_libm=no], + [cf_cv_need_libm=yes])]) +if test "$cf_cv_need_libm" = yes +then +ifelse($1,,[ + LIBS="-lm $LIBS" +],[$1=-lm]) +fi +]) +dnl --------------------------------------------------------------------------- dnl CF_MSG_LOG version: 4 updated: 2007/07/29 09:55:12 dnl ---------- dnl Write a debug message to config.log, along with the line number in the diff --git a/build.com b/build.com index 27383a57..8fa94a6a 100644 --- a/build.com +++ b/build.com @@ -1,12 +1,15 @@ $ v0 = 0 $ v = f$verify(v0) -$! $LynxId: build.com,v 1.15 2008/01/08 00:19:25 tom Exp $ +$! $LynxId: build.com,v 1.17 2010/06/19 16:01:33 Christoph.J.Gartmann Exp $ $! BUILD.COM $! $! Command file to build LYNX.EXE on VMS systems. $! Also invokes build of the WWWLibrary if its $! object library does not already exist. $! +$! +$! 11-Jun-2010 Ch. Gartmann +$! add support for "Multinet UCX emulation" $! 01-Jul-2007 T.Dickey $! add support for "TCPIP" (TCPIP Services) $! 04-Nov-2004 T.Dickey @@ -102,7 +105,8 @@ $ write sys$output " [5] SOCKETSHR_TCP" $ write sys$output " [6] TCPWARE" $ write sys$output " [7] DECNET" $ write sys$output " [8] TCPIP" -$ read sys$command/prompt="Agent [1,2,3,4,5,6,7,8] (RETURN = [1]) " agent +$ write sys$output " [9] Multinet with UCX emulation" +$ read sys$command/prompt="Agent [1,2,3,4,5,6,7,8,9] (RETURN = [1]) " agent $ EndIf $ ENDIF $ option = "" @@ -115,13 +119,21 @@ $ if agent .eq. 5 .or. p1 .eqs. "SOCKETSHR_TCP" then option = "SOCKETSHR_TCP" $ if agent .eq. 6 .or. p1 .eqs. "TCPWARE" then option = "TCPWARE" $ if agent .eq. 7 .or. p1 .eqs. "DECNET" then option = "DECNET" $ if agent .eq. 8 .or. p1 .eqs. "TCPIP" then option = "TCPIP" +$ if agent .eq. 9 .or. p1 .eqs. "MULTINETUCX" +$ then +$ option = "UCX" +$ mucx = 1 +$ extra_defs = extra_defs + ",MUCX" +$ ELSE +$ mucx = 0 +$ ENDIF $! $ if option .eqs. "" $ then $ write sys$output "TCP/IP agent could not be determined" $ exit 18 $ endif -$ +$! $ if option .eqs. "TCPWARE" $ then $ write sys$output "Building Lynx for TCPWARE with UCX emulation..." @@ -171,6 +183,8 @@ $ endif $ if value_parm .eqs. "SSL" $ then $ write sys$output "** adding SSL to build." +$ IF F$TYPE( ssl_lib ) .EQS. "" THEN ssl_lib = F$TRNLNM("SSLLIB") +$ IF F$TYPE( ssl_inc ) .EQS. "" THEN ssl_inc = F$TRNLNM("SSLINCLUDE") $ extra_defs = extra_defs + ",USE_SSL,USE_OPENSSL_INCL" $ extra_libs = extra_libs + "," + SSL_LIB + "libssl/LIB," + SSL_LIB + "libcrypto/LIB" $! @@ -271,7 +285,11 @@ $ IF f$getsyi("ARCH_NAME") .eqs. "Alpha" .or. - $ THEN $ compiler := "DECC" $! -$ if option .eqs. "UCX" then optfile = "UCXSHR" +$ if option .eqs. "UCX" +$ then +$ optfile = "UCXSHR" +$ IF mucx THEN optfile = "MULTINET_UCX" +$ ENDIF $ if option .eqs. "TCPIP" then optfile = "TCPIPSHR" $ if option .eqs. "TCPWARE" then optfile = "TCPWARESHR" $! @@ -287,7 +305,11 @@ $ cc := cc/decc/prefix=all/nomember'cc_opts' - /INCLUDE=([],[-],[-.WWW.Library.Implementation],[.chrtrans]'extra_incs') $ v1 = f$verify(v0) $ ELSE -$ if option .eqs. "UCX" then optfile = "UCXOLB" +$ IF option .eqs. "UCX" +$ THEN +$ optfile = "UCXSHR" +$ IF mucx THEN optfile = "MULTINET_UCX" +$ ENDIF $ if option .eqs. "TCPIP" then optfile = "TCPIPOLB" $ if option .eqs. "TCPWARE" then optfile = "TCPWAREOLB" $ IF f$search("gnu_cc:[000000]gcclib.olb") .nes. "" @@ -339,6 +361,7 @@ $ cc LYMail $ cc LYMain $ cc LYMainLoop $ cc LYMap +$ cc LYMktime $ cc LYNews $ cc LYOptions $ cc LYPrint @@ -351,6 +374,7 @@ $ cc LYStrings $ cc LYTraversal $ cc LYUpload $ cc LYUtils +$ cc PARSDATE $ cc TRSTable $ cc UCAuto $ cc UCAux @@ -394,6 +418,7 @@ LYMail.obj, - LYMain.obj, - LYMainLoop.obj, - LYMap.obj, - +LYMktime.obj, - LYNews.obj, - LYOptions.obj, - LYPrint.obj, - @@ -406,6 +431,7 @@ LYStrings.obj, - LYTraversal.obj, - LYUpload.obj, - LYUtils.obj, - +Parsdate.obj, - TRSTable.obj, - UCAuto.obj, - UCAux.obj, - diff --git a/config.hin b/config.hin index 47ada330..269dd30e 100644 --- a/config.hin +++ b/config.hin @@ -1,5 +1,5 @@ /* - * $LynxId: config.hin,v 1.117 2010/04/20 22:52:37 tom Exp $ + * $LynxId: config.hin,v 1.118 2010/06/19 17:00:06 tom Exp $ * vile:cmode * * The configure script translates "config.hin" into "lynx_cfg.h" @@ -166,6 +166,7 @@ #undef HAVE_VARARGS_H /* CF_VARARGS */ #undef HAVE_VASPRINTF #undef HAVE_VFORK_H /* have <vfork.h> */ +#undef HAVE_WAIS_H #undef HAVE_WAITPID #undef HAVE_WATTR_GET #undef HAVE_WBORDER diff --git a/configure b/configure index c5790fa5..706b4fa1 100755 --- a/configure +++ b/configure @@ -773,6 +773,7 @@ Other Network Services: --disable-gopher disable GOPHER logic --disable-news disable NEWS logic --disable-ftp disable FTP logic + --enable-wais enable WAIS logic Directory Editor Options: --disable-dired disable optional directory-editor, DirEd --disable-dired-dearchive disable dearchiving commands @@ -985,7 +986,7 @@ if test -z "$CONFIG_SITE"; then fi for ac_site_file in $CONFIG_SITE; do if test -r "$ac_site_file"; then - { echo "$as_me:988: loading site script $ac_site_file" >&5 + { echo "$as_me:989: loading site script $ac_site_file" >&5 echo "$as_me: loading site script $ac_site_file" >&6;} cat "$ac_site_file" >&5 . "$ac_site_file" @@ -996,7 +997,7 @@ if test -r "$cache_file"; then # Some versions of bash will fail to source /dev/null (special # files actually), so we avoid doing that. if test -f "$cache_file"; then - { echo "$as_me:999: loading cache $cache_file" >&5 + { echo "$as_me:1000: loading cache $cache_file" >&5 echo "$as_me: loading cache $cache_file" >&6;} case $cache_file in [\\/]* | ?:[\\/]* ) . $cache_file;; @@ -1004,7 +1005,7 @@ echo "$as_me: loading cache $cache_file" >&6;} esac fi else - { echo "$as_me:1007: creating cache $cache_file" >&5 + { echo "$as_me:1008: creating cache $cache_file" >&5 echo "$as_me: creating cache $cache_file" >&6;} >$cache_file fi @@ -1020,21 +1021,21 @@ for ac_var in `(set) 2>&1 | eval ac_new_val="\$ac_env_${ac_var}_value" case $ac_old_set,$ac_new_set in set,) - { echo "$as_me:1023: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&5 + { echo "$as_me:1024: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&5 echo "$as_me: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&2;} ac_cache_corrupted=: ;; ,set) - { echo "$as_me:1027: error: \`$ac_var' was not set in the previous run" >&5 + { echo "$as_me:1028: error: \`$ac_var' was not set in the previous run" >&5 echo "$as_me: error: \`$ac_var' was not set in the previous run" >&2;} ac_cache_corrupted=: ;; ,);; *) if test "x$ac_old_val" != "x$ac_new_val"; then - { echo "$as_me:1033: error: \`$ac_var' has changed since the previous run:" >&5 + { echo "$as_me:1034: error: \`$ac_var' has changed since the previous run:" >&5 echo "$as_me: error: \`$ac_var' has changed since the previous run:" >&2;} - { echo "$as_me:1035: former value: $ac_old_val" >&5 + { echo "$as_me:1036: former value: $ac_old_val" >&5 echo "$as_me: former value: $ac_old_val" >&2;} - { echo "$as_me:1037: current value: $ac_new_val" >&5 + { echo "$as_me:1038: current value: $ac_new_val" >&5 echo "$as_me: current value: $ac_new_val" >&2;} ac_cache_corrupted=: fi;; @@ -1053,9 +1054,9 @@ echo "$as_me: current value: $ac_new_val" >&2;} fi done if $ac_cache_corrupted; then - { echo "$as_me:1056: error: changes in the environment can compromise the build" >&5 + { echo "$as_me:1057: error: changes in the environment can compromise the build" >&5 echo "$as_me: error: changes in the environment can compromise the build" >&2;} - { { echo "$as_me:1058: error: run \`make distclean' and/or \`rm $cache_file' and start over" >&5 + { { echo "$as_me:1059: error: run \`make distclean' and/or \`rm $cache_file' and start over" >&5 echo "$as_me: error: run \`make distclean' and/or \`rm $cache_file' and start over" >&2;} { (exit 1); exit 1; }; } fi @@ -1076,10 +1077,10 @@ esac echo "#! $SHELL" >conftest.sh echo "exit 0" >>conftest.sh chmod +x conftest.sh -if { (echo "$as_me:1079: PATH=\".;.\"; conftest.sh") >&5 +if { (echo "$as_me:1080: PATH=\".;.\"; conftest.sh") >&5 (PATH=".;."; conftest.sh) 2>&5 ac_status=$? - echo "$as_me:1082: \$? = $ac_status" >&5 + echo "$as_me:1083: \$? = $ac_status" >&5 (exit $ac_status); }; then ac_path_separator=';' else @@ -1114,7 +1115,7 @@ for ac_dir in $srcdir $srcdir/.. $srcdir/../..; do fi done if test -z "$ac_aux_dir"; then - { { echo "$as_me:1117: error: cannot find install-sh or install.sh in $srcdir $srcdir/.. $srcdir/../.." >&5 + { { echo "$as_me:1118: error: cannot find install-sh or install.sh in $srcdir $srcdir/.. $srcdir/../.." >&5 echo "$as_me: error: cannot find install-sh or install.sh in $srcdir $srcdir/.. $srcdir/../.." >&2;} { (exit 1); exit 1; }; } fi @@ -1124,11 +1125,11 @@ ac_configure="$SHELL $ac_aux_dir/configure" # This should be Cygnus configure. # Make sure we can run config.sub. $ac_config_sub sun4 >/dev/null 2>&1 || - { { echo "$as_me:1127: error: cannot run $ac_config_sub" >&5 + { { echo "$as_me:1128: error: cannot run $ac_config_sub" >&5 echo "$as_me: error: cannot run $ac_config_sub" >&2;} { (exit 1); exit 1; }; } -echo "$as_me:1131: checking build system type" >&5 +echo "$as_me:1132: checking build system type" >&5 echo $ECHO_N "checking build system type... $ECHO_C" >&6 if test "${ac_cv_build+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -1137,23 +1138,23 @@ else test -z "$ac_cv_build_alias" && ac_cv_build_alias=`$ac_config_guess` test -z "$ac_cv_build_alias" && - { { echo "$as_me:1140: error: cannot guess build type; you must specify one" >&5 + { { echo "$as_me:1141: error: cannot guess build type; you must specify one" >&5 echo "$as_me: error: cannot guess build type; you must specify one" >&2;} { (exit 1); exit 1; }; } ac_cv_build=`$ac_config_sub $ac_cv_build_alias` || - { { echo "$as_me:1144: error: $ac_config_sub $ac_cv_build_alias failed." >&5 + { { echo "$as_me:1145: error: $ac_config_sub $ac_cv_build_alias failed." >&5 echo "$as_me: error: $ac_config_sub $ac_cv_build_alias failed." >&2;} { (exit 1); exit 1; }; } fi -echo "$as_me:1149: result: $ac_cv_build" >&5 +echo "$as_me:1150: result: $ac_cv_build" >&5 echo "${ECHO_T}$ac_cv_build" >&6 build=$ac_cv_build build_cpu=`echo $ac_cv_build | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\1/'` build_vendor=`echo $ac_cv_build | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\2/'` build_os=`echo $ac_cv_build | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\3/'` -echo "$as_me:1156: checking host system type" >&5 +echo "$as_me:1157: checking host system type" >&5 echo $ECHO_N "checking host system type... $ECHO_C" >&6 if test "${ac_cv_host+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -1162,12 +1163,12 @@ else test -z "$ac_cv_host_alias" && ac_cv_host_alias=$ac_cv_build_alias ac_cv_host=`$ac_config_sub $ac_cv_host_alias` || - { { echo "$as_me:1165: error: $ac_config_sub $ac_cv_host_alias failed" >&5 + { { echo "$as_me:1166: error: $ac_config_sub $ac_cv_host_alias failed" >&5 echo "$as_me: error: $ac_config_sub $ac_cv_host_alias failed" >&2;} { (exit 1); exit 1; }; } fi -echo "$as_me:1170: result: $ac_cv_host" >&5 +echo "$as_me:1171: result: $ac_cv_host" >&5 echo "${ECHO_T}$ac_cv_host" >&6 host=$ac_cv_host host_cpu=`echo $ac_cv_host | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\1/'` @@ -1175,7 +1176,7 @@ host_vendor=`echo $ac_cv_host | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\2/'` host_os=`echo $ac_cv_host | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\3/'` if test -f $srcdir/config.guess || test -f $ac_aux_dir/config.guess ; then - echo "$as_me:1178: checking target system type" >&5 + echo "$as_me:1179: checking target system type" >&5 echo $ECHO_N "checking target system type... $ECHO_C" >&6 if test "${ac_cv_target+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -1184,12 +1185,12 @@ else test "x$ac_cv_target_alias" = "x" && ac_cv_target_alias=$ac_cv_host_alias ac_cv_target=`$ac_config_sub $ac_cv_target_alias` || - { { echo "$as_me:1187: error: $ac_config_sub $ac_cv_target_alias failed" >&5 + { { echo "$as_me:1188: error: $ac_config_sub $ac_cv_target_alias failed" >&5 echo "$as_me: error: $ac_config_sub $ac_cv_target_alias failed" >&2;} { (exit 1); exit 1; }; } fi -echo "$as_me:1192: result: $ac_cv_target" >&5 +echo "$as_me:1193: result: $ac_cv_target" >&5 echo "${ECHO_T}$ac_cv_target" >&6 target=$ac_cv_target target_cpu=`echo $ac_cv_target | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\1/'` @@ -1220,13 +1221,13 @@ else fi test -z "$system_name" && system_name="$cf_cv_system_name" -test -n "$cf_cv_system_name" && echo "$as_me:1223: result: Configuring for $cf_cv_system_name" >&5 +test -n "$cf_cv_system_name" && echo "$as_me:1224: result: Configuring for $cf_cv_system_name" >&5 echo "${ECHO_T}Configuring for $cf_cv_system_name" >&6 if test ".$system_name" != ".$cf_cv_system_name" ; then - echo "$as_me:1227: result: Cached system name ($system_name) does not agree with actual ($cf_cv_system_name)" >&5 + echo "$as_me:1228: result: Cached system name ($system_name) does not agree with actual ($cf_cv_system_name)" >&5 echo "${ECHO_T}Cached system name ($system_name) does not agree with actual ($cf_cv_system_name)" >&6 - { { echo "$as_me:1229: error: \"Please remove config.cache and try again.\"" >&5 + { { echo "$as_me:1230: error: \"Please remove config.cache and try again.\"" >&5 echo "$as_me: error: \"Please remove config.cache and try again.\"" >&2;} { (exit 1); exit 1; }; } fi @@ -1234,7 +1235,7 @@ fi # Check whether --with-system-type or --without-system-type was given. if test "${with_system_type+set}" = set; then withval="$with_system_type" - { echo "$as_me:1237: WARNING: overriding system type $host_os to $withval" >&5 + { echo "$as_me:1238: WARNING: overriding system type $host_os to $withval" >&5 echo "$as_me: WARNING: overriding system type $host_os to $withval" >&2;} host_os=$withval fi; @@ -1243,7 +1244,7 @@ PACKAGE=lynx # $Format: "VERSION=$ProjectVersion$"$ VERSION=2.8.8dev.3 -echo "$as_me:1246: checking for DESTDIR" >&5 +echo "$as_me:1247: checking for DESTDIR" >&5 echo $ECHO_N "checking for DESTDIR... $ECHO_C" >&6 # Check whether --with-destdir or --without-destdir was given. @@ -1279,7 +1280,7 @@ case ".$withval" in #(vi withval=`echo $withval | sed -e s%NONE%$cf_path_syntax%` ;; *) - { { echo "$as_me:1282: error: expected a pathname, not \"$withval\"" >&5 + { { echo "$as_me:1283: error: expected a pathname, not \"$withval\"" >&5 echo "$as_me: error: expected a pathname, not \"$withval\"" >&2;} { (exit 1); exit 1; }; } ;; @@ -1288,7 +1289,7 @@ esac fi DESTDIR="$withval" -echo "$as_me:1291: result: $DESTDIR" >&5 +echo "$as_me:1292: result: $DESTDIR" >&5 echo "${ECHO_T}$DESTDIR" >&6 case $host_os in @@ -1307,7 +1308,7 @@ ac_main_return=return if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}gcc", so it can be a program name with args. set dummy ${ac_tool_prefix}gcc; ac_word=$2 -echo "$as_me:1310: checking for $ac_word" >&5 +echo "$as_me:1311: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_prog_CC+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -1322,7 +1323,7 @@ for ac_dir in $ac_dummy; do test -z "$ac_dir" && ac_dir=. $as_executable_p "$ac_dir/$ac_word" || continue ac_cv_prog_CC="${ac_tool_prefix}gcc" -echo "$as_me:1325: found $ac_dir/$ac_word" >&5 +echo "$as_me:1326: found $ac_dir/$ac_word" >&5 break done @@ -1330,10 +1331,10 @@ fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then - echo "$as_me:1333: result: $CC" >&5 + echo "$as_me:1334: result: $CC" >&5 echo "${ECHO_T}$CC" >&6 else - echo "$as_me:1336: result: no" >&5 + echo "$as_me:1337: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -1342,7 +1343,7 @@ if test -z "$ac_cv_prog_CC"; then ac_ct_CC=$CC # Extract the first word of "gcc", so it can be a program name with args. set dummy gcc; ac_word=$2 -echo "$as_me:1345: checking for $ac_word" >&5 +echo "$as_me:1346: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_prog_ac_ct_CC+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -1357,7 +1358,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_CC="gcc" -echo "$as_me:1360: found $ac_dir/$ac_word" >&5 +echo "$as_me:1361: found $ac_dir/$ac_word" >&5 break done @@ -1365,10 +1366,10 @@ fi fi ac_ct_CC=$ac_cv_prog_ac_ct_CC if test -n "$ac_ct_CC"; then - echo "$as_me:1368: result: $ac_ct_CC" >&5 + echo "$as_me:1369: result: $ac_ct_CC" >&5 echo "${ECHO_T}$ac_ct_CC" >&6 else - echo "$as_me:1371: result: no" >&5 + echo "$as_me:1372: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -1381,7 +1382,7 @@ if test -z "$CC"; then if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}cc", so it can be a program name with args. set dummy ${ac_tool_prefix}cc; ac_word=$2 -echo "$as_me:1384: checking for $ac_word" >&5 +echo "$as_me:1385: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_prog_CC+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -1396,7 +1397,7 @@ for ac_dir in $ac_dummy; do test -z "$ac_dir" && ac_dir=. $as_executable_p "$ac_dir/$ac_word" || continue ac_cv_prog_CC="${ac_tool_prefix}cc" -echo "$as_me:1399: found $ac_dir/$ac_word" >&5 +echo "$as_me:1400: found $ac_dir/$ac_word" >&5 break done @@ -1404,10 +1405,10 @@ fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then - echo "$as_me:1407: result: $CC" >&5 + echo "$as_me:1408: result: $CC" >&5 echo "${ECHO_T}$CC" >&6 else - echo "$as_me:1410: result: no" >&5 + echo "$as_me:1411: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -1416,7 +1417,7 @@ if test -z "$ac_cv_prog_CC"; then ac_ct_CC=$CC # Extract the first word of "cc", so it can be a program name with args. set dummy cc; ac_word=$2 -echo "$as_me:1419: checking for $ac_word" >&5 +echo "$as_me:1420: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_prog_ac_ct_CC+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -1431,7 +1432,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_CC="cc" -echo "$as_me:1434: found $ac_dir/$ac_word" >&5 +echo "$as_me:1435: found $ac_dir/$ac_word" >&5 break done @@ -1439,10 +1440,10 @@ fi fi ac_ct_CC=$ac_cv_prog_ac_ct_CC if test -n "$ac_ct_CC"; then - echo "$as_me:1442: result: $ac_ct_CC" >&5 + echo "$as_me:1443: result: $ac_ct_CC" >&5 echo "${ECHO_T}$ac_ct_CC" >&6 else - echo "$as_me:1445: result: no" >&5 + echo "$as_me:1446: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -1455,7 +1456,7 @@ fi if test -z "$CC"; then # Extract the first word of "cc", so it can be a program name with args. set dummy cc; ac_word=$2 -echo "$as_me:1458: checking for $ac_word" >&5 +echo "$as_me:1459: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_prog_CC+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -1475,7 +1476,7 @@ if test "$ac_dir/$ac_word" = "/usr/ucb/cc"; then continue fi ac_cv_prog_CC="cc" -echo "$as_me:1478: found $ac_dir/$ac_word" >&5 +echo "$as_me:1479: found $ac_dir/$ac_word" >&5 break done @@ -1497,10 +1498,10 @@ fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then - echo "$as_me:1500: result: $CC" >&5 + echo "$as_me:1501: result: $CC" >&5 echo "${ECHO_T}$CC" >&6 else - echo "$as_me:1503: result: no" >&5 + echo "$as_me:1504: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -1511,7 +1512,7 @@ if test -z "$CC"; 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:1514: checking for $ac_word" >&5 +echo "$as_me:1515: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_prog_CC+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -1526,7 +1527,7 @@ for ac_dir in $ac_dummy; do test -z "$ac_dir" && ac_dir=. $as_executable_p "$ac_dir/$ac_word" || continue ac_cv_prog_CC="$ac_tool_prefix$ac_prog" -echo "$as_me:1529: found $ac_dir/$ac_word" >&5 +echo "$as_me:1530: found $ac_dir/$ac_word" >&5 break done @@ -1534,10 +1535,10 @@ fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then - echo "$as_me:1537: result: $CC" >&5 + echo "$as_me:1538: result: $CC" >&5 echo "${ECHO_T}$CC" >&6 else - echo "$as_me:1540: result: no" >&5 + echo "$as_me:1541: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -1550,7 +1551,7 @@ if test -z "$CC"; 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:1553: checking for $ac_word" >&5 +echo "$as_me:1554: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_prog_ac_ct_CC+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -1565,7 +1566,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_CC="$ac_prog" -echo "$as_me:1568: found $ac_dir/$ac_word" >&5 +echo "$as_me:1569: found $ac_dir/$ac_word" >&5 break done @@ -1573,10 +1574,10 @@ fi fi ac_ct_CC=$ac_cv_prog_ac_ct_CC if test -n "$ac_ct_CC"; then - echo "$as_me:1576: result: $ac_ct_CC" >&5 + echo "$as_me:1577: result: $ac_ct_CC" >&5 echo "${ECHO_T}$ac_ct_CC" >&6 else - echo "$as_me:1579: result: no" >&5 + echo "$as_me:1580: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -1588,32 +1589,32 @@ fi fi -test -z "$CC" && { { echo "$as_me:1591: error: no acceptable cc found in \$PATH" >&5 +test -z "$CC" && { { echo "$as_me:1592: error: no acceptable cc found in \$PATH" >&5 echo "$as_me: error: no acceptable cc found in \$PATH" >&2;} { (exit 1); exit 1; }; } # Provide some information about the compiler. -echo "$as_me:1596:" \ +echo "$as_me:1597:" \ "checking for C compiler version" >&5 ac_compiler=`set X $ac_compile; echo $2` -{ (eval echo "$as_me:1599: \"$ac_compiler --version </dev/null >&5\"") >&5 +{ (eval echo "$as_me:1600: \"$ac_compiler --version </dev/null >&5\"") >&5 (eval $ac_compiler --version </dev/null >&5) 2>&5 ac_status=$? - echo "$as_me:1602: \$? = $ac_status" >&5 + echo "$as_me:1603: \$? = $ac_status" >&5 (exit $ac_status); } -{ (eval echo "$as_me:1604: \"$ac_compiler -v </dev/null >&5\"") >&5 +{ (eval echo "$as_me:1605: \"$ac_compiler -v </dev/null >&5\"") >&5 (eval $ac_compiler -v </dev/null >&5) 2>&5 ac_status=$? - echo "$as_me:1607: \$? = $ac_status" >&5 + echo "$as_me:1608: \$? = $ac_status" >&5 (exit $ac_status); } -{ (eval echo "$as_me:1609: \"$ac_compiler -V </dev/null >&5\"") >&5 +{ (eval echo "$as_me:1610: \"$ac_compiler -V </dev/null >&5\"") >&5 (eval $ac_compiler -V </dev/null >&5) 2>&5 ac_status=$? - echo "$as_me:1612: \$? = $ac_status" >&5 + echo "$as_me:1613: \$? = $ac_status" >&5 (exit $ac_status); } cat >conftest.$ac_ext <<_ACEOF -#line 1616 "configure" +#line 1617 "configure" #include "confdefs.h" int @@ -1629,13 +1630,13 @@ ac_clean_files="$ac_clean_files a.out a.exe" # Try to create an executable without -o first, disregard a.out. # It will help us diagnose broken compilers, and finding out an intuition # of exeext. -echo "$as_me:1632: checking for C compiler default output" >&5 +echo "$as_me:1633: checking for C compiler default output" >&5 echo $ECHO_N "checking for C compiler default output... $ECHO_C" >&6 ac_link_default=`echo "$ac_link" | sed 's/ -o *conftest[^ ]*//'` -if { (eval echo "$as_me:1635: \"$ac_link_default\"") >&5 +if { (eval echo "$as_me:1636: \"$ac_link_default\"") >&5 (eval $ac_link_default) 2>&5 ac_status=$? - echo "$as_me:1638: \$? = $ac_status" >&5 + echo "$as_me:1639: \$? = $ac_status" >&5 (exit $ac_status); }; then # Find the output, starting from the most likely. This scheme is # not robust to junk in `.', hence go to wildcards (a.*) only as a last @@ -1658,34 +1659,34 @@ done else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 -{ { echo "$as_me:1661: error: C compiler cannot create executables" >&5 +{ { echo "$as_me:1662: error: C compiler cannot create executables" >&5 echo "$as_me: error: C compiler cannot create executables" >&2;} { (exit 77); exit 77; }; } fi ac_exeext=$ac_cv_exeext -echo "$as_me:1667: result: $ac_file" >&5 +echo "$as_me:1668: result: $ac_file" >&5 echo "${ECHO_T}$ac_file" >&6 # Check the compiler produces executables we can run. If not, either # the compiler is broken, or we cross compile. -echo "$as_me:1672: checking whether the C compiler works" >&5 +echo "$as_me:1673: checking whether the C compiler works" >&5 echo $ECHO_N "checking whether the C compiler works... $ECHO_C" >&6 # FIXME: These cross compiler hacks should be removed for Autoconf 3.0 # If not cross compiling, check that we can run a simple program. if test "$cross_compiling" != yes; then if { ac_try='./$ac_file' - { (eval echo "$as_me:1678: \"$ac_try\"") >&5 + { (eval echo "$as_me:1679: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:1681: \$? = $ac_status" >&5 + echo "$as_me:1682: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cross_compiling=no else if test "$cross_compiling" = maybe; then cross_compiling=yes else - { { echo "$as_me:1688: error: cannot run C compiled programs. + { { echo "$as_me:1689: error: cannot run C compiled programs. If you meant to cross compile, use \`--host'." >&5 echo "$as_me: error: cannot run C compiled programs. If you meant to cross compile, use \`--host'." >&2;} @@ -1693,24 +1694,24 @@ If you meant to cross compile, use \`--host'." >&2;} fi fi fi -echo "$as_me:1696: result: yes" >&5 +echo "$as_me:1697: result: yes" >&5 echo "${ECHO_T}yes" >&6 rm -f a.out a.exe conftest$ac_cv_exeext ac_clean_files=$ac_clean_files_save # Check the compiler produces executables we can run. If not, either # the compiler is broken, or we cross compile. -echo "$as_me:1703: checking whether we are cross compiling" >&5 +echo "$as_me:1704: checking whether we are cross compiling" >&5 echo $ECHO_N "checking whether we are cross compiling... $ECHO_C" >&6 -echo "$as_me:1705: result: $cross_compiling" >&5 +echo "$as_me:1706: result: $cross_compiling" >&5 echo "${ECHO_T}$cross_compiling" >&6 -echo "$as_me:1708: checking for executable suffix" >&5 +echo "$as_me:1709: checking for executable suffix" >&5 echo $ECHO_N "checking for executable suffix... $ECHO_C" >&6 -if { (eval echo "$as_me:1710: \"$ac_link\"") >&5 +if { (eval echo "$as_me:1711: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:1713: \$? = $ac_status" >&5 + echo "$as_me:1714: \$? = $ac_status" >&5 (exit $ac_status); }; then # If both `conftest.exe' and `conftest' are `present' (well, observable) # catch `conftest.exe'. For instance with Cygwin, `ls conftest' will @@ -1726,25 +1727,25 @@ for ac_file in `(ls conftest.exe; ls conftest; ls conftest.*) 2>/dev/null`; do esac done else - { { echo "$as_me:1729: error: cannot compute EXEEXT: cannot compile and link" >&5 + { { echo "$as_me:1730: error: cannot compute EXEEXT: cannot compile and link" >&5 echo "$as_me: error: cannot compute EXEEXT: cannot compile and link" >&2;} { (exit 1); exit 1; }; } fi rm -f conftest$ac_cv_exeext -echo "$as_me:1735: result: $ac_cv_exeext" >&5 +echo "$as_me:1736: result: $ac_cv_exeext" >&5 echo "${ECHO_T}$ac_cv_exeext" >&6 rm -f conftest.$ac_ext EXEEXT=$ac_cv_exeext ac_exeext=$EXEEXT -echo "$as_me:1741: checking for object suffix" >&5 +echo "$as_me:1742: checking for object suffix" >&5 echo $ECHO_N "checking for object suffix... $ECHO_C" >&6 if test "${ac_cv_objext+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 1747 "configure" +#line 1748 "configure" #include "confdefs.h" int @@ -1756,10 +1757,10 @@ main () } _ACEOF rm -f conftest.o conftest.obj -if { (eval echo "$as_me:1759: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:1760: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:1762: \$? = $ac_status" >&5 + echo "$as_me:1763: \$? = $ac_status" >&5 (exit $ac_status); }; then for ac_file in `(ls conftest.o conftest.obj; ls conftest.*) 2>/dev/null`; do case $ac_file in @@ -1771,24 +1772,24 @@ done else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 -{ { echo "$as_me:1774: error: cannot compute OBJEXT: cannot compile" >&5 +{ { echo "$as_me:1775: error: cannot compute OBJEXT: cannot compile" >&5 echo "$as_me: error: cannot compute OBJEXT: cannot compile" >&2;} { (exit 1); exit 1; }; } fi rm -f conftest.$ac_cv_objext conftest.$ac_ext fi -echo "$as_me:1781: result: $ac_cv_objext" >&5 +echo "$as_me:1782: result: $ac_cv_objext" >&5 echo "${ECHO_T}$ac_cv_objext" >&6 OBJEXT=$ac_cv_objext ac_objext=$OBJEXT -echo "$as_me:1785: checking whether we are using the GNU C compiler" >&5 +echo "$as_me:1786: checking whether we are using the GNU C compiler" >&5 echo $ECHO_N "checking whether we are using the GNU C compiler... $ECHO_C" >&6 if test "${ac_cv_c_compiler_gnu+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 1791 "configure" +#line 1792 "configure" #include "confdefs.h" int @@ -1803,16 +1804,16 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:1806: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:1807: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:1809: \$? = $ac_status" >&5 + echo "$as_me:1810: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:1812: \"$ac_try\"") >&5 + { (eval echo "$as_me:1813: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:1815: \$? = $ac_status" >&5 + echo "$as_me:1816: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_compiler_gnu=yes else @@ -1824,19 +1825,19 @@ rm -f conftest.$ac_objext conftest.$ac_ext ac_cv_c_compiler_gnu=$ac_compiler_gnu fi -echo "$as_me:1827: result: $ac_cv_c_compiler_gnu" >&5 +echo "$as_me:1828: result: $ac_cv_c_compiler_gnu" >&5 echo "${ECHO_T}$ac_cv_c_compiler_gnu" >&6 GCC=`test $ac_compiler_gnu = yes && echo yes` ac_test_CFLAGS=${CFLAGS+set} ac_save_CFLAGS=$CFLAGS CFLAGS="-g" -echo "$as_me:1833: checking whether $CC accepts -g" >&5 +echo "$as_me:1834: checking whether $CC accepts -g" >&5 echo $ECHO_N "checking whether $CC accepts -g... $ECHO_C" >&6 if test "${ac_cv_prog_cc_g+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 1839 "configure" +#line 1840 "configure" #include "confdefs.h" int @@ -1848,16 +1849,16 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:1851: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:1852: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:1854: \$? = $ac_status" >&5 + echo "$as_me:1855: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:1857: \"$ac_try\"") >&5 + { (eval echo "$as_me:1858: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:1860: \$? = $ac_status" >&5 + echo "$as_me:1861: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_prog_cc_g=yes else @@ -1867,7 +1868,7 @@ ac_cv_prog_cc_g=no fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:1870: result: $ac_cv_prog_cc_g" >&5 +echo "$as_me:1871: result: $ac_cv_prog_cc_g" >&5 echo "${ECHO_T}$ac_cv_prog_cc_g" >&6 if test "$ac_test_CFLAGS" = set; then CFLAGS=$ac_save_CFLAGS @@ -1894,16 +1895,16 @@ cat >conftest.$ac_ext <<_ACEOF #endif _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:1897: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:1898: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:1900: \$? = $ac_status" >&5 + echo "$as_me:1901: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:1903: \"$ac_try\"") >&5 + { (eval echo "$as_me:1904: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:1906: \$? = $ac_status" >&5 + echo "$as_me:1907: \$? = $ac_status" >&5 (exit $ac_status); }; }; then for ac_declaration in \ ''\ @@ -1915,7 +1916,7 @@ if { (eval echo "$as_me:1897: \"$ac_compile\"") >&5 'void exit (int);' do cat >conftest.$ac_ext <<_ACEOF -#line 1918 "configure" +#line 1919 "configure" #include "confdefs.h" #include <stdlib.h> $ac_declaration @@ -1928,16 +1929,16 @@ exit (42); } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:1931: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:1932: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:1934: \$? = $ac_status" >&5 + echo "$as_me:1935: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:1937: \"$ac_try\"") >&5 + { (eval echo "$as_me:1938: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:1940: \$? = $ac_status" >&5 + echo "$as_me:1941: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -1947,7 +1948,7 @@ continue fi rm -f conftest.$ac_objext conftest.$ac_ext cat >conftest.$ac_ext <<_ACEOF -#line 1950 "configure" +#line 1951 "configure" #include "confdefs.h" $ac_declaration int @@ -1959,16 +1960,16 @@ exit (42); } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:1962: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:1963: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:1965: \$? = $ac_status" >&5 + echo "$as_me:1966: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:1968: \"$ac_try\"") >&5 + { (eval echo "$as_me:1969: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:1971: \$? = $ac_status" >&5 + echo "$as_me:1972: \$? = $ac_status" >&5 (exit $ac_status); }; }; then break else @@ -2002,7 +2003,7 @@ ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu ac_main_return=return -echo "$as_me:2005: checking how to run the C preprocessor" >&5 +echo "$as_me:2006: checking how to run the C preprocessor" >&5 echo $ECHO_N "checking how to run the C preprocessor... $ECHO_C" >&6 # On Suns, sometimes $CPP names a directory. if test -n "$CPP" && test -d "$CPP"; then @@ -2023,18 +2024,18 @@ do # On the NeXT, cc -E runs the code through the compiler's parser, # not just through cpp. "Syntax error" is here to catch this case. cat >conftest.$ac_ext <<_ACEOF -#line 2026 "configure" +#line 2027 "configure" #include "confdefs.h" #include <assert.h> Syntax error _ACEOF -if { (eval echo "$as_me:2031: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:2032: \"$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:2037: \$? = $ac_status" >&5 + echo "$as_me:2038: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -2057,17 +2058,17 @@ rm -f conftest.err conftest.$ac_ext # OK, works on sane cases. Now check whether non-existent headers # can be detected and how. cat >conftest.$ac_ext <<_ACEOF -#line 2060 "configure" +#line 2061 "configure" #include "confdefs.h" #include <ac_nonexistent.h> _ACEOF -if { (eval echo "$as_me:2064: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:2065: \"$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:2070: \$? = $ac_status" >&5 + echo "$as_me:2071: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -2104,7 +2105,7 @@ fi else ac_cv_prog_CPP=$CPP fi -echo "$as_me:2107: result: $CPP" >&5 +echo "$as_me:2108: result: $CPP" >&5 echo "${ECHO_T}$CPP" >&6 ac_preproc_ok=false for ac_c_preproc_warn_flag in '' yes @@ -2114,18 +2115,18 @@ do # On the NeXT, cc -E runs the code through the compiler's parser, # not just through cpp. "Syntax error" is here to catch this case. cat >conftest.$ac_ext <<_ACEOF -#line 2117 "configure" +#line 2118 "configure" #include "confdefs.h" #include <assert.h> Syntax error _ACEOF -if { (eval echo "$as_me:2122: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:2123: \"$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:2128: \$? = $ac_status" >&5 + echo "$as_me:2129: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -2148,17 +2149,17 @@ rm -f conftest.err conftest.$ac_ext # OK, works on sane cases. Now check whether non-existent headers # can be detected and how. cat >conftest.$ac_ext <<_ACEOF -#line 2151 "configure" +#line 2152 "configure" #include "confdefs.h" #include <ac_nonexistent.h> _ACEOF -if { (eval echo "$as_me:2155: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:2156: \"$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:2161: \$? = $ac_status" >&5 + echo "$as_me:2162: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -2186,7 +2187,7 @@ rm -f conftest.err conftest.$ac_ext if $ac_preproc_ok; then : else - { { echo "$as_me:2189: error: C preprocessor \"$CPP\" fails sanity check" >&5 + { { echo "$as_me:2190: error: C preprocessor \"$CPP\" fails sanity check" >&5 echo "$as_me: error: C preprocessor \"$CPP\" fails sanity check" >&2;} { (exit 1); exit 1; }; } fi @@ -2198,27 +2199,27 @@ ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $ ac_compiler_gnu=$ac_cv_c_compiler_gnu ac_main_return=return -echo "$as_me:2201: checking whether ln -s works" >&5 +echo "$as_me:2202: checking whether ln -s works" >&5 echo $ECHO_N "checking whether ln -s works... $ECHO_C" >&6 LN_S=$as_ln_s if test "$LN_S" = "ln -s"; then - echo "$as_me:2205: result: yes" >&5 + echo "$as_me:2206: result: yes" >&5 echo "${ECHO_T}yes" >&6 else - echo "$as_me:2208: result: no, using $LN_S" >&5 + echo "$as_me:2209: result: no, using $LN_S" >&5 echo "${ECHO_T}no, using $LN_S" >&6 fi case $host_os in mingw*) LN_S="cp -p" -echo "$as_me:2215: result: Override: No symbolic links in mingw." >&5 +echo "$as_me:2216: result: Override: No symbolic links in mingw." >&5 echo "${ECHO_T}Override: No symbolic links in mingw." >&6 ;; *) ;; esac -echo "$as_me:2221: checking whether ${MAKE-make} sets \${MAKE}" >&5 +echo "$as_me:2222: checking whether ${MAKE-make} sets \${MAKE}" >&5 echo $ECHO_N "checking whether ${MAKE-make} sets \${MAKE}... $ECHO_C" >&6 set dummy ${MAKE-make}; ac_make=`echo "$2" | sed 'y,./+-,__p_,'` if eval "test \"\${ac_cv_prog_make_${ac_make}_set+set}\" = set"; then @@ -2238,11 +2239,11 @@ fi rm -f conftest.make fi if eval "test \"`echo '$ac_cv_prog_make_'${ac_make}_set`\" = yes"; then - echo "$as_me:2241: result: yes" >&5 + echo "$as_me:2242: result: yes" >&5 echo "${ECHO_T}yes" >&6 SET_MAKE= else - echo "$as_me:2245: result: no" >&5 + echo "$as_me:2246: result: no" >&5 echo "${ECHO_T}no" >&6 SET_MAKE="MAKE=${MAKE-make}" fi @@ -2259,7 +2260,7 @@ fi # AFS /usr/afsws/bin/install, which mishandles nonexistent args # SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff" # ./install, which can be erroneously created by make from ./install.sh. -echo "$as_me:2262: checking for a BSD compatible install" >&5 +echo "$as_me:2263: checking for a BSD compatible install" >&5 echo $ECHO_N "checking for a BSD compatible install... $ECHO_C" >&6 if test -z "$INSTALL"; then if test "${ac_cv_path_install+set}" = set; then @@ -2308,7 +2309,7 @@ fi INSTALL=$ac_install_sh fi fi -echo "$as_me:2311: result: $INSTALL" >&5 +echo "$as_me:2312: result: $INSTALL" >&5 echo "${ECHO_T}$INSTALL" >&6 # Use test -z because SunOS4 sh mishandles braces in ${var-val}. @@ -2323,7 +2324,7 @@ for ac_prog in 'bison -y' byacc 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:2326: checking for $ac_word" >&5 +echo "$as_me:2327: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_prog_YACC+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -2338,7 +2339,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_YACC="$ac_prog" -echo "$as_me:2341: found $ac_dir/$ac_word" >&5 +echo "$as_me:2342: found $ac_dir/$ac_word" >&5 break done @@ -2346,10 +2347,10 @@ fi fi YACC=$ac_cv_prog_YACC if test -n "$YACC"; then - echo "$as_me:2349: result: $YACC" >&5 + echo "$as_me:2350: result: $YACC" >&5 echo "${ECHO_T}$YACC" >&6 else - echo "$as_me:2352: result: no" >&5 + echo "$as_me:2353: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -2361,7 +2362,7 @@ for ac_prog in lint alint lclint tdlint 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:2364: checking for $ac_word" >&5 +echo "$as_me:2365: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_prog_LINT+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -2376,7 +2377,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_LINT="$ac_prog" -echo "$as_me:2379: found $ac_dir/$ac_word" >&5 +echo "$as_me:2380: found $ac_dir/$ac_word" >&5 break done @@ -2384,20 +2385,20 @@ fi fi LINT=$ac_cv_prog_LINT if test -n "$LINT"; then - echo "$as_me:2387: result: $LINT" >&5 + echo "$as_me:2388: result: $LINT" >&5 echo "${ECHO_T}$LINT" >&6 else - echo "$as_me:2390: result: no" >&5 + echo "$as_me:2391: result: no" >&5 echo "${ECHO_T}no" >&6 fi test -n "$LINT" && break done -echo "$as_me:2397: checking for AIX" >&5 +echo "$as_me:2398: checking for AIX" >&5 echo $ECHO_N "checking for AIX... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF -#line 2400 "configure" +#line 2401 "configure" #include "confdefs.h" #ifdef _AIX yes @@ -2406,24 +2407,24 @@ cat >conftest.$ac_ext <<_ACEOF _ACEOF if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | egrep "yes" >/dev/null 2>&1; then - echo "$as_me:2409: result: yes" >&5 + echo "$as_me:2410: result: yes" >&5 echo "${ECHO_T}yes" >&6 cat >>confdefs.h <<\EOF #define _ALL_SOURCE 1 EOF else - echo "$as_me:2416: result: no" >&5 + echo "$as_me:2417: result: no" >&5 echo "${ECHO_T}no" >&6 fi rm -f conftest* -echo "$as_me:2421: checking for POSIXized ISC" >&5 +echo "$as_me:2422: checking for POSIXized ISC" >&5 echo $ECHO_N "checking for POSIXized ISC... $ECHO_C" >&6 if test -d /etc/conf/kconfig.d && grep _POSIX_VERSION /usr/include/sys/unistd.h >/dev/null 2>&1 then - echo "$as_me:2426: result: yes" >&5 + echo "$as_me:2427: result: yes" >&5 echo "${ECHO_T}yes" >&6 ISC=yes # If later tests want to check for ISC. @@ -2437,7 +2438,7 @@ EOF CC="$CC -Xp" fi else - echo "$as_me:2440: result: no" >&5 + echo "$as_me:2441: result: no" >&5 echo "${ECHO_T}no" >&6 ISC= fi @@ -2478,7 +2479,7 @@ else 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:2481: checking for $ac_word" >&5 +echo "$as_me:2482: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_prog_BUILD_CC+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -2493,7 +2494,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_BUILD_CC="$ac_prog" -echo "$as_me:2496: found $ac_dir/$ac_word" >&5 +echo "$as_me:2497: found $ac_dir/$ac_word" >&5 break done @@ -2501,10 +2502,10 @@ fi fi BUILD_CC=$ac_cv_prog_BUILD_CC if test -n "$BUILD_CC"; then - echo "$as_me:2504: result: $BUILD_CC" >&5 + echo "$as_me:2505: result: $BUILD_CC" >&5 echo "${ECHO_T}$BUILD_CC" >&6 else - echo "$as_me:2507: result: no" >&5 + echo "$as_me:2508: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -2512,12 +2513,12 @@ fi done fi; - echo "$as_me:2515: checking for native build C compiler" >&5 + echo "$as_me:2516: checking for native build C compiler" >&5 echo $ECHO_N "checking for native build C compiler... $ECHO_C" >&6 - echo "$as_me:2517: result: $BUILD_CC" >&5 + echo "$as_me:2518: result: $BUILD_CC" >&5 echo "${ECHO_T}$BUILD_CC" >&6 - echo "$as_me:2520: checking for native build C preprocessor" >&5 + echo "$as_me:2521: checking for native build C preprocessor" >&5 echo $ECHO_N "checking for native build C preprocessor... $ECHO_C" >&6 # Check whether --with-build-cpp or --without-build-cpp was given. @@ -2527,10 +2528,10 @@ if test "${with_build_cpp+set}" = set; then else BUILD_CPP='${BUILD_CC} -E' fi; - echo "$as_me:2530: result: $BUILD_CPP" >&5 + echo "$as_me:2531: result: $BUILD_CPP" >&5 echo "${ECHO_T}$BUILD_CPP" >&6 - echo "$as_me:2533: checking for native build C flags" >&5 + echo "$as_me:2534: checking for native build C flags" >&5 echo $ECHO_N "checking for native build C flags... $ECHO_C" >&6 # Check whether --with-build-cflags or --without-build-cflags was given. @@ -2538,10 +2539,10 @@ if test "${with_build_cflags+set}" = set; then withval="$with_build_cflags" BUILD_CFLAGS="$withval" fi; - echo "$as_me:2541: result: $BUILD_CFLAGS" >&5 + echo "$as_me:2542: result: $BUILD_CFLAGS" >&5 echo "${ECHO_T}$BUILD_CFLAGS" >&6 - echo "$as_me:2544: checking for native build C preprocessor-flags" >&5 + echo "$as_me:2545: checking for native build C preprocessor-flags" >&5 echo $ECHO_N "checking for native build C preprocessor-flags... $ECHO_C" >&6 # Check whether --with-build-cppflags or --without-build-cppflags was given. @@ -2549,10 +2550,10 @@ if test "${with_build_cppflags+set}" = set; then withval="$with_build_cppflags" BUILD_CPPFLAGS="$withval" fi; - echo "$as_me:2552: result: $BUILD_CPPFLAGS" >&5 + echo "$as_me:2553: result: $BUILD_CPPFLAGS" >&5 echo "${ECHO_T}$BUILD_CPPFLAGS" >&6 - echo "$as_me:2555: checking for native build linker-flags" >&5 + echo "$as_me:2556: checking for native build linker-flags" >&5 echo $ECHO_N "checking for native build linker-flags... $ECHO_C" >&6 # Check whether --with-build-ldflags or --without-build-ldflags was given. @@ -2560,10 +2561,10 @@ if test "${with_build_ldflags+set}" = set; then withval="$with_build_ldflags" BUILD_LDFLAGS="$withval" fi; - echo "$as_me:2563: result: $BUILD_LDFLAGS" >&5 + echo "$as_me:2564: result: $BUILD_LDFLAGS" >&5 echo "${ECHO_T}$BUILD_LDFLAGS" >&6 - echo "$as_me:2566: checking for native build linker-libraries" >&5 + echo "$as_me:2567: checking for native build linker-libraries" >&5 echo $ECHO_N "checking for native build linker-libraries... $ECHO_C" >&6 # Check whether --with-build-libs or --without-build-libs was given. @@ -2571,7 +2572,7 @@ if test "${with_build_libs+set}" = set; then withval="$with_build_libs" BUILD_LIBS="$withval" fi; - echo "$as_me:2574: result: $BUILD_LIBS" >&5 + echo "$as_me:2575: result: $BUILD_LIBS" >&5 echo "${ECHO_T}$BUILD_LIBS" >&6 # this assumes we're on Unix. @@ -2581,7 +2582,7 @@ echo "${ECHO_T}$BUILD_LIBS" >&6 : ${BUILD_CC:='${CC}'} if ( test "$BUILD_CC" = "$CC" || test "$BUILD_CC" = '${CC}' ) ; then - { { echo "$as_me:2584: error: Cross-build requires two compilers. + { { echo "$as_me:2585: error: Cross-build requires two compilers. Use --with-build-cc to specify the native compiler." >&5 echo "$as_me: error: Cross-build requires two compilers. Use --with-build-cc to specify the native compiler." >&2;} @@ -2602,7 +2603,7 @@ fi if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}ranlib", so it can be a program name with args. set dummy ${ac_tool_prefix}ranlib; ac_word=$2 -echo "$as_me:2605: checking for $ac_word" >&5 +echo "$as_me:2606: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_prog_RANLIB+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -2617,7 +2618,7 @@ for ac_dir in $ac_dummy; do test -z "$ac_dir" && ac_dir=. $as_executable_p "$ac_dir/$ac_word" || continue ac_cv_prog_RANLIB="${ac_tool_prefix}ranlib" -echo "$as_me:2620: found $ac_dir/$ac_word" >&5 +echo "$as_me:2621: found $ac_dir/$ac_word" >&5 break done @@ -2625,10 +2626,10 @@ fi fi RANLIB=$ac_cv_prog_RANLIB if test -n "$RANLIB"; then - echo "$as_me:2628: result: $RANLIB" >&5 + echo "$as_me:2629: result: $RANLIB" >&5 echo "${ECHO_T}$RANLIB" >&6 else - echo "$as_me:2631: result: no" >&5 + echo "$as_me:2632: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -2637,7 +2638,7 @@ if test -z "$ac_cv_prog_RANLIB"; then ac_ct_RANLIB=$RANLIB # Extract the first word of "ranlib", so it can be a program name with args. set dummy ranlib; ac_word=$2 -echo "$as_me:2640: checking for $ac_word" >&5 +echo "$as_me:2641: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_prog_ac_ct_RANLIB+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -2652,7 +2653,7 @@ for ac_dir in $ac_dummy; do test -z "$ac_dir" && ac_dir=. $as_executable_p "$ac_dir/$ac_word" || continue ac_cv_prog_ac_ct_RANLIB="ranlib" -echo "$as_me:2655: found $ac_dir/$ac_word" >&5 +echo "$as_me:2656: found $ac_dir/$ac_word" >&5 break done @@ -2661,10 +2662,10 @@ fi fi ac_ct_RANLIB=$ac_cv_prog_ac_ct_RANLIB if test -n "$ac_ct_RANLIB"; then - echo "$as_me:2664: result: $ac_ct_RANLIB" >&5 + echo "$as_me:2665: result: $ac_ct_RANLIB" >&5 echo "${ECHO_T}$ac_ct_RANLIB" >&6 else - echo "$as_me:2667: result: no" >&5 + echo "$as_me:2668: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -2676,7 +2677,7 @@ fi if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}ar", so it can be a program name with args. set dummy ${ac_tool_prefix}ar; ac_word=$2 -echo "$as_me:2679: checking for $ac_word" >&5 +echo "$as_me:2680: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_prog_AR+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -2691,7 +2692,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_AR="${ac_tool_prefix}ar" -echo "$as_me:2694: found $ac_dir/$ac_word" >&5 +echo "$as_me:2695: found $ac_dir/$ac_word" >&5 break done @@ -2699,10 +2700,10 @@ fi fi AR=$ac_cv_prog_AR if test -n "$AR"; then - echo "$as_me:2702: result: $AR" >&5 + echo "$as_me:2703: result: $AR" >&5 echo "${ECHO_T}$AR" >&6 else - echo "$as_me:2705: result: no" >&5 + echo "$as_me:2706: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -2711,7 +2712,7 @@ if test -z "$ac_cv_prog_AR"; then ac_ct_AR=$AR # Extract the first word of "ar", so it can be a program name with args. set dummy ar; ac_word=$2 -echo "$as_me:2714: checking for $ac_word" >&5 +echo "$as_me:2715: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_prog_ac_ct_AR+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -2726,7 +2727,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_AR="ar" -echo "$as_me:2729: found $ac_dir/$ac_word" >&5 +echo "$as_me:2730: found $ac_dir/$ac_word" >&5 break done @@ -2735,10 +2736,10 @@ fi fi ac_ct_AR=$ac_cv_prog_ac_ct_AR if test -n "$ac_ct_AR"; then - echo "$as_me:2738: result: $ac_ct_AR" >&5 + echo "$as_me:2739: result: $ac_ct_AR" >&5 echo "${ECHO_T}$ac_ct_AR" >&6 else - echo "$as_me:2741: result: no" >&5 + echo "$as_me:2742: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -2747,7 +2748,7 @@ else AR="$ac_cv_prog_AR" fi -echo "$as_me:2750: checking for options to update archives" >&5 +echo "$as_me:2751: checking for options to update archives" >&5 echo $ECHO_N "checking for options to update archives... $ECHO_C" >&6 if test "${cf_cv_ar_flags+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -2770,13 +2771,13 @@ else rm -f conftest.a cat >conftest.$ac_ext <<EOF -#line 2773 "configure" +#line 2774 "configure" int testdata[3] = { 123, 456, 789 }; EOF - if { (eval echo "$as_me:2776: \"$ac_compile\"") >&5 + if { (eval echo "$as_me:2777: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:2779: \$? = $ac_status" >&5 + echo "$as_me:2780: \$? = $ac_status" >&5 (exit $ac_status); } ; then echo "$AR $ARFLAGS $cf_ar_flags conftest.a conftest.$ac_cv_objext" >&5 $AR $ARFLAGS $cf_ar_flags conftest.a conftest.$ac_cv_objext 2>&5 1>/dev/null @@ -2787,7 +2788,7 @@ EOF else test -n "$verbose" && echo " cannot compile test-program" 1>&6 -echo "${as_me-configure}:2790: testing cannot compile test-program ..." 1>&5 +echo "${as_me-configure}:2791: testing cannot compile test-program ..." 1>&5 break fi @@ -2795,7 +2796,7 @@ echo "${as_me-configure}:2790: testing cannot compile test-program ..." 1>&5 rm -f conftest.a conftest.$ac_ext conftest.$ac_cv_objext fi -echo "$as_me:2798: result: $cf_cv_ar_flags" >&5 +echo "$as_me:2799: result: $cf_cv_ar_flags" >&5 echo "${ECHO_T}$cf_cv_ar_flags" >&6 if test -n "$ARFLAGS" ; then @@ -2806,7 +2807,7 @@ else ARFLAGS=$cf_cv_ar_flags fi -echo "$as_me:2809: checking if you want to see long compiling messages" >&5 +echo "$as_me:2810: checking if you want to see long compiling messages" >&5 echo $ECHO_N "checking if you want to see long compiling messages... $ECHO_C" >&6 # Check whether --enable-echo or --disable-echo was given. @@ -2840,7 +2841,7 @@ else ECHO_CC='' fi; -echo "$as_me:2843: result: $enableval" >&5 +echo "$as_me:2844: result: $enableval" >&5 echo "${ECHO_T}$enableval" >&6 # special case for WWW/* @@ -2850,7 +2851,7 @@ else DONT_ECHO_CC='' fi -echo "$as_me:2853: checking if you want to check memory-leaks" >&5 +echo "$as_me:2854: checking if you want to check memory-leaks" >&5 echo $ECHO_N "checking if you want to check memory-leaks... $ECHO_C" >&6 # Check whether --enable-find-leaks or --disable-find-leaks was given. @@ -2867,7 +2868,7 @@ else with_leak_checks=no fi; -echo "$as_me:2870: result: $with_leak_checks" >&5 +echo "$as_me:2871: result: $with_leak_checks" >&5 echo "${ECHO_T}$with_leak_checks" >&6 test "$with_leak_checks" = "yes" && cat >>confdefs.h <<\EOF #define LY_FIND_LEAKS 1 @@ -2876,7 +2877,7 @@ EOF # The comment about adding -g to $CFLAGS is unclear. Autoconf tries to add # a -g flag; we remove it if the user's $CFLAGS was not set and debugging is # disabled. -echo "$as_me:2879: checking if you want to enable debug-code" >&5 +echo "$as_me:2880: checking if you want to enable debug-code" >&5 echo $ECHO_N "checking if you want to enable debug-code... $ECHO_C" >&6 # Check whether --enable-debug or --disable-debug was given. @@ -2893,7 +2894,7 @@ else with_debug=no fi; -echo "$as_me:2896: result: $with_debug" >&5 +echo "$as_me:2897: result: $with_debug" >&5 echo "${ECHO_T}$with_debug" >&6 if test "$with_debug" = "yes" ; then case $host_os in @@ -2918,7 +2919,7 @@ else esac fi -echo "$as_me:2921: checking if you want to enable lynx trace code *recommended* " >&5 +echo "$as_me:2922: checking if you want to enable lynx trace code *recommended* " >&5 echo $ECHO_N "checking if you want to enable lynx trace code *recommended* ... $ECHO_C" >&6 # Check whether --enable-trace or --disable-trace was given. @@ -2935,13 +2936,13 @@ else with_trace=yes fi; -echo "$as_me:2938: result: $with_trace" >&5 +echo "$as_me:2939: result: $with_trace" >&5 echo "${ECHO_T}$with_trace" >&6 test $with_trace = no && cat >>confdefs.h <<\EOF #define NO_LYNX_TRACE 1 EOF -echo "$as_me:2944: checking if you want verbose trace code" >&5 +echo "$as_me:2945: checking if you want verbose trace code" >&5 echo $ECHO_N "checking if you want verbose trace code... $ECHO_C" >&6 # Check whether --enable-vertrace or --disable-vertrace was given. @@ -2958,7 +2959,7 @@ else with_vertrace=no fi; -echo "$as_me:2961: result: $with_vertrace" >&5 +echo "$as_me:2962: result: $with_vertrace" >&5 echo "${ECHO_T}$with_vertrace" >&6 test $with_vertrace = yes && cat >>confdefs.h <<\EOF #define LY_TRACELINE __LINE__ @@ -2966,7 +2967,7 @@ EOF if test -n "$GCC" then -echo "$as_me:2969: checking if you want to turn on gcc warnings" >&5 +echo "$as_me:2970: checking if you want to turn on gcc warnings" >&5 echo $ECHO_N "checking if you want to turn on gcc warnings... $ECHO_C" >&6 # Check whether --enable-warnings or --disable-warnings was given. @@ -2983,7 +2984,7 @@ else with_warnings=no fi; -echo "$as_me:2986: result: $with_warnings" >&5 +echo "$as_me:2987: result: $with_warnings" >&5 echo "${ECHO_T}$with_warnings" >&6 if test "$with_warnings" = "yes" then @@ -3006,10 +3007,10 @@ cat > conftest.i <<EOF EOF if test "$GCC" = yes then - { echo "$as_me:3009: checking for $CC __attribute__ directives..." >&5 + { echo "$as_me:3010: checking for $CC __attribute__ directives..." >&5 echo "$as_me: checking for $CC __attribute__ directives..." >&6;} cat > conftest.$ac_ext <<EOF -#line 3012 "${as_me-configure}" +#line 3013 "${as_me-configure}" #include "confdefs.h" #include "conftest.h" #include "conftest.i" @@ -3058,12 +3059,12 @@ EOF ;; esac - if { (eval echo "$as_me:3061: \"$ac_compile\"") >&5 + if { (eval echo "$as_me:3062: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:3064: \$? = $ac_status" >&5 + echo "$as_me:3065: \$? = $ac_status" >&5 (exit $ac_status); }; then - test -n "$verbose" && echo "$as_me:3066: result: ... $cf_attribute" >&5 + test -n "$verbose" && echo "$as_me:3067: result: ... $cf_attribute" >&5 echo "${ECHO_T}... $cf_attribute" >&6 cat conftest.h >>confdefs.h case $cf_attribute in #(vi @@ -3100,11 +3101,11 @@ fi GCC_VERSION=none if test "$GCC" = yes ; then - echo "$as_me:3103: checking version of $CC" >&5 + echo "$as_me:3104: checking version of $CC" >&5 echo $ECHO_N "checking version of $CC... $ECHO_C" >&6 GCC_VERSION="`${CC} --version 2>/dev/null | sed -e '2,$d' -e 's/^.*(GCC) //' -e 's/^[^0-9.]*//' -e 's/[^0-9.].*//'`" test -z "$GCC_VERSION" && GCC_VERSION=unknown - echo "$as_me:3107: result: $GCC_VERSION" >&5 + echo "$as_me:3108: result: $GCC_VERSION" >&5 echo "${ECHO_T}$GCC_VERSION" >&6 fi @@ -3113,12 +3114,12 @@ INTEL_COMPILER=no if test "$GCC" = yes ; then case $host_os in linux*|gnu*) - echo "$as_me:3116: checking if this is really Intel C compiler" >&5 + echo "$as_me:3117: checking if this is really Intel C compiler" >&5 echo $ECHO_N "checking if this is really Intel C compiler... $ECHO_C" >&6 cf_save_CFLAGS="$CFLAGS" CFLAGS="$CFLAGS -no-gcc" cat >conftest.$ac_ext <<_ACEOF -#line 3121 "configure" +#line 3122 "configure" #include "confdefs.h" int @@ -3135,16 +3136,16 @@ make an error } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:3138: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:3139: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:3141: \$? = $ac_status" >&5 + echo "$as_me:3142: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:3144: \"$ac_try\"") >&5 + { (eval echo "$as_me:3145: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:3147: \$? = $ac_status" >&5 + echo "$as_me:3148: \$? = $ac_status" >&5 (exit $ac_status); }; }; then INTEL_COMPILER=yes cf_save_CFLAGS="$cf_save_CFLAGS -we147 -no-gcc" @@ -3155,14 +3156,14 @@ cat conftest.$ac_ext >&5 fi rm -f conftest.$ac_objext conftest.$ac_ext CFLAGS="$cf_save_CFLAGS" - echo "$as_me:3158: result: $INTEL_COMPILER" >&5 + echo "$as_me:3159: result: $INTEL_COMPILER" >&5 echo "${ECHO_T}$INTEL_COMPILER" >&6 ;; esac fi cat > conftest.$ac_ext <<EOF -#line 3165 "${as_me-configure}" +#line 3166 "${as_me-configure}" int main(int argc, char *argv[]) { return (argv[argc-1] == 0) ; } EOF @@ -3179,7 +3180,7 @@ then # remark #981: operands are evaluated in unspecified order # warning #279: controlling expression is constant - { echo "$as_me:3182: checking for $CC warning options..." >&5 + { echo "$as_me:3183: checking for $CC warning options..." >&5 echo "$as_me: checking for $CC warning options..." >&6;} cf_save_CFLAGS="$CFLAGS" EXTRA_CFLAGS="-Wall" @@ -3195,12 +3196,12 @@ echo "$as_me: checking for $CC warning options..." >&6;} wd981 do CFLAGS="$cf_save_CFLAGS $EXTRA_CFLAGS -$cf_opt" - if { (eval echo "$as_me:3198: \"$ac_compile\"") >&5 + if { (eval echo "$as_me:3199: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:3201: \$? = $ac_status" >&5 + echo "$as_me:3202: \$? = $ac_status" >&5 (exit $ac_status); }; then - test -n "$verbose" && echo "$as_me:3203: result: ... -$cf_opt" >&5 + test -n "$verbose" && echo "$as_me:3204: result: ... -$cf_opt" >&5 echo "${ECHO_T}... -$cf_opt" >&6 EXTRA_CFLAGS="$EXTRA_CFLAGS -$cf_opt" fi @@ -3209,7 +3210,7 @@ echo "${ECHO_T}... -$cf_opt" >&6 elif test "$GCC" = yes then - { echo "$as_me:3212: checking for $CC warning options..." >&5 + { echo "$as_me:3213: checking for $CC warning options..." >&5 echo "$as_me: checking for $CC warning options..." >&6;} cf_save_CFLAGS="$CFLAGS" EXTRA_CFLAGS= @@ -3229,12 +3230,12 @@ echo "$as_me: checking for $CC warning options..." >&6;} Wundef $cf_warn_CONST do CFLAGS="$cf_save_CFLAGS $EXTRA_CFLAGS -$cf_opt" - if { (eval echo "$as_me:3232: \"$ac_compile\"") >&5 + if { (eval echo "$as_me:3233: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:3235: \$? = $ac_status" >&5 + echo "$as_me:3236: \$? = $ac_status" >&5 (exit $ac_status); }; then - test -n "$verbose" && echo "$as_me:3237: result: ... -$cf_opt" >&5 + test -n "$verbose" && echo "$as_me:3238: result: ... -$cf_opt" >&5 echo "${ECHO_T}... -$cf_opt" >&6 case $cf_opt in #(vi Wcast-qual) #(vi @@ -3245,7 +3246,7 @@ echo "${ECHO_T}... -$cf_opt" >&6 [34].*) test -n "$verbose" && echo " feature is broken in gcc $GCC_VERSION" 1>&6 -echo "${as_me-configure}:3248: testing feature is broken in gcc $GCC_VERSION ..." 1>&5 +echo "${as_me-configure}:3249: testing feature is broken in gcc $GCC_VERSION ..." 1>&5 continue;; esac @@ -3261,7 +3262,7 @@ rm -f conftest* fi fi -echo "$as_me:3264: checking if you want to use dbmalloc for testing" >&5 +echo "$as_me:3265: checking if you want to use dbmalloc for testing" >&5 echo $ECHO_N "checking if you want to use dbmalloc for testing... $ECHO_C" >&6 # Check whether --with-dbmalloc or --without-dbmalloc was given. @@ -3277,7 +3278,7 @@ EOF else with_dbmalloc= fi; -echo "$as_me:3280: result: ${with_dbmalloc:-no}" >&5 +echo "$as_me:3281: result: ${with_dbmalloc:-no}" >&5 echo "${ECHO_T}${with_dbmalloc:-no}" >&6 case .$with_cflags in #(vi @@ -3371,23 +3372,23 @@ fi esac if test "$with_dbmalloc" = yes ; then - echo "$as_me:3374: checking for dbmalloc.h" >&5 + echo "$as_me:3375: checking for dbmalloc.h" >&5 echo $ECHO_N "checking for dbmalloc.h... $ECHO_C" >&6 if test "${ac_cv_header_dbmalloc_h+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 3380 "configure" +#line 3381 "configure" #include "confdefs.h" #include <dbmalloc.h> _ACEOF -if { (eval echo "$as_me:3384: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:3385: \"$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:3390: \$? = $ac_status" >&5 + echo "$as_me:3391: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -3406,11 +3407,11 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:3409: result: $ac_cv_header_dbmalloc_h" >&5 +echo "$as_me:3410: result: $ac_cv_header_dbmalloc_h" >&5 echo "${ECHO_T}$ac_cv_header_dbmalloc_h" >&6 if test $ac_cv_header_dbmalloc_h = yes; then -echo "$as_me:3413: checking for debug_malloc in -ldbmalloc" >&5 +echo "$as_me:3414: checking for debug_malloc in -ldbmalloc" >&5 echo $ECHO_N "checking for debug_malloc in -ldbmalloc... $ECHO_C" >&6 if test "${ac_cv_lib_dbmalloc_debug_malloc+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -3418,7 +3419,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-ldbmalloc $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 3421 "configure" +#line 3422 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -3437,16 +3438,16 @@ debug_malloc (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:3440: \"$ac_link\"") >&5 +if { (eval echo "$as_me:3441: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:3443: \$? = $ac_status" >&5 + echo "$as_me:3444: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:3446: \"$ac_try\"") >&5 + { (eval echo "$as_me:3447: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:3449: \$? = $ac_status" >&5 + echo "$as_me:3450: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_dbmalloc_debug_malloc=yes else @@ -3457,7 +3458,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:3460: result: $ac_cv_lib_dbmalloc_debug_malloc" >&5 +echo "$as_me:3461: result: $ac_cv_lib_dbmalloc_debug_malloc" >&5 echo "${ECHO_T}$ac_cv_lib_dbmalloc_debug_malloc" >&6 if test $ac_cv_lib_dbmalloc_debug_malloc = yes; then cat >>confdefs.h <<EOF @@ -3472,7 +3473,7 @@ fi fi -echo "$as_me:3475: checking if you want to use dmalloc for testing" >&5 +echo "$as_me:3476: checking if you want to use dmalloc for testing" >&5 echo $ECHO_N "checking if you want to use dmalloc for testing... $ECHO_C" >&6 # Check whether --with-dmalloc or --without-dmalloc was given. @@ -3488,7 +3489,7 @@ EOF else with_dmalloc= fi; -echo "$as_me:3491: result: ${with_dmalloc:-no}" >&5 +echo "$as_me:3492: result: ${with_dmalloc:-no}" >&5 echo "${ECHO_T}${with_dmalloc:-no}" >&6 case .$with_cflags in #(vi @@ -3582,23 +3583,23 @@ fi esac if test "$with_dmalloc" = yes ; then - echo "$as_me:3585: checking for dmalloc.h" >&5 + echo "$as_me:3586: checking for dmalloc.h" >&5 echo $ECHO_N "checking for dmalloc.h... $ECHO_C" >&6 if test "${ac_cv_header_dmalloc_h+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 3591 "configure" +#line 3592 "configure" #include "confdefs.h" #include <dmalloc.h> _ACEOF -if { (eval echo "$as_me:3595: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:3596: \"$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:3601: \$? = $ac_status" >&5 + echo "$as_me:3602: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -3617,11 +3618,11 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:3620: result: $ac_cv_header_dmalloc_h" >&5 +echo "$as_me:3621: result: $ac_cv_header_dmalloc_h" >&5 echo "${ECHO_T}$ac_cv_header_dmalloc_h" >&6 if test $ac_cv_header_dmalloc_h = yes; then -echo "$as_me:3624: checking for dmalloc_debug in -ldmalloc" >&5 +echo "$as_me:3625: checking for dmalloc_debug in -ldmalloc" >&5 echo $ECHO_N "checking for dmalloc_debug in -ldmalloc... $ECHO_C" >&6 if test "${ac_cv_lib_dmalloc_dmalloc_debug+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -3629,7 +3630,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-ldmalloc $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 3632 "configure" +#line 3633 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -3648,16 +3649,16 @@ dmalloc_debug (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:3651: \"$ac_link\"") >&5 +if { (eval echo "$as_me:3652: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:3654: \$? = $ac_status" >&5 + echo "$as_me:3655: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:3657: \"$ac_try\"") >&5 + { (eval echo "$as_me:3658: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:3660: \$? = $ac_status" >&5 + echo "$as_me:3661: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_dmalloc_dmalloc_debug=yes else @@ -3668,7 +3669,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:3671: result: $ac_cv_lib_dmalloc_dmalloc_debug" >&5 +echo "$as_me:3672: result: $ac_cv_lib_dmalloc_dmalloc_debug" >&5 echo "${ECHO_T}$ac_cv_lib_dmalloc_dmalloc_debug" >&6 if test $ac_cv_lib_dmalloc_dmalloc_debug = yes; then cat >>confdefs.h <<EOF @@ -3687,7 +3688,7 @@ cat >>confdefs.h <<\EOF #define UNIX 1 EOF -echo "$as_me:3690: checking for $CC option to accept ANSI C" >&5 +echo "$as_me:3691: checking for $CC option to accept ANSI C" >&5 echo $ECHO_N "checking for $CC option to accept ANSI C... $ECHO_C" >&6 if test "${ac_cv_prog_cc_stdc+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -3695,7 +3696,7 @@ else ac_cv_prog_cc_stdc=no ac_save_CC=$CC cat >conftest.$ac_ext <<_ACEOF -#line 3698 "configure" +#line 3699 "configure" #include "confdefs.h" #include <stdarg.h> #include <stdio.h> @@ -3744,16 +3745,16 @@ for ac_arg in "" -qlanglvl=ansi -std1 -Ae "-Aa -D_HPUX_SOURCE" "-Xc -D__EXTENSIO do CC="$ac_save_CC $ac_arg" rm -f conftest.$ac_objext -if { (eval echo "$as_me:3747: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:3748: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:3750: \$? = $ac_status" >&5 + echo "$as_me:3751: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:3753: \"$ac_try\"") >&5 + { (eval echo "$as_me:3754: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:3756: \$? = $ac_status" >&5 + echo "$as_me:3757: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_prog_cc_stdc=$ac_arg break @@ -3770,21 +3771,21 @@ fi case "x$ac_cv_prog_cc_stdc" in x|xno) - echo "$as_me:3773: result: none needed" >&5 + echo "$as_me:3774: result: none needed" >&5 echo "${ECHO_T}none needed" >&6 ;; *) - echo "$as_me:3776: result: $ac_cv_prog_cc_stdc" >&5 + echo "$as_me:3777: result: $ac_cv_prog_cc_stdc" >&5 echo "${ECHO_T}$ac_cv_prog_cc_stdc" >&6 CC="$CC $ac_cv_prog_cc_stdc" ;; esac -echo "$as_me:3781: checking for an ANSI C-conforming const" >&5 +echo "$as_me:3782: checking for an ANSI C-conforming const" >&5 echo $ECHO_N "checking for an ANSI C-conforming const... $ECHO_C" >&6 if test "${ac_cv_c_const+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 3787 "configure" +#line 3788 "configure" #include "confdefs.h" int @@ -3842,16 +3843,16 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:3845: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:3846: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:3848: \$? = $ac_status" >&5 + echo "$as_me:3849: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:3851: \"$ac_try\"") >&5 + { (eval echo "$as_me:3852: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:3854: \$? = $ac_status" >&5 + echo "$as_me:3855: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_c_const=yes else @@ -3861,7 +3862,7 @@ ac_cv_c_const=no fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:3864: result: $ac_cv_c_const" >&5 +echo "$as_me:3865: result: $ac_cv_c_const" >&5 echo "${ECHO_T}$ac_cv_c_const" >&6 if test $ac_cv_c_const = no; then @@ -3909,7 +3910,7 @@ clix*) # contributed by Alex Matulich (matuli_a@marlin.navsea.navy.mil) also # references -lmalloc and -lbsd. -echo "$as_me:3912: checking for strcmp in -lc_s" >&5 +echo "$as_me:3913: checking for strcmp in -lc_s" >&5 echo $ECHO_N "checking for strcmp in -lc_s... $ECHO_C" >&6 if test "${ac_cv_lib_c_s_strcmp+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -3917,7 +3918,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lc_s $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 3920 "configure" +#line 3921 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -3936,16 +3937,16 @@ strcmp (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:3939: \"$ac_link\"") >&5 +if { (eval echo "$as_me:3940: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:3942: \$? = $ac_status" >&5 + echo "$as_me:3943: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:3945: \"$ac_try\"") >&5 + { (eval echo "$as_me:3946: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:3948: \$? = $ac_status" >&5 + echo "$as_me:3949: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_c_s_strcmp=yes else @@ -3956,7 +3957,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:3959: result: $ac_cv_lib_c_s_strcmp" >&5 +echo "$as_me:3960: result: $ac_cv_lib_c_s_strcmp" >&5 echo "${ECHO_T}$ac_cv_lib_c_s_strcmp" >&6 if test $ac_cv_lib_c_s_strcmp = yes; then cat >>confdefs.h <<EOF @@ -4121,14 +4122,14 @@ sco*) # SCO's cc (which is reported to have broken const/volatile). case "$CC" in #(vi cc|*/cc) - { echo "$as_me:4124: WARNING: You should consider using gcc or rcc if available" >&5 + { echo "$as_me:4125: WARNING: You should consider using gcc or rcc if available" >&5 echo "$as_me: WARNING: You should consider using gcc or rcc if available" >&2;} unset ac_cv_prog_CC for ac_prog in gcc rcc do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 -echo "$as_me:4131: checking for $ac_word" >&5 +echo "$as_me:4132: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_prog_CC+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -4143,7 +4144,7 @@ for ac_dir in $ac_dummy; do test -z "$ac_dir" && ac_dir=. $as_executable_p "$ac_dir/$ac_word" || continue ac_cv_prog_CC="$ac_prog" -echo "$as_me:4146: found $ac_dir/$ac_word" >&5 +echo "$as_me:4147: found $ac_dir/$ac_word" >&5 break done @@ -4151,10 +4152,10 @@ fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then - echo "$as_me:4154: result: $CC" >&5 + echo "$as_me:4155: result: $CC" >&5 echo "${ECHO_T}$CC" >&6 else - echo "$as_me:4157: result: no" >&5 + echo "$as_me:4158: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -4177,23 +4178,23 @@ sony-newsos*) for ac_header in jcurses.h do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` -echo "$as_me:4180: checking for $ac_header" >&5 +echo "$as_me:4181: 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 4186 "configure" +#line 4187 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:4190: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:4191: \"$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:4196: \$? = $ac_status" >&5 + echo "$as_me:4197: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -4212,7 +4213,7 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:4215: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:4216: 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 @@ -4240,23 +4241,23 @@ ultrix*) for ac_header in cursesX.h do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` -echo "$as_me:4243: checking for $ac_header" >&5 +echo "$as_me:4244: 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 4249 "configure" +#line 4250 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:4253: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:4254: \"$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:4259: \$? = $ac_status" >&5 + echo "$as_me:4260: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -4275,7 +4276,7 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:4278: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:4279: 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 @@ -4298,7 +4299,7 @@ mingw*) ;; esac -echo "$as_me:4301: checking for ${CC-cc} option to accept ANSI C" >&5 +echo "$as_me:4302: checking for ${CC-cc} option to accept ANSI C" >&5 echo $ECHO_N "checking for ${CC-cc} option to accept ANSI C... $ECHO_C" >&6 if test "${cf_cv_ansi_cc+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -4402,7 +4403,7 @@ if test -n "$cf_new_extra_cppflags" ; then fi cat >conftest.$ac_ext <<_ACEOF -#line 4405 "configure" +#line 4406 "configure" #include "confdefs.h" #ifndef CC_HAS_PROTOS @@ -4423,16 +4424,16 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:4426: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:4427: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:4429: \$? = $ac_status" >&5 + echo "$as_me:4430: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:4432: \"$ac_try\"") >&5 + { (eval echo "$as_me:4433: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:4435: \$? = $ac_status" >&5 + echo "$as_me:4436: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_ansi_cc="$cf_arg"; break else @@ -4445,7 +4446,7 @@ CFLAGS="$cf_save_CFLAGS" CPPFLAGS="$cf_save_CPPFLAGS" fi -echo "$as_me:4448: result: $cf_cv_ansi_cc" >&5 +echo "$as_me:4449: result: $cf_cv_ansi_cc" >&5 echo "${ECHO_T}$cf_cv_ansi_cc" >&6 if test "$cf_cv_ansi_cc" != "no"; then @@ -4538,7 +4539,7 @@ fi fi if test "$cf_cv_ansi_cc" = "no"; then - { { echo "$as_me:4541: error: Your compiler does not appear to recognize prototypes. + { { echo "$as_me:4542: error: Your compiler does not appear to recognize prototypes. You have the following choices: a. adjust your compiler options b. get an up-to-date compiler @@ -4558,7 +4559,7 @@ if test "${enable_largefile+set}" = set; then fi; if test "$enable_largefile" != no; then - echo "$as_me:4561: checking for special C compiler options needed for large files" >&5 + echo "$as_me:4562: checking for special C compiler options needed for large files" >&5 echo $ECHO_N "checking for special C compiler options needed for large files... $ECHO_C" >&6 if test "${ac_cv_sys_largefile_CC+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -4570,7 +4571,7 @@ else # IRIX 6.2 and later do not support large files by default, # so use the C compiler's -n32 option if that helps. cat >conftest.$ac_ext <<_ACEOF -#line 4573 "configure" +#line 4574 "configure" #include "confdefs.h" #include <sys/types.h> /* Check that off_t can represent 2**63 - 1 correctly. @@ -4590,16 +4591,16 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:4593: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:4594: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:4596: \$? = $ac_status" >&5 + echo "$as_me:4597: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:4599: \"$ac_try\"") >&5 + { (eval echo "$as_me:4600: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:4602: \$? = $ac_status" >&5 + echo "$as_me:4603: \$? = $ac_status" >&5 (exit $ac_status); }; }; then break else @@ -4609,16 +4610,16 @@ fi rm -f conftest.$ac_objext CC="$CC -n32" rm -f conftest.$ac_objext -if { (eval echo "$as_me:4612: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:4613: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:4615: \$? = $ac_status" >&5 + echo "$as_me:4616: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:4618: \"$ac_try\"") >&5 + { (eval echo "$as_me:4619: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:4621: \$? = $ac_status" >&5 + echo "$as_me:4622: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_sys_largefile_CC=' -n32'; break else @@ -4632,13 +4633,13 @@ rm -f conftest.$ac_objext rm -f conftest.$ac_ext fi fi -echo "$as_me:4635: result: $ac_cv_sys_largefile_CC" >&5 +echo "$as_me:4636: result: $ac_cv_sys_largefile_CC" >&5 echo "${ECHO_T}$ac_cv_sys_largefile_CC" >&6 if test "$ac_cv_sys_largefile_CC" != no; then CC=$CC$ac_cv_sys_largefile_CC fi - echo "$as_me:4641: checking for _FILE_OFFSET_BITS value needed for large files" >&5 + echo "$as_me:4642: checking for _FILE_OFFSET_BITS value needed for large files" >&5 echo $ECHO_N "checking for _FILE_OFFSET_BITS value needed for large files... $ECHO_C" >&6 if test "${ac_cv_sys_file_offset_bits+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -4646,7 +4647,7 @@ else while :; do ac_cv_sys_file_offset_bits=no cat >conftest.$ac_ext <<_ACEOF -#line 4649 "configure" +#line 4650 "configure" #include "confdefs.h" #include <sys/types.h> /* Check that off_t can represent 2**63 - 1 correctly. @@ -4666,16 +4667,16 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:4669: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:4670: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:4672: \$? = $ac_status" >&5 + echo "$as_me:4673: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:4675: \"$ac_try\"") >&5 + { (eval echo "$as_me:4676: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:4678: \$? = $ac_status" >&5 + echo "$as_me:4679: \$? = $ac_status" >&5 (exit $ac_status); }; }; then break else @@ -4684,7 +4685,7 @@ cat conftest.$ac_ext >&5 fi rm -f conftest.$ac_objext conftest.$ac_ext cat >conftest.$ac_ext <<_ACEOF -#line 4687 "configure" +#line 4688 "configure" #include "confdefs.h" #define _FILE_OFFSET_BITS 64 #include <sys/types.h> @@ -4705,16 +4706,16 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:4708: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:4709: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:4711: \$? = $ac_status" >&5 + echo "$as_me:4712: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:4714: \"$ac_try\"") >&5 + { (eval echo "$as_me:4715: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:4717: \$? = $ac_status" >&5 + echo "$as_me:4718: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_sys_file_offset_bits=64; break else @@ -4725,7 +4726,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext break done fi -echo "$as_me:4728: result: $ac_cv_sys_file_offset_bits" >&5 +echo "$as_me:4729: result: $ac_cv_sys_file_offset_bits" >&5 echo "${ECHO_T}$ac_cv_sys_file_offset_bits" >&6 if test "$ac_cv_sys_file_offset_bits" != no; then @@ -4735,7 +4736,7 @@ EOF fi rm -f conftest* - echo "$as_me:4738: checking for _LARGE_FILES value needed for large files" >&5 + echo "$as_me:4739: checking for _LARGE_FILES value needed for large files" >&5 echo $ECHO_N "checking for _LARGE_FILES value needed for large files... $ECHO_C" >&6 if test "${ac_cv_sys_large_files+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -4743,7 +4744,7 @@ else while :; do ac_cv_sys_large_files=no cat >conftest.$ac_ext <<_ACEOF -#line 4746 "configure" +#line 4747 "configure" #include "confdefs.h" #include <sys/types.h> /* Check that off_t can represent 2**63 - 1 correctly. @@ -4763,16 +4764,16 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:4766: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:4767: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:4769: \$? = $ac_status" >&5 + echo "$as_me:4770: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:4772: \"$ac_try\"") >&5 + { (eval echo "$as_me:4773: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:4775: \$? = $ac_status" >&5 + echo "$as_me:4776: \$? = $ac_status" >&5 (exit $ac_status); }; }; then break else @@ -4781,7 +4782,7 @@ cat conftest.$ac_ext >&5 fi rm -f conftest.$ac_objext conftest.$ac_ext cat >conftest.$ac_ext <<_ACEOF -#line 4784 "configure" +#line 4785 "configure" #include "confdefs.h" #define _LARGE_FILES 1 #include <sys/types.h> @@ -4802,16 +4803,16 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:4805: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:4806: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:4808: \$? = $ac_status" >&5 + echo "$as_me:4809: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:4811: \"$ac_try\"") >&5 + { (eval echo "$as_me:4812: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:4814: \$? = $ac_status" >&5 + echo "$as_me:4815: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_sys_large_files=1; break else @@ -4822,7 +4823,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext break done fi -echo "$as_me:4825: result: $ac_cv_sys_large_files" >&5 +echo "$as_me:4826: result: $ac_cv_sys_large_files" >&5 echo "${ECHO_T}$ac_cv_sys_large_files" >&6 if test "$ac_cv_sys_large_files" != no; then @@ -4835,7 +4836,7 @@ rm -f conftest* fi if test "$enable_largefile" != no ; then - echo "$as_me:4838: checking for _LARGEFILE_SOURCE value needed for large files" >&5 + echo "$as_me:4839: checking for _LARGEFILE_SOURCE value needed for large files" >&5 echo $ECHO_N "checking for _LARGEFILE_SOURCE value needed for large files... $ECHO_C" >&6 if test "${ac_cv_sys_largefile_source+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -4843,7 +4844,7 @@ else while :; do ac_cv_sys_largefile_source=no cat >conftest.$ac_ext <<_ACEOF -#line 4846 "configure" +#line 4847 "configure" #include "confdefs.h" #include <stdio.h> int @@ -4855,16 +4856,16 @@ return !fseeko; } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:4858: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:4859: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:4861: \$? = $ac_status" >&5 + echo "$as_me:4862: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:4864: \"$ac_try\"") >&5 + { (eval echo "$as_me:4865: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:4867: \$? = $ac_status" >&5 + echo "$as_me:4868: \$? = $ac_status" >&5 (exit $ac_status); }; }; then break else @@ -4873,7 +4874,7 @@ cat conftest.$ac_ext >&5 fi rm -f conftest.$ac_objext conftest.$ac_ext cat >conftest.$ac_ext <<_ACEOF -#line 4876 "configure" +#line 4877 "configure" #include "confdefs.h" #define _LARGEFILE_SOURCE 1 #include <stdio.h> @@ -4886,16 +4887,16 @@ return !fseeko; } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:4889: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:4890: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:4892: \$? = $ac_status" >&5 + echo "$as_me:4893: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:4895: \"$ac_try\"") >&5 + { (eval echo "$as_me:4896: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:4898: \$? = $ac_status" >&5 + echo "$as_me:4899: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_sys_largefile_source=1; break else @@ -4906,7 +4907,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext break done fi -echo "$as_me:4909: result: $ac_cv_sys_largefile_source" >&5 +echo "$as_me:4910: result: $ac_cv_sys_largefile_source" >&5 echo "${ECHO_T}$ac_cv_sys_largefile_source" >&6 if test "$ac_cv_sys_largefile_source" != no; then @@ -4920,13 +4921,13 @@ rm -f conftest* # We used to try defining _XOPEN_SOURCE=500 too, to work around a bug # in glibc 2.1.3, but that breaks too many other things. # If you want fseeko and ftello with glibc, upgrade to a fixed glibc. -echo "$as_me:4923: checking for fseeko" >&5 +echo "$as_me:4924: checking for fseeko" >&5 echo $ECHO_N "checking for fseeko... $ECHO_C" >&6 if test "${ac_cv_func_fseeko+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 4929 "configure" +#line 4930 "configure" #include "confdefs.h" #include <stdio.h> int @@ -4938,16 +4939,16 @@ return fseeko && fseeko (stdin, 0, 0); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:4941: \"$ac_link\"") >&5 +if { (eval echo "$as_me:4942: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:4944: \$? = $ac_status" >&5 + echo "$as_me:4945: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:4947: \"$ac_try\"") >&5 + { (eval echo "$as_me:4948: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:4950: \$? = $ac_status" >&5 + echo "$as_me:4951: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_fseeko=yes else @@ -4957,7 +4958,7 @@ ac_cv_func_fseeko=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:4960: result: $ac_cv_func_fseeko" >&5 +echo "$as_me:4961: result: $ac_cv_func_fseeko" >&5 echo "${ECHO_T}$ac_cv_func_fseeko" >&6 if test $ac_cv_func_fseeko = yes; then @@ -4978,14 +4979,14 @@ fi test "$ac_cv_sys_largefile_source" != no && CPPFLAGS="$CPPFLAGS -D_LARGEFILE_SOURCE " test "$ac_cv_sys_file_offset_bits" != no && CPPFLAGS="$CPPFLAGS -D_FILE_OFFSET_BITS=$ac_cv_sys_file_offset_bits " - echo "$as_me:4981: checking whether to use struct dirent64" >&5 + echo "$as_me:4982: checking whether to use struct dirent64" >&5 echo $ECHO_N "checking whether to use struct dirent64... $ECHO_C" >&6 if test "${cf_cv_struct_dirent64+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 4988 "configure" +#line 4989 "configure" #include "confdefs.h" #include <sys/types.h> @@ -5006,16 +5007,16 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:5009: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:5010: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:5012: \$? = $ac_status" >&5 + echo "$as_me:5013: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:5015: \"$ac_try\"") >&5 + { (eval echo "$as_me:5016: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:5018: \$? = $ac_status" >&5 + echo "$as_me:5019: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_struct_dirent64=yes else @@ -5026,7 +5027,7 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:5029: result: $cf_cv_struct_dirent64" >&5 +echo "$as_me:5030: result: $cf_cv_struct_dirent64" >&5 echo "${ECHO_T}$cf_cv_struct_dirent64" >&6 test "$cf_cv_struct_dirent64" = yes && cat >>confdefs.h <<\EOF #define HAVE_STRUCT_DIRENT64 1 @@ -5045,7 +5046,7 @@ if test -z "$ALL_LINGUAS" ; then # Extract the first word of "msginit", so it can be a program name with args. set dummy msginit; ac_word=$2 -echo "$as_me:5048: checking for $ac_word" >&5 +echo "$as_me:5049: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_path_MSGINIT+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -5072,17 +5073,17 @@ esac fi MSGINIT="$ac_cv_path_MSGINIT" if test "$MSGINIT" != ":"; then - echo "$as_me:5075: result: $MSGINIT" >&5 + echo "$as_me:5076: result: $MSGINIT" >&5 echo "${ECHO_T}$MSGINIT" >&6 else - echo "$as_me:5078: result: no" >&5 + echo "$as_me:5079: result: no" >&5 echo "${ECHO_T}no" >&6 fi if test "$MSGINIT" != ":" ; then test -n "$verbose" && echo " adding en.po" 1>&6 -echo "${as_me-configure}:5085: testing adding en.po ..." 1>&5 +echo "${as_me-configure}:5086: testing adding en.po ..." 1>&5 ALL_LINGUAS="$ALL_LINGUAS en" fi @@ -5091,7 +5092,7 @@ fi if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}ranlib", so it can be a program name with args. set dummy ${ac_tool_prefix}ranlib; ac_word=$2 -echo "$as_me:5094: checking for $ac_word" >&5 +echo "$as_me:5095: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_prog_RANLIB+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -5106,7 +5107,7 @@ for ac_dir in $ac_dummy; do test -z "$ac_dir" && ac_dir=. $as_executable_p "$ac_dir/$ac_word" || continue ac_cv_prog_RANLIB="${ac_tool_prefix}ranlib" -echo "$as_me:5109: found $ac_dir/$ac_word" >&5 +echo "$as_me:5110: found $ac_dir/$ac_word" >&5 break done @@ -5114,10 +5115,10 @@ fi fi RANLIB=$ac_cv_prog_RANLIB if test -n "$RANLIB"; then - echo "$as_me:5117: result: $RANLIB" >&5 + echo "$as_me:5118: result: $RANLIB" >&5 echo "${ECHO_T}$RANLIB" >&6 else - echo "$as_me:5120: result: no" >&5 + echo "$as_me:5121: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -5126,7 +5127,7 @@ if test -z "$ac_cv_prog_RANLIB"; then ac_ct_RANLIB=$RANLIB # Extract the first word of "ranlib", so it can be a program name with args. set dummy ranlib; ac_word=$2 -echo "$as_me:5129: checking for $ac_word" >&5 +echo "$as_me:5130: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_prog_ac_ct_RANLIB+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -5141,7 +5142,7 @@ for ac_dir in $ac_dummy; do test -z "$ac_dir" && ac_dir=. $as_executable_p "$ac_dir/$ac_word" || continue ac_cv_prog_ac_ct_RANLIB="ranlib" -echo "$as_me:5144: found $ac_dir/$ac_word" >&5 +echo "$as_me:5145: found $ac_dir/$ac_word" >&5 break done @@ -5150,10 +5151,10 @@ fi fi ac_ct_RANLIB=$ac_cv_prog_ac_ct_RANLIB if test -n "$ac_ct_RANLIB"; then - echo "$as_me:5153: result: $ac_ct_RANLIB" >&5 + echo "$as_me:5154: result: $ac_ct_RANLIB" >&5 echo "${ECHO_T}$ac_ct_RANLIB" >&6 else - echo "$as_me:5156: result: no" >&5 + echo "$as_me:5157: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -5162,13 +5163,13 @@ else RANLIB="$ac_cv_prog_RANLIB" fi -echo "$as_me:5165: checking for ANSI C header files" >&5 +echo "$as_me:5166: 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 5171 "configure" +#line 5172 "configure" #include "confdefs.h" #include <stdlib.h> #include <stdarg.h> @@ -5176,13 +5177,13 @@ else #include <float.h> _ACEOF -if { (eval echo "$as_me:5179: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:5180: \"$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:5185: \$? = $ac_status" >&5 + echo "$as_me:5186: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -5204,7 +5205,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 5207 "configure" +#line 5208 "configure" #include "confdefs.h" #include <string.h> @@ -5222,7 +5223,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 5225 "configure" +#line 5226 "configure" #include "confdefs.h" #include <stdlib.h> @@ -5243,7 +5244,7 @@ if test $ac_cv_header_stdc = yes; then : else cat >conftest.$ac_ext <<_ACEOF -#line 5246 "configure" +#line 5247 "configure" #include "confdefs.h" #include <ctype.h> #if ((' ' & 0x0FF) == 0x020) @@ -5269,15 +5270,15 @@ main () } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:5272: \"$ac_link\"") >&5 +if { (eval echo "$as_me:5273: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:5275: \$? = $ac_status" >&5 + echo "$as_me:5276: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:5277: \"$ac_try\"") >&5 + { (eval echo "$as_me:5278: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:5280: \$? = $ac_status" >&5 + echo "$as_me:5281: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -5290,7 +5291,7 @@ rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext fi fi fi -echo "$as_me:5293: result: $ac_cv_header_stdc" >&5 +echo "$as_me:5294: result: $ac_cv_header_stdc" >&5 echo "${ECHO_T}$ac_cv_header_stdc" >&6 if test $ac_cv_header_stdc = yes; then @@ -5300,7 +5301,7 @@ EOF fi -echo "$as_me:5303: checking for inline" >&5 +echo "$as_me:5304: checking for inline" >&5 echo $ECHO_N "checking for inline... $ECHO_C" >&6 if test "${ac_cv_c_inline+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -5308,7 +5309,7 @@ else ac_cv_c_inline=no for ac_kw in inline __inline__ __inline; do cat >conftest.$ac_ext <<_ACEOF -#line 5311 "configure" +#line 5312 "configure" #include "confdefs.h" #ifndef __cplusplus static $ac_kw int static_foo () {return 0; } @@ -5317,16 +5318,16 @@ $ac_kw int foo () {return 0; } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:5320: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:5321: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:5323: \$? = $ac_status" >&5 + echo "$as_me:5324: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:5326: \"$ac_try\"") >&5 + { (eval echo "$as_me:5327: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:5329: \$? = $ac_status" >&5 + echo "$as_me:5330: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_c_inline=$ac_kw; break else @@ -5337,7 +5338,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext done fi -echo "$as_me:5340: result: $ac_cv_c_inline" >&5 +echo "$as_me:5341: result: $ac_cv_c_inline" >&5 echo "${ECHO_T}$ac_cv_c_inline" >&6 case $ac_cv_c_inline in inline | yes) ;; @@ -5358,28 +5359,28 @@ for ac_header in sys/types.h sys/stat.h stdlib.h string.h memory.h strings.h \ inttypes.h stdint.h unistd.h do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` -echo "$as_me:5361: checking for $ac_header" >&5 +echo "$as_me:5362: 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 5367 "configure" +#line 5368 "configure" #include "confdefs.h" $ac_includes_default #include <$ac_header> _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:5373: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:5374: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:5376: \$? = $ac_status" >&5 + echo "$as_me:5377: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:5379: \"$ac_try\"") >&5 + { (eval echo "$as_me:5380: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:5382: \$? = $ac_status" >&5 + echo "$as_me:5383: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_Header=yes" else @@ -5389,7 +5390,7 @@ eval "$as_ac_Header=no" fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:5392: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:5393: 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 @@ -5399,13 +5400,13 @@ EOF fi done -echo "$as_me:5402: checking for off_t" >&5 +echo "$as_me:5403: 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 5408 "configure" +#line 5409 "configure" #include "confdefs.h" $ac_includes_default int @@ -5420,16 +5421,16 @@ if (sizeof (off_t)) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:5423: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:5424: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:5426: \$? = $ac_status" >&5 + echo "$as_me:5427: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:5429: \"$ac_try\"") >&5 + { (eval echo "$as_me:5430: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:5432: \$? = $ac_status" >&5 + echo "$as_me:5433: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_type_off_t=yes else @@ -5439,7 +5440,7 @@ ac_cv_type_off_t=no fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:5442: result: $ac_cv_type_off_t" >&5 +echo "$as_me:5443: 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 : @@ -5451,13 +5452,13 @@ EOF fi -echo "$as_me:5454: checking for size_t" >&5 +echo "$as_me:5455: 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 5460 "configure" +#line 5461 "configure" #include "confdefs.h" $ac_includes_default int @@ -5472,16 +5473,16 @@ if (sizeof (size_t)) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:5475: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:5476: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:5478: \$? = $ac_status" >&5 + echo "$as_me:5479: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:5481: \"$ac_try\"") >&5 + { (eval echo "$as_me:5482: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:5484: \$? = $ac_status" >&5 + echo "$as_me:5485: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_type_size_t=yes else @@ -5491,7 +5492,7 @@ ac_cv_type_size_t=no fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:5494: result: $ac_cv_type_size_t" >&5 +echo "$as_me:5495: result: $ac_cv_type_size_t" >&5 echo "${ECHO_T}$ac_cv_type_size_t" >&6 if test $ac_cv_type_size_t = yes; then : @@ -5505,13 +5506,13 @@ fi # The Ultrix 4.2 mips builtin alloca declared by alloca.h only works # for constant arguments. Useless! -echo "$as_me:5508: checking for working alloca.h" >&5 +echo "$as_me:5509: 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 5514 "configure" +#line 5515 "configure" #include "confdefs.h" #include <alloca.h> int @@ -5523,16 +5524,16 @@ char *p = (char *) alloca (2 * sizeof (int)); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:5526: \"$ac_link\"") >&5 +if { (eval echo "$as_me:5527: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:5529: \$? = $ac_status" >&5 + echo "$as_me:5530: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:5532: \"$ac_try\"") >&5 + { (eval echo "$as_me:5533: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:5535: \$? = $ac_status" >&5 + echo "$as_me:5536: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_working_alloca_h=yes else @@ -5542,7 +5543,7 @@ ac_cv_working_alloca_h=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:5545: result: $ac_cv_working_alloca_h" >&5 +echo "$as_me:5546: 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 @@ -5552,13 +5553,13 @@ EOF fi -echo "$as_me:5555: checking for alloca" >&5 +echo "$as_me:5556: 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 5561 "configure" +#line 5562 "configure" #include "confdefs.h" #ifdef __GNUC__ # define alloca __builtin_alloca @@ -5590,16 +5591,16 @@ char *p = (char *) alloca (1); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:5593: \"$ac_link\"") >&5 +if { (eval echo "$as_me:5594: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:5596: \$? = $ac_status" >&5 + echo "$as_me:5597: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:5599: \"$ac_try\"") >&5 + { (eval echo "$as_me:5600: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:5602: \$? = $ac_status" >&5 + echo "$as_me:5603: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_alloca_works=yes else @@ -5609,7 +5610,7 @@ ac_cv_func_alloca_works=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:5612: result: $ac_cv_func_alloca_works" >&5 +echo "$as_me:5613: 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 @@ -5630,13 +5631,13 @@ cat >>confdefs.h <<\EOF #define C_ALLOCA 1 EOF -echo "$as_me:5633: checking whether \`alloca.c' needs Cray hooks" >&5 +echo "$as_me:5634: 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 5639 "configure" +#line 5640 "configure" #include "confdefs.h" #if defined(CRAY) && ! defined(CRAY2) webecray @@ -5654,18 +5655,18 @@ fi rm -f conftest* fi -echo "$as_me:5657: result: $ac_cv_os_cray" >&5 +echo "$as_me:5658: 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:5662: checking for $ac_func" >&5 +echo "$as_me:5663: 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 5668 "configure" +#line 5669 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. */ @@ -5696,16 +5697,16 @@ f = $ac_func; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:5699: \"$ac_link\"") >&5 +if { (eval echo "$as_me:5700: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:5702: \$? = $ac_status" >&5 + echo "$as_me:5703: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:5705: \"$ac_try\"") >&5 + { (eval echo "$as_me:5706: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:5708: \$? = $ac_status" >&5 + echo "$as_me:5709: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else @@ -5715,7 +5716,7 @@ eval "$as_ac_var=no" fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:5718: result: `eval echo '${'$as_ac_var'}'`" >&5 +echo "$as_me:5719: 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 @@ -5729,7 +5730,7 @@ fi done fi -echo "$as_me:5732: checking stack direction for C alloca" >&5 +echo "$as_me:5733: 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 @@ -5738,7 +5739,7 @@ else ac_cv_c_stack_direction=0 else cat >conftest.$ac_ext <<_ACEOF -#line 5741 "configure" +#line 5742 "configure" #include "confdefs.h" int find_stack_direction () @@ -5761,15 +5762,15 @@ main () } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:5764: \"$ac_link\"") >&5 +if { (eval echo "$as_me:5765: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:5767: \$? = $ac_status" >&5 + echo "$as_me:5768: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:5769: \"$ac_try\"") >&5 + { (eval echo "$as_me:5770: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:5772: \$? = $ac_status" >&5 + echo "$as_me:5773: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_c_stack_direction=1 else @@ -5781,7 +5782,7 @@ fi rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext fi fi -echo "$as_me:5784: result: $ac_cv_c_stack_direction" >&5 +echo "$as_me:5785: result: $ac_cv_c_stack_direction" >&5 echo "${ECHO_T}$ac_cv_c_stack_direction" >&6 cat >>confdefs.h <<EOF @@ -5793,23 +5794,23 @@ fi for ac_header in stdlib.h unistd.h do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` -echo "$as_me:5796: checking for $ac_header" >&5 +echo "$as_me:5797: 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 5802 "configure" +#line 5803 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:5806: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:5807: \"$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:5812: \$? = $ac_status" >&5 + echo "$as_me:5813: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -5828,7 +5829,7 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:5831: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:5832: 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 @@ -5841,13 +5842,13 @@ done for ac_func in getpagesize do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` -echo "$as_me:5844: checking for $ac_func" >&5 +echo "$as_me:5845: 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 5850 "configure" +#line 5851 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. */ @@ -5878,16 +5879,16 @@ f = $ac_func; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:5881: \"$ac_link\"") >&5 +if { (eval echo "$as_me:5882: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:5884: \$? = $ac_status" >&5 + echo "$as_me:5885: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:5887: \"$ac_try\"") >&5 + { (eval echo "$as_me:5888: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:5890: \$? = $ac_status" >&5 + echo "$as_me:5891: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else @@ -5897,7 +5898,7 @@ eval "$as_ac_var=no" fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:5900: result: `eval echo '${'$as_ac_var'}'`" >&5 +echo "$as_me:5901: 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 @@ -5907,7 +5908,7 @@ EOF fi done -echo "$as_me:5910: checking for working mmap" >&5 +echo "$as_me:5911: checking for working mmap" >&5 echo $ECHO_N "checking for working mmap... $ECHO_C" >&6 if test "${ac_cv_func_mmap_fixed_mapped+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -5916,7 +5917,7 @@ else ac_cv_func_mmap_fixed_mapped=no else cat >conftest.$ac_ext <<_ACEOF -#line 5919 "configure" +#line 5920 "configure" #include "confdefs.h" $ac_includes_default /* Thanks to Mike Haertel and Jim Avera for this test. @@ -6043,15 +6044,15 @@ main () } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:6046: \"$ac_link\"") >&5 +if { (eval echo "$as_me:6047: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:6049: \$? = $ac_status" >&5 + echo "$as_me:6050: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:6051: \"$ac_try\"") >&5 + { (eval echo "$as_me:6052: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:6054: \$? = $ac_status" >&5 + echo "$as_me:6055: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_mmap_fixed_mapped=yes else @@ -6063,7 +6064,7 @@ fi rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext fi fi -echo "$as_me:6066: result: $ac_cv_func_mmap_fixed_mapped" >&5 +echo "$as_me:6067: result: $ac_cv_func_mmap_fixed_mapped" >&5 echo "${ECHO_T}$ac_cv_func_mmap_fixed_mapped" >&6 if test $ac_cv_func_mmap_fixed_mapped = yes; then @@ -6074,13 +6075,13 @@ EOF fi rm -f conftest.mmap - echo "$as_me:6077: checking whether we are using the GNU C Library 2.1 or newer" >&5 + echo "$as_me:6078: checking whether we are using the GNU C Library 2.1 or newer" >&5 echo $ECHO_N "checking whether we are using the GNU C Library 2.1 or newer... $ECHO_C" >&6 if test "${ac_cv_gnu_library_2_1+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 6083 "configure" +#line 6084 "configure" #include "confdefs.h" #include <features.h> @@ -6100,7 +6101,7 @@ fi rm -f conftest* fi -echo "$as_me:6103: result: $ac_cv_gnu_library_2_1" >&5 +echo "$as_me:6104: result: $ac_cv_gnu_library_2_1" >&5 echo "${ECHO_T}$ac_cv_gnu_library_2_1" >&6 GLIBC21="$ac_cv_gnu_library_2_1" @@ -6124,23 +6125,23 @@ for ac_header in argz.h limits.h locale.h nl_types.h malloc.h stddef.h \ stdlib.h string.h unistd.h sys/param.h do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` -echo "$as_me:6127: checking for $ac_header" >&5 +echo "$as_me:6128: 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 6133 "configure" +#line 6134 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:6137: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:6138: \"$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:6143: \$? = $ac_status" >&5 + echo "$as_me:6144: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -6159,7 +6160,7 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:6162: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:6163: 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 @@ -6174,13 +6175,13 @@ getgid getuid mempcpy munmap putenv setenv setlocale stpcpy strchr strcasecmp \ strdup strtoul tsearch __argz_count __argz_stringify __argz_next do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` -echo "$as_me:6177: checking for $ac_func" >&5 +echo "$as_me:6178: 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 6183 "configure" +#line 6184 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. */ @@ -6211,16 +6212,16 @@ f = $ac_func; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:6214: \"$ac_link\"") >&5 +if { (eval echo "$as_me:6215: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:6217: \$? = $ac_status" >&5 + echo "$as_me:6218: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:6220: \"$ac_try\"") >&5 + { (eval echo "$as_me:6221: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:6223: \$? = $ac_status" >&5 + echo "$as_me:6224: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else @@ -6230,7 +6231,7 @@ eval "$as_ac_var=no" fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:6233: result: `eval echo '${'$as_ac_var'}'`" >&5 +echo "$as_me:6234: 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 @@ -6278,7 +6279,7 @@ if test -n "$cf_searchpath/include" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 6281 "configure" +#line 6282 "configure" #include "confdefs.h" #include <stdio.h> int @@ -6290,16 +6291,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:6293: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:6294: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:6296: \$? = $ac_status" >&5 + echo "$as_me:6297: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:6299: \"$ac_try\"") >&5 + { (eval echo "$as_me:6300: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:6302: \$? = $ac_status" >&5 + echo "$as_me:6303: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -6316,7 +6317,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}:6319: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me-configure}:6320: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -6357,7 +6358,7 @@ if test -n "$cf_searchpath/../include" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 6360 "configure" +#line 6361 "configure" #include "confdefs.h" #include <stdio.h> int @@ -6369,16 +6370,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:6372: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:6373: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:6375: \$? = $ac_status" >&5 + echo "$as_me:6376: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:6378: \"$ac_try\"") >&5 + { (eval echo "$as_me:6379: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:6381: \$? = $ac_status" >&5 + echo "$as_me:6382: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -6395,7 +6396,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}:6398: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me-configure}:6399: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -6411,7 +6412,7 @@ echo "${as_me-configure}:6398: testing adding $cf_add_incdir to include-path ... fi else -{ { echo "$as_me:6414: error: cannot find libiconv under $withval" >&5 +{ { echo "$as_me:6415: error: cannot find libiconv under $withval" >&5 echo "$as_me: error: cannot find libiconv under $withval" >&2;} { (exit 1); exit 1; }; } fi @@ -6436,7 +6437,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}:6439: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me-configure}:6440: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -6465,7 +6466,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}:6468: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me-configure}:6469: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -6474,7 +6475,7 @@ echo "${as_me-configure}:6468: testing adding $cf_add_libdir to library-path ... fi else -{ { echo "$as_me:6477: error: cannot find libiconv under $withval" >&5 +{ { echo "$as_me:6478: error: cannot find libiconv under $withval" >&5 echo "$as_me: error: cannot find libiconv under $withval" >&2;} { (exit 1); exit 1; }; } fi @@ -6485,7 +6486,7 @@ done fi; - echo "$as_me:6488: checking for iconv" >&5 + echo "$as_me:6489: 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 @@ -6496,12 +6497,12 @@ else cf_cv_header_path_iconv= cf_cv_library_path_iconv= -echo "${as_me-configure}:6499: testing Starting FIND_LINKAGE(iconv,) ..." 1>&5 +echo "${as_me-configure}:6500: testing Starting FIND_LINKAGE(iconv,) ..." 1>&5 cf_save_LIBS="$LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 6504 "configure" +#line 6505 "configure" #include "confdefs.h" #include <stdlib.h> @@ -6520,16 +6521,16 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:6523: \"$ac_link\"") >&5 +if { (eval echo "$as_me:6524: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:6526: \$? = $ac_status" >&5 + echo "$as_me:6527: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:6529: \"$ac_try\"") >&5 + { (eval echo "$as_me:6530: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:6532: \$? = $ac_status" >&5 + echo "$as_me:6533: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_find_linkage_iconv=yes @@ -6543,7 +6544,7 @@ cat conftest.$ac_ext >&5 LIBS="-liconv $cf_save_LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 6546 "configure" +#line 6547 "configure" #include "confdefs.h" #include <stdlib.h> @@ -6562,16 +6563,16 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:6565: \"$ac_link\"") >&5 +if { (eval echo "$as_me:6566: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:6568: \$? = $ac_status" >&5 + echo "$as_me:6569: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:6571: \"$ac_try\"") >&5 + { (eval echo "$as_me:6572: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:6574: \$? = $ac_status" >&5 + echo "$as_me:6575: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_find_linkage_iconv=yes @@ -6588,9 +6589,9 @@ cat conftest.$ac_ext >&5 test -n "$verbose" && echo " find linkage for iconv library" 1>&6 -echo "${as_me-configure}:6591: testing find linkage for iconv library ..." 1>&5 +echo "${as_me-configure}:6592: testing find linkage for iconv library ..." 1>&5 -echo "${as_me-configure}:6593: testing Searching for headers in FIND_LINKAGE(iconv,) ..." 1>&5 +echo "${as_me-configure}:6594: testing Searching for headers in FIND_LINKAGE(iconv,) ..." 1>&5 cf_save_CPPFLAGS="$CPPFLAGS" cf_test_CPPFLAGS="$CPPFLAGS" @@ -6703,11 +6704,11 @@ cf_search="$cf_search $cf_header_path_list" if test -d $cf_cv_header_path_iconv ; then test -n "$verbose" && echo " ... testing $cf_cv_header_path_iconv" 1>&6 -echo "${as_me-configure}:6706: testing ... testing $cf_cv_header_path_iconv ..." 1>&5 +echo "${as_me-configure}:6707: testing ... testing $cf_cv_header_path_iconv ..." 1>&5 CPPFLAGS="$cf_save_CPPFLAGS -I$cf_cv_header_path_iconv" cat >conftest.$ac_ext <<_ACEOF -#line 6710 "configure" +#line 6711 "configure" #include "confdefs.h" #include <stdlib.h> @@ -6726,21 +6727,21 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:6729: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:6730: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:6732: \$? = $ac_status" >&5 + echo "$as_me:6733: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:6735: \"$ac_try\"") >&5 + { (eval echo "$as_me:6736: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:6738: \$? = $ac_status" >&5 + echo "$as_me:6739: \$? = $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}:6743: testing ... found iconv headers in $cf_cv_header_path_iconv ..." 1>&5 +echo "${as_me-configure}:6744: testing ... found iconv headers in $cf_cv_header_path_iconv ..." 1>&5 cf_cv_find_linkage_iconv=maybe cf_test_CPPFLAGS="$CPPFLAGS" @@ -6758,7 +6759,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "$cf_cv_find_linkage_iconv" = maybe ; then -echo "${as_me-configure}:6761: testing Searching for iconv library in FIND_LINKAGE(iconv,) ..." 1>&5 +echo "${as_me-configure}:6762: testing Searching for iconv library in FIND_LINKAGE(iconv,) ..." 1>&5 cf_save_LIBS="$LIBS" cf_save_LDFLAGS="$LDFLAGS" @@ -6855,13 +6856,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}:6858: testing ... testing $cf_cv_library_path_iconv ..." 1>&5 +echo "${as_me-configure}:6859: 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 6864 "configure" +#line 6865 "configure" #include "confdefs.h" #include <stdlib.h> @@ -6880,21 +6881,21 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:6883: \"$ac_link\"") >&5 +if { (eval echo "$as_me:6884: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:6886: \$? = $ac_status" >&5 + echo "$as_me:6887: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:6889: \"$ac_try\"") >&5 + { (eval echo "$as_me:6890: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:6892: \$? = $ac_status" >&5 + echo "$as_me:6893: \$? = $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}:6897: testing ... found iconv library in $cf_cv_library_path_iconv ..." 1>&5 +echo "${as_me-configure}:6898: testing ... found iconv library in $cf_cv_library_path_iconv ..." 1>&5 cf_cv_find_linkage_iconv=yes cf_cv_library_file_iconv="-liconv" @@ -6934,7 +6935,7 @@ am_cv_func_iconv="no, consider installing GNU libiconv" fi fi -echo "$as_me:6937: result: $am_cv_func_iconv" >&5 +echo "$as_me:6938: result: $am_cv_func_iconv" >&5 echo "${ECHO_T}$am_cv_func_iconv" >&6 if test "$am_cv_func_iconv" = yes; then @@ -6943,14 +6944,14 @@ cat >>confdefs.h <<\EOF #define HAVE_ICONV 1 EOF - echo "$as_me:6946: checking if the declaration of iconv() needs const." >&5 + echo "$as_me:6947: 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 6953 "configure" +#line 6954 "configure" #include "confdefs.h" #include <stdlib.h> @@ -6975,16 +6976,16 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:6978: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:6979: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:6981: \$? = $ac_status" >&5 + echo "$as_me:6982: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:6984: \"$ac_try\"") >&5 + { (eval echo "$as_me:6985: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:6987: \$? = $ac_status" >&5 + echo "$as_me:6988: \$? = $ac_status" >&5 (exit $ac_status); }; }; then am_cv_proto_iconv_const=no else @@ -6994,7 +6995,7 @@ am_cv_proto_iconv_const=yes fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:6997: result: $am_cv_proto_iconv_const" >&5 +echo "$as_me:6998: 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 @@ -7036,7 +7037,7 @@ if test -n "$cf_cv_header_path_iconv" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 7039 "configure" +#line 7040 "configure" #include "confdefs.h" #include <stdio.h> int @@ -7048,16 +7049,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:7051: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:7052: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:7054: \$? = $ac_status" >&5 + echo "$as_me:7055: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:7057: \"$ac_try\"") >&5 + { (eval echo "$as_me:7058: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:7060: \$? = $ac_status" >&5 + echo "$as_me:7061: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -7074,7 +7075,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}:7077: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me-configure}:7078: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -7111,7 +7112,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}:7114: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me-configure}:7115: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -7122,13 +7123,13 @@ fi fi fi - echo "$as_me:7125: checking for nl_langinfo and CODESET" >&5 + echo "$as_me:7126: checking for nl_langinfo and CODESET" >&5 echo $ECHO_N "checking for nl_langinfo and CODESET... $ECHO_C" >&6 if test "${am_cv_langinfo_codeset+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 7131 "configure" +#line 7132 "configure" #include "confdefs.h" #include <langinfo.h> int @@ -7140,16 +7141,16 @@ char* cs = nl_langinfo(CODESET); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:7143: \"$ac_link\"") >&5 +if { (eval echo "$as_me:7144: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:7146: \$? = $ac_status" >&5 + echo "$as_me:7147: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:7149: \"$ac_try\"") >&5 + { (eval echo "$as_me:7150: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:7152: \$? = $ac_status" >&5 + echo "$as_me:7153: \$? = $ac_status" >&5 (exit $ac_status); }; }; then am_cv_langinfo_codeset=yes else @@ -7160,7 +7161,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:7163: result: $am_cv_langinfo_codeset" >&5 +echo "$as_me:7164: result: $am_cv_langinfo_codeset" >&5 echo "${ECHO_T}$am_cv_langinfo_codeset" >&6 if test $am_cv_langinfo_codeset = yes; then @@ -7171,13 +7172,13 @@ EOF fi if test $ac_cv_header_locale_h = yes; then - echo "$as_me:7174: checking for LC_MESSAGES" >&5 + echo "$as_me:7175: checking for LC_MESSAGES" >&5 echo $ECHO_N "checking for LC_MESSAGES... $ECHO_C" >&6 if test "${am_cv_val_LC_MESSAGES+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 7180 "configure" +#line 7181 "configure" #include "confdefs.h" #include <locale.h> int @@ -7189,16 +7190,16 @@ return LC_MESSAGES } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:7192: \"$ac_link\"") >&5 +if { (eval echo "$as_me:7193: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:7195: \$? = $ac_status" >&5 + echo "$as_me:7196: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:7198: \"$ac_try\"") >&5 + { (eval echo "$as_me:7199: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:7201: \$? = $ac_status" >&5 + echo "$as_me:7202: \$? = $ac_status" >&5 (exit $ac_status); }; }; then am_cv_val_LC_MESSAGES=yes else @@ -7208,7 +7209,7 @@ am_cv_val_LC_MESSAGES=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:7211: result: $am_cv_val_LC_MESSAGES" >&5 +echo "$as_me:7212: result: $am_cv_val_LC_MESSAGES" >&5 echo "${ECHO_T}$am_cv_val_LC_MESSAGES" >&6 if test $am_cv_val_LC_MESSAGES = yes; then @@ -7218,7 +7219,7 @@ EOF fi fi - echo "$as_me:7221: checking whether NLS is requested" >&5 + echo "$as_me:7222: checking whether NLS is requested" >&5 echo $ECHO_N "checking whether NLS is requested... $ECHO_C" >&6 # Check whether --enable-nls or --disable-nls was given. @@ -7228,7 +7229,7 @@ if test "${enable_nls+set}" = set; then else USE_NLS=no fi; - echo "$as_me:7231: result: $USE_NLS" >&5 + echo "$as_me:7232: result: $USE_NLS" >&5 echo "${ECHO_T}$USE_NLS" >&6 BUILD_INCLUDED_LIBINTL=no @@ -7241,7 +7242,7 @@ cat >>confdefs.h <<\EOF #define ENABLE_NLS 1 EOF - echo "$as_me:7244: checking whether included gettext is requested" >&5 + echo "$as_me:7245: checking whether included gettext is requested" >&5 echo $ECHO_N "checking whether included gettext is requested... $ECHO_C" >&6 # Check whether --with-included-gettext or --without-included-gettext was given. @@ -7251,7 +7252,7 @@ if test "${with_included_gettext+set}" = set; then else nls_cv_force_use_gnu_gettext=no fi; - echo "$as_me:7254: result: $nls_cv_force_use_gnu_gettext" >&5 + echo "$as_me:7255: result: $nls_cv_force_use_gnu_gettext" >&5 echo "${ECHO_T}$nls_cv_force_use_gnu_gettext" >&6 nls_cv_use_gnu_gettext="$nls_cv_force_use_gnu_gettext" @@ -7260,7 +7261,7 @@ echo "${ECHO_T}$nls_cv_force_use_gnu_gettext" >&6 cf_save_LIBS_1="$LIBS" LIBS="$LIBICONV $LIBS" - echo "$as_me:7263: checking for libintl.h and gettext()" >&5 + echo "$as_me:7264: checking for libintl.h and gettext()" >&5 echo $ECHO_N "checking for libintl.h and gettext()... $ECHO_C" >&6 if test "${cf_cv_func_gettext+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -7271,12 +7272,12 @@ else cf_cv_header_path_intl= cf_cv_library_path_intl= -echo "${as_me-configure}:7274: testing Starting FIND_LINKAGE(intl,) ..." 1>&5 +echo "${as_me-configure}:7275: testing Starting FIND_LINKAGE(intl,) ..." 1>&5 cf_save_LIBS="$LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 7279 "configure" +#line 7280 "configure" #include "confdefs.h" #include <libintl.h> @@ -7296,16 +7297,16 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:7299: \"$ac_link\"") >&5 +if { (eval echo "$as_me:7300: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:7302: \$? = $ac_status" >&5 + echo "$as_me:7303: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:7305: \"$ac_try\"") >&5 + { (eval echo "$as_me:7306: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:7308: \$? = $ac_status" >&5 + echo "$as_me:7309: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_find_linkage_intl=yes @@ -7319,7 +7320,7 @@ cat conftest.$ac_ext >&5 LIBS="-lintl $cf_save_LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 7322 "configure" +#line 7323 "configure" #include "confdefs.h" #include <libintl.h> @@ -7339,16 +7340,16 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:7342: \"$ac_link\"") >&5 +if { (eval echo "$as_me:7343: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:7345: \$? = $ac_status" >&5 + echo "$as_me:7346: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:7348: \"$ac_try\"") >&5 + { (eval echo "$as_me:7349: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:7351: \$? = $ac_status" >&5 + echo "$as_me:7352: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_find_linkage_intl=yes @@ -7365,9 +7366,9 @@ cat conftest.$ac_ext >&5 test -n "$verbose" && echo " find linkage for intl library" 1>&6 -echo "${as_me-configure}:7368: testing find linkage for intl library ..." 1>&5 +echo "${as_me-configure}:7369: testing find linkage for intl library ..." 1>&5 -echo "${as_me-configure}:7370: testing Searching for headers in FIND_LINKAGE(intl,) ..." 1>&5 +echo "${as_me-configure}:7371: testing Searching for headers in FIND_LINKAGE(intl,) ..." 1>&5 cf_save_CPPFLAGS="$CPPFLAGS" cf_test_CPPFLAGS="$CPPFLAGS" @@ -7480,11 +7481,11 @@ cf_search="$cf_search $cf_header_path_list" if test -d $cf_cv_header_path_intl ; then test -n "$verbose" && echo " ... testing $cf_cv_header_path_intl" 1>&6 -echo "${as_me-configure}:7483: testing ... testing $cf_cv_header_path_intl ..." 1>&5 +echo "${as_me-configure}:7484: testing ... testing $cf_cv_header_path_intl ..." 1>&5 CPPFLAGS="$cf_save_CPPFLAGS -I$cf_cv_header_path_intl" cat >conftest.$ac_ext <<_ACEOF -#line 7487 "configure" +#line 7488 "configure" #include "confdefs.h" #include <libintl.h> @@ -7504,21 +7505,21 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:7507: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:7508: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:7510: \$? = $ac_status" >&5 + echo "$as_me:7511: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:7513: \"$ac_try\"") >&5 + { (eval echo "$as_me:7514: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:7516: \$? = $ac_status" >&5 + echo "$as_me:7517: \$? = $ac_status" >&5 (exit $ac_status); }; }; then test -n "$verbose" && echo " ... found intl headers in $cf_cv_header_path_intl" 1>&6 -echo "${as_me-configure}:7521: testing ... found intl headers in $cf_cv_header_path_intl ..." 1>&5 +echo "${as_me-configure}:7522: testing ... found intl headers in $cf_cv_header_path_intl ..." 1>&5 cf_cv_find_linkage_intl=maybe cf_test_CPPFLAGS="$CPPFLAGS" @@ -7536,7 +7537,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "$cf_cv_find_linkage_intl" = maybe ; then -echo "${as_me-configure}:7539: testing Searching for intl library in FIND_LINKAGE(intl,) ..." 1>&5 +echo "${as_me-configure}:7540: testing Searching for intl library in FIND_LINKAGE(intl,) ..." 1>&5 cf_save_LIBS="$LIBS" cf_save_LDFLAGS="$LDFLAGS" @@ -7633,13 +7634,13 @@ cf_search="$cf_library_path_list $cf_search" if test -d $cf_cv_library_path_intl ; then test -n "$verbose" && echo " ... testing $cf_cv_library_path_intl" 1>&6 -echo "${as_me-configure}:7636: testing ... testing $cf_cv_library_path_intl ..." 1>&5 +echo "${as_me-configure}:7637: testing ... testing $cf_cv_library_path_intl ..." 1>&5 CPPFLAGS="$cf_test_CPPFLAGS" LIBS="-lintl $cf_save_LIBS" LDFLAGS="$cf_save_LDFLAGS -L$cf_cv_library_path_intl" cat >conftest.$ac_ext <<_ACEOF -#line 7642 "configure" +#line 7643 "configure" #include "confdefs.h" #include <libintl.h> @@ -7659,21 +7660,21 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:7662: \"$ac_link\"") >&5 +if { (eval echo "$as_me:7663: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:7665: \$? = $ac_status" >&5 + echo "$as_me:7666: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:7668: \"$ac_try\"") >&5 + { (eval echo "$as_me:7669: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:7671: \$? = $ac_status" >&5 + echo "$as_me:7672: \$? = $ac_status" >&5 (exit $ac_status); }; }; then test -n "$verbose" && echo " ... found intl library in $cf_cv_library_path_intl" 1>&6 -echo "${as_me-configure}:7676: testing ... found intl library in $cf_cv_library_path_intl ..." 1>&5 +echo "${as_me-configure}:7677: testing ... found intl library in $cf_cv_library_path_intl ..." 1>&5 cf_cv_find_linkage_intl=yes cf_cv_library_file_intl="-lintl" @@ -7713,7 +7714,7 @@ cf_cv_func_gettext=no fi fi -echo "$as_me:7716: result: $cf_cv_func_gettext" >&5 +echo "$as_me:7717: result: $cf_cv_func_gettext" >&5 echo "${ECHO_T}$cf_cv_func_gettext" >&6 LIBS="$cf_save_LIBS_1" @@ -7752,7 +7753,7 @@ if test -n "$cf_cv_header_path_intl" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 7755 "configure" +#line 7756 "configure" #include "confdefs.h" #include <stdio.h> int @@ -7764,16 +7765,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:7767: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:7768: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:7770: \$? = $ac_status" >&5 + echo "$as_me:7771: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:7773: \"$ac_try\"") >&5 + { (eval echo "$as_me:7774: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:7776: \$? = $ac_status" >&5 + echo "$as_me:7777: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -7790,7 +7791,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}:7793: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me-configure}:7794: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -7827,7 +7828,7 @@ if test -n "$cf_cv_library_path_intl" ; then if test "$cf_have_libdir" = no ; then test -n "$verbose" && echo " adding $cf_add_libdir to library-path" 1>&6 -echo "${as_me-configure}:7830: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me-configure}:7831: testing adding $cf_add_libdir to library-path ..." 1>&5 INTLLIBS="-L$cf_add_libdir $INTLLIBS" fi @@ -7843,13 +7844,13 @@ fi for ac_func in dcgettext do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` -echo "$as_me:7846: checking for $ac_func" >&5 +echo "$as_me:7847: 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 7852 "configure" +#line 7853 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. */ @@ -7880,16 +7881,16 @@ f = $ac_func; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:7883: \"$ac_link\"") >&5 +if { (eval echo "$as_me:7884: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:7886: \$? = $ac_status" >&5 + echo "$as_me:7887: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:7889: \"$ac_try\"") >&5 + { (eval echo "$as_me:7890: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:7892: \$? = $ac_status" >&5 + echo "$as_me:7893: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else @@ -7899,7 +7900,7 @@ eval "$as_ac_var=no" fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:7902: result: `eval echo '${'$as_ac_var'}'`" >&5 +echo "$as_me:7903: 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 @@ -7914,7 +7915,7 @@ done # Extract the first word of "msgfmt", so it can be a program name with args. set dummy msgfmt; ac_word=$2 -echo "$as_me:7917: checking for $ac_word" >&5 +echo "$as_me:7918: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_path_MSGFMT+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -7941,16 +7942,16 @@ esac fi MSGFMT="$ac_cv_path_MSGFMT" if test "$MSGFMT" != ":"; then - echo "$as_me:7944: result: $MSGFMT" >&5 + echo "$as_me:7945: result: $MSGFMT" >&5 echo "${ECHO_T}$MSGFMT" >&6 else - echo "$as_me:7947: result: no" >&5 + echo "$as_me:7948: result: no" >&5 echo "${ECHO_T}no" >&6 fi # Extract the first word of "gmsgfmt", so it can be a program name with args. set dummy gmsgfmt; ac_word=$2 -echo "$as_me:7953: checking for $ac_word" >&5 +echo "$as_me:7954: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_path_GMSGFMT+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -7967,7 +7968,7 @@ for ac_dir in $ac_dummy; do test -z "$ac_dir" && ac_dir=. if $as_executable_p "$ac_dir/$ac_word"; then ac_cv_path_GMSGFMT="$ac_dir/$ac_word" - echo "$as_me:7970: found $ac_dir/$ac_word" >&5 + echo "$as_me:7971: found $ac_dir/$ac_word" >&5 break fi done @@ -7979,17 +7980,17 @@ fi GMSGFMT=$ac_cv_path_GMSGFMT if test -n "$GMSGFMT"; then - echo "$as_me:7982: result: $GMSGFMT" >&5 + echo "$as_me:7983: result: $GMSGFMT" >&5 echo "${ECHO_T}$GMSGFMT" >&6 else - echo "$as_me:7985: result: no" >&5 + echo "$as_me:7986: result: no" >&5 echo "${ECHO_T}no" >&6 fi # Extract the first word of "xgettext", so it can be a program name with args. set dummy xgettext; ac_word=$2 -echo "$as_me:7992: checking for $ac_word" >&5 +echo "$as_me:7993: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_path_XGETTEXT+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -8016,10 +8017,10 @@ esac fi XGETTEXT="$ac_cv_path_XGETTEXT" if test "$XGETTEXT" != ":"; then - echo "$as_me:8019: result: $XGETTEXT" >&5 + echo "$as_me:8020: result: $XGETTEXT" >&5 echo "${ECHO_T}$XGETTEXT" >&6 else - echo "$as_me:8022: result: no" >&5 + echo "$as_me:8023: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -8034,7 +8035,7 @@ fi if test "$nls_cv_use_gnu_gettext" = "yes"; then if test ! -d $srcdir/intl ; then - { { echo "$as_me:8037: error: no NLS library is packaged with this application" >&5 + { { echo "$as_me:8038: error: no NLS library is packaged with this application" >&5 echo "$as_me: error: no NLS library is packaged with this application" >&2;} { (exit 1); exit 1; }; } fi @@ -8042,7 +8043,7 @@ echo "$as_me: error: no NLS library is packaged with this application" >&2;} # Extract the first word of "msgfmt", so it can be a program name with args. set dummy msgfmt; ac_word=$2 -echo "$as_me:8045: checking for $ac_word" >&5 +echo "$as_me:8046: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_path_MSGFMT+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -8069,16 +8070,16 @@ esac fi MSGFMT="$ac_cv_path_MSGFMT" if test "$MSGFMT" != ":"; then - echo "$as_me:8072: result: $MSGFMT" >&5 + echo "$as_me:8073: result: $MSGFMT" >&5 echo "${ECHO_T}$MSGFMT" >&6 else - echo "$as_me:8075: result: no" >&5 + echo "$as_me:8076: result: no" >&5 echo "${ECHO_T}no" >&6 fi # Extract the first word of "gmsgfmt", so it can be a program name with args. set dummy gmsgfmt; ac_word=$2 -echo "$as_me:8081: checking for $ac_word" >&5 +echo "$as_me:8082: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_path_GMSGFMT+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -8095,7 +8096,7 @@ for ac_dir in $ac_dummy; do test -z "$ac_dir" && ac_dir=. if $as_executable_p "$ac_dir/$ac_word"; then ac_cv_path_GMSGFMT="$ac_dir/$ac_word" - echo "$as_me:8098: found $ac_dir/$ac_word" >&5 + echo "$as_me:8099: found $ac_dir/$ac_word" >&5 break fi done @@ -8107,17 +8108,17 @@ fi GMSGFMT=$ac_cv_path_GMSGFMT if test -n "$GMSGFMT"; then - echo "$as_me:8110: result: $GMSGFMT" >&5 + echo "$as_me:8111: result: $GMSGFMT" >&5 echo "${ECHO_T}$GMSGFMT" >&6 else - echo "$as_me:8113: result: no" >&5 + echo "$as_me:8114: result: no" >&5 echo "${ECHO_T}no" >&6 fi # Extract the first word of "xgettext", so it can be a program name with args. set dummy xgettext; ac_word=$2 -echo "$as_me:8120: checking for $ac_word" >&5 +echo "$as_me:8121: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_path_XGETTEXT+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -8144,10 +8145,10 @@ esac fi XGETTEXT="$ac_cv_path_XGETTEXT" if test "$XGETTEXT" != ":"; then - echo "$as_me:8147: result: $XGETTEXT" >&5 + echo "$as_me:8148: result: $XGETTEXT" >&5 echo "${ECHO_T}$XGETTEXT" >&6 else - echo "$as_me:8150: result: no" >&5 + echo "$as_me:8151: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -8162,7 +8163,7 @@ fi if $GMSGFMT --statistics /dev/null >/dev/null 2>&1; then : ; else - echo "$as_me:8165: result: found msgfmt program is not GNU msgfmt; ignore it" >&5 + echo "$as_me:8166: result: found msgfmt program is not GNU msgfmt; ignore it" >&5 echo "${ECHO_T}found msgfmt program is not GNU msgfmt; ignore it" >&6 GMSGFMT=":" fi @@ -8172,7 +8173,7 @@ echo "${ECHO_T}found msgfmt program is not GNU msgfmt; ignore it" >&6 if $XGETTEXT --omit-header /dev/null >/dev/null 2>&1; then : ; else - echo "$as_me:8175: result: found xgettext program is not GNU xgettext; ignore it" >&5 + echo "$as_me:8176: result: found xgettext program is not GNU xgettext; ignore it" >&5 echo "${ECHO_T}found xgettext program is not GNU xgettext; ignore it" >&6 XGETTEXT=":" fi @@ -8192,7 +8193,7 @@ echo "${ECHO_T}found xgettext program is not GNU xgettext; ignore it" >&6 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:8195: checking for $ac_word" >&5 +echo "$as_me:8196: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_prog_INTLBISON+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -8207,7 +8208,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_INTLBISON="$ac_prog" -echo "$as_me:8210: found $ac_dir/$ac_word" >&5 +echo "$as_me:8211: found $ac_dir/$ac_word" >&5 break done @@ -8215,10 +8216,10 @@ fi fi INTLBISON=$ac_cv_prog_INTLBISON if test -n "$INTLBISON"; then - echo "$as_me:8218: result: $INTLBISON" >&5 + echo "$as_me:8219: result: $INTLBISON" >&5 echo "${ECHO_T}$INTLBISON" >&6 else - echo "$as_me:8221: result: no" >&5 + echo "$as_me:8222: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -8228,7 +8229,7 @@ done if test -z "$INTLBISON"; then ac_verc_fail=yes else - echo "$as_me:8231: checking version of bison" >&5 + echo "$as_me:8232: checking version of bison" >&5 echo $ECHO_N "checking version of bison... $ECHO_C" >&6 ac_prog_version=`$INTLBISON --version 2>&1 | sed -n 's/^.*GNU Bison.* \([0-9]*\.[0-9.]*\).*$/\1/p'` case $ac_prog_version in @@ -8237,7 +8238,7 @@ echo $ECHO_N "checking version of bison... $ECHO_C" >&6 ac_prog_version="$ac_prog_version, ok"; ac_verc_fail=no;; *) ac_prog_version="$ac_prog_version, bad"; ac_verc_fail=yes;; esac - echo "$as_me:8240: result: $ac_prog_version" >&5 + echo "$as_me:8241: result: $ac_prog_version" >&5 echo "${ECHO_T}$ac_prog_version" >&6 fi if test $ac_verc_fail = yes; then @@ -8263,7 +8264,7 @@ echo "${ECHO_T}$ac_prog_version" >&6 if test "x$ALL_LINGUAS" = "x"; then LINGUAS= else - echo "$as_me:8266: checking for catalogs to be installed" >&5 + echo "$as_me:8267: checking for catalogs to be installed" >&5 echo $ECHO_N "checking for catalogs to be installed... $ECHO_C" >&6 NEW_LINGUAS= for presentlang in $ALL_LINGUAS; do @@ -8283,7 +8284,7 @@ echo $ECHO_N "checking for catalogs to be installed... $ECHO_C" >&6 fi done LINGUAS=$NEW_LINGUAS - echo "$as_me:8286: result: $LINGUAS" >&5 + echo "$as_me:8287: result: $LINGUAS" >&5 echo "${ECHO_T}$LINGUAS" >&6 fi @@ -8303,7 +8304,7 @@ cf_makefile=makefile use_our_messages=no if test "$USE_NLS" = yes ; then if test -d $srcdir/po ; then -echo "$as_me:8306: checking if we should use included message-library" >&5 +echo "$as_me:8307: checking if we should use included message-library" >&5 echo $ECHO_N "checking if we should use included message-library... $ECHO_C" >&6 # Check whether --enable-included-msgs or --disable-included-msgs was given. @@ -8314,7 +8315,7 @@ else use_our_messages=yes fi; fi -echo "$as_me:8317: result: $use_our_messages" >&5 +echo "$as_me:8318: result: $use_our_messages" >&5 echo "${ECHO_T}$use_our_messages" >&6 fi @@ -8355,23 +8356,23 @@ else for ac_header in libintl.h do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` -echo "$as_me:8358: checking for $ac_header" >&5 +echo "$as_me:8359: 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 8364 "configure" +#line 8365 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:8368: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:8369: \"$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:8374: \$? = $ac_status" >&5 + echo "$as_me:8375: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -8390,7 +8391,7 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:8393: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:8394: 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 @@ -8473,7 +8474,7 @@ case ".$withval" in #(vi withval=`echo $withval | sed -e s%NONE%$cf_path_syntax%` ;; *) - { { echo "$as_me:8476: error: expected a pathname, not \"$withval\"" >&5 + { { echo "$as_me:8477: error: expected a pathname, not \"$withval\"" >&5 echo "$as_me: error: expected a pathname, not \"$withval\"" >&2;} { (exit 1); exit 1; }; } ;; @@ -8482,7 +8483,7 @@ esac fi NLS_DATADIR="$withval" -echo "$as_me:8485: checking if you want full utility pathnames" >&5 +echo "$as_me:8486: checking if you want full utility pathnames" >&5 echo $ECHO_N "checking if you want full utility pathnames... $ECHO_C" >&6 # Check whether --enable-full-paths or --disable-full-paths was given. @@ -8499,13 +8500,13 @@ else with_full_paths=yes fi; -echo "$as_me:8502: result: $with_full_paths" >&5 +echo "$as_me:8503: result: $with_full_paths" >&5 echo "${ECHO_T}$with_full_paths" >&6 test $with_full_paths = no && cat >>confdefs.h <<\EOF #define USE_EXECVP 1 EOF -echo "$as_me:8508: checking for system mailer" >&5 +echo "$as_me:8509: checking for system mailer" >&5 echo $ECHO_N "checking for system mailer... $ECHO_C" >&6 if test "${cf_cv_SYSTEM_MAIL+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -8525,13 +8526,13 @@ else fi -echo "$as_me:8528: result: $cf_cv_SYSTEM_MAIL" >&5 +echo "$as_me:8529: result: $cf_cv_SYSTEM_MAIL" >&5 echo "${ECHO_T}$cf_cv_SYSTEM_MAIL" >&6 cat >>confdefs.h <<EOF #define SYSTEM_MAIL "$cf_cv_SYSTEM_MAIL" EOF -echo "$as_me:8534: checking system mail flags" >&5 +echo "$as_me:8535: checking system mail flags" >&5 echo $ECHO_N "checking system mail flags... $ECHO_C" >&6 if test "${cf_cv_system_mail_flags+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -8547,7 +8548,7 @@ else fi -echo "$as_me:8550: result: $cf_cv_system_mail_flags" >&5 +echo "$as_me:8551: result: $cf_cv_system_mail_flags" >&5 echo "${ECHO_T}$cf_cv_system_mail_flags" >&6 cat >>confdefs.h <<EOF #define SYSTEM_MAIL_FLAGS "$cf_cv_system_mail_flags" @@ -8592,14 +8593,14 @@ irix[56].*) #(vi ;; linux*|gnu*|mint*|k*bsd*-gnu) #(vi -echo "$as_me:8595: checking if we must define _GNU_SOURCE" >&5 +echo "$as_me:8596: checking if we must define _GNU_SOURCE" >&5 echo $ECHO_N "checking if we must define _GNU_SOURCE... $ECHO_C" >&6 if test "${cf_cv_gnu_source+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 8602 "configure" +#line 8603 "configure" #include "confdefs.h" #include <sys/types.h> int @@ -8614,16 +8615,16 @@ make an error } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:8617: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:8618: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:8620: \$? = $ac_status" >&5 + echo "$as_me:8621: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:8623: \"$ac_try\"") >&5 + { (eval echo "$as_me:8624: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:8626: \$? = $ac_status" >&5 + echo "$as_me:8627: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_gnu_source=no else @@ -8632,7 +8633,7 @@ cat conftest.$ac_ext >&5 cf_save="$CPPFLAGS" CPPFLAGS="$CPPFLAGS -D_GNU_SOURCE" cat >conftest.$ac_ext <<_ACEOF -#line 8635 "configure" +#line 8636 "configure" #include "confdefs.h" #include <sys/types.h> int @@ -8647,16 +8648,16 @@ make an error } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:8650: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:8651: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:8653: \$? = $ac_status" >&5 + echo "$as_me:8654: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:8656: \"$ac_try\"") >&5 + { (eval echo "$as_me:8657: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:8659: \$? = $ac_status" >&5 + echo "$as_me:8660: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_gnu_source=no else @@ -8671,7 +8672,7 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:8674: result: $cf_cv_gnu_source" >&5 +echo "$as_me:8675: result: $cf_cv_gnu_source" >&5 echo "${ECHO_T}$cf_cv_gnu_source" >&6 test "$cf_cv_gnu_source" = yes && CPPFLAGS="$CPPFLAGS -D_GNU_SOURCE" @@ -8701,14 +8702,14 @@ solaris2.[1-9]) #(vi cf_xopen_source="-D__EXTENSIONS__" ;; *) - echo "$as_me:8704: checking if we should define _XOPEN_SOURCE" >&5 + echo "$as_me:8705: checking if we should define _XOPEN_SOURCE" >&5 echo $ECHO_N "checking if we should define _XOPEN_SOURCE... $ECHO_C" >&6 if test "${cf_cv_xopen_source+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 8711 "configure" +#line 8712 "configure" #include "confdefs.h" #include <sys/types.h> int @@ -8723,16 +8724,16 @@ make an error } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:8726: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:8727: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:8729: \$? = $ac_status" >&5 + echo "$as_me:8730: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:8732: \"$ac_try\"") >&5 + { (eval echo "$as_me:8733: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:8735: \$? = $ac_status" >&5 + echo "$as_me:8736: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_xopen_source=no else @@ -8741,7 +8742,7 @@ cat conftest.$ac_ext >&5 cf_save="$CPPFLAGS" CPPFLAGS="$CPPFLAGS -D_XOPEN_SOURCE=$cf_XOPEN_SOURCE" cat >conftest.$ac_ext <<_ACEOF -#line 8744 "configure" +#line 8745 "configure" #include "confdefs.h" #include <sys/types.h> int @@ -8756,16 +8757,16 @@ make an error } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:8759: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:8760: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:8762: \$? = $ac_status" >&5 + echo "$as_me:8763: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:8765: \"$ac_try\"") >&5 + { (eval echo "$as_me:8766: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:8768: \$? = $ac_status" >&5 + echo "$as_me:8769: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_xopen_source=no else @@ -8780,7 +8781,7 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:8783: result: $cf_cv_xopen_source" >&5 +echo "$as_me:8784: result: $cf_cv_xopen_source" >&5 echo "${ECHO_T}$cf_cv_xopen_source" >&6 if test "$cf_cv_xopen_source" != no ; then @@ -8887,16 +8888,16 @@ cf_trim_CPPFLAGS=`echo "$cf_save_CPPFLAGS" | \ sed -e 's/-[UD]'"_POSIX_C_SOURCE"'\(=[^ ]*\)\?[ ]/ /g' \ -e 's/-[UD]'"_POSIX_C_SOURCE"'\(=[^ ]*\)\?$//g'` -echo "$as_me:8890: checking if we should define _POSIX_C_SOURCE" >&5 +echo "$as_me:8891: checking if we should define _POSIX_C_SOURCE" >&5 echo $ECHO_N "checking if we should define _POSIX_C_SOURCE... $ECHO_C" >&6 if test "${cf_cv_posix_c_source+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else -echo "${as_me-configure}:8896: testing if the symbol is already defined go no further ..." 1>&5 +echo "${as_me-configure}:8897: testing if the symbol is already defined go no further ..." 1>&5 cat >conftest.$ac_ext <<_ACEOF -#line 8899 "configure" +#line 8900 "configure" #include "confdefs.h" #include <sys/types.h> int @@ -8911,16 +8912,16 @@ make an error } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:8914: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:8915: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:8917: \$? = $ac_status" >&5 + echo "$as_me:8918: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:8920: \"$ac_try\"") >&5 + { (eval echo "$as_me:8921: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:8923: \$? = $ac_status" >&5 + echo "$as_me:8924: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_posix_c_source=no else @@ -8941,7 +8942,7 @@ cf_want_posix_source=no esac if test "$cf_want_posix_source" = yes ; then cat >conftest.$ac_ext <<_ACEOF -#line 8944 "configure" +#line 8945 "configure" #include "confdefs.h" #include <sys/types.h> int @@ -8956,16 +8957,16 @@ make an error } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:8959: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:8960: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:8962: \$? = $ac_status" >&5 + echo "$as_me:8963: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:8965: \"$ac_try\"") >&5 + { (eval echo "$as_me:8966: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:8968: \$? = $ac_status" >&5 + echo "$as_me:8969: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -8976,15 +8977,15 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "${as_me-configure}:8979: testing ifdef from value $cf_POSIX_C_SOURCE ..." 1>&5 +echo "${as_me-configure}:8980: testing ifdef from value $cf_POSIX_C_SOURCE ..." 1>&5 CFLAGS="$cf_trim_CFLAGS" CPPFLAGS="$cf_trim_CPPFLAGS $cf_cv_posix_c_source" -echo "${as_me-configure}:8984: testing if the second compile does not leave our definition intact error ..." 1>&5 +echo "${as_me-configure}:8985: testing if the second compile does not leave our definition intact error ..." 1>&5 cat >conftest.$ac_ext <<_ACEOF -#line 8987 "configure" +#line 8988 "configure" #include "confdefs.h" #include <sys/types.h> int @@ -8999,16 +9000,16 @@ make an error } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:9002: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:9003: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:9005: \$? = $ac_status" >&5 + echo "$as_me:9006: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:9008: \"$ac_try\"") >&5 + { (eval echo "$as_me:9009: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:9011: \$? = $ac_status" >&5 + echo "$as_me:9012: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -9024,7 +9025,7 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:9027: result: $cf_cv_posix_c_source" >&5 +echo "$as_me:9028: result: $cf_cv_posix_c_source" >&5 echo "${ECHO_T}$cf_cv_posix_c_source" >&6 if test "$cf_cv_posix_c_source" != no ; then @@ -9196,14 +9197,14 @@ fi fi -echo "$as_me:9199: checking if SIGWINCH is defined" >&5 +echo "$as_me:9200: checking if SIGWINCH is defined" >&5 echo $ECHO_N "checking if SIGWINCH is defined... $ECHO_C" >&6 if test "${cf_cv_define_sigwinch+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 9206 "configure" +#line 9207 "configure" #include "confdefs.h" #include <sys/types.h> @@ -9218,23 +9219,23 @@ int x = SIGWINCH } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:9221: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:9222: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:9224: \$? = $ac_status" >&5 + echo "$as_me:9225: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:9227: \"$ac_try\"") >&5 + { (eval echo "$as_me:9228: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:9230: \$? = $ac_status" >&5 + echo "$as_me:9231: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_define_sigwinch=yes else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 cat >conftest.$ac_ext <<_ACEOF -#line 9237 "configure" +#line 9238 "configure" #include "confdefs.h" #undef _XOPEN_SOURCE @@ -9252,16 +9253,16 @@ int x = SIGWINCH } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:9255: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:9256: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:9258: \$? = $ac_status" >&5 + echo "$as_me:9259: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:9261: \"$ac_try\"") >&5 + { (eval echo "$as_me:9262: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:9264: \$? = $ac_status" >&5 + echo "$as_me:9265: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_define_sigwinch=maybe else @@ -9275,11 +9276,11 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:9278: result: $cf_cv_define_sigwinch" >&5 +echo "$as_me:9279: result: $cf_cv_define_sigwinch" >&5 echo "${ECHO_T}$cf_cv_define_sigwinch" >&6 if test "$cf_cv_define_sigwinch" = maybe ; then -echo "$as_me:9282: checking for actual SIGWINCH definition" >&5 +echo "$as_me:9283: checking for actual SIGWINCH definition" >&5 echo $ECHO_N "checking for actual SIGWINCH definition... $ECHO_C" >&6 if test "${cf_cv_fixup_sigwinch+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -9290,7 +9291,7 @@ cf_sigwinch=32 while test $cf_sigwinch != 1 do cat >conftest.$ac_ext <<_ACEOF -#line 9293 "configure" +#line 9294 "configure" #include "confdefs.h" #undef _XOPEN_SOURCE @@ -9312,16 +9313,16 @@ int x = SIGWINCH } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:9315: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:9316: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:9318: \$? = $ac_status" >&5 + echo "$as_me:9319: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:9321: \"$ac_try\"") >&5 + { (eval echo "$as_me:9322: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:9324: \$? = $ac_status" >&5 + echo "$as_me:9325: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_fixup_sigwinch=$cf_sigwinch break @@ -9335,7 +9336,7 @@ cf_sigwinch=`expr $cf_sigwinch - 1` done fi -echo "$as_me:9338: result: $cf_cv_fixup_sigwinch" >&5 +echo "$as_me:9339: result: $cf_cv_fixup_sigwinch" >&5 echo "${ECHO_T}$cf_cv_fixup_sigwinch" >&6 if test "$cf_cv_fixup_sigwinch" != unknown ; then @@ -9347,7 +9348,7 @@ if test -n "$TRY_CFLAGS" ; then test -n "$verbose" && echo " checking additions to CFLAGS" 1>&6 -echo "${as_me-configure}:9350: testing checking additions to CFLAGS ..." 1>&5 +echo "${as_me-configure}:9351: testing checking additions to CFLAGS ..." 1>&5 cf_check_cflags="$CFLAGS" cf_check_cppflags="$CPPFLAGS" @@ -9418,7 +9419,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}:9421: testing add to \$CFLAGS $cf_new_cflags ..." 1>&5 +echo "${as_me-configure}:9422: testing add to \$CFLAGS $cf_new_cflags ..." 1>&5 CFLAGS="$CFLAGS $cf_new_cflags" fi @@ -9426,7 +9427,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}:9429: testing add to \$CPPFLAGS $cf_new_cppflags ..." 1>&5 +echo "${as_me-configure}:9430: testing add to \$CPPFLAGS $cf_new_cppflags ..." 1>&5 CPPFLAGS="$CPPFLAGS $cf_new_cppflags" fi @@ -9434,14 +9435,14 @@ fi if test -n "$cf_new_extra_cppflags" ; then test -n "$verbose" && echo " add to \$EXTRA_CPPFLAGS $cf_new_extra_cppflags" 1>&6 -echo "${as_me-configure}:9437: testing add to \$EXTRA_CPPFLAGS $cf_new_extra_cppflags ..." 1>&5 +echo "${as_me-configure}:9438: testing add to \$EXTRA_CPPFLAGS $cf_new_extra_cppflags ..." 1>&5 EXTRA_CPPFLAGS="$cf_new_extra_cppflags $EXTRA_CPPFLAGS" fi if test "$cf_check_cflags" != "$CFLAGS" ; then cat >conftest.$ac_ext <<_ACEOF -#line 9444 "configure" +#line 9445 "configure" #include "confdefs.h" #include <stdio.h> int @@ -9453,16 +9454,16 @@ printf("Hello world"); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:9456: \"$ac_link\"") >&5 +if { (eval echo "$as_me:9457: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:9459: \$? = $ac_status" >&5 + echo "$as_me:9460: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:9462: \"$ac_try\"") >&5 + { (eval echo "$as_me:9463: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:9465: \$? = $ac_status" >&5 + echo "$as_me:9466: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -9470,12 +9471,12 @@ else cat conftest.$ac_ext >&5 test -n "$verbose" && echo " test-compile failed. Undoing change to \$CFLAGS" 1>&6 -echo "${as_me-configure}:9473: testing test-compile failed. Undoing change to \$CFLAGS ..." 1>&5 +echo "${as_me-configure}:9474: testing test-compile failed. Undoing change to \$CFLAGS ..." 1>&5 if test "$cf_check_cppflags" != "$CPPFLAGS" ; then test -n "$verbose" && echo " but keeping change to \$CPPFLAGS" 1>&6 -echo "${as_me-configure}:9478: testing but keeping change to \$CPPFLAGS ..." 1>&5 +echo "${as_me-configure}:9479: testing but keeping change to \$CPPFLAGS ..." 1>&5 fi CFLAGS="$cf_check_flags" @@ -9487,7 +9488,7 @@ fi ### Look for network libraries first, since some functions (such as gethostname) ### are used in a lot of places. -echo "$as_me:9490: checking if you want NSS compatible SSL libraries" >&5 +echo "$as_me:9491: checking if you want NSS compatible SSL libraries" >&5 echo $ECHO_N "checking if you want NSS compatible SSL libraries... $ECHO_C" >&6 if test "${cf_cv_use_libnss_compat+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -9502,10 +9503,10 @@ else fi; fi -echo "$as_me:9505: result: $cf_cv_use_libnss_compat" >&5 +echo "$as_me:9506: result: $cf_cv_use_libnss_compat" >&5 echo "${ECHO_T}$cf_cv_use_libnss_compat" >&6 -echo "$as_me:9508: checking if you want ssl library" >&5 +echo "$as_me:9509: checking if you want ssl library" >&5 echo $ECHO_N "checking if you want ssl library... $ECHO_C" >&6 if test "${cf_cv_use_libssl+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -9520,10 +9521,10 @@ else fi; fi -echo "$as_me:9523: result: $cf_cv_use_libssl" >&5 +echo "$as_me:9524: result: $cf_cv_use_libssl" >&5 echo "${ECHO_T}$cf_cv_use_libssl" >&6 -echo "$as_me:9526: checking if you want gnutls support" >&5 +echo "$as_me:9527: checking if you want gnutls support" >&5 echo $ECHO_N "checking if you want gnutls support... $ECHO_C" >&6 if test "${cf_cv_use_libgnutls+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -9538,11 +9539,11 @@ else fi; fi -echo "$as_me:9541: result: $cf_cv_use_libgnutls" >&5 +echo "$as_me:9542: result: $cf_cv_use_libgnutls" >&5 echo "${ECHO_T}$cf_cv_use_libgnutls" >&6 # this option is mainly for comparing with/without Lynx's wrapper for GNUTLS. -echo "$as_me:9545: checking if you want gnutls-openssl compat" >&5 +echo "$as_me:9546: checking if you want gnutls-openssl compat" >&5 echo $ECHO_N "checking if you want gnutls-openssl compat... $ECHO_C" >&6 if test "${cf_cv_gnutls_compat+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -9557,10 +9558,10 @@ else fi; fi -echo "$as_me:9560: result: $cf_cv_gnutls_compat" >&5 +echo "$as_me:9561: result: $cf_cv_gnutls_compat" >&5 echo "${ECHO_T}$cf_cv_gnutls_compat" >&6 -echo "$as_me:9563: checking if you want socks library" >&5 +echo "$as_me:9564: checking if you want socks library" >&5 echo $ECHO_N "checking if you want socks library... $ECHO_C" >&6 if test "${cf_cv_use_libsocks+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -9575,10 +9576,10 @@ else fi; fi -echo "$as_me:9578: result: $cf_cv_use_libsocks" >&5 +echo "$as_me:9579: result: $cf_cv_use_libsocks" >&5 echo "${ECHO_T}$cf_cv_use_libsocks" >&6 -echo "$as_me:9581: checking if you want socks5 library" >&5 +echo "$as_me:9582: checking if you want socks5 library" >&5 echo $ECHO_N "checking if you want socks5 library... $ECHO_C" >&6 if test "${cf_cv_use_libsocks5+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -9593,7 +9594,7 @@ else fi; fi -echo "$as_me:9596: result: $cf_cv_use_libsocks5" >&5 +echo "$as_me:9597: result: $cf_cv_use_libsocks5" >&5 echo "${ECHO_T}$cf_cv_use_libsocks5" >&6 if test "x$cf_cv_use_libsocks" != xno ; then @@ -9632,7 +9633,7 @@ if test -n "$cf_searchpath/include" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 9635 "configure" +#line 9636 "configure" #include "confdefs.h" #include <stdio.h> int @@ -9644,16 +9645,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:9647: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:9648: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:9650: \$? = $ac_status" >&5 + echo "$as_me:9651: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:9653: \"$ac_try\"") >&5 + { (eval echo "$as_me:9654: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:9656: \$? = $ac_status" >&5 + echo "$as_me:9657: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -9670,7 +9671,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}:9673: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me-configure}:9674: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -9711,7 +9712,7 @@ if test -n "$cf_searchpath/../include" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 9714 "configure" +#line 9715 "configure" #include "confdefs.h" #include <stdio.h> int @@ -9723,16 +9724,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:9726: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:9727: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:9729: \$? = $ac_status" >&5 + echo "$as_me:9730: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:9732: \"$ac_try\"") >&5 + { (eval echo "$as_me:9733: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:9735: \$? = $ac_status" >&5 + echo "$as_me:9736: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -9749,7 +9750,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}:9752: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me-configure}:9753: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -9765,7 +9766,7 @@ echo "${as_me-configure}:9752: testing adding $cf_add_incdir to include-path ... fi else -{ { echo "$as_me:9768: error: cannot find socks library under $cf_cv_use_libsocks" >&5 +{ { echo "$as_me:9769: error: cannot find socks library under $cf_cv_use_libsocks" >&5 echo "$as_me: error: cannot find socks library under $cf_cv_use_libsocks" >&2;} { (exit 1); exit 1; }; } fi @@ -9790,7 +9791,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}:9793: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me-configure}:9794: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -9819,7 +9820,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}:9822: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me-configure}:9823: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -9828,7 +9829,7 @@ echo "${as_me-configure}:9822: testing adding $cf_add_libdir to library-path ... fi else -{ { echo "$as_me:9831: error: cannot find socks library under $cf_cv_use_libsocks" >&5 +{ { echo "$as_me:9832: error: cannot find socks library under $cf_cv_use_libsocks" >&5 echo "$as_me: error: cannot find socks library under $cf_cv_use_libsocks" >&2;} { (exit 1); exit 1; }; } fi @@ -9842,12 +9843,12 @@ done cf_cv_header_path_socks= cf_cv_library_path_socks= -echo "${as_me-configure}:9845: testing Starting FIND_LINKAGE(socks,) ..." 1>&5 +echo "${as_me-configure}:9846: testing Starting FIND_LINKAGE(socks,) ..." 1>&5 cf_save_LIBS="$LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 9850 "configure" +#line 9851 "configure" #include "confdefs.h" #include <stdio.h> @@ -9863,16 +9864,16 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:9866: \"$ac_link\"") >&5 +if { (eval echo "$as_me:9867: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:9869: \$? = $ac_status" >&5 + echo "$as_me:9870: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:9872: \"$ac_try\"") >&5 + { (eval echo "$as_me:9873: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:9875: \$? = $ac_status" >&5 + echo "$as_me:9876: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_find_linkage_socks=yes @@ -9886,7 +9887,7 @@ cat conftest.$ac_ext >&5 LIBS="-lsocks $cf_save_LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 9889 "configure" +#line 9890 "configure" #include "confdefs.h" #include <stdio.h> @@ -9902,16 +9903,16 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:9905: \"$ac_link\"") >&5 +if { (eval echo "$as_me:9906: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:9908: \$? = $ac_status" >&5 + echo "$as_me:9909: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:9911: \"$ac_try\"") >&5 + { (eval echo "$as_me:9912: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:9914: \$? = $ac_status" >&5 + echo "$as_me:9915: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_find_linkage_socks=yes @@ -9928,9 +9929,9 @@ cat conftest.$ac_ext >&5 test -n "$verbose" && echo " find linkage for socks library" 1>&6 -echo "${as_me-configure}:9931: testing find linkage for socks library ..." 1>&5 +echo "${as_me-configure}:9932: testing find linkage for socks library ..." 1>&5 -echo "${as_me-configure}:9933: testing Searching for headers in FIND_LINKAGE(socks,) ..." 1>&5 +echo "${as_me-configure}:9934: testing Searching for headers in FIND_LINKAGE(socks,) ..." 1>&5 cf_save_CPPFLAGS="$CPPFLAGS" cf_test_CPPFLAGS="$CPPFLAGS" @@ -10043,11 +10044,11 @@ cf_search="$cf_search $cf_header_path_list" if test -d $cf_cv_header_path_socks ; then test -n "$verbose" && echo " ... testing $cf_cv_header_path_socks" 1>&6 -echo "${as_me-configure}:10046: testing ... testing $cf_cv_header_path_socks ..." 1>&5 +echo "${as_me-configure}:10047: testing ... testing $cf_cv_header_path_socks ..." 1>&5 CPPFLAGS="$cf_save_CPPFLAGS -I$cf_cv_header_path_socks" cat >conftest.$ac_ext <<_ACEOF -#line 10050 "configure" +#line 10051 "configure" #include "confdefs.h" #include <stdio.h> @@ -10063,21 +10064,21 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:10066: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:10067: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:10069: \$? = $ac_status" >&5 + echo "$as_me:10070: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:10072: \"$ac_try\"") >&5 + { (eval echo "$as_me:10073: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:10075: \$? = $ac_status" >&5 + echo "$as_me:10076: \$? = $ac_status" >&5 (exit $ac_status); }; }; then test -n "$verbose" && echo " ... found socks headers in $cf_cv_header_path_socks" 1>&6 -echo "${as_me-configure}:10080: testing ... found socks headers in $cf_cv_header_path_socks ..." 1>&5 +echo "${as_me-configure}:10081: testing ... found socks headers in $cf_cv_header_path_socks ..." 1>&5 cf_cv_find_linkage_socks=maybe cf_test_CPPFLAGS="$CPPFLAGS" @@ -10095,7 +10096,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "$cf_cv_find_linkage_socks" = maybe ; then -echo "${as_me-configure}:10098: testing Searching for socks library in FIND_LINKAGE(socks,) ..." 1>&5 +echo "${as_me-configure}:10099: testing Searching for socks library in FIND_LINKAGE(socks,) ..." 1>&5 cf_save_LIBS="$LIBS" cf_save_LDFLAGS="$LDFLAGS" @@ -10192,13 +10193,13 @@ cf_search="$cf_library_path_list $cf_search" if test -d $cf_cv_library_path_socks ; then test -n "$verbose" && echo " ... testing $cf_cv_library_path_socks" 1>&6 -echo "${as_me-configure}:10195: testing ... testing $cf_cv_library_path_socks ..." 1>&5 +echo "${as_me-configure}:10196: testing ... testing $cf_cv_library_path_socks ..." 1>&5 CPPFLAGS="$cf_test_CPPFLAGS" LIBS="-lsocks $cf_save_LIBS" LDFLAGS="$cf_save_LDFLAGS -L$cf_cv_library_path_socks" cat >conftest.$ac_ext <<_ACEOF -#line 10201 "configure" +#line 10202 "configure" #include "confdefs.h" #include <stdio.h> @@ -10214,21 +10215,21 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:10217: \"$ac_link\"") >&5 +if { (eval echo "$as_me:10218: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:10220: \$? = $ac_status" >&5 + echo "$as_me:10221: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:10223: \"$ac_try\"") >&5 + { (eval echo "$as_me:10224: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:10226: \$? = $ac_status" >&5 + echo "$as_me:10227: \$? = $ac_status" >&5 (exit $ac_status); }; }; then test -n "$verbose" && echo " ... found socks library in $cf_cv_library_path_socks" 1>&6 -echo "${as_me-configure}:10231: testing ... found socks library in $cf_cv_library_path_socks ..." 1>&5 +echo "${as_me-configure}:10232: testing ... found socks library in $cf_cv_library_path_socks ..." 1>&5 cf_cv_find_linkage_socks=yes cf_cv_library_file_socks="-lsocks" @@ -10287,7 +10288,7 @@ if test -n "$cf_cv_header_path_socks" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 10290 "configure" +#line 10291 "configure" #include "confdefs.h" #include <stdio.h> int @@ -10299,16 +10300,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:10302: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:10303: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:10305: \$? = $ac_status" >&5 + echo "$as_me:10306: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:10308: \"$ac_try\"") >&5 + { (eval echo "$as_me:10309: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:10311: \$? = $ac_status" >&5 + echo "$as_me:10312: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -10325,7 +10326,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}:10328: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me-configure}:10329: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -10359,7 +10360,7 @@ if test -n "$cf_cv_library_path_socks" ; then if test "$cf_have_libdir" = no ; then test -n "$verbose" && echo " adding $cf_add_libdir to library-path" 1>&6 -echo "${as_me-configure}:10362: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me-configure}:10363: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -10370,7 +10371,7 @@ fi LIBS="-lsocks $LIBS" else -{ echo "$as_me:10373: WARNING: Cannot find socks library" >&5 +{ echo "$as_me:10374: WARNING: Cannot find socks library" >&5 echo "$as_me: WARNING: Cannot find socks library" >&2;} fi @@ -10412,7 +10413,7 @@ EOF EOF else - { { echo "$as_me:10415: error: cannot link with socks library" >&5 + { { echo "$as_me:10416: error: cannot link with socks library" >&5 echo "$as_me: error: cannot link with socks library" >&2;} { (exit 1); exit 1; }; } fi @@ -10453,7 +10454,7 @@ if test -n "$cf_searchpath/include" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 10456 "configure" +#line 10457 "configure" #include "confdefs.h" #include <stdio.h> int @@ -10465,16 +10466,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:10468: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:10469: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:10471: \$? = $ac_status" >&5 + echo "$as_me:10472: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:10474: \"$ac_try\"") >&5 + { (eval echo "$as_me:10475: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:10477: \$? = $ac_status" >&5 + echo "$as_me:10478: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -10491,7 +10492,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}:10494: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me-configure}:10495: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -10532,7 +10533,7 @@ if test -n "$cf_searchpath/../include" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 10535 "configure" +#line 10536 "configure" #include "confdefs.h" #include <stdio.h> int @@ -10544,16 +10545,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:10547: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:10548: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:10550: \$? = $ac_status" >&5 + echo "$as_me:10551: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:10553: \"$ac_try\"") >&5 + { (eval echo "$as_me:10554: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:10556: \$? = $ac_status" >&5 + echo "$as_me:10557: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -10570,7 +10571,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}:10573: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me-configure}:10574: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -10586,7 +10587,7 @@ echo "${as_me-configure}:10573: testing adding $cf_add_incdir to include-path .. fi else -{ { echo "$as_me:10589: error: cannot find socks5 library under $cf_cv_use_libsocks5" >&5 +{ { echo "$as_me:10590: error: cannot find socks5 library under $cf_cv_use_libsocks5" >&5 echo "$as_me: error: cannot find socks5 library under $cf_cv_use_libsocks5" >&2;} { (exit 1); exit 1; }; } fi @@ -10611,7 +10612,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}:10614: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me-configure}:10615: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -10640,7 +10641,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}:10643: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me-configure}:10644: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -10649,7 +10650,7 @@ echo "${as_me-configure}:10643: testing adding $cf_add_libdir to library-path .. fi else -{ { echo "$as_me:10652: error: cannot find socks5 library under $cf_cv_use_libsocks5" >&5 +{ { echo "$as_me:10653: error: cannot find socks5 library under $cf_cv_use_libsocks5" >&5 echo "$as_me: error: cannot find socks5 library under $cf_cv_use_libsocks5" >&2;} { (exit 1); exit 1; }; } fi @@ -10668,11 +10669,11 @@ cat >>confdefs.h <<\EOF #define SOCKS 1 EOF -echo "$as_me:10671: checking if the socks library uses socks4 prefix" >&5 +echo "$as_me:10672: checking if the socks library uses socks4 prefix" >&5 echo $ECHO_N "checking if the socks library uses socks4 prefix... $ECHO_C" >&6 cf_use_socks4=error cat >conftest.$ac_ext <<_ACEOF -#line 10675 "configure" +#line 10676 "configure" #include "confdefs.h" #include <socks.h> @@ -10686,16 +10687,16 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:10689: \"$ac_link\"") >&5 +if { (eval echo "$as_me:10690: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:10692: \$? = $ac_status" >&5 + echo "$as_me:10693: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:10695: \"$ac_try\"") >&5 + { (eval echo "$as_me:10696: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:10698: \$? = $ac_status" >&5 + echo "$as_me:10699: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cat >>confdefs.h <<\EOF #define USE_SOCKS4_PREFIX 1 @@ -10706,7 +10707,7 @@ else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 cat >conftest.$ac_ext <<_ACEOF -#line 10709 "configure" +#line 10710 "configure" #include "confdefs.h" #include <socks.h> int @@ -10718,29 +10719,29 @@ SOCKSinit((char *)0) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:10721: \"$ac_link\"") >&5 +if { (eval echo "$as_me:10722: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:10724: \$? = $ac_status" >&5 + echo "$as_me:10725: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:10727: \"$ac_try\"") >&5 + { (eval echo "$as_me:10728: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:10730: \$? = $ac_status" >&5 + echo "$as_me:10731: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_use_socks4=no else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 -{ { echo "$as_me:10736: error: Cannot link with socks5 library" >&5 +{ { echo "$as_me:10737: error: Cannot link with socks5 library" >&5 echo "$as_me: error: Cannot link with socks5 library" >&2;} { (exit 1); exit 1; }; } fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext -echo "$as_me:10743: result: $cf_use_socks4" >&5 +echo "$as_me:10744: result: $cf_use_socks4" >&5 echo "${ECHO_T}$cf_use_socks4" >&6 if test "$cf_use_socks4" = "yes" ; then @@ -10795,10 +10796,10 @@ EOF fi -echo "$as_me:10798: checking if socks5p.h is available" >&5 +echo "$as_me:10799: checking if socks5p.h is available" >&5 echo $ECHO_N "checking if socks5p.h is available... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF -#line 10801 "configure" +#line 10802 "configure" #include "confdefs.h" #define INCLUDE_PROTOTYPES @@ -10813,16 +10814,16 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:10816: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:10817: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:10819: \$? = $ac_status" >&5 + echo "$as_me:10820: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:10822: \"$ac_try\"") >&5 + { (eval echo "$as_me:10823: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:10825: \$? = $ac_status" >&5 + echo "$as_me:10826: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_use_socks5p_h=yes else @@ -10831,7 +10832,7 @@ cat conftest.$ac_ext >&5 cf_use_socks5p_h=no fi rm -f conftest.$ac_objext conftest.$ac_ext -echo "$as_me:10834: result: $cf_use_socks5p_h" >&5 +echo "$as_me:10835: result: $cf_use_socks5p_h" >&5 echo "${ECHO_T}$cf_use_socks5p_h" >&6 test "$cf_use_socks5p_h" = yes && cat >>confdefs.h <<\EOF @@ -10842,14 +10843,14 @@ else cf_test_netlibs=no -echo "$as_me:10845: checking for network libraries" >&5 +echo "$as_me:10846: checking for network libraries" >&5 echo $ECHO_N "checking for network libraries... $ECHO_C" >&6 if test "${cf_cv_netlibs+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else -echo "$as_me:10852: result: working..." >&5 +echo "$as_me:10853: result: working..." >&5 echo "${ECHO_T}working..." >&6 cf_cv_netlibs="" @@ -10861,23 +10862,23 @@ mingw32) # (vi for ac_header in windows.h winsock.h winsock2.h do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` -echo "$as_me:10864: checking for $ac_header" >&5 +echo "$as_me:10865: 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 10870 "configure" +#line 10871 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:10874: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:10875: \"$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:10880: \$? = $ac_status" >&5 + echo "$as_me:10881: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -10896,7 +10897,7 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:10899: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:10900: 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 @@ -10916,7 +10917,7 @@ done LIBS="$cf_winsock_lib $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 10919 "configure" +#line 10920 "configure" #include "confdefs.h" #ifdef HAVE_WINDOWS_H @@ -10943,22 +10944,22 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:10946: \"$ac_link\"") >&5 +if { (eval echo "$as_me:10947: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:10949: \$? = $ac_status" >&5 + echo "$as_me:10950: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:10952: \"$ac_try\"") >&5 + { (eval echo "$as_me:10953: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:10955: \$? = $ac_status" >&5 + echo "$as_me:10956: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_netlibs="$cf_winsock_lib $cf_cv_netlibs" else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 -{ { echo "$as_me:10961: error: Cannot link against winsock library" >&5 +{ { echo "$as_me:10962: error: Cannot link against winsock library" >&5 echo "$as_me: error: Cannot link against winsock library" >&2;} { (exit 1); exit 1; }; } fi @@ -10971,13 +10972,13 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext for ac_func in gethostname do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` -echo "$as_me:10974: checking for $ac_func" >&5 +echo "$as_me:10975: 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 10980 "configure" +#line 10981 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. */ @@ -11008,16 +11009,16 @@ f = $ac_func; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:11011: \"$ac_link\"") >&5 +if { (eval echo "$as_me:11012: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:11014: \$? = $ac_status" >&5 + echo "$as_me:11015: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:11017: \"$ac_try\"") >&5 + { (eval echo "$as_me:11018: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:11020: \$? = $ac_status" >&5 + echo "$as_me:11021: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else @@ -11027,7 +11028,7 @@ eval "$as_ac_var=no" fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:11030: result: `eval echo '${'$as_ac_var'}'`" >&5 +echo "$as_me:11031: 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 @@ -11036,7 +11037,7 @@ EOF else -echo "$as_me:11039: checking for gethostname in -lnsl" >&5 +echo "$as_me:11040: checking for gethostname in -lnsl" >&5 echo $ECHO_N "checking for gethostname in -lnsl... $ECHO_C" >&6 if test "${ac_cv_lib_nsl_gethostname+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -11044,7 +11045,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lnsl $cf_cv_netlibs $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 11047 "configure" +#line 11048 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -11063,16 +11064,16 @@ gethostname (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:11066: \"$ac_link\"") >&5 +if { (eval echo "$as_me:11067: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:11069: \$? = $ac_status" >&5 + echo "$as_me:11070: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:11072: \"$ac_try\"") >&5 + { (eval echo "$as_me:11073: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:11075: \$? = $ac_status" >&5 + echo "$as_me:11076: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_nsl_gethostname=yes else @@ -11083,7 +11084,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:11086: result: $ac_cv_lib_nsl_gethostname" >&5 +echo "$as_me:11087: result: $ac_cv_lib_nsl_gethostname" >&5 echo "${ECHO_T}$ac_cv_lib_nsl_gethostname" >&6 if test $ac_cv_lib_nsl_gethostname = yes; then @@ -11100,7 +11101,7 @@ else ac_cv_func_gethostname=unknown unset ac_cv_func_gethostname 2>/dev/null -echo "$as_me:11103: checking for gethostname in -lsocket" >&5 +echo "$as_me:11104: checking for gethostname in -lsocket" >&5 echo $ECHO_N "checking for gethostname in -lsocket... $ECHO_C" >&6 if test "${ac_cv_lib_socket_gethostname+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -11108,7 +11109,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lsocket $cf_cv_netlibs $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 11111 "configure" +#line 11112 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -11127,16 +11128,16 @@ gethostname (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:11130: \"$ac_link\"") >&5 +if { (eval echo "$as_me:11131: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:11133: \$? = $ac_status" >&5 + echo "$as_me:11134: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:11136: \"$ac_try\"") >&5 + { (eval echo "$as_me:11137: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:11139: \$? = $ac_status" >&5 + echo "$as_me:11140: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_socket_gethostname=yes else @@ -11147,7 +11148,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:11150: result: $ac_cv_lib_socket_gethostname" >&5 +echo "$as_me:11151: result: $ac_cv_lib_socket_gethostname" >&5 echo "${ECHO_T}$ac_cv_lib_socket_gethostname" >&6 if test $ac_cv_lib_socket_gethostname = yes; then @@ -11171,7 +11172,7 @@ fi fi done - echo "$as_me:11174: checking for main in -linet" >&5 + echo "$as_me:11175: checking for main in -linet" >&5 echo $ECHO_N "checking for main in -linet... $ECHO_C" >&6 if test "${ac_cv_lib_inet_main+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -11179,7 +11180,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-linet $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 11182 "configure" +#line 11183 "configure" #include "confdefs.h" int @@ -11191,16 +11192,16 @@ main (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:11194: \"$ac_link\"") >&5 +if { (eval echo "$as_me:11195: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:11197: \$? = $ac_status" >&5 + echo "$as_me:11198: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:11200: \"$ac_try\"") >&5 + { (eval echo "$as_me:11201: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:11203: \$? = $ac_status" >&5 + echo "$as_me:11204: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_inet_main=yes else @@ -11211,7 +11212,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:11214: result: $ac_cv_lib_inet_main" >&5 +echo "$as_me:11215: result: $ac_cv_lib_inet_main" >&5 echo "${ECHO_T}$ac_cv_lib_inet_main" >&6 if test $ac_cv_lib_inet_main = yes; then cf_cv_netlibs="-linet $cf_cv_netlibs" @@ -11222,13 +11223,13 @@ fi for ac_func in socket do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` -echo "$as_me:11225: checking for $ac_func" >&5 +echo "$as_me:11226: 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 11231 "configure" +#line 11232 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. */ @@ -11259,16 +11260,16 @@ f = $ac_func; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:11262: \"$ac_link\"") >&5 +if { (eval echo "$as_me:11263: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:11265: \$? = $ac_status" >&5 + echo "$as_me:11266: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:11268: \"$ac_try\"") >&5 + { (eval echo "$as_me:11269: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:11271: \$? = $ac_status" >&5 + echo "$as_me:11272: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else @@ -11278,7 +11279,7 @@ eval "$as_ac_var=no" fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:11281: result: `eval echo '${'$as_ac_var'}'`" >&5 +echo "$as_me:11282: 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 @@ -11287,7 +11288,7 @@ EOF else -echo "$as_me:11290: checking for socket in -lsocket" >&5 +echo "$as_me:11291: checking for socket in -lsocket" >&5 echo $ECHO_N "checking for socket in -lsocket... $ECHO_C" >&6 if test "${ac_cv_lib_socket_socket+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -11295,7 +11296,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lsocket $cf_cv_netlibs $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 11298 "configure" +#line 11299 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -11314,16 +11315,16 @@ socket (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:11317: \"$ac_link\"") >&5 +if { (eval echo "$as_me:11318: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:11320: \$? = $ac_status" >&5 + echo "$as_me:11321: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:11323: \"$ac_try\"") >&5 + { (eval echo "$as_me:11324: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:11326: \$? = $ac_status" >&5 + echo "$as_me:11327: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_socket_socket=yes else @@ -11334,7 +11335,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:11337: result: $ac_cv_lib_socket_socket" >&5 +echo "$as_me:11338: result: $ac_cv_lib_socket_socket" >&5 echo "${ECHO_T}$ac_cv_lib_socket_socket" >&6 if test $ac_cv_lib_socket_socket = yes; then @@ -11351,7 +11352,7 @@ else ac_cv_func_socket=unknown unset ac_cv_func_socket 2>/dev/null -echo "$as_me:11354: checking for socket in -lbsd" >&5 +echo "$as_me:11355: checking for socket in -lbsd" >&5 echo $ECHO_N "checking for socket in -lbsd... $ECHO_C" >&6 if test "${ac_cv_lib_bsd_socket+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -11359,7 +11360,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lbsd $cf_cv_netlibs $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 11362 "configure" +#line 11363 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -11378,16 +11379,16 @@ socket (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:11381: \"$ac_link\"") >&5 +if { (eval echo "$as_me:11382: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:11384: \$? = $ac_status" >&5 + echo "$as_me:11385: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:11387: \"$ac_try\"") >&5 + { (eval echo "$as_me:11388: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:11390: \$? = $ac_status" >&5 + echo "$as_me:11391: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_bsd_socket=yes else @@ -11398,7 +11399,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:11401: result: $ac_cv_lib_bsd_socket" >&5 +echo "$as_me:11402: result: $ac_cv_lib_bsd_socket" >&5 echo "${ECHO_T}$ac_cv_lib_bsd_socket" >&6 if test $ac_cv_lib_bsd_socket = yes; then @@ -11427,13 +11428,13 @@ done for ac_func in gethostbyname do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` -echo "$as_me:11430: checking for $ac_func" >&5 +echo "$as_me:11431: 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 11436 "configure" +#line 11437 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. */ @@ -11464,16 +11465,16 @@ f = $ac_func; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:11467: \"$ac_link\"") >&5 +if { (eval echo "$as_me:11468: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:11470: \$? = $ac_status" >&5 + echo "$as_me:11471: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:11473: \"$ac_try\"") >&5 + { (eval echo "$as_me:11474: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:11476: \$? = $ac_status" >&5 + echo "$as_me:11477: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else @@ -11483,7 +11484,7 @@ eval "$as_ac_var=no" fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:11486: result: `eval echo '${'$as_ac_var'}'`" >&5 +echo "$as_me:11487: 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 @@ -11492,7 +11493,7 @@ EOF else -echo "$as_me:11495: checking for gethostbyname in -lnsl" >&5 +echo "$as_me:11496: checking for gethostbyname in -lnsl" >&5 echo $ECHO_N "checking for gethostbyname in -lnsl... $ECHO_C" >&6 if test "${ac_cv_lib_nsl_gethostbyname+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -11500,7 +11501,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lnsl $cf_cv_netlibs $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 11503 "configure" +#line 11504 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -11519,16 +11520,16 @@ gethostbyname (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:11522: \"$ac_link\"") >&5 +if { (eval echo "$as_me:11523: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:11525: \$? = $ac_status" >&5 + echo "$as_me:11526: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:11528: \"$ac_try\"") >&5 + { (eval echo "$as_me:11529: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:11531: \$? = $ac_status" >&5 + echo "$as_me:11532: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_nsl_gethostbyname=yes else @@ -11539,7 +11540,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:11542: result: $ac_cv_lib_nsl_gethostbyname" >&5 +echo "$as_me:11543: result: $ac_cv_lib_nsl_gethostbyname" >&5 echo "${ECHO_T}$ac_cv_lib_nsl_gethostbyname" >&6 if test $ac_cv_lib_nsl_gethostbyname = yes; then @@ -11564,13 +11565,13 @@ done for ac_func in gethostbyname do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` -echo "$as_me:11567: checking for $ac_func" >&5 +echo "$as_me:11568: 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 11573 "configure" +#line 11574 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. */ @@ -11601,16 +11602,16 @@ f = $ac_func; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:11604: \"$ac_link\"") >&5 +if { (eval echo "$as_me:11605: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:11607: \$? = $ac_status" >&5 + echo "$as_me:11608: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:11610: \"$ac_try\"") >&5 + { (eval echo "$as_me:11611: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:11613: \$? = $ac_status" >&5 + echo "$as_me:11614: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else @@ -11620,7 +11621,7 @@ eval "$as_ac_var=no" fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:11623: result: `eval echo '${'$as_ac_var'}'`" >&5 +echo "$as_me:11624: 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 @@ -11629,7 +11630,7 @@ EOF else -echo "$as_me:11632: checking for gethostbyname in -lnetwork" >&5 +echo "$as_me:11633: checking for gethostbyname in -lnetwork" >&5 echo $ECHO_N "checking for gethostbyname in -lnetwork... $ECHO_C" >&6 if test "${ac_cv_lib_network_gethostbyname+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -11637,7 +11638,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lnetwork $cf_cv_netlibs $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 11640 "configure" +#line 11641 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -11656,16 +11657,16 @@ gethostbyname (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:11659: \"$ac_link\"") >&5 +if { (eval echo "$as_me:11660: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:11662: \$? = $ac_status" >&5 + echo "$as_me:11663: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:11665: \"$ac_try\"") >&5 + { (eval echo "$as_me:11666: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:11668: \$? = $ac_status" >&5 + echo "$as_me:11669: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_network_gethostbyname=yes else @@ -11676,7 +11677,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:11679: result: $ac_cv_lib_network_gethostbyname" >&5 +echo "$as_me:11680: result: $ac_cv_lib_network_gethostbyname" >&5 echo "${ECHO_T}$ac_cv_lib_network_gethostbyname" >&6 if test $ac_cv_lib_network_gethostbyname = yes; then @@ -11701,13 +11702,13 @@ done for ac_func in strcasecmp do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` -echo "$as_me:11704: checking for $ac_func" >&5 +echo "$as_me:11705: 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 11710 "configure" +#line 11711 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. */ @@ -11738,16 +11739,16 @@ f = $ac_func; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:11741: \"$ac_link\"") >&5 +if { (eval echo "$as_me:11742: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:11744: \$? = $ac_status" >&5 + echo "$as_me:11745: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:11747: \"$ac_try\"") >&5 + { (eval echo "$as_me:11748: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:11750: \$? = $ac_status" >&5 + echo "$as_me:11751: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else @@ -11757,7 +11758,7 @@ eval "$as_ac_var=no" fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:11760: result: `eval echo '${'$as_ac_var'}'`" >&5 +echo "$as_me:11761: 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 @@ -11766,7 +11767,7 @@ EOF else -echo "$as_me:11769: checking for strcasecmp in -lresolv" >&5 +echo "$as_me:11770: checking for strcasecmp in -lresolv" >&5 echo $ECHO_N "checking for strcasecmp in -lresolv... $ECHO_C" >&6 if test "${ac_cv_lib_resolv_strcasecmp+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -11774,7 +11775,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lresolv $cf_cv_netlibs $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 11777 "configure" +#line 11778 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -11793,16 +11794,16 @@ strcasecmp (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:11796: \"$ac_link\"") >&5 +if { (eval echo "$as_me:11797: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:11799: \$? = $ac_status" >&5 + echo "$as_me:11800: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:11802: \"$ac_try\"") >&5 + { (eval echo "$as_me:11803: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:11805: \$? = $ac_status" >&5 + echo "$as_me:11806: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_resolv_strcasecmp=yes else @@ -11813,7 +11814,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:11816: result: $ac_cv_lib_resolv_strcasecmp" >&5 +echo "$as_me:11817: result: $ac_cv_lib_resolv_strcasecmp" >&5 echo "${ECHO_T}$ac_cv_lib_resolv_strcasecmp" >&6 if test $ac_cv_lib_resolv_strcasecmp = yes; then @@ -11854,14 +11855,14 @@ test $cf_test_netlibs = no && echo "$cf_cv_netlibs" >&6 fi -echo "$as_me:11857: checking for inet_aton function" >&5 +echo "$as_me:11858: checking for inet_aton function" >&5 echo $ECHO_N "checking for inet_aton function... $ECHO_C" >&6 if test "${cf_cv_have_inet_aton+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 11864 "configure" +#line 11865 "configure" #include "confdefs.h" #include <sys/types.h> #include <sys/socket.h> @@ -11877,16 +11878,16 @@ inet_aton(0, (struct in_addr *)0) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:11880: \"$ac_link\"") >&5 +if { (eval echo "$as_me:11881: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:11883: \$? = $ac_status" >&5 + echo "$as_me:11884: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:11886: \"$ac_try\"") >&5 + { (eval echo "$as_me:11887: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:11889: \$? = $ac_status" >&5 + echo "$as_me:11890: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_have_inet_aton=yes else @@ -11896,7 +11897,7 @@ cf_cv_have_inet_aton=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:11899: result: $cf_cv_have_inet_aton" >&5 +echo "$as_me:11900: result: $cf_cv_have_inet_aton" >&5 echo "${ECHO_T}$cf_cv_have_inet_aton" >&6 if test "$cf_cv_have_inet_aton" = yes ; then cat >>confdefs.h <<\EOF @@ -11904,14 +11905,14 @@ if test "$cf_cv_have_inet_aton" = yes ; then EOF else - echo "$as_me:11907: checking for inet_addr function" >&5 + echo "$as_me:11908: checking for inet_addr function" >&5 echo $ECHO_N "checking for inet_addr function... $ECHO_C" >&6 if test "${cf_cv_have_inet_addr+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 11914 "configure" +#line 11915 "configure" #include "confdefs.h" #include <sys/types.h> #include <sys/socket.h> @@ -11927,16 +11928,16 @@ inet_addr(0) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:11930: \"$ac_link\"") >&5 +if { (eval echo "$as_me:11931: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:11933: \$? = $ac_status" >&5 + echo "$as_me:11934: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:11936: \"$ac_try\"") >&5 + { (eval echo "$as_me:11937: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:11939: \$? = $ac_status" >&5 + echo "$as_me:11940: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_have_inet_addr=yes else @@ -11946,10 +11947,10 @@ cf_cv_have_inet_addr=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:11949: result: $cf_cv_have_inet_addr" >&5 +echo "$as_me:11950: result: $cf_cv_have_inet_addr" >&5 echo "${ECHO_T}$cf_cv_have_inet_addr" >&6 if test "$cf_cv_have_inet_addr" = no ; then - echo "$as_me:11952: checking for library with inet_addr" >&5 + echo "$as_me:11953: checking for library with inet_addr" >&5 echo $ECHO_N "checking for library with inet_addr... $ECHO_C" >&6 if test "${cf_cv_lib_inet_addr+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -11960,7 +11961,7 @@ else do LIBS="$cf_save_LIBS $cf_inetlib" cat >conftest.$ac_ext <<_ACEOF -#line 11963 "configure" +#line 11964 "configure" #include "confdefs.h" #include <sys/types.h> #include <sys/socket.h> @@ -11976,16 +11977,16 @@ inet_addr(0) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:11979: \"$ac_link\"") >&5 +if { (eval echo "$as_me:11980: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:11982: \$? = $ac_status" >&5 + echo "$as_me:11983: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:11985: \"$ac_try\"") >&5 + { (eval echo "$as_me:11986: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:11988: \$? = $ac_status" >&5 + echo "$as_me:11989: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_lib_inet_addr=$cf_inetlib else @@ -11999,18 +12000,18 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext done fi -echo "$as_me:12002: result: $cf_cv_lib_inet_addr" >&5 +echo "$as_me:12003: result: $cf_cv_lib_inet_addr" >&5 echo "${ECHO_T}$cf_cv_lib_inet_addr" >&6 if test "$cf_cv_lib_inet_addr" != no ; then LIBS="$LIBS $cf_cv_lib_inet_addr" else - { echo "$as_me:12007: WARNING: Unable to find library for inet_addr function" >&5 + { echo "$as_me:12008: WARNING: Unable to find library for inet_addr function" >&5 echo "$as_me: WARNING: Unable to find library for inet_addr function" >&2;} fi fi fi -echo "$as_me:12013: checking if you want to use pkg-config" >&5 +echo "$as_me:12014: checking if you want to use pkg-config" >&5 echo $ECHO_N "checking if you want to use pkg-config... $ECHO_C" >&6 # Check whether --with-pkg-config or --without-pkg-config was given. @@ -12020,7 +12021,7 @@ if test "${with_pkg_config+set}" = set; then else cf_pkg_config=yes fi; -echo "$as_me:12023: result: $cf_pkg_config" >&5 +echo "$as_me:12024: result: $cf_pkg_config" >&5 echo "${ECHO_T}$cf_pkg_config" >&6 case $cf_pkg_config in #(vi @@ -12030,7 +12031,7 @@ no) #(vi yes) #(vi # Extract the first word of "pkg-config", so it can be a program name with args. set dummy pkg-config; ac_word=$2 -echo "$as_me:12033: checking for $ac_word" >&5 +echo "$as_me:12034: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_path_PKG_CONFIG+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -12047,7 +12048,7 @@ for ac_dir in $ac_dummy; do test -z "$ac_dir" && ac_dir=. if $as_executable_p "$ac_dir/$ac_word"; then ac_cv_path_PKG_CONFIG="$ac_dir/$ac_word" - echo "$as_me:12050: found $ac_dir/$ac_word" >&5 + echo "$as_me:12051: found $ac_dir/$ac_word" >&5 break fi done @@ -12059,10 +12060,10 @@ fi PKG_CONFIG=$ac_cv_path_PKG_CONFIG if test -n "$PKG_CONFIG"; then - echo "$as_me:12062: result: $PKG_CONFIG" >&5 + echo "$as_me:12063: result: $PKG_CONFIG" >&5 echo "${ECHO_T}$PKG_CONFIG" >&6 else - echo "$as_me:12065: result: no" >&5 + echo "$as_me:12066: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -12100,7 +12101,7 @@ case ".$PKG_CONFIG" in #(vi PKG_CONFIG=`echo $PKG_CONFIG | sed -e s%NONE%$cf_path_syntax%` ;; *) - { { echo "$as_me:12103: error: expected a pathname, not \"$PKG_CONFIG\"" >&5 + { { echo "$as_me:12104: error: expected a pathname, not \"$PKG_CONFIG\"" >&5 echo "$as_me: error: expected a pathname, not \"$PKG_CONFIG\"" >&2;} { (exit 1); exit 1; }; } ;; @@ -12149,7 +12150,7 @@ if test -n "$cf_searchpath/include" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 12152 "configure" +#line 12153 "configure" #include "confdefs.h" #include <stdio.h> int @@ -12161,16 +12162,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:12164: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:12165: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:12167: \$? = $ac_status" >&5 + echo "$as_me:12168: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:12170: \"$ac_try\"") >&5 + { (eval echo "$as_me:12171: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:12173: \$? = $ac_status" >&5 + echo "$as_me:12174: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -12187,7 +12188,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}:12190: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me-configure}:12191: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -12228,7 +12229,7 @@ if test -n "$cf_searchpath/../include" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 12231 "configure" +#line 12232 "configure" #include "confdefs.h" #include <stdio.h> int @@ -12240,16 +12241,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:12243: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:12244: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:12246: \$? = $ac_status" >&5 + echo "$as_me:12247: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:12249: \"$ac_try\"") >&5 + { (eval echo "$as_me:12250: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:12252: \$? = $ac_status" >&5 + echo "$as_me:12253: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -12266,7 +12267,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}:12269: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me-configure}:12270: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -12282,7 +12283,7 @@ echo "${as_me-configure}:12269: testing adding $cf_add_incdir to include-path .. fi else -{ { echo "$as_me:12285: error: cannot find ssl library under $cf_cv_use_libssl" >&5 +{ { echo "$as_me:12286: error: cannot find ssl library under $cf_cv_use_libssl" >&5 echo "$as_me: error: cannot find ssl library under $cf_cv_use_libssl" >&2;} { (exit 1); exit 1; }; } fi @@ -12307,7 +12308,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}:12310: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me-configure}:12311: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -12336,7 +12337,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}:12339: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me-configure}:12340: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -12345,7 +12346,7 @@ echo "${as_me-configure}:12339: testing adding $cf_add_libdir to library-path .. fi else -{ { echo "$as_me:12348: error: cannot find ssl library under $cf_cv_use_libssl" >&5 +{ { echo "$as_me:12349: error: cannot find ssl library under $cf_cv_use_libssl" >&5 echo "$as_me: error: cannot find ssl library under $cf_cv_use_libssl" >&2;} { (exit 1); exit 1; }; } fi @@ -12476,7 +12477,7 @@ fi esac test -n "$verbose" && echo " adding $cf_libs_ssl to LIBS" 1>&6 -echo "${as_me-configure}:12479: testing adding $cf_libs_ssl to LIBS ..." 1>&5 +echo "${as_me-configure}:12480: testing adding $cf_libs_ssl to LIBS ..." 1>&5 LIBS="$cf_libs_ssl $LIBS" fi @@ -12497,7 +12498,7 @@ echo "${as_me-configure}:12479: testing adding $cf_libs_ssl to LIBS ..." 1>&5 *-ldl) #(vi ;; *) - echo "$as_me:12500: checking for dlsym in -ldl" >&5 + echo "$as_me:12501: checking for dlsym in -ldl" >&5 echo $ECHO_N "checking for dlsym in -ldl... $ECHO_C" >&6 if test "${ac_cv_lib_dl_dlsym+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -12505,7 +12506,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-ldl $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 12508 "configure" +#line 12509 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -12524,16 +12525,16 @@ dlsym (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:12527: \"$ac_link\"") >&5 +if { (eval echo "$as_me:12528: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:12530: \$? = $ac_status" >&5 + echo "$as_me:12531: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:12533: \"$ac_try\"") >&5 + { (eval echo "$as_me:12534: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:12536: \$? = $ac_status" >&5 + echo "$as_me:12537: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_dl_dlsym=yes else @@ -12544,7 +12545,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:12547: result: $ac_cv_lib_dl_dlsym" >&5 +echo "$as_me:12548: result: $ac_cv_lib_dl_dlsym" >&5 echo "${ECHO_T}$ac_cv_lib_dl_dlsym" >&6 if test $ac_cv_lib_dl_dlsym = yes; then cf_extra_ssl_libs="$cf_extra_ssl_libs -ldl" @@ -12560,12 +12561,12 @@ fi cf_cv_header_path_ssl= cf_cv_library_path_ssl= -echo "${as_me-configure}:12563: testing Starting FIND_LINKAGE(ssl,openssl) ..." 1>&5 +echo "${as_me-configure}:12564: testing Starting FIND_LINKAGE(ssl,openssl) ..." 1>&5 cf_save_LIBS="$LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 12568 "configure" +#line 12569 "configure" #include "confdefs.h" #include <stdio.h> @@ -12594,16 +12595,16 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:12597: \"$ac_link\"") >&5 +if { (eval echo "$as_me:12598: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:12600: \$? = $ac_status" >&5 + echo "$as_me:12601: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:12603: \"$ac_try\"") >&5 + { (eval echo "$as_me:12604: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:12606: \$? = $ac_status" >&5 + echo "$as_me:12607: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_find_linkage_ssl=yes @@ -12617,7 +12618,7 @@ cat conftest.$ac_ext >&5 LIBS="-lssl $cf_extra_ssl_libs $cf_save_LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 12620 "configure" +#line 12621 "configure" #include "confdefs.h" #include <stdio.h> @@ -12646,16 +12647,16 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:12649: \"$ac_link\"") >&5 +if { (eval echo "$as_me:12650: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:12652: \$? = $ac_status" >&5 + echo "$as_me:12653: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:12655: \"$ac_try\"") >&5 + { (eval echo "$as_me:12656: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:12658: \$? = $ac_status" >&5 + echo "$as_me:12659: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_find_linkage_ssl=yes @@ -12672,9 +12673,9 @@ cat conftest.$ac_ext >&5 test -n "$verbose" && echo " find linkage for ssl library" 1>&6 -echo "${as_me-configure}:12675: testing find linkage for ssl library ..." 1>&5 +echo "${as_me-configure}:12676: testing find linkage for ssl library ..." 1>&5 -echo "${as_me-configure}:12677: testing Searching for headers in FIND_LINKAGE(ssl,openssl) ..." 1>&5 +echo "${as_me-configure}:12678: testing Searching for headers in FIND_LINKAGE(ssl,openssl) ..." 1>&5 cf_save_CPPFLAGS="$CPPFLAGS" cf_test_CPPFLAGS="$CPPFLAGS" @@ -12787,11 +12788,11 @@ cf_search="$cf_search $cf_header_path_list" if test -d $cf_cv_header_path_ssl ; then test -n "$verbose" && echo " ... testing $cf_cv_header_path_ssl" 1>&6 -echo "${as_me-configure}:12790: testing ... testing $cf_cv_header_path_ssl ..." 1>&5 +echo "${as_me-configure}:12791: testing ... testing $cf_cv_header_path_ssl ..." 1>&5 CPPFLAGS="$cf_save_CPPFLAGS -I$cf_cv_header_path_ssl" cat >conftest.$ac_ext <<_ACEOF -#line 12794 "configure" +#line 12795 "configure" #include "confdefs.h" #include <stdio.h> @@ -12820,21 +12821,21 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:12823: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:12824: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:12826: \$? = $ac_status" >&5 + echo "$as_me:12827: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:12829: \"$ac_try\"") >&5 + { (eval echo "$as_me:12830: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:12832: \$? = $ac_status" >&5 + echo "$as_me:12833: \$? = $ac_status" >&5 (exit $ac_status); }; }; then test -n "$verbose" && echo " ... found ssl headers in $cf_cv_header_path_ssl" 1>&6 -echo "${as_me-configure}:12837: testing ... found ssl headers in $cf_cv_header_path_ssl ..." 1>&5 +echo "${as_me-configure}:12838: testing ... found ssl headers in $cf_cv_header_path_ssl ..." 1>&5 cf_cv_find_linkage_ssl=maybe cf_test_CPPFLAGS="$CPPFLAGS" @@ -12852,7 +12853,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "$cf_cv_find_linkage_ssl" = maybe ; then -echo "${as_me-configure}:12855: testing Searching for ssl library in FIND_LINKAGE(ssl,openssl) ..." 1>&5 +echo "${as_me-configure}:12856: testing Searching for ssl library in FIND_LINKAGE(ssl,openssl) ..." 1>&5 cf_save_LIBS="$LIBS" cf_save_LDFLAGS="$LDFLAGS" @@ -12860,7 +12861,7 @@ echo "${as_me-configure}:12855: testing Searching for ssl library in FIND_LINKAG CPPFLAGS="$cf_test_CPPFLAGS" LIBS="-lssl $cf_extra_ssl_libs $cf_save_LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 12863 "configure" +#line 12864 "configure" #include "confdefs.h" #include <stdio.h> @@ -12889,21 +12890,21 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:12892: \"$ac_link\"") >&5 +if { (eval echo "$as_me:12893: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:12895: \$? = $ac_status" >&5 + echo "$as_me:12896: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:12898: \"$ac_try\"") >&5 + { (eval echo "$as_me:12899: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:12901: \$? = $ac_status" >&5 + echo "$as_me:12902: \$? = $ac_status" >&5 (exit $ac_status); }; }; then test -n "$verbose" && echo " ... found ssl library in system" 1>&6 -echo "${as_me-configure}:12906: testing ... found ssl library in system ..." 1>&5 +echo "${as_me-configure}:12907: testing ... found ssl library in system ..." 1>&5 cf_cv_find_linkage_ssl=yes else @@ -13006,13 +13007,13 @@ cf_search="$cf_library_path_list $cf_search" if test -d $cf_cv_library_path_ssl ; then test -n "$verbose" && echo " ... testing $cf_cv_library_path_ssl" 1>&6 -echo "${as_me-configure}:13009: testing ... testing $cf_cv_library_path_ssl ..." 1>&5 +echo "${as_me-configure}:13010: testing ... testing $cf_cv_library_path_ssl ..." 1>&5 CPPFLAGS="$cf_test_CPPFLAGS" LIBS="-lssl $cf_extra_ssl_libs $cf_save_LIBS" LDFLAGS="$cf_save_LDFLAGS -L$cf_cv_library_path_ssl" cat >conftest.$ac_ext <<_ACEOF -#line 13015 "configure" +#line 13016 "configure" #include "confdefs.h" #include <stdio.h> @@ -13041,21 +13042,21 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:13044: \"$ac_link\"") >&5 +if { (eval echo "$as_me:13045: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:13047: \$? = $ac_status" >&5 + echo "$as_me:13048: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:13050: \"$ac_try\"") >&5 + { (eval echo "$as_me:13051: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:13053: \$? = $ac_status" >&5 + echo "$as_me:13054: \$? = $ac_status" >&5 (exit $ac_status); }; }; then test -n "$verbose" && echo " ... found ssl library in $cf_cv_library_path_ssl" 1>&6 -echo "${as_me-configure}:13058: testing ... found ssl library in $cf_cv_library_path_ssl ..." 1>&5 +echo "${as_me-configure}:13059: testing ... found ssl library in $cf_cv_library_path_ssl ..." 1>&5 cf_cv_find_linkage_ssl=yes cf_cv_library_file_ssl="-lssl" @@ -13117,7 +13118,7 @@ if test -n "$cf_cv_library_path_ssl" ; then if test "$cf_have_libdir" = no ; then test -n "$verbose" && echo " adding $cf_add_libdir to library-path" 1>&6 -echo "${as_me-configure}:13120: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me-configure}:13121: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -13157,7 +13158,7 @@ if test -n "$cf_cv_header_path_ssl" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 13160 "configure" +#line 13161 "configure" #include "confdefs.h" #include <stdio.h> int @@ -13169,16 +13170,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:13172: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:13173: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:13175: \$? = $ac_status" >&5 + echo "$as_me:13176: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:13178: \"$ac_try\"") >&5 + { (eval echo "$as_me:13179: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:13181: \$? = $ac_status" >&5 + echo "$as_me:13182: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -13195,7 +13196,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}:13198: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me-configure}:13199: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -13233,10 +13234,10 @@ EOF esac fi -echo "$as_me:13236: checking for X509 support" >&5 +echo "$as_me:13237: checking for X509 support" >&5 echo $ECHO_N "checking for X509 support... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF -#line 13239 "configure" +#line 13240 "configure" #include "confdefs.h" #include <stdio.h> @@ -13260,16 +13261,16 @@ X509_verify_cert_error_string(X509_STORE_CTX_get_error(NULL)) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:13263: \"$ac_link\"") >&5 +if { (eval echo "$as_me:13264: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:13266: \$? = $ac_status" >&5 + echo "$as_me:13267: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:13269: \"$ac_try\"") >&5 + { (eval echo "$as_me:13270: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:13272: \$? = $ac_status" >&5 + echo "$as_me:13273: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_x509_support=yes else @@ -13278,7 +13279,7 @@ cat conftest.$ac_ext >&5 cf_x509_support=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext -echo "$as_me:13281: result: $cf_x509_support" >&5 +echo "$as_me:13282: result: $cf_x509_support" >&5 echo "${ECHO_T}$cf_x509_support" >&6 if test "$cf_x509_support" = yes ; then @@ -13330,7 +13331,7 @@ if test -n "$cf_searchpath/include" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 13333 "configure" +#line 13334 "configure" #include "confdefs.h" #include <stdio.h> int @@ -13342,16 +13343,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:13345: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:13346: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:13348: \$? = $ac_status" >&5 + echo "$as_me:13349: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:13351: \"$ac_try\"") >&5 + { (eval echo "$as_me:13352: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:13354: \$? = $ac_status" >&5 + echo "$as_me:13355: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -13368,7 +13369,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}:13371: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me-configure}:13372: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -13409,7 +13410,7 @@ if test -n "$cf_searchpath/../include" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 13412 "configure" +#line 13413 "configure" #include "confdefs.h" #include <stdio.h> int @@ -13421,16 +13422,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:13424: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:13425: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:13427: \$? = $ac_status" >&5 + echo "$as_me:13428: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:13430: \"$ac_try\"") >&5 + { (eval echo "$as_me:13431: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:13433: \$? = $ac_status" >&5 + echo "$as_me:13434: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -13447,7 +13448,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}:13450: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me-configure}:13451: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -13463,7 +13464,7 @@ echo "${as_me-configure}:13450: testing adding $cf_add_incdir to include-path .. fi else -{ { echo "$as_me:13466: error: cannot find ssl library under $cf_cv_use_libgnutls" >&5 +{ { echo "$as_me:13467: error: cannot find ssl library under $cf_cv_use_libgnutls" >&5 echo "$as_me: error: cannot find ssl library under $cf_cv_use_libgnutls" >&2;} { (exit 1); exit 1; }; } fi @@ -13488,7 +13489,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}:13491: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me-configure}:13492: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -13517,7 +13518,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}:13520: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me-configure}:13521: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -13526,7 +13527,7 @@ echo "${as_me-configure}:13520: testing adding $cf_add_libdir to library-path .. fi else -{ { echo "$as_me:13529: error: cannot find ssl library under $cf_cv_use_libgnutls" >&5 +{ { echo "$as_me:13530: error: cannot find ssl library under $cf_cv_use_libgnutls" >&5 echo "$as_me: error: cannot find ssl library under $cf_cv_use_libgnutls" >&2;} { (exit 1); exit 1; }; } fi @@ -13544,12 +13545,12 @@ done yes) # if no explicit directory given, try pkg-config test -n "$verbose" && echo " checking pkg-config for $cf_pkg_gnutls" 1>&6 -echo "${as_me-configure}:13547: testing checking pkg-config for $cf_pkg_gnutls ..." 1>&5 +echo "${as_me-configure}:13548: testing checking pkg-config for $cf_pkg_gnutls ..." 1>&5 if "$PKG_CONFIG" --exists $cf_pkg_gnutls ; then test -n "$verbose" && echo " ... found $cf_pkg_gnutls in pkg-config" 1>&6 -echo "${as_me-configure}:13552: testing ... found $cf_pkg_gnutls in pkg-config ..." 1>&5 +echo "${as_me-configure}:13553: testing ... found $cf_pkg_gnutls in pkg-config ..." 1>&5 cf_cv_have_gnutls=yes cf_cv_pkg_config_ssl=yes @@ -13661,14 +13662,14 @@ fi esac test -n "$verbose" && echo " adding $cf_libs_ssl to LIBS" 1>&6 -echo "${as_me-configure}:13664: testing adding $cf_libs_ssl to LIBS ..." 1>&5 +echo "${as_me-configure}:13665: testing adding $cf_libs_ssl to LIBS ..." 1>&5 LIBS="$cf_libs_ssl $LIBS" fi else test -n "$verbose" && echo " ... did not find $cf_pkg_gnutls in pkg-config" 1>&6 -echo "${as_me-configure}:13671: testing ... did not find $cf_pkg_gnutls in pkg-config ..." 1>&5 +echo "${as_me-configure}:13672: testing ... did not find $cf_pkg_gnutls in pkg-config ..." 1>&5 cf_pkg_gnutls=none fi @@ -13688,12 +13689,12 @@ EOF cf_cv_header_path_gnutls= cf_cv_library_path_gnutls= -echo "${as_me-configure}:13691: testing Starting FIND_LINKAGE(gnutls,) ..." 1>&5 +echo "${as_me-configure}:13692: testing Starting FIND_LINKAGE(gnutls,) ..." 1>&5 cf_save_LIBS="$LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 13696 "configure" +#line 13697 "configure" #include "confdefs.h" #include <stdio.h> @@ -13722,16 +13723,16 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:13725: \"$ac_link\"") >&5 +if { (eval echo "$as_me:13726: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:13728: \$? = $ac_status" >&5 + echo "$as_me:13729: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:13731: \"$ac_try\"") >&5 + { (eval echo "$as_me:13732: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:13734: \$? = $ac_status" >&5 + echo "$as_me:13735: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_find_linkage_gnutls=yes @@ -13745,7 +13746,7 @@ cat conftest.$ac_ext >&5 LIBS="-lgnutls -lgnutls -lgcrypt $cf_save_LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 13748 "configure" +#line 13749 "configure" #include "confdefs.h" #include <stdio.h> @@ -13774,16 +13775,16 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:13777: \"$ac_link\"") >&5 +if { (eval echo "$as_me:13778: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:13780: \$? = $ac_status" >&5 + echo "$as_me:13781: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:13783: \"$ac_try\"") >&5 + { (eval echo "$as_me:13784: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:13786: \$? = $ac_status" >&5 + echo "$as_me:13787: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_find_linkage_gnutls=yes @@ -13800,9 +13801,9 @@ cat conftest.$ac_ext >&5 test -n "$verbose" && echo " find linkage for gnutls library" 1>&6 -echo "${as_me-configure}:13803: testing find linkage for gnutls library ..." 1>&5 +echo "${as_me-configure}:13804: testing find linkage for gnutls library ..." 1>&5 -echo "${as_me-configure}:13805: testing Searching for headers in FIND_LINKAGE(gnutls,) ..." 1>&5 +echo "${as_me-configure}:13806: testing Searching for headers in FIND_LINKAGE(gnutls,) ..." 1>&5 cf_save_CPPFLAGS="$CPPFLAGS" cf_test_CPPFLAGS="$CPPFLAGS" @@ -13915,11 +13916,11 @@ cf_search="$cf_search $cf_header_path_list" if test -d $cf_cv_header_path_gnutls ; then test -n "$verbose" && echo " ... testing $cf_cv_header_path_gnutls" 1>&6 -echo "${as_me-configure}:13918: testing ... testing $cf_cv_header_path_gnutls ..." 1>&5 +echo "${as_me-configure}:13919: testing ... testing $cf_cv_header_path_gnutls ..." 1>&5 CPPFLAGS="$cf_save_CPPFLAGS -I$cf_cv_header_path_gnutls" cat >conftest.$ac_ext <<_ACEOF -#line 13922 "configure" +#line 13923 "configure" #include "confdefs.h" #include <stdio.h> @@ -13948,21 +13949,21 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:13951: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:13952: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:13954: \$? = $ac_status" >&5 + echo "$as_me:13955: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:13957: \"$ac_try\"") >&5 + { (eval echo "$as_me:13958: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:13960: \$? = $ac_status" >&5 + echo "$as_me:13961: \$? = $ac_status" >&5 (exit $ac_status); }; }; then test -n "$verbose" && echo " ... found gnutls headers in $cf_cv_header_path_gnutls" 1>&6 -echo "${as_me-configure}:13965: testing ... found gnutls headers in $cf_cv_header_path_gnutls ..." 1>&5 +echo "${as_me-configure}:13966: testing ... found gnutls headers in $cf_cv_header_path_gnutls ..." 1>&5 cf_cv_find_linkage_gnutls=maybe cf_test_CPPFLAGS="$CPPFLAGS" @@ -13980,7 +13981,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "$cf_cv_find_linkage_gnutls" = maybe ; then -echo "${as_me-configure}:13983: testing Searching for gnutls library in FIND_LINKAGE(gnutls,) ..." 1>&5 +echo "${as_me-configure}:13984: testing Searching for gnutls library in FIND_LINKAGE(gnutls,) ..." 1>&5 cf_save_LIBS="$LIBS" cf_save_LDFLAGS="$LDFLAGS" @@ -14077,13 +14078,13 @@ cf_search="$cf_library_path_list $cf_search" if test -d $cf_cv_library_path_gnutls ; then test -n "$verbose" && echo " ... testing $cf_cv_library_path_gnutls" 1>&6 -echo "${as_me-configure}:14080: testing ... testing $cf_cv_library_path_gnutls ..." 1>&5 +echo "${as_me-configure}:14081: testing ... testing $cf_cv_library_path_gnutls ..." 1>&5 CPPFLAGS="$cf_test_CPPFLAGS" LIBS="-lgnutls -lgnutls -lgcrypt $cf_save_LIBS" LDFLAGS="$cf_save_LDFLAGS -L$cf_cv_library_path_gnutls" cat >conftest.$ac_ext <<_ACEOF -#line 14086 "configure" +#line 14087 "configure" #include "confdefs.h" #include <stdio.h> @@ -14112,21 +14113,21 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:14115: \"$ac_link\"") >&5 +if { (eval echo "$as_me:14116: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:14118: \$? = $ac_status" >&5 + echo "$as_me:14119: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:14121: \"$ac_try\"") >&5 + { (eval echo "$as_me:14122: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:14124: \$? = $ac_status" >&5 + echo "$as_me:14125: \$? = $ac_status" >&5 (exit $ac_status); }; }; then test -n "$verbose" && echo " ... found gnutls library in $cf_cv_library_path_gnutls" 1>&6 -echo "${as_me-configure}:14129: testing ... found gnutls library in $cf_cv_library_path_gnutls ..." 1>&5 +echo "${as_me-configure}:14130: testing ... found gnutls library in $cf_cv_library_path_gnutls ..." 1>&5 cf_cv_find_linkage_gnutls=yes cf_cv_library_file_gnutls="-lgnutls" @@ -14204,7 +14205,7 @@ if test -n "$cf_cv_header_path_gnutls" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 14207 "configure" +#line 14208 "configure" #include "confdefs.h" #include <stdio.h> int @@ -14216,16 +14217,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:14219: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:14220: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:14222: \$? = $ac_status" >&5 + echo "$as_me:14223: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:14225: \"$ac_try\"") >&5 + { (eval echo "$as_me:14226: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:14228: \$? = $ac_status" >&5 + echo "$as_me:14229: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -14242,7 +14243,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}:14245: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me-configure}:14246: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -14281,7 +14282,7 @@ if test -n "$cf_cv_library_path_gnutls" ; then if test "$cf_have_libdir" = no ; then test -n "$verbose" && echo " adding $cf_add_libdir to library-path" 1>&6 -echo "${as_me-configure}:14284: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me-configure}:14285: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -14300,10 +14301,10 @@ EOF EXTRA_OBJS="$EXTRA_OBJS tidy_tls\$o" -echo "$as_me:14303: checking for X509 support" >&5 +echo "$as_me:14304: checking for X509 support" >&5 echo $ECHO_N "checking for X509 support... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF -#line 14306 "configure" +#line 14307 "configure" #include "confdefs.h" #include <stdio.h> @@ -14327,16 +14328,16 @@ X509_verify_cert_error_string(X509_STORE_CTX_get_error(NULL)) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:14330: \"$ac_link\"") >&5 +if { (eval echo "$as_me:14331: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:14333: \$? = $ac_status" >&5 + echo "$as_me:14334: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:14336: \"$ac_try\"") >&5 + { (eval echo "$as_me:14337: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:14339: \$? = $ac_status" >&5 + echo "$as_me:14340: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_x509_support=yes else @@ -14345,7 +14346,7 @@ cat conftest.$ac_ext >&5 cf_x509_support=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext -echo "$as_me:14348: result: $cf_x509_support" >&5 +echo "$as_me:14349: result: $cf_x509_support" >&5 echo "${ECHO_T}$cf_x509_support" >&6 if test "$cf_x509_support" = yes ; then @@ -14396,7 +14397,7 @@ if test -n "$cf_searchpath/include" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 14399 "configure" +#line 14400 "configure" #include "confdefs.h" #include <stdio.h> int @@ -14408,16 +14409,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:14411: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:14412: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:14414: \$? = $ac_status" >&5 + echo "$as_me:14415: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:14417: \"$ac_try\"") >&5 + { (eval echo "$as_me:14418: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:14420: \$? = $ac_status" >&5 + echo "$as_me:14421: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -14434,7 +14435,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}:14437: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me-configure}:14438: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -14475,7 +14476,7 @@ if test -n "$cf_searchpath/../include" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 14478 "configure" +#line 14479 "configure" #include "confdefs.h" #include <stdio.h> int @@ -14487,16 +14488,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:14490: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:14491: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:14493: \$? = $ac_status" >&5 + echo "$as_me:14494: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:14496: \"$ac_try\"") >&5 + { (eval echo "$as_me:14497: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:14499: \$? = $ac_status" >&5 + echo "$as_me:14500: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -14513,7 +14514,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}:14516: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me-configure}:14517: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -14529,7 +14530,7 @@ echo "${as_me-configure}:14516: testing adding $cf_add_incdir to include-path .. fi else -{ { echo "$as_me:14532: error: cannot find ssl library under $cf_cv_use_libgnutls" >&5 +{ { echo "$as_me:14533: error: cannot find ssl library under $cf_cv_use_libgnutls" >&5 echo "$as_me: error: cannot find ssl library under $cf_cv_use_libgnutls" >&2;} { (exit 1); exit 1; }; } fi @@ -14554,7 +14555,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}:14557: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me-configure}:14558: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -14583,7 +14584,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}:14586: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me-configure}:14587: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -14592,7 +14593,7 @@ echo "${as_me-configure}:14586: testing adding $cf_add_libdir to library-path .. fi else -{ { echo "$as_me:14595: error: cannot find ssl library under $cf_cv_use_libgnutls" >&5 +{ { echo "$as_me:14596: error: cannot find ssl library under $cf_cv_use_libgnutls" >&5 echo "$as_me: error: cannot find ssl library under $cf_cv_use_libgnutls" >&2;} { (exit 1); exit 1; }; } fi @@ -14610,12 +14611,12 @@ done yes) # if no explicit directory given, try pkg-config test -n "$verbose" && echo " checking pkg-config for $cf_pkg_gnutls" 1>&6 -echo "${as_me-configure}:14613: testing checking pkg-config for $cf_pkg_gnutls ..." 1>&5 +echo "${as_me-configure}:14614: testing checking pkg-config for $cf_pkg_gnutls ..." 1>&5 if "$PKG_CONFIG" --exists $cf_pkg_gnutls ; then test -n "$verbose" && echo " ... found $cf_pkg_gnutls in pkg-config" 1>&6 -echo "${as_me-configure}:14618: testing ... found $cf_pkg_gnutls in pkg-config ..." 1>&5 +echo "${as_me-configure}:14619: testing ... found $cf_pkg_gnutls in pkg-config ..." 1>&5 cf_cv_have_gnutls=yes cf_cv_pkg_config_ssl=yes @@ -14727,14 +14728,14 @@ fi esac test -n "$verbose" && echo " adding $cf_libs_ssl to LIBS" 1>&6 -echo "${as_me-configure}:14730: testing adding $cf_libs_ssl to LIBS ..." 1>&5 +echo "${as_me-configure}:14731: testing adding $cf_libs_ssl to LIBS ..." 1>&5 LIBS="$cf_libs_ssl $LIBS" fi else test -n "$verbose" && echo " ... did not find $cf_pkg_gnutls in pkg-config" 1>&6 -echo "${as_me-configure}:14737: testing ... did not find $cf_pkg_gnutls in pkg-config ..." 1>&5 +echo "${as_me-configure}:14738: testing ... did not find $cf_pkg_gnutls in pkg-config ..." 1>&5 cf_pkg_gnutls=none fi @@ -14754,12 +14755,12 @@ EOF cf_cv_header_path_gnutls= cf_cv_library_path_gnutls= -echo "${as_me-configure}:14757: testing Starting FIND_LINKAGE(gnutls,) ..." 1>&5 +echo "${as_me-configure}:14758: testing Starting FIND_LINKAGE(gnutls,) ..." 1>&5 cf_save_LIBS="$LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 14762 "configure" +#line 14763 "configure" #include "confdefs.h" #include <stdio.h> @@ -14788,16 +14789,16 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:14791: \"$ac_link\"") >&5 +if { (eval echo "$as_me:14792: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:14794: \$? = $ac_status" >&5 + echo "$as_me:14795: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:14797: \"$ac_try\"") >&5 + { (eval echo "$as_me:14798: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:14800: \$? = $ac_status" >&5 + echo "$as_me:14801: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_find_linkage_gnutls=yes @@ -14811,7 +14812,7 @@ cat conftest.$ac_ext >&5 LIBS="-lgnutls -lgnutls-openssl -lgnutls-extra -lgnutls -lgcrypt $cf_save_LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 14814 "configure" +#line 14815 "configure" #include "confdefs.h" #include <stdio.h> @@ -14840,16 +14841,16 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:14843: \"$ac_link\"") >&5 +if { (eval echo "$as_me:14844: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:14846: \$? = $ac_status" >&5 + echo "$as_me:14847: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:14849: \"$ac_try\"") >&5 + { (eval echo "$as_me:14850: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:14852: \$? = $ac_status" >&5 + echo "$as_me:14853: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_find_linkage_gnutls=yes @@ -14866,9 +14867,9 @@ cat conftest.$ac_ext >&5 test -n "$verbose" && echo " find linkage for gnutls library" 1>&6 -echo "${as_me-configure}:14869: testing find linkage for gnutls library ..." 1>&5 +echo "${as_me-configure}:14870: testing find linkage for gnutls library ..." 1>&5 -echo "${as_me-configure}:14871: testing Searching for headers in FIND_LINKAGE(gnutls,) ..." 1>&5 +echo "${as_me-configure}:14872: testing Searching for headers in FIND_LINKAGE(gnutls,) ..." 1>&5 cf_save_CPPFLAGS="$CPPFLAGS" cf_test_CPPFLAGS="$CPPFLAGS" @@ -14981,11 +14982,11 @@ cf_search="$cf_search $cf_header_path_list" if test -d $cf_cv_header_path_gnutls ; then test -n "$verbose" && echo " ... testing $cf_cv_header_path_gnutls" 1>&6 -echo "${as_me-configure}:14984: testing ... testing $cf_cv_header_path_gnutls ..." 1>&5 +echo "${as_me-configure}:14985: testing ... testing $cf_cv_header_path_gnutls ..." 1>&5 CPPFLAGS="$cf_save_CPPFLAGS -I$cf_cv_header_path_gnutls" cat >conftest.$ac_ext <<_ACEOF -#line 14988 "configure" +#line 14989 "configure" #include "confdefs.h" #include <stdio.h> @@ -15014,21 +15015,21 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:15017: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:15018: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:15020: \$? = $ac_status" >&5 + echo "$as_me:15021: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:15023: \"$ac_try\"") >&5 + { (eval echo "$as_me:15024: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:15026: \$? = $ac_status" >&5 + echo "$as_me:15027: \$? = $ac_status" >&5 (exit $ac_status); }; }; then test -n "$verbose" && echo " ... found gnutls headers in $cf_cv_header_path_gnutls" 1>&6 -echo "${as_me-configure}:15031: testing ... found gnutls headers in $cf_cv_header_path_gnutls ..." 1>&5 +echo "${as_me-configure}:15032: testing ... found gnutls headers in $cf_cv_header_path_gnutls ..." 1>&5 cf_cv_find_linkage_gnutls=maybe cf_test_CPPFLAGS="$CPPFLAGS" @@ -15046,7 +15047,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "$cf_cv_find_linkage_gnutls" = maybe ; then -echo "${as_me-configure}:15049: testing Searching for gnutls library in FIND_LINKAGE(gnutls,) ..." 1>&5 +echo "${as_me-configure}:15050: testing Searching for gnutls library in FIND_LINKAGE(gnutls,) ..." 1>&5 cf_save_LIBS="$LIBS" cf_save_LDFLAGS="$LDFLAGS" @@ -15143,13 +15144,13 @@ cf_search="$cf_library_path_list $cf_search" if test -d $cf_cv_library_path_gnutls ; then test -n "$verbose" && echo " ... testing $cf_cv_library_path_gnutls" 1>&6 -echo "${as_me-configure}:15146: testing ... testing $cf_cv_library_path_gnutls ..." 1>&5 +echo "${as_me-configure}:15147: testing ... testing $cf_cv_library_path_gnutls ..." 1>&5 CPPFLAGS="$cf_test_CPPFLAGS" LIBS="-lgnutls -lgnutls-openssl -lgnutls-extra -lgnutls -lgcrypt $cf_save_LIBS" LDFLAGS="$cf_save_LDFLAGS -L$cf_cv_library_path_gnutls" cat >conftest.$ac_ext <<_ACEOF -#line 15152 "configure" +#line 15153 "configure" #include "confdefs.h" #include <stdio.h> @@ -15178,21 +15179,21 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:15181: \"$ac_link\"") >&5 +if { (eval echo "$as_me:15182: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:15184: \$? = $ac_status" >&5 + echo "$as_me:15185: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:15187: \"$ac_try\"") >&5 + { (eval echo "$as_me:15188: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:15190: \$? = $ac_status" >&5 + echo "$as_me:15191: \$? = $ac_status" >&5 (exit $ac_status); }; }; then test -n "$verbose" && echo " ... found gnutls library in $cf_cv_library_path_gnutls" 1>&6 -echo "${as_me-configure}:15195: testing ... found gnutls library in $cf_cv_library_path_gnutls ..." 1>&5 +echo "${as_me-configure}:15196: testing ... found gnutls library in $cf_cv_library_path_gnutls ..." 1>&5 cf_cv_find_linkage_gnutls=yes cf_cv_library_file_gnutls="-lgnutls" @@ -15270,7 +15271,7 @@ if test -n "$cf_cv_header_path_gnutls" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 15273 "configure" +#line 15274 "configure" #include "confdefs.h" #include <stdio.h> int @@ -15282,16 +15283,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:15285: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:15286: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:15288: \$? = $ac_status" >&5 + echo "$as_me:15289: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:15291: \"$ac_try\"") >&5 + { (eval echo "$as_me:15292: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:15294: \$? = $ac_status" >&5 + echo "$as_me:15295: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -15308,7 +15309,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}:15311: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me-configure}:15312: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -15347,7 +15348,7 @@ if test -n "$cf_cv_library_path_gnutls" ; then if test "$cf_have_libdir" = no ; then test -n "$verbose" && echo " adding $cf_add_libdir to library-path" 1>&6 -echo "${as_me-configure}:15350: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me-configure}:15351: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -15365,7 +15366,7 @@ EOF fi if test "$cf_pkg_gnutls" = none ; then - echo "$as_me:15368: checking for SSL_connect in -lgnutls-openssl" >&5 + echo "$as_me:15369: checking for SSL_connect in -lgnutls-openssl" >&5 echo $ECHO_N "checking for SSL_connect in -lgnutls-openssl... $ECHO_C" >&6 if test "${ac_cv_lib_gnutls_openssl_SSL_connect+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -15373,7 +15374,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lgnutls-openssl $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 15376 "configure" +#line 15377 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -15392,16 +15393,16 @@ SSL_connect (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:15395: \"$ac_link\"") >&5 +if { (eval echo "$as_me:15396: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:15398: \$? = $ac_status" >&5 + echo "$as_me:15399: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:15401: \"$ac_try\"") >&5 + { (eval echo "$as_me:15402: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:15404: \$? = $ac_status" >&5 + echo "$as_me:15405: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_gnutls_openssl_SSL_connect=yes else @@ -15412,12 +15413,12 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:15415: result: $ac_cv_lib_gnutls_openssl_SSL_connect" >&5 +echo "$as_me:15416: result: $ac_cv_lib_gnutls_openssl_SSL_connect" >&5 echo "${ECHO_T}$ac_cv_lib_gnutls_openssl_SSL_connect" >&6 if test $ac_cv_lib_gnutls_openssl_SSL_connect = yes; then LIBS="-lgnutls-openssl $LIBS" else - echo "$as_me:15420: checking for SSL_connect in -lgnutls-extra" >&5 + echo "$as_me:15421: checking for SSL_connect in -lgnutls-extra" >&5 echo $ECHO_N "checking for SSL_connect in -lgnutls-extra... $ECHO_C" >&6 if test "${ac_cv_lib_gnutls_extra_SSL_connect+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -15425,7 +15426,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lgnutls-extra $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 15428 "configure" +#line 15429 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -15444,16 +15445,16 @@ SSL_connect (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:15447: \"$ac_link\"") >&5 +if { (eval echo "$as_me:15448: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:15450: \$? = $ac_status" >&5 + echo "$as_me:15451: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:15453: \"$ac_try\"") >&5 + { (eval echo "$as_me:15454: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:15456: \$? = $ac_status" >&5 + echo "$as_me:15457: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_gnutls_extra_SSL_connect=yes else @@ -15464,12 +15465,12 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:15467: result: $ac_cv_lib_gnutls_extra_SSL_connect" >&5 +echo "$as_me:15468: result: $ac_cv_lib_gnutls_extra_SSL_connect" >&5 echo "${ECHO_T}$ac_cv_lib_gnutls_extra_SSL_connect" >&6 if test $ac_cv_lib_gnutls_extra_SSL_connect = yes; then LIBS="-lgnutls-extra $LIBS" else - { { echo "$as_me:15472: error: cannot find gnutls openssl functions" >&5 + { { echo "$as_me:15473: error: cannot find gnutls openssl functions" >&5 echo "$as_me: error: cannot find gnutls openssl functions" >&2;} { (exit 1); exit 1; }; } fi @@ -15478,10 +15479,10 @@ fi fi -echo "$as_me:15481: checking for X509 support" >&5 +echo "$as_me:15482: checking for X509 support" >&5 echo $ECHO_N "checking for X509 support... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF -#line 15484 "configure" +#line 15485 "configure" #include "confdefs.h" #include <stdio.h> @@ -15505,16 +15506,16 @@ X509_verify_cert_error_string(X509_STORE_CTX_get_error(NULL)) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:15508: \"$ac_link\"") >&5 +if { (eval echo "$as_me:15509: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:15511: \$? = $ac_status" >&5 + echo "$as_me:15512: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:15514: \"$ac_try\"") >&5 + { (eval echo "$as_me:15515: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:15517: \$? = $ac_status" >&5 + echo "$as_me:15518: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_x509_support=yes else @@ -15523,7 +15524,7 @@ cat conftest.$ac_ext >&5 cf_x509_support=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext -echo "$as_me:15526: result: $cf_x509_support" >&5 +echo "$as_me:15527: result: $cf_x509_support" >&5 echo "${ECHO_T}$cf_x509_support" >&6 if test "$cf_x509_support" = yes ; then @@ -15555,7 +15556,7 @@ no) #(vi ;; yes) #(vi -echo "$as_me:15558: checking for SSL_get_version in -lnss_compat_ossl" >&5 +echo "$as_me:15559: checking for SSL_get_version in -lnss_compat_ossl" >&5 echo $ECHO_N "checking for SSL_get_version in -lnss_compat_ossl... $ECHO_C" >&6 if test "${ac_cv_lib_nss_compat_ossl_SSL_get_version+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -15563,7 +15564,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lnss_compat_ossl -lnss_compat_ossl $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 15566 "configure" +#line 15567 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -15582,16 +15583,16 @@ SSL_get_version (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:15585: \"$ac_link\"") >&5 +if { (eval echo "$as_me:15586: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:15588: \$? = $ac_status" >&5 + echo "$as_me:15589: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:15591: \"$ac_try\"") >&5 + { (eval echo "$as_me:15592: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:15594: \$? = $ac_status" >&5 + echo "$as_me:15595: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_nss_compat_ossl_SSL_get_version=yes else @@ -15602,7 +15603,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:15605: result: $ac_cv_lib_nss_compat_ossl_SSL_get_version" >&5 +echo "$as_me:15606: result: $ac_cv_lib_nss_compat_ossl_SSL_get_version" >&5 echo "${ECHO_T}$ac_cv_lib_nss_compat_ossl_SSL_get_version" >&6 if test $ac_cv_lib_nss_compat_ossl_SSL_get_version = yes; then cat >>confdefs.h <<EOF @@ -15617,11 +15618,11 @@ else if test -d $cf_ssl_root ; then test -n "$verbose" && echo " assume it is in $cf_ssl_root" 1>&6 -echo "${as_me-configure}:15620: testing assume it is in $cf_ssl_root ..." 1>&5 +echo "${as_me-configure}:15621: testing assume it is in $cf_ssl_root ..." 1>&5 cf_ssl_library="-L$cf_ssl_root/lib $cf_ssl_library" else - { { echo "$as_me:15624: error: cannot find NSS compilant libraries" >&5 + { { echo "$as_me:15625: error: cannot find NSS compilant libraries" >&5 echo "$as_me: error: cannot find NSS compilant libraries" >&2;} { (exit 1); exit 1; }; } fi @@ -15636,13 +15637,13 @@ fi elif test -d $cf_cv_use_libnss_compat/../include ; then cf_ssl_root=$cf_cv_use_libnss_compat/.. else - { { echo "$as_me:15639: error: cannot find NSS compilant library under $cf_cv_use_libnss_compat" >&5 + { { echo "$as_me:15640: error: cannot find NSS compilant library under $cf_cv_use_libnss_compat" >&5 echo "$as_me: error: cannot find NSS compilant library under $cf_cv_use_libnss_compat" >&2;} { (exit 1); exit 1; }; } fi cf_ssl_library="-L$cf_ssl_root/lib $cf_ssl_library" else - { echo "$as_me:15645: WARNING: expected a directory: $cf_cv_use_libnss_compat" >&5 + { echo "$as_me:15646: WARNING: expected a directory: $cf_cv_use_libnss_compat" >&5 echo "$as_me: WARNING: expected a directory: $cf_cv_use_libnss_compat" >&2;} fi ;; @@ -15736,10 +15737,10 @@ if test -n "$cf_new_extra_cppflags" ; then fi if test "$cf_ssl_subincs" = yes ; then -echo "$as_me:15739: checking for NSS compilant include directory" >&5 +echo "$as_me:15740: checking for NSS compilant include directory" >&5 echo $ECHO_N "checking for NSS compilant include directory... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF -#line 15742 "configure" +#line 15743 "configure" #include "confdefs.h" #include <stdio.h> @@ -15753,16 +15754,16 @@ SSL_shutdown((SSL *)0) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:15756: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:15757: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:15759: \$? = $ac_status" >&5 + echo "$as_me:15760: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:15762: \"$ac_try\"") >&5 + { (eval echo "$as_me:15763: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:15765: \$? = $ac_status" >&5 + echo "$as_me:15766: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_ssl_incl=yes else @@ -15771,7 +15772,7 @@ cat conftest.$ac_ext >&5 cf_ssl_incl=no fi rm -f conftest.$ac_objext conftest.$ac_ext -echo "$as_me:15774: result: $cf_ssl_incl" >&5 +echo "$as_me:15775: result: $cf_ssl_incl" >&5 echo "${ECHO_T}$cf_ssl_incl" >&6 test "$cf_ssl_incl" = yes && cat >>confdefs.h <<\EOF #define USE_NSS_COMPAT_INCL 1 @@ -15779,10 +15780,10 @@ EOF fi -echo "$as_me:15782: checking if we can link to NSS compilant library" >&5 +echo "$as_me:15783: checking if we can link to NSS compilant library" >&5 echo $ECHO_N "checking if we can link to NSS compilant library... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF -#line 15785 "configure" +#line 15786 "configure" #include "confdefs.h" #include <stdio.h> @@ -15801,16 +15802,16 @@ SSL_shutdown((SSL *)0) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:15804: \"$ac_link\"") >&5 +if { (eval echo "$as_me:15805: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:15807: \$? = $ac_status" >&5 + echo "$as_me:15808: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:15810: \"$ac_try\"") >&5 + { (eval echo "$as_me:15811: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:15813: \$? = $ac_status" >&5 + echo "$as_me:15814: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_ssl_library=yes else @@ -15819,7 +15820,7 @@ cat conftest.$ac_ext >&5 cf_ssl_library=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext -echo "$as_me:15822: result: $cf_ssl_library" >&5 +echo "$as_me:15823: result: $cf_ssl_library" >&5 echo "${ECHO_T}$cf_ssl_library" >&6 if test "$cf_ssl_library" = yes ; then cat >>confdefs.h <<\EOF @@ -15831,7 +15832,7 @@ EOF EOF else - { { echo "$as_me:15834: error: Cannot link with NSS compilant libraries" >&5 + { { echo "$as_me:15835: error: Cannot link with NSS compilant libraries" >&5 echo "$as_me: error: Cannot link with NSS compilant libraries" >&2;} { (exit 1); exit 1; }; } fi @@ -15839,7 +15840,7 @@ fi fi ### check for ipv6 support -echo "$as_me:15842: checking whether to enable ipv6" >&5 +echo "$as_me:15843: checking whether to enable ipv6" >&5 echo $ECHO_N "checking whether to enable ipv6... $ECHO_C" >&6 # Check whether --enable-ipv6 or --disable-ipv6 was given. @@ -15855,11 +15856,11 @@ EOF else enableval=no fi; -echo "$as_me:15858: result: $enableval" >&5 +echo "$as_me:15859: result: $enableval" >&5 echo "${ECHO_T}$enableval" >&6 if test "$enableval" = "yes"; then -echo "$as_me:15862: checking ipv6 stack type" >&5 +echo "$as_me:15863: checking ipv6 stack type" >&5 echo $ECHO_N "checking ipv6 stack type... $ECHO_C" >&6 if test "${cf_cv_ipv6type+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -15880,7 +15881,7 @@ do ;; inria) #(vi cat >conftest.$ac_ext <<_ACEOF -#line 15883 "configure" +#line 15884 "configure" #include "confdefs.h" #include <netinet/in.h> @@ -15897,7 +15898,7 @@ rm -f conftest* ;; kame) #(vi cat >conftest.$ac_ext <<_ACEOF -#line 15900 "configure" +#line 15901 "configure" #include "confdefs.h" #include <netinet/in.h> @@ -15914,7 +15915,7 @@ rm -f conftest* ;; linux-glibc) #(vi cat >conftest.$ac_ext <<_ACEOF -#line 15917 "configure" +#line 15918 "configure" #include "confdefs.h" #include <features.h> @@ -15940,7 +15941,7 @@ rm -f conftest* ;; toshiba) #(vi cat >conftest.$ac_ext <<_ACEOF -#line 15943 "configure" +#line 15944 "configure" #include "confdefs.h" #include <sys/param.h> @@ -15957,7 +15958,7 @@ rm -f conftest* ;; v6d) #(vi cat >conftest.$ac_ext <<_ACEOF -#line 15960 "configure" +#line 15961 "configure" #include "confdefs.h" #include </usr/local/v6/include/sys/v6config.h> @@ -15974,7 +15975,7 @@ rm -f conftest* ;; zeta) cat >conftest.$ac_ext <<_ACEOF -#line 15977 "configure" +#line 15978 "configure" #include "confdefs.h" #include <sys/param.h> @@ -15996,13 +15997,13 @@ rm -f conftest* done fi -echo "$as_me:15999: result: $cf_cv_ipv6type" >&5 +echo "$as_me:16000: result: $cf_cv_ipv6type" >&5 echo "${ECHO_T}$cf_cv_ipv6type" >&6 cf_ipv6lib=none cf_ipv6dir=none -echo "$as_me:16005: checking for IPv6 library if required" >&5 +echo "$as_me:16006: checking for IPv6 library if required" >&5 echo $ECHO_N "checking for IPv6 library if required... $ECHO_C" >&6 case $cf_cv_ipv6type in #(vi solaris) #(vi @@ -16032,13 +16033,13 @@ zeta) cf_ipv6dir=v6 ;; esac -echo "$as_me:16035: result: $cf_ipv6lib" >&5 +echo "$as_me:16036: result: $cf_ipv6lib" >&5 echo "${ECHO_T}$cf_ipv6lib" >&6 if test "$cf_ipv6lib" != "none"; then cat >conftest.$ac_ext <<_ACEOF -#line 16041 "configure" +#line 16042 "configure" #include "confdefs.h" #include <sys/types.h> @@ -16054,16 +16055,16 @@ getaddrinfo(0, 0, 0, 0) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:16057: \"$ac_link\"") >&5 +if { (eval echo "$as_me:16058: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:16060: \$? = $ac_status" >&5 + echo "$as_me:16061: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:16063: \"$ac_try\"") >&5 + { (eval echo "$as_me:16064: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:16066: \$? = $ac_status" >&5 + echo "$as_me:16067: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -16203,7 +16204,7 @@ if test -n "$cf_incdir" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 16206 "configure" +#line 16207 "configure" #include "confdefs.h" #include <stdio.h> int @@ -16215,16 +16216,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:16218: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:16219: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:16221: \$? = $ac_status" >&5 + echo "$as_me:16222: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:16224: \"$ac_try\"") >&5 + { (eval echo "$as_me:16225: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:16227: \$? = $ac_status" >&5 + echo "$as_me:16228: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -16241,7 +16242,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}:16244: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me-configure}:16245: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -16267,13 +16268,13 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext eval 'cf_cv_have_lib_'$cf_ipv6lib'=no' cf_libdir="" - echo "$as_me:16270: checking for getaddrinfo" >&5 + echo "$as_me:16271: checking for getaddrinfo" >&5 echo $ECHO_N "checking for getaddrinfo... $ECHO_C" >&6 if test "${ac_cv_func_getaddrinfo+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 16276 "configure" +#line 16277 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char getaddrinfo (); below. */ @@ -16304,16 +16305,16 @@ f = getaddrinfo; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:16307: \"$ac_link\"") >&5 +if { (eval echo "$as_me:16308: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:16310: \$? = $ac_status" >&5 + echo "$as_me:16311: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:16313: \"$ac_try\"") >&5 + { (eval echo "$as_me:16314: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:16316: \$? = $ac_status" >&5 + echo "$as_me:16317: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_getaddrinfo=yes else @@ -16323,18 +16324,18 @@ ac_cv_func_getaddrinfo=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:16326: result: $ac_cv_func_getaddrinfo" >&5 +echo "$as_me:16327: result: $ac_cv_func_getaddrinfo" >&5 echo "${ECHO_T}$ac_cv_func_getaddrinfo" >&6 if test $ac_cv_func_getaddrinfo = yes; then eval 'cf_cv_have_lib_'$cf_ipv6lib'=yes' else cf_save_LIBS="$LIBS" - echo "$as_me:16333: checking for getaddrinfo in -l$cf_ipv6lib" >&5 + echo "$as_me:16334: checking for getaddrinfo in -l$cf_ipv6lib" >&5 echo $ECHO_N "checking for getaddrinfo in -l$cf_ipv6lib... $ECHO_C" >&6 LIBS="-l$cf_ipv6lib $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 16337 "configure" +#line 16338 "configure" #include "confdefs.h" #include <sys/types.h> @@ -16350,25 +16351,25 @@ getaddrinfo(0, 0, 0, 0) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:16353: \"$ac_link\"") >&5 +if { (eval echo "$as_me:16354: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:16356: \$? = $ac_status" >&5 + echo "$as_me:16357: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:16359: \"$ac_try\"") >&5 + { (eval echo "$as_me:16360: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:16362: \$? = $ac_status" >&5 + echo "$as_me:16363: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:16364: result: yes" >&5 + echo "$as_me:16365: result: yes" >&5 echo "${ECHO_T}yes" >&6 eval 'cf_cv_have_lib_'$cf_ipv6lib'=yes' else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 -echo "$as_me:16371: result: no" >&5 +echo "$as_me:16372: result: no" >&5 echo "${ECHO_T}no" >&6 cf_search= @@ -16458,11 +16459,11 @@ cf_search="$cf_library_path_list $cf_search" for cf_libdir in $cf_search do - echo "$as_me:16461: checking for -l$cf_ipv6lib in $cf_libdir" >&5 + echo "$as_me:16462: checking for -l$cf_ipv6lib in $cf_libdir" >&5 echo $ECHO_N "checking for -l$cf_ipv6lib in $cf_libdir... $ECHO_C" >&6 LIBS="-L$cf_libdir -l$cf_ipv6lib $cf_save_LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 16465 "configure" +#line 16466 "configure" #include "confdefs.h" #include <sys/types.h> @@ -16478,25 +16479,25 @@ getaddrinfo(0, 0, 0, 0) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:16481: \"$ac_link\"") >&5 +if { (eval echo "$as_me:16482: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:16484: \$? = $ac_status" >&5 + echo "$as_me:16485: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:16487: \"$ac_try\"") >&5 + { (eval echo "$as_me:16488: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:16490: \$? = $ac_status" >&5 + echo "$as_me:16491: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:16492: result: yes" >&5 + echo "$as_me:16493: result: yes" >&5 echo "${ECHO_T}yes" >&6 eval 'cf_cv_have_lib_'$cf_ipv6lib'=yes' break else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 -echo "$as_me:16499: result: no" >&5 +echo "$as_me:16500: result: no" >&5 echo "${ECHO_T}no" >&6 LIBS="$cf_save_LIBS" fi @@ -16511,7 +16512,7 @@ fi eval 'cf_found_library=$cf_cv_have_lib_'$cf_ipv6lib if test $cf_found_library = no ; then - { { echo "$as_me:16514: error: No $cf_ipv6lib library found, cannot continue. You must fetch lib$cf_ipv6lib.a + { { echo "$as_me:16515: error: No $cf_ipv6lib library found, cannot continue. You must fetch lib$cf_ipv6lib.a from an appropriate IPv6 kit and compile beforehand." >&5 echo "$as_me: error: No $cf_ipv6lib library found, cannot continue. You must fetch lib$cf_ipv6lib.a from an appropriate IPv6 kit and compile beforehand." >&2;} @@ -16519,7 +16520,7 @@ from an appropriate IPv6 kit and compile beforehand." >&2;} fi fi -echo "$as_me:16522: checking working getaddrinfo" >&5 +echo "$as_me:16523: checking working getaddrinfo" >&5 echo $ECHO_N "checking working getaddrinfo... $ECHO_C" >&6 if test "${cf_cv_getaddrinfo+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -16529,7 +16530,7 @@ if test "$cross_compiling" = yes; then cf_cv_getaddrinfo=unknown else cat >conftest.$ac_ext <<_ACEOF -#line 16532 "configure" +#line 16533 "configure" #include "confdefs.h" #include <sys/types.h> @@ -16609,15 +16610,15 @@ int main() _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:16612: \"$ac_link\"") >&5 +if { (eval echo "$as_me:16613: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:16615: \$? = $ac_status" >&5 + echo "$as_me:16616: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:16617: \"$ac_try\"") >&5 + { (eval echo "$as_me:16618: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:16620: \$? = $ac_status" >&5 + echo "$as_me:16621: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_getaddrinfo=yes else @@ -16630,7 +16631,7 @@ rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext fi fi -echo "$as_me:16633: result: $cf_cv_getaddrinfo" >&5 +echo "$as_me:16634: result: $cf_cv_getaddrinfo" >&5 echo "${ECHO_T}$cf_cv_getaddrinfo" >&6 if test "$cf_cv_getaddrinfo" = yes ; then cat >>confdefs.h <<\EOF @@ -16645,12 +16646,12 @@ fi if test "$cf_cv_getaddrinfo" != "yes"; then if test "$cf_cv_ipv6type" != "linux"; then - { echo "$as_me:16648: WARNING: You must get working getaddrinfo() function, + { echo "$as_me:16649: WARNING: You must get working getaddrinfo() function, or you can specify \"--disable-ipv6\"" >&5 echo "$as_me: WARNING: You must get working getaddrinfo() function, or you can specify \"--disable-ipv6\"" >&2;} else - { echo "$as_me:16653: WARNING: The getaddrinfo() implementation on your system seems be buggy. + { echo "$as_me:16654: WARNING: The getaddrinfo() implementation on your system seems be buggy. You should upgrade your system library to the newest version of GNU C library (aka glibc)." >&5 echo "$as_me: WARNING: The getaddrinfo() implementation on your system seems be buggy. @@ -16661,7 +16662,7 @@ fi fi -echo "$as_me:16664: checking for screen type" >&5 +echo "$as_me:16665: checking for screen type" >&5 echo $ECHO_N "checking for screen type... $ECHO_C" >&6 if test "${cf_cv_screen+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -16675,7 +16676,7 @@ case $withval in curses|ncurses|ncursesw|pdcurses|slang) cf_cv_screen=$withval ;; -*) { { echo "$as_me:16678: error: Unexpected value" >&5 +*) { { echo "$as_me:16679: error: Unexpected value" >&5 echo "$as_me: error: Unexpected value" >&2;} { (exit 1); exit 1; }; } ;; @@ -16684,7 +16685,7 @@ else cf_cv_screen=curses fi; fi -echo "$as_me:16687: result: $cf_cv_screen" >&5 +echo "$as_me:16688: result: $cf_cv_screen" >&5 echo "${ECHO_T}$cf_cv_screen" >&6 case $cf_cv_screen in @@ -16719,7 +16720,7 @@ case ".$withval" in #(vi withval=`echo $withval | sed -e s%NONE%$cf_path_syntax%` ;; *) - { { echo "$as_me:16722: error: expected a pathname, not \"$withval\"" >&5 + { { echo "$as_me:16723: error: expected a pathname, not \"$withval\"" >&5 echo "$as_me: error: expected a pathname, not \"$withval\"" >&2;} { (exit 1); exit 1; }; } ;; @@ -16738,7 +16739,7 @@ dft_color_style=yes case $cf_cv_screen in curses) -echo "$as_me:16741: checking for extra include directories" >&5 +echo "$as_me:16742: checking for extra include directories" >&5 echo $ECHO_N "checking for extra include directories... $ECHO_C" >&6 if test "${cf_cv_curses_incdir+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -16758,11 +16759,11 @@ sunos3*|sunos4*) esac fi -echo "$as_me:16761: result: $cf_cv_curses_incdir" >&5 +echo "$as_me:16762: result: $cf_cv_curses_incdir" >&5 echo "${ECHO_T}$cf_cv_curses_incdir" >&6 test "$cf_cv_curses_incdir" != no && CPPFLAGS="$CPPFLAGS $cf_cv_curses_incdir" -echo "$as_me:16765: checking if we have identified curses headers" >&5 +echo "$as_me:16766: 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 @@ -16774,7 +16775,7 @@ for cf_header in \ ncurses.h ncurses/curses.h ncurses/ncurses.h do cat >conftest.$ac_ext <<_ACEOF -#line 16777 "configure" +#line 16778 "configure" #include "confdefs.h" #include <${cf_header}> int @@ -16786,16 +16787,16 @@ initscr(); tgoto("?", 0,0) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:16789: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:16790: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:16792: \$? = $ac_status" >&5 + echo "$as_me:16793: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:16795: \"$ac_try\"") >&5 + { (eval echo "$as_me:16796: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:16798: \$? = $ac_status" >&5 + echo "$as_me:16799: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_ncurses_header=$cf_header; break else @@ -16806,11 +16807,11 @@ rm -f conftest.$ac_objext conftest.$ac_ext done fi -echo "$as_me:16809: result: $cf_cv_ncurses_header" >&5 +echo "$as_me:16810: 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:16813: error: No curses header-files found" >&5 + { { echo "$as_me:16814: error: No curses header-files found" >&5 echo "$as_me: error: No curses header-files found" >&2;} { (exit 1); exit 1; }; } fi @@ -16820,23 +16821,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:16823: checking for $ac_header" >&5 +echo "$as_me:16824: 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 16829 "configure" +#line 16830 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:16833: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:16834: \"$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:16839: \$? = $ac_status" >&5 + echo "$as_me:16840: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -16855,7 +16856,7 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:16858: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:16859: 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 @@ -16865,7 +16866,7 @@ EOF fi done -echo "$as_me:16868: checking for terminfo header" >&5 +echo "$as_me:16869: 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 @@ -16883,7 +16884,7 @@ esac for cf_test in $cf_term_header "ncurses/term.h" "ncursesw/term.h" do cat >conftest.$ac_ext <<_ACEOF -#line 16886 "configure" +#line 16887 "configure" #include "confdefs.h" #include <stdio.h> #include <${cf_cv_ncurses_header-curses.h}> @@ -16898,16 +16899,16 @@ int x = auto_left_margin } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:16901: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:16902: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:16904: \$? = $ac_status" >&5 + echo "$as_me:16905: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:16907: \"$ac_try\"") >&5 + { (eval echo "$as_me:16908: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:16910: \$? = $ac_status" >&5 + echo "$as_me:16911: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_term_header="$cf_test" @@ -16923,7 +16924,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext done fi -echo "$as_me:16926: result: $cf_cv_term_header" >&5 +echo "$as_me:16927: result: $cf_cv_term_header" >&5 echo "${ECHO_T}$cf_cv_term_header" >&6 # Set definitions to allow ifdef'ing to accommodate subdirectories @@ -16952,7 +16953,7 @@ EOF ;; esac -echo "$as_me:16955: checking for ncurses version" >&5 +echo "$as_me:16956: 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 @@ -16978,10 +16979,10 @@ Autoconf "old" #endif EOF cf_try="$ac_cpp conftest.$ac_ext 2>&5 | grep '^Autoconf ' >conftest.out" - { (eval echo "$as_me:16981: \"$cf_try\"") >&5 + { (eval echo "$as_me:16982: \"$cf_try\"") >&5 (eval $cf_try) 2>&5 ac_status=$? - echo "$as_me:16984: \$? = $ac_status" >&5 + echo "$as_me:16985: \$? = $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%".*%%'` @@ -16991,7 +16992,7 @@ EOF else cat >conftest.$ac_ext <<_ACEOF -#line 16994 "configure" +#line 16995 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header-curses.h}> @@ -17016,15 +17017,15 @@ int main() } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:17019: \"$ac_link\"") >&5 +if { (eval echo "$as_me:17020: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:17022: \$? = $ac_status" >&5 + echo "$as_me:17023: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:17024: \"$ac_try\"") >&5 + { (eval echo "$as_me:17025: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:17027: \$? = $ac_status" >&5 + echo "$as_me:17028: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_ncurses_version=`cat $cf_tempfile` @@ -17038,16 +17039,16 @@ fi rm -f $cf_tempfile fi -echo "$as_me:17041: result: $cf_cv_ncurses_version" >&5 +echo "$as_me:17042: result: $cf_cv_ncurses_version" >&5 echo "${ECHO_T}$cf_cv_ncurses_version" >&6 test "$cf_cv_ncurses_version" = no || cat >>confdefs.h <<\EOF #define NCURSES 1 EOF -echo "$as_me:17047: checking if we have identified curses libraries" >&5 +echo "$as_me:17048: checking if we have identified curses libraries" >&5 echo $ECHO_N "checking if we have identified curses libraries... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF -#line 17050 "configure" +#line 17051 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header-curses.h}> int @@ -17059,16 +17060,16 @@ initscr(); tgoto("?", 0,0) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:17062: \"$ac_link\"") >&5 +if { (eval echo "$as_me:17063: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:17065: \$? = $ac_status" >&5 + echo "$as_me:17066: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:17068: \"$ac_try\"") >&5 + { (eval echo "$as_me:17069: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:17071: \$? = $ac_status" >&5 + echo "$as_me:17072: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_result=yes else @@ -17077,13 +17078,13 @@ cat conftest.$ac_ext >&5 cf_result=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext -echo "$as_me:17080: result: $cf_result" >&5 +echo "$as_me:17081: result: $cf_result" >&5 echo "${ECHO_T}$cf_result" >&6 if test "$cf_result" = no ; then case $host_os in #(vi freebsd*) #(vi - echo "$as_me:17086: checking for tgoto in -lmytinfo" >&5 + echo "$as_me:17087: 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 @@ -17091,7 +17092,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lmytinfo $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 17094 "configure" +#line 17095 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -17110,16 +17111,16 @@ tgoto (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:17113: \"$ac_link\"") >&5 +if { (eval echo "$as_me:17114: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:17116: \$? = $ac_status" >&5 + echo "$as_me:17117: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:17119: \"$ac_try\"") >&5 + { (eval echo "$as_me:17120: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:17122: \$? = $ac_status" >&5 + echo "$as_me:17123: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_mytinfo_tgoto=yes else @@ -17130,7 +17131,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:17133: result: $ac_cv_lib_mytinfo_tgoto" >&5 +echo "$as_me:17134: result: $ac_cv_lib_mytinfo_tgoto" >&5 echo "${ECHO_T}$ac_cv_lib_mytinfo_tgoto" >&6 if test $ac_cv_lib_mytinfo_tgoto = yes; then LIBS="-lmytinfo $LIBS" @@ -17138,7 +17139,7 @@ fi ;; hpux10.*) #(vi - echo "$as_me:17141: checking for initscr in -lcur_colr" >&5 + echo "$as_me:17142: checking for initscr in -lcur_colr" >&5 echo $ECHO_N "checking for initscr in -lcur_colr... $ECHO_C" >&6 if test "${ac_cv_lib_cur_colr_initscr+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -17146,7 +17147,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lcur_colr $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 17149 "configure" +#line 17150 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -17165,16 +17166,16 @@ initscr (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:17168: \"$ac_link\"") >&5 +if { (eval echo "$as_me:17169: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:17171: \$? = $ac_status" >&5 + echo "$as_me:17172: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:17174: \"$ac_try\"") >&5 + { (eval echo "$as_me:17175: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:17177: \$? = $ac_status" >&5 + echo "$as_me:17178: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_cur_colr_initscr=yes else @@ -17185,7 +17186,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:17188: result: $ac_cv_lib_cur_colr_initscr" >&5 +echo "$as_me:17189: result: $ac_cv_lib_cur_colr_initscr" >&5 echo "${ECHO_T}$ac_cv_lib_cur_colr_initscr" >&6 if test $ac_cv_lib_cur_colr_initscr = yes; then @@ -17194,7 +17195,7 @@ if test $ac_cv_lib_cur_colr_initscr = yes; then else - echo "$as_me:17197: checking for initscr in -lHcurses" >&5 + echo "$as_me:17198: checking for initscr in -lHcurses" >&5 echo $ECHO_N "checking for initscr in -lHcurses... $ECHO_C" >&6 if test "${ac_cv_lib_Hcurses_initscr+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -17202,7 +17203,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lHcurses $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 17205 "configure" +#line 17206 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -17221,16 +17222,16 @@ initscr (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:17224: \"$ac_link\"") >&5 +if { (eval echo "$as_me:17225: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:17227: \$? = $ac_status" >&5 + echo "$as_me:17228: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:17230: \"$ac_try\"") >&5 + { (eval echo "$as_me:17231: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:17233: \$? = $ac_status" >&5 + echo "$as_me:17234: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_Hcurses_initscr=yes else @@ -17241,7 +17242,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:17244: result: $ac_cv_lib_Hcurses_initscr" >&5 +echo "$as_me:17245: result: $ac_cv_lib_Hcurses_initscr" >&5 echo "${ECHO_T}$ac_cv_lib_Hcurses_initscr" >&6 if test $ac_cv_lib_Hcurses_initscr = yes; then @@ -17276,7 +17277,7 @@ if test -n "/lib" ; then if test "$cf_have_libdir" = no ; then test -n "$verbose" && echo " adding $cf_add_libdir to library-path" 1>&6 -echo "${as_me-configure}:17279: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me-configure}:17280: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -17307,7 +17308,7 @@ if test -n "/usr/5lib" ; then if test "$cf_have_libdir" = no ; then test -n "$verbose" && echo " adding $cf_add_libdir to library-path" 1>&6 -echo "${as_me-configure}:17310: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me-configure}:17311: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -17335,13 +17336,13 @@ if test ".$ac_cv_func_initscr" != .yes ; then # Check for library containing tgoto. Do this before curses library # because it may be needed to link the test-case for initscr. - echo "$as_me:17338: checking for tgoto" >&5 + echo "$as_me:17339: checking for tgoto" >&5 echo $ECHO_N "checking for tgoto... $ECHO_C" >&6 if test "${ac_cv_func_tgoto+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 17344 "configure" +#line 17345 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char tgoto (); below. */ @@ -17372,16 +17373,16 @@ f = tgoto; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:17375: \"$ac_link\"") >&5 +if { (eval echo "$as_me:17376: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:17378: \$? = $ac_status" >&5 + echo "$as_me:17379: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:17381: \"$ac_try\"") >&5 + { (eval echo "$as_me:17382: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:17384: \$? = $ac_status" >&5 + echo "$as_me:17385: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_tgoto=yes else @@ -17391,7 +17392,7 @@ ac_cv_func_tgoto=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:17394: result: $ac_cv_func_tgoto" >&5 +echo "$as_me:17395: result: $ac_cv_func_tgoto" >&5 echo "${ECHO_T}$ac_cv_func_tgoto" >&6 if test $ac_cv_func_tgoto = yes; then cf_term_lib=predefined @@ -17400,7 +17401,7 @@ else for cf_term_lib in $cf_check_list termcap termlib unknown do as_ac_Lib=`echo "ac_cv_lib_$cf_term_lib''_tgoto" | $as_tr_sh` -echo "$as_me:17403: checking for tgoto in -l$cf_term_lib" >&5 +echo "$as_me:17404: checking for tgoto in -l$cf_term_lib" >&5 echo $ECHO_N "checking for tgoto in -l$cf_term_lib... $ECHO_C" >&6 if eval "test \"\${$as_ac_Lib+set}\" = set"; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -17408,7 +17409,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-l$cf_term_lib $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 17411 "configure" +#line 17412 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -17427,16 +17428,16 @@ tgoto (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:17430: \"$ac_link\"") >&5 +if { (eval echo "$as_me:17431: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:17433: \$? = $ac_status" >&5 + echo "$as_me:17434: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:17436: \"$ac_try\"") >&5 + { (eval echo "$as_me:17437: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:17439: \$? = $ac_status" >&5 + echo "$as_me:17440: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_Lib=yes" else @@ -17447,7 +17448,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:17450: result: `eval echo '${'$as_ac_Lib'}'`" >&5 +echo "$as_me:17451: result: `eval echo '${'$as_ac_Lib'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_Lib'}'`" >&6 if test `eval echo '${'$as_ac_Lib'}'` = yes; then break @@ -17462,7 +17463,7 @@ fi for cf_curs_lib in $cf_check_list xcurses jcurses pdcurses unknown do as_ac_Lib=`echo "ac_cv_lib_$cf_curs_lib''_initscr" | $as_tr_sh` -echo "$as_me:17465: checking for initscr in -l$cf_curs_lib" >&5 +echo "$as_me:17466: checking for initscr in -l$cf_curs_lib" >&5 echo $ECHO_N "checking for initscr in -l$cf_curs_lib... $ECHO_C" >&6 if eval "test \"\${$as_ac_Lib+set}\" = set"; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -17470,7 +17471,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-l$cf_curs_lib $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 17473 "configure" +#line 17474 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -17489,16 +17490,16 @@ initscr (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:17492: \"$ac_link\"") >&5 +if { (eval echo "$as_me:17493: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:17495: \$? = $ac_status" >&5 + echo "$as_me:17496: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:17498: \"$ac_try\"") >&5 + { (eval echo "$as_me:17499: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:17501: \$? = $ac_status" >&5 + echo "$as_me:17502: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_Lib=yes" else @@ -17509,23 +17510,23 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:17512: result: `eval echo '${'$as_ac_Lib'}'`" >&5 +echo "$as_me:17513: result: `eval echo '${'$as_ac_Lib'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_Lib'}'`" >&6 if test `eval echo '${'$as_ac_Lib'}'` = yes; then break fi done - test $cf_curs_lib = unknown && { { echo "$as_me:17519: error: no curses library found" >&5 + test $cf_curs_lib = unknown && { { echo "$as_me:17520: error: no curses library found" >&5 echo "$as_me: error: no curses library found" >&2;} { (exit 1); exit 1; }; } LIBS="-l$cf_curs_lib $cf_save_LIBS" if test "$cf_term_lib" = unknown ; then - echo "$as_me:17525: checking if we can link with $cf_curs_lib library" >&5 + echo "$as_me:17526: checking if we can link with $cf_curs_lib library" >&5 echo $ECHO_N "checking if we can link with $cf_curs_lib library... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF -#line 17528 "configure" +#line 17529 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header-curses.h}> int @@ -17537,16 +17538,16 @@ initscr() } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:17540: \"$ac_link\"") >&5 +if { (eval echo "$as_me:17541: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:17543: \$? = $ac_status" >&5 + echo "$as_me:17544: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:17546: \"$ac_try\"") >&5 + { (eval echo "$as_me:17547: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:17549: \$? = $ac_status" >&5 + echo "$as_me:17550: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_result=yes else @@ -17555,18 +17556,18 @@ cat conftest.$ac_ext >&5 cf_result=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext - echo "$as_me:17558: result: $cf_result" >&5 + echo "$as_me:17559: result: $cf_result" >&5 echo "${ECHO_T}$cf_result" >&6 - test $cf_result = no && { { echo "$as_me:17560: error: Cannot link curses library" >&5 + test $cf_result = no && { { echo "$as_me:17561: error: Cannot link curses library" >&5 echo "$as_me: error: Cannot link curses library" >&2;} { (exit 1); exit 1; }; } elif test "$cf_curs_lib" = "$cf_term_lib" ; then : elif test "$cf_term_lib" != predefined ; then - echo "$as_me:17566: checking if we need both $cf_curs_lib and $cf_term_lib libraries" >&5 + echo "$as_me:17567: checking if we need both $cf_curs_lib and $cf_term_lib libraries" >&5 echo $ECHO_N "checking if we need both $cf_curs_lib and $cf_term_lib libraries... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF -#line 17569 "configure" +#line 17570 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header-curses.h}> int @@ -17578,16 +17579,16 @@ initscr(); tgoto((char *)0, 0, 0); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:17581: \"$ac_link\"") >&5 +if { (eval echo "$as_me:17582: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:17584: \$? = $ac_status" >&5 + echo "$as_me:17585: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:17587: \"$ac_try\"") >&5 + { (eval echo "$as_me:17588: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:17590: \$? = $ac_status" >&5 + echo "$as_me:17591: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_result=no else @@ -17596,7 +17597,7 @@ cat conftest.$ac_ext >&5 LIBS="-l$cf_curs_lib -l$cf_term_lib $cf_save_LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 17599 "configure" +#line 17600 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header-curses.h}> int @@ -17608,16 +17609,16 @@ initscr() } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:17611: \"$ac_link\"") >&5 +if { (eval echo "$as_me:17612: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:17614: \$? = $ac_status" >&5 + echo "$as_me:17615: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:17617: \"$ac_try\"") >&5 + { (eval echo "$as_me:17618: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:17620: \$? = $ac_status" >&5 + echo "$as_me:17621: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_result=yes else @@ -17629,13 +17630,13 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext - echo "$as_me:17632: result: $cf_result" >&5 + echo "$as_me:17633: result: $cf_result" >&5 echo "${ECHO_T}$cf_result" >&6 fi fi fi -echo "$as_me:17638: checking for curses performance tradeoff" >&5 +echo "$as_me:17639: checking for curses performance tradeoff" >&5 echo $ECHO_N "checking for curses performance tradeoff... $ECHO_C" >&6 if test "${cf_cv_curs_performance+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -17643,7 +17644,7 @@ else cf_cv_curs_performance=no cat >conftest.$ac_ext <<_ACEOF -#line 17646 "configure" +#line 17647 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header-curses.h}> @@ -17662,20 +17663,20 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:17665: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:17666: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:17668: \$? = $ac_status" >&5 + echo "$as_me:17669: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:17671: \"$ac_try\"") >&5 + { (eval echo "$as_me:17672: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:17674: \$? = $ac_status" >&5 + echo "$as_me:17675: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cat >conftest.$ac_ext <<_ACEOF -#line 17678 "configure" +#line 17679 "configure" #include "confdefs.h" #define CURS_PERFORMANCE @@ -17695,16 +17696,16 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:17698: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:17699: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:17701: \$? = $ac_status" >&5 + echo "$as_me:17702: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:17704: \"$ac_try\"") >&5 + { (eval echo "$as_me:17705: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:17707: \$? = $ac_status" >&5 + echo "$as_me:17708: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_curs_performance=yes else @@ -17719,20 +17720,20 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:17722: result: $cf_cv_curs_performance" >&5 +echo "$as_me:17723: result: $cf_cv_curs_performance" >&5 echo "${ECHO_T}$cf_cv_curs_performance" >&6 test $cf_cv_curs_performance = yes && cat >>confdefs.h <<\EOF #define CURS_PERFORMANCE 1 EOF -echo "$as_me:17728: checking for curses touchline function" >&5 +echo "$as_me:17729: checking for curses touchline function" >&5 echo $ECHO_N "checking for curses touchline function... $ECHO_C" >&6 if test "${cf_cv_curs_touchline+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 17735 "configure" +#line 17736 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header-curses.h}> @@ -17745,23 +17746,23 @@ touchline(stdscr, 1,2,3); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:17748: \"$ac_link\"") >&5 +if { (eval echo "$as_me:17749: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:17751: \$? = $ac_status" >&5 + echo "$as_me:17752: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:17754: \"$ac_try\"") >&5 + { (eval echo "$as_me:17755: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:17757: \$? = $ac_status" >&5 + echo "$as_me:17758: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_curs_touchline=bsd else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 cat >conftest.$ac_ext <<_ACEOF -#line 17764 "configure" +#line 17765 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header-curses.h}> @@ -17774,16 +17775,16 @@ touchline(stdscr, 1,2); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:17777: \"$ac_link\"") >&5 +if { (eval echo "$as_me:17778: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:17780: \$? = $ac_status" >&5 + echo "$as_me:17781: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:17783: \"$ac_try\"") >&5 + { (eval echo "$as_me:17784: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:17786: \$? = $ac_status" >&5 + echo "$as_me:17787: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_curs_touchline=sysv else @@ -17795,7 +17796,7 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:17798: result: $cf_cv_curs_touchline" >&5 +echo "$as_me:17799: result: $cf_cv_curs_touchline" >&5 echo "${ECHO_T}$cf_cv_curs_touchline" >&6 case "$cf_cv_curs_touchline" in #(vi bsd) #(vi @@ -17822,7 +17823,7 @@ for ac_prog in ${cf_ncuconfig_root}6-config ${cf_ncuconfig_root}5-config 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:17825: checking for $ac_word" >&5 +echo "$as_me:17826: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_path_NCURSES_CONFIG+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -17839,7 +17840,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_NCURSES_CONFIG="$ac_dir/$ac_word" - echo "$as_me:17842: found $ac_dir/$ac_word" >&5 + echo "$as_me:17843: found $ac_dir/$ac_word" >&5 break fi done @@ -17850,10 +17851,10 @@ fi NCURSES_CONFIG=$ac_cv_path_NCURSES_CONFIG if test -n "$NCURSES_CONFIG"; then - echo "$as_me:17853: result: $NCURSES_CONFIG" >&5 + echo "$as_me:17854: result: $NCURSES_CONFIG" >&5 echo "${ECHO_T}$NCURSES_CONFIG" >&6 else - echo "$as_me:17856: result: no" >&5 + echo "$as_me:17857: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -17868,7 +17869,7 @@ LIBS="`$NCURSES_CONFIG --libs` $LIBS" # even with config script, some packages use no-override for curses.h -echo "$as_me:17871: checking if we have identified curses headers" >&5 +echo "$as_me:17872: 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 @@ -17882,7 +17883,7 @@ for cf_header in \ ncurses.h do cat >conftest.$ac_ext <<_ACEOF -#line 17885 "configure" +#line 17886 "configure" #include "confdefs.h" #include <${cf_header}> int @@ -17894,16 +17895,16 @@ initscr(); tgoto("?", 0,0) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:17897: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:17898: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:17900: \$? = $ac_status" >&5 + echo "$as_me:17901: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:17903: \"$ac_try\"") >&5 + { (eval echo "$as_me:17904: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:17906: \$? = $ac_status" >&5 + echo "$as_me:17907: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_ncurses_header=$cf_header; break else @@ -17914,11 +17915,11 @@ rm -f conftest.$ac_objext conftest.$ac_ext done fi -echo "$as_me:17917: result: $cf_cv_ncurses_header" >&5 +echo "$as_me:17918: 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:17921: error: No curses header-files found" >&5 + { { echo "$as_me:17922: error: No curses header-files found" >&5 echo "$as_me: error: No curses header-files found" >&2;} { (exit 1); exit 1; }; } fi @@ -17928,23 +17929,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:17931: checking for $ac_header" >&5 +echo "$as_me:17932: 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 17937 "configure" +#line 17938 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:17941: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:17942: \"$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:17947: \$? = $ac_status" >&5 + echo "$as_me:17948: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -17963,7 +17964,7 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:17966: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:17967: 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 @@ -18016,7 +18017,7 @@ if test -n "$cf_cv_curses_dir/include $cf_cv_curses_dir/include/$cf_ncuhdr_root" cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 18019 "configure" +#line 18020 "configure" #include "confdefs.h" #include <stdio.h> int @@ -18028,16 +18029,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:18031: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:18032: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:18034: \$? = $ac_status" >&5 + echo "$as_me:18035: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:18037: \"$ac_try\"") >&5 + { (eval echo "$as_me:18038: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:18040: \$? = $ac_status" >&5 + echo "$as_me:18041: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -18054,7 +18055,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}:18057: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me-configure}:18058: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -18071,7 +18072,7 @@ fi } -echo "$as_me:18074: checking for $cf_ncuhdr_root header in include-path" >&5 +echo "$as_me:18075: 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 @@ -18083,7 +18084,7 @@ else do cat >conftest.$ac_ext <<_ACEOF -#line 18086 "configure" +#line 18087 "configure" #include "confdefs.h" #include <$cf_header> @@ -18107,16 +18108,16 @@ printf("old\n"); } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:18110: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:18111: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:18113: \$? = $ac_status" >&5 + echo "$as_me:18114: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:18116: \"$ac_try\"") >&5 + { (eval echo "$as_me:18117: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:18119: \$? = $ac_status" >&5 + echo "$as_me:18120: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_ncurses_h=$cf_header @@ -18131,14 +18132,14 @@ rm -f conftest.$ac_objext conftest.$ac_ext done fi -echo "$as_me:18134: result: $cf_cv_ncurses_h" >&5 +echo "$as_me:18135: 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:18141: checking for $cf_ncuhdr_root include-path" >&5 +echo "$as_me:18142: 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 @@ -18278,7 +18279,7 @@ if test -n "$cf_incdir" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 18281 "configure" +#line 18282 "configure" #include "confdefs.h" #include <stdio.h> int @@ -18290,16 +18291,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:18293: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:18294: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:18296: \$? = $ac_status" >&5 + echo "$as_me:18297: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:18299: \"$ac_try\"") >&5 + { (eval echo "$as_me:18300: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:18302: \$? = $ac_status" >&5 + echo "$as_me:18303: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -18316,7 +18317,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}:18319: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me-configure}:18320: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -18337,7 +18338,7 @@ fi do cat >conftest.$ac_ext <<_ACEOF -#line 18340 "configure" +#line 18341 "configure" #include "confdefs.h" #include <$cf_header> @@ -18361,16 +18362,16 @@ printf("old\n"); } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:18364: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:18365: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:18367: \$? = $ac_status" >&5 + echo "$as_me:18368: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:18370: \"$ac_try\"") >&5 + { (eval echo "$as_me:18371: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:18373: \$? = $ac_status" >&5 + echo "$as_me:18374: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_ncurses_h2=$cf_header @@ -18391,12 +18392,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:18394: error: not found" >&5 + test "$cf_cv_ncurses_h2" = no && { { echo "$as_me:18395: error: not found" >&5 echo "$as_me: error: not found" >&2;} { (exit 1); exit 1; }; } fi -echo "$as_me:18399: result: $cf_cv_ncurses_h2" >&5 +echo "$as_me:18400: 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%/[^/]*$%%'` @@ -18429,7 +18430,7 @@ if test -n "$cf_1st_incdir" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 18432 "configure" +#line 18433 "configure" #include "confdefs.h" #include <stdio.h> int @@ -18441,16 +18442,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:18444: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:18445: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:18447: \$? = $ac_status" >&5 + echo "$as_me:18448: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:18450: \"$ac_try\"") >&5 + { (eval echo "$as_me:18451: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:18453: \$? = $ac_status" >&5 + echo "$as_me:18454: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -18467,7 +18468,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}:18470: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me-configure}:18471: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -18510,7 +18511,7 @@ EOF ;; esac -echo "$as_me:18513: checking for terminfo header" >&5 +echo "$as_me:18514: 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 @@ -18528,7 +18529,7 @@ esac for cf_test in $cf_term_header "ncurses/term.h" "ncursesw/term.h" do cat >conftest.$ac_ext <<_ACEOF -#line 18531 "configure" +#line 18532 "configure" #include "confdefs.h" #include <stdio.h> #include <${cf_cv_ncurses_header-curses.h}> @@ -18543,16 +18544,16 @@ int x = auto_left_margin } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:18546: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:18547: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:18549: \$? = $ac_status" >&5 + echo "$as_me:18550: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:18552: \"$ac_try\"") >&5 + { (eval echo "$as_me:18553: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:18555: \$? = $ac_status" >&5 + echo "$as_me:18556: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_term_header="$cf_test" @@ -18568,7 +18569,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext done fi -echo "$as_me:18571: result: $cf_cv_term_header" >&5 +echo "$as_me:18572: result: $cf_cv_term_header" >&5 echo "${ECHO_T}$cf_cv_term_header" >&6 # Set definitions to allow ifdef'ing to accommodate subdirectories @@ -18602,7 +18603,7 @@ cat >>confdefs.h <<\EOF #define NCURSES 1 EOF -echo "$as_me:18605: checking for ncurses version" >&5 +echo "$as_me:18606: 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 @@ -18628,10 +18629,10 @@ Autoconf "old" #endif EOF cf_try="$ac_cpp conftest.$ac_ext 2>&5 | grep '^Autoconf ' >conftest.out" - { (eval echo "$as_me:18631: \"$cf_try\"") >&5 + { (eval echo "$as_me:18632: \"$cf_try\"") >&5 (eval $cf_try) 2>&5 ac_status=$? - echo "$as_me:18634: \$? = $ac_status" >&5 + echo "$as_me:18635: \$? = $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%".*%%'` @@ -18641,7 +18642,7 @@ EOF else cat >conftest.$ac_ext <<_ACEOF -#line 18644 "configure" +#line 18645 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header-curses.h}> @@ -18666,15 +18667,15 @@ int main() } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:18669: \"$ac_link\"") >&5 +if { (eval echo "$as_me:18670: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:18672: \$? = $ac_status" >&5 + echo "$as_me:18673: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:18674: \"$ac_try\"") >&5 + { (eval echo "$as_me:18675: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:18677: \$? = $ac_status" >&5 + echo "$as_me:18678: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_ncurses_version=`cat $cf_tempfile` @@ -18688,7 +18689,7 @@ fi rm -f $cf_tempfile fi -echo "$as_me:18691: result: $cf_cv_ncurses_version" >&5 +echo "$as_me:18692: result: $cf_cv_ncurses_version" >&5 echo "${ECHO_T}$cf_cv_ncurses_version" >&6 test "$cf_cv_ncurses_version" = no || cat >>confdefs.h <<\EOF #define NCURSES 1 @@ -18700,7 +18701,7 @@ cf_nculib_root=ncurses # to link gpm. cf_ncurses_LIBS="" cf_ncurses_SAVE="$LIBS" -echo "$as_me:18703: checking for Gpm_Open in -lgpm" >&5 +echo "$as_me:18704: 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 @@ -18708,7 +18709,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lgpm $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 18711 "configure" +#line 18712 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -18727,16 +18728,16 @@ Gpm_Open (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:18730: \"$ac_link\"") >&5 +if { (eval echo "$as_me:18731: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:18733: \$? = $ac_status" >&5 + echo "$as_me:18734: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:18736: \"$ac_try\"") >&5 + { (eval echo "$as_me:18737: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:18739: \$? = $ac_status" >&5 + echo "$as_me:18740: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_gpm_Gpm_Open=yes else @@ -18747,10 +18748,10 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:18750: result: $ac_cv_lib_gpm_Gpm_Open" >&5 +echo "$as_me:18751: 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:18753: checking for initscr in -lgpm" >&5 + echo "$as_me:18754: 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 @@ -18758,7 +18759,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lgpm $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 18761 "configure" +#line 18762 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -18777,16 +18778,16 @@ initscr (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:18780: \"$ac_link\"") >&5 +if { (eval echo "$as_me:18781: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:18783: \$? = $ac_status" >&5 + echo "$as_me:18784: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:18786: \"$ac_try\"") >&5 + { (eval echo "$as_me:18787: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:18789: \$? = $ac_status" >&5 + echo "$as_me:18790: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_gpm_initscr=yes else @@ -18797,7 +18798,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:18800: result: $ac_cv_lib_gpm_initscr" >&5 +echo "$as_me:18801: 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" @@ -18812,7 +18813,7 @@ freebsd*) # This is only necessary if you are linking against an obsolete # version of ncurses (but it should do no harm, since it's static). if test "$cf_nculib_root" = ncurses ; then - echo "$as_me:18815: checking for tgoto in -lmytinfo" >&5 + echo "$as_me:18816: 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 @@ -18820,7 +18821,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lmytinfo $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 18823 "configure" +#line 18824 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -18839,16 +18840,16 @@ tgoto (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:18842: \"$ac_link\"") >&5 +if { (eval echo "$as_me:18843: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:18845: \$? = $ac_status" >&5 + echo "$as_me:18846: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:18848: \"$ac_try\"") >&5 + { (eval echo "$as_me:18849: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:18851: \$? = $ac_status" >&5 + echo "$as_me:18852: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_mytinfo_tgoto=yes else @@ -18859,7 +18860,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:18862: result: $ac_cv_lib_mytinfo_tgoto" >&5 +echo "$as_me:18863: 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" @@ -18893,7 +18894,7 @@ if test -n "$cf_cv_curses_dir/lib" ; then if test "$cf_have_libdir" = no ; then test -n "$verbose" && echo " adding $cf_add_libdir to library-path" 1>&6 -echo "${as_me-configure}:18896: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me-configure}:18897: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -18906,13 +18907,13 @@ else eval 'cf_cv_have_lib_'$cf_nculib_root'=no' cf_libdir="" - echo "$as_me:18909: checking for initscr" >&5 + echo "$as_me:18910: 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 18915 "configure" +#line 18916 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char initscr (); below. */ @@ -18943,16 +18944,16 @@ f = initscr; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:18946: \"$ac_link\"") >&5 +if { (eval echo "$as_me:18947: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:18949: \$? = $ac_status" >&5 + echo "$as_me:18950: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:18952: \"$ac_try\"") >&5 + { (eval echo "$as_me:18953: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:18955: \$? = $ac_status" >&5 + echo "$as_me:18956: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_initscr=yes else @@ -18962,18 +18963,18 @@ ac_cv_func_initscr=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:18965: result: $ac_cv_func_initscr" >&5 +echo "$as_me:18966: 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:18972: checking for initscr in -l$cf_nculib_root" >&5 + echo "$as_me:18973: 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 18976 "configure" +#line 18977 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header-curses.h}> int @@ -18985,25 +18986,25 @@ initscr() } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:18988: \"$ac_link\"") >&5 +if { (eval echo "$as_me:18989: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:18991: \$? = $ac_status" >&5 + echo "$as_me:18992: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:18994: \"$ac_try\"") >&5 + { (eval echo "$as_me:18995: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:18997: \$? = $ac_status" >&5 + echo "$as_me:18998: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:18999: result: yes" >&5 + echo "$as_me:19000: 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:19006: result: no" >&5 +echo "$as_me:19007: result: no" >&5 echo "${ECHO_T}no" >&6 cf_search= @@ -19093,11 +19094,11 @@ cf_search="$cf_library_path_list $cf_search" for cf_libdir in $cf_search do - echo "$as_me:19096: checking for -l$cf_nculib_root in $cf_libdir" >&5 + echo "$as_me:19097: 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 19100 "configure" +#line 19101 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header-curses.h}> int @@ -19109,25 +19110,25 @@ initscr() } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:19112: \"$ac_link\"") >&5 +if { (eval echo "$as_me:19113: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:19115: \$? = $ac_status" >&5 + echo "$as_me:19116: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:19118: \"$ac_try\"") >&5 + { (eval echo "$as_me:19119: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:19121: \$? = $ac_status" >&5 + echo "$as_me:19122: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:19123: result: yes" >&5 + echo "$as_me:19124: 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:19130: result: no" >&5 +echo "$as_me:19131: result: no" >&5 echo "${ECHO_T}no" >&6 LIBS="$cf_save_LIBS" fi @@ -19142,7 +19143,7 @@ fi eval 'cf_found_library=$cf_cv_have_lib_'$cf_nculib_root if test $cf_found_library = no ; then - { { echo "$as_me:19145: error: Cannot link $cf_nculib_root library" >&5 + { { echo "$as_me:19146: error: Cannot link $cf_nculib_root library" >&5 echo "$as_me: error: Cannot link $cf_nculib_root library" >&2;} { (exit 1); exit 1; }; } fi @@ -19150,7 +19151,7 @@ fi fi if test -n "$cf_ncurses_LIBS" ; then - echo "$as_me:19153: checking if we can link $cf_nculib_root without $cf_ncurses_LIBS" >&5 + echo "$as_me:19154: 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 @@ -19160,7 +19161,7 @@ echo $ECHO_N "checking if we can link $cf_nculib_root without $cf_ncurses_LIBS.. fi done cat >conftest.$ac_ext <<_ACEOF -#line 19163 "configure" +#line 19164 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header-curses.h}> int @@ -19172,23 +19173,23 @@ initscr(); mousemask(0,0); tgoto((char *)0, 0, 0); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:19175: \"$ac_link\"") >&5 +if { (eval echo "$as_me:19176: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:19178: \$? = $ac_status" >&5 + echo "$as_me:19179: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:19181: \"$ac_try\"") >&5 + { (eval echo "$as_me:19182: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:19184: \$? = $ac_status" >&5 + echo "$as_me:19185: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:19186: result: yes" >&5 + echo "$as_me:19187: result: yes" >&5 echo "${ECHO_T}yes" >&6 else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 -echo "$as_me:19191: result: no" >&5 +echo "$as_me:19192: result: no" >&5 echo "${ECHO_T}no" >&6 LIBS="$cf_ncurses_SAVE" fi @@ -19206,7 +19207,7 @@ fi ;; ncursesw) -echo "$as_me:19209: checking for multibyte character support" >&5 +echo "$as_me:19210: checking for multibyte character support" >&5 echo $ECHO_N "checking for multibyte character support... $ECHO_C" >&6 if test "${cf_cv_utf8_lib+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -19214,7 +19215,7 @@ else cf_save_LIBS="$LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 19217 "configure" +#line 19218 "configure" #include "confdefs.h" #include <stdlib.h> @@ -19227,16 +19228,16 @@ putwc(0,0); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:19230: \"$ac_link\"") >&5 +if { (eval echo "$as_me:19231: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:19233: \$? = $ac_status" >&5 + echo "$as_me:19234: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:19236: \"$ac_try\"") >&5 + { (eval echo "$as_me:19237: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:19239: \$? = $ac_status" >&5 + echo "$as_me:19240: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_utf8_lib=yes else @@ -19248,12 +19249,12 @@ cat conftest.$ac_ext >&5 cf_cv_header_path_utf8= cf_cv_library_path_utf8= -echo "${as_me-configure}:19251: testing Starting FIND_LINKAGE(utf8,) ..." 1>&5 +echo "${as_me-configure}:19252: testing Starting FIND_LINKAGE(utf8,) ..." 1>&5 cf_save_LIBS="$LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 19256 "configure" +#line 19257 "configure" #include "confdefs.h" #include <libutf8.h> @@ -19266,16 +19267,16 @@ putwc(0,0); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:19269: \"$ac_link\"") >&5 +if { (eval echo "$as_me:19270: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:19272: \$? = $ac_status" >&5 + echo "$as_me:19273: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:19275: \"$ac_try\"") >&5 + { (eval echo "$as_me:19276: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:19278: \$? = $ac_status" >&5 + echo "$as_me:19279: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_find_linkage_utf8=yes @@ -19289,7 +19290,7 @@ cat conftest.$ac_ext >&5 LIBS="-lutf8 $cf_save_LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 19292 "configure" +#line 19293 "configure" #include "confdefs.h" #include <libutf8.h> @@ -19302,16 +19303,16 @@ putwc(0,0); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:19305: \"$ac_link\"") >&5 +if { (eval echo "$as_me:19306: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:19308: \$? = $ac_status" >&5 + echo "$as_me:19309: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:19311: \"$ac_try\"") >&5 + { (eval echo "$as_me:19312: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:19314: \$? = $ac_status" >&5 + echo "$as_me:19315: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_find_linkage_utf8=yes @@ -19328,9 +19329,9 @@ cat conftest.$ac_ext >&5 test -n "$verbose" && echo " find linkage for utf8 library" 1>&6 -echo "${as_me-configure}:19331: testing find linkage for utf8 library ..." 1>&5 +echo "${as_me-configure}:19332: testing find linkage for utf8 library ..." 1>&5 -echo "${as_me-configure}:19333: testing Searching for headers in FIND_LINKAGE(utf8,) ..." 1>&5 +echo "${as_me-configure}:19334: testing Searching for headers in FIND_LINKAGE(utf8,) ..." 1>&5 cf_save_CPPFLAGS="$CPPFLAGS" cf_test_CPPFLAGS="$CPPFLAGS" @@ -19443,11 +19444,11 @@ cf_search="$cf_search $cf_header_path_list" if test -d $cf_cv_header_path_utf8 ; then test -n "$verbose" && echo " ... testing $cf_cv_header_path_utf8" 1>&6 -echo "${as_me-configure}:19446: testing ... testing $cf_cv_header_path_utf8 ..." 1>&5 +echo "${as_me-configure}:19447: testing ... testing $cf_cv_header_path_utf8 ..." 1>&5 CPPFLAGS="$cf_save_CPPFLAGS -I$cf_cv_header_path_utf8" cat >conftest.$ac_ext <<_ACEOF -#line 19450 "configure" +#line 19451 "configure" #include "confdefs.h" #include <libutf8.h> @@ -19460,21 +19461,21 @@ putwc(0,0); } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:19463: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:19464: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:19466: \$? = $ac_status" >&5 + echo "$as_me:19467: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:19469: \"$ac_try\"") >&5 + { (eval echo "$as_me:19470: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:19472: \$? = $ac_status" >&5 + echo "$as_me:19473: \$? = $ac_status" >&5 (exit $ac_status); }; }; then test -n "$verbose" && echo " ... found utf8 headers in $cf_cv_header_path_utf8" 1>&6 -echo "${as_me-configure}:19477: testing ... found utf8 headers in $cf_cv_header_path_utf8 ..." 1>&5 +echo "${as_me-configure}:19478: testing ... found utf8 headers in $cf_cv_header_path_utf8 ..." 1>&5 cf_cv_find_linkage_utf8=maybe cf_test_CPPFLAGS="$CPPFLAGS" @@ -19492,7 +19493,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "$cf_cv_find_linkage_utf8" = maybe ; then -echo "${as_me-configure}:19495: testing Searching for utf8 library in FIND_LINKAGE(utf8,) ..." 1>&5 +echo "${as_me-configure}:19496: testing Searching for utf8 library in FIND_LINKAGE(utf8,) ..." 1>&5 cf_save_LIBS="$LIBS" cf_save_LDFLAGS="$LDFLAGS" @@ -19589,13 +19590,13 @@ cf_search="$cf_library_path_list $cf_search" if test -d $cf_cv_library_path_utf8 ; then test -n "$verbose" && echo " ... testing $cf_cv_library_path_utf8" 1>&6 -echo "${as_me-configure}:19592: testing ... testing $cf_cv_library_path_utf8 ..." 1>&5 +echo "${as_me-configure}:19593: testing ... testing $cf_cv_library_path_utf8 ..." 1>&5 CPPFLAGS="$cf_test_CPPFLAGS" LIBS="-lutf8 $cf_save_LIBS" LDFLAGS="$cf_save_LDFLAGS -L$cf_cv_library_path_utf8" cat >conftest.$ac_ext <<_ACEOF -#line 19598 "configure" +#line 19599 "configure" #include "confdefs.h" #include <libutf8.h> @@ -19608,21 +19609,21 @@ putwc(0,0); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:19611: \"$ac_link\"") >&5 +if { (eval echo "$as_me:19612: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:19614: \$? = $ac_status" >&5 + echo "$as_me:19615: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:19617: \"$ac_try\"") >&5 + { (eval echo "$as_me:19618: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:19620: \$? = $ac_status" >&5 + echo "$as_me:19621: \$? = $ac_status" >&5 (exit $ac_status); }; }; then test -n "$verbose" && echo " ... found utf8 library in $cf_cv_library_path_utf8" 1>&6 -echo "${as_me-configure}:19625: testing ... found utf8 library in $cf_cv_library_path_utf8 ..." 1>&5 +echo "${as_me-configure}:19626: testing ... found utf8 library in $cf_cv_library_path_utf8 ..." 1>&5 cf_cv_find_linkage_utf8=yes cf_cv_library_file_utf8="-lutf8" @@ -19664,7 +19665,7 @@ fi fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:19667: result: $cf_cv_utf8_lib" >&5 +echo "$as_me:19668: result: $cf_cv_utf8_lib" >&5 echo "${ECHO_T}$cf_cv_utf8_lib" >&6 # HAVE_LIBUTF8_H is used by ncurses if curses.h is shared between @@ -19698,7 +19699,7 @@ if test -n "$cf_cv_header_path_utf8" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 19701 "configure" +#line 19702 "configure" #include "confdefs.h" #include <stdio.h> int @@ -19710,16 +19711,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:19713: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:19714: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:19716: \$? = $ac_status" >&5 + echo "$as_me:19717: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:19719: \"$ac_try\"") >&5 + { (eval echo "$as_me:19720: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:19722: \$? = $ac_status" >&5 + echo "$as_me:19723: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -19736,7 +19737,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}:19739: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me-configure}:19740: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -19770,7 +19771,7 @@ if test -n "$cf_cv_library_path_utf8" ; then if test "$cf_have_libdir" = no ; then test -n "$verbose" && echo " adding $cf_add_libdir to library-path" 1>&6 -echo "${as_me-configure}:19773: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me-configure}:19774: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -19788,7 +19789,7 @@ for ac_prog in ${cf_ncuconfig_root}6-config ${cf_ncuconfig_root}5-config 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:19791: checking for $ac_word" >&5 +echo "$as_me:19792: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_path_NCURSES_CONFIG+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -19805,7 +19806,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_NCURSES_CONFIG="$ac_dir/$ac_word" - echo "$as_me:19808: found $ac_dir/$ac_word" >&5 + echo "$as_me:19809: found $ac_dir/$ac_word" >&5 break fi done @@ -19816,10 +19817,10 @@ fi NCURSES_CONFIG=$ac_cv_path_NCURSES_CONFIG if test -n "$NCURSES_CONFIG"; then - echo "$as_me:19819: result: $NCURSES_CONFIG" >&5 + echo "$as_me:19820: result: $NCURSES_CONFIG" >&5 echo "${ECHO_T}$NCURSES_CONFIG" >&6 else - echo "$as_me:19822: result: no" >&5 + echo "$as_me:19823: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -19834,7 +19835,7 @@ LIBS="`$NCURSES_CONFIG --libs` $LIBS" # even with config script, some packages use no-override for curses.h -echo "$as_me:19837: checking if we have identified curses headers" >&5 +echo "$as_me:19838: 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 @@ -19848,7 +19849,7 @@ for cf_header in \ ncurses.h do cat >conftest.$ac_ext <<_ACEOF -#line 19851 "configure" +#line 19852 "configure" #include "confdefs.h" #include <${cf_header}> int @@ -19860,16 +19861,16 @@ initscr(); tgoto("?", 0,0) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:19863: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:19864: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:19866: \$? = $ac_status" >&5 + echo "$as_me:19867: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:19869: \"$ac_try\"") >&5 + { (eval echo "$as_me:19870: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:19872: \$? = $ac_status" >&5 + echo "$as_me:19873: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_ncurses_header=$cf_header; break else @@ -19880,11 +19881,11 @@ rm -f conftest.$ac_objext conftest.$ac_ext done fi -echo "$as_me:19883: result: $cf_cv_ncurses_header" >&5 +echo "$as_me:19884: 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:19887: error: No curses header-files found" >&5 + { { echo "$as_me:19888: error: No curses header-files found" >&5 echo "$as_me: error: No curses header-files found" >&2;} { (exit 1); exit 1; }; } fi @@ -19894,23 +19895,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:19897: checking for $ac_header" >&5 +echo "$as_me:19898: 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 19903 "configure" +#line 19904 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:19907: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:19908: \"$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:19913: \$? = $ac_status" >&5 + echo "$as_me:19914: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -19929,7 +19930,7 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:19932: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:19933: 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 @@ -19982,7 +19983,7 @@ if test -n "$cf_cv_curses_dir/include $cf_cv_curses_dir/include/$cf_ncuhdr_root" cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 19985 "configure" +#line 19986 "configure" #include "confdefs.h" #include <stdio.h> int @@ -19994,16 +19995,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:19997: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:19998: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:20000: \$? = $ac_status" >&5 + echo "$as_me:20001: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:20003: \"$ac_try\"") >&5 + { (eval echo "$as_me:20004: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:20006: \$? = $ac_status" >&5 + echo "$as_me:20007: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -20020,7 +20021,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "$cf_have_incdir" = no ; then test -n "$verbose" && echo " adding $cf_add_incdir to include-path" 1>&6 -echo "${as_me-configure}:20023: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me-configure}:20024: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -20037,7 +20038,7 @@ fi } -echo "$as_me:20040: checking for $cf_ncuhdr_root header in include-path" >&5 +echo "$as_me:20041: 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 @@ -20049,7 +20050,7 @@ else do cat >conftest.$ac_ext <<_ACEOF -#line 20052 "configure" +#line 20053 "configure" #include "confdefs.h" #define _XOPEN_SOURCE_EXTENDED @@ -20081,16 +20082,16 @@ printf("old\n"); } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:20084: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:20085: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:20087: \$? = $ac_status" >&5 + echo "$as_me:20088: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:20090: \"$ac_try\"") >&5 + { (eval echo "$as_me:20091: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:20093: \$? = $ac_status" >&5 + echo "$as_me:20094: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_ncurses_h=$cf_header @@ -20105,14 +20106,14 @@ rm -f conftest.$ac_objext conftest.$ac_ext done fi -echo "$as_me:20108: result: $cf_cv_ncurses_h" >&5 +echo "$as_me:20109: 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:20115: checking for $cf_ncuhdr_root include-path" >&5 +echo "$as_me:20116: 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 @@ -20252,7 +20253,7 @@ if test -n "$cf_incdir" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 20255 "configure" +#line 20256 "configure" #include "confdefs.h" #include <stdio.h> int @@ -20264,16 +20265,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:20267: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:20268: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:20270: \$? = $ac_status" >&5 + echo "$as_me:20271: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:20273: \"$ac_try\"") >&5 + { (eval echo "$as_me:20274: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:20276: \$? = $ac_status" >&5 + echo "$as_me:20277: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -20290,7 +20291,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}:20293: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me-configure}:20294: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -20311,7 +20312,7 @@ fi do cat >conftest.$ac_ext <<_ACEOF -#line 20314 "configure" +#line 20315 "configure" #include "confdefs.h" #include <$cf_header> @@ -20335,16 +20336,16 @@ printf("old\n"); } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:20338: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:20339: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:20341: \$? = $ac_status" >&5 + echo "$as_me:20342: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:20344: \"$ac_try\"") >&5 + { (eval echo "$as_me:20345: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:20347: \$? = $ac_status" >&5 + echo "$as_me:20348: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_ncurses_h2=$cf_header @@ -20365,12 +20366,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:20368: error: not found" >&5 + test "$cf_cv_ncurses_h2" = no && { { echo "$as_me:20369: error: not found" >&5 echo "$as_me: error: not found" >&2;} { (exit 1); exit 1; }; } fi -echo "$as_me:20373: result: $cf_cv_ncurses_h2" >&5 +echo "$as_me:20374: 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%/[^/]*$%%'` @@ -20403,7 +20404,7 @@ if test -n "$cf_1st_incdir" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 20406 "configure" +#line 20407 "configure" #include "confdefs.h" #include <stdio.h> int @@ -20415,16 +20416,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:20418: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:20419: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:20421: \$? = $ac_status" >&5 + echo "$as_me:20422: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:20424: \"$ac_try\"") >&5 + { (eval echo "$as_me:20425: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:20427: \$? = $ac_status" >&5 + echo "$as_me:20428: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -20441,7 +20442,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}:20444: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me-configure}:20445: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -20484,7 +20485,7 @@ EOF ;; esac -echo "$as_me:20487: checking for terminfo header" >&5 +echo "$as_me:20488: 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 @@ -20502,7 +20503,7 @@ esac for cf_test in $cf_term_header "ncurses/term.h" "ncursesw/term.h" do cat >conftest.$ac_ext <<_ACEOF -#line 20505 "configure" +#line 20506 "configure" #include "confdefs.h" #include <stdio.h> #include <${cf_cv_ncurses_header-curses.h}> @@ -20517,16 +20518,16 @@ int x = auto_left_margin } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:20520: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:20521: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:20523: \$? = $ac_status" >&5 + echo "$as_me:20524: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:20526: \"$ac_try\"") >&5 + { (eval echo "$as_me:20527: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:20529: \$? = $ac_status" >&5 + echo "$as_me:20530: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_term_header="$cf_test" @@ -20542,7 +20543,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext done fi -echo "$as_me:20545: result: $cf_cv_term_header" >&5 +echo "$as_me:20546: result: $cf_cv_term_header" >&5 echo "${ECHO_T}$cf_cv_term_header" >&6 # Set definitions to allow ifdef'ing to accommodate subdirectories @@ -20576,7 +20577,7 @@ cat >>confdefs.h <<\EOF #define NCURSES 1 EOF -echo "$as_me:20579: checking for ncurses version" >&5 +echo "$as_me:20580: 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 @@ -20602,10 +20603,10 @@ Autoconf "old" #endif EOF cf_try="$ac_cpp conftest.$ac_ext 2>&5 | grep '^Autoconf ' >conftest.out" - { (eval echo "$as_me:20605: \"$cf_try\"") >&5 + { (eval echo "$as_me:20606: \"$cf_try\"") >&5 (eval $cf_try) 2>&5 ac_status=$? - echo "$as_me:20608: \$? = $ac_status" >&5 + echo "$as_me:20609: \$? = $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%".*%%'` @@ -20615,7 +20616,7 @@ EOF else cat >conftest.$ac_ext <<_ACEOF -#line 20618 "configure" +#line 20619 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header-curses.h}> @@ -20640,15 +20641,15 @@ int main() } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:20643: \"$ac_link\"") >&5 +if { (eval echo "$as_me:20644: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:20646: \$? = $ac_status" >&5 + echo "$as_me:20647: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:20648: \"$ac_try\"") >&5 + { (eval echo "$as_me:20649: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:20651: \$? = $ac_status" >&5 + echo "$as_me:20652: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_ncurses_version=`cat $cf_tempfile` @@ -20662,7 +20663,7 @@ fi rm -f $cf_tempfile fi -echo "$as_me:20665: result: $cf_cv_ncurses_version" >&5 +echo "$as_me:20666: result: $cf_cv_ncurses_version" >&5 echo "${ECHO_T}$cf_cv_ncurses_version" >&6 test "$cf_cv_ncurses_version" = no || cat >>confdefs.h <<\EOF #define NCURSES 1 @@ -20674,7 +20675,7 @@ cf_nculib_root=ncursesw # to link gpm. cf_ncurses_LIBS="" cf_ncurses_SAVE="$LIBS" -echo "$as_me:20677: checking for Gpm_Open in -lgpm" >&5 +echo "$as_me:20678: 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 @@ -20682,7 +20683,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lgpm $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 20685 "configure" +#line 20686 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -20701,16 +20702,16 @@ Gpm_Open (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:20704: \"$ac_link\"") >&5 +if { (eval echo "$as_me:20705: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:20707: \$? = $ac_status" >&5 + echo "$as_me:20708: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:20710: \"$ac_try\"") >&5 + { (eval echo "$as_me:20711: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:20713: \$? = $ac_status" >&5 + echo "$as_me:20714: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_gpm_Gpm_Open=yes else @@ -20721,10 +20722,10 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:20724: result: $ac_cv_lib_gpm_Gpm_Open" >&5 +echo "$as_me:20725: 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:20727: checking for initscr in -lgpm" >&5 + echo "$as_me:20728: 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 @@ -20732,7 +20733,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lgpm $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 20735 "configure" +#line 20736 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -20751,16 +20752,16 @@ initscr (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:20754: \"$ac_link\"") >&5 +if { (eval echo "$as_me:20755: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:20757: \$? = $ac_status" >&5 + echo "$as_me:20758: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:20760: \"$ac_try\"") >&5 + { (eval echo "$as_me:20761: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:20763: \$? = $ac_status" >&5 + echo "$as_me:20764: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_gpm_initscr=yes else @@ -20771,7 +20772,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:20774: result: $ac_cv_lib_gpm_initscr" >&5 +echo "$as_me:20775: 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" @@ -20786,7 +20787,7 @@ freebsd*) # This is only necessary if you are linking against an obsolete # version of ncurses (but it should do no harm, since it's static). if test "$cf_nculib_root" = ncurses ; then - echo "$as_me:20789: checking for tgoto in -lmytinfo" >&5 + echo "$as_me:20790: 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 @@ -20794,7 +20795,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lmytinfo $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 20797 "configure" +#line 20798 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -20813,16 +20814,16 @@ tgoto (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:20816: \"$ac_link\"") >&5 +if { (eval echo "$as_me:20817: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:20819: \$? = $ac_status" >&5 + echo "$as_me:20820: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:20822: \"$ac_try\"") >&5 + { (eval echo "$as_me:20823: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:20825: \$? = $ac_status" >&5 + echo "$as_me:20826: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_mytinfo_tgoto=yes else @@ -20833,7 +20834,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:20836: result: $ac_cv_lib_mytinfo_tgoto" >&5 +echo "$as_me:20837: 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" @@ -20867,7 +20868,7 @@ if test -n "$cf_cv_curses_dir/lib" ; then if test "$cf_have_libdir" = no ; then test -n "$verbose" && echo " adding $cf_add_libdir to library-path" 1>&6 -echo "${as_me-configure}:20870: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me-configure}:20871: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -20880,13 +20881,13 @@ else eval 'cf_cv_have_lib_'$cf_nculib_root'=no' cf_libdir="" - echo "$as_me:20883: checking for initscr" >&5 + echo "$as_me:20884: 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 20889 "configure" +#line 20890 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char initscr (); below. */ @@ -20917,16 +20918,16 @@ f = initscr; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:20920: \"$ac_link\"") >&5 +if { (eval echo "$as_me:20921: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:20923: \$? = $ac_status" >&5 + echo "$as_me:20924: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:20926: \"$ac_try\"") >&5 + { (eval echo "$as_me:20927: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:20929: \$? = $ac_status" >&5 + echo "$as_me:20930: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_initscr=yes else @@ -20936,18 +20937,18 @@ ac_cv_func_initscr=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:20939: result: $ac_cv_func_initscr" >&5 +echo "$as_me:20940: 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:20946: checking for initscr in -l$cf_nculib_root" >&5 + echo "$as_me:20947: 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 20950 "configure" +#line 20951 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header-curses.h}> int @@ -20959,25 +20960,25 @@ initscr() } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:20962: \"$ac_link\"") >&5 +if { (eval echo "$as_me:20963: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:20965: \$? = $ac_status" >&5 + echo "$as_me:20966: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:20968: \"$ac_try\"") >&5 + { (eval echo "$as_me:20969: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:20971: \$? = $ac_status" >&5 + echo "$as_me:20972: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:20973: result: yes" >&5 + echo "$as_me:20974: 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:20980: result: no" >&5 +echo "$as_me:20981: result: no" >&5 echo "${ECHO_T}no" >&6 cf_search= @@ -21067,11 +21068,11 @@ cf_search="$cf_library_path_list $cf_search" for cf_libdir in $cf_search do - echo "$as_me:21070: checking for -l$cf_nculib_root in $cf_libdir" >&5 + echo "$as_me:21071: 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 21074 "configure" +#line 21075 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header-curses.h}> int @@ -21083,25 +21084,25 @@ initscr() } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:21086: \"$ac_link\"") >&5 +if { (eval echo "$as_me:21087: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:21089: \$? = $ac_status" >&5 + echo "$as_me:21090: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:21092: \"$ac_try\"") >&5 + { (eval echo "$as_me:21093: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:21095: \$? = $ac_status" >&5 + echo "$as_me:21096: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:21097: result: yes" >&5 + echo "$as_me:21098: 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:21104: result: no" >&5 +echo "$as_me:21105: result: no" >&5 echo "${ECHO_T}no" >&6 LIBS="$cf_save_LIBS" fi @@ -21116,7 +21117,7 @@ fi eval 'cf_found_library=$cf_cv_have_lib_'$cf_nculib_root if test $cf_found_library = no ; then - { { echo "$as_me:21119: error: Cannot link $cf_nculib_root library" >&5 + { { echo "$as_me:21120: error: Cannot link $cf_nculib_root library" >&5 echo "$as_me: error: Cannot link $cf_nculib_root library" >&2;} { (exit 1); exit 1; }; } fi @@ -21124,7 +21125,7 @@ fi fi if test -n "$cf_ncurses_LIBS" ; then - echo "$as_me:21127: checking if we can link $cf_nculib_root without $cf_ncurses_LIBS" >&5 + echo "$as_me:21128: 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 @@ -21134,7 +21135,7 @@ echo $ECHO_N "checking if we can link $cf_nculib_root without $cf_ncurses_LIBS.. fi done cat >conftest.$ac_ext <<_ACEOF -#line 21137 "configure" +#line 21138 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header-curses.h}> int @@ -21146,23 +21147,23 @@ initscr(); mousemask(0,0); tgoto((char *)0, 0, 0); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:21149: \"$ac_link\"") >&5 +if { (eval echo "$as_me:21150: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:21152: \$? = $ac_status" >&5 + echo "$as_me:21153: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:21155: \"$ac_try\"") >&5 + { (eval echo "$as_me:21156: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:21158: \$? = $ac_status" >&5 + echo "$as_me:21159: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:21160: result: yes" >&5 + echo "$as_me:21161: result: yes" >&5 echo "${ECHO_T}yes" >&6 else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 -echo "$as_me:21165: result: no" >&5 +echo "$as_me:21166: result: no" >&5 echo "${ECHO_T}no" >&6 LIBS="$cf_ncurses_SAVE" fi @@ -21185,7 +21186,7 @@ pdcurses) ;; slang) -echo "$as_me:21188: checking for slang header file" >&5 +echo "$as_me:21189: 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 @@ -21193,7 +21194,7 @@ else cf_cv_slang_header=no cat >conftest.$ac_ext <<_ACEOF -#line 21196 "configure" +#line 21197 "configure" #include "confdefs.h" #include <slang.h> int @@ -21205,16 +21206,16 @@ printf("%s\n", SLANG_VERSION) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:21208: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:21209: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:21211: \$? = $ac_status" >&5 + echo "$as_me:21212: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:21214: \"$ac_try\"") >&5 + { (eval echo "$as_me:21215: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:21217: \$? = $ac_status" >&5 + echo "$as_me:21218: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_slang_header=predefined else @@ -21341,7 +21342,7 @@ cf_search="$cf_search $cf_header_path_list" fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:21344: result: $cf_cv_slang_header" >&5 +echo "$as_me:21345: result: $cf_cv_slang_header" >&5 echo "${ECHO_T}$cf_cv_slang_header" >&6 if test "x$cf_cv_slang_header" != xno @@ -21381,7 +21382,7 @@ if test -n "$cf_incdir" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 21384 "configure" +#line 21385 "configure" #include "confdefs.h" #include <stdio.h> int @@ -21393,16 +21394,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:21396: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:21397: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:21399: \$? = $ac_status" >&5 + echo "$as_me:21400: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:21402: \"$ac_try\"") >&5 + { (eval echo "$as_me:21403: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:21405: \$? = $ac_status" >&5 + echo "$as_me:21406: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -21419,7 +21420,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}:21422: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me-configure}:21423: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -21449,7 +21450,7 @@ else cf_cv_termlib=none cat >conftest.$ac_ext <<_ACEOF -#line 21452 "configure" +#line 21453 "configure" #include "confdefs.h" int @@ -21461,19 +21462,19 @@ char *x=(char*)tgoto("",0,0) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:21464: \"$ac_link\"") >&5 +if { (eval echo "$as_me:21465: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:21467: \$? = $ac_status" >&5 + echo "$as_me:21468: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:21470: \"$ac_try\"") >&5 + { (eval echo "$as_me:21471: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:21473: \$? = $ac_status" >&5 + echo "$as_me:21474: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cat >conftest.$ac_ext <<_ACEOF -#line 21476 "configure" +#line 21477 "configure" #include "confdefs.h" int @@ -21485,16 +21486,16 @@ int x=tigetstr("") } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:21488: \"$ac_link\"") >&5 +if { (eval echo "$as_me:21489: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:21491: \$? = $ac_status" >&5 + echo "$as_me:21492: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:21494: \"$ac_try\"") >&5 + { (eval echo "$as_me:21495: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:21497: \$? = $ac_status" >&5 + echo "$as_me:21498: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_termlib=terminfo else @@ -21505,7 +21506,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}:21508: testing using functions in predefined $cf_cv_termlib LIBS ..." 1>&5 +echo "${as_me-configure}:21509: testing using functions in predefined $cf_cv_termlib LIBS ..." 1>&5 else echo "$as_me: failed program was:" >&5 @@ -21520,10 +21521,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:21523: checking for $cf_func in -l$cf_lib" >&5 + echo "$as_me:21524: 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 21526 "configure" +#line 21527 "configure" #include "confdefs.h" int @@ -21535,16 +21536,16 @@ int x=$cf_func("") } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:21538: \"$ac_link\"") >&5 +if { (eval echo "$as_me:21539: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:21541: \$? = $ac_status" >&5 + echo "$as_me:21542: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:21544: \"$ac_try\"") >&5 + { (eval echo "$as_me:21545: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:21547: \$? = $ac_status" >&5 + echo "$as_me:21548: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_result=yes else @@ -21553,7 +21554,7 @@ cat conftest.$ac_ext >&5 cf_result=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext - echo "$as_me:21556: result: $cf_result" >&5 + echo "$as_me:21557: result: $cf_result" >&5 echo "${ECHO_T}$cf_result" >&6 if test "$cf_result" = yes ; then if test "$cf_func" = tigetstr ; then @@ -21570,7 +21571,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:21573: checking for initscr in -lcurses" >&5 + echo "$as_me:21574: 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 @@ -21578,7 +21579,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lcurses $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 21581 "configure" +#line 21582 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -21597,16 +21598,16 @@ initscr (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:21600: \"$ac_link\"") >&5 +if { (eval echo "$as_me:21601: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:21603: \$? = $ac_status" >&5 + echo "$as_me:21604: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:21606: \"$ac_try\"") >&5 + { (eval echo "$as_me:21607: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:21609: \$? = $ac_status" >&5 + echo "$as_me:21610: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_curses_initscr=yes else @@ -21617,13 +21618,13 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:21620: result: $ac_cv_lib_curses_initscr" >&5 +echo "$as_me:21621: result: $ac_cv_lib_curses_initscr" >&5 echo "${ECHO_T}$ac_cv_lib_curses_initscr" >&6 if test $ac_cv_lib_curses_initscr = yes; then LIBS="$LIBS -lcurses" cf_cv_termlib=termcap fi - echo "$as_me:21626: checking for tgoto in -ltermcap" >&5 + echo "$as_me:21627: 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 @@ -21631,7 +21632,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-ltermcap $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 21634 "configure" +#line 21635 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -21650,16 +21651,16 @@ tgoto (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:21653: \"$ac_link\"") >&5 +if { (eval echo "$as_me:21654: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:21656: \$? = $ac_status" >&5 + echo "$as_me:21657: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:21659: \"$ac_try\"") >&5 + { (eval echo "$as_me:21660: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:21662: \$? = $ac_status" >&5 + echo "$as_me:21663: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_termcap_tgoto=yes else @@ -21670,7 +21671,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:21673: result: $ac_cv_lib_termcap_tgoto" >&5 +echo "$as_me:21674: result: $ac_cv_lib_termcap_tgoto" >&5 echo "${ECHO_T}$ac_cv_lib_termcap_tgoto" >&6 if test $ac_cv_lib_termcap_tgoto = yes; then LIBS="$LIBS -ltermcap" cf_cv_termlib=termcap @@ -21681,20 +21682,20 @@ fi fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext if test "$cf_cv_termlib" = none; then - { echo "$as_me:21684: WARNING: Cannot find -ltermlib, -lcurses, or -ltermcap" >&5 + { echo "$as_me:21685: 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:21691: checking for acos" >&5 +echo "$as_me:21692: 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 21697 "configure" +#line 21698 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char acos (); below. */ @@ -21725,16 +21726,16 @@ f = acos; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:21728: \"$ac_link\"") >&5 +if { (eval echo "$as_me:21729: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:21731: \$? = $ac_status" >&5 + echo "$as_me:21732: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:21734: \"$ac_try\"") >&5 + { (eval echo "$as_me:21735: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:21737: \$? = $ac_status" >&5 + echo "$as_me:21738: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_acos=yes else @@ -21744,13 +21745,13 @@ ac_cv_func_acos=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:21747: result: $ac_cv_func_acos" >&5 +echo "$as_me:21748: 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:21753: checking for acos in -lm" >&5 +echo "$as_me:21754: 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 @@ -21758,7 +21759,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lm $LIBS $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 21761 "configure" +#line 21762 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -21777,16 +21778,16 @@ acos (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:21780: \"$ac_link\"") >&5 +if { (eval echo "$as_me:21781: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:21783: \$? = $ac_status" >&5 + echo "$as_me:21784: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:21786: \"$ac_try\"") >&5 + { (eval echo "$as_me:21787: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:21789: \$? = $ac_status" >&5 + echo "$as_me:21790: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_m_acos=yes else @@ -21797,7 +21798,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:21800: result: $ac_cv_lib_m_acos" >&5 +echo "$as_me:21801: 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 @@ -21823,13 +21824,13 @@ os2*) eval 'cf_cv_have_lib_'video'=no' cf_libdir="" - echo "$as_me:21826: checking for v_init" >&5 + echo "$as_me:21827: 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 21832 "configure" +#line 21833 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char v_init (); below. */ @@ -21860,16 +21861,16 @@ f = v_init; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:21863: \"$ac_link\"") >&5 +if { (eval echo "$as_me:21864: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:21866: \$? = $ac_status" >&5 + echo "$as_me:21867: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:21869: \"$ac_try\"") >&5 + { (eval echo "$as_me:21870: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:21872: \$? = $ac_status" >&5 + echo "$as_me:21873: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_v_init=yes else @@ -21879,18 +21880,18 @@ ac_cv_func_v_init=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:21882: result: $ac_cv_func_v_init" >&5 +echo "$as_me:21883: 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:21889: checking for v_init in -lvideo" >&5 + echo "$as_me:21890: 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 21893 "configure" +#line 21894 "configure" #include "confdefs.h" #include <sys/video.h> int @@ -21902,25 +21903,25 @@ v_init() } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:21905: \"$ac_link\"") >&5 +if { (eval echo "$as_me:21906: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:21908: \$? = $ac_status" >&5 + echo "$as_me:21909: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:21911: \"$ac_try\"") >&5 + { (eval echo "$as_me:21912: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:21914: \$? = $ac_status" >&5 + echo "$as_me:21915: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:21916: result: yes" >&5 + echo "$as_me:21917: 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:21923: result: no" >&5 +echo "$as_me:21924: result: no" >&5 echo "${ECHO_T}no" >&6 cf_search= @@ -22010,11 +22011,11 @@ cf_search="$cf_library_path_list $cf_search" for cf_libdir in $cf_search do - echo "$as_me:22013: checking for -lvideo in $cf_libdir" >&5 + echo "$as_me:22014: 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 22017 "configure" +#line 22018 "configure" #include "confdefs.h" #include <sys/video.h> int @@ -22026,25 +22027,25 @@ v_init() } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:22029: \"$ac_link\"") >&5 +if { (eval echo "$as_me:22030: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:22032: \$? = $ac_status" >&5 + echo "$as_me:22033: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:22035: \"$ac_try\"") >&5 + { (eval echo "$as_me:22036: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:22038: \$? = $ac_status" >&5 + echo "$as_me:22039: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:22040: result: yes" >&5 + echo "$as_me:22041: 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:22047: result: no" >&5 +echo "$as_me:22048: result: no" >&5 echo "${ECHO_T}no" >&6 LIBS="$cf_save_LIBS" fi @@ -22059,7 +22060,7 @@ fi eval 'cf_found_library=$cf_cv_have_lib_'video if test $cf_found_library = no ; then - { { echo "$as_me:22062: error: Cannot link video library" >&5 + { { echo "$as_me:22063: error: Cannot link video library" >&5 echo "$as_me: error: Cannot link video library" >&2;} { (exit 1); exit 1; }; } fi @@ -22069,13 +22070,13 @@ esac eval 'cf_cv_have_lib_'slang'=no' cf_libdir="" - echo "$as_me:22072: checking for SLtt_get_screen_size" >&5 + echo "$as_me:22073: 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 22078 "configure" +#line 22079 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char SLtt_get_screen_size (); below. */ @@ -22106,16 +22107,16 @@ f = SLtt_get_screen_size; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:22109: \"$ac_link\"") >&5 +if { (eval echo "$as_me:22110: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:22112: \$? = $ac_status" >&5 + echo "$as_me:22113: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:22115: \"$ac_try\"") >&5 + { (eval echo "$as_me:22116: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:22118: \$? = $ac_status" >&5 + echo "$as_me:22119: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_SLtt_get_screen_size=yes else @@ -22125,18 +22126,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:22128: result: $ac_cv_func_SLtt_get_screen_size" >&5 +echo "$as_me:22129: 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:22135: checking for SLtt_get_screen_size in -lslang" >&5 + echo "$as_me:22136: 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 22139 "configure" +#line 22140 "configure" #include "confdefs.h" #include <slang.h> int @@ -22148,25 +22149,25 @@ SLtt_get_screen_size() } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:22151: \"$ac_link\"") >&5 +if { (eval echo "$as_me:22152: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:22154: \$? = $ac_status" >&5 + echo "$as_me:22155: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:22157: \"$ac_try\"") >&5 + { (eval echo "$as_me:22158: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:22160: \$? = $ac_status" >&5 + echo "$as_me:22161: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:22162: result: yes" >&5 + echo "$as_me:22163: 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:22169: result: no" >&5 +echo "$as_me:22170: result: no" >&5 echo "${ECHO_T}no" >&6 cf_search= @@ -22256,11 +22257,11 @@ cf_search="$cf_library_path_list $cf_search" for cf_libdir in $cf_search do - echo "$as_me:22259: checking for -lslang in $cf_libdir" >&5 + echo "$as_me:22260: 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 22263 "configure" +#line 22264 "configure" #include "confdefs.h" #include <slang.h> int @@ -22272,25 +22273,25 @@ SLtt_get_screen_size() } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:22275: \"$ac_link\"") >&5 +if { (eval echo "$as_me:22276: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:22278: \$? = $ac_status" >&5 + echo "$as_me:22279: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:22281: \"$ac_try\"") >&5 + { (eval echo "$as_me:22282: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:22284: \$? = $ac_status" >&5 + echo "$as_me:22285: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:22286: result: yes" >&5 + echo "$as_me:22287: 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:22293: result: no" >&5 +echo "$as_me:22294: result: no" >&5 echo "${ECHO_T}no" >&6 LIBS="$cf_save_LIBS" fi @@ -22305,13 +22306,13 @@ fi eval 'cf_found_library=$cf_cv_have_lib_'slang if test $cf_found_library = no ; then - { { echo "$as_me:22308: error: Cannot link slang library" >&5 + { { echo "$as_me:22309: 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:22314: checking if we can link slang without termcap" >&5 +echo "$as_me:22315: 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%^.%%'` @@ -22320,7 +22321,7 @@ else fi LIBS=`echo ".$cf_slang_LIBS3" | sed -e "s%$cf_exclude%%" -e 's%^.%%'` cat >conftest.$ac_ext <<_ACEOF -#line 22323 "configure" +#line 22324 "configure" #include "confdefs.h" #include <slang.h> int @@ -22332,16 +22333,16 @@ SLtt_get_screen_size() } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:22335: \"$ac_link\"") >&5 +if { (eval echo "$as_me:22336: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:22338: \$? = $ac_status" >&5 + echo "$as_me:22339: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:22341: \"$ac_try\"") >&5 + { (eval echo "$as_me:22342: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:22344: \$? = $ac_status" >&5 + echo "$as_me:22345: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_result=yes else @@ -22350,13 +22351,13 @@ cat conftest.$ac_ext >&5 cf_result=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext -echo "$as_me:22353: result: $cf_result" >&5 +echo "$as_me:22354: result: $cf_result" >&5 echo "${ECHO_T}$cf_result" >&6 test $cf_result = no && LIBS="$cf_slang_LIBS3" else -echo "$as_me:22359: checking for slang2 header file" >&5 +echo "$as_me:22360: 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 @@ -22364,7 +22365,7 @@ else cf_cv_slang2_header=no cat >conftest.$ac_ext <<_ACEOF -#line 22367 "configure" +#line 22368 "configure" #include "confdefs.h" #include <slang.h> int @@ -22376,16 +22377,16 @@ printf("%s\n", SLANG_VERSION) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:22379: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:22380: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:22382: \$? = $ac_status" >&5 + echo "$as_me:22383: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:22385: \"$ac_try\"") >&5 + { (eval echo "$as_me:22386: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:22388: \$? = $ac_status" >&5 + echo "$as_me:22389: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_slang2_header=predefined else @@ -22512,7 +22513,7 @@ cf_search="$cf_search $cf_header_path_list" fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:22515: result: $cf_cv_slang2_header" >&5 +echo "$as_me:22516: result: $cf_cv_slang2_header" >&5 echo "${ECHO_T}$cf_cv_slang2_header" >&6 if test "x$cf_cv_slang2_header" != xno @@ -22552,7 +22553,7 @@ if test -n "$cf_incdir" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 22555 "configure" +#line 22556 "configure" #include "confdefs.h" #include <stdio.h> int @@ -22564,16 +22565,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:22567: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:22568: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:22570: \$? = $ac_status" >&5 + echo "$as_me:22571: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:22573: \"$ac_try\"") >&5 + { (eval echo "$as_me:22574: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:22576: \$? = $ac_status" >&5 + echo "$as_me:22577: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -22590,7 +22591,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}:22593: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me-configure}:22594: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -22620,7 +22621,7 @@ else cf_cv_termlib=none cat >conftest.$ac_ext <<_ACEOF -#line 22623 "configure" +#line 22624 "configure" #include "confdefs.h" int @@ -22632,19 +22633,19 @@ char *x=(char*)tgoto("",0,0) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:22635: \"$ac_link\"") >&5 +if { (eval echo "$as_me:22636: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:22638: \$? = $ac_status" >&5 + echo "$as_me:22639: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:22641: \"$ac_try\"") >&5 + { (eval echo "$as_me:22642: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:22644: \$? = $ac_status" >&5 + echo "$as_me:22645: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cat >conftest.$ac_ext <<_ACEOF -#line 22647 "configure" +#line 22648 "configure" #include "confdefs.h" int @@ -22656,16 +22657,16 @@ int x=tigetstr("") } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:22659: \"$ac_link\"") >&5 +if { (eval echo "$as_me:22660: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:22662: \$? = $ac_status" >&5 + echo "$as_me:22663: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:22665: \"$ac_try\"") >&5 + { (eval echo "$as_me:22666: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:22668: \$? = $ac_status" >&5 + echo "$as_me:22669: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_termlib=terminfo else @@ -22676,7 +22677,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}:22679: testing using functions in predefined $cf_cv_termlib LIBS ..." 1>&5 +echo "${as_me-configure}:22680: testing using functions in predefined $cf_cv_termlib LIBS ..." 1>&5 else echo "$as_me: failed program was:" >&5 @@ -22691,10 +22692,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:22694: checking for $cf_func in -l$cf_lib" >&5 + echo "$as_me:22695: 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 22697 "configure" +#line 22698 "configure" #include "confdefs.h" int @@ -22706,16 +22707,16 @@ int x=$cf_func("") } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:22709: \"$ac_link\"") >&5 +if { (eval echo "$as_me:22710: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:22712: \$? = $ac_status" >&5 + echo "$as_me:22713: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:22715: \"$ac_try\"") >&5 + { (eval echo "$as_me:22716: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:22718: \$? = $ac_status" >&5 + echo "$as_me:22719: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_result=yes else @@ -22724,7 +22725,7 @@ cat conftest.$ac_ext >&5 cf_result=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext - echo "$as_me:22727: result: $cf_result" >&5 + echo "$as_me:22728: result: $cf_result" >&5 echo "${ECHO_T}$cf_result" >&6 if test "$cf_result" = yes ; then if test "$cf_func" = tigetstr ; then @@ -22741,7 +22742,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:22744: checking for initscr in -lcurses" >&5 + echo "$as_me:22745: 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 @@ -22749,7 +22750,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lcurses $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 22752 "configure" +#line 22753 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -22768,16 +22769,16 @@ initscr (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:22771: \"$ac_link\"") >&5 +if { (eval echo "$as_me:22772: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:22774: \$? = $ac_status" >&5 + echo "$as_me:22775: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:22777: \"$ac_try\"") >&5 + { (eval echo "$as_me:22778: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:22780: \$? = $ac_status" >&5 + echo "$as_me:22781: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_curses_initscr=yes else @@ -22788,13 +22789,13 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:22791: result: $ac_cv_lib_curses_initscr" >&5 +echo "$as_me:22792: result: $ac_cv_lib_curses_initscr" >&5 echo "${ECHO_T}$ac_cv_lib_curses_initscr" >&6 if test $ac_cv_lib_curses_initscr = yes; then LIBS="$LIBS -lcurses" cf_cv_termlib=termcap fi - echo "$as_me:22797: checking for tgoto in -ltermcap" >&5 + echo "$as_me:22798: 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 @@ -22802,7 +22803,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-ltermcap $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 22805 "configure" +#line 22806 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -22821,16 +22822,16 @@ tgoto (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:22824: \"$ac_link\"") >&5 +if { (eval echo "$as_me:22825: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:22827: \$? = $ac_status" >&5 + echo "$as_me:22828: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:22830: \"$ac_try\"") >&5 + { (eval echo "$as_me:22831: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:22833: \$? = $ac_status" >&5 + echo "$as_me:22834: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_termcap_tgoto=yes else @@ -22841,7 +22842,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:22844: result: $ac_cv_lib_termcap_tgoto" >&5 +echo "$as_me:22845: result: $ac_cv_lib_termcap_tgoto" >&5 echo "${ECHO_T}$ac_cv_lib_termcap_tgoto" >&6 if test $ac_cv_lib_termcap_tgoto = yes; then LIBS="$LIBS -ltermcap" cf_cv_termlib=termcap @@ -22852,20 +22853,20 @@ fi fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext if test "$cf_cv_termlib" = none; then - { echo "$as_me:22855: WARNING: Cannot find -ltermlib, -lcurses, or -ltermcap" >&5 + { echo "$as_me:22856: 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:22862: checking for acos" >&5 +echo "$as_me:22863: 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 22868 "configure" +#line 22869 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char acos (); below. */ @@ -22896,16 +22897,16 @@ f = acos; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:22899: \"$ac_link\"") >&5 +if { (eval echo "$as_me:22900: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:22902: \$? = $ac_status" >&5 + echo "$as_me:22903: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:22905: \"$ac_try\"") >&5 + { (eval echo "$as_me:22906: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:22908: \$? = $ac_status" >&5 + echo "$as_me:22909: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_acos=yes else @@ -22915,13 +22916,13 @@ ac_cv_func_acos=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:22918: result: $ac_cv_func_acos" >&5 +echo "$as_me:22919: 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:22924: checking for acos in -lm" >&5 +echo "$as_me:22925: 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 @@ -22929,7 +22930,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lm $LIBS $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 22932 "configure" +#line 22933 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -22948,16 +22949,16 @@ acos (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:22951: \"$ac_link\"") >&5 +if { (eval echo "$as_me:22952: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:22954: \$? = $ac_status" >&5 + echo "$as_me:22955: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:22957: \"$ac_try\"") >&5 + { (eval echo "$as_me:22958: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:22960: \$? = $ac_status" >&5 + echo "$as_me:22961: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_m_acos=yes else @@ -22968,7 +22969,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:22971: result: $ac_cv_lib_m_acos" >&5 +echo "$as_me:22972: 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 @@ -22994,13 +22995,13 @@ os2*) eval 'cf_cv_have_lib_'video'=no' cf_libdir="" - echo "$as_me:22997: checking for v_init" >&5 + echo "$as_me:22998: 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 23003 "configure" +#line 23004 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char v_init (); below. */ @@ -23031,16 +23032,16 @@ f = v_init; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:23034: \"$ac_link\"") >&5 +if { (eval echo "$as_me:23035: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:23037: \$? = $ac_status" >&5 + echo "$as_me:23038: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:23040: \"$ac_try\"") >&5 + { (eval echo "$as_me:23041: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23043: \$? = $ac_status" >&5 + echo "$as_me:23044: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_v_init=yes else @@ -23050,18 +23051,18 @@ ac_cv_func_v_init=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:23053: result: $ac_cv_func_v_init" >&5 +echo "$as_me:23054: 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:23060: checking for v_init in -lvideo" >&5 + echo "$as_me:23061: 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 23064 "configure" +#line 23065 "configure" #include "confdefs.h" #include <sys/video.h> int @@ -23073,25 +23074,25 @@ v_init() } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:23076: \"$ac_link\"") >&5 +if { (eval echo "$as_me:23077: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:23079: \$? = $ac_status" >&5 + echo "$as_me:23080: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:23082: \"$ac_try\"") >&5 + { (eval echo "$as_me:23083: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23085: \$? = $ac_status" >&5 + echo "$as_me:23086: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:23087: result: yes" >&5 + echo "$as_me:23088: 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:23094: result: no" >&5 +echo "$as_me:23095: result: no" >&5 echo "${ECHO_T}no" >&6 cf_search= @@ -23181,11 +23182,11 @@ cf_search="$cf_library_path_list $cf_search" for cf_libdir in $cf_search do - echo "$as_me:23184: checking for -lvideo in $cf_libdir" >&5 + echo "$as_me:23185: 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 23188 "configure" +#line 23189 "configure" #include "confdefs.h" #include <sys/video.h> int @@ -23197,25 +23198,25 @@ v_init() } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:23200: \"$ac_link\"") >&5 +if { (eval echo "$as_me:23201: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:23203: \$? = $ac_status" >&5 + echo "$as_me:23204: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:23206: \"$ac_try\"") >&5 + { (eval echo "$as_me:23207: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23209: \$? = $ac_status" >&5 + echo "$as_me:23210: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:23211: result: yes" >&5 + echo "$as_me:23212: 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:23218: result: no" >&5 +echo "$as_me:23219: result: no" >&5 echo "${ECHO_T}no" >&6 LIBS="$cf_save_LIBS" fi @@ -23230,7 +23231,7 @@ fi eval 'cf_found_library=$cf_cv_have_lib_'video if test $cf_found_library = no ; then - { { echo "$as_me:23233: error: Cannot link video library" >&5 + { { echo "$as_me:23234: error: Cannot link video library" >&5 echo "$as_me: error: Cannot link video library" >&2;} { (exit 1); exit 1; }; } fi @@ -23240,13 +23241,13 @@ esac eval 'cf_cv_have_lib_'slang2'=no' cf_libdir="" - echo "$as_me:23243: checking for SLtt_get_screen_size" >&5 + echo "$as_me:23244: 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 23249 "configure" +#line 23250 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char SLtt_get_screen_size (); below. */ @@ -23277,16 +23278,16 @@ f = SLtt_get_screen_size; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:23280: \"$ac_link\"") >&5 +if { (eval echo "$as_me:23281: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:23283: \$? = $ac_status" >&5 + echo "$as_me:23284: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:23286: \"$ac_try\"") >&5 + { (eval echo "$as_me:23287: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23289: \$? = $ac_status" >&5 + echo "$as_me:23290: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_SLtt_get_screen_size=yes else @@ -23296,18 +23297,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:23299: result: $ac_cv_func_SLtt_get_screen_size" >&5 +echo "$as_me:23300: 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:23306: checking for SLtt_get_screen_size in -lslang2" >&5 + echo "$as_me:23307: 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 23310 "configure" +#line 23311 "configure" #include "confdefs.h" #include <slang.h> int @@ -23319,25 +23320,25 @@ SLtt_get_screen_size() } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:23322: \"$ac_link\"") >&5 +if { (eval echo "$as_me:23323: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:23325: \$? = $ac_status" >&5 + echo "$as_me:23326: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:23328: \"$ac_try\"") >&5 + { (eval echo "$as_me:23329: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23331: \$? = $ac_status" >&5 + echo "$as_me:23332: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:23333: result: yes" >&5 + echo "$as_me:23334: 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:23340: result: no" >&5 +echo "$as_me:23341: result: no" >&5 echo "${ECHO_T}no" >&6 cf_search= @@ -23427,11 +23428,11 @@ cf_search="$cf_library_path_list $cf_search" for cf_libdir in $cf_search do - echo "$as_me:23430: checking for -lslang2 in $cf_libdir" >&5 + echo "$as_me:23431: 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 23434 "configure" +#line 23435 "configure" #include "confdefs.h" #include <slang.h> int @@ -23443,25 +23444,25 @@ SLtt_get_screen_size() } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:23446: \"$ac_link\"") >&5 +if { (eval echo "$as_me:23447: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:23449: \$? = $ac_status" >&5 + echo "$as_me:23450: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:23452: \"$ac_try\"") >&5 + { (eval echo "$as_me:23453: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23455: \$? = $ac_status" >&5 + echo "$as_me:23456: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:23457: result: yes" >&5 + echo "$as_me:23458: 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:23464: result: no" >&5 +echo "$as_me:23465: result: no" >&5 echo "${ECHO_T}no" >&6 LIBS="$cf_save_LIBS" fi @@ -23476,13 +23477,13 @@ fi eval 'cf_found_library=$cf_cv_have_lib_'slang2 if test $cf_found_library = no ; then - { { echo "$as_me:23479: error: Cannot link slang2 library" >&5 + { { echo "$as_me:23480: 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:23485: checking if we can link slang2 without termcap" >&5 +echo "$as_me:23486: 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%^.%%'` @@ -23491,7 +23492,7 @@ else fi LIBS=`echo ".$cf_slang_LIBS3" | sed -e "s%$cf_exclude%%" -e 's%^.%%'` cat >conftest.$ac_ext <<_ACEOF -#line 23494 "configure" +#line 23495 "configure" #include "confdefs.h" #include <slang.h> int @@ -23503,16 +23504,16 @@ SLtt_get_screen_size() } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:23506: \"$ac_link\"") >&5 +if { (eval echo "$as_me:23507: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:23509: \$? = $ac_status" >&5 + echo "$as_me:23510: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:23512: \"$ac_try\"") >&5 + { (eval echo "$as_me:23513: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23515: \$? = $ac_status" >&5 + echo "$as_me:23516: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_result=yes else @@ -23521,12 +23522,12 @@ cat conftest.$ac_ext >&5 cf_result=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext -echo "$as_me:23524: result: $cf_result" >&5 +echo "$as_me:23525: result: $cf_result" >&5 echo "${ECHO_T}$cf_result" >&6 test $cf_result = no && LIBS="$cf_slang_LIBS3" else - { { echo "$as_me:23529: error: cannot find slang headers" >&5 + { { echo "$as_me:23530: error: cannot find slang headers" >&5 echo "$as_me: error: cannot find slang headers" >&2;} { (exit 1); exit 1; }; } fi @@ -23534,14 +23535,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:23537: checking if we must define UTF8" >&5 +echo "$as_me:23538: 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 23544 "configure" +#line 23545 "configure" #include "confdefs.h" #include <slang.h> int @@ -23553,16 +23554,16 @@ SLtt_get_screen_size() } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:23556: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:23557: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:23559: \$? = $ac_status" >&5 + echo "$as_me:23560: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:23562: \"$ac_try\"") >&5 + { (eval echo "$as_me:23563: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23565: \$? = $ac_status" >&5 + echo "$as_me:23566: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_slang_utf8=no else @@ -23570,7 +23571,7 @@ else cat conftest.$ac_ext >&5 cat >conftest.$ac_ext <<_ACEOF -#line 23573 "configure" +#line 23574 "configure" #include "confdefs.h" #define UTF8 @@ -23584,16 +23585,16 @@ SLtt_get_screen_size() } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:23587: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:23588: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:23590: \$? = $ac_status" >&5 + echo "$as_me:23591: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:23593: \"$ac_try\"") >&5 + { (eval echo "$as_me:23594: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23596: \$? = $ac_status" >&5 + echo "$as_me:23597: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_slang_utf8=yes else @@ -23606,7 +23607,7 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:23609: result: $cf_cv_slang_utf8" >&5 +echo "$as_me:23610: result: $cf_cv_slang_utf8" >&5 echo "${ECHO_T}$cf_cv_slang_utf8" >&6 if test "$cf_cv_slang_utf8" = yes ; then @@ -23616,14 +23617,14 @@ EOF fi -echo "$as_me:23619: checking if we must tell slang this is UNIX" >&5 +echo "$as_me:23620: 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 23626 "configure" +#line 23627 "configure" #include "confdefs.h" #include <slang.h> int @@ -23642,16 +23643,16 @@ SLang_TT_Baud_Rate = 1 } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:23645: \"$ac_link\"") >&5 +if { (eval echo "$as_me:23646: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:23648: \$? = $ac_status" >&5 + echo "$as_me:23649: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:23651: \"$ac_try\"") >&5 + { (eval echo "$as_me:23652: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23654: \$? = $ac_status" >&5 + echo "$as_me:23655: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_slang_unix=yes else @@ -23662,7 +23663,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:23665: result: $cf_cv_slang_unix" >&5 +echo "$as_me:23666: 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 @@ -23672,14 +23673,14 @@ EOF ;; esac -echo "$as_me:23675: checking for chtype typedef" >&5 +echo "$as_me:23676: 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 23682 "configure" +#line 23683 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header-curses.h}> int @@ -23691,16 +23692,16 @@ chtype foo } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:23694: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:23695: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:23697: \$? = $ac_status" >&5 + echo "$as_me:23698: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:23700: \"$ac_try\"") >&5 + { (eval echo "$as_me:23701: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23703: \$? = $ac_status" >&5 + echo "$as_me:23704: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_chtype_decl=yes else @@ -23710,21 +23711,21 @@ cf_cv_chtype_decl=no fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:23713: result: $cf_cv_chtype_decl" >&5 +echo "$as_me:23714: result: $cf_cv_chtype_decl" >&5 echo "${ECHO_T}$cf_cv_chtype_decl" >&6 if test $cf_cv_chtype_decl = yes ; then cat >>confdefs.h <<\EOF #define HAVE_TYPE_CHTYPE 1 EOF - echo "$as_me:23720: checking if chtype is scalar or struct" >&5 + echo "$as_me:23721: 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 23727 "configure" +#line 23728 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header-curses.h}> int @@ -23736,16 +23737,16 @@ chtype foo; long x = foo } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:23739: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:23740: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:23742: \$? = $ac_status" >&5 + echo "$as_me:23743: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:23745: \"$ac_try\"") >&5 + { (eval echo "$as_me:23746: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23748: \$? = $ac_status" >&5 + echo "$as_me:23749: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_chtype_type=scalar else @@ -23755,7 +23756,7 @@ cf_cv_chtype_type=struct fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:23758: result: $cf_cv_chtype_type" >&5 +echo "$as_me:23759: result: $cf_cv_chtype_type" >&5 echo "${ECHO_T}$cf_cv_chtype_type" >&6 if test $cf_cv_chtype_type = scalar ; then cat >>confdefs.h <<\EOF @@ -23765,7 +23766,7 @@ EOF fi fi -echo "$as_me:23768: checking if you want the wide-curses features" >&5 +echo "$as_me:23769: 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. @@ -23782,10 +23783,10 @@ else use_wide_curses=$cf_wide_curses fi; -echo "$as_me:23785: result: $use_wide_curses" >&5 +echo "$as_me:23786: result: $use_wide_curses" >&5 echo "${ECHO_T}$use_wide_curses" >&6 -echo "$as_me:23788: checking if color-style code should be used" >&5 +echo "$as_me:23789: 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. @@ -23805,7 +23806,7 @@ fi; case $use_color_style in no) - echo "$as_me:23808: result: no" >&5 + echo "$as_me:23809: result: no" >&5 echo "${ECHO_T}no" >&6 INSTALL_LSS= ;; @@ -23814,10 +23815,10 @@ echo "${ECHO_T}no" >&6 #define USE_COLOR_STYLE 1 EOF - echo "$as_me:23817: result: yes" >&5 + echo "$as_me:23818: result: yes" >&5 echo "${ECHO_T}yes" >&6 - echo "$as_me:23820: checking for location of style-sheet file" >&5 + echo "$as_me:23821: 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. @@ -23853,7 +23854,7 @@ case ".$withval" in #(vi withval=`echo $withval | sed -e s%NONE%$cf_path_syntax%` ;; *) - { { echo "$as_me:23856: error: expected a pathname, not \"$withval\"" >&5 + { { echo "$as_me:23857: error: expected a pathname, not \"$withval\"" >&5 echo "$as_me: error: expected a pathname, not \"$withval\"" >&2;} { (exit 1); exit 1; }; } ;; @@ -23862,7 +23863,7 @@ esac fi LYNX_LSS_FILE="$withval" - echo "$as_me:23865: result: $LYNX_LSS_FILE" >&5 + echo "$as_me:23866: result: $LYNX_LSS_FILE" >&5 echo "${ECHO_T}$LYNX_LSS_FILE" >&6 test "$LYNX_LSS_FILE" = no && LYNX_LSS_FILE= @@ -23874,7 +23875,7 @@ EOF ;; esac -echo "$as_me:23877: checking for the default configuration-file" >&5 +echo "$as_me:23878: 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. @@ -23910,7 +23911,7 @@ case ".$withval" in #(vi withval=`echo $withval | sed -e s%NONE%$cf_path_syntax%` ;; *) - { { echo "$as_me:23913: error: expected a pathname, not \"$withval\"" >&5 + { { echo "$as_me:23914: error: expected a pathname, not \"$withval\"" >&5 echo "$as_me: error: expected a pathname, not \"$withval\"" >&2;} { (exit 1); exit 1; }; } ;; @@ -23919,7 +23920,7 @@ esac fi LYNX_CFG_FILE="$withval" -echo "$as_me:23922: result: $LYNX_CFG_FILE" >&5 +echo "$as_me:23923: result: $LYNX_CFG_FILE" >&5 echo "${ECHO_T}$LYNX_CFG_FILE" >&6 test "$LYNX_CFG_FILE" = no && LYNX_CFG_FILE= @@ -23927,7 +23928,7 @@ cat >>confdefs.h <<EOF #define LYNX_CFG_FILE "$LYNX_CFG_FILE" EOF -echo "$as_me:23930: checking if htmlized lynx.cfg should be built" >&5 +echo "$as_me:23931: 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. @@ -23944,7 +23945,7 @@ else use_htmlized_cfg=no fi; -echo "$as_me:23947: result: $use_htmlized_cfg" >&5 +echo "$as_me:23948: result: $use_htmlized_cfg" >&5 echo "${ECHO_T}$use_htmlized_cfg" >&6 LYNXCFG_MAKE='' @@ -23952,7 +23953,7 @@ if test $use_htmlized_cfg = no ; then LYNXCFG_MAKE='#' fi -echo "$as_me:23955: checking if local doc directory should be linked to help page" >&5 +echo "$as_me:23956: 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. @@ -23969,7 +23970,7 @@ else use_local_docs=no fi; -echo "$as_me:23972: result: $use_local_docs" >&5 +echo "$as_me:23973: result: $use_local_docs" >&5 echo "${ECHO_T}$use_local_docs" >&6 LYNXDOC_MAKE='' @@ -23977,7 +23978,7 @@ if test $use_local_docs = no ; then LYNXDOC_MAKE='#' fi -echo "$as_me:23980: checking for MIME library directory" >&5 +echo "$as_me:23981: 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. @@ -24013,7 +24014,7 @@ case ".$withval" in #(vi withval=`echo $withval | sed -e s%NONE%$cf_path_syntax%` ;; *) - { { echo "$as_me:24016: error: expected a pathname, not \"$withval\"" >&5 + { { echo "$as_me:24017: error: expected a pathname, not \"$withval\"" >&5 echo "$as_me: error: expected a pathname, not \"$withval\"" >&2;} { (exit 1); exit 1; }; } ;; @@ -24022,14 +24023,14 @@ esac fi MIME_LIBDIR="$withval" -echo "$as_me:24025: result: $MIME_LIBDIR" >&5 +echo "$as_me:24026: result: $MIME_LIBDIR" >&5 echo "${ECHO_T}$MIME_LIBDIR" >&6 MIME_LIBDIR=`echo "$MIME_LIBDIR" | sed -e 's,/$,,' -e 's,$,/,'` cat >>confdefs.h <<EOF #define MIME_LIBDIR "$MIME_LIBDIR" EOF -echo "$as_me:24032: checking if locale-charset selection logic should be used" >&5 +echo "$as_me:24033: 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. @@ -24046,7 +24047,7 @@ else use_locale_charset=yes fi; -echo "$as_me:24049: result: $use_locale_charset" >&5 +echo "$as_me:24050: result: $use_locale_charset" >&5 echo "${ECHO_T}$use_locale_charset" >&6 test $use_locale_charset != no && cat >>confdefs.h <<\EOF #define USE_LOCALE_CHARSET 1 @@ -24054,7 +24055,7 @@ EOF CHARSET_DEFS= -echo "$as_me:24057: checking if you want only a few charsets" >&5 +echo "$as_me:24058: 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. @@ -24066,7 +24067,7 @@ else fi; if test -n "$cf_charsets" ; then - echo "$as_me:24069: result: yes" >&5 + echo "$as_me:24070: result: yes" >&5 echo "${ECHO_T}yes" >&6 cat >>confdefs.h <<\EOF #define ALL_CHARSETS 0 @@ -24079,7 +24080,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}:24082: testing using minimal list of charsets: $cf_min_charsets ..." 1>&5 +echo "${as_me-configure}:24083: 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'` @@ -24106,28 +24107,28 @@ echo "${as_me-configure}:24082: testing using minimal list of charsets: $cf_min_ then test -n "$verbose" && echo " found $cf_charset" 1>&6 -echo "${as_me-configure}:24109: testing found $cf_charset ..." 1>&5 +echo "${as_me-configure}:24110: 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}:24115: testing not found $cf_charset ..." 1>&5 +echo "${as_me-configure}:24116: testing not found $cf_charset ..." 1>&5 fi done else - echo "$as_me:24120: result: no" >&5 + echo "$as_me:24121: result: no" >&5 echo "${ECHO_T}no" >&6 fi -echo "$as_me:24124: checking for ANSI C header files" >&5 +echo "$as_me:24125: 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 24130 "configure" +#line 24131 "configure" #include "confdefs.h" #include <stdlib.h> #include <stdarg.h> @@ -24135,13 +24136,13 @@ else #include <float.h> _ACEOF -if { (eval echo "$as_me:24138: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:24139: \"$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:24144: \$? = $ac_status" >&5 + echo "$as_me:24145: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -24163,7 +24164,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 24166 "configure" +#line 24167 "configure" #include "confdefs.h" #include <string.h> @@ -24181,7 +24182,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 24184 "configure" +#line 24185 "configure" #include "confdefs.h" #include <stdlib.h> @@ -24202,7 +24203,7 @@ if test $ac_cv_header_stdc = yes; then : else cat >conftest.$ac_ext <<_ACEOF -#line 24205 "configure" +#line 24206 "configure" #include "confdefs.h" #include <ctype.h> #if ((' ' & 0x0FF) == 0x020) @@ -24228,15 +24229,15 @@ main () } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:24231: \"$ac_link\"") >&5 +if { (eval echo "$as_me:24232: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:24234: \$? = $ac_status" >&5 + echo "$as_me:24235: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:24236: \"$ac_try\"") >&5 + { (eval echo "$as_me:24237: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:24239: \$? = $ac_status" >&5 + echo "$as_me:24240: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -24249,7 +24250,7 @@ rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext fi fi fi -echo "$as_me:24252: result: $ac_cv_header_stdc" >&5 +echo "$as_me:24253: result: $ac_cv_header_stdc" >&5 echo "${ECHO_T}$ac_cv_header_stdc" >&6 if test $ac_cv_header_stdc = yes; then @@ -24259,13 +24260,13 @@ EOF fi -echo "$as_me:24262: checking whether time.h and sys/time.h may both be included" >&5 +echo "$as_me:24263: 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 24268 "configure" +#line 24269 "configure" #include "confdefs.h" #include <sys/types.h> #include <sys/time.h> @@ -24281,16 +24282,16 @@ return 0; } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:24284: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:24285: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:24287: \$? = $ac_status" >&5 + echo "$as_me:24288: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:24290: \"$ac_try\"") >&5 + { (eval echo "$as_me:24291: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:24293: \$? = $ac_status" >&5 + echo "$as_me:24294: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_header_time=yes else @@ -24300,7 +24301,7 @@ ac_cv_header_time=no fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:24303: result: $ac_cv_header_time" >&5 +echo "$as_me:24304: result: $ac_cv_header_time" >&5 echo "${ECHO_T}$ac_cv_header_time" >&6 if test $ac_cv_header_time = yes; then @@ -24313,13 +24314,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:24316: checking for $ac_hdr that defines DIR" >&5 +echo "$as_me:24317: 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 24322 "configure" +#line 24323 "configure" #include "confdefs.h" #include <sys/types.h> #include <$ac_hdr> @@ -24334,16 +24335,16 @@ return 0; } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:24337: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:24338: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:24340: \$? = $ac_status" >&5 + echo "$as_me:24341: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:24343: \"$ac_try\"") >&5 + { (eval echo "$as_me:24344: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:24346: \$? = $ac_status" >&5 + echo "$as_me:24347: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_Header=yes" else @@ -24353,7 +24354,7 @@ eval "$as_ac_Header=no" fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:24356: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:24357: 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 @@ -24366,7 +24367,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:24369: checking for opendir in -ldir" >&5 + echo "$as_me:24370: 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 @@ -24374,7 +24375,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-ldir $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 24377 "configure" +#line 24378 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -24393,16 +24394,16 @@ opendir (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:24396: \"$ac_link\"") >&5 +if { (eval echo "$as_me:24397: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:24399: \$? = $ac_status" >&5 + echo "$as_me:24400: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:24402: \"$ac_try\"") >&5 + { (eval echo "$as_me:24403: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:24405: \$? = $ac_status" >&5 + echo "$as_me:24406: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_dir_opendir=yes else @@ -24413,14 +24414,14 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:24416: result: $ac_cv_lib_dir_opendir" >&5 +echo "$as_me:24417: 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:24423: checking for opendir in -lx" >&5 + echo "$as_me:24424: 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 @@ -24428,7 +24429,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lx $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 24431 "configure" +#line 24432 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -24447,16 +24448,16 @@ opendir (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:24450: \"$ac_link\"") >&5 +if { (eval echo "$as_me:24451: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:24453: \$? = $ac_status" >&5 + echo "$as_me:24454: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:24456: \"$ac_try\"") >&5 + { (eval echo "$as_me:24457: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:24459: \$? = $ac_status" >&5 + echo "$as_me:24460: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_x_opendir=yes else @@ -24467,7 +24468,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:24470: result: $ac_cv_lib_x_opendir" >&5 +echo "$as_me:24471: 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" @@ -24495,23 +24496,23 @@ for ac_header in \ do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` -echo "$as_me:24498: checking for $ac_header" >&5 +echo "$as_me:24499: 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 24504 "configure" +#line 24505 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:24508: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:24509: \"$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:24514: \$? = $ac_status" >&5 + echo "$as_me:24515: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -24530,7 +24531,7 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:24533: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:24534: 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 @@ -24540,14 +24541,14 @@ EOF fi done -echo "$as_me:24543: checking termio.h and termios.h" >&5 +echo "$as_me:24544: 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 24550 "configure" +#line 24551 "configure" #include "confdefs.h" #if HAVE_TERMIO_H @@ -24565,16 +24566,16 @@ putchar (0x0a) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:24568: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:24569: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:24571: \$? = $ac_status" >&5 + echo "$as_me:24572: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:24574: \"$ac_try\"") >&5 + { (eval echo "$as_me:24575: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:24577: \$? = $ac_status" >&5 + echo "$as_me:24578: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_termio_and_termios=yes else @@ -24585,20 +24586,20 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:24588: result: $cf_cv_termio_and_termios" >&5 +echo "$as_me:24589: 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:24594: checking for sigaction and structs" >&5 +echo "$as_me:24595: 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 24601 "configure" +#line 24602 "configure" #include "confdefs.h" #include <sys/types.h> @@ -24618,16 +24619,16 @@ struct sigaction act; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:24621: \"$ac_link\"") >&5 +if { (eval echo "$as_me:24622: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:24624: \$? = $ac_status" >&5 + echo "$as_me:24625: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:24627: \"$ac_try\"") >&5 + { (eval echo "$as_me:24628: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:24630: \$? = $ac_status" >&5 + echo "$as_me:24631: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_func_sigaction=yes else @@ -24638,7 +24639,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:24641: result: $cf_cv_func_sigaction" >&5 +echo "$as_me:24642: result: $cf_cv_func_sigaction" >&5 echo "${ECHO_T}$cf_cv_func_sigaction" >&6 test "$cf_cv_func_sigaction" = yes && cat >>confdefs.h <<\EOF #define HAVE_SIGACTION 1 @@ -24647,23 +24648,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:24650: checking for $ac_header" >&5 +echo "$as_me:24651: 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 24656 "configure" +#line 24657 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:24660: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:24661: \"$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:24666: \$? = $ac_status" >&5 + echo "$as_me:24667: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -24682,7 +24683,7 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:24685: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:24686: 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 @@ -24703,23 +24704,23 @@ else for ac_header in wait.h do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` -echo "$as_me:24706: checking for $ac_header" >&5 +echo "$as_me:24707: 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 24712 "configure" +#line 24713 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:24716: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:24717: \"$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:24722: \$? = $ac_status" >&5 + echo "$as_me:24723: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -24738,7 +24739,7 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:24741: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:24742: 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 @@ -24751,23 +24752,23 @@ done for ac_header in waitstatus.h do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` -echo "$as_me:24754: checking for $ac_header" >&5 +echo "$as_me:24755: 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 24760 "configure" +#line 24761 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:24764: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:24765: \"$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:24770: \$? = $ac_status" >&5 + echo "$as_me:24771: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -24786,7 +24787,7 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:24789: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:24790: 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 @@ -24808,14 +24809,14 @@ cf_wait_headers="$cf_wait_headers fi fi -echo "$as_me:24811: checking for union wait" >&5 +echo "$as_me:24812: 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 24818 "configure" +#line 24819 "configure" #include "confdefs.h" $cf_wait_headers int @@ -24831,16 +24832,16 @@ int x; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:24834: \"$ac_link\"") >&5 +if { (eval echo "$as_me:24835: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:24837: \$? = $ac_status" >&5 + echo "$as_me:24838: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:24840: \"$ac_try\"") >&5 + { (eval echo "$as_me:24841: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:24843: \$? = $ac_status" >&5 + echo "$as_me:24844: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_type_unionwait=no echo compiles ok w/o union wait 1>&5 @@ -24850,7 +24851,7 @@ else cat conftest.$ac_ext >&5 cat >conftest.$ac_ext <<_ACEOF -#line 24853 "configure" +#line 24854 "configure" #include "confdefs.h" $cf_wait_headers int @@ -24870,16 +24871,16 @@ union wait x; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:24873: \"$ac_link\"") >&5 +if { (eval echo "$as_me:24874: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:24876: \$? = $ac_status" >&5 + echo "$as_me:24877: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:24879: \"$ac_try\"") >&5 + { (eval echo "$as_me:24880: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:24882: \$? = $ac_status" >&5 + echo "$as_me:24883: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_type_unionwait=yes echo compiles ok with union wait and possibly macros too 1>&5 @@ -24894,7 +24895,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:24897: result: $cf_cv_type_unionwait" >&5 +echo "$as_me:24898: result: $cf_cv_type_unionwait" >&5 echo "${ECHO_T}$cf_cv_type_unionwait" >&6 test $cf_cv_type_unionwait = yes && cat >>confdefs.h <<\EOF #define HAVE_TYPE_UNIONWAIT 1 @@ -24902,14 +24903,14 @@ EOF if test $cf_cv_type_unionwait = yes; then - echo "$as_me:24905: checking if union wait can be used as wait-arg" >&5 + echo "$as_me:24906: 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 24912 "configure" +#line 24913 "configure" #include "confdefs.h" $cf_wait_headers int @@ -24921,16 +24922,16 @@ union wait x; wait(&x) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:24924: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:24925: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:24927: \$? = $ac_status" >&5 + echo "$as_me:24928: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:24930: \"$ac_try\"") >&5 + { (eval echo "$as_me:24931: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:24933: \$? = $ac_status" >&5 + echo "$as_me:24934: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_arg_union_wait=yes else @@ -24942,20 +24943,20 @@ rm -f conftest.$ac_objext conftest.$ac_ext fi - echo "$as_me:24945: result: $cf_cv_arg_union_wait" >&5 + echo "$as_me:24946: 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:24951: checking if union wait can be used as waitpid-arg" >&5 + echo "$as_me:24952: 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 24958 "configure" +#line 24959 "configure" #include "confdefs.h" $cf_wait_headers int @@ -24967,16 +24968,16 @@ union wait x; waitpid(0, &x, 0) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:24970: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:24971: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:24973: \$? = $ac_status" >&5 + echo "$as_me:24974: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:24976: \"$ac_try\"") >&5 + { (eval echo "$as_me:24977: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:24979: \$? = $ac_status" >&5 + echo "$as_me:24980: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_arg_union_waitpid=yes else @@ -24988,7 +24989,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext fi - echo "$as_me:24991: result: $cf_cv_arg_union_waitpid" >&5 + echo "$as_me:24992: 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 #define WAITPID_USES_UNION 1 @@ -24996,13 +24997,13 @@ EOF fi -echo "$as_me:24999: checking for uid_t in sys/types.h" >&5 +echo "$as_me:25000: 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 25005 "configure" +#line 25006 "configure" #include "confdefs.h" #include <sys/types.h> @@ -25016,7 +25017,7 @@ fi rm -f conftest* fi -echo "$as_me:25019: result: $ac_cv_type_uid_t" >&5 +echo "$as_me:25020: 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 @@ -25030,7 +25031,7 @@ EOF fi -echo "$as_me:25033: checking type of array argument to getgroups" >&5 +echo "$as_me:25034: 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 @@ -25039,7 +25040,7 @@ else ac_cv_type_getgroups=cross else cat >conftest.$ac_ext <<_ACEOF -#line 25042 "configure" +#line 25043 "configure" #include "confdefs.h" /* Thanks to Mike Rendell for this test. */ #include <sys/types.h> @@ -25065,15 +25066,15 @@ main () } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:25068: \"$ac_link\"") >&5 +if { (eval echo "$as_me:25069: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:25071: \$? = $ac_status" >&5 + echo "$as_me:25072: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:25073: \"$ac_try\"") >&5 + { (eval echo "$as_me:25074: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25076: \$? = $ac_status" >&5 + echo "$as_me:25077: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_type_getgroups=gid_t else @@ -25086,7 +25087,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 25089 "configure" +#line 25090 "configure" #include "confdefs.h" #include <unistd.h> @@ -25101,20 +25102,20 @@ rm -f conftest* fi fi -echo "$as_me:25104: result: $ac_cv_type_getgroups" >&5 +echo "$as_me:25105: 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:25111: checking for off_t" >&5 +echo "$as_me:25112: 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 25117 "configure" +#line 25118 "configure" #include "confdefs.h" $ac_includes_default int @@ -25129,16 +25130,16 @@ if (sizeof (off_t)) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:25132: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:25133: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:25135: \$? = $ac_status" >&5 + echo "$as_me:25136: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:25138: \"$ac_try\"") >&5 + { (eval echo "$as_me:25139: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25141: \$? = $ac_status" >&5 + echo "$as_me:25142: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_type_off_t=yes else @@ -25148,7 +25149,7 @@ ac_cv_type_off_t=no fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:25151: result: $ac_cv_type_off_t" >&5 +echo "$as_me:25152: 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 : @@ -25160,13 +25161,13 @@ EOF fi -echo "$as_me:25163: checking for pid_t" >&5 +echo "$as_me:25164: 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 25169 "configure" +#line 25170 "configure" #include "confdefs.h" $ac_includes_default int @@ -25181,16 +25182,16 @@ if (sizeof (pid_t)) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:25184: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:25185: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:25187: \$? = $ac_status" >&5 + echo "$as_me:25188: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:25190: \"$ac_try\"") >&5 + { (eval echo "$as_me:25191: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25193: \$? = $ac_status" >&5 + echo "$as_me:25194: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_type_pid_t=yes else @@ -25200,7 +25201,7 @@ ac_cv_type_pid_t=no fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:25203: result: $ac_cv_type_pid_t" >&5 +echo "$as_me:25204: 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 : @@ -25212,13 +25213,13 @@ EOF fi -echo "$as_me:25215: checking for uid_t in sys/types.h" >&5 +echo "$as_me:25216: 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 25221 "configure" +#line 25222 "configure" #include "confdefs.h" #include <sys/types.h> @@ -25232,7 +25233,7 @@ fi rm -f conftest* fi -echo "$as_me:25235: result: $ac_cv_type_uid_t" >&5 +echo "$as_me:25236: 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 @@ -25246,13 +25247,13 @@ EOF fi -echo "$as_me:25249: checking for mode_t" >&5 +echo "$as_me:25250: 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 25255 "configure" +#line 25256 "configure" #include "confdefs.h" $ac_includes_default int @@ -25267,16 +25268,16 @@ if (sizeof (mode_t)) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:25270: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:25271: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:25273: \$? = $ac_status" >&5 + echo "$as_me:25274: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:25276: \"$ac_try\"") >&5 + { (eval echo "$as_me:25277: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25279: \$? = $ac_status" >&5 + echo "$as_me:25280: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_type_mode_t=yes else @@ -25286,7 +25287,7 @@ ac_cv_type_mode_t=no fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:25289: result: $ac_cv_type_mode_t" >&5 +echo "$as_me:25290: 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 : @@ -25298,13 +25299,13 @@ EOF fi - echo "$as_me:25301: checking for socklen_t" >&5 + echo "$as_me:25302: 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 25307 "configure" +#line 25308 "configure" #include "confdefs.h" #include <sys/types.h> @@ -25322,16 +25323,16 @@ if (sizeof (socklen_t)) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:25325: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:25326: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:25328: \$? = $ac_status" >&5 + echo "$as_me:25329: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:25331: \"$ac_try\"") >&5 + { (eval echo "$as_me:25332: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25334: \$? = $ac_status" >&5 + echo "$as_me:25335: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_type_socklen_t=yes else @@ -25341,7 +25342,7 @@ ac_cv_type_socklen_t=no fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:25344: result: $ac_cv_type_socklen_t" >&5 +echo "$as_me:25345: 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 @@ -25356,14 +25357,14 @@ EOF fi -echo "$as_me:25359: checking for long long type" >&5 +echo "$as_me:25360: 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 else cat >conftest.$ac_ext <<_ACEOF -#line 25366 "configure" +#line 25367 "configure" #include "confdefs.h" int @@ -25375,16 +25376,16 @@ long long foo = 123456789123456789LL } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:25378: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:25379: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:25381: \$? = $ac_status" >&5 + echo "$as_me:25382: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:25384: \"$ac_try\"") >&5 + { (eval echo "$as_me:25385: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25387: \$? = $ac_status" >&5 + echo "$as_me:25388: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_type_long_long=yes else @@ -25395,7 +25396,7 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:25398: result: $cf_cv_type_long_long" >&5 +echo "$as_me:25399: 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 @@ -25405,14 +25406,14 @@ EOF fi -echo "$as_me:25408: checking for tm.tm_gmtoff" >&5 +echo "$as_me:25409: 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 25415 "configure" +#line 25416 "configure" #include "confdefs.h" #ifdef TIME_WITH_SYS_TIME @@ -25437,16 +25438,16 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:25440: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:25441: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:25443: \$? = $ac_status" >&5 + echo "$as_me:25444: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:25446: \"$ac_try\"") >&5 + { (eval echo "$as_me:25447: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25449: \$? = $ac_status" >&5 + echo "$as_me:25450: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_tm_gmtoff=yes else @@ -25457,19 +25458,19 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:25460: result: $cf_cv_tm_gmtoff" >&5 +echo "$as_me:25461: 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:25466: checking for int" >&5 +echo "$as_me:25467: 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 25472 "configure" +#line 25473 "configure" #include "confdefs.h" $ac_includes_default int @@ -25484,16 +25485,16 @@ if (sizeof (int)) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:25487: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:25488: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:25490: \$? = $ac_status" >&5 + echo "$as_me:25491: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:25493: \"$ac_try\"") >&5 + { (eval echo "$as_me:25494: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25496: \$? = $ac_status" >&5 + echo "$as_me:25497: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_type_int=yes else @@ -25503,10 +25504,10 @@ ac_cv_type_int=no fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:25506: result: $ac_cv_type_int" >&5 +echo "$as_me:25507: result: $ac_cv_type_int" >&5 echo "${ECHO_T}$ac_cv_type_int" >&6 -echo "$as_me:25509: checking size of int" >&5 +echo "$as_me:25510: 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 @@ -25515,7 +25516,7 @@ else if test "$cross_compiling" = yes; then # Depending upon the size, compute the lo and hi bounds. cat >conftest.$ac_ext <<_ACEOF -#line 25518 "configure" +#line 25519 "configure" #include "confdefs.h" $ac_includes_default int @@ -25527,21 +25528,21 @@ int _array_ [1 - 2 * !((sizeof (int)) >= 0)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:25530: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:25531: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:25533: \$? = $ac_status" >&5 + echo "$as_me:25534: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:25536: \"$ac_try\"") >&5 + { (eval echo "$as_me:25537: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25539: \$? = $ac_status" >&5 + echo "$as_me:25540: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_lo=0 ac_mid=0 while :; do cat >conftest.$ac_ext <<_ACEOF -#line 25544 "configure" +#line 25545 "configure" #include "confdefs.h" $ac_includes_default int @@ -25553,16 +25554,16 @@ int _array_ [1 - 2 * !((sizeof (int)) <= $ac_mid)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:25556: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:25557: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:25559: \$? = $ac_status" >&5 + echo "$as_me:25560: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:25562: \"$ac_try\"") >&5 + { (eval echo "$as_me:25563: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25565: \$? = $ac_status" >&5 + echo "$as_me:25566: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_hi=$ac_mid; break else @@ -25578,7 +25579,7 @@ cat conftest.$ac_ext >&5 ac_hi=-1 ac_mid=-1 while :; do cat >conftest.$ac_ext <<_ACEOF -#line 25581 "configure" +#line 25582 "configure" #include "confdefs.h" $ac_includes_default int @@ -25590,16 +25591,16 @@ int _array_ [1 - 2 * !((sizeof (int)) >= $ac_mid)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:25593: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:25594: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:25596: \$? = $ac_status" >&5 + echo "$as_me:25597: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:25599: \"$ac_try\"") >&5 + { (eval echo "$as_me:25600: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25602: \$? = $ac_status" >&5 + echo "$as_me:25603: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_lo=$ac_mid; break else @@ -25615,7 +25616,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 25618 "configure" +#line 25619 "configure" #include "confdefs.h" $ac_includes_default int @@ -25627,16 +25628,16 @@ int _array_ [1 - 2 * !((sizeof (int)) <= $ac_mid)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:25630: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:25631: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:25633: \$? = $ac_status" >&5 + echo "$as_me:25634: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:25636: \"$ac_try\"") >&5 + { (eval echo "$as_me:25637: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25639: \$? = $ac_status" >&5 + echo "$as_me:25640: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_hi=$ac_mid else @@ -25649,12 +25650,12 @@ done ac_cv_sizeof_int=$ac_lo else if test "$cross_compiling" = yes; then - { { echo "$as_me:25652: error: cannot run test program while cross compiling" >&5 + { { echo "$as_me:25653: 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 25657 "configure" +#line 25658 "configure" #include "confdefs.h" $ac_includes_default int @@ -25670,15 +25671,15 @@ fclose (f); } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:25673: \"$ac_link\"") >&5 +if { (eval echo "$as_me:25674: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:25676: \$? = $ac_status" >&5 + echo "$as_me:25677: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:25678: \"$ac_try\"") >&5 + { (eval echo "$as_me:25679: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25681: \$? = $ac_status" >&5 + echo "$as_me:25682: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_sizeof_int=`cat conftest.val` else @@ -25694,19 +25695,19 @@ else ac_cv_sizeof_int=0 fi fi -echo "$as_me:25697: result: $ac_cv_sizeof_int" >&5 +echo "$as_me:25698: 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 EOF -echo "$as_me:25703: checking for long" >&5 +echo "$as_me:25704: 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 25709 "configure" +#line 25710 "configure" #include "confdefs.h" $ac_includes_default int @@ -25721,16 +25722,16 @@ if (sizeof (long)) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:25724: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:25725: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:25727: \$? = $ac_status" >&5 + echo "$as_me:25728: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:25730: \"$ac_try\"") >&5 + { (eval echo "$as_me:25731: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25733: \$? = $ac_status" >&5 + echo "$as_me:25734: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_type_long=yes else @@ -25740,10 +25741,10 @@ ac_cv_type_long=no fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:25743: result: $ac_cv_type_long" >&5 +echo "$as_me:25744: result: $ac_cv_type_long" >&5 echo "${ECHO_T}$ac_cv_type_long" >&6 -echo "$as_me:25746: checking size of long" >&5 +echo "$as_me:25747: 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 @@ -25752,7 +25753,7 @@ else if test "$cross_compiling" = yes; then # Depending upon the size, compute the lo and hi bounds. cat >conftest.$ac_ext <<_ACEOF -#line 25755 "configure" +#line 25756 "configure" #include "confdefs.h" $ac_includes_default int @@ -25764,21 +25765,21 @@ int _array_ [1 - 2 * !((sizeof (long)) >= 0)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:25767: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:25768: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:25770: \$? = $ac_status" >&5 + echo "$as_me:25771: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:25773: \"$ac_try\"") >&5 + { (eval echo "$as_me:25774: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25776: \$? = $ac_status" >&5 + echo "$as_me:25777: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_lo=0 ac_mid=0 while :; do cat >conftest.$ac_ext <<_ACEOF -#line 25781 "configure" +#line 25782 "configure" #include "confdefs.h" $ac_includes_default int @@ -25790,16 +25791,16 @@ int _array_ [1 - 2 * !((sizeof (long)) <= $ac_mid)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:25793: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:25794: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:25796: \$? = $ac_status" >&5 + echo "$as_me:25797: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:25799: \"$ac_try\"") >&5 + { (eval echo "$as_me:25800: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25802: \$? = $ac_status" >&5 + echo "$as_me:25803: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_hi=$ac_mid; break else @@ -25815,7 +25816,7 @@ cat conftest.$ac_ext >&5 ac_hi=-1 ac_mid=-1 while :; do cat >conftest.$ac_ext <<_ACEOF -#line 25818 "configure" +#line 25819 "configure" #include "confdefs.h" $ac_includes_default int @@ -25827,16 +25828,16 @@ int _array_ [1 - 2 * !((sizeof (long)) >= $ac_mid)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:25830: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:25831: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:25833: \$? = $ac_status" >&5 + echo "$as_me:25834: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:25836: \"$ac_try\"") >&5 + { (eval echo "$as_me:25837: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25839: \$? = $ac_status" >&5 + echo "$as_me:25840: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_lo=$ac_mid; break else @@ -25852,7 +25853,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 25855 "configure" +#line 25856 "configure" #include "confdefs.h" $ac_includes_default int @@ -25864,16 +25865,16 @@ int _array_ [1 - 2 * !((sizeof (long)) <= $ac_mid)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:25867: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:25868: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:25870: \$? = $ac_status" >&5 + echo "$as_me:25871: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:25873: \"$ac_try\"") >&5 + { (eval echo "$as_me:25874: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25876: \$? = $ac_status" >&5 + echo "$as_me:25877: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_hi=$ac_mid else @@ -25886,12 +25887,12 @@ done ac_cv_sizeof_long=$ac_lo else if test "$cross_compiling" = yes; then - { { echo "$as_me:25889: error: cannot run test program while cross compiling" >&5 + { { echo "$as_me:25890: 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 25894 "configure" +#line 25895 "configure" #include "confdefs.h" $ac_includes_default int @@ -25907,15 +25908,15 @@ fclose (f); } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:25910: \"$ac_link\"") >&5 +if { (eval echo "$as_me:25911: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:25913: \$? = $ac_status" >&5 + echo "$as_me:25914: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:25915: \"$ac_try\"") >&5 + { (eval echo "$as_me:25916: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25918: \$? = $ac_status" >&5 + echo "$as_me:25919: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_sizeof_long=`cat conftest.val` else @@ -25931,19 +25932,19 @@ else ac_cv_sizeof_long=0 fi fi -echo "$as_me:25934: result: $ac_cv_sizeof_long" >&5 +echo "$as_me:25935: 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 EOF -echo "$as_me:25940: checking for off_t" >&5 +echo "$as_me:25941: 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 25946 "configure" +#line 25947 "configure" #include "confdefs.h" $ac_includes_default int @@ -25958,16 +25959,16 @@ if (sizeof (off_t)) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:25961: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:25962: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:25964: \$? = $ac_status" >&5 + echo "$as_me:25965: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:25967: \"$ac_try\"") >&5 + { (eval echo "$as_me:25968: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25970: \$? = $ac_status" >&5 + echo "$as_me:25971: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_type_off_t=yes else @@ -25977,10 +25978,10 @@ ac_cv_type_off_t=no fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:25980: result: $ac_cv_type_off_t" >&5 +echo "$as_me:25981: result: $ac_cv_type_off_t" >&5 echo "${ECHO_T}$ac_cv_type_off_t" >&6 -echo "$as_me:25983: checking size of off_t" >&5 +echo "$as_me:25984: 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 @@ -25989,7 +25990,7 @@ else if test "$cross_compiling" = yes; then # Depending upon the size, compute the lo and hi bounds. cat >conftest.$ac_ext <<_ACEOF -#line 25992 "configure" +#line 25993 "configure" #include "confdefs.h" $ac_includes_default int @@ -26001,21 +26002,21 @@ int _array_ [1 - 2 * !((sizeof (off_t)) >= 0)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:26004: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:26005: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:26007: \$? = $ac_status" >&5 + echo "$as_me:26008: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:26010: \"$ac_try\"") >&5 + { (eval echo "$as_me:26011: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:26013: \$? = $ac_status" >&5 + echo "$as_me:26014: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_lo=0 ac_mid=0 while :; do cat >conftest.$ac_ext <<_ACEOF -#line 26018 "configure" +#line 26019 "configure" #include "confdefs.h" $ac_includes_default int @@ -26027,16 +26028,16 @@ int _array_ [1 - 2 * !((sizeof (off_t)) <= $ac_mid)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:26030: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:26031: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:26033: \$? = $ac_status" >&5 + echo "$as_me:26034: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:26036: \"$ac_try\"") >&5 + { (eval echo "$as_me:26037: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:26039: \$? = $ac_status" >&5 + echo "$as_me:26040: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_hi=$ac_mid; break else @@ -26052,7 +26053,7 @@ cat conftest.$ac_ext >&5 ac_hi=-1 ac_mid=-1 while :; do cat >conftest.$ac_ext <<_ACEOF -#line 26055 "configure" +#line 26056 "configure" #include "confdefs.h" $ac_includes_default int @@ -26064,16 +26065,16 @@ int _array_ [1 - 2 * !((sizeof (off_t)) >= $ac_mid)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:26067: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:26068: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:26070: \$? = $ac_status" >&5 + echo "$as_me:26071: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:26073: \"$ac_try\"") >&5 + { (eval echo "$as_me:26074: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:26076: \$? = $ac_status" >&5 + echo "$as_me:26077: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_lo=$ac_mid; break else @@ -26089,7 +26090,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 26092 "configure" +#line 26093 "configure" #include "confdefs.h" $ac_includes_default int @@ -26101,16 +26102,16 @@ int _array_ [1 - 2 * !((sizeof (off_t)) <= $ac_mid)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:26104: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:26105: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:26107: \$? = $ac_status" >&5 + echo "$as_me:26108: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:26110: \"$ac_try\"") >&5 + { (eval echo "$as_me:26111: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:26113: \$? = $ac_status" >&5 + echo "$as_me:26114: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_hi=$ac_mid else @@ -26123,12 +26124,12 @@ done ac_cv_sizeof_off_t=$ac_lo else if test "$cross_compiling" = yes; then - { { echo "$as_me:26126: error: cannot run test program while cross compiling" >&5 + { { echo "$as_me:26127: 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 26131 "configure" +#line 26132 "configure" #include "confdefs.h" $ac_includes_default int @@ -26144,15 +26145,15 @@ fclose (f); } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:26147: \"$ac_link\"") >&5 +if { (eval echo "$as_me:26148: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:26150: \$? = $ac_status" >&5 + echo "$as_me:26151: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:26152: \"$ac_try\"") >&5 + { (eval echo "$as_me:26153: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:26155: \$? = $ac_status" >&5 + echo "$as_me:26156: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_sizeof_off_t=`cat conftest.val` else @@ -26168,19 +26169,19 @@ else ac_cv_sizeof_off_t=0 fi fi -echo "$as_me:26171: result: $ac_cv_sizeof_off_t" >&5 +echo "$as_me:26172: 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 EOF -echo "$as_me:26177: checking for time_t" >&5 +echo "$as_me:26178: 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 26183 "configure" +#line 26184 "configure" #include "confdefs.h" $ac_includes_default int @@ -26195,16 +26196,16 @@ if (sizeof (time_t)) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:26198: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:26199: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:26201: \$? = $ac_status" >&5 + echo "$as_me:26202: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:26204: \"$ac_try\"") >&5 + { (eval echo "$as_me:26205: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:26207: \$? = $ac_status" >&5 + echo "$as_me:26208: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_type_time_t=yes else @@ -26214,10 +26215,10 @@ ac_cv_type_time_t=no fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:26217: result: $ac_cv_type_time_t" >&5 +echo "$as_me:26218: result: $ac_cv_type_time_t" >&5 echo "${ECHO_T}$ac_cv_type_time_t" >&6 -echo "$as_me:26220: checking size of time_t" >&5 +echo "$as_me:26221: 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 @@ -26226,7 +26227,7 @@ else if test "$cross_compiling" = yes; then # Depending upon the size, compute the lo and hi bounds. cat >conftest.$ac_ext <<_ACEOF -#line 26229 "configure" +#line 26230 "configure" #include "confdefs.h" $ac_includes_default int @@ -26238,21 +26239,21 @@ int _array_ [1 - 2 * !((sizeof (time_t)) >= 0)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:26241: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:26242: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:26244: \$? = $ac_status" >&5 + echo "$as_me:26245: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:26247: \"$ac_try\"") >&5 + { (eval echo "$as_me:26248: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:26250: \$? = $ac_status" >&5 + echo "$as_me:26251: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_lo=0 ac_mid=0 while :; do cat >conftest.$ac_ext <<_ACEOF -#line 26255 "configure" +#line 26256 "configure" #include "confdefs.h" $ac_includes_default int @@ -26264,16 +26265,16 @@ int _array_ [1 - 2 * !((sizeof (time_t)) <= $ac_mid)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:26267: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:26268: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:26270: \$? = $ac_status" >&5 + echo "$as_me:26271: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:26273: \"$ac_try\"") >&5 + { (eval echo "$as_me:26274: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:26276: \$? = $ac_status" >&5 + echo "$as_me:26277: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_hi=$ac_mid; break else @@ -26289,7 +26290,7 @@ cat conftest.$ac_ext >&5 ac_hi=-1 ac_mid=-1 while :; do cat >conftest.$ac_ext <<_ACEOF -#line 26292 "configure" +#line 26293 "configure" #include "confdefs.h" $ac_includes_default int @@ -26301,16 +26302,16 @@ int _array_ [1 - 2 * !((sizeof (time_t)) >= $ac_mid)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:26304: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:26305: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:26307: \$? = $ac_status" >&5 + echo "$as_me:26308: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:26310: \"$ac_try\"") >&5 + { (eval echo "$as_me:26311: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:26313: \$? = $ac_status" >&5 + echo "$as_me:26314: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_lo=$ac_mid; break else @@ -26326,7 +26327,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 26329 "configure" +#line 26330 "configure" #include "confdefs.h" $ac_includes_default int @@ -26338,16 +26339,16 @@ int _array_ [1 - 2 * !((sizeof (time_t)) <= $ac_mid)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:26341: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:26342: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:26344: \$? = $ac_status" >&5 + echo "$as_me:26345: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:26347: \"$ac_try\"") >&5 + { (eval echo "$as_me:26348: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:26350: \$? = $ac_status" >&5 + echo "$as_me:26351: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_hi=$ac_mid else @@ -26360,12 +26361,12 @@ done ac_cv_sizeof_time_t=$ac_lo else if test "$cross_compiling" = yes; then - { { echo "$as_me:26363: error: cannot run test program while cross compiling" >&5 + { { echo "$as_me:26364: 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 26368 "configure" +#line 26369 "configure" #include "confdefs.h" $ac_includes_default int @@ -26381,15 +26382,15 @@ fclose (f); } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:26384: \"$ac_link\"") >&5 +if { (eval echo "$as_me:26385: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:26387: \$? = $ac_status" >&5 + echo "$as_me:26388: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:26389: \"$ac_try\"") >&5 + { (eval echo "$as_me:26390: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:26392: \$? = $ac_status" >&5 + echo "$as_me:26393: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_sizeof_time_t=`cat conftest.val` else @@ -26405,7 +26406,7 @@ else ac_cv_sizeof_time_t=0 fi fi -echo "$as_me:26408: result: $ac_cv_sizeof_time_t" >&5 +echo "$as_me:26409: 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 @@ -26413,13 +26414,13 @@ EOF # The Ultrix 4.2 mips builtin alloca declared by alloca.h only works # for constant arguments. Useless! -echo "$as_me:26416: checking for working alloca.h" >&5 +echo "$as_me:26417: 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 26422 "configure" +#line 26423 "configure" #include "confdefs.h" #include <alloca.h> int @@ -26431,16 +26432,16 @@ char *p = (char *) alloca (2 * sizeof (int)); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:26434: \"$ac_link\"") >&5 +if { (eval echo "$as_me:26435: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:26437: \$? = $ac_status" >&5 + echo "$as_me:26438: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:26440: \"$ac_try\"") >&5 + { (eval echo "$as_me:26441: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:26443: \$? = $ac_status" >&5 + echo "$as_me:26444: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_working_alloca_h=yes else @@ -26450,7 +26451,7 @@ ac_cv_working_alloca_h=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:26453: result: $ac_cv_working_alloca_h" >&5 +echo "$as_me:26454: 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 @@ -26460,13 +26461,13 @@ EOF fi -echo "$as_me:26463: checking for alloca" >&5 +echo "$as_me:26464: 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 26469 "configure" +#line 26470 "configure" #include "confdefs.h" #ifdef __GNUC__ # define alloca __builtin_alloca @@ -26498,16 +26499,16 @@ char *p = (char *) alloca (1); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:26501: \"$ac_link\"") >&5 +if { (eval echo "$as_me:26502: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:26504: \$? = $ac_status" >&5 + echo "$as_me:26505: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:26507: \"$ac_try\"") >&5 + { (eval echo "$as_me:26508: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:26510: \$? = $ac_status" >&5 + echo "$as_me:26511: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_alloca_works=yes else @@ -26517,7 +26518,7 @@ ac_cv_func_alloca_works=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:26520: result: $ac_cv_func_alloca_works" >&5 +echo "$as_me:26521: 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 @@ -26538,13 +26539,13 @@ cat >>confdefs.h <<\EOF #define C_ALLOCA 1 EOF -echo "$as_me:26541: checking whether \`alloca.c' needs Cray hooks" >&5 +echo "$as_me:26542: 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 26547 "configure" +#line 26548 "configure" #include "confdefs.h" #if defined(CRAY) && ! defined(CRAY2) webecray @@ -26562,18 +26563,18 @@ fi rm -f conftest* fi -echo "$as_me:26565: result: $ac_cv_os_cray" >&5 +echo "$as_me:26566: 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:26570: checking for $ac_func" >&5 +echo "$as_me:26571: 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 26576 "configure" +#line 26577 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. */ @@ -26604,16 +26605,16 @@ f = $ac_func; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:26607: \"$ac_link\"") >&5 +if { (eval echo "$as_me:26608: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:26610: \$? = $ac_status" >&5 + echo "$as_me:26611: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:26613: \"$ac_try\"") >&5 + { (eval echo "$as_me:26614: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:26616: \$? = $ac_status" >&5 + echo "$as_me:26617: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else @@ -26623,7 +26624,7 @@ eval "$as_ac_var=no" fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:26626: result: `eval echo '${'$as_ac_var'}'`" >&5 +echo "$as_me:26627: 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 @@ -26637,7 +26638,7 @@ fi done fi -echo "$as_me:26640: checking stack direction for C alloca" >&5 +echo "$as_me:26641: 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 @@ -26646,7 +26647,7 @@ else ac_cv_c_stack_direction=0 else cat >conftest.$ac_ext <<_ACEOF -#line 26649 "configure" +#line 26650 "configure" #include "confdefs.h" int find_stack_direction () @@ -26669,15 +26670,15 @@ main () } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:26672: \"$ac_link\"") >&5 +if { (eval echo "$as_me:26673: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:26675: \$? = $ac_status" >&5 + echo "$as_me:26676: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:26677: \"$ac_try\"") >&5 + { (eval echo "$as_me:26678: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:26680: \$? = $ac_status" >&5 + echo "$as_me:26681: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_c_stack_direction=1 else @@ -26689,7 +26690,7 @@ fi rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext fi fi -echo "$as_me:26692: result: $ac_cv_c_stack_direction" >&5 +echo "$as_me:26693: result: $ac_cv_c_stack_direction" >&5 echo "${ECHO_T}$ac_cv_c_stack_direction" >&6 cat >>confdefs.h <<EOF @@ -26701,23 +26702,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:26704: checking for $ac_header" >&5 +echo "$as_me:26705: 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 26710 "configure" +#line 26711 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:26714: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:26715: \"$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:26720: \$? = $ac_status" >&5 + echo "$as_me:26721: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -26736,7 +26737,7 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:26739: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:26740: 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 @@ -26749,13 +26750,13 @@ done for ac_func in fork vfork do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` -echo "$as_me:26752: checking for $ac_func" >&5 +echo "$as_me:26753: 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 26758 "configure" +#line 26759 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. */ @@ -26786,16 +26787,16 @@ f = $ac_func; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:26789: \"$ac_link\"") >&5 +if { (eval echo "$as_me:26790: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:26792: \$? = $ac_status" >&5 + echo "$as_me:26793: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:26795: \"$ac_try\"") >&5 + { (eval echo "$as_me:26796: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:26798: \$? = $ac_status" >&5 + echo "$as_me:26799: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else @@ -26805,7 +26806,7 @@ eval "$as_ac_var=no" fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:26808: result: `eval echo '${'$as_ac_var'}'`" >&5 +echo "$as_me:26809: 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 @@ -26817,7 +26818,7 @@ done ac_cv_func_fork_works=$ac_cv_func_fork if test "x$ac_cv_func_fork" = xyes; then - echo "$as_me:26820: checking for working fork" >&5 + echo "$as_me:26821: 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 @@ -26840,15 +26841,15 @@ else } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:26843: \"$ac_link\"") >&5 +if { (eval echo "$as_me:26844: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:26846: \$? = $ac_status" >&5 + echo "$as_me:26847: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:26848: \"$ac_try\"") >&5 + { (eval echo "$as_me:26849: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:26851: \$? = $ac_status" >&5 + echo "$as_me:26852: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_fork_works=yes else @@ -26860,7 +26861,7 @@ fi rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext fi fi -echo "$as_me:26863: result: $ac_cv_func_fork_works" >&5 +echo "$as_me:26864: result: $ac_cv_func_fork_works" >&5 echo "${ECHO_T}$ac_cv_func_fork_works" >&6 fi @@ -26874,12 +26875,12 @@ if test "x$ac_cv_func_fork_works" = xcross; then ac_cv_func_fork_works=yes ;; esac - { echo "$as_me:26877: WARNING: CROSS: Result $ac_cv_func_fork_works guessed due to cross-compiling." >&5 + { echo "$as_me:26878: 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:26882: checking for working vfork" >&5 + echo "$as_me:26883: 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 @@ -26888,7 +26889,7 @@ else ac_cv_func_vfork_works=cross else cat >conftest.$ac_ext <<_ACEOF -#line 26891 "configure" +#line 26892 "configure" #include "confdefs.h" /* Thanks to Paul Eggert for this test. */ #include <stdio.h> @@ -26985,15 +26986,15 @@ main () } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:26988: \"$ac_link\"") >&5 +if { (eval echo "$as_me:26989: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:26991: \$? = $ac_status" >&5 + echo "$as_me:26992: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:26993: \"$ac_try\"") >&5 + { (eval echo "$as_me:26994: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:26996: \$? = $ac_status" >&5 + echo "$as_me:26997: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_vfork_works=yes else @@ -27005,13 +27006,13 @@ fi rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext fi fi -echo "$as_me:27008: result: $ac_cv_func_vfork_works" >&5 +echo "$as_me:27009: 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:27014: WARNING: CROSS: Result $ac_cv_func_vfork_works guessed due to cross-compiling." >&5 + { echo "$as_me:27015: 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 @@ -27036,14 +27037,14 @@ EOF fi -echo "$as_me:27039: checking if we should use fcntl or ioctl" >&5 +echo "$as_me:27040: 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 27046 "configure" +#line 27047 "configure" #include "confdefs.h" #include <sys/types.h> @@ -27060,16 +27061,16 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:27063: \"$ac_link\"") >&5 +if { (eval echo "$as_me:27064: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:27066: \$? = $ac_status" >&5 + echo "$as_me:27067: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:27069: \"$ac_try\"") >&5 + { (eval echo "$as_me:27070: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27072: \$? = $ac_status" >&5 + echo "$as_me:27073: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_fionbio=ioctl else @@ -27077,7 +27078,7 @@ else cat conftest.$ac_ext >&5 cat >conftest.$ac_ext <<_ACEOF -#line 27080 "configure" +#line 27081 "configure" #include "confdefs.h" #include <sys/types.h> @@ -27099,16 +27100,16 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:27102: \"$ac_link\"") >&5 +if { (eval echo "$as_me:27103: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:27105: \$? = $ac_status" >&5 + echo "$as_me:27106: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:27108: \"$ac_try\"") >&5 + { (eval echo "$as_me:27109: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27111: \$? = $ac_status" >&5 + echo "$as_me:27112: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_fionbio=fcntl else @@ -27121,20 +27122,20 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:27124: result: $cf_cv_fionbio" >&5 +echo "$as_me:27125: 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:27130: checking for broken/missing definition of remove" >&5 +echo "$as_me:27131: 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 27137 "configure" +#line 27138 "configure" #include "confdefs.h" #include <stdio.h> int @@ -27146,23 +27147,23 @@ remove("dummy") } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:27149: \"$ac_link\"") >&5 +if { (eval echo "$as_me:27150: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:27152: \$? = $ac_status" >&5 + echo "$as_me:27153: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:27155: \"$ac_try\"") >&5 + { (eval echo "$as_me:27156: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27158: \$? = $ac_status" >&5 + echo "$as_me:27159: \$? = $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 27165 "configure" +#line 27166 "configure" #include "confdefs.h" #include <stdio.h> int __unlink(name) { return unlink(name); } @@ -27175,16 +27176,16 @@ remove("dummy") } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:27178: \"$ac_link\"") >&5 +if { (eval echo "$as_me:27179: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:27181: \$? = $ac_status" >&5 + echo "$as_me:27182: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:27184: \"$ac_try\"") >&5 + { (eval echo "$as_me:27185: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27187: \$? = $ac_status" >&5 + echo "$as_me:27188: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_baddef_remove=yes else @@ -27199,20 +27200,20 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:27202: result: $cf_cv_baddef_remove" >&5 +echo "$as_me:27203: 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:27208: checking for lstat" >&5 +echo "$as_me:27209: 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 27215 "configure" +#line 27216 "configure" #include "confdefs.h" #include <sys/types.h> @@ -27226,16 +27227,16 @@ lstat(".", (struct stat *)0) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:27229: \"$ac_link\"") >&5 +if { (eval echo "$as_me:27230: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:27232: \$? = $ac_status" >&5 + echo "$as_me:27233: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:27235: \"$ac_try\"") >&5 + { (eval echo "$as_me:27236: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27238: \$? = $ac_status" >&5 + echo "$as_me:27239: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_lstat=yes else @@ -27247,7 +27248,7 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:27250: result: $ac_cv_func_lstat " >&5 +echo "$as_me:27251: result: $ac_cv_func_lstat " >&5 echo "${ECHO_T}$ac_cv_func_lstat " >&6 if test $ac_cv_func_lstat = yes; then cat >>confdefs.h <<\EOF @@ -27281,13 +27282,13 @@ for ac_func in \ do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` -echo "$as_me:27284: checking for $ac_func" >&5 +echo "$as_me:27285: 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 27290 "configure" +#line 27291 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. */ @@ -27318,16 +27319,16 @@ f = $ac_func; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:27321: \"$ac_link\"") >&5 +if { (eval echo "$as_me:27322: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:27324: \$? = $ac_status" >&5 + echo "$as_me:27325: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:27327: \"$ac_try\"") >&5 + { (eval echo "$as_me:27328: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27330: \$? = $ac_status" >&5 + echo "$as_me:27331: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else @@ -27337,7 +27338,7 @@ eval "$as_ac_var=no" fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:27340: result: `eval echo '${'$as_ac_var'}'`" >&5 +echo "$as_me:27341: 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 @@ -27353,13 +27354,13 @@ for ac_func in \ do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` -echo "$as_me:27356: checking for $ac_func" >&5 +echo "$as_me:27357: 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 27362 "configure" +#line 27363 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. */ @@ -27390,16 +27391,16 @@ f = $ac_func; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:27393: \"$ac_link\"") >&5 +if { (eval echo "$as_me:27394: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:27396: \$? = $ac_status" >&5 + echo "$as_me:27397: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:27399: \"$ac_try\"") >&5 + { (eval echo "$as_me:27400: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27402: \$? = $ac_status" >&5 + echo "$as_me:27403: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else @@ -27409,7 +27410,7 @@ eval "$as_ac_var=no" fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:27412: result: `eval echo '${'$as_ac_var'}'`" >&5 +echo "$as_me:27413: 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 @@ -27421,7 +27422,7 @@ else fi done -echo "$as_me:27424: checking for random-integer functions" >&5 +echo "$as_me:27425: 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 @@ -27441,7 +27442,7 @@ do esac cat >conftest.$ac_ext <<_ACEOF -#line 27444 "configure" +#line 27445 "configure" #include "confdefs.h" #ifdef HAVE_STDLIB_H @@ -27460,16 +27461,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:27463: \"$ac_link\"") >&5 +if { (eval echo "$as_me:27464: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:27466: \$? = $ac_status" >&5 + echo "$as_me:27467: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:27469: \"$ac_try\"") >&5 + { (eval echo "$as_me:27470: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27472: \$? = $ac_status" >&5 + echo "$as_me:27473: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_srand_func=$cf_func break @@ -27481,10 +27482,10 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext done fi -echo "$as_me:27484: result: $cf_cv_srand_func" >&5 +echo "$as_me:27485: 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:27487: checking for range of random-integers" >&5 + echo "$as_me:27488: 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 @@ -27505,7 +27506,7 @@ else ;; esac cat >conftest.$ac_ext <<_ACEOF -#line 27508 "configure" +#line 27509 "configure" #include "confdefs.h" #ifdef HAVE_STDLIB_H @@ -27524,16 +27525,16 @@ long x = $cf_cv_rand_max } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:27527: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:27528: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:27530: \$? = $ac_status" >&5 + echo "$as_me:27531: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:27533: \"$ac_try\"") >&5 + { (eval echo "$as_me:27534: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27536: \$? = $ac_status" >&5 + echo "$as_me:27537: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -27544,7 +27545,7 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:27547: result: $cf_cv_rand_max" >&5 +echo "$as_me:27548: result: $cf_cv_rand_max" >&5 echo "${ECHO_T}$cf_cv_rand_max" >&6 cf_srand_func=`echo $cf_func | sed -e 's%/.*%%'` @@ -27575,13 +27576,13 @@ fi for ac_func in strstr do -echo "$as_me:27578: checking for $ac_func declaration" >&5 +echo "$as_me:27579: 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 27584 "configure" +#line 27585 "configure" #include "confdefs.h" #include <string.h> int @@ -27595,20 +27596,20 @@ extern int $ac_func(); } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:27598: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:27599: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:27601: \$? = $ac_status" >&5 + echo "$as_me:27602: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:27604: \"$ac_try\"") >&5 + { (eval echo "$as_me:27605: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27607: \$? = $ac_status" >&5 + echo "$as_me:27608: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cat >conftest.$ac_ext <<_ACEOF -#line 27611 "configure" +#line 27612 "configure" #include "confdefs.h" #include <string.h> int @@ -27622,16 +27623,16 @@ int (*p)() = $ac_func; } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:27625: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:27626: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:27628: \$? = $ac_status" >&5 + echo "$as_me:27629: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:27631: \"$ac_try\"") >&5 + { (eval echo "$as_me:27632: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27634: \$? = $ac_status" >&5 + echo "$as_me:27635: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "ac_cv_func_decl_$ac_func=yes" @@ -27652,11 +27653,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:27655: result: yes" >&5 + echo "$as_me:27656: result: yes" >&5 echo "${ECHO_T}yes" >&6 : else - echo "$as_me:27659: result: no" >&5 + echo "$as_me:27660: result: no" >&5 echo "${ECHO_T}no" >&6 ac_tr_func=`echo "DECL_$ac_func" | sed y%abcdefghijklmnopqrstuvwxyz./-%ABCDEFGHIJKLMNOPQRSTUVWXYZ___%` @@ -27671,13 +27672,13 @@ done for ac_func in getgrgid getgrnam do -echo "$as_me:27674: checking for $ac_func declaration" >&5 +echo "$as_me:27675: 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 27680 "configure" +#line 27681 "configure" #include "confdefs.h" #include <stdio.h> @@ -27693,20 +27694,20 @@ extern int $ac_func(); } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:27696: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:27697: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:27699: \$? = $ac_status" >&5 + echo "$as_me:27700: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:27702: \"$ac_try\"") >&5 + { (eval echo "$as_me:27703: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27705: \$? = $ac_status" >&5 + echo "$as_me:27706: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cat >conftest.$ac_ext <<_ACEOF -#line 27709 "configure" +#line 27710 "configure" #include "confdefs.h" #include <stdio.h> @@ -27722,16 +27723,16 @@ int (*p)() = $ac_func; } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:27725: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:27726: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:27728: \$? = $ac_status" >&5 + echo "$as_me:27729: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:27731: \"$ac_try\"") >&5 + { (eval echo "$as_me:27732: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27734: \$? = $ac_status" >&5 + echo "$as_me:27735: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "ac_cv_func_decl_$ac_func=yes" @@ -27752,11 +27753,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:27755: result: yes" >&5 + echo "$as_me:27756: result: yes" >&5 echo "${ECHO_T}yes" >&6 : else - echo "$as_me:27759: result: no" >&5 + echo "$as_me:27760: result: no" >&5 echo "${ECHO_T}no" >&6 ac_tr_func=`echo "DECL_$ac_func" | sed y%abcdefghijklmnopqrstuvwxyz./-%ABCDEFGHIJKLMNOPQRSTUVWXYZ___%` @@ -27768,14 +27769,14 @@ EOF fi done -echo "$as_me:27771: checking if TRUE/FALSE are defined" >&5 +echo "$as_me:27772: 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 27778 "configure" +#line 27779 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header-curses.h}> @@ -27789,16 +27790,16 @@ int x = TRUE, y = FALSE } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:27792: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:27793: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:27795: \$? = $ac_status" >&5 + echo "$as_me:27796: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:27798: \"$ac_try\"") >&5 + { (eval echo "$as_me:27799: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27801: \$? = $ac_status" >&5 + echo "$as_me:27802: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_bool_defs=yes else @@ -27809,7 +27810,7 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:27812: result: $cf_cv_bool_defs" >&5 +echo "$as_me:27813: result: $cf_cv_bool_defs" >&5 echo "${ECHO_T}$cf_cv_bool_defs" >&6 if test "$cf_cv_bool_defs" = no ; then cat >>confdefs.h <<\EOF @@ -27822,14 +27823,14 @@ EOF fi -echo "$as_me:27825: checking if external errno is declared" >&5 +echo "$as_me:27826: 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 27832 "configure" +#line 27833 "configure" #include "confdefs.h" #ifdef HAVE_STDLIB_H @@ -27847,16 +27848,16 @@ int x = (int) errno } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:27850: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:27851: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:27853: \$? = $ac_status" >&5 + echo "$as_me:27854: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:27856: \"$ac_try\"") >&5 + { (eval echo "$as_me:27857: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27859: \$? = $ac_status" >&5 + echo "$as_me:27860: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_dcl_errno=yes else @@ -27867,7 +27868,7 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:27870: result: $cf_cv_dcl_errno" >&5 +echo "$as_me:27871: result: $cf_cv_dcl_errno" >&5 echo "${ECHO_T}$cf_cv_dcl_errno" >&6 if test "$cf_cv_dcl_errno" = no ; then @@ -27882,14 +27883,14 @@ fi # It's possible (for near-UNIX clones) that the data doesn't exist -echo "$as_me:27885: checking if external errno exists" >&5 +echo "$as_me:27886: 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 27892 "configure" +#line 27893 "configure" #include "confdefs.h" #undef errno @@ -27904,16 +27905,16 @@ errno = 2 } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:27907: \"$ac_link\"") >&5 +if { (eval echo "$as_me:27908: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:27910: \$? = $ac_status" >&5 + echo "$as_me:27911: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:27913: \"$ac_try\"") >&5 + { (eval echo "$as_me:27914: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27916: \$? = $ac_status" >&5 + echo "$as_me:27917: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_have_errno=yes else @@ -27924,7 +27925,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:27927: result: $cf_cv_have_errno" >&5 +echo "$as_me:27928: result: $cf_cv_have_errno" >&5 echo "${ECHO_T}$cf_cv_have_errno" >&6 if test "$cf_cv_have_errno" = yes ; then @@ -27937,7 +27938,7 @@ EOF fi -echo "$as_me:27940: checking if we can set errno" >&5 +echo "$as_me:27941: 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 @@ -27945,7 +27946,7 @@ else if test "$cross_compiling" = yes; then cat >conftest.$ac_ext <<_ACEOF -#line 27948 "configure" +#line 27949 "configure" #include "confdefs.h" #include <errno.h> int @@ -27957,16 +27958,16 @@ errno = 255 } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:27960: \"$ac_link\"") >&5 +if { (eval echo "$as_me:27961: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:27963: \$? = $ac_status" >&5 + echo "$as_me:27964: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:27966: \"$ac_try\"") >&5 + { (eval echo "$as_me:27967: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27969: \$? = $ac_status" >&5 + echo "$as_me:27970: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_set_errno=maybe else @@ -27977,7 +27978,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext else cat >conftest.$ac_ext <<_ACEOF -#line 27980 "configure" +#line 27981 "configure" #include "confdefs.h" #include <errno.h> @@ -27988,15 +27989,15 @@ int main() } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:27991: \"$ac_link\"") >&5 +if { (eval echo "$as_me:27992: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:27994: \$? = $ac_status" >&5 + echo "$as_me:27995: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:27996: \"$ac_try\"") >&5 + { (eval echo "$as_me:27997: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27999: \$? = $ac_status" >&5 + echo "$as_me:28000: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_set_errno=yes else @@ -28009,20 +28010,20 @@ rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext fi fi -echo "$as_me:28012: result: $cf_cv_set_errno" >&5 +echo "$as_me:28013: 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:28018: checking for setlocale()" >&5 +echo "$as_me:28019: 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 28025 "configure" +#line 28026 "configure" #include "confdefs.h" #include <locale.h> int @@ -28034,16 +28035,16 @@ setlocale(LC_ALL, "") } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:28037: \"$ac_link\"") >&5 +if { (eval echo "$as_me:28038: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:28040: \$? = $ac_status" >&5 + echo "$as_me:28041: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:28043: \"$ac_try\"") >&5 + { (eval echo "$as_me:28044: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28046: \$? = $ac_status" >&5 + echo "$as_me:28047: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_locale=yes else @@ -28055,21 +28056,21 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:28058: result: $cf_cv_locale" >&5 +echo "$as_me:28059: result: $cf_cv_locale" >&5 echo "${ECHO_T}$cf_cv_locale" >&6 test $cf_cv_locale = yes && { cat >>confdefs.h <<\EOF #define LOCALE 1 EOF } -echo "$as_me:28065: checking if NGROUPS is defined" >&5 +echo "$as_me:28066: 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 28072 "configure" +#line 28073 "configure" #include "confdefs.h" #if HAVE_SYS_PARAM_H @@ -28088,23 +28089,23 @@ int x = NGROUPS } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:28091: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:28092: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:28094: \$? = $ac_status" >&5 + echo "$as_me:28095: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:28097: \"$ac_try\"") >&5 + { (eval echo "$as_me:28098: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28100: \$? = $ac_status" >&5 + echo "$as_me:28101: \$? = $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 28107 "configure" +#line 28108 "configure" #include "confdefs.h" #if HAVE_SYS_PARAM_H @@ -28123,16 +28124,16 @@ int x = NGROUPS_MAX } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:28126: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:28127: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:28129: \$? = $ac_status" >&5 + echo "$as_me:28130: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:28132: \"$ac_try\"") >&5 + { (eval echo "$as_me:28133: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28135: \$? = $ac_status" >&5 + echo "$as_me:28136: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_ngroups=NGROUPS_MAX else @@ -28144,7 +28145,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext fi rm -f conftest.$ac_objext conftest.$ac_ext -echo "$as_me:28147: result: $cf_cv_ngroups" >&5 +echo "$as_me:28148: result: $cf_cv_ngroups" >&5 echo "${ECHO_T}$cf_cv_ngroups" >&6 fi @@ -28161,14 +28162,14 @@ EOF fi -echo "$as_me:28164: checking if external sys_nerr is declared" >&5 +echo "$as_me:28165: 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 28171 "configure" +#line 28172 "configure" #include "confdefs.h" #ifdef HAVE_STDLIB_H @@ -28186,16 +28187,16 @@ int x = (int) sys_nerr } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:28189: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:28190: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:28192: \$? = $ac_status" >&5 + echo "$as_me:28193: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:28195: \"$ac_try\"") >&5 + { (eval echo "$as_me:28196: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28198: \$? = $ac_status" >&5 + echo "$as_me:28199: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_dcl_sys_nerr=yes else @@ -28206,7 +28207,7 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:28209: result: $cf_cv_dcl_sys_nerr" >&5 +echo "$as_me:28210: 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 @@ -28221,14 +28222,14 @@ fi # It's possible (for near-UNIX clones) that the data doesn't exist -echo "$as_me:28224: checking if external sys_nerr exists" >&5 +echo "$as_me:28225: 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 28231 "configure" +#line 28232 "configure" #include "confdefs.h" #undef sys_nerr @@ -28243,16 +28244,16 @@ sys_nerr = 2 } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:28246: \"$ac_link\"") >&5 +if { (eval echo "$as_me:28247: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:28249: \$? = $ac_status" >&5 + echo "$as_me:28250: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:28252: \"$ac_try\"") >&5 + { (eval echo "$as_me:28253: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28255: \$? = $ac_status" >&5 + echo "$as_me:28256: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_have_sys_nerr=yes else @@ -28263,7 +28264,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:28266: result: $cf_cv_have_sys_nerr" >&5 +echo "$as_me:28267: 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 @@ -28276,14 +28277,14 @@ EOF fi -echo "$as_me:28279: checking if external sys_errlist is declared" >&5 +echo "$as_me:28280: 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 28286 "configure" +#line 28287 "configure" #include "confdefs.h" #ifdef HAVE_STDLIB_H @@ -28301,16 +28302,16 @@ int x = (int) sys_errlist } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:28304: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:28305: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:28307: \$? = $ac_status" >&5 + echo "$as_me:28308: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:28310: \"$ac_try\"") >&5 + { (eval echo "$as_me:28311: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28313: \$? = $ac_status" >&5 + echo "$as_me:28314: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_dcl_sys_errlist=yes else @@ -28321,7 +28322,7 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:28324: result: $cf_cv_dcl_sys_errlist" >&5 +echo "$as_me:28325: 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 @@ -28336,14 +28337,14 @@ fi # It's possible (for near-UNIX clones) that the data doesn't exist -echo "$as_me:28339: checking if external sys_errlist exists" >&5 +echo "$as_me:28340: 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 28346 "configure" +#line 28347 "configure" #include "confdefs.h" #undef sys_errlist @@ -28358,16 +28359,16 @@ sys_errlist = 2 } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:28361: \"$ac_link\"") >&5 +if { (eval echo "$as_me:28362: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:28364: \$? = $ac_status" >&5 + echo "$as_me:28365: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:28367: \"$ac_try\"") >&5 + { (eval echo "$as_me:28368: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28370: \$? = $ac_status" >&5 + echo "$as_me:28371: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_have_sys_errlist=yes else @@ -28378,7 +28379,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:28381: result: $cf_cv_have_sys_errlist" >&5 +echo "$as_me:28382: 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 @@ -28394,23 +28395,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:28397: checking for $ac_header" >&5 +echo "$as_me:28398: 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 28403 "configure" +#line 28404 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:28407: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:28408: \"$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:28413: \$? = $ac_status" >&5 + echo "$as_me:28414: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -28429,7 +28430,7 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:28432: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:28433: 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 @@ -28439,14 +28440,14 @@ EOF fi done -echo "$as_me:28442: checking for lastlog path" >&5 +echo "$as_me:28443: 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 28449 "configure" +#line 28450 "configure" #include "confdefs.h" #include <sys/types.h> @@ -28466,16 +28467,16 @@ char *path = _PATH_LASTLOG } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:28469: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:28470: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:28472: \$? = $ac_status" >&5 + echo "$as_me:28473: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:28475: \"$ac_try\"") >&5 + { (eval echo "$as_me:28476: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28478: \$? = $ac_status" >&5 + echo "$as_me:28479: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_path_lastlog="_PATH_LASTLOG" else @@ -28490,13 +28491,13 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:28493: result: $cf_cv_path_lastlog" >&5 +echo "$as_me:28494: 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:28499: checking for utmp implementation" >&5 +echo "$as_me:28500: 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 @@ -28513,7 +28514,7 @@ cf_utmp_includes=" #endif " cat >conftest.$ac_ext <<_ACEOF -#line 28516 "configure" +#line 28517 "configure" #include "confdefs.h" $cf_utmp_includes int @@ -28527,16 +28528,16 @@ struct $cf_header x; } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:28530: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:28531: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:28533: \$? = $ac_status" >&5 + echo "$as_me:28534: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:28536: \"$ac_try\"") >&5 + { (eval echo "$as_me:28537: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28539: \$? = $ac_status" >&5 + echo "$as_me:28540: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_have_utmp=$cf_header break @@ -28545,7 +28546,7 @@ else cat conftest.$ac_ext >&5 cat >conftest.$ac_ext <<_ACEOF -#line 28548 "configure" +#line 28549 "configure" #include "confdefs.h" $cf_utmp_includes int @@ -28559,16 +28560,16 @@ struct $cf_header x; } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:28562: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:28563: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:28565: \$? = $ac_status" >&5 + echo "$as_me:28566: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:28568: \"$ac_try\"") >&5 + { (eval echo "$as_me:28569: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28571: \$? = $ac_status" >&5 + echo "$as_me:28572: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_have_utmp=$cf_header break @@ -28583,7 +28584,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext done fi -echo "$as_me:28586: result: $cf_cv_have_utmp" >&5 +echo "$as_me:28587: result: $cf_cv_have_utmp" >&5 echo "${ECHO_T}$cf_cv_have_utmp" >&6 if test $cf_cv_have_utmp != no ; then @@ -28596,14 +28597,14 @@ EOF EOF if test $cf_cv_have_utmp != no ; then -echo "$as_me:28599: checking if ${cf_cv_have_utmp}.ut_host is declared" >&5 +echo "$as_me:28600: 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 28606 "configure" +#line 28607 "configure" #include "confdefs.h" #include <sys/types.h> @@ -28617,16 +28618,16 @@ struct $cf_cv_have_utmp x; char *y = &x.ut_host[0] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:28620: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:28621: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:28623: \$? = $ac_status" >&5 + echo "$as_me:28624: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:28626: \"$ac_try\"") >&5 + { (eval echo "$as_me:28627: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28629: \$? = $ac_status" >&5 + echo "$as_me:28630: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_have_utmp_ut_host=yes else @@ -28638,7 +28639,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:28641: result: $cf_cv_have_utmp_ut_host" >&5 +echo "$as_me:28642: 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 #define HAVE_UTMP_UT_HOST 1 @@ -28647,14 +28648,14 @@ EOF fi if test $cf_cv_have_utmp != no ; then -echo "$as_me:28650: checking if ${cf_cv_have_utmp}.ut_syslen is declared" >&5 +echo "$as_me:28651: 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 28657 "configure" +#line 28658 "configure" #include "confdefs.h" #include <sys/types.h> @@ -28668,16 +28669,16 @@ struct $cf_cv_have_utmp x; int y = x.ut_syslen } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:28671: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:28672: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:28674: \$? = $ac_status" >&5 + echo "$as_me:28675: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:28677: \"$ac_try\"") >&5 + { (eval echo "$as_me:28678: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28680: \$? = $ac_status" >&5 + echo "$as_me:28681: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_have_utmp_ut_syslen=yes else @@ -28689,7 +28690,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:28692: result: $cf_cv_have_utmp_ut_syslen" >&5 +echo "$as_me:28693: 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 #define HAVE_UTMP_UT_SYSLEN 1 @@ -28698,7 +28699,7 @@ EOF fi if test $cf_cv_have_utmp != no ; then -echo "$as_me:28701: checking if ${cf_cv_have_utmp}.ut_name is declared" >&5 +echo "$as_me:28702: 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 @@ -28715,7 +28716,7 @@ cf_utmp_includes=" " for cf_header in ut_name ut_user ; do cat >conftest.$ac_ext <<_ACEOF -#line 28718 "configure" +#line 28719 "configure" #include "confdefs.h" $cf_utmp_includes int @@ -28729,16 +28730,16 @@ struct $cf_cv_have_utmp x; } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:28732: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:28733: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:28735: \$? = $ac_status" >&5 + echo "$as_me:28736: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:28738: \"$ac_try\"") >&5 + { (eval echo "$as_me:28739: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28741: \$? = $ac_status" >&5 + echo "$as_me:28742: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_have_utmp_ut_name=$cf_header break @@ -28750,12 +28751,12 @@ rm -f conftest.$ac_objext conftest.$ac_ext done fi -echo "$as_me:28753: result: $cf_cv_have_utmp_ut_name" >&5 +echo "$as_me:28754: result: $cf_cv_have_utmp_ut_name" >&5 echo "${ECHO_T}$cf_cv_have_utmp_ut_name" >&6 case $cf_cv_have_utmp_ut_name in #(vi no) #(vi - { { echo "$as_me:28758: error: Cannot find declaration for ut.ut_name" >&5 + { { echo "$as_me:28759: 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; }; } ;; @@ -28769,7 +28770,7 @@ esac fi if test $cf_cv_have_utmp != no ; then -echo "$as_me:28772: checking for exit-status in $cf_cv_have_utmp" >&5 +echo "$as_me:28773: 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 @@ -28782,7 +28783,7 @@ for cf_result in \ ut_exit.ut_exit do cat >conftest.$ac_ext <<_ACEOF -#line 28785 "configure" +#line 28786 "configure" #include "confdefs.h" #include <sys/types.h> @@ -28796,16 +28797,16 @@ struct $cf_cv_have_utmp x; long y = x.$cf_result = 0 } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:28799: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:28800: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:28802: \$? = $ac_status" >&5 + echo "$as_me:28803: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:28805: \"$ac_try\"") >&5 + { (eval echo "$as_me:28806: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28808: \$? = $ac_status" >&5 + echo "$as_me:28809: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_have_utmp_ut_xstatus=$cf_result break @@ -28818,7 +28819,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext done fi -echo "$as_me:28821: result: $cf_cv_have_utmp_ut_xstatus" >&5 +echo "$as_me:28822: 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 cat >>confdefs.h <<\EOF @@ -28833,14 +28834,14 @@ fi fi if test $cf_cv_have_utmp != no ; then -echo "$as_me:28836: checking if ${cf_cv_have_utmp}.ut_xtime is declared" >&5 +echo "$as_me:28837: 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 28843 "configure" +#line 28844 "configure" #include "confdefs.h" #include <sys/types.h> @@ -28854,23 +28855,23 @@ struct $cf_cv_have_utmp x; long y = x.ut_xtime = 0 } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:28857: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:28858: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:28860: \$? = $ac_status" >&5 + echo "$as_me:28861: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:28863: \"$ac_try\"") >&5 + { (eval echo "$as_me:28864: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28866: \$? = $ac_status" >&5 + echo "$as_me:28867: \$? = $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 28873 "configure" +#line 28874 "configure" #include "confdefs.h" #include <sys/types.h> @@ -28884,16 +28885,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:28887: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:28888: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:28890: \$? = $ac_status" >&5 + echo "$as_me:28891: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:28893: \"$ac_try\"") >&5 + { (eval echo "$as_me:28894: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28896: \$? = $ac_status" >&5 + echo "$as_me:28897: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_have_utmp_ut_xtime=define else @@ -28907,7 +28908,7 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:28910: result: $cf_cv_have_utmp_ut_xtime" >&5 +echo "$as_me:28911: 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 cat >>confdefs.h <<\EOF @@ -28924,14 +28925,14 @@ fi fi if test $cf_cv_have_utmp != no ; then -echo "$as_me:28927: checking if ${cf_cv_have_utmp}.ut_session is declared" >&5 +echo "$as_me:28928: 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 28934 "configure" +#line 28935 "configure" #include "confdefs.h" #include <sys/types.h> @@ -28945,16 +28946,16 @@ struct $cf_cv_have_utmp x; long y = x.ut_session } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:28948: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:28949: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:28951: \$? = $ac_status" >&5 + echo "$as_me:28952: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:28954: \"$ac_try\"") >&5 + { (eval echo "$as_me:28955: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28957: \$? = $ac_status" >&5 + echo "$as_me:28958: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_have_utmp_ut_session=yes else @@ -28965,7 +28966,7 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:28968: result: $cf_cv_have_utmp_ut_session" >&5 +echo "$as_me:28969: 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 cat >>confdefs.h <<\EOF @@ -28975,7 +28976,7 @@ EOF fi fi -echo "$as_me:28978: checking if $cf_cv_have_utmp is SYSV flavor" >&5 +echo "$as_me:28979: 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 @@ -28983,7 +28984,7 @@ else test "$cf_cv_have_utmp" = "utmp" && cf_prefix="ut" || cf_prefix="utx" cat >conftest.$ac_ext <<_ACEOF -#line 28986 "configure" +#line 28987 "configure" #include "confdefs.h" #include <sys/types.h> @@ -29002,16 +29003,16 @@ struct $cf_cv_have_utmp x; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:29005: \"$ac_link\"") >&5 +if { (eval echo "$as_me:29006: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:29008: \$? = $ac_status" >&5 + echo "$as_me:29009: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:29011: \"$ac_try\"") >&5 + { (eval echo "$as_me:29012: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:29014: \$? = $ac_status" >&5 + echo "$as_me:29015: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_sysv_utmp=yes else @@ -29022,7 +29023,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:29025: result: $cf_cv_sysv_utmp" >&5 +echo "$as_me:29026: result: $cf_cv_sysv_utmp" >&5 echo "${ECHO_T}$cf_cv_sysv_utmp" >&6 test $cf_cv_sysv_utmp = yes && cat >>confdefs.h <<\EOF #define USE_SYSV_UTMP 1 @@ -29030,14 +29031,14 @@ EOF fi -echo "$as_me:29033: checking if external h_errno exists" >&5 +echo "$as_me:29034: 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 29040 "configure" +#line 29041 "configure" #include "confdefs.h" #undef h_errno @@ -29052,16 +29053,16 @@ h_errno = 2 } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:29055: \"$ac_link\"") >&5 +if { (eval echo "$as_me:29056: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:29058: \$? = $ac_status" >&5 + echo "$as_me:29059: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:29061: \"$ac_try\"") >&5 + { (eval echo "$as_me:29062: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:29064: \$? = $ac_status" >&5 + echo "$as_me:29065: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_have_h_errno=yes else @@ -29072,7 +29073,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:29075: result: $cf_cv_have_h_errno" >&5 +echo "$as_me:29076: 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 @@ -29085,7 +29086,7 @@ EOF fi -echo "$as_me:29088: checking if bibp: URLs should be supported" >&5 +echo "$as_me:29089: 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. @@ -29102,13 +29103,13 @@ else use_bibp_urls=yes fi; -echo "$as_me:29105: result: $use_bibp_urls" >&5 +echo "$as_me:29106: 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:29111: checking if configuration info should be browsable" >&5 +echo "$as_me:29112: 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. @@ -29125,13 +29126,13 @@ else use_config_info=yes fi; -echo "$as_me:29128: result: $use_config_info" >&5 +echo "$as_me:29129: 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:29134: checking if new-style forms-based options screen should be used" >&5 +echo "$as_me:29135: 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. @@ -29148,13 +29149,13 @@ else use_forms_options=yes fi; -echo "$as_me:29151: result: $use_forms_options" >&5 +echo "$as_me:29152: 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:29157: checking if old-style options menu should be used" >&5 +echo "$as_me:29158: 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. @@ -29171,13 +29172,13 @@ else use_menu_options=yes fi; -echo "$as_me:29174: result: $use_menu_options" >&5 +echo "$as_me:29175: 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:29180: checking if sessions code should be used" >&5 +echo "$as_me:29181: 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. @@ -29194,7 +29195,7 @@ else use_sessions=yes fi; -echo "$as_me:29197: result: $use_sessions" >&5 +echo "$as_me:29198: result: $use_sessions" >&5 echo "${ECHO_T}$use_sessions" >&6 if test $use_sessions != no ; then cat >>confdefs.h <<\EOF @@ -29204,7 +29205,7 @@ EOF EXTRA_OBJS="$EXTRA_OBJS LYSession\$o" fi -echo "$as_me:29207: checking if session-caching code should be used" >&5 +echo "$as_me:29208: 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. @@ -29221,7 +29222,7 @@ else use_session_cache=yes fi; -echo "$as_me:29224: result: $use_session_cache" >&5 +echo "$as_me:29225: result: $use_session_cache" >&5 echo "${ECHO_T}$use_session_cache" >&6 if test $use_session_cache != no ; then cat >>confdefs.h <<\EOF @@ -29230,7 +29231,7 @@ EOF fi -echo "$as_me:29233: checking if experimental address-list page should be used" >&5 +echo "$as_me:29234: checking if experimental address-list page should be used" >&5 echo $ECHO_N "checking if experimental address-list page should be used... $ECHO_C" >&6 # Check whether --enable-addrlist-page or --disable-addrlist-page was given. @@ -29247,13 +29248,13 @@ else use_addrlist_page=no fi; -echo "$as_me:29250: result: $use_addrlist_page" >&5 +echo "$as_me:29251: result: $use_addrlist_page" >&5 echo "${ECHO_T}$use_addrlist_page" >&6 test $use_addrlist_page != no && cat >>confdefs.h <<\EOF #define EXP_ADDRLIST_PAGE 1 EOF -echo "$as_me:29256: checking if experimental CJK logic should be used" >&5 +echo "$as_me:29257: 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. @@ -29270,13 +29271,13 @@ else use_cjk=no fi; -echo "$as_me:29273: result: $use_cjk" >&5 +echo "$as_me:29274: 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:29279: checking if experimental Japanese UTF-8 logic should be used" >&5 +echo "$as_me:29280: 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. @@ -29293,7 +29294,7 @@ else use_ja_utf8=no fi; -echo "$as_me:29296: result: $use_ja_utf8" >&5 +echo "$as_me:29297: result: $use_ja_utf8" >&5 echo "${ECHO_T}$use_ja_utf8" >&6 if test $use_ja_utf8 != no ; then cat >>confdefs.h <<\EOF @@ -29338,7 +29339,7 @@ if test -n "$cf_searchpath/include" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 29341 "configure" +#line 29342 "configure" #include "confdefs.h" #include <stdio.h> int @@ -29350,16 +29351,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:29353: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:29354: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:29356: \$? = $ac_status" >&5 + echo "$as_me:29357: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:29359: \"$ac_try\"") >&5 + { (eval echo "$as_me:29360: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:29362: \$? = $ac_status" >&5 + echo "$as_me:29363: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -29376,7 +29377,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}:29379: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me-configure}:29380: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -29417,7 +29418,7 @@ if test -n "$cf_searchpath/../include" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 29420 "configure" +#line 29421 "configure" #include "confdefs.h" #include <stdio.h> int @@ -29429,16 +29430,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:29432: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:29433: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:29435: \$? = $ac_status" >&5 + echo "$as_me:29436: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:29438: \"$ac_try\"") >&5 + { (eval echo "$as_me:29439: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:29441: \$? = $ac_status" >&5 + echo "$as_me:29442: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -29455,7 +29456,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}:29458: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me-configure}:29459: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -29471,7 +29472,7 @@ echo "${as_me-configure}:29458: testing adding $cf_add_incdir to include-path .. fi else -{ { echo "$as_me:29474: error: cannot find libiconv under $withval" >&5 +{ { echo "$as_me:29475: error: cannot find libiconv under $withval" >&5 echo "$as_me: error: cannot find libiconv under $withval" >&2;} { (exit 1); exit 1; }; } fi @@ -29496,7 +29497,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}:29499: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me-configure}:29500: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -29525,7 +29526,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}:29528: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me-configure}:29529: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -29534,7 +29535,7 @@ echo "${as_me-configure}:29528: testing adding $cf_add_libdir to library-path .. fi else -{ { echo "$as_me:29537: error: cannot find libiconv under $withval" >&5 +{ { echo "$as_me:29538: error: cannot find libiconv under $withval" >&5 echo "$as_me: error: cannot find libiconv under $withval" >&2;} { (exit 1); exit 1; }; } fi @@ -29545,7 +29546,7 @@ done fi; - echo "$as_me:29548: checking for iconv" >&5 + echo "$as_me:29549: 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 @@ -29556,12 +29557,12 @@ else cf_cv_header_path_iconv= cf_cv_library_path_iconv= -echo "${as_me-configure}:29559: testing Starting FIND_LINKAGE(iconv,) ..." 1>&5 +echo "${as_me-configure}:29560: testing Starting FIND_LINKAGE(iconv,) ..." 1>&5 cf_save_LIBS="$LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 29564 "configure" +#line 29565 "configure" #include "confdefs.h" #include <stdlib.h> @@ -29580,16 +29581,16 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:29583: \"$ac_link\"") >&5 +if { (eval echo "$as_me:29584: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:29586: \$? = $ac_status" >&5 + echo "$as_me:29587: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:29589: \"$ac_try\"") >&5 + { (eval echo "$as_me:29590: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:29592: \$? = $ac_status" >&5 + echo "$as_me:29593: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_find_linkage_iconv=yes @@ -29603,7 +29604,7 @@ cat conftest.$ac_ext >&5 LIBS="-liconv $cf_save_LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 29606 "configure" +#line 29607 "configure" #include "confdefs.h" #include <stdlib.h> @@ -29622,16 +29623,16 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:29625: \"$ac_link\"") >&5 +if { (eval echo "$as_me:29626: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:29628: \$? = $ac_status" >&5 + echo "$as_me:29629: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:29631: \"$ac_try\"") >&5 + { (eval echo "$as_me:29632: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:29634: \$? = $ac_status" >&5 + echo "$as_me:29635: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_find_linkage_iconv=yes @@ -29648,9 +29649,9 @@ cat conftest.$ac_ext >&5 test -n "$verbose" && echo " find linkage for iconv library" 1>&6 -echo "${as_me-configure}:29651: testing find linkage for iconv library ..." 1>&5 +echo "${as_me-configure}:29652: testing find linkage for iconv library ..." 1>&5 -echo "${as_me-configure}:29653: testing Searching for headers in FIND_LINKAGE(iconv,) ..." 1>&5 +echo "${as_me-configure}:29654: testing Searching for headers in FIND_LINKAGE(iconv,) ..." 1>&5 cf_save_CPPFLAGS="$CPPFLAGS" cf_test_CPPFLAGS="$CPPFLAGS" @@ -29763,11 +29764,11 @@ cf_search="$cf_search $cf_header_path_list" if test -d $cf_cv_header_path_iconv ; then test -n "$verbose" && echo " ... testing $cf_cv_header_path_iconv" 1>&6 -echo "${as_me-configure}:29766: testing ... testing $cf_cv_header_path_iconv ..." 1>&5 +echo "${as_me-configure}:29767: testing ... testing $cf_cv_header_path_iconv ..." 1>&5 CPPFLAGS="$cf_save_CPPFLAGS -I$cf_cv_header_path_iconv" cat >conftest.$ac_ext <<_ACEOF -#line 29770 "configure" +#line 29771 "configure" #include "confdefs.h" #include <stdlib.h> @@ -29786,21 +29787,21 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:29789: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:29790: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:29792: \$? = $ac_status" >&5 + echo "$as_me:29793: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:29795: \"$ac_try\"") >&5 + { (eval echo "$as_me:29796: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:29798: \$? = $ac_status" >&5 + echo "$as_me:29799: \$? = $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}:29803: testing ... found iconv headers in $cf_cv_header_path_iconv ..." 1>&5 +echo "${as_me-configure}:29804: testing ... found iconv headers in $cf_cv_header_path_iconv ..." 1>&5 cf_cv_find_linkage_iconv=maybe cf_test_CPPFLAGS="$CPPFLAGS" @@ -29818,7 +29819,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "$cf_cv_find_linkage_iconv" = maybe ; then -echo "${as_me-configure}:29821: testing Searching for iconv library in FIND_LINKAGE(iconv,) ..." 1>&5 +echo "${as_me-configure}:29822: testing Searching for iconv library in FIND_LINKAGE(iconv,) ..." 1>&5 cf_save_LIBS="$LIBS" cf_save_LDFLAGS="$LDFLAGS" @@ -29915,13 +29916,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}:29918: testing ... testing $cf_cv_library_path_iconv ..." 1>&5 +echo "${as_me-configure}:29919: 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 29924 "configure" +#line 29925 "configure" #include "confdefs.h" #include <stdlib.h> @@ -29940,21 +29941,21 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:29943: \"$ac_link\"") >&5 +if { (eval echo "$as_me:29944: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:29946: \$? = $ac_status" >&5 + echo "$as_me:29947: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:29949: \"$ac_try\"") >&5 + { (eval echo "$as_me:29950: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:29952: \$? = $ac_status" >&5 + echo "$as_me:29953: \$? = $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}:29957: testing ... found iconv library in $cf_cv_library_path_iconv ..." 1>&5 +echo "${as_me-configure}:29958: testing ... found iconv library in $cf_cv_library_path_iconv ..." 1>&5 cf_cv_find_linkage_iconv=yes cf_cv_library_file_iconv="-liconv" @@ -29994,7 +29995,7 @@ am_cv_func_iconv="no, consider installing GNU libiconv" fi fi -echo "$as_me:29997: result: $am_cv_func_iconv" >&5 +echo "$as_me:29998: result: $am_cv_func_iconv" >&5 echo "${ECHO_T}$am_cv_func_iconv" >&6 if test "$am_cv_func_iconv" = yes; then @@ -30003,14 +30004,14 @@ cat >>confdefs.h <<\EOF #define HAVE_ICONV 1 EOF - echo "$as_me:30006: checking if the declaration of iconv() needs const." >&5 + echo "$as_me:30007: 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 30013 "configure" +#line 30014 "configure" #include "confdefs.h" #include <stdlib.h> @@ -30035,16 +30036,16 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:30038: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:30039: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:30041: \$? = $ac_status" >&5 + echo "$as_me:30042: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:30044: \"$ac_try\"") >&5 + { (eval echo "$as_me:30045: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:30047: \$? = $ac_status" >&5 + echo "$as_me:30048: \$? = $ac_status" >&5 (exit $ac_status); }; }; then am_cv_proto_iconv_const=no else @@ -30054,7 +30055,7 @@ am_cv_proto_iconv_const=yes fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:30057: result: $am_cv_proto_iconv_const" >&5 +echo "$as_me:30058: 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 @@ -30096,7 +30097,7 @@ if test -n "$cf_cv_header_path_iconv" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 30099 "configure" +#line 30100 "configure" #include "confdefs.h" #include <stdio.h> int @@ -30108,16 +30109,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:30111: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:30112: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:30114: \$? = $ac_status" >&5 + echo "$as_me:30115: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:30117: \"$ac_try\"") >&5 + { (eval echo "$as_me:30118: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:30120: \$? = $ac_status" >&5 + echo "$as_me:30121: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -30134,7 +30135,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}:30137: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me-configure}:30138: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -30171,7 +30172,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}:30174: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me-configure}:30175: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -30195,7 +30196,7 @@ curses|slang|ncurses*) esac if test "$use_dft_colors" != no ; then -echo "$as_me:30198: checking if you want to use default-colors" >&5 +echo "$as_me:30199: 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. @@ -30212,7 +30213,7 @@ else use_dft_colors=no fi; -echo "$as_me:30215: result: $use_dft_colors" >&5 +echo "$as_me:30216: result: $use_dft_colors" >&5 echo "${ECHO_T}$use_dft_colors" >&6 test $use_dft_colors = "yes" && cat >>confdefs.h <<\EOF #define USE_DEFAULT_COLORS 1 @@ -30220,7 +30221,7 @@ EOF fi -echo "$as_me:30223: checking if experimental keyboard-layout logic should be used" >&5 +echo "$as_me:30224: 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. @@ -30237,13 +30238,13 @@ else use_kbd_layout=no fi; -echo "$as_me:30240: result: $use_kbd_layout" >&5 +echo "$as_me:30241: 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:30246: checking if experimental nested-table logic should be used" >&5 +echo "$as_me:30247: 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. @@ -30260,13 +30261,13 @@ else use_nested_tables=no fi; -echo "$as_me:30263: result: $use_nested_tables" >&5 +echo "$as_me:30264: 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:30269: checking if alternative line-edit bindings should be used" >&5 +echo "$as_me:30270: 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. @@ -30283,13 +30284,13 @@ else use_alt_bindings=yes fi; -echo "$as_me:30286: result: $use_alt_bindings" >&5 +echo "$as_me:30287: result: $use_alt_bindings" >&5 echo "${ECHO_T}$use_alt_bindings" >&6 test $use_alt_bindings != no && cat >>confdefs.h <<\EOF #define EXP_ALT_BINDINGS 1 EOF -echo "$as_me:30292: checking if ascii case-conversion should be used" >&5 +echo "$as_me:30293: 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. @@ -30306,13 +30307,13 @@ else use_ascii_ctypes=yes fi; -echo "$as_me:30309: result: $use_ascii_ctypes" >&5 +echo "$as_me:30310: 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:30315: checking if you want to use extended HTML DTD logic" >&5 +echo "$as_me:30316: 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. @@ -30329,13 +30330,13 @@ else use_ext_htmldtd=yes fi; -echo "$as_me:30332: result: $use_ext_htmldtd" >&5 +echo "$as_me:30333: 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:30338: checking if file-upload logic should be used" >&5 +echo "$as_me:30339: 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. @@ -30352,13 +30353,13 @@ else use_file_upload=yes fi; -echo "$as_me:30355: result: $use_file_upload" >&5 +echo "$as_me:30356: 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:30361: checking if IDNA support should be used" >&5 +echo "$as_me:30362: 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. @@ -30375,7 +30376,7 @@ else use_idna=yes fi; -echo "$as_me:30378: result: $use_idna" >&5 +echo "$as_me:30379: result: $use_idna" >&5 echo "${ECHO_T}$use_idna" >&6 if test "$use_idna" = yes ; then @@ -30414,7 +30415,7 @@ if test -n "$cf_searchpath/include" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 30417 "configure" +#line 30418 "configure" #include "confdefs.h" #include <stdio.h> int @@ -30426,16 +30427,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:30429: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:30430: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:30432: \$? = $ac_status" >&5 + echo "$as_me:30433: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:30435: \"$ac_try\"") >&5 + { (eval echo "$as_me:30436: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:30438: \$? = $ac_status" >&5 + echo "$as_me:30439: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -30452,7 +30453,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}:30455: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me-configure}:30456: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -30493,7 +30494,7 @@ if test -n "$cf_searchpath/../include" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 30496 "configure" +#line 30497 "configure" #include "confdefs.h" #include <stdio.h> int @@ -30505,16 +30506,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:30508: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:30509: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:30511: \$? = $ac_status" >&5 + echo "$as_me:30512: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:30514: \"$ac_try\"") >&5 + { (eval echo "$as_me:30515: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:30517: \$? = $ac_status" >&5 + echo "$as_me:30518: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -30531,7 +30532,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}:30534: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me-configure}:30535: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -30547,7 +30548,7 @@ echo "${as_me-configure}:30534: testing adding $cf_add_incdir to include-path .. fi else -{ { echo "$as_me:30550: error: cannot find under $use_idna" >&5 +{ { echo "$as_me:30551: error: cannot find under $use_idna" >&5 echo "$as_me: error: cannot find under $use_idna" >&2;} { (exit 1); exit 1; }; } fi @@ -30572,7 +30573,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}:30575: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me-configure}:30576: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -30601,7 +30602,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}:30604: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me-configure}:30605: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -30610,7 +30611,7 @@ echo "${as_me-configure}:30604: testing adding $cf_add_libdir to library-path .. fi else -{ { echo "$as_me:30613: error: cannot find under $use_idna" >&5 +{ { echo "$as_me:30614: error: cannot find under $use_idna" >&5 echo "$as_me: error: cannot find under $use_idna" >&2;} { (exit 1); exit 1; }; } fi @@ -30624,12 +30625,12 @@ done cf_cv_header_path_idn= cf_cv_library_path_idn= -echo "${as_me-configure}:30627: testing Starting FIND_LINKAGE(idn,) ..." 1>&5 +echo "${as_me-configure}:30628: testing Starting FIND_LINKAGE(idn,) ..." 1>&5 cf_save_LIBS="$LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 30632 "configure" +#line 30633 "configure" #include "confdefs.h" #include <stdio.h> @@ -30647,16 +30648,16 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:30650: \"$ac_link\"") >&5 +if { (eval echo "$as_me:30651: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:30653: \$? = $ac_status" >&5 + echo "$as_me:30654: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:30656: \"$ac_try\"") >&5 + { (eval echo "$as_me:30657: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:30659: \$? = $ac_status" >&5 + echo "$as_me:30660: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_find_linkage_idn=yes @@ -30670,7 +30671,7 @@ cat conftest.$ac_ext >&5 LIBS="-lidn $cf_save_LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 30673 "configure" +#line 30674 "configure" #include "confdefs.h" #include <stdio.h> @@ -30688,16 +30689,16 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:30691: \"$ac_link\"") >&5 +if { (eval echo "$as_me:30692: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:30694: \$? = $ac_status" >&5 + echo "$as_me:30695: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:30697: \"$ac_try\"") >&5 + { (eval echo "$as_me:30698: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:30700: \$? = $ac_status" >&5 + echo "$as_me:30701: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_find_linkage_idn=yes @@ -30714,9 +30715,9 @@ cat conftest.$ac_ext >&5 test -n "$verbose" && echo " find linkage for idn library" 1>&6 -echo "${as_me-configure}:30717: testing find linkage for idn library ..." 1>&5 +echo "${as_me-configure}:30718: testing find linkage for idn library ..." 1>&5 -echo "${as_me-configure}:30719: testing Searching for headers in FIND_LINKAGE(idn,) ..." 1>&5 +echo "${as_me-configure}:30720: testing Searching for headers in FIND_LINKAGE(idn,) ..." 1>&5 cf_save_CPPFLAGS="$CPPFLAGS" cf_test_CPPFLAGS="$CPPFLAGS" @@ -30829,11 +30830,11 @@ cf_search="$cf_search $cf_header_path_list" if test -d $cf_cv_header_path_idn ; then test -n "$verbose" && echo " ... testing $cf_cv_header_path_idn" 1>&6 -echo "${as_me-configure}:30832: testing ... testing $cf_cv_header_path_idn ..." 1>&5 +echo "${as_me-configure}:30833: testing ... testing $cf_cv_header_path_idn ..." 1>&5 CPPFLAGS="$cf_save_CPPFLAGS -I$cf_cv_header_path_idn" cat >conftest.$ac_ext <<_ACEOF -#line 30836 "configure" +#line 30837 "configure" #include "confdefs.h" #include <stdio.h> @@ -30851,21 +30852,21 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:30854: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:30855: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:30857: \$? = $ac_status" >&5 + echo "$as_me:30858: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:30860: \"$ac_try\"") >&5 + { (eval echo "$as_me:30861: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:30863: \$? = $ac_status" >&5 + echo "$as_me:30864: \$? = $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}:30868: testing ... found idn headers in $cf_cv_header_path_idn ..." 1>&5 +echo "${as_me-configure}:30869: testing ... found idn headers in $cf_cv_header_path_idn ..." 1>&5 cf_cv_find_linkage_idn=maybe cf_test_CPPFLAGS="$CPPFLAGS" @@ -30883,7 +30884,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "$cf_cv_find_linkage_idn" = maybe ; then -echo "${as_me-configure}:30886: testing Searching for idn library in FIND_LINKAGE(idn,) ..." 1>&5 +echo "${as_me-configure}:30887: testing Searching for idn library in FIND_LINKAGE(idn,) ..." 1>&5 cf_save_LIBS="$LIBS" cf_save_LDFLAGS="$LDFLAGS" @@ -30980,13 +30981,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}:30983: testing ... testing $cf_cv_library_path_idn ..." 1>&5 +echo "${as_me-configure}:30984: testing ... testing $cf_cv_library_path_idn ..." 1>&5 CPPFLAGS="$cf_test_CPPFLAGS" LIBS="-lidn $cf_save_LIBS" LDFLAGS="$cf_save_LDFLAGS -L$cf_cv_library_path_idn" cat >conftest.$ac_ext <<_ACEOF -#line 30989 "configure" +#line 30990 "configure" #include "confdefs.h" #include <stdio.h> @@ -31004,21 +31005,21 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:31007: \"$ac_link\"") >&5 +if { (eval echo "$as_me:31008: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:31010: \$? = $ac_status" >&5 + echo "$as_me:31011: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:31013: \"$ac_try\"") >&5 + { (eval echo "$as_me:31014: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:31016: \$? = $ac_status" >&5 + echo "$as_me:31017: \$? = $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}:31021: testing ... found idn library in $cf_cv_library_path_idn ..." 1>&5 +echo "${as_me-configure}:31022: testing ... found idn library in $cf_cv_library_path_idn ..." 1>&5 cf_cv_find_linkage_idn=yes cf_cv_library_file_idn="-lidn" @@ -31077,7 +31078,7 @@ if test -n "$cf_cv_header_path_idn" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 31080 "configure" +#line 31081 "configure" #include "confdefs.h" #include <stdio.h> int @@ -31089,16 +31090,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:31092: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:31093: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:31095: \$? = $ac_status" >&5 + echo "$as_me:31096: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:31098: \"$ac_try\"") >&5 + { (eval echo "$as_me:31099: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:31101: \$? = $ac_status" >&5 + echo "$as_me:31102: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -31115,7 +31116,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}:31118: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me-configure}:31119: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -31149,7 +31150,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}:31152: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me-configure}:31153: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -31160,7 +31161,7 @@ fi LIBS="-lidn $LIBS" else -{ echo "$as_me:31163: WARNING: Cannot find idn library" >&5 +{ echo "$as_me:31164: WARNING: Cannot find idn library" >&5 echo "$as_me: WARNING: Cannot find idn library" >&2;} fi @@ -31173,7 +31174,7 @@ fi fi -echo "$as_me:31176: checking if element-justification logic should be used" >&5 +echo "$as_me:31177: 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. @@ -31190,13 +31191,13 @@ else use_justify_elts=yes fi; -echo "$as_me:31193: result: $use_justify_elts" >&5 +echo "$as_me:31194: 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:31199: checking if partial-display should be used" >&5 +echo "$as_me:31200: 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. @@ -31213,13 +31214,13 @@ else use_partial_display=yes fi; -echo "$as_me:31216: result: $use_partial_display" >&5 +echo "$as_me:31217: 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:31222: checking if persistent-cookie logic should be used" >&5 +echo "$as_me:31223: 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. @@ -31236,13 +31237,13 @@ else use_filed_cookies=yes fi; -echo "$as_me:31239: result: $use_filed_cookies" >&5 +echo "$as_me:31240: 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:31245: checking if html source should be colorized" >&5 +echo "$as_me:31246: 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. @@ -31259,13 +31260,13 @@ else use_prettysrc=yes fi; -echo "$as_me:31262: result: $use_prettysrc" >&5 +echo "$as_me:31263: 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:31268: checking if progress-bar code should be used" >&5 +echo "$as_me:31269: 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. @@ -31282,13 +31283,13 @@ else use_progressbar=yes fi; -echo "$as_me:31285: result: $use_progressbar" >&5 +echo "$as_me:31286: 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:31291: checking if read-progress message should show ETA" >&5 +echo "$as_me:31292: 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. @@ -31305,13 +31306,13 @@ else use_read_eta=yes fi; -echo "$as_me:31308: result: $use_read_eta" >&5 +echo "$as_me:31309: 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:31314: checking if source caching should be used" >&5 +echo "$as_me:31315: 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. @@ -31328,13 +31329,13 @@ else use_source_cache=yes fi; -echo "$as_me:31331: result: $use_source_cache" >&5 +echo "$as_me:31332: 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:31337: checking if scrollbar code should be used" >&5 +echo "$as_me:31338: 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. @@ -31351,10 +31352,10 @@ else use_scrollbar=yes fi; -echo "$as_me:31354: result: $use_scrollbar" >&5 +echo "$as_me:31355: result: $use_scrollbar" >&5 echo "${ECHO_T}$use_scrollbar" >&6 -echo "$as_me:31357: checking if charset-selection logic should be used" >&5 +echo "$as_me:31358: 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. @@ -31371,13 +31372,13 @@ else use_charset_choice=no fi; -echo "$as_me:31374: result: $use_charset_choice" >&5 +echo "$as_me:31375: 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:31380: checking if you want to use external commands" >&5 +echo "$as_me:31381: 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. @@ -31394,7 +31395,7 @@ else use_externs=no fi; -echo "$as_me:31397: result: $use_externs" >&5 +echo "$as_me:31398: result: $use_externs" >&5 echo "${ECHO_T}$use_externs" >&6 if test $use_externs != "no" ; then cat >>confdefs.h <<\EOF @@ -31404,7 +31405,7 @@ EOF EXTRA_OBJS="$EXTRA_OBJS LYExtern\$o" fi -echo "$as_me:31407: checking if you want to use setfont support" >&5 +echo "$as_me:31408: 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. @@ -31421,7 +31422,7 @@ else use_setfont=no fi; -echo "$as_me:31424: result: $use_setfont" >&5 +echo "$as_me:31425: result: $use_setfont" >&5 echo "${ECHO_T}$use_setfont" >&6 if test $use_setfont = yes ; then case $host_os in @@ -31432,7 +31433,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:31435: checking for $ac_word" >&5 +echo "$as_me:31436: 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 @@ -31449,7 +31450,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:31452: found $ac_dir/$ac_word" >&5 + echo "$as_me:31453: found $ac_dir/$ac_word" >&5 break fi done @@ -31460,10 +31461,10 @@ fi SETFONT=$ac_cv_path_SETFONT if test -n "$SETFONT"; then - echo "$as_me:31463: result: $SETFONT" >&5 + echo "$as_me:31464: result: $SETFONT" >&5 echo "${ECHO_T}$SETFONT" >&6 else - echo "$as_me:31466: result: no" >&5 + echo "$as_me:31467: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -31522,7 +31523,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me-configure}:31525: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me-configure}:31526: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define SETFONT_PATH "$cf_path_prog" @@ -31539,19 +31540,19 @@ fi SETFONT=built-in test -n "$verbose" && echo " Assume $host_os has font-switching" 1>&6 -echo "${as_me-configure}:31542: testing Assume $host_os has font-switching ..." 1>&5 +echo "${as_me-configure}:31543: 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}:31549: testing Assume $host_os has no font-switching ..." 1>&5 +echo "${as_me-configure}:31550: testing Assume $host_os has no font-switching ..." 1>&5 ;; esac if test -z "$SETFONT" ; then - { echo "$as_me:31554: WARNING: Cannot find a font-setting program" >&5 + { echo "$as_me:31555: WARNING: Cannot find a font-setting program" >&5 echo "$as_me: WARNING: Cannot find a font-setting program" >&2;} elif test "$SETFONT" != unknown ; then cat >>confdefs.h <<\EOF @@ -31561,7 +31562,7 @@ EOF fi fi -echo "$as_me:31564: checking if you want cgi-link support" >&5 +echo "$as_me:31565: 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. @@ -31577,10 +31578,10 @@ EOF else enableval=no fi; -echo "$as_me:31580: result: $enableval" >&5 +echo "$as_me:31581: result: $enableval" >&5 echo "${ECHO_T}$enableval" >&6 -echo "$as_me:31583: checking if you want change-exec support" >&5 +echo "$as_me:31584: 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. @@ -31597,13 +31598,13 @@ else use_change_exec=no fi; -echo "$as_me:31600: result: $use_change_exec" >&5 +echo "$as_me:31601: 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:31606: checking if you want exec-links support" >&5 +echo "$as_me:31607: 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. @@ -31620,13 +31621,13 @@ else use_exec_links=$enableval fi; -echo "$as_me:31623: result: $use_exec_links" >&5 +echo "$as_me:31624: 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:31629: checking if you want exec-scripts support" >&5 +echo "$as_me:31630: 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. @@ -31643,13 +31644,13 @@ else use_exec_scripts=$enableval fi; -echo "$as_me:31646: result: $use_exec_scripts" >&5 +echo "$as_me:31647: 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:31652: checking if you want internal-links feature" >&5 +echo "$as_me:31653: 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. @@ -31666,13 +31667,13 @@ else use_internal_links=no fi; -echo "$as_me:31669: result: $use_internal_links" >&5 +echo "$as_me:31670: result: $use_internal_links" >&5 echo "${ECHO_T}$use_internal_links" >&6 test $use_internal_links = no && cat >>confdefs.h <<\EOF #define DONT_TRACK_INTERNAL_LINKS 1 EOF -echo "$as_me:31675: checking if you want to fork NSL requests" >&5 +echo "$as_me:31676: 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. @@ -31689,7 +31690,7 @@ else use_nsl_fork=no fi; -echo "$as_me:31692: result: $use_nsl_fork" >&5 +echo "$as_me:31693: result: $use_nsl_fork" >&5 echo "${ECHO_T}$use_nsl_fork" >&6 if test $use_nsl_fork = yes ; then case $host_os in @@ -31708,7 +31709,7 @@ EOF esac fi -echo "$as_me:31711: checking if you want to log URL requests via syslog" >&5 +echo "$as_me:31712: 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. @@ -31725,13 +31726,13 @@ else use_syslog=no fi; -echo "$as_me:31728: result: $use_syslog" >&5 +echo "$as_me:31729: 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:31734: checking if you want to underline links" >&5 +echo "$as_me:31735: 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. @@ -31748,7 +31749,7 @@ else use_underline=no fi; -echo "$as_me:31751: result: $use_underline" >&5 +echo "$as_me:31752: result: $use_underline" >&5 echo "${ECHO_T}$use_underline" >&6 test $use_underline = yes && cat >>confdefs.h <<\EOF #define UNDERLINE_LINKS 1 @@ -31758,7 +31759,7 @@ test $use_underline = no && cat >>confdefs.h <<\EOF #define UNDERLINE_LINKS 0 EOF -echo "$as_me:31761: checking if help files should be gzip'ed" >&5 +echo "$as_me:31762: 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. @@ -31775,10 +31776,10 @@ else use_gzip_help=no fi; -echo "$as_me:31778: result: $use_gzip_help" >&5 +echo "$as_me:31779: result: $use_gzip_help" >&5 echo "${ECHO_T}$use_gzip_help" >&6 -echo "$as_me:31781: checking if you want to use libbz2 for decompression of some bzip2 files" >&5 +echo "$as_me:31782: 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. @@ -31788,7 +31789,7 @@ if test "${with_bzlib+set}" = set; then else use_bzlib=no fi; -echo "$as_me:31791: result: $use_bzlib" >&5 +echo "$as_me:31792: result: $use_bzlib" >&5 echo "${ECHO_T}$use_bzlib" >&6 if test ".$use_bzlib" != ".no" ; then @@ -31827,7 +31828,7 @@ if test -n "$cf_searchpath/include" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 31830 "configure" +#line 31831 "configure" #include "confdefs.h" #include <stdio.h> int @@ -31839,16 +31840,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:31842: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:31843: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:31845: \$? = $ac_status" >&5 + echo "$as_me:31846: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:31848: \"$ac_try\"") >&5 + { (eval echo "$as_me:31849: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:31851: \$? = $ac_status" >&5 + echo "$as_me:31852: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -31865,7 +31866,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}:31868: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me-configure}:31869: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -31906,7 +31907,7 @@ if test -n "$cf_searchpath/../include" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 31909 "configure" +#line 31910 "configure" #include "confdefs.h" #include <stdio.h> int @@ -31918,16 +31919,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:31921: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:31922: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:31924: \$? = $ac_status" >&5 + echo "$as_me:31925: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:31927: \"$ac_try\"") >&5 + { (eval echo "$as_me:31928: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:31930: \$? = $ac_status" >&5 + echo "$as_me:31931: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -31944,7 +31945,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}:31947: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me-configure}:31948: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -31960,7 +31961,7 @@ echo "${as_me-configure}:31947: testing adding $cf_add_incdir to include-path .. fi else -{ { echo "$as_me:31963: error: cannot find under $use_bzlib" >&5 +{ { echo "$as_me:31964: error: cannot find under $use_bzlib" >&5 echo "$as_me: error: cannot find under $use_bzlib" >&2;} { (exit 1); exit 1; }; } fi @@ -31985,7 +31986,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}:31988: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me-configure}:31989: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -32014,7 +32015,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}:32017: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me-configure}:32018: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -32023,7 +32024,7 @@ echo "${as_me-configure}:32017: testing adding $cf_add_libdir to library-path .. fi else -{ { echo "$as_me:32026: error: cannot find under $use_bzlib" >&5 +{ { echo "$as_me:32027: error: cannot find under $use_bzlib" >&5 echo "$as_me: error: cannot find under $use_bzlib" >&2;} { (exit 1); exit 1; }; } fi @@ -32037,12 +32038,12 @@ done cf_cv_header_path_bz2= cf_cv_library_path_bz2= -echo "${as_me-configure}:32040: testing Starting FIND_LINKAGE(bz2,bzlib) ..." 1>&5 +echo "${as_me-configure}:32041: testing Starting FIND_LINKAGE(bz2,bzlib) ..." 1>&5 cf_save_LIBS="$LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 32045 "configure" +#line 32046 "configure" #include "confdefs.h" #include <stdio.h> @@ -32059,16 +32060,16 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:32062: \"$ac_link\"") >&5 +if { (eval echo "$as_me:32063: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:32065: \$? = $ac_status" >&5 + echo "$as_me:32066: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:32068: \"$ac_try\"") >&5 + { (eval echo "$as_me:32069: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:32071: \$? = $ac_status" >&5 + echo "$as_me:32072: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_find_linkage_bz2=yes @@ -32082,7 +32083,7 @@ cat conftest.$ac_ext >&5 LIBS="-lbz2 $cf_save_LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 32085 "configure" +#line 32086 "configure" #include "confdefs.h" #include <stdio.h> @@ -32099,16 +32100,16 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:32102: \"$ac_link\"") >&5 +if { (eval echo "$as_me:32103: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:32105: \$? = $ac_status" >&5 + echo "$as_me:32106: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:32108: \"$ac_try\"") >&5 + { (eval echo "$as_me:32109: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:32111: \$? = $ac_status" >&5 + echo "$as_me:32112: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_find_linkage_bz2=yes @@ -32125,9 +32126,9 @@ cat conftest.$ac_ext >&5 test -n "$verbose" && echo " find linkage for bz2 library" 1>&6 -echo "${as_me-configure}:32128: testing find linkage for bz2 library ..." 1>&5 +echo "${as_me-configure}:32129: testing find linkage for bz2 library ..." 1>&5 -echo "${as_me-configure}:32130: testing Searching for headers in FIND_LINKAGE(bz2,bzlib) ..." 1>&5 +echo "${as_me-configure}:32131: testing Searching for headers in FIND_LINKAGE(bz2,bzlib) ..." 1>&5 cf_save_CPPFLAGS="$CPPFLAGS" cf_test_CPPFLAGS="$CPPFLAGS" @@ -32240,11 +32241,11 @@ cf_search="$cf_search $cf_header_path_list" if test -d $cf_cv_header_path_bz2 ; then test -n "$verbose" && echo " ... testing $cf_cv_header_path_bz2" 1>&6 -echo "${as_me-configure}:32243: testing ... testing $cf_cv_header_path_bz2 ..." 1>&5 +echo "${as_me-configure}:32244: testing ... testing $cf_cv_header_path_bz2 ..." 1>&5 CPPFLAGS="$cf_save_CPPFLAGS -I$cf_cv_header_path_bz2" cat >conftest.$ac_ext <<_ACEOF -#line 32247 "configure" +#line 32248 "configure" #include "confdefs.h" #include <stdio.h> @@ -32261,21 +32262,21 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:32264: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:32265: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:32267: \$? = $ac_status" >&5 + echo "$as_me:32268: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:32270: \"$ac_try\"") >&5 + { (eval echo "$as_me:32271: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:32273: \$? = $ac_status" >&5 + echo "$as_me:32274: \$? = $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}:32278: testing ... found bz2 headers in $cf_cv_header_path_bz2 ..." 1>&5 +echo "${as_me-configure}:32279: testing ... found bz2 headers in $cf_cv_header_path_bz2 ..." 1>&5 cf_cv_find_linkage_bz2=maybe cf_test_CPPFLAGS="$CPPFLAGS" @@ -32293,7 +32294,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "$cf_cv_find_linkage_bz2" = maybe ; then -echo "${as_me-configure}:32296: testing Searching for bz2 library in FIND_LINKAGE(bz2,bzlib) ..." 1>&5 +echo "${as_me-configure}:32297: testing Searching for bz2 library in FIND_LINKAGE(bz2,bzlib) ..." 1>&5 cf_save_LIBS="$LIBS" cf_save_LDFLAGS="$LDFLAGS" @@ -32301,7 +32302,7 @@ echo "${as_me-configure}:32296: testing Searching for bz2 library in FIND_LINKAG CPPFLAGS="$cf_test_CPPFLAGS" LIBS="-lbz2 $cf_save_LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 32304 "configure" +#line 32305 "configure" #include "confdefs.h" #include <stdio.h> @@ -32318,21 +32319,21 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:32321: \"$ac_link\"") >&5 +if { (eval echo "$as_me:32322: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:32324: \$? = $ac_status" >&5 + echo "$as_me:32325: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:32327: \"$ac_try\"") >&5 + { (eval echo "$as_me:32328: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:32330: \$? = $ac_status" >&5 + echo "$as_me:32331: \$? = $ac_status" >&5 (exit $ac_status); }; }; then test -n "$verbose" && echo " ... found bz2 library in system" 1>&6 -echo "${as_me-configure}:32335: testing ... found bz2 library in system ..." 1>&5 +echo "${as_me-configure}:32336: testing ... found bz2 library in system ..." 1>&5 cf_cv_find_linkage_bz2=yes else @@ -32435,13 +32436,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}:32438: testing ... testing $cf_cv_library_path_bz2 ..." 1>&5 +echo "${as_me-configure}:32439: 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 32444 "configure" +#line 32445 "configure" #include "confdefs.h" #include <stdio.h> @@ -32458,21 +32459,21 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:32461: \"$ac_link\"") >&5 +if { (eval echo "$as_me:32462: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:32464: \$? = $ac_status" >&5 + echo "$as_me:32465: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:32467: \"$ac_try\"") >&5 + { (eval echo "$as_me:32468: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:32470: \$? = $ac_status" >&5 + echo "$as_me:32471: \$? = $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}:32475: testing ... found bz2 library in $cf_cv_library_path_bz2 ..." 1>&5 +echo "${as_me-configure}:32476: testing ... found bz2 library in $cf_cv_library_path_bz2 ..." 1>&5 cf_cv_find_linkage_bz2=yes cf_cv_library_file_bz2="-lbz2" @@ -32531,7 +32532,7 @@ if test -n "$cf_cv_header_path_bz2" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 32534 "configure" +#line 32535 "configure" #include "confdefs.h" #include <stdio.h> int @@ -32543,16 +32544,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:32546: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:32547: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:32549: \$? = $ac_status" >&5 + echo "$as_me:32550: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:32552: \"$ac_try\"") >&5 + { (eval echo "$as_me:32553: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:32555: \$? = $ac_status" >&5 + echo "$as_me:32556: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -32569,7 +32570,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}:32572: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me-configure}:32573: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -32603,7 +32604,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}:32606: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me-configure}:32607: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -32614,7 +32615,7 @@ fi LIBS="-lbz2 $LIBS" else -{ echo "$as_me:32617: WARNING: Cannot find bz2 library" >&5 +{ echo "$as_me:32618: WARNING: Cannot find bz2 library" >&5 echo "$as_me: WARNING: Cannot find bz2 library" >&2;} fi @@ -32624,7 +32625,7 @@ EOF fi -echo "$as_me:32627: checking if you want to use zlib for decompression of some gzip files" >&5 +echo "$as_me:32628: 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. @@ -32634,7 +32635,7 @@ if test "${with_zlib+set}" = set; then else use_zlib=no fi; -echo "$as_me:32637: result: $use_zlib" >&5 +echo "$as_me:32638: result: $use_zlib" >&5 echo "${ECHO_T}$use_zlib" >&6 if test ".$use_zlib" != ".no" ; then @@ -32673,7 +32674,7 @@ if test -n "$cf_searchpath/include" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 32676 "configure" +#line 32677 "configure" #include "confdefs.h" #include <stdio.h> int @@ -32685,16 +32686,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:32688: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:32689: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:32691: \$? = $ac_status" >&5 + echo "$as_me:32692: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:32694: \"$ac_try\"") >&5 + { (eval echo "$as_me:32695: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:32697: \$? = $ac_status" >&5 + echo "$as_me:32698: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -32711,7 +32712,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}:32714: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me-configure}:32715: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -32752,7 +32753,7 @@ if test -n "$cf_searchpath/../include" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 32755 "configure" +#line 32756 "configure" #include "confdefs.h" #include <stdio.h> int @@ -32764,16 +32765,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:32767: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:32768: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:32770: \$? = $ac_status" >&5 + echo "$as_me:32771: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:32773: \"$ac_try\"") >&5 + { (eval echo "$as_me:32774: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:32776: \$? = $ac_status" >&5 + echo "$as_me:32777: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -32790,7 +32791,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}:32793: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me-configure}:32794: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -32806,7 +32807,7 @@ echo "${as_me-configure}:32793: testing adding $cf_add_incdir to include-path .. fi else -{ { echo "$as_me:32809: error: cannot find under $use_zlib" >&5 +{ { echo "$as_me:32810: error: cannot find under $use_zlib" >&5 echo "$as_me: error: cannot find under $use_zlib" >&2;} { (exit 1); exit 1; }; } fi @@ -32831,7 +32832,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}:32834: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me-configure}:32835: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -32860,7 +32861,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}:32863: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me-configure}:32864: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -32869,7 +32870,7 @@ echo "${as_me-configure}:32863: testing adding $cf_add_libdir to library-path .. fi else -{ { echo "$as_me:32872: error: cannot find under $use_zlib" >&5 +{ { echo "$as_me:32873: error: cannot find under $use_zlib" >&5 echo "$as_me: error: cannot find under $use_zlib" >&2;} { (exit 1); exit 1; }; } fi @@ -32883,12 +32884,12 @@ done cf_cv_header_path_z= cf_cv_library_path_z= -echo "${as_me-configure}:32886: testing Starting FIND_LINKAGE(z,zlib) ..." 1>&5 +echo "${as_me-configure}:32887: testing Starting FIND_LINKAGE(z,zlib) ..." 1>&5 cf_save_LIBS="$LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 32891 "configure" +#line 32892 "configure" #include "confdefs.h" #include <zlib.h> @@ -32904,16 +32905,16 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:32907: \"$ac_link\"") >&5 +if { (eval echo "$as_me:32908: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:32910: \$? = $ac_status" >&5 + echo "$as_me:32911: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:32913: \"$ac_try\"") >&5 + { (eval echo "$as_me:32914: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:32916: \$? = $ac_status" >&5 + echo "$as_me:32917: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_find_linkage_z=yes @@ -32927,7 +32928,7 @@ cat conftest.$ac_ext >&5 LIBS="-lz $cf_save_LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 32930 "configure" +#line 32931 "configure" #include "confdefs.h" #include <zlib.h> @@ -32943,16 +32944,16 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:32946: \"$ac_link\"") >&5 +if { (eval echo "$as_me:32947: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:32949: \$? = $ac_status" >&5 + echo "$as_me:32950: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:32952: \"$ac_try\"") >&5 + { (eval echo "$as_me:32953: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:32955: \$? = $ac_status" >&5 + echo "$as_me:32956: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_find_linkage_z=yes @@ -32969,9 +32970,9 @@ cat conftest.$ac_ext >&5 test -n "$verbose" && echo " find linkage for z library" 1>&6 -echo "${as_me-configure}:32972: testing find linkage for z library ..." 1>&5 +echo "${as_me-configure}:32973: testing find linkage for z library ..." 1>&5 -echo "${as_me-configure}:32974: testing Searching for headers in FIND_LINKAGE(z,zlib) ..." 1>&5 +echo "${as_me-configure}:32975: testing Searching for headers in FIND_LINKAGE(z,zlib) ..." 1>&5 cf_save_CPPFLAGS="$CPPFLAGS" cf_test_CPPFLAGS="$CPPFLAGS" @@ -33084,11 +33085,11 @@ cf_search="$cf_search $cf_header_path_list" if test -d $cf_cv_header_path_z ; then test -n "$verbose" && echo " ... testing $cf_cv_header_path_z" 1>&6 -echo "${as_me-configure}:33087: testing ... testing $cf_cv_header_path_z ..." 1>&5 +echo "${as_me-configure}:33088: testing ... testing $cf_cv_header_path_z ..." 1>&5 CPPFLAGS="$cf_save_CPPFLAGS -I$cf_cv_header_path_z" cat >conftest.$ac_ext <<_ACEOF -#line 33091 "configure" +#line 33092 "configure" #include "confdefs.h" #include <zlib.h> @@ -33104,21 +33105,21 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:33107: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:33108: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:33110: \$? = $ac_status" >&5 + echo "$as_me:33111: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:33113: \"$ac_try\"") >&5 + { (eval echo "$as_me:33114: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:33116: \$? = $ac_status" >&5 + echo "$as_me:33117: \$? = $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}:33121: testing ... found z headers in $cf_cv_header_path_z ..." 1>&5 +echo "${as_me-configure}:33122: testing ... found z headers in $cf_cv_header_path_z ..." 1>&5 cf_cv_find_linkage_z=maybe cf_test_CPPFLAGS="$CPPFLAGS" @@ -33136,7 +33137,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "$cf_cv_find_linkage_z" = maybe ; then -echo "${as_me-configure}:33139: testing Searching for z library in FIND_LINKAGE(z,zlib) ..." 1>&5 +echo "${as_me-configure}:33140: testing Searching for z library in FIND_LINKAGE(z,zlib) ..." 1>&5 cf_save_LIBS="$LIBS" cf_save_LDFLAGS="$LDFLAGS" @@ -33144,7 +33145,7 @@ echo "${as_me-configure}:33139: testing Searching for z library in FIND_LINKAGE( CPPFLAGS="$cf_test_CPPFLAGS" LIBS="-lz $cf_save_LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 33147 "configure" +#line 33148 "configure" #include "confdefs.h" #include <zlib.h> @@ -33160,21 +33161,21 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:33163: \"$ac_link\"") >&5 +if { (eval echo "$as_me:33164: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:33166: \$? = $ac_status" >&5 + echo "$as_me:33167: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:33169: \"$ac_try\"") >&5 + { (eval echo "$as_me:33170: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:33172: \$? = $ac_status" >&5 + echo "$as_me:33173: \$? = $ac_status" >&5 (exit $ac_status); }; }; then test -n "$verbose" && echo " ... found z library in system" 1>&6 -echo "${as_me-configure}:33177: testing ... found z library in system ..." 1>&5 +echo "${as_me-configure}:33178: testing ... found z library in system ..." 1>&5 cf_cv_find_linkage_z=yes else @@ -33277,13 +33278,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}:33280: testing ... testing $cf_cv_library_path_z ..." 1>&5 +echo "${as_me-configure}:33281: 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 33286 "configure" +#line 33287 "configure" #include "confdefs.h" #include <zlib.h> @@ -33299,21 +33300,21 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:33302: \"$ac_link\"") >&5 +if { (eval echo "$as_me:33303: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:33305: \$? = $ac_status" >&5 + echo "$as_me:33306: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:33308: \"$ac_try\"") >&5 + { (eval echo "$as_me:33309: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:33311: \$? = $ac_status" >&5 + echo "$as_me:33312: \$? = $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}:33316: testing ... found z library in $cf_cv_library_path_z ..." 1>&5 +echo "${as_me-configure}:33317: testing ... found z library in $cf_cv_library_path_z ..." 1>&5 cf_cv_find_linkage_z=yes cf_cv_library_file_z="-lz" @@ -33372,7 +33373,7 @@ if test -n "$cf_cv_header_path_z" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 33375 "configure" +#line 33376 "configure" #include "confdefs.h" #include <stdio.h> int @@ -33384,16 +33385,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:33387: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:33388: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:33390: \$? = $ac_status" >&5 + echo "$as_me:33391: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:33393: \"$ac_try\"") >&5 + { (eval echo "$as_me:33394: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:33396: \$? = $ac_status" >&5 + echo "$as_me:33397: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -33410,7 +33411,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}:33413: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me-configure}:33414: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -33444,7 +33445,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}:33447: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me-configure}:33448: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -33455,7 +33456,7 @@ fi LIBS="-lz $LIBS" else -{ echo "$as_me:33458: WARNING: Cannot find z library" >&5 +{ echo "$as_me:33459: WARNING: Cannot find z library" >&5 echo "$as_me: WARNING: Cannot find z library" >&2;} fi @@ -33465,7 +33466,7 @@ EOF fi -echo "$as_me:33468: checking if you want to exclude FINGER code" >&5 +echo "$as_me:33469: 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. @@ -33482,13 +33483,13 @@ else use_finger=no fi; -echo "$as_me:33485: result: $use_finger" >&5 +echo "$as_me:33486: 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:33491: checking if you want to exclude GOPHER code" >&5 +echo "$as_me:33492: 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. @@ -33505,13 +33506,13 @@ else use_gopher=no fi; -echo "$as_me:33508: result: $use_gopher" >&5 +echo "$as_me:33509: 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:33514: checking if you want to exclude NEWS code" >&5 +echo "$as_me:33515: 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. @@ -33528,13 +33529,13 @@ else use_news=no fi; -echo "$as_me:33531: result: $use_news" >&5 +echo "$as_me:33532: 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:33537: checking if you want to exclude FTP code" >&5 +echo "$as_me:33538: 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. @@ -33551,15 +33552,198 @@ else use_ftp=no fi; -echo "$as_me:33554: result: $use_ftp" >&5 +echo "$as_me:33555: 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:33561: 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. +if test "${enable_wais+set}" = set; then + enableval="$enable_wais" + test "$enableval" != yes && enableval=no + if test "$enableval" != "no" ; then + use_wais=yes + else + use_wais=no + fi +else + enableval=no + use_wais=no + +fi; +echo "$as_me:33578: result: $use_wais" >&5 +echo "${ECHO_T}$use_wais" >&6 + +MAKE_WAIS="#" +if test $use_wais != "no" +then + echo "$as_me:33584: 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 +else + ac_check_lib_save_LIBS=$LIBS +LIBS="-lwais $LIBS" +cat >conftest.$ac_ext <<_ACEOF +#line 33592 "configure" +#include "confdefs.h" + +/* Override any gcc2 internal prototype to avoid an error. */ +#ifdef __cplusplus +extern "C" +#endif +/* We use char because int might match the return type of a gcc2 + builtin and then its argument prototype would still apply. */ +char fs_free (); +int +main () +{ +fs_free (); + ; + return 0; +} +_ACEOF +rm -f conftest.$ac_objext conftest$ac_exeext +if { (eval echo "$as_me:33611: \"$ac_link\"") >&5 + (eval $ac_link) 2>&5 + ac_status=$? + echo "$as_me:33614: \$? = $ac_status" >&5 + (exit $ac_status); } && + { ac_try='test -s conftest$ac_exeext' + { (eval echo "$as_me:33617: \"$ac_try\"") >&5 + (eval $ac_try) 2>&5 + ac_status=$? + echo "$as_me:33620: \$? = $ac_status" >&5 + (exit $ac_status); }; }; then + ac_cv_lib_wais_fs_free=yes +else + echo "$as_me: failed program was:" >&5 +cat conftest.$ac_ext >&5 +ac_cv_lib_wais_fs_free=no +fi +rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext +LIBS=$ac_check_lib_save_LIBS +fi +echo "$as_me:33631: 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:33635: 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 33642 "configure" +#include "confdefs.h" + + #include <stdio.h> + #include <math.h> + +int +main () +{ +double x = rand(); printf("result = %g\n", sin(x)) + ; + return 0; +} +_ACEOF +rm -f conftest.$ac_objext conftest$ac_exeext +if { (eval echo "$as_me:33657: \"$ac_link\"") >&5 + (eval $ac_link) 2>&5 + ac_status=$? + echo "$as_me:33660: \$? = $ac_status" >&5 + (exit $ac_status); } && + { ac_try='test -s conftest$ac_exeext' + { (eval echo "$as_me:33663: \"$ac_try\"") >&5 + (eval $ac_try) 2>&5 + ac_status=$? + echo "$as_me:33666: \$? = $ac_status" >&5 + (exit $ac_status); }; }; then + cf_cv_need_libm=no +else + echo "$as_me: failed program was:" >&5 +cat conftest.$ac_ext >&5 +cf_cv_need_libm=yes +fi +rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext +fi +echo "$as_me:33676: result: $cf_cv_need_libm" >&5 +echo "${ECHO_T}$cf_cv_need_libm" >&6 +if test "$cf_cv_need_libm" = yes +then + + LIBS="-lm $LIBS" + +fi + + LIBS="-lwais $LIBS" + +for ac_header in wais.h +do +as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` +echo "$as_me:33690: 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 33696 "configure" +#include "confdefs.h" +#include <$ac_header> +_ACEOF +if { (eval echo "$as_me:33700: \"$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:33706: \$? = $ac_status" >&5 + (exit $ac_status); } >/dev/null; then + if test -s conftest.err; then + ac_cpp_err=$ac_c_preproc_warn_flag + else + ac_cpp_err= + fi +else + ac_cpp_err=yes +fi +if test -z "$ac_cpp_err"; then + eval "$as_ac_Header=yes" +else + echo "$as_me: failed program was:" >&5 + cat conftest.$ac_ext >&5 + eval "$as_ac_Header=no" +fi +rm -f conftest.err conftest.$ac_ext +fi +echo "$as_me:33725: 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 +#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 +EOF + +fi +done + + MAKE_WAIS= + +else + { echo "$as_me:33738: WARNING: could not find WAIS library" >&5 +echo "$as_me: WARNING: could not find WAIS library" >&2;} +fi + +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:33562: checking if directory-editor code should be used" >&5 +echo "$as_me:33746: 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. @@ -33576,7 +33760,7 @@ else use_dired=yes fi; -echo "$as_me:33579: result: $use_dired" >&5 +echo "$as_me:33763: result: $use_dired" >&5 echo "${ECHO_T}$use_dired" >&6 if test ".$use_dired" != ".no" ; then @@ -33585,7 +33769,7 @@ if test ".$use_dired" != ".no" ; then #define DIRED_SUPPORT 1 EOF - echo "$as_me:33588: checking if you wish to allow extracting from archives via DirEd" >&5 + echo "$as_me:33772: 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. @@ -33601,10 +33785,10 @@ EOF else enableval=yes fi; - echo "$as_me:33604: result: $enableval" >&5 + echo "$as_me:33788: result: $enableval" >&5 echo "${ECHO_T}$enableval" >&6 - echo "$as_me:33607: checking if DirEd mode should override keys" >&5 + echo "$as_me:33791: 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. @@ -33626,10 +33810,10 @@ else EOF fi; - echo "$as_me:33629: result: $enableval" >&5 + echo "$as_me:33813: result: $enableval" >&5 echo "${ECHO_T}$enableval" >&6 - echo "$as_me:33632: checking if you wish to allow permissions commands via DirEd" >&5 + echo "$as_me:33816: 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. @@ -33651,10 +33835,10 @@ else EOF fi; - echo "$as_me:33654: result: $enableval" >&5 + echo "$as_me:33838: result: $enableval" >&5 echo "${ECHO_T}$enableval" >&6 - echo "$as_me:33657: checking if you wish to allow executable-permission commands via DirEd" >&5 + echo "$as_me:33841: 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. @@ -33670,10 +33854,10 @@ EOF else enableval=yes fi; - echo "$as_me:33673: result: $enableval" >&5 + echo "$as_me:33857: result: $enableval" >&5 echo "${ECHO_T}$enableval" >&6 - echo "$as_me:33676: checking if you wish to allow \"tar\" commands from DirEd" >&5 + echo "$as_me:33860: 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. @@ -33695,10 +33879,10 @@ else EOF fi; - echo "$as_me:33698: result: $enableval" >&5 + echo "$as_me:33882: result: $enableval" >&5 echo "${ECHO_T}$enableval" >&6 - echo "$as_me:33701: checking if you wish to allow \"uudecode\" commands from DirEd" >&5 + echo "$as_me:33885: 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. @@ -33720,10 +33904,10 @@ else EOF fi; - echo "$as_me:33723: result: $enableval" >&5 + echo "$as_me:33907: result: $enableval" >&5 echo "${ECHO_T}$enableval" >&6 - echo "$as_me:33726: checking if you wish to allow \"zip\" and \"unzip\" commands from DirEd" >&5 + echo "$as_me:33910: 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. @@ -33745,10 +33929,10 @@ else EOF fi; - echo "$as_me:33748: result: $enableval" >&5 + echo "$as_me:33932: result: $enableval" >&5 echo "${ECHO_T}$enableval" >&6 - echo "$as_me:33751: checking if you wish to allow \"gzip\" and \"gunzip\" commands from DirEd" >&5 + echo "$as_me:33935: 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. @@ -33770,11 +33954,11 @@ else EOF fi; - echo "$as_me:33773: result: $enableval" >&5 + echo "$as_me:33957: result: $enableval" >&5 echo "${ECHO_T}$enableval" >&6 fi -echo "$as_me:33777: checking if you want long-directory listings" >&5 +echo "$as_me:33961: 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. @@ -33796,10 +33980,10 @@ else EOF fi; -echo "$as_me:33799: result: $enableval" >&5 +echo "$as_me:33983: result: $enableval" >&5 echo "${ECHO_T}$enableval" >&6 -echo "$as_me:33802: checking if parent-directory references are permitted" >&5 +echo "$as_me:33986: 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. @@ -33815,7 +33999,7 @@ EOF else enableval=yes fi; -echo "$as_me:33818: result: $enableval" >&5 +echo "$as_me:34002: result: $enableval" >&5 echo "${ECHO_T}$enableval" >&6 test -z "$TELNET" && TELNET=telnet @@ -33823,7 +34007,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:33826: checking for $ac_word" >&5 +echo "$as_me:34010: 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 @@ -33840,7 +34024,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:33843: found $ac_dir/$ac_word" >&5 + echo "$as_me:34027: found $ac_dir/$ac_word" >&5 break fi done @@ -33851,10 +34035,10 @@ fi TELNET=$ac_cv_path_TELNET if test -n "$TELNET"; then - echo "$as_me:33854: result: $TELNET" >&5 + echo "$as_me:34038: result: $TELNET" >&5 echo "${ECHO_T}$TELNET" >&6 else - echo "$as_me:33857: result: no" >&5 + echo "$as_me:34041: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -33913,7 +34097,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me-configure}:33916: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me-configure}:34100: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define TELNET_PATH "$cf_path_prog" @@ -33930,7 +34114,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:33933: checking for $ac_word" >&5 +echo "$as_me:34117: 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 @@ -33947,7 +34131,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:33950: found $ac_dir/$ac_word" >&5 + echo "$as_me:34134: found $ac_dir/$ac_word" >&5 break fi done @@ -33958,10 +34142,10 @@ fi TN3270=$ac_cv_path_TN3270 if test -n "$TN3270"; then - echo "$as_me:33961: result: $TN3270" >&5 + echo "$as_me:34145: result: $TN3270" >&5 echo "${ECHO_T}$TN3270" >&6 else - echo "$as_me:33964: result: no" >&5 + echo "$as_me:34148: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -34020,7 +34204,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me-configure}:34023: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me-configure}:34207: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define TN3270_PATH "$cf_path_prog" @@ -34037,7 +34221,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:34040: checking for $ac_word" >&5 +echo "$as_me:34224: 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 @@ -34054,7 +34238,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:34057: found $ac_dir/$ac_word" >&5 + echo "$as_me:34241: found $ac_dir/$ac_word" >&5 break fi done @@ -34065,10 +34249,10 @@ fi RLOGIN=$ac_cv_path_RLOGIN if test -n "$RLOGIN"; then - echo "$as_me:34068: result: $RLOGIN" >&5 + echo "$as_me:34252: result: $RLOGIN" >&5 echo "${ECHO_T}$RLOGIN" >&6 else - echo "$as_me:34071: result: no" >&5 + echo "$as_me:34255: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -34127,7 +34311,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me-configure}:34130: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me-configure}:34314: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define RLOGIN_PATH "$cf_path_prog" @@ -34144,7 +34328,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:34147: checking for $ac_word" >&5 +echo "$as_me:34331: 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 @@ -34161,7 +34345,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:34164: found $ac_dir/$ac_word" >&5 + echo "$as_me:34348: found $ac_dir/$ac_word" >&5 break fi done @@ -34172,10 +34356,10 @@ fi MV=$ac_cv_path_MV if test -n "$MV"; then - echo "$as_me:34175: result: $MV" >&5 + echo "$as_me:34359: result: $MV" >&5 echo "${ECHO_T}$MV" >&6 else - echo "$as_me:34178: result: no" >&5 + echo "$as_me:34362: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -34234,7 +34418,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me-configure}:34237: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me-configure}:34421: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define MV_PATH "$cf_path_prog" @@ -34251,7 +34435,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:34254: checking for $ac_word" >&5 +echo "$as_me:34438: 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 @@ -34268,7 +34452,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:34271: found $ac_dir/$ac_word" >&5 + echo "$as_me:34455: found $ac_dir/$ac_word" >&5 break fi done @@ -34279,10 +34463,10 @@ fi GZIP=$ac_cv_path_GZIP if test -n "$GZIP"; then - echo "$as_me:34282: result: $GZIP" >&5 + echo "$as_me:34466: result: $GZIP" >&5 echo "${ECHO_T}$GZIP" >&6 else - echo "$as_me:34285: result: no" >&5 + echo "$as_me:34469: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -34341,7 +34525,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me-configure}:34344: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me-configure}:34528: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define GZIP_PATH "$cf_path_prog" @@ -34358,7 +34542,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:34361: checking for $ac_word" >&5 +echo "$as_me:34545: 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 @@ -34375,7 +34559,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:34378: found $ac_dir/$ac_word" >&5 + echo "$as_me:34562: found $ac_dir/$ac_word" >&5 break fi done @@ -34386,10 +34570,10 @@ fi UNCOMPRESS=$ac_cv_path_UNCOMPRESS if test -n "$UNCOMPRESS"; then - echo "$as_me:34389: result: $UNCOMPRESS" >&5 + echo "$as_me:34573: result: $UNCOMPRESS" >&5 echo "${ECHO_T}$UNCOMPRESS" >&6 else - echo "$as_me:34392: result: no" >&5 + echo "$as_me:34576: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -34448,7 +34632,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me-configure}:34451: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me-configure}:34635: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define UNCOMPRESS_PATH "$cf_path_prog" @@ -34465,7 +34649,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:34468: checking for $ac_word" >&5 +echo "$as_me:34652: 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 @@ -34482,7 +34666,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:34485: found $ac_dir/$ac_word" >&5 + echo "$as_me:34669: found $ac_dir/$ac_word" >&5 break fi done @@ -34493,10 +34677,10 @@ fi UNZIP=$ac_cv_path_UNZIP if test -n "$UNZIP"; then - echo "$as_me:34496: result: $UNZIP" >&5 + echo "$as_me:34680: result: $UNZIP" >&5 echo "${ECHO_T}$UNZIP" >&6 else - echo "$as_me:34499: result: no" >&5 + echo "$as_me:34683: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -34555,7 +34739,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me-configure}:34558: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me-configure}:34742: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define UNZIP_PATH "$cf_path_prog" @@ -34572,7 +34756,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:34575: checking for $ac_word" >&5 +echo "$as_me:34759: 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 @@ -34589,7 +34773,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:34592: found $ac_dir/$ac_word" >&5 + echo "$as_me:34776: found $ac_dir/$ac_word" >&5 break fi done @@ -34600,10 +34784,10 @@ fi BZIP2=$ac_cv_path_BZIP2 if test -n "$BZIP2"; then - echo "$as_me:34603: result: $BZIP2" >&5 + echo "$as_me:34787: result: $BZIP2" >&5 echo "${ECHO_T}$BZIP2" >&6 else - echo "$as_me:34606: result: no" >&5 + echo "$as_me:34790: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -34662,7 +34846,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me-configure}:34665: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me-configure}:34849: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define BZIP2_PATH "$cf_path_prog" @@ -34679,7 +34863,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:34682: checking for $ac_word" >&5 +echo "$as_me:34866: 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 @@ -34696,7 +34880,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:34699: found $ac_dir/$ac_word" >&5 + echo "$as_me:34883: found $ac_dir/$ac_word" >&5 break fi done @@ -34707,10 +34891,10 @@ fi TAR=$ac_cv_path_TAR if test -n "$TAR"; then - echo "$as_me:34710: result: $TAR" >&5 + echo "$as_me:34894: result: $TAR" >&5 echo "${ECHO_T}$TAR" >&6 else - echo "$as_me:34713: result: no" >&5 + echo "$as_me:34897: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -34769,7 +34953,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me-configure}:34772: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me-configure}:34956: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define TAR_PATH "$cf_path_prog" @@ -34826,7 +35010,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:34829: checking for $ac_word" >&5 +echo "$as_me:35013: 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 @@ -34843,7 +35027,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:34846: found $ac_dir/$ac_word" >&5 + echo "$as_me:35030: found $ac_dir/$ac_word" >&5 break fi done @@ -34854,10 +35038,10 @@ fi COMPRESS=$ac_cv_path_COMPRESS if test -n "$COMPRESS"; then - echo "$as_me:34857: result: $COMPRESS" >&5 + echo "$as_me:35041: result: $COMPRESS" >&5 echo "${ECHO_T}$COMPRESS" >&6 else - echo "$as_me:34860: result: no" >&5 + echo "$as_me:35044: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -34916,7 +35100,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me-configure}:34919: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me-configure}:35103: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define COMPRESS_PATH "$cf_path_prog" @@ -34933,7 +35117,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:34936: checking for $ac_word" >&5 +echo "$as_me:35120: 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 @@ -34950,7 +35134,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:34953: found $ac_dir/$ac_word" >&5 + echo "$as_me:35137: found $ac_dir/$ac_word" >&5 break fi done @@ -34961,10 +35145,10 @@ fi RM=$ac_cv_path_RM if test -n "$RM"; then - echo "$as_me:34964: result: $RM" >&5 + echo "$as_me:35148: result: $RM" >&5 echo "${ECHO_T}$RM" >&6 else - echo "$as_me:34967: result: no" >&5 + echo "$as_me:35151: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -35023,7 +35207,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me-configure}:35026: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me-configure}:35210: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define RM_PATH "$cf_path_prog" @@ -35040,7 +35224,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:35043: checking for $ac_word" >&5 +echo "$as_me:35227: 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 @@ -35057,7 +35241,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:35060: found $ac_dir/$ac_word" >&5 + echo "$as_me:35244: found $ac_dir/$ac_word" >&5 break fi done @@ -35068,10 +35252,10 @@ fi UUDECODE=$ac_cv_path_UUDECODE if test -n "$UUDECODE"; then - echo "$as_me:35071: result: $UUDECODE" >&5 + echo "$as_me:35255: result: $UUDECODE" >&5 echo "${ECHO_T}$UUDECODE" >&6 else - echo "$as_me:35074: result: no" >&5 + echo "$as_me:35258: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -35130,7 +35314,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me-configure}:35133: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me-configure}:35317: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define UUDECODE_PATH "$cf_path_prog" @@ -35147,7 +35331,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:35150: checking for $ac_word" >&5 +echo "$as_me:35334: 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 @@ -35164,7 +35348,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:35167: found $ac_dir/$ac_word" >&5 + echo "$as_me:35351: found $ac_dir/$ac_word" >&5 break fi done @@ -35175,10 +35359,10 @@ fi ZCAT=$ac_cv_path_ZCAT if test -n "$ZCAT"; then - echo "$as_me:35178: result: $ZCAT" >&5 + echo "$as_me:35362: result: $ZCAT" >&5 echo "${ECHO_T}$ZCAT" >&6 else - echo "$as_me:35181: result: no" >&5 + echo "$as_me:35365: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -35237,7 +35421,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me-configure}:35240: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me-configure}:35424: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define ZCAT_PATH "$cf_path_prog" @@ -35254,7 +35438,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:35257: checking for $ac_word" >&5 +echo "$as_me:35441: 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 @@ -35271,7 +35455,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:35274: found $ac_dir/$ac_word" >&5 + echo "$as_me:35458: found $ac_dir/$ac_word" >&5 break fi done @@ -35282,10 +35466,10 @@ fi ZIP=$ac_cv_path_ZIP if test -n "$ZIP"; then - echo "$as_me:35285: result: $ZIP" >&5 + echo "$as_me:35469: result: $ZIP" >&5 echo "${ECHO_T}$ZIP" >&6 else - echo "$as_me:35288: result: no" >&5 + echo "$as_me:35472: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -35344,7 +35528,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me-configure}:35347: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me-configure}:35531: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define ZIP_PATH "$cf_path_prog" @@ -35371,7 +35555,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:35374: checking for $ac_word" >&5 +echo "$as_me:35558: 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 @@ -35388,7 +35572,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:35391: found $ac_dir/$ac_word" >&5 + echo "$as_me:35575: found $ac_dir/$ac_word" >&5 break fi done @@ -35399,10 +35583,10 @@ fi INSTALL=$ac_cv_path_INSTALL if test -n "$INSTALL"; then - echo "$as_me:35402: result: $INSTALL" >&5 + echo "$as_me:35586: result: $INSTALL" >&5 echo "${ECHO_T}$INSTALL" >&6 else - echo "$as_me:35405: result: no" >&5 + echo "$as_me:35589: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -35461,7 +35645,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me-configure}:35464: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me-configure}:35648: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define INSTALL_PATH "$cf_path_prog" @@ -35487,7 +35671,7 @@ fi if test $cf_cv_screen = pdcurses ; then - echo "$as_me:35490: checking for X" >&5 + echo "$as_me:35674: checking for X" >&5 echo $ECHO_N "checking for X... $ECHO_C" >&6 # Check whether --with-x or --without-x was given. @@ -35584,17 +35768,17 @@ if test "$ac_x_includes" = no; then # Guess where to find include files, by looking for Intrinsic.h. # First, try using that file with no special directory specified. cat >conftest.$ac_ext <<_ACEOF -#line 35587 "configure" +#line 35771 "configure" #include "confdefs.h" #include <X11/Intrinsic.h> _ACEOF -if { (eval echo "$as_me:35591: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:35775: \"$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:35597: \$? = $ac_status" >&5 + echo "$as_me:35781: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -35627,7 +35811,7 @@ if test "$ac_x_libraries" = no; then ac_save_LIBS=$LIBS LIBS="-lXt $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 35630 "configure" +#line 35814 "configure" #include "confdefs.h" #include <X11/Intrinsic.h> int @@ -35639,16 +35823,16 @@ XtMalloc (0) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:35642: \"$ac_link\"") >&5 +if { (eval echo "$as_me:35826: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:35645: \$? = $ac_status" >&5 + echo "$as_me:35829: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:35648: \"$ac_try\"") >&5 + { (eval echo "$as_me:35832: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:35651: \$? = $ac_status" >&5 + echo "$as_me:35835: \$? = $ac_status" >&5 (exit $ac_status); }; }; then LIBS=$ac_save_LIBS # We can link X programs with no special library path. @@ -35686,7 +35870,7 @@ fi fi # $with_x != no if test "$have_x" != yes; then - echo "$as_me:35689: result: $have_x" >&5 + echo "$as_me:35873: result: $have_x" >&5 echo "${ECHO_T}$have_x" >&6 no_x=yes else @@ -35696,7 +35880,7 @@ else # Update the cache value to reflect the command line values. ac_cv_have_x="have_x=yes \ ac_x_includes=$x_includes ac_x_libraries=$x_libraries" - echo "$as_me:35699: result: libraries $x_libraries, headers $x_includes" >&5 + echo "$as_me:35883: result: libraries $x_libraries, headers $x_includes" >&5 echo "${ECHO_T}libraries $x_libraries, headers $x_includes" >&6 fi @@ -35720,11 +35904,11 @@ else # others require no space. Words are not sufficient . . . . case `(uname -sr) 2>/dev/null` in "SunOS 5"*) - echo "$as_me:35723: checking whether -R must be followed by a space" >&5 + echo "$as_me:35907: checking whether -R must be followed by a space" >&5 echo $ECHO_N "checking whether -R must be followed by a space... $ECHO_C" >&6 ac_xsave_LIBS=$LIBS; LIBS="$LIBS -R$x_libraries" cat >conftest.$ac_ext <<_ACEOF -#line 35727 "configure" +#line 35911 "configure" #include "confdefs.h" int @@ -35736,16 +35920,16 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:35739: \"$ac_link\"") >&5 +if { (eval echo "$as_me:35923: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:35742: \$? = $ac_status" >&5 + echo "$as_me:35926: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:35745: \"$ac_try\"") >&5 + { (eval echo "$as_me:35929: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:35748: \$? = $ac_status" >&5 + echo "$as_me:35932: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_R_nospace=yes else @@ -35755,13 +35939,13 @@ ac_R_nospace=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext if test $ac_R_nospace = yes; then - echo "$as_me:35758: result: no" >&5 + echo "$as_me:35942: result: no" >&5 echo "${ECHO_T}no" >&6 X_LIBS="$X_LIBS -R$x_libraries" else LIBS="$ac_xsave_LIBS -R $x_libraries" cat >conftest.$ac_ext <<_ACEOF -#line 35764 "configure" +#line 35948 "configure" #include "confdefs.h" int @@ -35773,16 +35957,16 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:35776: \"$ac_link\"") >&5 +if { (eval echo "$as_me:35960: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:35779: \$? = $ac_status" >&5 + echo "$as_me:35963: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:35782: \"$ac_try\"") >&5 + { (eval echo "$as_me:35966: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:35785: \$? = $ac_status" >&5 + echo "$as_me:35969: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_R_space=yes else @@ -35792,11 +35976,11 @@ ac_R_space=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext if test $ac_R_space = yes; then - echo "$as_me:35795: result: yes" >&5 + echo "$as_me:35979: result: yes" >&5 echo "${ECHO_T}yes" >&6 X_LIBS="$X_LIBS -R $x_libraries" else - echo "$as_me:35799: result: neither works" >&5 + echo "$as_me:35983: result: neither works" >&5 echo "${ECHO_T}neither works" >&6 fi fi @@ -35816,7 +36000,7 @@ echo "${ECHO_T}neither works" >&6 # the Alpha needs dnet_stub (dnet does not exist). ac_xsave_LIBS="$LIBS"; LIBS="$LIBS $X_LIBS -lX11" cat >conftest.$ac_ext <<_ACEOF -#line 35819 "configure" +#line 36003 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -35835,22 +36019,22 @@ XOpenDisplay (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:35838: \"$ac_link\"") >&5 +if { (eval echo "$as_me:36022: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:35841: \$? = $ac_status" >&5 + echo "$as_me:36025: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:35844: \"$ac_try\"") >&5 + { (eval echo "$as_me:36028: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:35847: \$? = $ac_status" >&5 + echo "$as_me:36031: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 -echo "$as_me:35853: checking for dnet_ntoa in -ldnet" >&5 +echo "$as_me:36037: checking for dnet_ntoa in -ldnet" >&5 echo $ECHO_N "checking for dnet_ntoa in -ldnet... $ECHO_C" >&6 if test "${ac_cv_lib_dnet_dnet_ntoa+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -35858,7 +36042,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-ldnet $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 35861 "configure" +#line 36045 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -35877,16 +36061,16 @@ dnet_ntoa (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:35880: \"$ac_link\"") >&5 +if { (eval echo "$as_me:36064: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:35883: \$? = $ac_status" >&5 + echo "$as_me:36067: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:35886: \"$ac_try\"") >&5 + { (eval echo "$as_me:36070: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:35889: \$? = $ac_status" >&5 + echo "$as_me:36073: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_dnet_dnet_ntoa=yes else @@ -35897,14 +36081,14 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:35900: result: $ac_cv_lib_dnet_dnet_ntoa" >&5 +echo "$as_me:36084: result: $ac_cv_lib_dnet_dnet_ntoa" >&5 echo "${ECHO_T}$ac_cv_lib_dnet_dnet_ntoa" >&6 if test $ac_cv_lib_dnet_dnet_ntoa = yes; then X_EXTRA_LIBS="$X_EXTRA_LIBS -ldnet" fi if test $ac_cv_lib_dnet_dnet_ntoa = no; then - echo "$as_me:35907: checking for dnet_ntoa in -ldnet_stub" >&5 + echo "$as_me:36091: checking for dnet_ntoa in -ldnet_stub" >&5 echo $ECHO_N "checking for dnet_ntoa in -ldnet_stub... $ECHO_C" >&6 if test "${ac_cv_lib_dnet_stub_dnet_ntoa+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -35912,7 +36096,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-ldnet_stub $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 35915 "configure" +#line 36099 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -35931,16 +36115,16 @@ dnet_ntoa (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:35934: \"$ac_link\"") >&5 +if { (eval echo "$as_me:36118: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:35937: \$? = $ac_status" >&5 + echo "$as_me:36121: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:35940: \"$ac_try\"") >&5 + { (eval echo "$as_me:36124: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:35943: \$? = $ac_status" >&5 + echo "$as_me:36127: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_dnet_stub_dnet_ntoa=yes else @@ -35951,7 +36135,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:35954: result: $ac_cv_lib_dnet_stub_dnet_ntoa" >&5 +echo "$as_me:36138: result: $ac_cv_lib_dnet_stub_dnet_ntoa" >&5 echo "${ECHO_T}$ac_cv_lib_dnet_stub_dnet_ntoa" >&6 if test $ac_cv_lib_dnet_stub_dnet_ntoa = yes; then X_EXTRA_LIBS="$X_EXTRA_LIBS -ldnet_stub" @@ -35970,13 +36154,13 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext # on Irix 5.2, according to T.E. Dickey. # The functions gethostbyname, getservbyname, and inet_addr are # in -lbsd on LynxOS 3.0.1/i386, according to Lars Hecking. - echo "$as_me:35973: checking for gethostbyname" >&5 + echo "$as_me:36157: checking for gethostbyname" >&5 echo $ECHO_N "checking for gethostbyname... $ECHO_C" >&6 if test "${ac_cv_func_gethostbyname+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 35979 "configure" +#line 36163 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char gethostbyname (); below. */ @@ -36007,16 +36191,16 @@ f = gethostbyname; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:36010: \"$ac_link\"") >&5 +if { (eval echo "$as_me:36194: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:36013: \$? = $ac_status" >&5 + echo "$as_me:36197: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:36016: \"$ac_try\"") >&5 + { (eval echo "$as_me:36200: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:36019: \$? = $ac_status" >&5 + echo "$as_me:36203: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_gethostbyname=yes else @@ -36026,11 +36210,11 @@ ac_cv_func_gethostbyname=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:36029: result: $ac_cv_func_gethostbyname" >&5 +echo "$as_me:36213: result: $ac_cv_func_gethostbyname" >&5 echo "${ECHO_T}$ac_cv_func_gethostbyname" >&6 if test $ac_cv_func_gethostbyname = no; then - echo "$as_me:36033: checking for gethostbyname in -lnsl" >&5 + echo "$as_me:36217: checking for gethostbyname in -lnsl" >&5 echo $ECHO_N "checking for gethostbyname in -lnsl... $ECHO_C" >&6 if test "${ac_cv_lib_nsl_gethostbyname+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -36038,7 +36222,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lnsl $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 36041 "configure" +#line 36225 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -36057,16 +36241,16 @@ gethostbyname (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:36060: \"$ac_link\"") >&5 +if { (eval echo "$as_me:36244: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:36063: \$? = $ac_status" >&5 + echo "$as_me:36247: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:36066: \"$ac_try\"") >&5 + { (eval echo "$as_me:36250: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:36069: \$? = $ac_status" >&5 + echo "$as_me:36253: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_nsl_gethostbyname=yes else @@ -36077,14 +36261,14 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:36080: result: $ac_cv_lib_nsl_gethostbyname" >&5 +echo "$as_me:36264: result: $ac_cv_lib_nsl_gethostbyname" >&5 echo "${ECHO_T}$ac_cv_lib_nsl_gethostbyname" >&6 if test $ac_cv_lib_nsl_gethostbyname = yes; then X_EXTRA_LIBS="$X_EXTRA_LIBS -lnsl" fi if test $ac_cv_lib_nsl_gethostbyname = no; then - echo "$as_me:36087: checking for gethostbyname in -lbsd" >&5 + echo "$as_me:36271: checking for gethostbyname in -lbsd" >&5 echo $ECHO_N "checking for gethostbyname in -lbsd... $ECHO_C" >&6 if test "${ac_cv_lib_bsd_gethostbyname+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -36092,7 +36276,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lbsd $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 36095 "configure" +#line 36279 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -36111,16 +36295,16 @@ gethostbyname (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:36114: \"$ac_link\"") >&5 +if { (eval echo "$as_me:36298: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:36117: \$? = $ac_status" >&5 + echo "$as_me:36301: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:36120: \"$ac_try\"") >&5 + { (eval echo "$as_me:36304: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:36123: \$? = $ac_status" >&5 + echo "$as_me:36307: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_bsd_gethostbyname=yes else @@ -36131,7 +36315,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:36134: result: $ac_cv_lib_bsd_gethostbyname" >&5 +echo "$as_me:36318: result: $ac_cv_lib_bsd_gethostbyname" >&5 echo "${ECHO_T}$ac_cv_lib_bsd_gethostbyname" >&6 if test $ac_cv_lib_bsd_gethostbyname = yes; then X_EXTRA_LIBS="$X_EXTRA_LIBS -lbsd" @@ -36147,13 +36331,13 @@ fi # variants that don't use the nameserver (or something). -lsocket # must be given before -lnsl if both are needed. We assume that # if connect needs -lnsl, so does gethostbyname. - echo "$as_me:36150: checking for connect" >&5 + echo "$as_me:36334: checking for connect" >&5 echo $ECHO_N "checking for connect... $ECHO_C" >&6 if test "${ac_cv_func_connect+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 36156 "configure" +#line 36340 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char connect (); below. */ @@ -36184,16 +36368,16 @@ f = connect; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:36187: \"$ac_link\"") >&5 +if { (eval echo "$as_me:36371: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:36190: \$? = $ac_status" >&5 + echo "$as_me:36374: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:36193: \"$ac_try\"") >&5 + { (eval echo "$as_me:36377: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:36196: \$? = $ac_status" >&5 + echo "$as_me:36380: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_connect=yes else @@ -36203,11 +36387,11 @@ ac_cv_func_connect=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:36206: result: $ac_cv_func_connect" >&5 +echo "$as_me:36390: result: $ac_cv_func_connect" >&5 echo "${ECHO_T}$ac_cv_func_connect" >&6 if test $ac_cv_func_connect = no; then - echo "$as_me:36210: checking for connect in -lsocket" >&5 + echo "$as_me:36394: checking for connect in -lsocket" >&5 echo $ECHO_N "checking for connect in -lsocket... $ECHO_C" >&6 if test "${ac_cv_lib_socket_connect+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -36215,7 +36399,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lsocket $X_EXTRA_LIBS $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 36218 "configure" +#line 36402 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -36234,16 +36418,16 @@ connect (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:36237: \"$ac_link\"") >&5 +if { (eval echo "$as_me:36421: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:36240: \$? = $ac_status" >&5 + echo "$as_me:36424: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:36243: \"$ac_try\"") >&5 + { (eval echo "$as_me:36427: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:36246: \$? = $ac_status" >&5 + echo "$as_me:36430: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_socket_connect=yes else @@ -36254,7 +36438,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:36257: result: $ac_cv_lib_socket_connect" >&5 +echo "$as_me:36441: result: $ac_cv_lib_socket_connect" >&5 echo "${ECHO_T}$ac_cv_lib_socket_connect" >&6 if test $ac_cv_lib_socket_connect = yes; then X_EXTRA_LIBS="-lsocket $X_EXTRA_LIBS" @@ -36263,13 +36447,13 @@ fi fi # Guillermo Gomez says -lposix is necessary on A/UX. - echo "$as_me:36266: checking for remove" >&5 + echo "$as_me:36450: checking for remove" >&5 echo $ECHO_N "checking for remove... $ECHO_C" >&6 if test "${ac_cv_func_remove+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 36272 "configure" +#line 36456 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char remove (); below. */ @@ -36300,16 +36484,16 @@ f = remove; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:36303: \"$ac_link\"") >&5 +if { (eval echo "$as_me:36487: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:36306: \$? = $ac_status" >&5 + echo "$as_me:36490: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:36309: \"$ac_try\"") >&5 + { (eval echo "$as_me:36493: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:36312: \$? = $ac_status" >&5 + echo "$as_me:36496: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_remove=yes else @@ -36319,11 +36503,11 @@ ac_cv_func_remove=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:36322: result: $ac_cv_func_remove" >&5 +echo "$as_me:36506: result: $ac_cv_func_remove" >&5 echo "${ECHO_T}$ac_cv_func_remove" >&6 if test $ac_cv_func_remove = no; then - echo "$as_me:36326: checking for remove in -lposix" >&5 + echo "$as_me:36510: checking for remove in -lposix" >&5 echo $ECHO_N "checking for remove in -lposix... $ECHO_C" >&6 if test "${ac_cv_lib_posix_remove+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -36331,7 +36515,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lposix $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 36334 "configure" +#line 36518 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -36350,16 +36534,16 @@ remove (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:36353: \"$ac_link\"") >&5 +if { (eval echo "$as_me:36537: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:36356: \$? = $ac_status" >&5 + echo "$as_me:36540: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:36359: \"$ac_try\"") >&5 + { (eval echo "$as_me:36543: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:36362: \$? = $ac_status" >&5 + echo "$as_me:36546: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_posix_remove=yes else @@ -36370,7 +36554,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:36373: result: $ac_cv_lib_posix_remove" >&5 +echo "$as_me:36557: result: $ac_cv_lib_posix_remove" >&5 echo "${ECHO_T}$ac_cv_lib_posix_remove" >&6 if test $ac_cv_lib_posix_remove = yes; then X_EXTRA_LIBS="$X_EXTRA_LIBS -lposix" @@ -36379,13 +36563,13 @@ fi fi # BSDI BSD/OS 2.1 needs -lipc for XOpenDisplay. - echo "$as_me:36382: checking for shmat" >&5 + echo "$as_me:36566: checking for shmat" >&5 echo $ECHO_N "checking for shmat... $ECHO_C" >&6 if test "${ac_cv_func_shmat+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 36388 "configure" +#line 36572 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char shmat (); below. */ @@ -36416,16 +36600,16 @@ f = shmat; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:36419: \"$ac_link\"") >&5 +if { (eval echo "$as_me:36603: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:36422: \$? = $ac_status" >&5 + echo "$as_me:36606: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:36425: \"$ac_try\"") >&5 + { (eval echo "$as_me:36609: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:36428: \$? = $ac_status" >&5 + echo "$as_me:36612: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_shmat=yes else @@ -36435,11 +36619,11 @@ ac_cv_func_shmat=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:36438: result: $ac_cv_func_shmat" >&5 +echo "$as_me:36622: result: $ac_cv_func_shmat" >&5 echo "${ECHO_T}$ac_cv_func_shmat" >&6 if test $ac_cv_func_shmat = no; then - echo "$as_me:36442: checking for shmat in -lipc" >&5 + echo "$as_me:36626: checking for shmat in -lipc" >&5 echo $ECHO_N "checking for shmat in -lipc... $ECHO_C" >&6 if test "${ac_cv_lib_ipc_shmat+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -36447,7 +36631,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lipc $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 36450 "configure" +#line 36634 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -36466,16 +36650,16 @@ shmat (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:36469: \"$ac_link\"") >&5 +if { (eval echo "$as_me:36653: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:36472: \$? = $ac_status" >&5 + echo "$as_me:36656: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:36475: \"$ac_try\"") >&5 + { (eval echo "$as_me:36659: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:36478: \$? = $ac_status" >&5 + echo "$as_me:36662: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_ipc_shmat=yes else @@ -36486,7 +36670,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:36489: result: $ac_cv_lib_ipc_shmat" >&5 +echo "$as_me:36673: result: $ac_cv_lib_ipc_shmat" >&5 echo "${ECHO_T}$ac_cv_lib_ipc_shmat" >&6 if test $ac_cv_lib_ipc_shmat = yes; then X_EXTRA_LIBS="$X_EXTRA_LIBS -lipc" @@ -36504,7 +36688,7 @@ fi # These have to be linked with before -lX11, unlike the other # libraries we check for below, so use a different variable. # John Interrante, Karl Berry - echo "$as_me:36507: checking for IceConnectionNumber in -lICE" >&5 + echo "$as_me:36691: checking for IceConnectionNumber in -lICE" >&5 echo $ECHO_N "checking for IceConnectionNumber in -lICE... $ECHO_C" >&6 if test "${ac_cv_lib_ICE_IceConnectionNumber+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -36512,7 +36696,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lICE $X_EXTRA_LIBS $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 36515 "configure" +#line 36699 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -36531,16 +36715,16 @@ IceConnectionNumber (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:36534: \"$ac_link\"") >&5 +if { (eval echo "$as_me:36718: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:36537: \$? = $ac_status" >&5 + echo "$as_me:36721: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:36540: \"$ac_try\"") >&5 + { (eval echo "$as_me:36724: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:36543: \$? = $ac_status" >&5 + echo "$as_me:36727: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_ICE_IceConnectionNumber=yes else @@ -36551,7 +36735,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:36554: result: $ac_cv_lib_ICE_IceConnectionNumber" >&5 +echo "$as_me:36738: result: $ac_cv_lib_ICE_IceConnectionNumber" >&5 echo "${ECHO_T}$ac_cv_lib_ICE_IceConnectionNumber" >&6 if test $ac_cv_lib_ICE_IceConnectionNumber = yes; then X_PRE_LIBS="$X_PRE_LIBS -lSM -lICE" @@ -36563,7 +36747,7 @@ fi cf_x_athena=${cf_x_athena-Xaw} -echo "$as_me:36566: checking if you want to link with Xaw 3d library" >&5 +echo "$as_me:36750: 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= @@ -36574,14 +36758,14 @@ if test "${with_Xaw3d+set}" = set; then fi; if test "$withval" = yes ; then cf_x_athena=Xaw3d - echo "$as_me:36577: result: yes" >&5 + echo "$as_me:36761: result: yes" >&5 echo "${ECHO_T}yes" >&6 else - echo "$as_me:36580: result: no" >&5 + echo "$as_me:36764: result: no" >&5 echo "${ECHO_T}no" >&6 fi -echo "$as_me:36584: checking if you want to link with neXT Athena library" >&5 +echo "$as_me:36768: 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= @@ -36592,14 +36776,14 @@ if test "${with_neXtaw+set}" = set; then fi; if test "$withval" = yes ; then cf_x_athena=neXtaw - echo "$as_me:36595: result: yes" >&5 + echo "$as_me:36779: result: yes" >&5 echo "${ECHO_T}yes" >&6 else - echo "$as_me:36598: result: no" >&5 + echo "$as_me:36782: result: no" >&5 echo "${ECHO_T}no" >&6 fi -echo "$as_me:36602: checking if you want to link with Athena-Plus library" >&5 +echo "$as_me:36786: 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= @@ -36610,10 +36794,10 @@ if test "${with_XawPlus+set}" = set; then fi; if test "$withval" = yes ; then cf_x_athena=XawPlus - echo "$as_me:36613: result: yes" >&5 + echo "$as_me:36797: result: yes" >&5 echo "${ECHO_T}yes" >&6 else - echo "$as_me:36616: result: no" >&5 + echo "$as_me:36800: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -36633,17 +36817,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}:36636: testing found package $cf_athena_pkg ..." 1>&5 +echo "${as_me-configure}:36820: 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}:36642: testing package $cf_athena_pkg CFLAGS: $cf_pkgconfig_incs ..." 1>&5 +echo "${as_me-configure}:36826: 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}:36646: testing package $cf_athena_pkg LIBS: $cf_pkgconfig_libs ..." 1>&5 +echo "${as_me-configure}:36830: testing package $cf_athena_pkg LIBS: $cf_pkgconfig_libs ..." 1>&5 cf_fix_cppflags=no cf_new_cflags= @@ -36746,17 +36930,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}:36749: testing found package Xext ..." 1>&5 +echo "${as_me-configure}:36933: 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}:36755: testing package Xext CFLAGS: $cf_pkgconfig_incs ..." 1>&5 +echo "${as_me-configure}:36939: 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}:36759: testing package Xext LIBS: $cf_pkgconfig_libs ..." 1>&5 +echo "${as_me-configure}:36943: testing package Xext LIBS: $cf_pkgconfig_libs ..." 1>&5 cf_fix_cppflags=no cf_new_cflags= @@ -36840,7 +37024,7 @@ fi : else - echo "$as_me:36843: checking for XextCreateExtension in -lXext" >&5 + echo "$as_me:37027: 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 @@ -36848,7 +37032,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lXext $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 36851 "configure" +#line 37035 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -36867,16 +37051,16 @@ XextCreateExtension (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:36870: \"$ac_link\"") >&5 +if { (eval echo "$as_me:37054: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:36873: \$? = $ac_status" >&5 + echo "$as_me:37057: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:36876: \"$ac_try\"") >&5 + { (eval echo "$as_me:37060: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:36879: \$? = $ac_status" >&5 + echo "$as_me:37063: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_Xext_XextCreateExtension=yes else @@ -36887,7 +37071,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:36890: result: $ac_cv_lib_Xext_XextCreateExtension" >&5 +echo "$as_me:37074: result: $ac_cv_lib_Xext_XextCreateExtension" >&5 echo "${ECHO_T}$ac_cv_lib_Xext_XextCreateExtension" >&6 if test $ac_cv_lib_Xext_XextCreateExtension = yes; then LIBS="-lXext $LIBS" @@ -36900,17 +37084,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}:36903: testing found package xt ..." 1>&5 +echo "${as_me-configure}:37087: 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}:36909: testing package xt CFLAGS: $cf_pkgconfig_incs ..." 1>&5 +echo "${as_me-configure}:37093: 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}:36913: testing package xt LIBS: $cf_pkgconfig_libs ..." 1>&5 +echo "${as_me-configure}:37097: testing package xt LIBS: $cf_pkgconfig_libs ..." 1>&5 cf_fix_cppflags=no cf_new_cflags= @@ -37001,16 +37185,16 @@ fi *) test -n "$verbose" && echo " work around broken package" 1>&6 -echo "${as_me-configure}:37004: testing work around broken package ..." 1>&5 +echo "${as_me-configure}:37188: testing work around broken package ..." 1>&5 test -n "$verbose" && echo " ...before $LIBS" 1>&6 -echo "${as_me-configure}:37008: testing ...before $LIBS ..." 1>&5 +echo "${as_me-configure}:37192: 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}:37013: testing ...after $LIBS ..." 1>&5 +echo "${as_me-configure}:37197: testing ...after $LIBS ..." 1>&5 ;; esac @@ -37025,7 +37209,7 @@ else test -n "$verbose" && echo " checking additions to CFLAGS" 1>&6 -echo "${as_me-configure}:37028: testing checking additions to CFLAGS ..." 1>&5 +echo "${as_me-configure}:37212: testing checking additions to CFLAGS ..." 1>&5 cf_check_cflags="$CFLAGS" cf_check_cppflags="$CPPFLAGS" @@ -37096,7 +37280,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}:37099: testing add to \$CFLAGS $cf_new_cflags ..." 1>&5 +echo "${as_me-configure}:37283: testing add to \$CFLAGS $cf_new_cflags ..." 1>&5 CFLAGS="$CFLAGS $cf_new_cflags" fi @@ -37104,7 +37288,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}:37107: testing add to \$CPPFLAGS $cf_new_cppflags ..." 1>&5 +echo "${as_me-configure}:37291: testing add to \$CPPFLAGS $cf_new_cppflags ..." 1>&5 CPPFLAGS="$CPPFLAGS $cf_new_cppflags" fi @@ -37112,14 +37296,14 @@ fi if test -n "$cf_new_extra_cppflags" ; then test -n "$verbose" && echo " add to \$EXTRA_CPPFLAGS $cf_new_extra_cppflags" 1>&6 -echo "${as_me-configure}:37115: testing add to \$EXTRA_CPPFLAGS $cf_new_extra_cppflags ..." 1>&5 +echo "${as_me-configure}:37299: testing add to \$EXTRA_CPPFLAGS $cf_new_extra_cppflags ..." 1>&5 EXTRA_CPPFLAGS="$cf_new_extra_cppflags $EXTRA_CPPFLAGS" fi if test "$cf_check_cflags" != "$CFLAGS" ; then cat >conftest.$ac_ext <<_ACEOF -#line 37122 "configure" +#line 37306 "configure" #include "confdefs.h" #include <stdio.h> int @@ -37131,16 +37315,16 @@ printf("Hello world"); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:37134: \"$ac_link\"") >&5 +if { (eval echo "$as_me:37318: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:37137: \$? = $ac_status" >&5 + echo "$as_me:37321: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:37140: \"$ac_try\"") >&5 + { (eval echo "$as_me:37324: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:37143: \$? = $ac_status" >&5 + echo "$as_me:37327: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -37148,12 +37332,12 @@ else cat conftest.$ac_ext >&5 test -n "$verbose" && echo " test-compile failed. Undoing change to \$CFLAGS" 1>&6 -echo "${as_me-configure}:37151: testing test-compile failed. Undoing change to \$CFLAGS ..." 1>&5 +echo "${as_me-configure}:37335: testing test-compile failed. Undoing change to \$CFLAGS ..." 1>&5 if test "$cf_check_cppflags" != "$CPPFLAGS" ; then test -n "$verbose" && echo " but keeping change to \$CPPFLAGS" 1>&6 -echo "${as_me-configure}:37156: testing but keeping change to \$CPPFLAGS ..." 1>&5 +echo "${as_me-configure}:37340: testing but keeping change to \$CPPFLAGS ..." 1>&5 fi CFLAGS="$cf_check_flags" @@ -37161,13 +37345,13 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi - echo "$as_me:37164: checking for XOpenDisplay" >&5 + echo "$as_me:37348: 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 37170 "configure" +#line 37354 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char XOpenDisplay (); below. */ @@ -37198,16 +37382,16 @@ f = XOpenDisplay; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:37201: \"$ac_link\"") >&5 +if { (eval echo "$as_me:37385: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:37204: \$? = $ac_status" >&5 + echo "$as_me:37388: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:37207: \"$ac_try\"") >&5 + { (eval echo "$as_me:37391: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:37210: \$? = $ac_status" >&5 + echo "$as_me:37394: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_XOpenDisplay=yes else @@ -37217,13 +37401,13 @@ ac_cv_func_XOpenDisplay=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:37220: result: $ac_cv_func_XOpenDisplay" >&5 +echo "$as_me:37404: 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:37226: checking for XOpenDisplay in -lX11" >&5 + echo "$as_me:37410: 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 @@ -37231,7 +37415,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lX11 $X_PRE_LIBS $LIBS $X_EXTRA_LIBS $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 37234 "configure" +#line 37418 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -37250,16 +37434,16 @@ XOpenDisplay (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:37253: \"$ac_link\"") >&5 +if { (eval echo "$as_me:37437: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:37256: \$? = $ac_status" >&5 + echo "$as_me:37440: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:37259: \"$ac_try\"") >&5 + { (eval echo "$as_me:37443: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:37262: \$? = $ac_status" >&5 + echo "$as_me:37446: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_X11_XOpenDisplay=yes else @@ -37270,7 +37454,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:37273: result: $ac_cv_lib_X11_XOpenDisplay" >&5 +echo "$as_me:37457: result: $ac_cv_lib_X11_XOpenDisplay" >&5 echo "${ECHO_T}$ac_cv_lib_X11_XOpenDisplay" >&6 if test $ac_cv_lib_X11_XOpenDisplay = yes; then LIBS="-lX11 $LIBS" @@ -37278,13 +37462,13 @@ fi fi - echo "$as_me:37281: checking for XtAppInitialize" >&5 + echo "$as_me:37465: 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 37287 "configure" +#line 37471 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char XtAppInitialize (); below. */ @@ -37315,16 +37499,16 @@ f = XtAppInitialize; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:37318: \"$ac_link\"") >&5 +if { (eval echo "$as_me:37502: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:37321: \$? = $ac_status" >&5 + echo "$as_me:37505: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:37324: \"$ac_try\"") >&5 + { (eval echo "$as_me:37508: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:37327: \$? = $ac_status" >&5 + echo "$as_me:37511: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_XtAppInitialize=yes else @@ -37334,13 +37518,13 @@ ac_cv_func_XtAppInitialize=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:37337: result: $ac_cv_func_XtAppInitialize" >&5 +echo "$as_me:37521: 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:37343: checking for XtAppInitialize in -lXt" >&5 + echo "$as_me:37527: 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 @@ -37348,7 +37532,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lXt $X_PRE_LIBS $LIBS $X_EXTRA_LIBS $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 37351 "configure" +#line 37535 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -37367,16 +37551,16 @@ XtAppInitialize (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:37370: \"$ac_link\"") >&5 +if { (eval echo "$as_me:37554: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:37373: \$? = $ac_status" >&5 + echo "$as_me:37557: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:37376: \"$ac_try\"") >&5 + { (eval echo "$as_me:37560: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:37379: \$? = $ac_status" >&5 + echo "$as_me:37563: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_Xt_XtAppInitialize=yes else @@ -37387,7 +37571,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:37390: result: $ac_cv_lib_Xt_XtAppInitialize" >&5 +echo "$as_me:37574: 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 cat >>confdefs.h <<\EOF @@ -37403,7 +37587,7 @@ fi fi if test $cf_have_X_LIBS = no ; then - { echo "$as_me:37406: WARNING: Unable to successfully link X Toolkit library (-lXt) with + { echo "$as_me:37590: 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 @@ -37425,14 +37609,14 @@ do cf_test=X11/$cf_x_athena_root/SimpleMenu.h if test $cf_path != default ; then CPPFLAGS="$cf_save -I$cf_path/include" - echo "$as_me:37428: checking for $cf_test in $cf_path" >&5 + echo "$as_me:37612: 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:37431: checking for $cf_test" >&5 + echo "$as_me:37615: checking for $cf_test" >&5 echo $ECHO_N "checking for $cf_test... $ECHO_C" >&6 fi cat >conftest.$ac_ext <<_ACEOF -#line 37435 "configure" +#line 37619 "configure" #include "confdefs.h" #include <X11/Intrinsic.h> @@ -37446,16 +37630,16 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:37449: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:37633: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:37452: \$? = $ac_status" >&5 + echo "$as_me:37636: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:37455: \"$ac_try\"") >&5 + { (eval echo "$as_me:37639: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:37458: \$? = $ac_status" >&5 + echo "$as_me:37642: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_result=yes else @@ -37464,7 +37648,7 @@ cat conftest.$ac_ext >&5 cf_result=no fi rm -f conftest.$ac_objext conftest.$ac_ext - echo "$as_me:37467: result: $cf_result" >&5 + echo "$as_me:37651: result: $cf_result" >&5 echo "${ECHO_T}$cf_result" >&6 if test "$cf_result" = yes ; then cf_x_athena_inc=$cf_path @@ -37476,7 +37660,7 @@ echo "${ECHO_T}$cf_result" >&6 done if test -z "$cf_x_athena_inc" ; then - { echo "$as_me:37479: WARNING: Unable to successfully find Athena header files with test program" >&5 + { echo "$as_me:37663: WARNING: Unable to successfully find Athena header files with test program" >&5 echo "$as_me: WARNING: Unable to successfully find Athena header files with test program" >&2;} elif test "$cf_x_athena_inc" != default ; then CPPFLAGS="$CPPFLAGS -I$cf_x_athena_inc" @@ -37501,15 +37685,15 @@ do cf_test=XawSimpleMenuAddGlobalActions if test $cf_path != default ; then LIBS="-L$cf_path/lib $cf_lib $LIBS" - echo "$as_me:37504: checking for $cf_lib in $cf_path" >&5 + echo "$as_me:37688: checking for $cf_lib in $cf_path" >&5 echo $ECHO_N "checking for $cf_lib in $cf_path... $ECHO_C" >&6 else LIBS="$cf_lib $LIBS" - echo "$as_me:37508: checking for $cf_test in $cf_lib" >&5 + echo "$as_me:37692: checking for $cf_test in $cf_lib" >&5 echo $ECHO_N "checking for $cf_test in $cf_lib... $ECHO_C" >&6 fi cat >conftest.$ac_ext <<_ACEOF -#line 37512 "configure" +#line 37696 "configure" #include "confdefs.h" int @@ -37521,16 +37705,16 @@ $cf_test() } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:37524: \"$ac_link\"") >&5 +if { (eval echo "$as_me:37708: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:37527: \$? = $ac_status" >&5 + echo "$as_me:37711: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:37530: \"$ac_try\"") >&5 + { (eval echo "$as_me:37714: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:37533: \$? = $ac_status" >&5 + echo "$as_me:37717: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_result=yes else @@ -37539,7 +37723,7 @@ cat conftest.$ac_ext >&5 cf_result=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext - echo "$as_me:37542: result: $cf_result" >&5 + echo "$as_me:37726: result: $cf_result" >&5 echo "${ECHO_T}$cf_result" >&6 if test "$cf_result" = yes ; then cf_x_athena_lib="$cf_lib" @@ -37551,7 +37735,7 @@ echo "${ECHO_T}$cf_result" >&6 done if test -z "$cf_x_athena_lib" ; then - { { echo "$as_me:37554: error: Unable to successfully link Athena library (-l$cf_x_athena_root) with test program" >&5 + { { echo "$as_me:37738: 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 @@ -37568,7 +37752,7 @@ for ac_prog in xcurses-config 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:37571: checking for $ac_word" >&5 +echo "$as_me:37755: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_path_XCURSES_CONFIG+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -37585,7 +37769,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_XCURSES_CONFIG="$ac_dir/$ac_word" - echo "$as_me:37588: found $ac_dir/$ac_word" >&5 + echo "$as_me:37772: found $ac_dir/$ac_word" >&5 break fi done @@ -37596,10 +37780,10 @@ fi XCURSES_CONFIG=$ac_cv_path_XCURSES_CONFIG if test -n "$XCURSES_CONFIG"; then - echo "$as_me:37599: result: $XCURSES_CONFIG" >&5 + echo "$as_me:37783: result: $XCURSES_CONFIG" >&5 echo "${ECHO_T}$XCURSES_CONFIG" >&6 else - echo "$as_me:37602: result: no" >&5 + echo "$as_me:37786: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -37620,7 +37804,7 @@ LDFLAGS="$LDFLAGS $X_LIBS" test -n "$verbose" && echo " checking additions to CFLAGS" 1>&6 -echo "${as_me-configure}:37623: testing checking additions to CFLAGS ..." 1>&5 +echo "${as_me-configure}:37807: testing checking additions to CFLAGS ..." 1>&5 cf_check_cflags="$CFLAGS" cf_check_cppflags="$CPPFLAGS" @@ -37691,7 +37875,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}:37694: testing add to \$CFLAGS $cf_new_cflags ..." 1>&5 +echo "${as_me-configure}:37878: testing add to \$CFLAGS $cf_new_cflags ..." 1>&5 CFLAGS="$CFLAGS $cf_new_cflags" fi @@ -37699,7 +37883,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}:37702: testing add to \$CPPFLAGS $cf_new_cppflags ..." 1>&5 +echo "${as_me-configure}:37886: testing add to \$CPPFLAGS $cf_new_cppflags ..." 1>&5 CPPFLAGS="$CPPFLAGS $cf_new_cppflags" fi @@ -37707,14 +37891,14 @@ fi if test -n "$cf_new_extra_cppflags" ; then test -n "$verbose" && echo " add to \$EXTRA_CPPFLAGS $cf_new_extra_cppflags" 1>&6 -echo "${as_me-configure}:37710: testing add to \$EXTRA_CPPFLAGS $cf_new_extra_cppflags ..." 1>&5 +echo "${as_me-configure}:37894: testing add to \$EXTRA_CPPFLAGS $cf_new_extra_cppflags ..." 1>&5 EXTRA_CPPFLAGS="$cf_new_extra_cppflags $EXTRA_CPPFLAGS" fi if test "$cf_check_cflags" != "$CFLAGS" ; then cat >conftest.$ac_ext <<_ACEOF -#line 37717 "configure" +#line 37901 "configure" #include "confdefs.h" #include <stdio.h> int @@ -37726,16 +37910,16 @@ printf("Hello world"); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:37729: \"$ac_link\"") >&5 +if { (eval echo "$as_me:37913: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:37732: \$? = $ac_status" >&5 + echo "$as_me:37916: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:37735: \"$ac_try\"") >&5 + { (eval echo "$as_me:37919: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:37738: \$? = $ac_status" >&5 + echo "$as_me:37922: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -37743,12 +37927,12 @@ else cat conftest.$ac_ext >&5 test -n "$verbose" && echo " test-compile failed. Undoing change to \$CFLAGS" 1>&6 -echo "${as_me-configure}:37746: testing test-compile failed. Undoing change to \$CFLAGS ..." 1>&5 +echo "${as_me-configure}:37930: testing test-compile failed. Undoing change to \$CFLAGS ..." 1>&5 if test "$cf_check_cppflags" != "$CPPFLAGS" ; then test -n "$verbose" && echo " but keeping change to \$CPPFLAGS" 1>&6 -echo "${as_me-configure}:37751: testing but keeping change to \$CPPFLAGS ..." 1>&5 +echo "${as_me-configure}:37935: testing but keeping change to \$CPPFLAGS ..." 1>&5 fi CFLAGS="$cf_check_flags" @@ -37756,7 +37940,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:37759: checking for XOpenDisplay in -lX11" >&5 +echo "$as_me:37943: 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 @@ -37764,7 +37948,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lX11 $X_PRE_LIBS $LIBS $X_EXTRA_LIBS $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 37767 "configure" +#line 37951 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -37783,16 +37967,16 @@ XOpenDisplay (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:37786: \"$ac_link\"") >&5 +if { (eval echo "$as_me:37970: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:37789: \$? = $ac_status" >&5 + echo "$as_me:37973: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:37792: \"$ac_try\"") >&5 + { (eval echo "$as_me:37976: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:37795: \$? = $ac_status" >&5 + echo "$as_me:37979: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_X11_XOpenDisplay=yes else @@ -37803,13 +37987,13 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:37806: result: $ac_cv_lib_X11_XOpenDisplay" >&5 +echo "$as_me:37990: result: $ac_cv_lib_X11_XOpenDisplay" >&5 echo "${ECHO_T}$ac_cv_lib_X11_XOpenDisplay" >&6 if test $ac_cv_lib_X11_XOpenDisplay = yes; then LIBS="-lX11 $LIBS" fi -echo "$as_me:37812: checking for XCurses library" >&5 +echo "$as_me:37996: 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 @@ -37817,7 +38001,7 @@ else LIBS="-lXCurses $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 37820 "configure" +#line 38004 "configure" #include "confdefs.h" #include <xcurses.h> @@ -37832,16 +38016,16 @@ XCursesExit(); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:37835: \"$ac_link\"") >&5 +if { (eval echo "$as_me:38019: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:37838: \$? = $ac_status" >&5 + echo "$as_me:38022: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:37841: \"$ac_try\"") >&5 + { (eval echo "$as_me:38025: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:37844: \$? = $ac_status" >&5 + echo "$as_me:38028: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_lib_XCurses=yes else @@ -37852,7 +38036,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:37855: result: $cf_cv_lib_XCurses" >&5 +echo "$as_me:38039: result: $cf_cv_lib_XCurses" >&5 echo "${ECHO_T}$cf_cv_lib_XCurses" >&6 fi @@ -37871,14 +38055,14 @@ EOF EOF else - { { echo "$as_me:37874: error: Cannot link with XCurses" >&5 + { { echo "$as_me:38058: error: Cannot link with XCurses" >&5 echo "$as_me: error: Cannot link with XCurses" >&2;} { (exit 1); exit 1; }; } fi else -echo "$as_me:37881: checking if we can include termio.h with curses" >&5 +echo "$as_me:38065: 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 @@ -37888,7 +38072,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 37891 "configure" +#line 38075 "configure" #include "confdefs.h" #include <LYCurses.h> @@ -37902,16 +38086,16 @@ putchar(0x0a) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:37905: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:38089: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:37908: \$? = $ac_status" >&5 + echo "$as_me:38092: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:37911: \"$ac_try\"") >&5 + { (eval echo "$as_me:38095: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:37914: \$? = $ac_status" >&5 + echo "$as_me:38098: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_termio_and_curses=yes else @@ -37924,7 +38108,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext rm -f lynx_cfg.h fi -echo "$as_me:37927: result: $cf_cv_termio_and_curses" >&5 +echo "$as_me:38111: result: $cf_cv_termio_and_curses" >&5 echo "${ECHO_T}$cf_cv_termio_and_curses" >&6 test $cf_cv_termio_and_curses = yes && cat >>confdefs.h <<\EOF @@ -37939,23 +38123,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:37942: checking for $ac_header" >&5 +echo "$as_me:38126: 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 37948 "configure" +#line 38132 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:37952: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:38136: \"$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:37958: \$? = $ac_status" >&5 + echo "$as_me:38142: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -37974,7 +38158,7 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:37977: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:38161: 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 @@ -37984,7 +38168,7 @@ EOF fi done -echo "$as_me:37987: checking if curses supports alternate-character set" >&5 +echo "$as_me:38171: 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 @@ -37993,7 +38177,7 @@ else for mapname in acs_map _acs_map do cat >conftest.$ac_ext <<_ACEOF -#line 37996 "configure" +#line 38180 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header-curses.h}> @@ -38007,16 +38191,16 @@ chtype x = $mapname['l']; $mapname['m'] = 0 } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:38010: \"$ac_link\"") >&5 +if { (eval echo "$as_me:38194: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:38013: \$? = $ac_status" >&5 + echo "$as_me:38197: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:38016: \"$ac_try\"") >&5 + { (eval echo "$as_me:38200: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:38019: \$? = $ac_status" >&5 + echo "$as_me:38203: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_alt_char_set=$mapname break @@ -38030,20 +38214,20 @@ done fi -echo "$as_me:38033: result: $cf_cv_alt_char_set" >&5 +echo "$as_me:38217: 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:38039: checking if curses supports fancy attributes" >&5 +echo "$as_me:38223: 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 38046 "configure" +#line 38230 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header-curses.h}> @@ -38061,16 +38245,16 @@ attrset(A_UNDERLINE|A_BOLD|A_REVERSE); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:38064: \"$ac_link\"") >&5 +if { (eval echo "$as_me:38248: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:38067: \$? = $ac_status" >&5 + echo "$as_me:38251: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:38070: \"$ac_try\"") >&5 + { (eval echo "$as_me:38254: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:38073: \$? = $ac_status" >&5 + echo "$as_me:38257: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_fancy_curses=yes else @@ -38082,13 +38266,13 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:38085: result: $cf_cv_fancy_curses" >&5 +echo "$as_me:38269: 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:38091: checking for function curses_version" >&5 +echo "$as_me:38275: 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 @@ -38098,7 +38282,7 @@ if test "$cross_compiling" = yes; then cf_cv_func_curses_version=unknown else cat >conftest.$ac_ext <<_ACEOF -#line 38101 "configure" +#line 38285 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header-curses.h}> @@ -38111,15 +38295,15 @@ int main() _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:38114: \"$ac_link\"") >&5 +if { (eval echo "$as_me:38298: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:38117: \$? = $ac_status" >&5 + echo "$as_me:38301: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:38119: \"$ac_try\"") >&5 + { (eval echo "$as_me:38303: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:38122: \$? = $ac_status" >&5 + echo "$as_me:38306: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_func_curses_version=yes @@ -38134,21 +38318,21 @@ rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext fi rm -f core fi -echo "$as_me:38137: result: $cf_cv_func_curses_version" >&5 +echo "$as_me:38321: 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 #define HAVE_CURSES_VERSION 1 EOF if test "$cf_cv_ncurses_version" != no ; then -echo "$as_me:38144: checking for obsolete/broken version of ncurses" >&5 +echo "$as_me:38328: 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 38151 "configure" +#line 38335 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header-curses.h}> @@ -38167,16 +38351,16 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:38170: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:38354: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:38173: \$? = $ac_status" >&5 + echo "$as_me:38357: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:38176: \"$ac_try\"") >&5 + { (eval echo "$as_me:38360: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:38179: \$? = $ac_status" >&5 + echo "$as_me:38363: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_ncurses_broken=no else @@ -38188,10 +38372,10 @@ rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:38191: result: $cf_cv_ncurses_broken" >&5 +echo "$as_me:38375: 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:38194: WARNING: hmm... you should get an up-to-date version of ncurses" >&5 + { echo "$as_me:38378: 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 #define NCURSES_BROKEN 1 @@ -38200,14 +38384,14 @@ EOF fi fi -echo "$as_me:38203: checking if curses supports color attributes" >&5 +echo "$as_me:38387: 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 38210 "configure" +#line 38394 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header-curses.h}> @@ -38227,16 +38411,16 @@ chtype x = COLOR_BLUE; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:38230: \"$ac_link\"") >&5 +if { (eval echo "$as_me:38414: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:38233: \$? = $ac_status" >&5 + echo "$as_me:38417: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:38236: \"$ac_try\"") >&5 + { (eval echo "$as_me:38420: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:38239: \$? = $ac_status" >&5 + echo "$as_me:38423: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_color_curses=yes else @@ -38248,7 +38432,7 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:38251: result: $cf_cv_color_curses" >&5 +echo "$as_me:38435: result: $cf_cv_color_curses" >&5 echo "${ECHO_T}$cf_cv_color_curses" >&6 if test $cf_cv_color_curses = yes ; then cat >>confdefs.h <<\EOF @@ -38268,23 +38452,23 @@ unistd.h \ do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` -echo "$as_me:38271: checking for $ac_header" >&5 +echo "$as_me:38455: 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 38277 "configure" +#line 38461 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:38281: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:38465: \"$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:38287: \$? = $ac_status" >&5 + echo "$as_me:38471: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -38303,7 +38487,7 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:38306: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:38490: 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 @@ -38318,23 +38502,23 @@ if test "$ISC" = yes ; then for ac_header in sys/termio.h do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` -echo "$as_me:38321: checking for $ac_header" >&5 +echo "$as_me:38505: 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 38327 "configure" +#line 38511 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:38331: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:38515: \"$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:38337: \$? = $ac_status" >&5 + echo "$as_me:38521: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -38353,7 +38537,7 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:38356: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:38540: 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 @@ -38371,10 +38555,10 @@ if test "$ac_cv_header_termios_h" = yes ; then *) termios_bad=maybe ;; esac if test "$termios_bad" = maybe ; then - echo "$as_me:38374: checking whether termios.h needs _POSIX_SOURCE" >&5 + echo "$as_me:38558: 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 38377 "configure" +#line 38561 "configure" #include "confdefs.h" #include <termios.h> int @@ -38386,16 +38570,16 @@ struct termios foo; int x = foo.c_iflag } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:38389: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:38573: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:38392: \$? = $ac_status" >&5 + echo "$as_me:38576: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:38395: \"$ac_try\"") >&5 + { (eval echo "$as_me:38579: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:38398: \$? = $ac_status" >&5 + echo "$as_me:38582: \$? = $ac_status" >&5 (exit $ac_status); }; }; then termios_bad=no else @@ -38403,7 +38587,7 @@ else cat conftest.$ac_ext >&5 cat >conftest.$ac_ext <<_ACEOF -#line 38406 "configure" +#line 38590 "configure" #include "confdefs.h" #define _POSIX_SOURCE @@ -38417,16 +38601,16 @@ struct termios foo; int x = foo.c_iflag } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:38420: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:38604: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:38423: \$? = $ac_status" >&5 + echo "$as_me:38607: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:38426: \"$ac_try\"") >&5 + { (eval echo "$as_me:38610: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:38429: \$? = $ac_status" >&5 + echo "$as_me:38613: \$? = $ac_status" >&5 (exit $ac_status); }; }; then termios_bad=unknown else @@ -38441,12 +38625,12 @@ rm -f conftest.$ac_objext conftest.$ac_ext fi rm -f conftest.$ac_objext conftest.$ac_ext - echo "$as_me:38444: result: $termios_bad" >&5 + echo "$as_me:38628: result: $termios_bad" >&5 echo "${ECHO_T}$termios_bad" >&6 fi fi -echo "$as_me:38449: checking declaration of size-change" >&5 +echo "$as_me:38633: 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 @@ -38461,7 +38645,7 @@ do CPPFLAGS="$cf_save_CPPFLAGS" test -n "$cf_opts" && CPPFLAGS="$CPPFLAGS -D$cf_opts" cat >conftest.$ac_ext <<_ACEOF -#line 38464 "configure" +#line 38648 "configure" #include "confdefs.h" #include <sys/types.h> #ifdef HAVE_TERMIOS_H @@ -38505,16 +38689,16 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:38508: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:38692: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:38511: \$? = $ac_status" >&5 + echo "$as_me:38695: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:38514: \"$ac_try\"") >&5 + { (eval echo "$as_me:38698: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:38517: \$? = $ac_status" >&5 + echo "$as_me:38701: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_sizechange=yes else @@ -38533,7 +38717,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext done fi -echo "$as_me:38536: result: $cf_cv_sizechange" >&5 +echo "$as_me:38720: result: $cf_cv_sizechange" >&5 echo "${ECHO_T}$cf_cv_sizechange" >&6 if test "$cf_cv_sizechange" != no ; then cat >>confdefs.h <<\EOF @@ -38550,14 +38734,14 @@ EOF esac fi -echo "$as_me:38553: checking if ttytype is declared in curses library" >&5 +echo "$as_me:38737: 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 38560 "configure" +#line 38744 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header-curses.h}> int @@ -38569,16 +38753,16 @@ char *x = &ttytype[1]; *x = 1 } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:38572: \"$ac_link\"") >&5 +if { (eval echo "$as_me:38756: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:38575: \$? = $ac_status" >&5 + echo "$as_me:38759: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:38578: \"$ac_try\"") >&5 + { (eval echo "$as_me:38762: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:38581: \$? = $ac_status" >&5 + echo "$as_me:38765: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_have_ttytype=yes else @@ -38590,7 +38774,7 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:38593: result: $cf_cv_have_ttytype" >&5 +echo "$as_me:38777: result: $cf_cv_have_ttytype" >&5 echo "${ECHO_T}$cf_cv_have_ttytype" >&6 test $cf_cv_have_ttytype = yes && cat >>confdefs.h <<\EOF #define HAVE_TTYTYPE 1 @@ -38598,14 +38782,14 @@ EOF if test "$use_wide_curses" = yes ; then -echo "$as_me:38601: checking if curses supports wide characters" >&5 +echo "$as_me:38785: 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 38608 "configure" +#line 38792 "configure" #include "confdefs.h" #include <stdlib.h> @@ -38624,16 +38808,16 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:38627: \"$ac_link\"") >&5 +if { (eval echo "$as_me:38811: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:38630: \$? = $ac_status" >&5 + echo "$as_me:38814: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:38633: \"$ac_try\"") >&5 + { (eval echo "$as_me:38817: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:38636: \$? = $ac_status" >&5 + echo "$as_me:38820: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_widec_curses=yes else @@ -38644,7 +38828,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:38647: result: $cf_cv_widec_curses" >&5 +echo "$as_me:38831: result: $cf_cv_widec_curses" >&5 echo "${ECHO_T}$cf_cv_widec_curses" >&6 if test "$cf_cv_widec_curses" = yes ; then @@ -38653,14 +38837,14 @@ if test "$cf_cv_widec_curses" = yes ; then EOF # This is needed on Tru64 5.0 to declare mbstate_t - echo "$as_me:38656: checking if we must include wchar.h to declare mbstate_t" >&5 + echo "$as_me:38840: 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 38663 "configure" +#line 38847 "configure" #include "confdefs.h" #include <stdlib.h> @@ -38674,23 +38858,23 @@ mbstate_t state } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:38677: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:38861: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:38680: \$? = $ac_status" >&5 + echo "$as_me:38864: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:38683: \"$ac_try\"") >&5 + { (eval echo "$as_me:38867: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:38686: \$? = $ac_status" >&5 + echo "$as_me:38870: \$? = $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 38693 "configure" +#line 38877 "configure" #include "confdefs.h" #include <stdlib.h> @@ -38705,16 +38889,16 @@ mbstate_t state } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:38708: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:38892: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:38711: \$? = $ac_status" >&5 + echo "$as_me:38895: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:38714: \"$ac_try\"") >&5 + { (eval echo "$as_me:38898: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:38717: \$? = $ac_status" >&5 + echo "$as_me:38901: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_widec_mbstate=yes else @@ -38726,7 +38910,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:38729: result: $cf_cv_widec_mbstate" >&5 +echo "$as_me:38913: result: $cf_cv_widec_mbstate" >&5 echo "${ECHO_T}$cf_cv_widec_mbstate" >&6 if test "$cf_cv_widec_mbstate" = yes ; then @@ -38747,14 +38931,14 @@ fi fi -echo "$as_me:38750: checking if we must define _XOPEN_SOURCE_EXTENDED" >&5 +echo "$as_me:38934: checking if we must define _XOPEN_SOURCE_EXTENDED" >&5 echo $ECHO_N "checking if we must define _XOPEN_SOURCE_EXTENDED... $ECHO_C" >&6 if test "${cf_cv_need_xopen_extension+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 38757 "configure" +#line 38941 "configure" #include "confdefs.h" #include <stdlib.h> @@ -38776,23 +38960,23 @@ if (NCURSES_VERSION_PATCH < 20100501) && (NCURSES_VERSION_PATCH >= 20100403) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:38779: \"$ac_link\"") >&5 +if { (eval echo "$as_me:38963: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:38782: \$? = $ac_status" >&5 + echo "$as_me:38966: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:38785: \"$ac_try\"") >&5 + { (eval echo "$as_me:38969: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:38788: \$? = $ac_status" >&5 + echo "$as_me:38972: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_need_xopen_extension=no else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 cat >conftest.$ac_ext <<_ACEOF -#line 38795 "configure" +#line 38979 "configure" #include "confdefs.h" #define _XOPEN_SOURCE_EXTENDED @@ -38814,16 +38998,16 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:38817: \"$ac_link\"") >&5 +if { (eval echo "$as_me:39001: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:38820: \$? = $ac_status" >&5 + echo "$as_me:39004: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:38823: \"$ac_try\"") >&5 + { (eval echo "$as_me:39007: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:38826: \$? = $ac_status" >&5 + echo "$as_me:39010: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_need_xopen_extension=yes else @@ -38835,11 +39019,11 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:38838: result: $cf_cv_need_xopen_extension" >&5 +echo "$as_me:39022: result: $cf_cv_need_xopen_extension" >&5 echo "${ECHO_T}$cf_cv_need_xopen_extension" >&6 test $cf_cv_need_xopen_extension = yes && CPPFLAGS="$CPPFLAGS -D_XOPEN_SOURCE_EXTENDED" -echo "$as_me:38842: checking for term.h" >&5 +echo "$as_me:39026: 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 @@ -38852,7 +39036,7 @@ for cf_header in \ term.h do cat >conftest.$ac_ext <<_ACEOF -#line 38855 "configure" +#line 39039 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header-curses.h}> @@ -38866,16 +39050,16 @@ WINDOW *x } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:38869: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:39053: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:38872: \$? = $ac_status" >&5 + echo "$as_me:39056: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:38875: \"$ac_try\"") >&5 + { (eval echo "$as_me:39059: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:38878: \$? = $ac_status" >&5 + echo "$as_me:39062: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_term_header=$cf_header break @@ -38894,7 +39078,7 @@ no) for cf_header in ncurses/term.h ncursesw/term.h do cat >conftest.$ac_ext <<_ACEOF -#line 38897 "configure" +#line 39081 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header-curses.h}> @@ -38912,16 +39096,16 @@ WINDOW *x } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:38915: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:39099: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:38918: \$? = $ac_status" >&5 + echo "$as_me:39102: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:38921: \"$ac_try\"") >&5 + { (eval echo "$as_me:39105: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:38924: \$? = $ac_status" >&5 + echo "$as_me:39108: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_term_header=$cf_header break @@ -38936,7 +39120,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext esac fi -echo "$as_me:38939: result: $cf_cv_term_header" >&5 +echo "$as_me:39123: result: $cf_cv_term_header" >&5 echo "${ECHO_T}$cf_cv_term_header" >&6 case $cf_cv_term_header in #(vi @@ -38987,10 +39171,10 @@ do cf_tr_func=`echo "$cf_func" | sed y%abcdefghijklmnopqrstuvwxyz./-%ABCDEFGHIJKLMNOPQRSTUVWXYZ___%` - echo "$as_me:38990: checking for ${cf_func}" >&5 + echo "$as_me:39174: checking for ${cf_func}" >&5 echo $ECHO_N "checking for ${cf_func}... $ECHO_C" >&6 -echo "${as_me-configure}:38993: testing ${cf_func} ..." 1>&5 +echo "${as_me-configure}:39177: testing ${cf_func} ..." 1>&5 if eval "test \"\${cf_cv_func_$cf_func+set}\" = set"; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -38999,7 +39183,7 @@ else eval cf_result='$ac_cv_func_'$cf_func if test ".$cf_result" != ".no"; then cat >conftest.$ac_ext <<_ACEOF -#line 39002 "configure" +#line 39186 "configure" #include "confdefs.h" #ifdef HAVE_XCURSES @@ -39030,16 +39214,16 @@ ${cf_cv_main_return-return}(foo == 0); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:39033: \"$ac_link\"") >&5 +if { (eval echo "$as_me:39217: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:39036: \$? = $ac_status" >&5 + echo "$as_me:39220: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:39039: \"$ac_try\"") >&5 + { (eval echo "$as_me:39223: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:39042: \$? = $ac_status" >&5 + echo "$as_me:39226: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_result=yes else @@ -39055,7 +39239,7 @@ fi # use the computed/retrieved cache-value: eval 'cf_result=$cf_cv_func_'$cf_func - echo "$as_me:39058: result: $cf_result" >&5 + echo "$as_me:39242: result: $cf_result" >&5 echo "${ECHO_T}$cf_result" >&6 if test $cf_result != no; then cat >>confdefs.h <<EOF @@ -39071,13 +39255,13 @@ for ac_func in \ do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` -echo "$as_me:39074: checking for $ac_func" >&5 +echo "$as_me:39258: 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 39080 "configure" +#line 39264 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. */ @@ -39108,16 +39292,16 @@ f = $ac_func; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:39111: \"$ac_link\"") >&5 +if { (eval echo "$as_me:39295: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:39114: \$? = $ac_status" >&5 + echo "$as_me:39298: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:39117: \"$ac_try\"") >&5 + { (eval echo "$as_me:39301: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:39120: \$? = $ac_status" >&5 + echo "$as_me:39304: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else @@ -39127,7 +39311,7 @@ eval "$as_ac_var=no" fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:39130: result: `eval echo '${'$as_ac_var'}'`" >&5 +echo "$as_me:39314: 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 @@ -39141,12 +39325,12 @@ fi if test $use_color_style != no ; then if test .$cf_cv_color_curses != .yes ; then - { { echo "$as_me:39144: error: Configuration does not support color-styles" >&5 + { { echo "$as_me:39328: 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:39149: error: Configuration does not support color-styles" >&5 + { { echo "$as_me:39333: error: Configuration does not support color-styles" >&5 echo "$as_me: error: Configuration does not support color-styles" >&2;} { (exit 1); exit 1; }; } fi @@ -39154,7 +39338,7 @@ fi if test $use_scrollbar != no ; then if test .$cf_cv_fancy_curses != .yes ; then - { echo "$as_me:39157: WARNING: Configuration does not support ACS_xxx definitions" >&5 + { echo "$as_me:39341: WARNING: Configuration does not support ACS_xxx definitions" >&5 echo "$as_me: WARNING: Configuration does not support ACS_xxx definitions" >&2;} else cat >>confdefs.h <<\EOF @@ -39167,7 +39351,7 @@ fi # use rpath for libraries in unusual places LD_RPATH_OPT= -echo "$as_me:39170: checking for an rpath option" >&5 +echo "$as_me:39354: checking for an rpath option" >&5 echo $ECHO_N "checking for an rpath option... $ECHO_C" >&6 case $cf_cv_system_name in #(vi irix*) #(vi @@ -39198,17 +39382,17 @@ solaris2*) #(vi *) ;; esac -echo "$as_me:39201: result: $LD_RPATH_OPT" >&5 +echo "$as_me:39385: result: $LD_RPATH_OPT" >&5 echo "${ECHO_T}$LD_RPATH_OPT" >&6 case "x$LD_RPATH_OPT" in #(vi x-R*) - echo "$as_me:39206: checking if we need a space after rpath option" >&5 + echo "$as_me:39390: checking if we need a space after rpath option" >&5 echo $ECHO_N "checking if we need a space after rpath option... $ECHO_C" >&6 cf_save_LIBS="$LIBS" LIBS="${LD_RPATH_OPT}$libdir $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 39211 "configure" +#line 39395 "configure" #include "confdefs.h" int @@ -39220,16 +39404,16 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:39223: \"$ac_link\"") >&5 +if { (eval echo "$as_me:39407: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:39226: \$? = $ac_status" >&5 + echo "$as_me:39410: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:39229: \"$ac_try\"") >&5 + { (eval echo "$as_me:39413: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:39232: \$? = $ac_status" >&5 + echo "$as_me:39416: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_rpath_space=no else @@ -39239,13 +39423,13 @@ cf_rpath_space=yes fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS="$cf_save_LIBS" - echo "$as_me:39242: result: $cf_rpath_space" >&5 + echo "$as_me:39426: result: $cf_rpath_space" >&5 echo "${ECHO_T}$cf_rpath_space" >&6 test "$cf_rpath_space" = yes && LD_RPATH_OPT="$LD_RPATH_OPT " ;; esac -echo "$as_me:39248: checking if rpath should be not be set" >&5 +echo "$as_me:39432: checking if rpath should be not be set" >&5 echo $ECHO_N "checking if rpath should be not be set... $ECHO_C" >&6 # Check whether --enable-rpath-hack or --disable-rpath-hack was given. @@ -39262,21 +39446,21 @@ else cf_disable_rpath_hack=no fi; -echo "$as_me:39265: result: $cf_disable_rpath_hack" >&5 +echo "$as_me:39449: 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:39269: checking for updated LDFLAGS" >&5 +echo "$as_me:39453: 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:39272: result: maybe" >&5 + echo "$as_me:39456: 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:39279: checking for $ac_word" >&5 +echo "$as_me:39463: 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 @@ -39291,7 +39475,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:39294: found $ac_dir/$ac_word" >&5 +echo "$as_me:39478: found $ac_dir/$ac_word" >&5 break done @@ -39299,10 +39483,10 @@ fi fi cf_ldd_prog=$ac_cv_prog_cf_ldd_prog if test -n "$cf_ldd_prog"; then - echo "$as_me:39302: result: $cf_ldd_prog" >&5 + echo "$as_me:39486: result: $cf_ldd_prog" >&5 echo "${ECHO_T}$cf_ldd_prog" >&6 else - echo "$as_me:39305: result: no" >&5 + echo "$as_me:39489: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -39314,7 +39498,7 @@ test -n "$cf_ldd_prog" || cf_ldd_prog="no" if test "$cf_ldd_prog" != no then cat >conftest.$ac_ext <<_ACEOF -#line 39317 "configure" +#line 39501 "configure" #include "confdefs.h" #include <stdio.h> int @@ -39326,16 +39510,16 @@ printf("Hello"); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:39329: \"$ac_link\"") >&5 +if { (eval echo "$as_me:39513: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:39332: \$? = $ac_status" >&5 + echo "$as_me:39516: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:39335: \"$ac_try\"") >&5 + { (eval echo "$as_me:39519: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:39338: \$? = $ac_status" >&5 + echo "$as_me:39522: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_rpath_list=`$cf_ldd_prog conftest$ac_exeext | fgrep / | sed -e 's%^.*[ ]/%/%' -e 's%/[^/][^/]*$%%' |sort -u` else @@ -39347,11 +39531,11 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext test -n "$verbose" && echo " ...checking EXTRA_LDFLAGS $EXTRA_LDFLAGS" 1>&6 -echo "${as_me-configure}:39350: testing ...checking EXTRA_LDFLAGS $EXTRA_LDFLAGS ..." 1>&5 +echo "${as_me-configure}:39534: testing ...checking EXTRA_LDFLAGS $EXTRA_LDFLAGS ..." 1>&5 test -n "$verbose" && echo " ...checking LDFLAGS $LDFLAGS" 1>&6 -echo "${as_me-configure}:39354: testing ...checking LDFLAGS $LDFLAGS ..." 1>&5 +echo "${as_me-configure}:39538: testing ...checking LDFLAGS $LDFLAGS ..." 1>&5 cf_rpath_dst= for cf_rpath_src in $LDFLAGS @@ -39388,7 +39572,7 @@ do then test -n "$verbose" && echo " ...Filter $cf_rpath_src ->$cf_rpath_tmp" 1>&6 -echo "${as_me-configure}:39391: testing ...Filter $cf_rpath_src ->$cf_rpath_tmp ..." 1>&5 +echo "${as_me-configure}:39575: testing ...Filter $cf_rpath_src ->$cf_rpath_tmp ..." 1>&5 EXTRA_LDFLAGS="$cf_rpath_tmp $EXTRA_LDFLAGS" fi @@ -39401,11 +39585,11 @@ LDFLAGS=$cf_rpath_dst test -n "$verbose" && echo " ...checked LDFLAGS $LDFLAGS" 1>&6 -echo "${as_me-configure}:39404: testing ...checked LDFLAGS $LDFLAGS ..." 1>&5 +echo "${as_me-configure}:39588: testing ...checked LDFLAGS $LDFLAGS ..." 1>&5 test -n "$verbose" && echo " ...checking LIBS $LIBS" 1>&6 -echo "${as_me-configure}:39408: testing ...checking LIBS $LIBS ..." 1>&5 +echo "${as_me-configure}:39592: testing ...checking LIBS $LIBS ..." 1>&5 cf_rpath_dst= for cf_rpath_src in $LIBS @@ -39442,7 +39626,7 @@ do then test -n "$verbose" && echo " ...Filter $cf_rpath_src ->$cf_rpath_tmp" 1>&6 -echo "${as_me-configure}:39445: testing ...Filter $cf_rpath_src ->$cf_rpath_tmp ..." 1>&5 +echo "${as_me-configure}:39629: testing ...Filter $cf_rpath_src ->$cf_rpath_tmp ..." 1>&5 EXTRA_LDFLAGS="$cf_rpath_tmp $EXTRA_LDFLAGS" fi @@ -39455,11 +39639,11 @@ LIBS=$cf_rpath_dst test -n "$verbose" && echo " ...checked LIBS $LIBS" 1>&6 -echo "${as_me-configure}:39458: testing ...checked LIBS $LIBS ..." 1>&5 +echo "${as_me-configure}:39642: testing ...checked LIBS $LIBS ..." 1>&5 test -n "$verbose" && echo " ...checked EXTRA_LDFLAGS $EXTRA_LDFLAGS" 1>&6 -echo "${as_me-configure}:39462: testing ...checked EXTRA_LDFLAGS $EXTRA_LDFLAGS ..." 1>&5 +echo "${as_me-configure}:39646: testing ...checked EXTRA_LDFLAGS $EXTRA_LDFLAGS ..." 1>&5 fi @@ -39560,7 +39744,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:39563: creating $CONFIG_STATUS" >&5 +{ echo "$as_me:39747: creating $CONFIG_STATUS" >&5 echo "$as_me: creating $CONFIG_STATUS" >&6;} cat >$CONFIG_STATUS <<_ACEOF #! $SHELL @@ -39736,7 +39920,7 @@ cat >>$CONFIG_STATUS <<\EOF echo "$ac_cs_version"; exit 0 ;; --he | --h) # Conflict between --help and --header - { { echo "$as_me:39739: error: ambiguous option: $1 + { { echo "$as_me:39923: 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;} @@ -39755,7 +39939,7 @@ Try \`$0 --help' for more information." >&2;} ac_need_defaults=false;; # This is an error. - -*) { { echo "$as_me:39758: error: unrecognized option: $1 + -*) { { echo "$as_me:39942: 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;} @@ -39808,7 +39992,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:39811: error: invalid argument: $ac_config_target" >&5 + *) { { echo "$as_me:39995: error: invalid argument: $ac_config_target" >&5 echo "$as_me: error: invalid argument: $ac_config_target" >&2;} { (exit 1); exit 1; }; };; esac @@ -39984,6 +40168,7 @@ s,@CHARSET_DEFS@,$CHARSET_DEFS,;t t s,@LIBOBJS@,$LIBOBJS,;t t s,@EXTRA_OBJS@,$EXTRA_OBJS,;t t s,@SETFONT@,$SETFONT,;t t +s,@MAKE_WAIS@,$MAKE_WAIS,;t t s,@TELNET@,$TELNET,;t t s,@TN3270@,$TN3270,;t t s,@RLOGIN@,$RLOGIN,;t t @@ -40128,7 +40313,7 @@ done; } esac if test x"$ac_file" != x-; then - { echo "$as_me:40131: creating $ac_file" >&5 + { echo "$as_me:40316: creating $ac_file" >&5 echo "$as_me: creating $ac_file" >&6;} rm -f "$ac_file" fi @@ -40146,7 +40331,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:40149: error: cannot find input file: $f" >&5 + test -f "$f" || { { echo "$as_me:40334: error: cannot find input file: $f" >&5 echo "$as_me: error: cannot find input file: $f" >&2;} { (exit 1); exit 1; }; } echo $f;; @@ -40159,7 +40344,7 @@ echo "$as_me: error: cannot find input file: $f" >&2;} echo $srcdir/$f else # /dev/null tree - { { echo "$as_me:40162: error: cannot find input file: $f" >&5 + { { echo "$as_me:40347: error: cannot find input file: $f" >&5 echo "$as_me: error: cannot find input file: $f" >&2;} { (exit 1); exit 1; }; } fi;; @@ -40225,7 +40410,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:40228: creating $ac_file" >&5 + test x"$ac_file" != x- && { echo "$as_me:40413: creating $ac_file" >&5 echo "$as_me: creating $ac_file" >&6;} # First look for the input files in the build tree, otherwise in the @@ -40236,7 +40421,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:40239: error: cannot find input file: $f" >&5 + test -f "$f" || { { echo "$as_me:40424: error: cannot find input file: $f" >&5 echo "$as_me: error: cannot find input file: $f" >&2;} { (exit 1); exit 1; }; } echo $f;; @@ -40249,7 +40434,7 @@ echo "$as_me: error: cannot find input file: $f" >&2;} echo $srcdir/$f else # /dev/null tree - { { echo "$as_me:40252: error: cannot find input file: $f" >&5 + { { echo "$as_me:40437: error: cannot find input file: $f" >&5 echo "$as_me: error: cannot find input file: $f" >&2;} { (exit 1); exit 1; }; } fi;; @@ -40367,7 +40552,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:40370: $ac_file is unchanged" >&5 + { echo "$as_me:40555: $ac_file is unchanged" >&5 echo "$as_me: $ac_file is unchanged" >&6;} else ac_dir=`$as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ diff --git a/configure.in b/configure.in index 9977b70a..70f3353e 100644 --- a/configure.in +++ b/configure.in @@ -1,4 +1,4 @@ -dnl $LynxId: configure.in,v 1.213 2010/06/19 10:56:00 tom Exp $ +dnl $LynxId: configure.in,v 1.214 2010/06/19 17:15:27 tom Exp $ dnl dnl Process this file with autoconf to produce a configure script. dnl @@ -1289,6 +1289,26 @@ AC_MSG_RESULT($use_ftp) test $use_ftp != "no" && AC_DEFINE(DISABLE_FTP) dnl -------------------------------------------------------------------------- +AC_MSG_CHECKING(if you want to include WAIS code) +CF_ARG_ENABLE(wais, +[ --enable-wais enable WAIS logic], + [use_wais=yes], + [use_wais=no]) +AC_MSG_RESULT($use_wais) + +MAKE_WAIS="#" +if test $use_wais != "no" +then + AC_CHECK_LIB(wais,fs_free,[ + CF_MATH_LIB + CF_ADD_LIB(wais) + AC_CHECK_HEADERS(wais.h) + MAKE_WAIS= + ],[AC_MSG_WARN(could not find WAIS library)]) +fi +AC_SUBST(MAKE_WAIS) + +dnl -------------------------------------------------------------------------- dnl DirEd (directory-editor) options dnl -------------------------------------------------------------------------- diff --git a/src/LYUtils.h b/src/LYUtils.h index 0486a31e..f6d7c49a 100644 --- a/src/LYUtils.h +++ b/src/LYUtils.h @@ -1,4 +1,4 @@ -/* $LynxId: LYUtils.h,v 1.82 2009/11/21 15:46:24 tom Exp $ */ +/* $LynxId: LYUtils.h,v 1.83 2010/06/19 15:36:34 tom Exp $ */ #ifndef LYUTILS_H #define LYUTILS_H @@ -507,6 +507,8 @@ extern "C" { extern void LYCloselog(void); #endif /* SYSLOG_REQUESTED_URLS */ +#undef STREQ /* conflict with wais.h */ + /* * Miscellaneous. */ diff --git a/src/multinet_ucx.opt b/src/multinet_ucx.opt new file mode 100644 index 00000000..51bac454 --- /dev/null +++ b/src/multinet_ucx.opt @@ -0,0 +1 @@ +multinet_root:[multinet.library]ucx$ipc/LIBRARY diff --git a/userdefs.h b/userdefs.h index 74c18b4b..c6ca537e 100644 --- a/userdefs.h +++ b/userdefs.h @@ -1,5 +1,5 @@ /* - * $LynxId: userdefs.h,v 1.255 2010/04/25 23:44:30 tom Exp $ + * $LynxId: userdefs.h,v 1.256 2010/06/19 18:23:03 tom Exp $ * * Lynx - Hypertext navigation system * @@ -243,6 +243,12 @@ #define LYNX_LSS_FILE "Lynx_Dir:lynx.lss" #endif /* LYNX_LSS_FILE */ +/* + * FTP_FORMAT uses the same codes as LIST_FORMAT, but applies to files shown + * in an ftp listing. + */ +#define FTP_FORMAT "%d %-16.16t %a %K" + /******************************************************************* * Things you must change - non-VMS specific * Section 1b). |