diff options
author | Thomas E. Dickey <dickey@invisible-island.net> | 2011-10-06 22:19:04 -0400 |
---|---|---|
committer | Thomas E. Dickey <dickey@invisible-island.net> | 2011-10-06 22:19:04 -0400 |
commit | adc7d65fee2f697d9db0aeafebbf9183e0b5cf9d (patch) | |
tree | 67b3271d21f679feab6e12ac63bf9f18d2c35e92 | |
parent | 88887f67680e0659d998c44a860148b13c34d482 (diff) | |
download | lynx-snapshots-adc7d65fee2f697d9db0aeafebbf9183e0b5cf9d.tar.gz |
snapshot of project "lynx", label v2-8-8dev_9a
-rw-r--r-- | CHANGES | 7 | ||||
-rw-r--r-- | PACKAGE/debian/changelog | 6 | ||||
-rw-r--r-- | PACKAGE/lynx.spec | 4 | ||||
-rw-r--r-- | WWW/Library/Implementation/HTFWriter.c | 361 | ||||
-rw-r--r-- | aclocal.m4 | 75 | ||||
-rwxr-xr-x | configure | 6757 | ||||
-rw-r--r-- | lynx.rsp | 89 |
7 files changed, 3569 insertions, 3730 deletions
diff --git a/CHANGES b/CHANGES index 3b0f119c..1671b60a 100644 --- a/CHANGES +++ b/CHANGES @@ -1,8 +1,13 @@ --- $LynxId: CHANGES,v 1.556 2011/06/12 16:04:15 tom Exp $ +-- $LynxId: CHANGES,v 1.557 2011/10/06 22:15:28 tom Exp $ =============================================================================== Changes since Lynx 2.8 release =============================================================================== +2011-10-06 (2.8.8dev.10) +* updated several configure script macros (TD): + CF_ANSI_CC_CHECK, CF_CURSES_LIBS, CF_LD_RPATH_OPT, CF_NETLIBS, + CF_XOPEN_SOURCE, CF_X_ATHENA_LIBS + 2011-06-12 (2.8.8dev.9) * modfy cfg2html to add ".url" directive for referencing RFC's etc -TD * document blat/blatj usage in lynx.cfg -TD diff --git a/PACKAGE/debian/changelog b/PACKAGE/debian/changelog index 98a5c889..54afb30a 100644 --- a/PACKAGE/debian/changelog +++ b/PACKAGE/debian/changelog @@ -1,3 +1,9 @@ +lynx-dev (2.8.8dev.10) unstable; urgency=low + + * changes for dev.10 + + -- Thomas E. Dickey <dickey@invisible-island.net> Thu, 06 Oct 2011 18:19:01 -0400 + lynx-dev (2.8.8dev.9) unstable; urgency=low * changes for dev.9 diff --git a/PACKAGE/lynx.spec b/PACKAGE/lynx.spec index 9cebc42a..8d24dd77 100644 --- a/PACKAGE/lynx.spec +++ b/PACKAGE/lynx.spec @@ -1,8 +1,8 @@ -# $LynxId: lynx.spec,v 1.9 2011/04/27 23:37:38 tom Exp $ +# $LynxId: lynx.spec,v 1.10 2011/10/06 22:18:32 tom Exp $ Summary: A text-based Web browser Name: lynx Version: 2.8.8 -Release: dev.9 +Release: dev.10 License: GPLv2 Group: Applications/Internet Source: lynx%{version}%{release}.tgz diff --git a/WWW/Library/Implementation/HTFWriter.c b/WWW/Library/Implementation/HTFWriter.c deleted file mode 100644 index 90ab003e..00000000 --- a/WWW/Library/Implementation/HTFWriter.c +++ /dev/null @@ -1,361 +0,0 @@ -/* FILE WRITER HTFWrite.h - * =========== - * - * This version of the stream object just writes to a C file. - * The file is assumed open and left open. - * - * Bugs: - * strings written must be less than buffer size. - */ - -#define HTSTREAM_INTERNAL 1 - -#include <HTUtils.h> - -#include <HTFWriter.h> - -#include <HTFormat.h> -#include <HTAlert.h> -#include <HTFile.h> - -#include <LYUtils.h> -#include <LYLeaks.h> - -/* Stream Object - * ------------ - */ - -struct _HTStream { - const HTStreamClass *isa; - - FILE *fp; - char *end_command; - char *remove_command; - BOOL announce; -}; - -/*_________________________________________________________________________ - * - * B L A C K H O L E C L A S S - * - * There is only one black hole instance shared by anyone - * who wanst a black hole. These black holes don't radiate, - * they just absorb data. - */ -static void HTBlackHole_put_character(HTStream *me, char c) -{ -} -static void HTBlackHole_put_string(HTStream *me, const char *s) -{ -} -static void HTBlackHole_write(HTStream *me, const char *s, int l) -{ -} -static void HTBlackHole_free(HTStream *me) -{ -} -static void HTBlackHole_abort(HTStream *me, HTError e) -{ -} - -/* Black Hole stream - * ----------------- - */ -static const HTStreamClass HTBlackHoleClass = -{ - "BlackHole", - HTBlackHole_free, - HTBlackHole_abort, - HTBlackHole_put_character, HTBlackHole_put_string, - HTBlackHole_write -}; - -static HTStream HTBlackHoleInstance = -{ - &HTBlackHoleClass, - NULL, - NULL, - NULL, - NO -}; - -/* Black hole craetion -*/ -HTStream *HTBlackHole(void) -{ - return &HTBlackHoleInstance; -} - -/*_________________________________________________________________________ - * - * F I L E A C T I O N R O U T I N E S - * Bug: - * All errors are ignored. - */ - -/* Character handling - * ------------------ - */ - -static void HTFWriter_put_character(HTStream *me, char c) -{ - putc(c, me->fp); -} - -/* String handling - * --------------- - * - * Strings must be smaller than this buffer size. - */ -static void HTFWriter_put_string(HTStream *me, const char *s) -{ - fputs(s, me->fp); -} - -/* Buffer write. Buffers can (and should!) be big. - * ------------ - */ -static void HTFWriter_write(HTStream *me, const char *s, int l) -{ - fwrite(s, 1, l, me->fp); -} - -/* Free an HTML object - * ------------------- - * - * Note that the SGML parsing context is freed, but the created - * object is not, - * as it takes on an existence of its own unless explicitly freed. - */ -static void HTFWriter_free(HTStream *me) -{ - fclose(me->fp); - if (me->end_command) { /* Temp file */ - _HTProgress(me->end_command); /* Tell user what's happening */ - system(me->end_command); - FREE(me->end_command); - if (me->remove_command) { - system(me->remove_command); - FREE(me->remove_command); - } - } - - FREE(me); -} - -/* End writing -*/ - -static void HTFWriter_abort(HTStream *me, HTError e) -{ - fclose(me->fp); - if (me->end_command) { /* Temp file */ - CTRACE((tfp, "HTFWriter: Aborting: file not executed.\n")); - FREE(me->end_command); - if (me->remove_command) { - system(me->remove_command); - FREE(me->remove_command); - } - } - - FREE(me); -} - -/* Structured Object Class - * ----------------------- - */ -static const HTStreamClass HTFWriter = /* As opposed to print etc */ -{ - "FileWriter", - HTFWriter_free, - HTFWriter_abort, - HTFWriter_put_character, HTFWriter_put_string, - HTFWriter_write -}; - -/* Subclass-specific Methods - * ------------------------- - */ - -HTStream *HTFWriter_new(FILE *fp) -{ - HTStream *me; - - if (!fp) - return NULL; - - me = (HTStream *) malloc(sizeof(*me)); - if (me == NULL) - outofmem(__FILE__, "HTML_new"); - - assert(me != NULL); - - me->isa = &HTFWriter; - - me->fp = fp; - me->end_command = NULL; - me->remove_command = NULL; - me->announce = NO; - - return me; -} - -/* Make system command from template - * --------------------------------- - * - * See mailcap spec for description of template. - */ -/* @@ to be written. sprintfs will do for now. */ - -/* Take action using a system command - * ---------------------------------- - * - * originally from Ghostview handling by Marc Andreseen. - * Creates temporary file, writes to it, executes system command - * on end-document. The suffix of the temp file can be given - * in case the application is fussy, or so that a generic opener can - * be used. - */ -HTStream *HTSaveAndExecute(HTPresentation *pres, - HTParentAnchor *anchor, /* Not used */ - HTStream *sink) /* Not used */ - -#ifdef UNIX -#define REMOVE_COMMAND "/bin/rm -f %s\n" -#endif -#ifdef VMS -#define REMOVE_COMMAND "delete/noconfirm/nolog %s.." -#endif - -#ifdef REMOVE_COMMAND -{ - char *fnam; - const char *suffix; - - HTStream *me; - - if (HTClientHost) { - HTAlert(CANNOT_SAVE_REMOTE); - return HTBlackHole(); - } - - me = (HTStream *) malloc(sizeof(*me)); - if (me == NULL) - outofmem(__FILE__, "Save and execute"); - - assert(me != NULL); - - me->isa = &HTFWriter; - - /* Save the file under a suitably suffixed name */ - - suffix = HTFileSuffix(pres->rep, anchor->content_encoding); - - fnam = (char *) malloc(L_tmpnam + 16 + strlen(suffix)); - if (fnam == NULL) - outofmem(__FILE__, "HTSaveAndExecute"); - - assert(fnam != NULL); - - tmpnam(fnam); - strcat(fnam, suffix); - - me->fp = fopen(fnam, BIN_W); - if (!me->fp) { - HTAlert(CANNOT_OPEN_TEMP); - FREE(fnam); - FREE(me); - return NULL; - } - -/* Make command to process file -*/ - me->end_command = 0; - HTSprintf0(&(me->end_command), pres->command, fnam, fnam, fnam); - - me->remove_command = NULL; /* If needed, put into end_command */ -#ifdef NOPE -/* Make command to delete file -*/ - me->remove_command = 0; - HTSprintf0(&(me->remove_command), REMOVE_COMMAND, fnam); -#endif - - me->announce = NO; - FREE(fnam); - return me; -} - -#else /* can do remove */ -{ - return NULL; -} -#endif - -/* Save Locally - * ------------ - * - * Bugs: - * GUI Apps should open local Save panel here really. - * - */ -HTStream *HTSaveLocally(HTPresentation *pres, - HTParentAnchor *anchor, /* Not used */ - HTStream *sink) /* Not used */ - -{ - char *fnam; - char *answer; - const char *suffix; - - HTStream *me; - - if (HTClientHost) { - HTAlert(CANNOT_SAVE_REMOTE); - return HTBlackHole(); - } - - me = (HTStream *) malloc(sizeof(*me)); - if (me == NULL) - outofmem(__FILE__, "SaveLocally"); - - assert(me != NULL); - - me->isa = &HTFWriter; - me->end_command = NULL; - me->remove_command = NULL; /* If needed, put into end_command */ - me->announce = YES; - - /* Save the file under a suitably suffixed name */ - - suffix = HTFileSuffix(pres->rep, anchor->content_encoding); - - fnam = (char *) malloc(L_tmpnam + 16 + strlen(suffix)); - if (fnam == NULL) - outofmem(__FILE__, "HTSaveLocally"); - - assert(fnam != NULL); - - tmpnam(fnam); - strcat(fnam, suffix); - - /* Save Panel */ - answer = HTPrompt(GIVE_FILENAME, fnam); - - FREE(fnam); - - me->fp = fopen(answer, BIN_W); - if (!me->fp) { - HTAlert(CANNOT_OPEN_OUTPUT); - FREE(answer); - FREE(me); - return NULL; - } - - FREE(answer); - return me; -} - -/* Format Converter using system command - * ------------------------------------- - */ diff --git a/aclocal.m4 b/aclocal.m4 index a7dbe948..acb60eb1 100644 --- a/aclocal.m4 +++ b/aclocal.m4 @@ -1,4 +1,4 @@ -dnl $LynxId: aclocal.m4,v 1.188 2011/06/12 23:29:39 tom Exp $ +dnl $LynxId: aclocal.m4,v 1.189 2011/10/03 09:24:34 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> @@ -928,12 +928,33 @@ AC_MSG_RESULT($cf_cv_alt_char_set) test $cf_cv_alt_char_set != no && AC_DEFINE_UNQUOTED(ALT_CHAR_SET,$cf_cv_alt_char_set) ])dnl dnl --------------------------------------------------------------------------- -dnl CF_ANSI_CC_CHECK version: 10 updated: 2010/10/23 15:52:32 +dnl CF_ANSI_CC_CHECK version: 11 updated: 2011/07/01 19:47:45 dnl ---------------- -dnl This is adapted from the macros 'fp_PROG_CC_STDC' and 'fp_C_PROTOTYPES' -dnl in the sharutils 4.2 distribution. +dnl This was originally adapted from the macros 'fp_PROG_CC_STDC' and +dnl 'fp_C_PROTOTYPES' in the sharutils 4.2 distribution. AC_DEFUN([CF_ANSI_CC_CHECK], [ +# This should have been defined by AC_PROG_CC +: ${CC:=cc} + +# Check for user's environment-breakage by stuffing CFLAGS/CPPFLAGS content +# into CC. This will not help with broken scripts that wrap the compiler with +# options, but eliminates a more common category of user confusion. +AC_MSG_CHECKING(\$CC variable) +case "$CC" in #(vi +*[[\ \ ]]-[[IUD]]*) + AC_MSG_RESULT(broken) + AC_MSG_WARN(your environment misuses the CC variable to hold CFLAGS/CPPFLAGS options) + # humor him... + cf_flags=`echo "$CC" | sed -e 's/^[[^ ]]*[[ ]]//'` + CC=`echo "$CC" | sed -e 's/[[ ]].*//'` + CF_ADD_CFLAGS($cf_flags) + ;; +*) + AC_MSG_RESULT(ok) + ;; +esac + AC_CACHE_CHECK(for ${CC:-cc} option to accept ANSI C, cf_cv_ansi_cc,[ cf_cv_ansi_cc=no cf_save_CFLAGS="$CFLAGS" @@ -1731,7 +1752,7 @@ fi AC_CHECK_HEADERS($cf_cv_ncurses_header) ])dnl dnl --------------------------------------------------------------------------- -dnl CF_CURSES_LIBS version: 34 updated: 2011/04/09 14:51:08 +dnl CF_CURSES_LIBS version: 35 updated: 2011/08/09 21:06:37 dnl -------------- dnl Look for the curses libraries. Older curses implementations may require dnl termcap/termlib to be linked as well. Call CF_CURSES_CPPFLAGS first. @@ -1811,7 +1832,7 @@ 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. AC_CHECK_FUNC(tgoto,[cf_term_lib=predefined],[ - for cf_term_lib in $cf_check_list termcap termlib unknown + for cf_term_lib in $cf_check_list otermcap termcap termlib unknown do AC_CHECK_LIB($cf_term_lib,tgoto,[break]) done @@ -3298,7 +3319,7 @@ AC_TRY_COMPILE([ test $cf_cv_path_lastlog != no && AC_DEFINE(USE_LASTLOG) ])dnl dnl --------------------------------------------------------------------------- -dnl CF_LD_RPATH_OPT version: 4 updated: 2011/06/04 20:09:13 +dnl CF_LD_RPATH_OPT version: 5 updated: 2011/07/17 14:48:41 dnl --------------- dnl For the given system and compiler, find the compiler flags to pass to the dnl loader to use the "rpath" feature. @@ -3322,7 +3343,7 @@ linux*|gnu*|k*bsd*-gnu) #(vi openbsd[[2-9]].*|mirbsd*) #(vi LD_RPATH_OPT="-Wl,-rpath," ;; -freebsd*) #(vi +dragonfly*|freebsd*) #(vi LD_RPATH_OPT="-rpath " ;; netbsd*) #(vi @@ -3846,7 +3867,7 @@ EOF test "$cf_cv_ncurses_version" = no || AC_DEFINE(NCURSES) ])dnl dnl --------------------------------------------------------------------------- -dnl CF_NETLIBS version: 7 updated: 2010/06/20 09:24:28 +dnl CF_NETLIBS version: 8 updated: 2011/10/03 05:24:34 dnl ---------- dnl After checking for functions in the default $LIBS, make a further check dnl for the functions that are netlib-related (these aren't always in the @@ -3919,6 +3940,9 @@ mingw32) # (vi AC_CHECK_FUNCS(gethostbyname,,[ CF_RECHECK_FUNC(gethostbyname,nsl,cf_cv_netlibs)]) + AC_CHECK_FUNCS(inet_ntoa,,[ + CF_RECHECK_FUNC(inet_ntoa,nsl,cf_cv_netlibs)]) + AC_CHECK_FUNCS(gethostbyname,,[ CF_RECHECK_FUNC(gethostbyname,network,cf_cv_netlibs)]) @@ -6241,7 +6265,7 @@ AC_TRY_LINK([ test $cf_cv_need_xopen_extension = yes && CPPFLAGS="$CPPFLAGS -D_XOPEN_SOURCE_EXTENDED" ])dnl dnl --------------------------------------------------------------------------- -dnl CF_XOPEN_SOURCE version: 35 updated: 2011/02/20 20:37:37 +dnl CF_XOPEN_SOURCE version: 37 updated: 2011/08/06 20:32:05 dnl --------------- dnl Try to get _XOPEN_SOURCE defined properly that we can use POSIX functions, dnl or adapt to the vendor's definitions to get equivalent functionality, @@ -6257,7 +6281,7 @@ cf_POSIX_C_SOURCE=ifelse([$2],,199506L,[$2]) cf_xopen_source= case $host_os in #(vi -aix[[456]]*) #(vi +aix[[4-7]]*) #(vi cf_xopen_source="-D_ALL_SOURCE" ;; cygwin) #(vi @@ -6293,7 +6317,7 @@ mirbsd*) #(vi # setting _XOPEN_SOURCE or _POSIX_SOURCE breaks <arpa/inet.h> ;; netbsd*) #(vi - # setting _XOPEN_SOURCE breaks IPv6 for lynx on NetBSD 1.6, breaks xterm, is not needed for ncursesw + cf_xopen_source="-D_NETBSD_SOURCE" # setting _XOPEN_SOURCE breaks IPv6 for lynx on NetBSD 1.6, breaks xterm, is not needed for ncursesw ;; openbsd*) #(vi # setting _XOPEN_SOURCE breaks xterm on OpenBSD 2.8, is not needed for ncursesw @@ -6484,7 +6508,7 @@ elif test "$cf_x_athena_inc" != default ; then fi ]) dnl --------------------------------------------------------------------------- -dnl CF_X_ATHENA_LIBS version: 10 updated: 2011/02/13 13:31:33 +dnl CF_X_ATHENA_LIBS version: 12 updated: 2011/07/17 19:55:02 dnl ---------------- dnl Normally invoked by CF_X_ATHENA, with $1 set to the appropriate flavor of dnl the Athena widgets, e.g., Xaw, Xaw3d, neXtaw. @@ -6500,19 +6524,24 @@ for cf_path in default \ /usr/local do for cf_lib in \ - "-l$cf_x_athena_root -lXmu" \ - "-l$cf_x_athena_root -lXpm -lXmu" \ - "-l${cf_x_athena_root}_s -lXmu_s" + ${cf_x_athena_root} \ + ${cf_x_athena_root}7 \ + ${cf_x_athena_root}6 + do + for cf_libs in \ + "-l$cf_lib -lXmu" \ + "-l$cf_lib -lXpm -lXmu" \ + "-l${cf_lib}_s -lXmu_s" do if test -z "$cf_x_athena_lib" ; then cf_save="$LIBS" cf_test=XawSimpleMenuAddGlobalActions if test $cf_path != default ; then - CF_ADD_LIBS(-L$cf_path/lib $cf_lib) - AC_MSG_CHECKING(for $cf_lib in $cf_path) + CF_ADD_LIBS(-L$cf_path/lib $cf_libs) + AC_MSG_CHECKING(for $cf_libs in $cf_path) else - CF_ADD_LIBS($cf_lib) - AC_MSG_CHECKING(for $cf_test in $cf_lib) + CF_ADD_LIBS($cf_libs) + AC_MSG_CHECKING(for $cf_test in $cf_libs) fi AC_TRY_LINK([ #include <X11/Intrinsic.h> @@ -6523,12 +6552,14 @@ $cf_test((XtAppContext) 0)], [cf_result=no]) AC_MSG_RESULT($cf_result) if test "$cf_result" = yes ; then - cf_x_athena_lib="$cf_lib" + cf_x_athena_lib="$cf_libs" break fi LIBS="$cf_save" fi - done + done # cf_libs + test -n "$cf_x_athena_lib" && break + done # cf_lib done if test -z "$cf_x_athena_lib" ; then diff --git a/configure b/configure index e63d2aa0..ab84956f 100755 --- a/configure +++ b/configure @@ -1,5 +1,5 @@ #! /bin/sh -# From configure.in 2.8.8dev.8. +# From configure.in 2.8.8dev.9. # Guess values for system-dependent variables and create Makefiles. # Generated by Autoconf 2.52.20101002. # @@ -4508,7 +4508,110 @@ mingw*) ;; esac -echo "$as_me:4511: checking for ${CC:-cc} option to accept ANSI C" >&5 +# This should have been defined by AC_PROG_CC +: ${CC:=cc} + +# Check for user's environment-breakage by stuffing CFLAGS/CPPFLAGS content +# into CC. This will not help with broken scripts that wrap the compiler with +# options, but eliminates a more common category of user confusion. +echo "$as_me:4517: checking \$CC variable" >&5 +echo $ECHO_N "checking \$CC variable... $ECHO_C" >&6 +case "$CC" in #(vi +*[\ \ ]-[IUD]*) + echo "$as_me:4521: result: broken" >&5 +echo "${ECHO_T}broken" >&6 + { echo "$as_me:4523: WARNING: your environment misuses the CC variable to hold CFLAGS/CPPFLAGS options" >&5 +echo "$as_me: WARNING: your environment misuses the CC variable to hold CFLAGS/CPPFLAGS options" >&2;} + # humor him... + cf_flags=`echo "$CC" | sed -e 's/^[^ ]*[ ]//'` + CC=`echo "$CC" | sed -e 's/[ ].*//'` + +cf_fix_cppflags=no +cf_new_cflags= +cf_new_cppflags= +cf_new_extra_cppflags= + +for cf_add_cflags in $cf_flags +do +case $cf_fix_cppflags in +no) + case $cf_add_cflags in #(vi + -undef|-nostdinc*|-I*|-D*|-U*|-E|-P|-C) #(vi + case $cf_add_cflags in + -D*) + cf_tst_cflags=`echo ${cf_add_cflags} |sed -e 's/^-D[^=]*='\''\"[^"]*//'` + + test "${cf_add_cflags}" != "${cf_tst_cflags}" \ + && test -z "${cf_tst_cflags}" \ + && cf_fix_cppflags=yes + + if test $cf_fix_cppflags = yes ; then + cf_new_extra_cppflags="$cf_new_extra_cppflags $cf_add_cflags" + continue + elif test "${cf_tst_cflags}" = "\"'" ; then + cf_new_extra_cppflags="$cf_new_extra_cppflags $cf_add_cflags" + continue + fi + ;; + esac + case "$CPPFLAGS" in + *$cf_add_cflags) #(vi + ;; + *) #(vi + case $cf_add_cflags in #(vi + -D*) + cf_tst_cppflags=`echo "x$cf_add_cflags" | sed -e 's/^...//' -e 's/=.*//'` + +CPPFLAGS=`echo "$CPPFLAGS" | \ + sed -e 's/-[UD]'"$cf_tst_cppflags"'\(=[^ ]*\)\?[ ]/ /g' \ + -e 's/-[UD]'"$cf_tst_cppflags"'\(=[^ ]*\)\?$//g'` + + ;; + esac + cf_new_cppflags="$cf_new_cppflags $cf_add_cflags" + ;; + esac + ;; + *) + cf_new_cflags="$cf_new_cflags $cf_add_cflags" + ;; + esac + ;; +yes) + cf_new_extra_cppflags="$cf_new_extra_cppflags $cf_add_cflags" + + cf_tst_cflags=`echo ${cf_add_cflags} |sed -e 's/^[^"]*"'\''//'` + + test "${cf_add_cflags}" != "${cf_tst_cflags}" \ + && test -z "${cf_tst_cflags}" \ + && cf_fix_cppflags=no + ;; +esac +done + +if test -n "$cf_new_cflags" ; then + + CFLAGS="$CFLAGS $cf_new_cflags" +fi + +if test -n "$cf_new_cppflags" ; then + + CPPFLAGS="$CPPFLAGS $cf_new_cppflags" +fi + +if test -n "$cf_new_extra_cppflags" ; then + + EXTRA_CPPFLAGS="$cf_new_extra_cppflags $EXTRA_CPPFLAGS" +fi + + ;; +*) + echo "$as_me:4609: result: ok" >&5 +echo "${ECHO_T}ok" >&6 + ;; +esac + +echo "$as_me:4614: 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 @@ -4612,7 +4715,7 @@ if test -n "$cf_new_extra_cppflags" ; then fi cat >conftest.$ac_ext <<_ACEOF -#line 4615 "configure" +#line 4718 "configure" #include "confdefs.h" #ifndef CC_HAS_PROTOS @@ -4633,16 +4736,16 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:4636: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:4739: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:4639: \$? = $ac_status" >&5 + echo "$as_me:4742: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:4642: \"$ac_try\"") >&5 + { (eval echo "$as_me:4745: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:4645: \$? = $ac_status" >&5 + echo "$as_me:4748: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_ansi_cc="$cf_arg"; break else @@ -4655,7 +4758,7 @@ CFLAGS="$cf_save_CFLAGS" CPPFLAGS="$cf_save_CPPFLAGS" fi -echo "$as_me:4658: result: $cf_cv_ansi_cc" >&5 +echo "$as_me:4761: result: $cf_cv_ansi_cc" >&5 echo "${ECHO_T}$cf_cv_ansi_cc" >&6 if test "$cf_cv_ansi_cc" != "no"; then @@ -4748,7 +4851,7 @@ fi fi if test "$cf_cv_ansi_cc" = "no"; then - { { echo "$as_me:4751: error: Your compiler does not appear to recognize prototypes. + { { echo "$as_me:4854: 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 @@ -4768,7 +4871,7 @@ if test "${enable_largefile+set}" = set; then fi; if test "$enable_largefile" != no; then - echo "$as_me:4771: checking for special C compiler options needed for large files" >&5 + echo "$as_me:4874: 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 @@ -4780,7 +4883,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 4783 "configure" +#line 4886 "configure" #include "confdefs.h" #include <sys/types.h> /* Check that off_t can represent 2**63 - 1 correctly. @@ -4800,16 +4903,16 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:4803: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:4906: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:4806: \$? = $ac_status" >&5 + echo "$as_me:4909: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:4809: \"$ac_try\"") >&5 + { (eval echo "$as_me:4912: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:4812: \$? = $ac_status" >&5 + echo "$as_me:4915: \$? = $ac_status" >&5 (exit $ac_status); }; }; then break else @@ -4819,16 +4922,16 @@ fi rm -f conftest.$ac_objext CC="$CC -n32" rm -f conftest.$ac_objext -if { (eval echo "$as_me:4822: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:4925: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:4825: \$? = $ac_status" >&5 + echo "$as_me:4928: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:4828: \"$ac_try\"") >&5 + { (eval echo "$as_me:4931: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:4831: \$? = $ac_status" >&5 + echo "$as_me:4934: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_sys_largefile_CC=' -n32'; break else @@ -4842,13 +4945,13 @@ rm -f conftest.$ac_objext rm -f conftest.$ac_ext fi fi -echo "$as_me:4845: result: $ac_cv_sys_largefile_CC" >&5 +echo "$as_me:4948: 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:4851: checking for _FILE_OFFSET_BITS value needed for large files" >&5 + echo "$as_me:4954: 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 @@ -4856,7 +4959,7 @@ else while :; do ac_cv_sys_file_offset_bits=no cat >conftest.$ac_ext <<_ACEOF -#line 4859 "configure" +#line 4962 "configure" #include "confdefs.h" #include <sys/types.h> /* Check that off_t can represent 2**63 - 1 correctly. @@ -4876,16 +4979,16 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:4879: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:4982: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:4882: \$? = $ac_status" >&5 + echo "$as_me:4985: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:4885: \"$ac_try\"") >&5 + { (eval echo "$as_me:4988: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:4888: \$? = $ac_status" >&5 + echo "$as_me:4991: \$? = $ac_status" >&5 (exit $ac_status); }; }; then break else @@ -4894,7 +4997,7 @@ cat conftest.$ac_ext >&5 fi rm -f conftest.$ac_objext conftest.$ac_ext cat >conftest.$ac_ext <<_ACEOF -#line 4897 "configure" +#line 5000 "configure" #include "confdefs.h" #define _FILE_OFFSET_BITS 64 #include <sys/types.h> @@ -4915,16 +5018,16 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:4918: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:5021: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:4921: \$? = $ac_status" >&5 + echo "$as_me:5024: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:4924: \"$ac_try\"") >&5 + { (eval echo "$as_me:5027: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:4927: \$? = $ac_status" >&5 + echo "$as_me:5030: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_sys_file_offset_bits=64; break else @@ -4935,7 +5038,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext break done fi -echo "$as_me:4938: result: $ac_cv_sys_file_offset_bits" >&5 +echo "$as_me:5041: 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 @@ -4945,7 +5048,7 @@ EOF fi rm -rf conftest* - echo "$as_me:4948: checking for _LARGE_FILES value needed for large files" >&5 + echo "$as_me:5051: 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 @@ -4953,7 +5056,7 @@ else while :; do ac_cv_sys_large_files=no cat >conftest.$ac_ext <<_ACEOF -#line 4956 "configure" +#line 5059 "configure" #include "confdefs.h" #include <sys/types.h> /* Check that off_t can represent 2**63 - 1 correctly. @@ -4973,16 +5076,16 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:4976: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:5079: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:4979: \$? = $ac_status" >&5 + echo "$as_me:5082: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:4982: \"$ac_try\"") >&5 + { (eval echo "$as_me:5085: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:4985: \$? = $ac_status" >&5 + echo "$as_me:5088: \$? = $ac_status" >&5 (exit $ac_status); }; }; then break else @@ -4991,7 +5094,7 @@ cat conftest.$ac_ext >&5 fi rm -f conftest.$ac_objext conftest.$ac_ext cat >conftest.$ac_ext <<_ACEOF -#line 4994 "configure" +#line 5097 "configure" #include "confdefs.h" #define _LARGE_FILES 1 #include <sys/types.h> @@ -5012,16 +5115,16 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:5015: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:5118: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:5018: \$? = $ac_status" >&5 + echo "$as_me:5121: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:5021: \"$ac_try\"") >&5 + { (eval echo "$as_me:5124: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:5024: \$? = $ac_status" >&5 + echo "$as_me:5127: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_sys_large_files=1; break else @@ -5032,7 +5135,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext break done fi -echo "$as_me:5035: result: $ac_cv_sys_large_files" >&5 +echo "$as_me:5138: 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 @@ -5045,7 +5148,7 @@ rm -rf conftest* fi if test "$enable_largefile" != no ; then - echo "$as_me:5048: checking for _LARGEFILE_SOURCE value needed for large files" >&5 + echo "$as_me:5151: 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 @@ -5053,7 +5156,7 @@ else while :; do ac_cv_sys_largefile_source=no cat >conftest.$ac_ext <<_ACEOF -#line 5056 "configure" +#line 5159 "configure" #include "confdefs.h" #include <stdio.h> int @@ -5065,16 +5168,16 @@ return !fseeko; } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:5068: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:5171: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:5071: \$? = $ac_status" >&5 + echo "$as_me:5174: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:5074: \"$ac_try\"") >&5 + { (eval echo "$as_me:5177: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:5077: \$? = $ac_status" >&5 + echo "$as_me:5180: \$? = $ac_status" >&5 (exit $ac_status); }; }; then break else @@ -5083,7 +5186,7 @@ cat conftest.$ac_ext >&5 fi rm -f conftest.$ac_objext conftest.$ac_ext cat >conftest.$ac_ext <<_ACEOF -#line 5086 "configure" +#line 5189 "configure" #include "confdefs.h" #define _LARGEFILE_SOURCE 1 #include <stdio.h> @@ -5096,16 +5199,16 @@ return !fseeko; } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:5099: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:5202: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:5102: \$? = $ac_status" >&5 + echo "$as_me:5205: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:5105: \"$ac_try\"") >&5 + { (eval echo "$as_me:5208: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:5108: \$? = $ac_status" >&5 + echo "$as_me:5211: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_sys_largefile_source=1; break else @@ -5116,7 +5219,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext break done fi -echo "$as_me:5119: result: $ac_cv_sys_largefile_source" >&5 +echo "$as_me:5222: 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 @@ -5130,13 +5233,13 @@ rm -rf 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:5133: checking for fseeko" >&5 +echo "$as_me:5236: 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 5139 "configure" +#line 5242 "configure" #include "confdefs.h" #include <stdio.h> int @@ -5148,16 +5251,16 @@ return fseeko && fseeko (stdin, 0, 0); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:5151: \"$ac_link\"") >&5 +if { (eval echo "$as_me:5254: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:5154: \$? = $ac_status" >&5 + echo "$as_me:5257: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:5157: \"$ac_try\"") >&5 + { (eval echo "$as_me:5260: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:5160: \$? = $ac_status" >&5 + echo "$as_me:5263: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_fseeko=yes else @@ -5167,7 +5270,7 @@ ac_cv_func_fseeko=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:5170: result: $ac_cv_func_fseeko" >&5 +echo "$as_me:5273: result: $ac_cv_func_fseeko" >&5 echo "${ECHO_T}$ac_cv_func_fseeko" >&6 if test $ac_cv_func_fseeko = yes; then @@ -5188,14 +5291,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:5191: checking whether to use struct dirent64" >&5 + echo "$as_me:5294: 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 5198 "configure" +#line 5301 "configure" #include "confdefs.h" #include <sys/types.h> @@ -5216,16 +5319,16 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:5219: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:5322: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:5222: \$? = $ac_status" >&5 + echo "$as_me:5325: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:5225: \"$ac_try\"") >&5 + { (eval echo "$as_me:5328: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:5228: \$? = $ac_status" >&5 + echo "$as_me:5331: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_struct_dirent64=yes else @@ -5236,7 +5339,7 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:5239: result: $cf_cv_struct_dirent64" >&5 +echo "$as_me:5342: 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 @@ -5255,7 +5358,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:5258: checking for $ac_word" >&5 +echo "$as_me:5361: 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 @@ -5282,17 +5385,17 @@ esac fi MSGINIT="$ac_cv_path_MSGINIT" if test "$MSGINIT" != ":"; then - echo "$as_me:5285: result: $MSGINIT" >&5 + echo "$as_me:5388: result: $MSGINIT" >&5 echo "${ECHO_T}$MSGINIT" >&6 else - echo "$as_me:5288: result: no" >&5 + echo "$as_me:5391: 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}:5295: testing adding en.po ..." 1>&5 +echo "${as_me:-configure}:5398: testing adding en.po ..." 1>&5 ALL_LINGUAS="$ALL_LINGUAS en" fi @@ -5301,7 +5404,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:5304: checking for $ac_word" >&5 +echo "$as_me:5407: 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 @@ -5316,7 +5419,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:5319: found $ac_dir/$ac_word" >&5 +echo "$as_me:5422: found $ac_dir/$ac_word" >&5 break done @@ -5324,10 +5427,10 @@ fi fi RANLIB=$ac_cv_prog_RANLIB if test -n "$RANLIB"; then - echo "$as_me:5327: result: $RANLIB" >&5 + echo "$as_me:5430: result: $RANLIB" >&5 echo "${ECHO_T}$RANLIB" >&6 else - echo "$as_me:5330: result: no" >&5 + echo "$as_me:5433: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -5336,7 +5439,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:5339: checking for $ac_word" >&5 +echo "$as_me:5442: 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 @@ -5351,7 +5454,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:5354: found $ac_dir/$ac_word" >&5 +echo "$as_me:5457: found $ac_dir/$ac_word" >&5 break done @@ -5360,10 +5463,10 @@ fi fi ac_ct_RANLIB=$ac_cv_prog_ac_ct_RANLIB if test -n "$ac_ct_RANLIB"; then - echo "$as_me:5363: result: $ac_ct_RANLIB" >&5 + echo "$as_me:5466: result: $ac_ct_RANLIB" >&5 echo "${ECHO_T}$ac_ct_RANLIB" >&6 else - echo "$as_me:5366: result: no" >&5 + echo "$as_me:5469: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -5372,13 +5475,13 @@ else RANLIB="$ac_cv_prog_RANLIB" fi -echo "$as_me:5375: checking for ANSI C header files" >&5 +echo "$as_me:5478: 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 5381 "configure" +#line 5484 "configure" #include "confdefs.h" #include <stdlib.h> #include <stdarg.h> @@ -5386,13 +5489,13 @@ else #include <float.h> _ACEOF -if { (eval echo "$as_me:5389: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:5492: \"$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:5395: \$? = $ac_status" >&5 + echo "$as_me:5498: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -5414,7 +5517,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 5417 "configure" +#line 5520 "configure" #include "confdefs.h" #include <string.h> @@ -5432,7 +5535,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 5435 "configure" +#line 5538 "configure" #include "confdefs.h" #include <stdlib.h> @@ -5453,7 +5556,7 @@ if test $ac_cv_header_stdc = yes; then : else cat >conftest.$ac_ext <<_ACEOF -#line 5456 "configure" +#line 5559 "configure" #include "confdefs.h" #include <ctype.h> #if ((' ' & 0x0FF) == 0x020) @@ -5479,15 +5582,15 @@ main () } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:5482: \"$ac_link\"") >&5 +if { (eval echo "$as_me:5585: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:5485: \$? = $ac_status" >&5 + echo "$as_me:5588: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:5487: \"$ac_try\"") >&5 + { (eval echo "$as_me:5590: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:5490: \$? = $ac_status" >&5 + echo "$as_me:5593: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -5500,7 +5603,7 @@ rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext fi fi fi -echo "$as_me:5503: result: $ac_cv_header_stdc" >&5 +echo "$as_me:5606: result: $ac_cv_header_stdc" >&5 echo "${ECHO_T}$ac_cv_header_stdc" >&6 if test $ac_cv_header_stdc = yes; then @@ -5510,7 +5613,7 @@ EOF fi -echo "$as_me:5513: checking for inline" >&5 +echo "$as_me:5616: 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 @@ -5518,7 +5621,7 @@ else ac_cv_c_inline=no for ac_kw in inline __inline__ __inline; do cat >conftest.$ac_ext <<_ACEOF -#line 5521 "configure" +#line 5624 "configure" #include "confdefs.h" #ifndef __cplusplus static $ac_kw int static_foo () {return 0; } @@ -5527,16 +5630,16 @@ $ac_kw int foo () {return 0; } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:5530: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:5633: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:5533: \$? = $ac_status" >&5 + echo "$as_me:5636: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:5536: \"$ac_try\"") >&5 + { (eval echo "$as_me:5639: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:5539: \$? = $ac_status" >&5 + echo "$as_me:5642: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_c_inline=$ac_kw; break else @@ -5547,7 +5650,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext done fi -echo "$as_me:5550: result: $ac_cv_c_inline" >&5 +echo "$as_me:5653: result: $ac_cv_c_inline" >&5 echo "${ECHO_T}$ac_cv_c_inline" >&6 case $ac_cv_c_inline in inline | yes) ;; @@ -5568,28 +5671,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:5571: checking for $ac_header" >&5 +echo "$as_me:5674: 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 5577 "configure" +#line 5680 "configure" #include "confdefs.h" $ac_includes_default #include <$ac_header> _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:5583: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:5686: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:5586: \$? = $ac_status" >&5 + echo "$as_me:5689: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:5589: \"$ac_try\"") >&5 + { (eval echo "$as_me:5692: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:5592: \$? = $ac_status" >&5 + echo "$as_me:5695: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_Header=yes" else @@ -5599,7 +5702,7 @@ eval "$as_ac_Header=no" fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:5602: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:5705: 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 @@ -5609,13 +5712,13 @@ EOF fi done -echo "$as_me:5612: checking for off_t" >&5 +echo "$as_me:5715: 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 5618 "configure" +#line 5721 "configure" #include "confdefs.h" $ac_includes_default int @@ -5630,16 +5733,16 @@ if (sizeof (off_t)) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:5633: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:5736: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:5636: \$? = $ac_status" >&5 + echo "$as_me:5739: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:5639: \"$ac_try\"") >&5 + { (eval echo "$as_me:5742: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:5642: \$? = $ac_status" >&5 + echo "$as_me:5745: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_type_off_t=yes else @@ -5649,7 +5752,7 @@ ac_cv_type_off_t=no fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:5652: result: $ac_cv_type_off_t" >&5 +echo "$as_me:5755: 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 : @@ -5661,13 +5764,13 @@ EOF fi -echo "$as_me:5664: checking for size_t" >&5 +echo "$as_me:5767: 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 5670 "configure" +#line 5773 "configure" #include "confdefs.h" $ac_includes_default int @@ -5682,16 +5785,16 @@ if (sizeof (size_t)) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:5685: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:5788: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:5688: \$? = $ac_status" >&5 + echo "$as_me:5791: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:5691: \"$ac_try\"") >&5 + { (eval echo "$as_me:5794: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:5694: \$? = $ac_status" >&5 + echo "$as_me:5797: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_type_size_t=yes else @@ -5701,7 +5804,7 @@ ac_cv_type_size_t=no fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:5704: result: $ac_cv_type_size_t" >&5 +echo "$as_me:5807: 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 : @@ -5715,13 +5818,13 @@ fi # The Ultrix 4.2 mips builtin alloca declared by alloca.h only works # for constant arguments. Useless! -echo "$as_me:5718: checking for working alloca.h" >&5 +echo "$as_me:5821: 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 5724 "configure" +#line 5827 "configure" #include "confdefs.h" #include <alloca.h> int @@ -5733,16 +5836,16 @@ char *p = (char *) alloca (2 * sizeof (int)); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:5736: \"$ac_link\"") >&5 +if { (eval echo "$as_me:5839: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:5739: \$? = $ac_status" >&5 + echo "$as_me:5842: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:5742: \"$ac_try\"") >&5 + { (eval echo "$as_me:5845: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:5745: \$? = $ac_status" >&5 + echo "$as_me:5848: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_working_alloca_h=yes else @@ -5752,7 +5855,7 @@ ac_cv_working_alloca_h=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:5755: result: $ac_cv_working_alloca_h" >&5 +echo "$as_me:5858: 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 @@ -5762,13 +5865,13 @@ EOF fi -echo "$as_me:5765: checking for alloca" >&5 +echo "$as_me:5868: 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 5771 "configure" +#line 5874 "configure" #include "confdefs.h" #ifdef __GNUC__ # define alloca __builtin_alloca @@ -5800,16 +5903,16 @@ char *p = (char *) alloca (1); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:5803: \"$ac_link\"") >&5 +if { (eval echo "$as_me:5906: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:5806: \$? = $ac_status" >&5 + echo "$as_me:5909: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:5809: \"$ac_try\"") >&5 + { (eval echo "$as_me:5912: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:5812: \$? = $ac_status" >&5 + echo "$as_me:5915: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_alloca_works=yes else @@ -5819,7 +5922,7 @@ ac_cv_func_alloca_works=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:5822: result: $ac_cv_func_alloca_works" >&5 +echo "$as_me:5925: 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 @@ -5840,13 +5943,13 @@ cat >>confdefs.h <<\EOF #define C_ALLOCA 1 EOF -echo "$as_me:5843: checking whether \`alloca.c' needs Cray hooks" >&5 +echo "$as_me:5946: 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 5849 "configure" +#line 5952 "configure" #include "confdefs.h" #if defined(CRAY) && ! defined(CRAY2) webecray @@ -5864,18 +5967,18 @@ fi rm -rf conftest* fi -echo "$as_me:5867: result: $ac_cv_os_cray" >&5 +echo "$as_me:5970: 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:5872: checking for $ac_func" >&5 +echo "$as_me:5975: 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 5878 "configure" +#line 5981 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. */ @@ -5906,16 +6009,16 @@ f = $ac_func; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:5909: \"$ac_link\"") >&5 +if { (eval echo "$as_me:6012: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:5912: \$? = $ac_status" >&5 + echo "$as_me:6015: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:5915: \"$ac_try\"") >&5 + { (eval echo "$as_me:6018: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:5918: \$? = $ac_status" >&5 + echo "$as_me:6021: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else @@ -5925,7 +6028,7 @@ eval "$as_ac_var=no" fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:5928: result: `eval echo '${'$as_ac_var'}'`" >&5 +echo "$as_me:6031: 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 @@ -5939,7 +6042,7 @@ fi done fi -echo "$as_me:5942: checking stack direction for C alloca" >&5 +echo "$as_me:6045: 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 @@ -5948,7 +6051,7 @@ else ac_cv_c_stack_direction=0 else cat >conftest.$ac_ext <<_ACEOF -#line 5951 "configure" +#line 6054 "configure" #include "confdefs.h" int find_stack_direction () @@ -5971,15 +6074,15 @@ main () } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:5974: \"$ac_link\"") >&5 +if { (eval echo "$as_me:6077: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:5977: \$? = $ac_status" >&5 + echo "$as_me:6080: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:5979: \"$ac_try\"") >&5 + { (eval echo "$as_me:6082: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:5982: \$? = $ac_status" >&5 + echo "$as_me:6085: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_c_stack_direction=1 else @@ -5991,7 +6094,7 @@ fi rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext fi fi -echo "$as_me:5994: result: $ac_cv_c_stack_direction" >&5 +echo "$as_me:6097: result: $ac_cv_c_stack_direction" >&5 echo "${ECHO_T}$ac_cv_c_stack_direction" >&6 cat >>confdefs.h <<EOF @@ -6003,23 +6106,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:6006: checking for $ac_header" >&5 +echo "$as_me:6109: 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 6012 "configure" +#line 6115 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:6016: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:6119: \"$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:6022: \$? = $ac_status" >&5 + echo "$as_me:6125: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -6038,7 +6141,7 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:6041: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:6144: 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 @@ -6051,13 +6154,13 @@ done for ac_func in getpagesize do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` -echo "$as_me:6054: checking for $ac_func" >&5 +echo "$as_me:6157: 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 6060 "configure" +#line 6163 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. */ @@ -6088,16 +6191,16 @@ f = $ac_func; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:6091: \"$ac_link\"") >&5 +if { (eval echo "$as_me:6194: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:6094: \$? = $ac_status" >&5 + echo "$as_me:6197: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:6097: \"$ac_try\"") >&5 + { (eval echo "$as_me:6200: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:6100: \$? = $ac_status" >&5 + echo "$as_me:6203: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else @@ -6107,7 +6210,7 @@ eval "$as_ac_var=no" fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:6110: result: `eval echo '${'$as_ac_var'}'`" >&5 +echo "$as_me:6213: 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 @@ -6117,7 +6220,7 @@ EOF fi done -echo "$as_me:6120: checking for working mmap" >&5 +echo "$as_me:6223: 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 @@ -6126,7 +6229,7 @@ else ac_cv_func_mmap_fixed_mapped=no else cat >conftest.$ac_ext <<_ACEOF -#line 6129 "configure" +#line 6232 "configure" #include "confdefs.h" $ac_includes_default /* Thanks to Mike Haertel and Jim Avera for this test. @@ -6253,15 +6356,15 @@ main () } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:6256: \"$ac_link\"") >&5 +if { (eval echo "$as_me:6359: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:6259: \$? = $ac_status" >&5 + echo "$as_me:6362: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:6261: \"$ac_try\"") >&5 + { (eval echo "$as_me:6364: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:6264: \$? = $ac_status" >&5 + echo "$as_me:6367: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_mmap_fixed_mapped=yes else @@ -6273,7 +6376,7 @@ fi rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext fi fi -echo "$as_me:6276: result: $ac_cv_func_mmap_fixed_mapped" >&5 +echo "$as_me:6379: 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 @@ -6284,13 +6387,13 @@ EOF fi rm -f conftest.mmap - echo "$as_me:6287: checking whether we are using the GNU C Library 2.1 or newer" >&5 + echo "$as_me:6390: 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 6293 "configure" +#line 6396 "configure" #include "confdefs.h" #include <features.h> @@ -6310,7 +6413,7 @@ fi rm -rf conftest* fi -echo "$as_me:6313: result: $ac_cv_gnu_library_2_1" >&5 +echo "$as_me:6416: 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" @@ -6323,7 +6426,7 @@ test -z "$ALL_LINGUAS" && ALL_LINGUAS=`test -d $srcdir/po && cd $srcdir/po && ec : ${CONFIG_H:=config.h} if test -z "$PACKAGE" ; then - { { echo "$as_me:6326: error: CF_BUNDLED_INTL used without setting PACKAGE variable" >&5 + { { echo "$as_me:6429: error: CF_BUNDLED_INTL used without setting PACKAGE variable" >&5 echo "$as_me: error: CF_BUNDLED_INTL used without setting PACKAGE variable" >&2;} { (exit 1); exit 1; }; } fi @@ -6340,23 +6443,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:6343: checking for $ac_header" >&5 +echo "$as_me:6446: 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 6349 "configure" +#line 6452 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:6353: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:6456: \"$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:6359: \$? = $ac_status" >&5 + echo "$as_me:6462: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -6375,7 +6478,7 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:6378: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:6481: 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 @@ -6390,13 +6493,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:6393: checking for $ac_func" >&5 +echo "$as_me:6496: 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 6399 "configure" +#line 6502 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. */ @@ -6427,16 +6530,16 @@ f = $ac_func; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:6430: \"$ac_link\"") >&5 +if { (eval echo "$as_me:6533: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:6433: \$? = $ac_status" >&5 + echo "$as_me:6536: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:6436: \"$ac_try\"") >&5 + { (eval echo "$as_me:6539: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:6439: \$? = $ac_status" >&5 + echo "$as_me:6542: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else @@ -6446,7 +6549,7 @@ eval "$as_ac_var=no" fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:6449: result: `eval echo '${'$as_ac_var'}'`" >&5 +echo "$as_me:6552: 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 @@ -6494,7 +6597,7 @@ if test -n "$cf_searchpath/include" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 6497 "configure" +#line 6600 "configure" #include "confdefs.h" #include <stdio.h> int @@ -6506,16 +6609,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:6509: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:6612: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:6512: \$? = $ac_status" >&5 + echo "$as_me:6615: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:6515: \"$ac_try\"") >&5 + { (eval echo "$as_me:6618: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:6518: \$? = $ac_status" >&5 + echo "$as_me:6621: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -6532,7 +6635,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}:6535: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:6638: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -6573,7 +6676,7 @@ if test -n "$cf_searchpath/../include" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 6576 "configure" +#line 6679 "configure" #include "confdefs.h" #include <stdio.h> int @@ -6585,16 +6688,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:6588: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:6691: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:6591: \$? = $ac_status" >&5 + echo "$as_me:6694: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:6594: \"$ac_try\"") >&5 + { (eval echo "$as_me:6697: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:6597: \$? = $ac_status" >&5 + echo "$as_me:6700: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -6611,7 +6714,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}:6614: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:6717: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -6627,7 +6730,7 @@ echo "${as_me:-configure}:6614: testing adding $cf_add_incdir to include-path .. fi else -{ { echo "$as_me:6630: error: cannot find libiconv under $withval" >&5 +{ { echo "$as_me:6733: error: cannot find libiconv under $withval" >&5 echo "$as_me: error: cannot find libiconv under $withval" >&2;} { (exit 1); exit 1; }; } fi @@ -6652,7 +6755,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}:6655: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:6758: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -6681,7 +6784,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}:6684: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:6787: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -6690,7 +6793,7 @@ echo "${as_me:-configure}:6684: testing adding $cf_add_libdir to library-path .. fi else -{ { echo "$as_me:6693: error: cannot find libiconv under $withval" >&5 +{ { echo "$as_me:6796: error: cannot find libiconv under $withval" >&5 echo "$as_me: error: cannot find libiconv under $withval" >&2;} { (exit 1); exit 1; }; } fi @@ -6701,7 +6804,7 @@ done fi; - echo "$as_me:6704: checking for iconv" >&5 + echo "$as_me:6807: 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 @@ -6712,12 +6815,12 @@ else cf_cv_header_path_iconv= cf_cv_library_path_iconv= -echo "${as_me:-configure}:6715: testing Starting FIND_LINKAGE(iconv,) ..." 1>&5 +echo "${as_me:-configure}:6818: testing Starting FIND_LINKAGE(iconv,) ..." 1>&5 cf_save_LIBS="$LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 6720 "configure" +#line 6823 "configure" #include "confdefs.h" #include <stdlib.h> @@ -6736,16 +6839,16 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:6739: \"$ac_link\"") >&5 +if { (eval echo "$as_me:6842: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:6742: \$? = $ac_status" >&5 + echo "$as_me:6845: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:6745: \"$ac_try\"") >&5 + { (eval echo "$as_me:6848: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:6748: \$? = $ac_status" >&5 + echo "$as_me:6851: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_find_linkage_iconv=yes @@ -6759,7 +6862,7 @@ cat conftest.$ac_ext >&5 LIBS="-liconv $cf_save_LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 6762 "configure" +#line 6865 "configure" #include "confdefs.h" #include <stdlib.h> @@ -6778,16 +6881,16 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:6781: \"$ac_link\"") >&5 +if { (eval echo "$as_me:6884: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:6784: \$? = $ac_status" >&5 + echo "$as_me:6887: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:6787: \"$ac_try\"") >&5 + { (eval echo "$as_me:6890: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:6790: \$? = $ac_status" >&5 + echo "$as_me:6893: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_find_linkage_iconv=yes @@ -6804,9 +6907,9 @@ cat conftest.$ac_ext >&5 test -n "$verbose" && echo " find linkage for iconv library" 1>&6 -echo "${as_me:-configure}:6807: testing find linkage for iconv library ..." 1>&5 +echo "${as_me:-configure}:6910: testing find linkage for iconv library ..." 1>&5 -echo "${as_me:-configure}:6809: testing Searching for headers in FIND_LINKAGE(iconv,) ..." 1>&5 +echo "${as_me:-configure}:6912: testing Searching for headers in FIND_LINKAGE(iconv,) ..." 1>&5 cf_save_CPPFLAGS="$CPPFLAGS" cf_test_CPPFLAGS="$CPPFLAGS" @@ -6919,11 +7022,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}:6922: testing ... testing $cf_cv_header_path_iconv ..." 1>&5 +echo "${as_me:-configure}:7025: 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 6926 "configure" +#line 7029 "configure" #include "confdefs.h" #include <stdlib.h> @@ -6942,21 +7045,21 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:6945: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:7048: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:6948: \$? = $ac_status" >&5 + echo "$as_me:7051: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:6951: \"$ac_try\"") >&5 + { (eval echo "$as_me:7054: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:6954: \$? = $ac_status" >&5 + echo "$as_me:7057: \$? = $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}:6959: testing ... found iconv headers in $cf_cv_header_path_iconv ..." 1>&5 +echo "${as_me:-configure}:7062: testing ... found iconv headers in $cf_cv_header_path_iconv ..." 1>&5 cf_cv_find_linkage_iconv=maybe cf_test_CPPFLAGS="$CPPFLAGS" @@ -6974,7 +7077,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "$cf_cv_find_linkage_iconv" = maybe ; then -echo "${as_me:-configure}:6977: testing Searching for iconv library in FIND_LINKAGE(iconv,) ..." 1>&5 +echo "${as_me:-configure}:7080: testing Searching for iconv library in FIND_LINKAGE(iconv,) ..." 1>&5 cf_save_LIBS="$LIBS" cf_save_LDFLAGS="$LDFLAGS" @@ -7071,13 +7174,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}:7074: testing ... testing $cf_cv_library_path_iconv ..." 1>&5 +echo "${as_me:-configure}:7177: 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 7080 "configure" +#line 7183 "configure" #include "confdefs.h" #include <stdlib.h> @@ -7096,21 +7199,21 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:7099: \"$ac_link\"") >&5 +if { (eval echo "$as_me:7202: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:7102: \$? = $ac_status" >&5 + echo "$as_me:7205: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:7105: \"$ac_try\"") >&5 + { (eval echo "$as_me:7208: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:7108: \$? = $ac_status" >&5 + echo "$as_me:7211: \$? = $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}:7113: testing ... found iconv library in $cf_cv_library_path_iconv ..." 1>&5 +echo "${as_me:-configure}:7216: testing ... found iconv library in $cf_cv_library_path_iconv ..." 1>&5 cf_cv_find_linkage_iconv=yes cf_cv_library_file_iconv="-liconv" @@ -7150,7 +7253,7 @@ am_cv_func_iconv="no, consider installing GNU libiconv" fi fi -echo "$as_me:7153: result: $am_cv_func_iconv" >&5 +echo "$as_me:7256: result: $am_cv_func_iconv" >&5 echo "${ECHO_T}$am_cv_func_iconv" >&6 if test "$am_cv_func_iconv" = yes; then @@ -7159,14 +7262,14 @@ cat >>confdefs.h <<\EOF #define HAVE_ICONV 1 EOF - echo "$as_me:7162: checking if the declaration of iconv() needs const." >&5 + echo "$as_me:7265: 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 7169 "configure" +#line 7272 "configure" #include "confdefs.h" #include <stdlib.h> @@ -7191,16 +7294,16 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:7194: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:7297: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:7197: \$? = $ac_status" >&5 + echo "$as_me:7300: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:7200: \"$ac_try\"") >&5 + { (eval echo "$as_me:7303: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:7203: \$? = $ac_status" >&5 + echo "$as_me:7306: \$? = $ac_status" >&5 (exit $ac_status); }; }; then am_cv_proto_iconv_const=no else @@ -7210,7 +7313,7 @@ am_cv_proto_iconv_const=yes fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:7213: result: $am_cv_proto_iconv_const" >&5 +echo "$as_me:7316: 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 @@ -7252,7 +7355,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 7255 "configure" +#line 7358 "configure" #include "confdefs.h" #include <stdio.h> int @@ -7264,16 +7367,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:7267: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:7370: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:7270: \$? = $ac_status" >&5 + echo "$as_me:7373: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:7273: \"$ac_try\"") >&5 + { (eval echo "$as_me:7376: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:7276: \$? = $ac_status" >&5 + echo "$as_me:7379: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -7290,7 +7393,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}:7293: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:7396: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -7327,7 +7430,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}:7330: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:7433: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -7338,13 +7441,13 @@ fi fi fi - echo "$as_me:7341: checking for nl_langinfo and CODESET" >&5 + echo "$as_me:7444: 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 7347 "configure" +#line 7450 "configure" #include "confdefs.h" #include <langinfo.h> int @@ -7356,16 +7459,16 @@ char* cs = nl_langinfo(CODESET); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:7359: \"$ac_link\"") >&5 +if { (eval echo "$as_me:7462: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:7362: \$? = $ac_status" >&5 + echo "$as_me:7465: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:7365: \"$ac_try\"") >&5 + { (eval echo "$as_me:7468: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:7368: \$? = $ac_status" >&5 + echo "$as_me:7471: \$? = $ac_status" >&5 (exit $ac_status); }; }; then am_cv_langinfo_codeset=yes else @@ -7376,7 +7479,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:7379: result: $am_cv_langinfo_codeset" >&5 +echo "$as_me:7482: result: $am_cv_langinfo_codeset" >&5 echo "${ECHO_T}$am_cv_langinfo_codeset" >&6 if test $am_cv_langinfo_codeset = yes; then @@ -7387,13 +7490,13 @@ EOF fi if test $ac_cv_header_locale_h = yes; then - echo "$as_me:7390: checking for LC_MESSAGES" >&5 + echo "$as_me:7493: 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 7396 "configure" +#line 7499 "configure" #include "confdefs.h" #include <locale.h> int @@ -7405,16 +7508,16 @@ return LC_MESSAGES } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:7408: \"$ac_link\"") >&5 +if { (eval echo "$as_me:7511: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:7411: \$? = $ac_status" >&5 + echo "$as_me:7514: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:7414: \"$ac_try\"") >&5 + { (eval echo "$as_me:7517: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:7417: \$? = $ac_status" >&5 + echo "$as_me:7520: \$? = $ac_status" >&5 (exit $ac_status); }; }; then am_cv_val_LC_MESSAGES=yes else @@ -7424,7 +7527,7 @@ am_cv_val_LC_MESSAGES=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:7427: result: $am_cv_val_LC_MESSAGES" >&5 +echo "$as_me:7530: 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 @@ -7434,7 +7537,7 @@ EOF fi fi - echo "$as_me:7437: checking whether NLS is requested" >&5 + echo "$as_me:7540: 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. @@ -7444,7 +7547,7 @@ if test "${enable_nls+set}" = set; then else USE_NLS=no fi; - echo "$as_me:7447: result: $USE_NLS" >&5 + echo "$as_me:7550: result: $USE_NLS" >&5 echo "${ECHO_T}$USE_NLS" >&6 BUILD_INCLUDED_LIBINTL=no @@ -7457,7 +7560,7 @@ cat >>confdefs.h <<\EOF #define ENABLE_NLS 1 EOF - echo "$as_me:7460: checking whether included gettext is requested" >&5 + echo "$as_me:7563: 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. @@ -7467,7 +7570,7 @@ if test "${with_included_gettext+set}" = set; then else nls_cv_force_use_gnu_gettext=no fi; - echo "$as_me:7470: result: $nls_cv_force_use_gnu_gettext" >&5 + echo "$as_me:7573: 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" @@ -7476,7 +7579,7 @@ echo "${ECHO_T}$nls_cv_force_use_gnu_gettext" >&6 cf_save_LIBS_1="$LIBS" LIBS="$LIBICONV $LIBS" - echo "$as_me:7479: checking for libintl.h and gettext()" >&5 + echo "$as_me:7582: 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 @@ -7487,12 +7590,12 @@ else cf_cv_header_path_intl= cf_cv_library_path_intl= -echo "${as_me:-configure}:7490: testing Starting FIND_LINKAGE(intl,) ..." 1>&5 +echo "${as_me:-configure}:7593: testing Starting FIND_LINKAGE(intl,) ..." 1>&5 cf_save_LIBS="$LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 7495 "configure" +#line 7598 "configure" #include "confdefs.h" #include <libintl.h> @@ -7512,16 +7615,16 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:7515: \"$ac_link\"") >&5 +if { (eval echo "$as_me:7618: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:7518: \$? = $ac_status" >&5 + echo "$as_me:7621: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:7521: \"$ac_try\"") >&5 + { (eval echo "$as_me:7624: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:7524: \$? = $ac_status" >&5 + echo "$as_me:7627: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_find_linkage_intl=yes @@ -7535,7 +7638,7 @@ cat conftest.$ac_ext >&5 LIBS="-lintl $cf_save_LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 7538 "configure" +#line 7641 "configure" #include "confdefs.h" #include <libintl.h> @@ -7555,16 +7658,16 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:7558: \"$ac_link\"") >&5 +if { (eval echo "$as_me:7661: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:7561: \$? = $ac_status" >&5 + echo "$as_me:7664: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:7564: \"$ac_try\"") >&5 + { (eval echo "$as_me:7667: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:7567: \$? = $ac_status" >&5 + echo "$as_me:7670: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_find_linkage_intl=yes @@ -7581,9 +7684,9 @@ cat conftest.$ac_ext >&5 test -n "$verbose" && echo " find linkage for intl library" 1>&6 -echo "${as_me:-configure}:7584: testing find linkage for intl library ..." 1>&5 +echo "${as_me:-configure}:7687: testing find linkage for intl library ..." 1>&5 -echo "${as_me:-configure}:7586: testing Searching for headers in FIND_LINKAGE(intl,) ..." 1>&5 +echo "${as_me:-configure}:7689: testing Searching for headers in FIND_LINKAGE(intl,) ..." 1>&5 cf_save_CPPFLAGS="$CPPFLAGS" cf_test_CPPFLAGS="$CPPFLAGS" @@ -7696,11 +7799,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}:7699: testing ... testing $cf_cv_header_path_intl ..." 1>&5 +echo "${as_me:-configure}:7802: 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 7703 "configure" +#line 7806 "configure" #include "confdefs.h" #include <libintl.h> @@ -7720,21 +7823,21 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:7723: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:7826: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:7726: \$? = $ac_status" >&5 + echo "$as_me:7829: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:7729: \"$ac_try\"") >&5 + { (eval echo "$as_me:7832: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:7732: \$? = $ac_status" >&5 + echo "$as_me:7835: \$? = $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}:7737: testing ... found intl headers in $cf_cv_header_path_intl ..." 1>&5 +echo "${as_me:-configure}:7840: testing ... found intl headers in $cf_cv_header_path_intl ..." 1>&5 cf_cv_find_linkage_intl=maybe cf_test_CPPFLAGS="$CPPFLAGS" @@ -7752,7 +7855,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "$cf_cv_find_linkage_intl" = maybe ; then -echo "${as_me:-configure}:7755: testing Searching for intl library in FIND_LINKAGE(intl,) ..." 1>&5 +echo "${as_me:-configure}:7858: testing Searching for intl library in FIND_LINKAGE(intl,) ..." 1>&5 cf_save_LIBS="$LIBS" cf_save_LDFLAGS="$LDFLAGS" @@ -7849,13 +7952,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}:7852: testing ... testing $cf_cv_library_path_intl ..." 1>&5 +echo "${as_me:-configure}:7955: 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 7858 "configure" +#line 7961 "configure" #include "confdefs.h" #include <libintl.h> @@ -7875,21 +7978,21 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:7878: \"$ac_link\"") >&5 +if { (eval echo "$as_me:7981: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:7881: \$? = $ac_status" >&5 + echo "$as_me:7984: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:7884: \"$ac_try\"") >&5 + { (eval echo "$as_me:7987: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:7887: \$? = $ac_status" >&5 + echo "$as_me:7990: \$? = $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}:7892: testing ... found intl library in $cf_cv_library_path_intl ..." 1>&5 +echo "${as_me:-configure}:7995: testing ... found intl library in $cf_cv_library_path_intl ..." 1>&5 cf_cv_find_linkage_intl=yes cf_cv_library_file_intl="-lintl" @@ -7929,7 +8032,7 @@ cf_cv_func_gettext=no fi fi -echo "$as_me:7932: result: $cf_cv_func_gettext" >&5 +echo "$as_me:8035: result: $cf_cv_func_gettext" >&5 echo "${ECHO_T}$cf_cv_func_gettext" >&6 LIBS="$cf_save_LIBS_1" @@ -7968,7 +8071,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 7971 "configure" +#line 8074 "configure" #include "confdefs.h" #include <stdio.h> int @@ -7980,16 +8083,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:7983: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:8086: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:7986: \$? = $ac_status" >&5 + echo "$as_me:8089: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:7989: \"$ac_try\"") >&5 + { (eval echo "$as_me:8092: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:7992: \$? = $ac_status" >&5 + echo "$as_me:8095: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -8006,7 +8109,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}:8009: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:8112: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -8043,7 +8146,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}:8046: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:8149: testing adding $cf_add_libdir to library-path ..." 1>&5 INTLLIBS="-L$cf_add_libdir $INTLLIBS" fi @@ -8059,13 +8162,13 @@ fi for ac_func in dcgettext do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` -echo "$as_me:8062: checking for $ac_func" >&5 +echo "$as_me:8165: 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 8068 "configure" +#line 8171 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. */ @@ -8096,16 +8199,16 @@ f = $ac_func; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:8099: \"$ac_link\"") >&5 +if { (eval echo "$as_me:8202: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:8102: \$? = $ac_status" >&5 + echo "$as_me:8205: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:8105: \"$ac_try\"") >&5 + { (eval echo "$as_me:8208: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:8108: \$? = $ac_status" >&5 + echo "$as_me:8211: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else @@ -8115,7 +8218,7 @@ eval "$as_ac_var=no" fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:8118: result: `eval echo '${'$as_ac_var'}'`" >&5 +echo "$as_me:8221: 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 @@ -8130,7 +8233,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:8133: checking for $ac_word" >&5 +echo "$as_me:8236: 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 @@ -8157,16 +8260,16 @@ esac fi MSGFMT="$ac_cv_path_MSGFMT" if test "$MSGFMT" != ":"; then - echo "$as_me:8160: result: $MSGFMT" >&5 + echo "$as_me:8263: result: $MSGFMT" >&5 echo "${ECHO_T}$MSGFMT" >&6 else - echo "$as_me:8163: result: no" >&5 + echo "$as_me:8266: 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:8169: checking for $ac_word" >&5 +echo "$as_me:8272: 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 @@ -8183,7 +8286,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:8186: found $ac_dir/$ac_word" >&5 + echo "$as_me:8289: found $ac_dir/$ac_word" >&5 break fi done @@ -8195,17 +8298,17 @@ fi GMSGFMT=$ac_cv_path_GMSGFMT if test -n "$GMSGFMT"; then - echo "$as_me:8198: result: $GMSGFMT" >&5 + echo "$as_me:8301: result: $GMSGFMT" >&5 echo "${ECHO_T}$GMSGFMT" >&6 else - echo "$as_me:8201: result: no" >&5 + echo "$as_me:8304: 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:8208: checking for $ac_word" >&5 +echo "$as_me:8311: 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 @@ -8232,10 +8335,10 @@ esac fi XGETTEXT="$ac_cv_path_XGETTEXT" if test "$XGETTEXT" != ":"; then - echo "$as_me:8235: result: $XGETTEXT" >&5 + echo "$as_me:8338: result: $XGETTEXT" >&5 echo "${ECHO_T}$XGETTEXT" >&6 else - echo "$as_me:8238: result: no" >&5 + echo "$as_me:8341: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -8250,7 +8353,7 @@ fi if test "$nls_cv_use_gnu_gettext" = "yes"; then if test ! -d $srcdir/intl ; then - { { echo "$as_me:8253: error: no NLS library is packaged with this application" >&5 + { { echo "$as_me:8356: 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 @@ -8258,7 +8361,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:8261: checking for $ac_word" >&5 +echo "$as_me:8364: 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 @@ -8285,16 +8388,16 @@ esac fi MSGFMT="$ac_cv_path_MSGFMT" if test "$MSGFMT" != ":"; then - echo "$as_me:8288: result: $MSGFMT" >&5 + echo "$as_me:8391: result: $MSGFMT" >&5 echo "${ECHO_T}$MSGFMT" >&6 else - echo "$as_me:8291: result: no" >&5 + echo "$as_me:8394: 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:8297: checking for $ac_word" >&5 +echo "$as_me:8400: 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 @@ -8311,7 +8414,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:8314: found $ac_dir/$ac_word" >&5 + echo "$as_me:8417: found $ac_dir/$ac_word" >&5 break fi done @@ -8323,17 +8426,17 @@ fi GMSGFMT=$ac_cv_path_GMSGFMT if test -n "$GMSGFMT"; then - echo "$as_me:8326: result: $GMSGFMT" >&5 + echo "$as_me:8429: result: $GMSGFMT" >&5 echo "${ECHO_T}$GMSGFMT" >&6 else - echo "$as_me:8329: result: no" >&5 + echo "$as_me:8432: 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:8336: checking for $ac_word" >&5 +echo "$as_me:8439: 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 @@ -8360,10 +8463,10 @@ esac fi XGETTEXT="$ac_cv_path_XGETTEXT" if test "$XGETTEXT" != ":"; then - echo "$as_me:8363: result: $XGETTEXT" >&5 + echo "$as_me:8466: result: $XGETTEXT" >&5 echo "${ECHO_T}$XGETTEXT" >&6 else - echo "$as_me:8366: result: no" >&5 + echo "$as_me:8469: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -8378,7 +8481,7 @@ fi if $GMSGFMT --statistics /dev/null >/dev/null 2>&1; then : ; else - echo "$as_me:8381: result: found msgfmt program is not GNU msgfmt; ignore it" >&5 + echo "$as_me:8484: 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 @@ -8388,7 +8491,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:8391: result: found xgettext program is not GNU xgettext; ignore it" >&5 + echo "$as_me:8494: 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 @@ -8408,7 +8511,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:8411: checking for $ac_word" >&5 +echo "$as_me:8514: 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 @@ -8423,7 +8526,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:8426: found $ac_dir/$ac_word" >&5 +echo "$as_me:8529: found $ac_dir/$ac_word" >&5 break done @@ -8431,10 +8534,10 @@ fi fi INTLBISON=$ac_cv_prog_INTLBISON if test -n "$INTLBISON"; then - echo "$as_me:8434: result: $INTLBISON" >&5 + echo "$as_me:8537: result: $INTLBISON" >&5 echo "${ECHO_T}$INTLBISON" >&6 else - echo "$as_me:8437: result: no" >&5 + echo "$as_me:8540: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -8444,7 +8547,7 @@ done if test -z "$INTLBISON"; then ac_verc_fail=yes else - echo "$as_me:8447: checking version of bison" >&5 + echo "$as_me:8550: 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 @@ -8453,7 +8556,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:8456: result: $ac_prog_version" >&5 + echo "$as_me:8559: result: $ac_prog_version" >&5 echo "${ECHO_T}$ac_prog_version" >&6 fi if test $ac_verc_fail = yes; then @@ -8479,7 +8582,7 @@ echo "${ECHO_T}$ac_prog_version" >&6 if test "x$ALL_LINGUAS" = "x"; then LINGUAS= else - echo "$as_me:8482: checking for catalogs to be installed" >&5 + echo "$as_me:8585: 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 @@ -8499,7 +8602,7 @@ echo $ECHO_N "checking for catalogs to be installed... $ECHO_C" >&6 fi done LINGUAS=$NEW_LINGUAS - echo "$as_me:8502: result: $LINGUAS" >&5 + echo "$as_me:8605: result: $LINGUAS" >&5 echo "${ECHO_T}$LINGUAS" >&6 fi @@ -8534,7 +8637,7 @@ cf_makefile=makefile use_our_messages=no if test "$USE_NLS" = yes ; then if test -d $srcdir/po ; then -echo "$as_me:8537: checking if we should use included message-library" >&5 +echo "$as_me:8640: 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. @@ -8545,7 +8648,7 @@ else use_our_messages=yes fi; fi -echo "$as_me:8548: result: $use_our_messages" >&5 +echo "$as_me:8651: result: $use_our_messages" >&5 echo "${ECHO_T}$use_our_messages" >&6 fi @@ -8586,23 +8689,23 @@ else for ac_header in libintl.h do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` -echo "$as_me:8589: checking for $ac_header" >&5 +echo "$as_me:8692: 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 8595 "configure" +#line 8698 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:8599: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:8702: \"$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:8605: \$? = $ac_status" >&5 + echo "$as_me:8708: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -8621,7 +8724,7 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:8624: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:8727: 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 @@ -8704,7 +8807,7 @@ case ".$withval" in #(vi withval=`echo $withval | sed -e s%NONE%$cf_path_syntax%` ;; *) - { { echo "$as_me:8707: error: expected a pathname, not \"$withval\"" >&5 + { { echo "$as_me:8810: error: expected a pathname, not \"$withval\"" >&5 echo "$as_me: error: expected a pathname, not \"$withval\"" >&2;} { (exit 1); exit 1; }; } ;; @@ -8713,7 +8816,7 @@ esac fi NLS_DATADIR="$withval" -echo "$as_me:8716: checking if you want full utility pathnames" >&5 +echo "$as_me:8819: 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. @@ -8730,13 +8833,13 @@ else with_full_paths=yes fi; -echo "$as_me:8733: result: $with_full_paths" >&5 +echo "$as_me:8836: 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:8739: checking for system mailer" >&5 +echo "$as_me:8842: 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 @@ -8756,13 +8859,13 @@ else fi -echo "$as_me:8759: result: $cf_cv_SYSTEM_MAIL" >&5 +echo "$as_me:8862: 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:8765: checking system mail flags" >&5 +echo "$as_me:8868: 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 @@ -8778,7 +8881,7 @@ else fi -echo "$as_me:8781: result: $cf_cv_system_mail_flags" >&5 +echo "$as_me:8884: 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" @@ -8795,7 +8898,7 @@ cf_POSIX_C_SOURCE=199506L cf_xopen_source= case $host_os in #(vi -aix[456]*) #(vi +aix[4-7]*) #(vi cf_xopen_source="-D_ALL_SOURCE" ;; cygwin) #(vi @@ -8826,14 +8929,14 @@ irix[56].*) #(vi ;; linux*|gnu*|mint*|k*bsd*-gnu) #(vi -echo "$as_me:8829: checking if we must define _GNU_SOURCE" >&5 +echo "$as_me:8932: 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 8836 "configure" +#line 8939 "configure" #include "confdefs.h" #include <sys/types.h> int @@ -8848,16 +8951,16 @@ make an error } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:8851: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:8954: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:8854: \$? = $ac_status" >&5 + echo "$as_me:8957: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:8857: \"$ac_try\"") >&5 + { (eval echo "$as_me:8960: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:8860: \$? = $ac_status" >&5 + echo "$as_me:8963: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_gnu_source=no else @@ -8866,7 +8969,7 @@ cat conftest.$ac_ext >&5 cf_save="$CPPFLAGS" CPPFLAGS="$CPPFLAGS -D_GNU_SOURCE" cat >conftest.$ac_ext <<_ACEOF -#line 8869 "configure" +#line 8972 "configure" #include "confdefs.h" #include <sys/types.h> int @@ -8881,16 +8984,16 @@ make an error } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:8884: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:8987: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:8887: \$? = $ac_status" >&5 + echo "$as_me:8990: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:8890: \"$ac_try\"") >&5 + { (eval echo "$as_me:8993: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:8893: \$? = $ac_status" >&5 + echo "$as_me:8996: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_gnu_source=no else @@ -8905,7 +9008,7 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:8908: result: $cf_cv_gnu_source" >&5 +echo "$as_me:9011: 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" @@ -8914,7 +9017,7 @@ mirbsd*) #(vi # setting _XOPEN_SOURCE or _POSIX_SOURCE breaks <arpa/inet.h> ;; netbsd*) #(vi - # setting _XOPEN_SOURCE breaks IPv6 for lynx on NetBSD 1.6, breaks xterm, is not needed for ncursesw + cf_xopen_source="-D_NETBSD_SOURCE" # setting _XOPEN_SOURCE breaks IPv6 for lynx on NetBSD 1.6, breaks xterm, is not needed for ncursesw ;; openbsd*) #(vi # setting _XOPEN_SOURCE breaks xterm on OpenBSD 2.8, is not needed for ncursesw @@ -8935,14 +9038,14 @@ solaris2.[1-9]) #(vi cf_xopen_source="-D__EXTENSIONS__" ;; *) - echo "$as_me:8938: checking if we should define _XOPEN_SOURCE" >&5 + echo "$as_me:9041: 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 8945 "configure" +#line 9048 "configure" #include "confdefs.h" #include <sys/types.h> int @@ -8957,16 +9060,16 @@ make an error } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:8960: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:9063: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:8963: \$? = $ac_status" >&5 + echo "$as_me:9066: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:8966: \"$ac_try\"") >&5 + { (eval echo "$as_me:9069: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:8969: \$? = $ac_status" >&5 + echo "$as_me:9072: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_xopen_source=no else @@ -8975,7 +9078,7 @@ cat conftest.$ac_ext >&5 cf_save="$CPPFLAGS" CPPFLAGS="$CPPFLAGS -D_XOPEN_SOURCE=$cf_XOPEN_SOURCE" cat >conftest.$ac_ext <<_ACEOF -#line 8978 "configure" +#line 9081 "configure" #include "confdefs.h" #include <sys/types.h> int @@ -8990,16 +9093,16 @@ make an error } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:8993: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:9096: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:8996: \$? = $ac_status" >&5 + echo "$as_me:9099: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:8999: \"$ac_try\"") >&5 + { (eval echo "$as_me:9102: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:9002: \$? = $ac_status" >&5 + echo "$as_me:9105: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_xopen_source=no else @@ -9014,7 +9117,7 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:9017: result: $cf_cv_xopen_source" >&5 +echo "$as_me:9120: result: $cf_cv_xopen_source" >&5 echo "${ECHO_T}$cf_cv_xopen_source" >&6 if test "$cf_cv_xopen_source" != no ; then @@ -9121,16 +9224,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:9124: checking if we should define _POSIX_C_SOURCE" >&5 +echo "$as_me:9227: 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}:9130: testing if the symbol is already defined go no further ..." 1>&5 +echo "${as_me:-configure}:9233: testing if the symbol is already defined go no further ..." 1>&5 cat >conftest.$ac_ext <<_ACEOF -#line 9133 "configure" +#line 9236 "configure" #include "confdefs.h" #include <sys/types.h> int @@ -9145,16 +9248,16 @@ make an error } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:9148: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:9251: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:9151: \$? = $ac_status" >&5 + echo "$as_me:9254: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:9154: \"$ac_try\"") >&5 + { (eval echo "$as_me:9257: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:9157: \$? = $ac_status" >&5 + echo "$as_me:9260: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_posix_c_source=no else @@ -9175,7 +9278,7 @@ cf_want_posix_source=no esac if test "$cf_want_posix_source" = yes ; then cat >conftest.$ac_ext <<_ACEOF -#line 9178 "configure" +#line 9281 "configure" #include "confdefs.h" #include <sys/types.h> int @@ -9190,16 +9293,16 @@ make an error } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:9193: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:9296: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:9196: \$? = $ac_status" >&5 + echo "$as_me:9299: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:9199: \"$ac_try\"") >&5 + { (eval echo "$as_me:9302: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:9202: \$? = $ac_status" >&5 + echo "$as_me:9305: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -9210,15 +9313,15 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "${as_me:-configure}:9213: testing ifdef from value $cf_POSIX_C_SOURCE ..." 1>&5 +echo "${as_me:-configure}:9316: 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}:9218: testing if the second compile does not leave our definition intact error ..." 1>&5 +echo "${as_me:-configure}:9321: testing if the second compile does not leave our definition intact error ..." 1>&5 cat >conftest.$ac_ext <<_ACEOF -#line 9221 "configure" +#line 9324 "configure" #include "confdefs.h" #include <sys/types.h> int @@ -9233,16 +9336,16 @@ make an error } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:9236: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:9339: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:9239: \$? = $ac_status" >&5 + echo "$as_me:9342: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:9242: \"$ac_try\"") >&5 + { (eval echo "$as_me:9345: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:9245: \$? = $ac_status" >&5 + echo "$as_me:9348: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -9258,7 +9361,7 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:9261: result: $cf_cv_posix_c_source" >&5 +echo "$as_me:9364: 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 @@ -9430,14 +9533,14 @@ fi fi -echo "$as_me:9433: checking if SIGWINCH is defined" >&5 +echo "$as_me:9536: 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 9440 "configure" +#line 9543 "configure" #include "confdefs.h" #include <sys/types.h> @@ -9452,23 +9555,23 @@ int x = SIGWINCH } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:9455: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:9558: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:9458: \$? = $ac_status" >&5 + echo "$as_me:9561: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:9461: \"$ac_try\"") >&5 + { (eval echo "$as_me:9564: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:9464: \$? = $ac_status" >&5 + echo "$as_me:9567: \$? = $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 9471 "configure" +#line 9574 "configure" #include "confdefs.h" #undef _XOPEN_SOURCE @@ -9486,16 +9589,16 @@ int x = SIGWINCH } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:9489: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:9592: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:9492: \$? = $ac_status" >&5 + echo "$as_me:9595: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:9495: \"$ac_try\"") >&5 + { (eval echo "$as_me:9598: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:9498: \$? = $ac_status" >&5 + echo "$as_me:9601: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_define_sigwinch=maybe else @@ -9509,11 +9612,11 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:9512: result: $cf_cv_define_sigwinch" >&5 +echo "$as_me:9615: 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:9516: checking for actual SIGWINCH definition" >&5 +echo "$as_me:9619: 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 @@ -9524,7 +9627,7 @@ cf_sigwinch=32 while test $cf_sigwinch != 1 do cat >conftest.$ac_ext <<_ACEOF -#line 9527 "configure" +#line 9630 "configure" #include "confdefs.h" #undef _XOPEN_SOURCE @@ -9546,16 +9649,16 @@ int x = SIGWINCH } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:9549: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:9652: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:9552: \$? = $ac_status" >&5 + echo "$as_me:9655: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:9555: \"$ac_try\"") >&5 + { (eval echo "$as_me:9658: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:9558: \$? = $ac_status" >&5 + echo "$as_me:9661: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_fixup_sigwinch=$cf_sigwinch break @@ -9569,7 +9672,7 @@ cf_sigwinch=`expr $cf_sigwinch - 1` done fi -echo "$as_me:9572: result: $cf_cv_fixup_sigwinch" >&5 +echo "$as_me:9675: result: $cf_cv_fixup_sigwinch" >&5 echo "${ECHO_T}$cf_cv_fixup_sigwinch" >&6 if test "$cf_cv_fixup_sigwinch" != unknown ; then @@ -9581,7 +9684,7 @@ if test -n "$TRY_CFLAGS" ; then test -n "$verbose" && echo " checking additions to CFLAGS" 1>&6 -echo "${as_me:-configure}:9584: testing checking additions to CFLAGS ..." 1>&5 +echo "${as_me:-configure}:9687: testing checking additions to CFLAGS ..." 1>&5 cf_check_cflags="$CFLAGS" cf_check_cppflags="$CPPFLAGS" @@ -9652,7 +9755,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}:9655: testing add to \$CFLAGS $cf_new_cflags ..." 1>&5 +echo "${as_me:-configure}:9758: testing add to \$CFLAGS $cf_new_cflags ..." 1>&5 CFLAGS="$CFLAGS $cf_new_cflags" fi @@ -9660,7 +9763,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}:9663: testing add to \$CPPFLAGS $cf_new_cppflags ..." 1>&5 +echo "${as_me:-configure}:9766: testing add to \$CPPFLAGS $cf_new_cppflags ..." 1>&5 CPPFLAGS="$CPPFLAGS $cf_new_cppflags" fi @@ -9668,14 +9771,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}:9671: testing add to \$EXTRA_CPPFLAGS $cf_new_extra_cppflags ..." 1>&5 +echo "${as_me:-configure}:9774: 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 9678 "configure" +#line 9781 "configure" #include "confdefs.h" #include <stdio.h> int @@ -9687,16 +9790,16 @@ printf("Hello world"); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:9690: \"$ac_link\"") >&5 +if { (eval echo "$as_me:9793: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:9693: \$? = $ac_status" >&5 + echo "$as_me:9796: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:9696: \"$ac_try\"") >&5 + { (eval echo "$as_me:9799: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:9699: \$? = $ac_status" >&5 + echo "$as_me:9802: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -9704,12 +9807,12 @@ else cat conftest.$ac_ext >&5 test -n "$verbose" && echo " test-compile failed. Undoing change to \$CFLAGS" 1>&6 -echo "${as_me:-configure}:9707: testing test-compile failed. Undoing change to \$CFLAGS ..." 1>&5 +echo "${as_me:-configure}:9810: 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}:9712: testing but keeping change to \$CPPFLAGS ..." 1>&5 +echo "${as_me:-configure}:9815: testing but keeping change to \$CPPFLAGS ..." 1>&5 fi CFLAGS="$cf_check_flags" @@ -9721,7 +9824,7 @@ fi ### Look for network libraries first, since some functions (such as gethostname) ### are used in a lot of places. -echo "$as_me:9724: checking if you want NSS compatible SSL libraries" >&5 +echo "$as_me:9827: 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 @@ -9736,10 +9839,10 @@ else fi; fi -echo "$as_me:9739: result: $cf_cv_use_libnss_compat" >&5 +echo "$as_me:9842: result: $cf_cv_use_libnss_compat" >&5 echo "${ECHO_T}$cf_cv_use_libnss_compat" >&6 -echo "$as_me:9742: checking if you want ssl library" >&5 +echo "$as_me:9845: 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 @@ -9754,10 +9857,10 @@ else fi; fi -echo "$as_me:9757: result: $cf_cv_use_libssl" >&5 +echo "$as_me:9860: result: $cf_cv_use_libssl" >&5 echo "${ECHO_T}$cf_cv_use_libssl" >&6 -echo "$as_me:9760: checking if you want gnutls support" >&5 +echo "$as_me:9863: 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 @@ -9772,11 +9875,11 @@ else fi; fi -echo "$as_me:9775: result: $cf_cv_use_libgnutls" >&5 +echo "$as_me:9878: 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:9779: checking if you want gnutls-openssl compat" >&5 +echo "$as_me:9882: 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 @@ -9791,10 +9894,10 @@ else fi; fi -echo "$as_me:9794: result: $cf_cv_gnutls_compat" >&5 +echo "$as_me:9897: result: $cf_cv_gnutls_compat" >&5 echo "${ECHO_T}$cf_cv_gnutls_compat" >&6 -echo "$as_me:9797: checking if you want socks library" >&5 +echo "$as_me:9900: 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 @@ -9809,10 +9912,10 @@ else fi; fi -echo "$as_me:9812: result: $cf_cv_use_libsocks" >&5 +echo "$as_me:9915: result: $cf_cv_use_libsocks" >&5 echo "${ECHO_T}$cf_cv_use_libsocks" >&6 -echo "$as_me:9815: checking if you want socks5 library" >&5 +echo "$as_me:9918: 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 @@ -9827,7 +9930,7 @@ else fi; fi -echo "$as_me:9830: result: $cf_cv_use_libsocks5" >&5 +echo "$as_me:9933: result: $cf_cv_use_libsocks5" >&5 echo "${ECHO_T}$cf_cv_use_libsocks5" >&6 if test "x$cf_cv_use_libsocks" != xno ; then @@ -9866,7 +9969,7 @@ if test -n "$cf_searchpath/include" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 9869 "configure" +#line 9972 "configure" #include "confdefs.h" #include <stdio.h> int @@ -9878,16 +9981,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:9881: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:9984: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:9884: \$? = $ac_status" >&5 + echo "$as_me:9987: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:9887: \"$ac_try\"") >&5 + { (eval echo "$as_me:9990: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:9890: \$? = $ac_status" >&5 + echo "$as_me:9993: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -9904,7 +10007,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}:9907: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:10010: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -9945,7 +10048,7 @@ if test -n "$cf_searchpath/../include" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 9948 "configure" +#line 10051 "configure" #include "confdefs.h" #include <stdio.h> int @@ -9957,16 +10060,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:9960: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:10063: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:9963: \$? = $ac_status" >&5 + echo "$as_me:10066: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:9966: \"$ac_try\"") >&5 + { (eval echo "$as_me:10069: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:9969: \$? = $ac_status" >&5 + echo "$as_me:10072: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -9983,7 +10086,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}:9986: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:10089: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -9999,7 +10102,7 @@ echo "${as_me:-configure}:9986: testing adding $cf_add_incdir to include-path .. fi else -{ { echo "$as_me:10002: error: cannot find socks library under $cf_cv_use_libsocks" >&5 +{ { echo "$as_me:10105: 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 @@ -10024,7 +10127,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}:10027: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:10130: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -10053,7 +10156,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}:10056: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:10159: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -10062,7 +10165,7 @@ echo "${as_me:-configure}:10056: testing adding $cf_add_libdir to library-path . fi else -{ { echo "$as_me:10065: error: cannot find socks library under $cf_cv_use_libsocks" >&5 +{ { echo "$as_me:10168: 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 @@ -10076,12 +10179,12 @@ done cf_cv_header_path_socks= cf_cv_library_path_socks= -echo "${as_me:-configure}:10079: testing Starting FIND_LINKAGE(socks,) ..." 1>&5 +echo "${as_me:-configure}:10182: testing Starting FIND_LINKAGE(socks,) ..." 1>&5 cf_save_LIBS="$LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 10084 "configure" +#line 10187 "configure" #include "confdefs.h" #include <stdio.h> @@ -10097,16 +10200,16 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:10100: \"$ac_link\"") >&5 +if { (eval echo "$as_me:10203: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:10103: \$? = $ac_status" >&5 + echo "$as_me:10206: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:10106: \"$ac_try\"") >&5 + { (eval echo "$as_me:10209: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:10109: \$? = $ac_status" >&5 + echo "$as_me:10212: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_find_linkage_socks=yes @@ -10120,7 +10223,7 @@ cat conftest.$ac_ext >&5 LIBS="-lsocks $cf_save_LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 10123 "configure" +#line 10226 "configure" #include "confdefs.h" #include <stdio.h> @@ -10136,16 +10239,16 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:10139: \"$ac_link\"") >&5 +if { (eval echo "$as_me:10242: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:10142: \$? = $ac_status" >&5 + echo "$as_me:10245: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:10145: \"$ac_try\"") >&5 + { (eval echo "$as_me:10248: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:10148: \$? = $ac_status" >&5 + echo "$as_me:10251: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_find_linkage_socks=yes @@ -10162,9 +10265,9 @@ cat conftest.$ac_ext >&5 test -n "$verbose" && echo " find linkage for socks library" 1>&6 -echo "${as_me:-configure}:10165: testing find linkage for socks library ..." 1>&5 +echo "${as_me:-configure}:10268: testing find linkage for socks library ..." 1>&5 -echo "${as_me:-configure}:10167: testing Searching for headers in FIND_LINKAGE(socks,) ..." 1>&5 +echo "${as_me:-configure}:10270: testing Searching for headers in FIND_LINKAGE(socks,) ..." 1>&5 cf_save_CPPFLAGS="$CPPFLAGS" cf_test_CPPFLAGS="$CPPFLAGS" @@ -10277,11 +10380,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}:10280: testing ... testing $cf_cv_header_path_socks ..." 1>&5 +echo "${as_me:-configure}:10383: 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 10284 "configure" +#line 10387 "configure" #include "confdefs.h" #include <stdio.h> @@ -10297,21 +10400,21 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:10300: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:10403: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:10303: \$? = $ac_status" >&5 + echo "$as_me:10406: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:10306: \"$ac_try\"") >&5 + { (eval echo "$as_me:10409: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:10309: \$? = $ac_status" >&5 + echo "$as_me:10412: \$? = $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}:10314: testing ... found socks headers in $cf_cv_header_path_socks ..." 1>&5 +echo "${as_me:-configure}:10417: testing ... found socks headers in $cf_cv_header_path_socks ..." 1>&5 cf_cv_find_linkage_socks=maybe cf_test_CPPFLAGS="$CPPFLAGS" @@ -10329,7 +10432,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "$cf_cv_find_linkage_socks" = maybe ; then -echo "${as_me:-configure}:10332: testing Searching for socks library in FIND_LINKAGE(socks,) ..." 1>&5 +echo "${as_me:-configure}:10435: testing Searching for socks library in FIND_LINKAGE(socks,) ..." 1>&5 cf_save_LIBS="$LIBS" cf_save_LDFLAGS="$LDFLAGS" @@ -10426,13 +10529,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}:10429: testing ... testing $cf_cv_library_path_socks ..." 1>&5 +echo "${as_me:-configure}:10532: 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 10435 "configure" +#line 10538 "configure" #include "confdefs.h" #include <stdio.h> @@ -10448,21 +10551,21 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:10451: \"$ac_link\"") >&5 +if { (eval echo "$as_me:10554: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:10454: \$? = $ac_status" >&5 + echo "$as_me:10557: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:10457: \"$ac_try\"") >&5 + { (eval echo "$as_me:10560: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:10460: \$? = $ac_status" >&5 + echo "$as_me:10563: \$? = $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}:10465: testing ... found socks library in $cf_cv_library_path_socks ..." 1>&5 +echo "${as_me:-configure}:10568: testing ... found socks library in $cf_cv_library_path_socks ..." 1>&5 cf_cv_find_linkage_socks=yes cf_cv_library_file_socks="-lsocks" @@ -10521,7 +10624,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 10524 "configure" +#line 10627 "configure" #include "confdefs.h" #include <stdio.h> int @@ -10533,16 +10636,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:10536: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:10639: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:10539: \$? = $ac_status" >&5 + echo "$as_me:10642: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:10542: \"$ac_try\"") >&5 + { (eval echo "$as_me:10645: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:10545: \$? = $ac_status" >&5 + echo "$as_me:10648: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -10559,7 +10662,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}:10562: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:10665: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -10593,7 +10696,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}:10596: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:10699: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -10604,7 +10707,7 @@ fi LIBS="-lsocks $LIBS" else -{ echo "$as_me:10607: WARNING: Cannot find socks library" >&5 +{ echo "$as_me:10710: WARNING: Cannot find socks library" >&5 echo "$as_me: WARNING: Cannot find socks library" >&2;} fi @@ -10646,7 +10749,7 @@ EOF EOF else - { { echo "$as_me:10649: error: cannot link with socks library" >&5 + { { echo "$as_me:10752: error: cannot link with socks library" >&5 echo "$as_me: error: cannot link with socks library" >&2;} { (exit 1); exit 1; }; } fi @@ -10687,7 +10790,7 @@ if test -n "$cf_searchpath/include" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 10690 "configure" +#line 10793 "configure" #include "confdefs.h" #include <stdio.h> int @@ -10699,16 +10802,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:10702: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:10805: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:10705: \$? = $ac_status" >&5 + echo "$as_me:10808: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:10708: \"$ac_try\"") >&5 + { (eval echo "$as_me:10811: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:10711: \$? = $ac_status" >&5 + echo "$as_me:10814: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -10725,7 +10828,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}:10728: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:10831: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -10766,7 +10869,7 @@ if test -n "$cf_searchpath/../include" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 10769 "configure" +#line 10872 "configure" #include "confdefs.h" #include <stdio.h> int @@ -10778,16 +10881,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:10781: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:10884: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:10784: \$? = $ac_status" >&5 + echo "$as_me:10887: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:10787: \"$ac_try\"") >&5 + { (eval echo "$as_me:10890: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:10790: \$? = $ac_status" >&5 + echo "$as_me:10893: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -10804,7 +10907,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}:10807: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:10910: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -10820,7 +10923,7 @@ echo "${as_me:-configure}:10807: testing adding $cf_add_incdir to include-path . fi else -{ { echo "$as_me:10823: error: cannot find socks5 library under $cf_cv_use_libsocks5" >&5 +{ { echo "$as_me:10926: 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 @@ -10845,7 +10948,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}:10848: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:10951: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -10874,7 +10977,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}:10877: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:10980: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -10883,7 +10986,7 @@ echo "${as_me:-configure}:10877: testing adding $cf_add_libdir to library-path . fi else -{ { echo "$as_me:10886: error: cannot find socks5 library under $cf_cv_use_libsocks5" >&5 +{ { echo "$as_me:10989: 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 @@ -10902,11 +11005,11 @@ cat >>confdefs.h <<\EOF #define SOCKS 1 EOF -echo "$as_me:10905: checking if the socks library uses socks4 prefix" >&5 +echo "$as_me:11008: 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 10909 "configure" +#line 11012 "configure" #include "confdefs.h" #include <socks.h> @@ -10920,16 +11023,16 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:10923: \"$ac_link\"") >&5 +if { (eval echo "$as_me:11026: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:10926: \$? = $ac_status" >&5 + echo "$as_me:11029: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:10929: \"$ac_try\"") >&5 + { (eval echo "$as_me:11032: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:10932: \$? = $ac_status" >&5 + echo "$as_me:11035: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cat >>confdefs.h <<\EOF #define USE_SOCKS4_PREFIX 1 @@ -10940,7 +11043,7 @@ else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 cat >conftest.$ac_ext <<_ACEOF -#line 10943 "configure" +#line 11046 "configure" #include "confdefs.h" #include <socks.h> int @@ -10952,29 +11055,29 @@ SOCKSinit((char *)0) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:10955: \"$ac_link\"") >&5 +if { (eval echo "$as_me:11058: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:10958: \$? = $ac_status" >&5 + echo "$as_me:11061: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:10961: \"$ac_try\"") >&5 + { (eval echo "$as_me:11064: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:10964: \$? = $ac_status" >&5 + echo "$as_me:11067: \$? = $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:10970: error: Cannot link with socks5 library" >&5 +{ { echo "$as_me:11073: 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:10977: result: $cf_use_socks4" >&5 +echo "$as_me:11080: result: $cf_use_socks4" >&5 echo "${ECHO_T}$cf_use_socks4" >&6 if test "$cf_use_socks4" = "yes" ; then @@ -11029,10 +11132,10 @@ EOF fi -echo "$as_me:11032: checking if socks5p.h is available" >&5 +echo "$as_me:11135: 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 11035 "configure" +#line 11138 "configure" #include "confdefs.h" #define INCLUDE_PROTOTYPES @@ -11047,16 +11150,16 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:11050: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:11153: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:11053: \$? = $ac_status" >&5 + echo "$as_me:11156: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:11056: \"$ac_try\"") >&5 + { (eval echo "$as_me:11159: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:11059: \$? = $ac_status" >&5 + echo "$as_me:11162: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_use_socks5p_h=yes else @@ -11065,7 +11168,7 @@ cat conftest.$ac_ext >&5 cf_use_socks5p_h=no fi rm -f conftest.$ac_objext conftest.$ac_ext -echo "$as_me:11068: result: $cf_use_socks5p_h" >&5 +echo "$as_me:11171: result: $cf_use_socks5p_h" >&5 echo "${ECHO_T}$cf_use_socks5p_h" >&6 test "$cf_use_socks5p_h" = yes && cat >>confdefs.h <<\EOF @@ -11076,14 +11179,14 @@ else cf_test_netlibs=no -echo "$as_me:11079: checking for network libraries" >&5 +echo "$as_me:11182: 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:11086: result: working..." >&5 +echo "$as_me:11189: result: working..." >&5 echo "${ECHO_T}working..." >&6 cf_cv_netlibs="" @@ -11095,23 +11198,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:11098: checking for $ac_header" >&5 +echo "$as_me:11201: 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 11104 "configure" +#line 11207 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:11108: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:11211: \"$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:11114: \$? = $ac_status" >&5 + echo "$as_me:11217: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -11130,7 +11233,7 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:11133: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:11236: 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 @@ -11150,7 +11253,7 @@ done LIBS="$cf_winsock_lib $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 11153 "configure" +#line 11256 "configure" #include "confdefs.h" #ifdef HAVE_WINDOWS_H @@ -11177,22 +11280,22 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:11180: \"$ac_link\"") >&5 +if { (eval echo "$as_me:11283: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:11183: \$? = $ac_status" >&5 + echo "$as_me:11286: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:11186: \"$ac_try\"") >&5 + { (eval echo "$as_me:11289: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:11189: \$? = $ac_status" >&5 + echo "$as_me:11292: \$? = $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:11195: error: Cannot link against winsock library" >&5 +{ { echo "$as_me:11298: error: Cannot link against winsock library" >&5 echo "$as_me: error: Cannot link against winsock library" >&2;} { (exit 1); exit 1; }; } fi @@ -11205,13 +11308,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:11208: checking for $ac_func" >&5 +echo "$as_me:11311: 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 11214 "configure" +#line 11317 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. */ @@ -11242,16 +11345,16 @@ f = $ac_func; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:11245: \"$ac_link\"") >&5 +if { (eval echo "$as_me:11348: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:11248: \$? = $ac_status" >&5 + echo "$as_me:11351: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:11251: \"$ac_try\"") >&5 + { (eval echo "$as_me:11354: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:11254: \$? = $ac_status" >&5 + echo "$as_me:11357: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else @@ -11261,7 +11364,7 @@ eval "$as_ac_var=no" fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:11264: result: `eval echo '${'$as_ac_var'}'`" >&5 +echo "$as_me:11367: 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 @@ -11270,7 +11373,7 @@ EOF else -echo "$as_me:11273: checking for gethostname in -lnsl" >&5 +echo "$as_me:11376: 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 @@ -11278,7 +11381,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lnsl $cf_cv_netlibs $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 11281 "configure" +#line 11384 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -11297,16 +11400,16 @@ gethostname (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:11300: \"$ac_link\"") >&5 +if { (eval echo "$as_me:11403: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:11303: \$? = $ac_status" >&5 + echo "$as_me:11406: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:11306: \"$ac_try\"") >&5 + { (eval echo "$as_me:11409: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:11309: \$? = $ac_status" >&5 + echo "$as_me:11412: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_nsl_gethostname=yes else @@ -11317,7 +11420,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:11320: result: $ac_cv_lib_nsl_gethostname" >&5 +echo "$as_me:11423: 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 @@ -11334,7 +11437,7 @@ else ac_cv_func_gethostname=unknown unset ac_cv_func_gethostname 2>/dev/null -echo "$as_me:11337: checking for gethostname in -lsocket" >&5 +echo "$as_me:11440: 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 @@ -11342,7 +11445,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lsocket $cf_cv_netlibs $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 11345 "configure" +#line 11448 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -11361,16 +11464,16 @@ gethostname (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:11364: \"$ac_link\"") >&5 +if { (eval echo "$as_me:11467: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:11367: \$? = $ac_status" >&5 + echo "$as_me:11470: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:11370: \"$ac_try\"") >&5 + { (eval echo "$as_me:11473: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:11373: \$? = $ac_status" >&5 + echo "$as_me:11476: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_socket_gethostname=yes else @@ -11381,7 +11484,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:11384: result: $ac_cv_lib_socket_gethostname" >&5 +echo "$as_me:11487: 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 @@ -11405,7 +11508,7 @@ fi fi done - echo "$as_me:11408: checking for main in -linet" >&5 + echo "$as_me:11511: 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 @@ -11413,7 +11516,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-linet $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 11416 "configure" +#line 11519 "configure" #include "confdefs.h" int @@ -11425,16 +11528,16 @@ main (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:11428: \"$ac_link\"") >&5 +if { (eval echo "$as_me:11531: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:11431: \$? = $ac_status" >&5 + echo "$as_me:11534: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:11434: \"$ac_try\"") >&5 + { (eval echo "$as_me:11537: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:11437: \$? = $ac_status" >&5 + echo "$as_me:11540: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_inet_main=yes else @@ -11445,7 +11548,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:11448: result: $ac_cv_lib_inet_main" >&5 +echo "$as_me:11551: 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" @@ -11456,13 +11559,13 @@ fi for ac_func in socket do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` -echo "$as_me:11459: checking for $ac_func" >&5 +echo "$as_me:11562: 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 11465 "configure" +#line 11568 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. */ @@ -11493,16 +11596,16 @@ f = $ac_func; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:11496: \"$ac_link\"") >&5 +if { (eval echo "$as_me:11599: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:11499: \$? = $ac_status" >&5 + echo "$as_me:11602: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:11502: \"$ac_try\"") >&5 + { (eval echo "$as_me:11605: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:11505: \$? = $ac_status" >&5 + echo "$as_me:11608: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else @@ -11512,7 +11615,7 @@ eval "$as_ac_var=no" fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:11515: result: `eval echo '${'$as_ac_var'}'`" >&5 +echo "$as_me:11618: 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 @@ -11521,7 +11624,7 @@ EOF else -echo "$as_me:11524: checking for socket in -lsocket" >&5 +echo "$as_me:11627: 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 @@ -11529,7 +11632,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lsocket $cf_cv_netlibs $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 11532 "configure" +#line 11635 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -11548,16 +11651,16 @@ socket (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:11551: \"$ac_link\"") >&5 +if { (eval echo "$as_me:11654: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:11554: \$? = $ac_status" >&5 + echo "$as_me:11657: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:11557: \"$ac_try\"") >&5 + { (eval echo "$as_me:11660: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:11560: \$? = $ac_status" >&5 + echo "$as_me:11663: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_socket_socket=yes else @@ -11568,7 +11671,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:11571: result: $ac_cv_lib_socket_socket" >&5 +echo "$as_me:11674: 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 @@ -11585,7 +11688,7 @@ else ac_cv_func_socket=unknown unset ac_cv_func_socket 2>/dev/null -echo "$as_me:11588: checking for socket in -lbsd" >&5 +echo "$as_me:11691: 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 @@ -11593,7 +11696,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lbsd $cf_cv_netlibs $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 11596 "configure" +#line 11699 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -11612,16 +11715,16 @@ socket (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:11615: \"$ac_link\"") >&5 +if { (eval echo "$as_me:11718: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:11618: \$? = $ac_status" >&5 + echo "$as_me:11721: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:11621: \"$ac_try\"") >&5 + { (eval echo "$as_me:11724: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:11624: \$? = $ac_status" >&5 + echo "$as_me:11727: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_bsd_socket=yes else @@ -11632,7 +11735,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:11635: result: $ac_cv_lib_bsd_socket" >&5 +echo "$as_me:11738: 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 @@ -11661,13 +11764,13 @@ done for ac_func in gethostbyname do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` -echo "$as_me:11664: checking for $ac_func" >&5 +echo "$as_me:11767: 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 11670 "configure" +#line 11773 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. */ @@ -11698,16 +11801,16 @@ f = $ac_func; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:11701: \"$ac_link\"") >&5 +if { (eval echo "$as_me:11804: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:11704: \$? = $ac_status" >&5 + echo "$as_me:11807: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:11707: \"$ac_try\"") >&5 + { (eval echo "$as_me:11810: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:11710: \$? = $ac_status" >&5 + echo "$as_me:11813: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else @@ -11717,7 +11820,7 @@ eval "$as_ac_var=no" fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:11720: result: `eval echo '${'$as_ac_var'}'`" >&5 +echo "$as_me:11823: 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 @@ -11726,7 +11829,7 @@ EOF else -echo "$as_me:11729: checking for gethostbyname in -lnsl" >&5 +echo "$as_me:11832: 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 @@ -11734,7 +11837,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lnsl $cf_cv_netlibs $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 11737 "configure" +#line 11840 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -11753,16 +11856,16 @@ gethostbyname (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:11756: \"$ac_link\"") >&5 +if { (eval echo "$as_me:11859: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:11759: \$? = $ac_status" >&5 + echo "$as_me:11862: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:11762: \"$ac_try\"") >&5 + { (eval echo "$as_me:11865: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:11765: \$? = $ac_status" >&5 + echo "$as_me:11868: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_nsl_gethostbyname=yes else @@ -11773,7 +11876,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:11776: result: $ac_cv_lib_nsl_gethostbyname" >&5 +echo "$as_me:11879: 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 @@ -11795,16 +11898,153 @@ fi fi done +for ac_func in inet_ntoa +do +as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` +echo "$as_me:11904: 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 11910 "configure" +#include "confdefs.h" +/* System header to define __stub macros and hopefully few prototypes, + which can conflict with char $ac_func (); below. */ +#include <assert.h> +/* Override any gcc2 internal prototype to avoid an error. */ +#ifdef __cplusplus +extern "C" +#endif +/* We use char because int might match the return type of a gcc2 + builtin and then its argument prototype would still apply. */ +char $ac_func (); +char (*f) (); + +int +main () +{ +/* The GNU C library defines this for functions which it implements + to always fail with ENOSYS. Some functions are actually named + something starting with __ and the normal name is an alias. */ +#if defined (__stub_$ac_func) || defined (__stub___$ac_func) +choke me +#else +f = $ac_func; +#endif + + ; + return 0; +} +_ACEOF +rm -f conftest.$ac_objext conftest$ac_exeext +if { (eval echo "$as_me:11941: \"$ac_link\"") >&5 + (eval $ac_link) 2>&5 + ac_status=$? + echo "$as_me:11944: \$? = $ac_status" >&5 + (exit $ac_status); } && + { ac_try='test -s conftest$ac_exeext' + { (eval echo "$as_me:11947: \"$ac_try\"") >&5 + (eval $ac_try) 2>&5 + ac_status=$? + echo "$as_me:11950: \$? = $ac_status" >&5 + (exit $ac_status); }; }; then + eval "$as_ac_var=yes" +else + echo "$as_me: failed program was:" >&5 +cat conftest.$ac_ext >&5 +eval "$as_ac_var=no" +fi +rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext +fi +echo "$as_me:11960: result: `eval echo '${'$as_ac_var'}'`" >&5 +echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6 +if test `eval echo '${'$as_ac_var'}'` = yes; then + cat >>confdefs.h <<EOF +#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 +EOF + +else + +echo "$as_me:11969: checking for inet_ntoa in -lnsl" >&5 +echo $ECHO_N "checking for inet_ntoa in -lnsl... $ECHO_C" >&6 +if test "${ac_cv_lib_nsl_inet_ntoa+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + ac_check_lib_save_LIBS=$LIBS +LIBS="-lnsl $cf_cv_netlibs $LIBS" +cat >conftest.$ac_ext <<_ACEOF +#line 11977 "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 inet_ntoa (); +int +main () +{ +inet_ntoa (); + ; + return 0; +} +_ACEOF +rm -f conftest.$ac_objext conftest$ac_exeext +if { (eval echo "$as_me:11996: \"$ac_link\"") >&5 + (eval $ac_link) 2>&5 + ac_status=$? + echo "$as_me:11999: \$? = $ac_status" >&5 + (exit $ac_status); } && + { ac_try='test -s conftest$ac_exeext' + { (eval echo "$as_me:12002: \"$ac_try\"") >&5 + (eval $ac_try) 2>&5 + ac_status=$? + echo "$as_me:12005: \$? = $ac_status" >&5 + (exit $ac_status); }; }; then + ac_cv_lib_nsl_inet_ntoa=yes +else + echo "$as_me: failed program was:" >&5 +cat conftest.$ac_ext >&5 +ac_cv_lib_nsl_inet_ntoa=no +fi +rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext +LIBS=$ac_check_lib_save_LIBS +fi +echo "$as_me:12016: result: $ac_cv_lib_nsl_inet_ntoa" >&5 +echo "${ECHO_T}$ac_cv_lib_nsl_inet_ntoa" >&6 +if test $ac_cv_lib_nsl_inet_ntoa = yes; then + +cf_tr_func=`echo "inet_ntoa" | sed y%abcdefghijklmnopqrstuvwxyz./-%ABCDEFGHIJKLMNOPQRSTUVWXYZ___%` + + cat >>confdefs.h <<EOF +#define HAVE_$cf_tr_func 1 +EOF + + ac_cv_func_inet_ntoa=yes + if test "$cf_used_lib_nsl" != yes ; then cf_used_lib_nsl=yes; cf_cv_netlibs="-lnsl $cf_cv_netlibs"; fi +else + + ac_cv_func_inet_ntoa=unknown + unset ac_cv_func_inet_ntoa 2>/dev/null + +fi + +fi +done + for ac_func in gethostbyname do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` -echo "$as_me:11801: checking for $ac_func" >&5 +echo "$as_me:12041: 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 11807 "configure" +#line 12047 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. */ @@ -11835,16 +12075,16 @@ f = $ac_func; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:11838: \"$ac_link\"") >&5 +if { (eval echo "$as_me:12078: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:11841: \$? = $ac_status" >&5 + echo "$as_me:12081: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:11844: \"$ac_try\"") >&5 + { (eval echo "$as_me:12084: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:11847: \$? = $ac_status" >&5 + echo "$as_me:12087: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else @@ -11854,7 +12094,7 @@ eval "$as_ac_var=no" fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:11857: result: `eval echo '${'$as_ac_var'}'`" >&5 +echo "$as_me:12097: 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 @@ -11863,7 +12103,7 @@ EOF else -echo "$as_me:11866: checking for gethostbyname in -lnetwork" >&5 +echo "$as_me:12106: 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 @@ -11871,7 +12111,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lnetwork $cf_cv_netlibs $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 11874 "configure" +#line 12114 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -11890,16 +12130,16 @@ gethostbyname (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:11893: \"$ac_link\"") >&5 +if { (eval echo "$as_me:12133: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:11896: \$? = $ac_status" >&5 + echo "$as_me:12136: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:11899: \"$ac_try\"") >&5 + { (eval echo "$as_me:12139: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:11902: \$? = $ac_status" >&5 + echo "$as_me:12142: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_network_gethostbyname=yes else @@ -11910,7 +12150,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:11913: result: $ac_cv_lib_network_gethostbyname" >&5 +echo "$as_me:12153: 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 @@ -11935,13 +12175,13 @@ done for ac_func in strcasecmp do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` -echo "$as_me:11938: checking for $ac_func" >&5 +echo "$as_me:12178: 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 11944 "configure" +#line 12184 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. */ @@ -11972,16 +12212,16 @@ f = $ac_func; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:11975: \"$ac_link\"") >&5 +if { (eval echo "$as_me:12215: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:11978: \$? = $ac_status" >&5 + echo "$as_me:12218: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:11981: \"$ac_try\"") >&5 + { (eval echo "$as_me:12221: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:11984: \$? = $ac_status" >&5 + echo "$as_me:12224: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else @@ -11991,7 +12231,7 @@ eval "$as_ac_var=no" fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:11994: result: `eval echo '${'$as_ac_var'}'`" >&5 +echo "$as_me:12234: 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 @@ -12000,7 +12240,7 @@ EOF else -echo "$as_me:12003: checking for strcasecmp in -lresolv" >&5 +echo "$as_me:12243: 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 @@ -12008,7 +12248,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lresolv $cf_cv_netlibs $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 12011 "configure" +#line 12251 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -12027,16 +12267,16 @@ strcasecmp (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:12030: \"$ac_link\"") >&5 +if { (eval echo "$as_me:12270: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:12033: \$? = $ac_status" >&5 + echo "$as_me:12273: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:12036: \"$ac_try\"") >&5 + { (eval echo "$as_me:12276: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:12039: \$? = $ac_status" >&5 + echo "$as_me:12279: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_resolv_strcasecmp=yes else @@ -12047,7 +12287,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:12050: result: $ac_cv_lib_resolv_strcasecmp" >&5 +echo "$as_me:12290: 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 @@ -12088,14 +12328,14 @@ test $cf_test_netlibs = no && echo "$cf_cv_netlibs" >&6 fi -echo "$as_me:12091: checking for inet_aton function" >&5 +echo "$as_me:12331: 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 12098 "configure" +#line 12338 "configure" #include "confdefs.h" #include <sys/types.h> #include <sys/socket.h> @@ -12111,16 +12351,16 @@ inet_aton(0, (struct in_addr *)0) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:12114: \"$ac_link\"") >&5 +if { (eval echo "$as_me:12354: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:12117: \$? = $ac_status" >&5 + echo "$as_me:12357: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:12120: \"$ac_try\"") >&5 + { (eval echo "$as_me:12360: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:12123: \$? = $ac_status" >&5 + echo "$as_me:12363: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_have_inet_aton=yes else @@ -12130,7 +12370,7 @@ cf_cv_have_inet_aton=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:12133: result: $cf_cv_have_inet_aton" >&5 +echo "$as_me:12373: 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 @@ -12138,14 +12378,14 @@ if test "$cf_cv_have_inet_aton" = yes ; then EOF else - echo "$as_me:12141: checking for inet_addr function" >&5 + echo "$as_me:12381: 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 12148 "configure" +#line 12388 "configure" #include "confdefs.h" #include <sys/types.h> #include <sys/socket.h> @@ -12161,16 +12401,16 @@ inet_addr(0) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:12164: \"$ac_link\"") >&5 +if { (eval echo "$as_me:12404: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:12167: \$? = $ac_status" >&5 + echo "$as_me:12407: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:12170: \"$ac_try\"") >&5 + { (eval echo "$as_me:12410: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:12173: \$? = $ac_status" >&5 + echo "$as_me:12413: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_have_inet_addr=yes else @@ -12180,10 +12420,10 @@ cf_cv_have_inet_addr=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:12183: result: $cf_cv_have_inet_addr" >&5 +echo "$as_me:12423: 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:12186: checking for library with inet_addr" >&5 + echo "$as_me:12426: 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 @@ -12194,7 +12434,7 @@ else do LIBS="$cf_save_LIBS $cf_inetlib" cat >conftest.$ac_ext <<_ACEOF -#line 12197 "configure" +#line 12437 "configure" #include "confdefs.h" #include <sys/types.h> #include <sys/socket.h> @@ -12210,16 +12450,16 @@ inet_addr(0) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:12213: \"$ac_link\"") >&5 +if { (eval echo "$as_me:12453: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:12216: \$? = $ac_status" >&5 + echo "$as_me:12456: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:12219: \"$ac_try\"") >&5 + { (eval echo "$as_me:12459: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:12222: \$? = $ac_status" >&5 + echo "$as_me:12462: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_lib_inet_addr=$cf_inetlib else @@ -12233,18 +12473,18 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext done fi -echo "$as_me:12236: result: $cf_cv_lib_inet_addr" >&5 +echo "$as_me:12476: result: $cf_cv_lib_inet_addr" >&5 echo "${ECHO_T}$cf_cv_lib_inet_addr" >&6 if test "$cf_cv_lib_inet_addr" != no ; then LIBS="$cf_cv_lib_inet_addr $LIBS" else - { echo "$as_me:12241: WARNING: Unable to find library for inet_addr function" >&5 + { echo "$as_me:12481: 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:12247: checking if you want to use pkg-config" >&5 +echo "$as_me:12487: 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. @@ -12254,7 +12494,7 @@ if test "${with_pkg_config+set}" = set; then else cf_pkg_config=yes fi; -echo "$as_me:12257: result: $cf_pkg_config" >&5 +echo "$as_me:12497: result: $cf_pkg_config" >&5 echo "${ECHO_T}$cf_pkg_config" >&6 case $cf_pkg_config in #(vi @@ -12266,7 +12506,7 @@ yes) #(vi if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}pkg-config", so it can be a program name with args. set dummy ${ac_tool_prefix}pkg-config; ac_word=$2 -echo "$as_me:12269: checking for $ac_word" >&5 +echo "$as_me:12509: 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 @@ -12283,7 +12523,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:12286: found $ac_dir/$ac_word" >&5 + echo "$as_me:12526: found $ac_dir/$ac_word" >&5 break fi done @@ -12294,10 +12534,10 @@ fi PKG_CONFIG=$ac_cv_path_PKG_CONFIG if test -n "$PKG_CONFIG"; then - echo "$as_me:12297: result: $PKG_CONFIG" >&5 + echo "$as_me:12537: result: $PKG_CONFIG" >&5 echo "${ECHO_T}$PKG_CONFIG" >&6 else - echo "$as_me:12300: result: no" >&5 + echo "$as_me:12540: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -12306,7 +12546,7 @@ if test -z "$ac_cv_path_PKG_CONFIG"; then ac_pt_PKG_CONFIG=$PKG_CONFIG # Extract the first word of "pkg-config", so it can be a program name with args. set dummy pkg-config; ac_word=$2 -echo "$as_me:12309: checking for $ac_word" >&5 +echo "$as_me:12549: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_path_ac_pt_PKG_CONFIG+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -12323,7 +12563,7 @@ for ac_dir in $ac_dummy; do test -z "$ac_dir" && ac_dir=. if $as_executable_p "$ac_dir/$ac_word"; then ac_cv_path_ac_pt_PKG_CONFIG="$ac_dir/$ac_word" - echo "$as_me:12326: found $ac_dir/$ac_word" >&5 + echo "$as_me:12566: found $ac_dir/$ac_word" >&5 break fi done @@ -12335,10 +12575,10 @@ fi ac_pt_PKG_CONFIG=$ac_cv_path_ac_pt_PKG_CONFIG if test -n "$ac_pt_PKG_CONFIG"; then - echo "$as_me:12338: result: $ac_pt_PKG_CONFIG" >&5 + echo "$as_me:12578: result: $ac_pt_PKG_CONFIG" >&5 echo "${ECHO_T}$ac_pt_PKG_CONFIG" >&6 else - echo "$as_me:12341: result: no" >&5 + echo "$as_me:12581: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -12381,7 +12621,7 @@ case ".$PKG_CONFIG" in #(vi PKG_CONFIG=`echo $PKG_CONFIG | sed -e s%NONE%$cf_path_syntax%` ;; *) - { { echo "$as_me:12384: error: expected a pathname, not \"$PKG_CONFIG\"" >&5 + { { echo "$as_me:12624: error: expected a pathname, not \"$PKG_CONFIG\"" >&5 echo "$as_me: error: expected a pathname, not \"$PKG_CONFIG\"" >&2;} { (exit 1); exit 1; }; } ;; @@ -12430,7 +12670,7 @@ if test -n "$cf_searchpath/include" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 12433 "configure" +#line 12673 "configure" #include "confdefs.h" #include <stdio.h> int @@ -12442,16 +12682,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:12445: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:12685: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:12448: \$? = $ac_status" >&5 + echo "$as_me:12688: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:12451: \"$ac_try\"") >&5 + { (eval echo "$as_me:12691: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:12454: \$? = $ac_status" >&5 + echo "$as_me:12694: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -12468,7 +12708,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}:12471: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:12711: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -12509,7 +12749,7 @@ if test -n "$cf_searchpath/../include" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 12512 "configure" +#line 12752 "configure" #include "confdefs.h" #include <stdio.h> int @@ -12521,16 +12761,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:12524: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:12764: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:12527: \$? = $ac_status" >&5 + echo "$as_me:12767: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:12530: \"$ac_try\"") >&5 + { (eval echo "$as_me:12770: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:12533: \$? = $ac_status" >&5 + echo "$as_me:12773: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -12547,7 +12787,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}:12550: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:12790: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -12563,7 +12803,7 @@ echo "${as_me:-configure}:12550: testing adding $cf_add_incdir to include-path . fi else -{ { echo "$as_me:12566: error: cannot find ssl library under $cf_cv_use_libssl" >&5 +{ { echo "$as_me:12806: 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 @@ -12588,7 +12828,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}:12591: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:12831: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -12617,7 +12857,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}:12620: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:12860: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -12626,7 +12866,7 @@ echo "${as_me:-configure}:12620: testing adding $cf_add_libdir to library-path . fi else -{ { echo "$as_me:12629: error: cannot find ssl library under $cf_cv_use_libssl" >&5 +{ { echo "$as_me:12869: 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 @@ -12757,7 +12997,7 @@ fi esac test -n "$verbose" && echo " adding $cf_libs_ssl to LIBS" 1>&6 -echo "${as_me:-configure}:12760: testing adding $cf_libs_ssl to LIBS ..." 1>&5 +echo "${as_me:-configure}:13000: testing adding $cf_libs_ssl to LIBS ..." 1>&5 LIBS="$cf_libs_ssl $LIBS" fi @@ -12778,7 +13018,7 @@ echo "${as_me:-configure}:12760: testing adding $cf_libs_ssl to LIBS ..." 1>&5 *-ldl) #(vi ;; *) - echo "$as_me:12781: checking for dlsym in -ldl" >&5 + echo "$as_me:13021: 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 @@ -12786,7 +13026,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-ldl $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 12789 "configure" +#line 13029 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -12805,16 +13045,16 @@ dlsym (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:12808: \"$ac_link\"") >&5 +if { (eval echo "$as_me:13048: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:12811: \$? = $ac_status" >&5 + echo "$as_me:13051: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:12814: \"$ac_try\"") >&5 + { (eval echo "$as_me:13054: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:12817: \$? = $ac_status" >&5 + echo "$as_me:13057: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_dl_dlsym=yes else @@ -12825,7 +13065,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:12828: result: $ac_cv_lib_dl_dlsym" >&5 +echo "$as_me:13068: 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" @@ -12841,12 +13081,12 @@ fi cf_cv_header_path_ssl= cf_cv_library_path_ssl= -echo "${as_me:-configure}:12844: testing Starting FIND_LINKAGE(ssl,openssl) ..." 1>&5 +echo "${as_me:-configure}:13084: testing Starting FIND_LINKAGE(ssl,openssl) ..." 1>&5 cf_save_LIBS="$LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 12849 "configure" +#line 13089 "configure" #include "confdefs.h" #include <stdio.h> @@ -12875,16 +13115,16 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:12878: \"$ac_link\"") >&5 +if { (eval echo "$as_me:13118: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:12881: \$? = $ac_status" >&5 + echo "$as_me:13121: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:12884: \"$ac_try\"") >&5 + { (eval echo "$as_me:13124: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:12887: \$? = $ac_status" >&5 + echo "$as_me:13127: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_find_linkage_ssl=yes @@ -12898,7 +13138,7 @@ cat conftest.$ac_ext >&5 LIBS="-lssl $cf_extra_ssl_libs $cf_save_LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 12901 "configure" +#line 13141 "configure" #include "confdefs.h" #include <stdio.h> @@ -12927,16 +13167,16 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:12930: \"$ac_link\"") >&5 +if { (eval echo "$as_me:13170: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:12933: \$? = $ac_status" >&5 + echo "$as_me:13173: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:12936: \"$ac_try\"") >&5 + { (eval echo "$as_me:13176: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:12939: \$? = $ac_status" >&5 + echo "$as_me:13179: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_find_linkage_ssl=yes @@ -12953,9 +13193,9 @@ cat conftest.$ac_ext >&5 test -n "$verbose" && echo " find linkage for ssl library" 1>&6 -echo "${as_me:-configure}:12956: testing find linkage for ssl library ..." 1>&5 +echo "${as_me:-configure}:13196: testing find linkage for ssl library ..." 1>&5 -echo "${as_me:-configure}:12958: testing Searching for headers in FIND_LINKAGE(ssl,openssl) ..." 1>&5 +echo "${as_me:-configure}:13198: testing Searching for headers in FIND_LINKAGE(ssl,openssl) ..." 1>&5 cf_save_CPPFLAGS="$CPPFLAGS" cf_test_CPPFLAGS="$CPPFLAGS" @@ -13068,11 +13308,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}:13071: testing ... testing $cf_cv_header_path_ssl ..." 1>&5 +echo "${as_me:-configure}:13311: 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 13075 "configure" +#line 13315 "configure" #include "confdefs.h" #include <stdio.h> @@ -13101,21 +13341,21 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:13104: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:13344: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:13107: \$? = $ac_status" >&5 + echo "$as_me:13347: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:13110: \"$ac_try\"") >&5 + { (eval echo "$as_me:13350: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:13113: \$? = $ac_status" >&5 + echo "$as_me:13353: \$? = $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}:13118: testing ... found ssl headers in $cf_cv_header_path_ssl ..." 1>&5 +echo "${as_me:-configure}:13358: testing ... found ssl headers in $cf_cv_header_path_ssl ..." 1>&5 cf_cv_find_linkage_ssl=maybe cf_test_CPPFLAGS="$CPPFLAGS" @@ -13133,7 +13373,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "$cf_cv_find_linkage_ssl" = maybe ; then -echo "${as_me:-configure}:13136: testing Searching for ssl library in FIND_LINKAGE(ssl,openssl) ..." 1>&5 +echo "${as_me:-configure}:13376: testing Searching for ssl library in FIND_LINKAGE(ssl,openssl) ..." 1>&5 cf_save_LIBS="$LIBS" cf_save_LDFLAGS="$LDFLAGS" @@ -13141,7 +13381,7 @@ echo "${as_me:-configure}:13136: testing Searching for ssl library in FIND_LINKA CPPFLAGS="$cf_test_CPPFLAGS" LIBS="-lssl $cf_extra_ssl_libs $cf_save_LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 13144 "configure" +#line 13384 "configure" #include "confdefs.h" #include <stdio.h> @@ -13170,21 +13410,21 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:13173: \"$ac_link\"") >&5 +if { (eval echo "$as_me:13413: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:13176: \$? = $ac_status" >&5 + echo "$as_me:13416: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:13179: \"$ac_try\"") >&5 + { (eval echo "$as_me:13419: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:13182: \$? = $ac_status" >&5 + echo "$as_me:13422: \$? = $ac_status" >&5 (exit $ac_status); }; }; then test -n "$verbose" && echo " ... found ssl library in system" 1>&6 -echo "${as_me:-configure}:13187: testing ... found ssl library in system ..." 1>&5 +echo "${as_me:-configure}:13427: testing ... found ssl library in system ..." 1>&5 cf_cv_find_linkage_ssl=yes else @@ -13287,13 +13527,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}:13290: testing ... testing $cf_cv_library_path_ssl ..." 1>&5 +echo "${as_me:-configure}:13530: 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 13296 "configure" +#line 13536 "configure" #include "confdefs.h" #include <stdio.h> @@ -13322,21 +13562,21 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:13325: \"$ac_link\"") >&5 +if { (eval echo "$as_me:13565: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:13328: \$? = $ac_status" >&5 + echo "$as_me:13568: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:13331: \"$ac_try\"") >&5 + { (eval echo "$as_me:13571: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:13334: \$? = $ac_status" >&5 + echo "$as_me:13574: \$? = $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}:13339: testing ... found ssl library in $cf_cv_library_path_ssl ..." 1>&5 +echo "${as_me:-configure}:13579: testing ... found ssl library in $cf_cv_library_path_ssl ..." 1>&5 cf_cv_find_linkage_ssl=yes cf_cv_library_file_ssl="-lssl" @@ -13398,7 +13638,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}:13401: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:13641: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -13438,7 +13678,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 13441 "configure" +#line 13681 "configure" #include "confdefs.h" #include <stdio.h> int @@ -13450,16 +13690,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:13453: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:13693: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:13456: \$? = $ac_status" >&5 + echo "$as_me:13696: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:13459: \"$ac_try\"") >&5 + { (eval echo "$as_me:13699: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:13462: \$? = $ac_status" >&5 + echo "$as_me:13702: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -13476,7 +13716,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}:13479: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:13719: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -13514,10 +13754,10 @@ EOF esac fi -echo "$as_me:13517: checking for X509 support" >&5 +echo "$as_me:13757: checking for X509 support" >&5 echo $ECHO_N "checking for X509 support... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF -#line 13520 "configure" +#line 13760 "configure" #include "confdefs.h" #include <stdio.h> @@ -13541,16 +13781,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:13544: \"$ac_link\"") >&5 +if { (eval echo "$as_me:13784: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:13547: \$? = $ac_status" >&5 + echo "$as_me:13787: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:13550: \"$ac_try\"") >&5 + { (eval echo "$as_me:13790: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:13553: \$? = $ac_status" >&5 + echo "$as_me:13793: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_x509_support=yes else @@ -13559,7 +13799,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:13562: result: $cf_x509_support" >&5 +echo "$as_me:13802: result: $cf_x509_support" >&5 echo "${ECHO_T}$cf_x509_support" >&6 if test "$cf_x509_support" = yes ; then @@ -13611,7 +13851,7 @@ if test -n "$cf_searchpath/include" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 13614 "configure" +#line 13854 "configure" #include "confdefs.h" #include <stdio.h> int @@ -13623,16 +13863,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:13626: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:13866: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:13629: \$? = $ac_status" >&5 + echo "$as_me:13869: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:13632: \"$ac_try\"") >&5 + { (eval echo "$as_me:13872: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:13635: \$? = $ac_status" >&5 + echo "$as_me:13875: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -13649,7 +13889,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}:13652: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:13892: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -13690,7 +13930,7 @@ if test -n "$cf_searchpath/../include" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 13693 "configure" +#line 13933 "configure" #include "confdefs.h" #include <stdio.h> int @@ -13702,16 +13942,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:13705: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:13945: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:13708: \$? = $ac_status" >&5 + echo "$as_me:13948: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:13711: \"$ac_try\"") >&5 + { (eval echo "$as_me:13951: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:13714: \$? = $ac_status" >&5 + echo "$as_me:13954: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -13728,7 +13968,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}:13731: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:13971: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -13744,7 +13984,7 @@ echo "${as_me:-configure}:13731: testing adding $cf_add_incdir to include-path . fi else -{ { echo "$as_me:13747: error: cannot find ssl library under $cf_cv_use_libgnutls" >&5 +{ { echo "$as_me:13987: 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 @@ -13769,7 +14009,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}:13772: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:14012: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -13798,7 +14038,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}:13801: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:14041: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -13807,7 +14047,7 @@ echo "${as_me:-configure}:13801: testing adding $cf_add_libdir to library-path . fi else -{ { echo "$as_me:13810: error: cannot find ssl library under $cf_cv_use_libgnutls" >&5 +{ { echo "$as_me:14050: 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 @@ -13825,12 +14065,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}:13828: testing checking pkg-config for $cf_pkg_gnutls ..." 1>&5 +echo "${as_me:-configure}:14068: 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}:13833: testing ... found $cf_pkg_gnutls in pkg-config ..." 1>&5 +echo "${as_me:-configure}:14073: testing ... found $cf_pkg_gnutls in pkg-config ..." 1>&5 cf_cv_have_gnutls=yes cf_cv_pkg_config_ssl=yes @@ -13942,14 +14182,14 @@ fi esac test -n "$verbose" && echo " adding $cf_libs_ssl to LIBS" 1>&6 -echo "${as_me:-configure}:13945: testing adding $cf_libs_ssl to LIBS ..." 1>&5 +echo "${as_me:-configure}:14185: 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}:13952: testing ... did not find $cf_pkg_gnutls in pkg-config ..." 1>&5 +echo "${as_me:-configure}:14192: testing ... did not find $cf_pkg_gnutls in pkg-config ..." 1>&5 cf_pkg_gnutls=none fi @@ -13969,12 +14209,12 @@ EOF cf_cv_header_path_gnutls= cf_cv_library_path_gnutls= -echo "${as_me:-configure}:13972: testing Starting FIND_LINKAGE(gnutls,) ..." 1>&5 +echo "${as_me:-configure}:14212: testing Starting FIND_LINKAGE(gnutls,) ..." 1>&5 cf_save_LIBS="$LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 13977 "configure" +#line 14217 "configure" #include "confdefs.h" #include <stdio.h> @@ -14003,16 +14243,16 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:14006: \"$ac_link\"") >&5 +if { (eval echo "$as_me:14246: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:14009: \$? = $ac_status" >&5 + echo "$as_me:14249: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:14012: \"$ac_try\"") >&5 + { (eval echo "$as_me:14252: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:14015: \$? = $ac_status" >&5 + echo "$as_me:14255: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_find_linkage_gnutls=yes @@ -14026,7 +14266,7 @@ cat conftest.$ac_ext >&5 LIBS="-lgnutls -lgnutls -lgcrypt $cf_save_LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 14029 "configure" +#line 14269 "configure" #include "confdefs.h" #include <stdio.h> @@ -14055,16 +14295,16 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:14058: \"$ac_link\"") >&5 +if { (eval echo "$as_me:14298: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:14061: \$? = $ac_status" >&5 + echo "$as_me:14301: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:14064: \"$ac_try\"") >&5 + { (eval echo "$as_me:14304: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:14067: \$? = $ac_status" >&5 + echo "$as_me:14307: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_find_linkage_gnutls=yes @@ -14081,9 +14321,9 @@ cat conftest.$ac_ext >&5 test -n "$verbose" && echo " find linkage for gnutls library" 1>&6 -echo "${as_me:-configure}:14084: testing find linkage for gnutls library ..." 1>&5 +echo "${as_me:-configure}:14324: testing find linkage for gnutls library ..." 1>&5 -echo "${as_me:-configure}:14086: testing Searching for headers in FIND_LINKAGE(gnutls,) ..." 1>&5 +echo "${as_me:-configure}:14326: testing Searching for headers in FIND_LINKAGE(gnutls,) ..." 1>&5 cf_save_CPPFLAGS="$CPPFLAGS" cf_test_CPPFLAGS="$CPPFLAGS" @@ -14196,11 +14436,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}:14199: testing ... testing $cf_cv_header_path_gnutls ..." 1>&5 +echo "${as_me:-configure}:14439: 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 14203 "configure" +#line 14443 "configure" #include "confdefs.h" #include <stdio.h> @@ -14229,21 +14469,21 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:14232: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:14472: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:14235: \$? = $ac_status" >&5 + echo "$as_me:14475: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:14238: \"$ac_try\"") >&5 + { (eval echo "$as_me:14478: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:14241: \$? = $ac_status" >&5 + echo "$as_me:14481: \$? = $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}:14246: testing ... found gnutls headers in $cf_cv_header_path_gnutls ..." 1>&5 +echo "${as_me:-configure}:14486: testing ... found gnutls headers in $cf_cv_header_path_gnutls ..." 1>&5 cf_cv_find_linkage_gnutls=maybe cf_test_CPPFLAGS="$CPPFLAGS" @@ -14261,7 +14501,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "$cf_cv_find_linkage_gnutls" = maybe ; then -echo "${as_me:-configure}:14264: testing Searching for gnutls library in FIND_LINKAGE(gnutls,) ..." 1>&5 +echo "${as_me:-configure}:14504: testing Searching for gnutls library in FIND_LINKAGE(gnutls,) ..." 1>&5 cf_save_LIBS="$LIBS" cf_save_LDFLAGS="$LDFLAGS" @@ -14358,13 +14598,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}:14361: testing ... testing $cf_cv_library_path_gnutls ..." 1>&5 +echo "${as_me:-configure}:14601: 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 14367 "configure" +#line 14607 "configure" #include "confdefs.h" #include <stdio.h> @@ -14393,21 +14633,21 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:14396: \"$ac_link\"") >&5 +if { (eval echo "$as_me:14636: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:14399: \$? = $ac_status" >&5 + echo "$as_me:14639: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:14402: \"$ac_try\"") >&5 + { (eval echo "$as_me:14642: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:14405: \$? = $ac_status" >&5 + echo "$as_me:14645: \$? = $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}:14410: testing ... found gnutls library in $cf_cv_library_path_gnutls ..." 1>&5 +echo "${as_me:-configure}:14650: testing ... found gnutls library in $cf_cv_library_path_gnutls ..." 1>&5 cf_cv_find_linkage_gnutls=yes cf_cv_library_file_gnutls="-lgnutls" @@ -14484,7 +14724,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 14487 "configure" +#line 14727 "configure" #include "confdefs.h" #include <stdio.h> int @@ -14496,16 +14736,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:14499: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:14739: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:14502: \$? = $ac_status" >&5 + echo "$as_me:14742: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:14505: \"$ac_try\"") >&5 + { (eval echo "$as_me:14745: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:14508: \$? = $ac_status" >&5 + echo "$as_me:14748: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -14522,7 +14762,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}:14525: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:14765: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -14561,7 +14801,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}:14564: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:14804: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -14574,10 +14814,10 @@ fi EXTRA_OBJS="$EXTRA_OBJS tidy_tls\$o" -echo "$as_me:14577: checking for X509 support" >&5 +echo "$as_me:14817: checking for X509 support" >&5 echo $ECHO_N "checking for X509 support... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF -#line 14580 "configure" +#line 14820 "configure" #include "confdefs.h" #include <stdio.h> @@ -14601,16 +14841,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:14604: \"$ac_link\"") >&5 +if { (eval echo "$as_me:14844: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:14607: \$? = $ac_status" >&5 + echo "$as_me:14847: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:14610: \"$ac_try\"") >&5 + { (eval echo "$as_me:14850: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:14613: \$? = $ac_status" >&5 + echo "$as_me:14853: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_x509_support=yes else @@ -14619,7 +14859,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:14622: result: $cf_x509_support" >&5 +echo "$as_me:14862: result: $cf_x509_support" >&5 echo "${ECHO_T}$cf_x509_support" >&6 if test "$cf_x509_support" = yes ; then @@ -14634,13 +14874,13 @@ fi for ac_func in gnutls_priority_set_direct do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` -echo "$as_me:14637: checking for $ac_func" >&5 +echo "$as_me:14877: 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 14643 "configure" +#line 14883 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. */ @@ -14671,16 +14911,16 @@ f = $ac_func; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:14674: \"$ac_link\"") >&5 +if { (eval echo "$as_me:14914: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:14677: \$? = $ac_status" >&5 + echo "$as_me:14917: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:14680: \"$ac_try\"") >&5 + { (eval echo "$as_me:14920: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:14683: \$? = $ac_status" >&5 + echo "$as_me:14923: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else @@ -14690,7 +14930,7 @@ eval "$as_ac_var=no" fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:14693: result: `eval echo '${'$as_ac_var'}'`" >&5 +echo "$as_me:14933: 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 @@ -14739,7 +14979,7 @@ if test -n "$cf_searchpath/include" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 14742 "configure" +#line 14982 "configure" #include "confdefs.h" #include <stdio.h> int @@ -14751,16 +14991,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:14754: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:14994: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:14757: \$? = $ac_status" >&5 + echo "$as_me:14997: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:14760: \"$ac_try\"") >&5 + { (eval echo "$as_me:15000: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:14763: \$? = $ac_status" >&5 + echo "$as_me:15003: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -14777,7 +15017,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}:14780: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:15020: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -14818,7 +15058,7 @@ if test -n "$cf_searchpath/../include" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 14821 "configure" +#line 15061 "configure" #include "confdefs.h" #include <stdio.h> int @@ -14830,16 +15070,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:14833: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:15073: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:14836: \$? = $ac_status" >&5 + echo "$as_me:15076: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:14839: \"$ac_try\"") >&5 + { (eval echo "$as_me:15079: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:14842: \$? = $ac_status" >&5 + echo "$as_me:15082: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -14856,7 +15096,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}:14859: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:15099: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -14872,7 +15112,7 @@ echo "${as_me:-configure}:14859: testing adding $cf_add_incdir to include-path . fi else -{ { echo "$as_me:14875: error: cannot find ssl library under $cf_cv_use_libgnutls" >&5 +{ { echo "$as_me:15115: 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 @@ -14897,7 +15137,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}:14900: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:15140: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -14926,7 +15166,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}:14929: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:15169: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -14935,7 +15175,7 @@ echo "${as_me:-configure}:14929: testing adding $cf_add_libdir to library-path . fi else -{ { echo "$as_me:14938: error: cannot find ssl library under $cf_cv_use_libgnutls" >&5 +{ { echo "$as_me:15178: 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 @@ -14953,12 +15193,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}:14956: testing checking pkg-config for $cf_pkg_gnutls ..." 1>&5 +echo "${as_me:-configure}:15196: 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}:14961: testing ... found $cf_pkg_gnutls in pkg-config ..." 1>&5 +echo "${as_me:-configure}:15201: testing ... found $cf_pkg_gnutls in pkg-config ..." 1>&5 cf_cv_have_gnutls=yes cf_cv_pkg_config_ssl=yes @@ -15070,14 +15310,14 @@ fi esac test -n "$verbose" && echo " adding $cf_libs_ssl to LIBS" 1>&6 -echo "${as_me:-configure}:15073: testing adding $cf_libs_ssl to LIBS ..." 1>&5 +echo "${as_me:-configure}:15313: 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}:15080: testing ... did not find $cf_pkg_gnutls in pkg-config ..." 1>&5 +echo "${as_me:-configure}:15320: testing ... did not find $cf_pkg_gnutls in pkg-config ..." 1>&5 cf_pkg_gnutls=none fi @@ -15097,12 +15337,12 @@ EOF cf_cv_header_path_gnutls= cf_cv_library_path_gnutls= -echo "${as_me:-configure}:15100: testing Starting FIND_LINKAGE(gnutls,) ..." 1>&5 +echo "${as_me:-configure}:15340: testing Starting FIND_LINKAGE(gnutls,) ..." 1>&5 cf_save_LIBS="$LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 15105 "configure" +#line 15345 "configure" #include "confdefs.h" #include <stdio.h> @@ -15131,16 +15371,16 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:15134: \"$ac_link\"") >&5 +if { (eval echo "$as_me:15374: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:15137: \$? = $ac_status" >&5 + echo "$as_me:15377: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:15140: \"$ac_try\"") >&5 + { (eval echo "$as_me:15380: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:15143: \$? = $ac_status" >&5 + echo "$as_me:15383: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_find_linkage_gnutls=yes @@ -15154,7 +15394,7 @@ cat conftest.$ac_ext >&5 LIBS="-lgnutls -lgnutls-openssl -lgnutls-extra -lgnutls -lgcrypt $cf_save_LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 15157 "configure" +#line 15397 "configure" #include "confdefs.h" #include <stdio.h> @@ -15183,16 +15423,16 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:15186: \"$ac_link\"") >&5 +if { (eval echo "$as_me:15426: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:15189: \$? = $ac_status" >&5 + echo "$as_me:15429: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:15192: \"$ac_try\"") >&5 + { (eval echo "$as_me:15432: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:15195: \$? = $ac_status" >&5 + echo "$as_me:15435: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_find_linkage_gnutls=yes @@ -15209,9 +15449,9 @@ cat conftest.$ac_ext >&5 test -n "$verbose" && echo " find linkage for gnutls library" 1>&6 -echo "${as_me:-configure}:15212: testing find linkage for gnutls library ..." 1>&5 +echo "${as_me:-configure}:15452: testing find linkage for gnutls library ..." 1>&5 -echo "${as_me:-configure}:15214: testing Searching for headers in FIND_LINKAGE(gnutls,) ..." 1>&5 +echo "${as_me:-configure}:15454: testing Searching for headers in FIND_LINKAGE(gnutls,) ..." 1>&5 cf_save_CPPFLAGS="$CPPFLAGS" cf_test_CPPFLAGS="$CPPFLAGS" @@ -15324,11 +15564,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}:15327: testing ... testing $cf_cv_header_path_gnutls ..." 1>&5 +echo "${as_me:-configure}:15567: 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 15331 "configure" +#line 15571 "configure" #include "confdefs.h" #include <stdio.h> @@ -15357,21 +15597,21 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:15360: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:15600: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:15363: \$? = $ac_status" >&5 + echo "$as_me:15603: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:15366: \"$ac_try\"") >&5 + { (eval echo "$as_me:15606: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:15369: \$? = $ac_status" >&5 + echo "$as_me:15609: \$? = $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}:15374: testing ... found gnutls headers in $cf_cv_header_path_gnutls ..." 1>&5 +echo "${as_me:-configure}:15614: testing ... found gnutls headers in $cf_cv_header_path_gnutls ..." 1>&5 cf_cv_find_linkage_gnutls=maybe cf_test_CPPFLAGS="$CPPFLAGS" @@ -15389,7 +15629,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "$cf_cv_find_linkage_gnutls" = maybe ; then -echo "${as_me:-configure}:15392: testing Searching for gnutls library in FIND_LINKAGE(gnutls,) ..." 1>&5 +echo "${as_me:-configure}:15632: testing Searching for gnutls library in FIND_LINKAGE(gnutls,) ..." 1>&5 cf_save_LIBS="$LIBS" cf_save_LDFLAGS="$LDFLAGS" @@ -15486,13 +15726,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}:15489: testing ... testing $cf_cv_library_path_gnutls ..." 1>&5 +echo "${as_me:-configure}:15729: 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 15495 "configure" +#line 15735 "configure" #include "confdefs.h" #include <stdio.h> @@ -15521,21 +15761,21 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:15524: \"$ac_link\"") >&5 +if { (eval echo "$as_me:15764: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:15527: \$? = $ac_status" >&5 + echo "$as_me:15767: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:15530: \"$ac_try\"") >&5 + { (eval echo "$as_me:15770: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:15533: \$? = $ac_status" >&5 + echo "$as_me:15773: \$? = $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}:15538: testing ... found gnutls library in $cf_cv_library_path_gnutls ..." 1>&5 +echo "${as_me:-configure}:15778: testing ... found gnutls library in $cf_cv_library_path_gnutls ..." 1>&5 cf_cv_find_linkage_gnutls=yes cf_cv_library_file_gnutls="-lgnutls" @@ -15612,7 +15852,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 15615 "configure" +#line 15855 "configure" #include "confdefs.h" #include <stdio.h> int @@ -15624,16 +15864,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:15627: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:15867: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:15630: \$? = $ac_status" >&5 + echo "$as_me:15870: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:15633: \"$ac_try\"") >&5 + { (eval echo "$as_me:15873: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:15636: \$? = $ac_status" >&5 + echo "$as_me:15876: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -15650,7 +15890,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}:15653: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:15893: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -15689,7 +15929,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}:15692: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:15932: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -15701,7 +15941,7 @@ fi LIBS="-lgnutls -lgcrypt $LIBS" if test "$cf_pkg_gnutls" = none ; then - echo "$as_me:15704: checking for SSL_connect in -lgnutls-openssl" >&5 + echo "$as_me:15944: 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 @@ -15709,7 +15949,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lgnutls-openssl $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 15712 "configure" +#line 15952 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -15728,16 +15968,16 @@ SSL_connect (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:15731: \"$ac_link\"") >&5 +if { (eval echo "$as_me:15971: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:15734: \$? = $ac_status" >&5 + echo "$as_me:15974: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:15737: \"$ac_try\"") >&5 + { (eval echo "$as_me:15977: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:15740: \$? = $ac_status" >&5 + echo "$as_me:15980: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_gnutls_openssl_SSL_connect=yes else @@ -15748,12 +15988,12 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:15751: result: $ac_cv_lib_gnutls_openssl_SSL_connect" >&5 +echo "$as_me:15991: 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:15756: checking for SSL_connect in -lgnutls-extra" >&5 + echo "$as_me:15996: 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 @@ -15761,7 +16001,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lgnutls-extra $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 15764 "configure" +#line 16004 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -15780,16 +16020,16 @@ SSL_connect (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:15783: \"$ac_link\"") >&5 +if { (eval echo "$as_me:16023: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:15786: \$? = $ac_status" >&5 + echo "$as_me:16026: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:15789: \"$ac_try\"") >&5 + { (eval echo "$as_me:16029: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:15792: \$? = $ac_status" >&5 + echo "$as_me:16032: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_gnutls_extra_SSL_connect=yes else @@ -15800,12 +16040,12 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:15803: result: $ac_cv_lib_gnutls_extra_SSL_connect" >&5 +echo "$as_me:16043: 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:15808: error: cannot find gnutls openssl functions" >&5 + { { echo "$as_me:16048: error: cannot find gnutls openssl functions" >&5 echo "$as_me: error: cannot find gnutls openssl functions" >&2;} { (exit 1); exit 1; }; } fi @@ -15814,10 +16054,10 @@ fi fi -echo "$as_me:15817: checking for X509 support" >&5 +echo "$as_me:16057: checking for X509 support" >&5 echo $ECHO_N "checking for X509 support... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF -#line 15820 "configure" +#line 16060 "configure" #include "confdefs.h" #include <stdio.h> @@ -15841,16 +16081,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:15844: \"$ac_link\"") >&5 +if { (eval echo "$as_me:16084: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:15847: \$? = $ac_status" >&5 + echo "$as_me:16087: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:15850: \"$ac_try\"") >&5 + { (eval echo "$as_me:16090: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:15853: \$? = $ac_status" >&5 + echo "$as_me:16093: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_x509_support=yes else @@ -15859,7 +16099,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:15862: result: $cf_x509_support" >&5 +echo "$as_me:16102: result: $cf_x509_support" >&5 echo "${ECHO_T}$cf_x509_support" >&6 if test "$cf_x509_support" = yes ; then @@ -15891,7 +16131,7 @@ no) #(vi ;; yes) #(vi -echo "$as_me:15894: checking for SSL_get_version in -lnss_compat_ossl" >&5 +echo "$as_me:16134: 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 @@ -15899,7 +16139,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lnss_compat_ossl -lnss_compat_ossl $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 15902 "configure" +#line 16142 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -15918,16 +16158,16 @@ SSL_get_version (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:15921: \"$ac_link\"") >&5 +if { (eval echo "$as_me:16161: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:15924: \$? = $ac_status" >&5 + echo "$as_me:16164: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:15927: \"$ac_try\"") >&5 + { (eval echo "$as_me:16167: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:15930: \$? = $ac_status" >&5 + echo "$as_me:16170: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_nss_compat_ossl_SSL_get_version=yes else @@ -15938,7 +16178,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:15941: result: $ac_cv_lib_nss_compat_ossl_SSL_get_version" >&5 +echo "$as_me:16181: 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 @@ -15953,11 +16193,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}:15956: testing assume it is in $cf_ssl_root ..." 1>&5 +echo "${as_me:-configure}:16196: 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:15960: error: cannot find NSS compilant libraries" >&5 + { { echo "$as_me:16200: error: cannot find NSS compilant libraries" >&5 echo "$as_me: error: cannot find NSS compilant libraries" >&2;} { (exit 1); exit 1; }; } fi @@ -15972,13 +16212,13 @@ fi elif test -d $cf_cv_use_libnss_compat/../include ; then cf_ssl_root=$cf_cv_use_libnss_compat/.. else - { { echo "$as_me:15975: error: cannot find NSS compilant library under $cf_cv_use_libnss_compat" >&5 + { { echo "$as_me:16215: 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:15981: WARNING: expected a directory: $cf_cv_use_libnss_compat" >&5 + { echo "$as_me:16221: WARNING: expected a directory: $cf_cv_use_libnss_compat" >&5 echo "$as_me: WARNING: expected a directory: $cf_cv_use_libnss_compat" >&2;} fi ;; @@ -16072,10 +16312,10 @@ if test -n "$cf_new_extra_cppflags" ; then fi if test "$cf_ssl_subincs" = yes ; then -echo "$as_me:16075: checking for NSS compilant include directory" >&5 +echo "$as_me:16315: 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 16078 "configure" +#line 16318 "configure" #include "confdefs.h" #include <stdio.h> @@ -16089,16 +16329,16 @@ SSL_shutdown((SSL *)0) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:16092: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:16332: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:16095: \$? = $ac_status" >&5 + echo "$as_me:16335: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:16098: \"$ac_try\"") >&5 + { (eval echo "$as_me:16338: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:16101: \$? = $ac_status" >&5 + echo "$as_me:16341: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_ssl_incl=yes else @@ -16107,7 +16347,7 @@ cat conftest.$ac_ext >&5 cf_ssl_incl=no fi rm -f conftest.$ac_objext conftest.$ac_ext -echo "$as_me:16110: result: $cf_ssl_incl" >&5 +echo "$as_me:16350: 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 @@ -16115,10 +16355,10 @@ EOF fi -echo "$as_me:16118: checking if we can link to NSS compilant library" >&5 +echo "$as_me:16358: 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 16121 "configure" +#line 16361 "configure" #include "confdefs.h" #include <stdio.h> @@ -16137,16 +16377,16 @@ SSL_shutdown((SSL *)0) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:16140: \"$ac_link\"") >&5 +if { (eval echo "$as_me:16380: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:16143: \$? = $ac_status" >&5 + echo "$as_me:16383: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:16146: \"$ac_try\"") >&5 + { (eval echo "$as_me:16386: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:16149: \$? = $ac_status" >&5 + echo "$as_me:16389: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_ssl_library=yes else @@ -16155,7 +16395,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:16158: result: $cf_ssl_library" >&5 +echo "$as_me:16398: result: $cf_ssl_library" >&5 echo "${ECHO_T}$cf_ssl_library" >&6 if test "$cf_ssl_library" = yes ; then cat >>confdefs.h <<\EOF @@ -16167,7 +16407,7 @@ EOF EOF else - { { echo "$as_me:16170: error: Cannot link with NSS compilant libraries" >&5 + { { echo "$as_me:16410: error: Cannot link with NSS compilant libraries" >&5 echo "$as_me: error: Cannot link with NSS compilant libraries" >&2;} { (exit 1); exit 1; }; } fi @@ -16175,7 +16415,7 @@ fi fi ### check for ipv6 support -echo "$as_me:16178: checking whether to enable ipv6" >&5 +echo "$as_me:16418: 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. @@ -16191,11 +16431,11 @@ EOF else enableval=no fi; -echo "$as_me:16194: result: $enableval" >&5 +echo "$as_me:16434: result: $enableval" >&5 echo "${ECHO_T}$enableval" >&6 if test "$enableval" = "yes"; then -echo "$as_me:16198: checking ipv6 stack type" >&5 +echo "$as_me:16438: 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 @@ -16216,7 +16456,7 @@ do ;; inria) #(vi cat >conftest.$ac_ext <<_ACEOF -#line 16219 "configure" +#line 16459 "configure" #include "confdefs.h" #include <netinet/in.h> @@ -16233,7 +16473,7 @@ rm -rf conftest* ;; kame) #(vi cat >conftest.$ac_ext <<_ACEOF -#line 16236 "configure" +#line 16476 "configure" #include "confdefs.h" #include <netinet/in.h> @@ -16250,7 +16490,7 @@ rm -rf conftest* ;; linux-glibc) #(vi cat >conftest.$ac_ext <<_ACEOF -#line 16253 "configure" +#line 16493 "configure" #include "confdefs.h" #include <features.h> @@ -16276,7 +16516,7 @@ rm -rf conftest* ;; toshiba) #(vi cat >conftest.$ac_ext <<_ACEOF -#line 16279 "configure" +#line 16519 "configure" #include "confdefs.h" #include <sys/param.h> @@ -16293,7 +16533,7 @@ rm -rf conftest* ;; v6d) #(vi cat >conftest.$ac_ext <<_ACEOF -#line 16296 "configure" +#line 16536 "configure" #include "confdefs.h" #include </usr/local/v6/include/sys/v6config.h> @@ -16310,7 +16550,7 @@ rm -rf conftest* ;; zeta) cat >conftest.$ac_ext <<_ACEOF -#line 16313 "configure" +#line 16553 "configure" #include "confdefs.h" #include <sys/param.h> @@ -16332,13 +16572,13 @@ rm -rf conftest* done fi -echo "$as_me:16335: result: $cf_cv_ipv6type" >&5 +echo "$as_me:16575: result: $cf_cv_ipv6type" >&5 echo "${ECHO_T}$cf_cv_ipv6type" >&6 cf_ipv6lib=none cf_ipv6dir=none -echo "$as_me:16341: checking for IPv6 library if required" >&5 +echo "$as_me:16581: 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 @@ -16368,13 +16608,13 @@ zeta) cf_ipv6dir=v6 ;; esac -echo "$as_me:16371: result: $cf_ipv6lib" >&5 +echo "$as_me:16611: result: $cf_ipv6lib" >&5 echo "${ECHO_T}$cf_ipv6lib" >&6 if test "$cf_ipv6lib" != "none"; then cat >conftest.$ac_ext <<_ACEOF -#line 16377 "configure" +#line 16617 "configure" #include "confdefs.h" #include <sys/types.h> @@ -16390,16 +16630,16 @@ getaddrinfo(0, 0, 0, 0) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:16393: \"$ac_link\"") >&5 +if { (eval echo "$as_me:16633: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:16396: \$? = $ac_status" >&5 + echo "$as_me:16636: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:16399: \"$ac_try\"") >&5 + { (eval echo "$as_me:16639: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:16402: \$? = $ac_status" >&5 + echo "$as_me:16642: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -16539,7 +16779,7 @@ if test -n "$cf_incdir" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 16542 "configure" +#line 16782 "configure" #include "confdefs.h" #include <stdio.h> int @@ -16551,16 +16791,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:16554: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:16794: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:16557: \$? = $ac_status" >&5 + echo "$as_me:16797: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:16560: \"$ac_try\"") >&5 + { (eval echo "$as_me:16800: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:16563: \$? = $ac_status" >&5 + echo "$as_me:16803: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -16577,7 +16817,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}:16580: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:16820: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -16603,13 +16843,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:16606: checking for getaddrinfo" >&5 + echo "$as_me:16846: 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 16612 "configure" +#line 16852 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char getaddrinfo (); below. */ @@ -16640,16 +16880,16 @@ f = getaddrinfo; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:16643: \"$ac_link\"") >&5 +if { (eval echo "$as_me:16883: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:16646: \$? = $ac_status" >&5 + echo "$as_me:16886: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:16649: \"$ac_try\"") >&5 + { (eval echo "$as_me:16889: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:16652: \$? = $ac_status" >&5 + echo "$as_me:16892: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_getaddrinfo=yes else @@ -16659,18 +16899,18 @@ ac_cv_func_getaddrinfo=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:16662: result: $ac_cv_func_getaddrinfo" >&5 +echo "$as_me:16902: 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:16669: checking for getaddrinfo in -l$cf_ipv6lib" >&5 + echo "$as_me:16909: 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 16673 "configure" +#line 16913 "configure" #include "confdefs.h" #include <sys/types.h> @@ -16686,25 +16926,25 @@ getaddrinfo(0, 0, 0, 0) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:16689: \"$ac_link\"") >&5 +if { (eval echo "$as_me:16929: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:16692: \$? = $ac_status" >&5 + echo "$as_me:16932: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:16695: \"$ac_try\"") >&5 + { (eval echo "$as_me:16935: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:16698: \$? = $ac_status" >&5 + echo "$as_me:16938: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:16700: result: yes" >&5 + echo "$as_me:16940: 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:16707: result: no" >&5 +echo "$as_me:16947: result: no" >&5 echo "${ECHO_T}no" >&6 cf_search= @@ -16794,11 +17034,11 @@ cf_search="$cf_library_path_list $cf_search" for cf_libdir in $cf_search do - echo "$as_me:16797: checking for -l$cf_ipv6lib in $cf_libdir" >&5 + echo "$as_me:17037: 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 16801 "configure" +#line 17041 "configure" #include "confdefs.h" #include <sys/types.h> @@ -16814,25 +17054,25 @@ getaddrinfo(0, 0, 0, 0) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:16817: \"$ac_link\"") >&5 +if { (eval echo "$as_me:17057: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:16820: \$? = $ac_status" >&5 + echo "$as_me:17060: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:16823: \"$ac_try\"") >&5 + { (eval echo "$as_me:17063: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:16826: \$? = $ac_status" >&5 + echo "$as_me:17066: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:16828: result: yes" >&5 + echo "$as_me:17068: 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:16835: result: no" >&5 +echo "$as_me:17075: result: no" >&5 echo "${ECHO_T}no" >&6 LIBS="$cf_save_LIBS" fi @@ -16847,7 +17087,7 @@ fi eval 'cf_found_library=$cf_cv_have_lib_'$cf_ipv6lib if test $cf_found_library = no ; then - { { echo "$as_me:16850: error: No $cf_ipv6lib library found, cannot continue. You must fetch lib$cf_ipv6lib.a + { { echo "$as_me:17090: 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;} @@ -16855,7 +17095,7 @@ from an appropriate IPv6 kit and compile beforehand." >&2;} fi fi -echo "$as_me:16858: checking working getaddrinfo" >&5 +echo "$as_me:17098: 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 @@ -16865,7 +17105,7 @@ if test "$cross_compiling" = yes; then cf_cv_getaddrinfo=unknown else cat >conftest.$ac_ext <<_ACEOF -#line 16868 "configure" +#line 17108 "configure" #include "confdefs.h" #include <sys/types.h> @@ -16945,15 +17185,15 @@ int main() _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:16948: \"$ac_link\"") >&5 +if { (eval echo "$as_me:17188: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:16951: \$? = $ac_status" >&5 + echo "$as_me:17191: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:16953: \"$ac_try\"") >&5 + { (eval echo "$as_me:17193: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:16956: \$? = $ac_status" >&5 + echo "$as_me:17196: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_getaddrinfo=yes else @@ -16966,7 +17206,7 @@ rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext fi fi -echo "$as_me:16969: result: $cf_cv_getaddrinfo" >&5 +echo "$as_me:17209: result: $cf_cv_getaddrinfo" >&5 echo "${ECHO_T}$cf_cv_getaddrinfo" >&6 if test "$cf_cv_getaddrinfo" = yes ; then cat >>confdefs.h <<\EOF @@ -16981,12 +17221,12 @@ fi if test "$cf_cv_getaddrinfo" != "yes"; then if test "$cf_cv_ipv6type" != "linux"; then - { echo "$as_me:16984: WARNING: You must get working getaddrinfo() function, + { echo "$as_me:17224: 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:16989: WARNING: The getaddrinfo() implementation on your system seems be buggy. + { echo "$as_me:17229: 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. @@ -16997,7 +17237,7 @@ fi fi -echo "$as_me:17000: checking for screen type" >&5 +echo "$as_me:17240: 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 @@ -17011,7 +17251,7 @@ case $withval in curses|ncurses|ncursesw|pdcurses|slang) cf_cv_screen=$withval ;; -*) { { echo "$as_me:17014: error: Unexpected value" >&5 +*) { { echo "$as_me:17254: error: Unexpected value" >&5 echo "$as_me: error: Unexpected value" >&2;} { (exit 1); exit 1; }; } ;; @@ -17020,13 +17260,13 @@ else cf_cv_screen=curses fi; fi -echo "$as_me:17023: result: $cf_cv_screen" >&5 +echo "$as_me:17263: result: $cf_cv_screen" >&5 echo "${ECHO_T}$cf_cv_screen" >&6 case $cf_cv_screen in curses|ncurses*) -echo "$as_me:17029: checking for specific curses-directory" >&5 +echo "$as_me:17269: checking for specific curses-directory" >&5 echo $ECHO_N "checking for specific curses-directory... $ECHO_C" >&6 # Check whether --with-curses-dir or --without-curses-dir was given. @@ -17036,7 +17276,7 @@ if test "${with_curses_dir+set}" = set; then else cf_cv_curses_dir=no fi; -echo "$as_me:17039: result: $cf_cv_curses_dir" >&5 +echo "$as_me:17279: result: $cf_cv_curses_dir" >&5 echo "${ECHO_T}$cf_cv_curses_dir" >&6 if ( test -n "$cf_cv_curses_dir" && test "$cf_cv_curses_dir" != "no" ) @@ -17067,7 +17307,7 @@ case ".$withval" in #(vi withval=`echo $withval | sed -e s%NONE%$cf_path_syntax%` ;; *) - { { echo "$as_me:17070: error: expected a pathname, not \"$withval\"" >&5 + { { echo "$as_me:17310: error: expected a pathname, not \"$withval\"" >&5 echo "$as_me: error: expected a pathname, not \"$withval\"" >&2;} { (exit 1); exit 1; }; } ;; @@ -17100,7 +17340,7 @@ if test -n "$cf_cv_curses_dir/include" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 17103 "configure" +#line 17343 "configure" #include "confdefs.h" #include <stdio.h> int @@ -17112,16 +17352,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:17115: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:17355: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:17118: \$? = $ac_status" >&5 + echo "$as_me:17358: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:17121: \"$ac_try\"") >&5 + { (eval echo "$as_me:17361: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:17124: \$? = $ac_status" >&5 + echo "$as_me:17364: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -17138,7 +17378,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}:17141: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:17381: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -17172,7 +17412,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}:17175: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:17415: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -17191,7 +17431,7 @@ dft_color_style=yes case $cf_cv_screen in curses) -echo "$as_me:17194: checking for extra include directories" >&5 +echo "$as_me:17434: 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 @@ -17217,11 +17457,11 @@ sunos3*|sunos4*) esac fi -echo "$as_me:17220: result: $cf_cv_curses_incdir" >&5 +echo "$as_me:17460: 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:17224: checking if we have identified curses headers" >&5 +echo "$as_me:17464: 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 @@ -17233,7 +17473,7 @@ for cf_header in \ curses.h ncurses/ncurses.h ncurses/curses.h do cat >conftest.$ac_ext <<_ACEOF -#line 17236 "configure" +#line 17476 "configure" #include "confdefs.h" #include <${cf_header}> int @@ -17245,16 +17485,16 @@ initscr(); tgoto("?", 0,0) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:17248: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:17488: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:17251: \$? = $ac_status" >&5 + echo "$as_me:17491: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:17254: \"$ac_try\"") >&5 + { (eval echo "$as_me:17494: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:17257: \$? = $ac_status" >&5 + echo "$as_me:17497: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_ncurses_header=$cf_header; break else @@ -17265,11 +17505,11 @@ rm -f conftest.$ac_objext conftest.$ac_ext done fi -echo "$as_me:17268: result: $cf_cv_ncurses_header" >&5 +echo "$as_me:17508: 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:17272: error: No curses header-files found" >&5 + { { echo "$as_me:17512: error: No curses header-files found" >&5 echo "$as_me: error: No curses header-files found" >&2;} { (exit 1); exit 1; }; } fi @@ -17279,23 +17519,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:17282: checking for $ac_header" >&5 +echo "$as_me:17522: 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 17288 "configure" +#line 17528 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:17292: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:17532: \"$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:17298: \$? = $ac_status" >&5 + echo "$as_me:17538: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -17314,7 +17554,7 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:17317: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:17557: 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 @@ -17324,7 +17564,7 @@ EOF fi done -echo "$as_me:17327: checking for terminfo header" >&5 +echo "$as_me:17567: 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 @@ -17342,7 +17582,7 @@ esac for cf_test in $cf_term_header "ncurses/term.h" "ncursesw/term.h" do cat >conftest.$ac_ext <<_ACEOF -#line 17345 "configure" +#line 17585 "configure" #include "confdefs.h" #include <stdio.h> #include <${cf_cv_ncurses_header:-curses.h}> @@ -17357,16 +17597,16 @@ int x = auto_left_margin } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:17360: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:17600: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:17363: \$? = $ac_status" >&5 + echo "$as_me:17603: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:17366: \"$ac_try\"") >&5 + { (eval echo "$as_me:17606: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:17369: \$? = $ac_status" >&5 + echo "$as_me:17609: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_term_header="$cf_test" @@ -17382,7 +17622,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext done fi -echo "$as_me:17385: result: $cf_cv_term_header" >&5 +echo "$as_me:17625: result: $cf_cv_term_header" >&5 echo "${ECHO_T}$cf_cv_term_header" >&6 # Set definitions to allow ifdef'ing to accommodate subdirectories @@ -17411,7 +17651,7 @@ EOF ;; esac -echo "$as_me:17414: checking for ncurses version" >&5 +echo "$as_me:17654: 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 @@ -17437,10 +17677,10 @@ Autoconf "old" #endif EOF cf_try="$ac_cpp conftest.$ac_ext 2>&5 | grep '^Autoconf ' >conftest.out" - { (eval echo "$as_me:17440: \"$cf_try\"") >&5 + { (eval echo "$as_me:17680: \"$cf_try\"") >&5 (eval $cf_try) 2>&5 ac_status=$? - echo "$as_me:17443: \$? = $ac_status" >&5 + echo "$as_me:17683: \$? = $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%".*%%'` @@ -17450,7 +17690,7 @@ EOF else cat >conftest.$ac_ext <<_ACEOF -#line 17453 "configure" +#line 17693 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> @@ -17475,15 +17715,15 @@ int main() } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:17478: \"$ac_link\"") >&5 +if { (eval echo "$as_me:17718: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:17481: \$? = $ac_status" >&5 + echo "$as_me:17721: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:17483: \"$ac_try\"") >&5 + { (eval echo "$as_me:17723: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:17486: \$? = $ac_status" >&5 + echo "$as_me:17726: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_ncurses_version=`cat $cf_tempfile` @@ -17497,16 +17737,16 @@ fi rm -f $cf_tempfile fi -echo "$as_me:17500: result: $cf_cv_ncurses_version" >&5 +echo "$as_me:17740: 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:17506: checking if we have identified curses libraries" >&5 +echo "$as_me:17746: 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 17509 "configure" +#line 17749 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> int @@ -17518,16 +17758,16 @@ initscr(); tgoto("?", 0,0) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:17521: \"$ac_link\"") >&5 +if { (eval echo "$as_me:17761: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:17524: \$? = $ac_status" >&5 + echo "$as_me:17764: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:17527: \"$ac_try\"") >&5 + { (eval echo "$as_me:17767: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:17530: \$? = $ac_status" >&5 + echo "$as_me:17770: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_result=yes else @@ -17536,13 +17776,13 @@ cat conftest.$ac_ext >&5 cf_result=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext -echo "$as_me:17539: result: $cf_result" >&5 +echo "$as_me:17779: 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:17545: checking for tgoto in -lmytinfo" >&5 + echo "$as_me:17785: 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 @@ -17550,7 +17790,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lmytinfo $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 17553 "configure" +#line 17793 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -17569,16 +17809,16 @@ tgoto (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:17572: \"$ac_link\"") >&5 +if { (eval echo "$as_me:17812: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:17575: \$? = $ac_status" >&5 + echo "$as_me:17815: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:17578: \"$ac_try\"") >&5 + { (eval echo "$as_me:17818: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:17581: \$? = $ac_status" >&5 + echo "$as_me:17821: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_mytinfo_tgoto=yes else @@ -17589,7 +17829,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:17592: result: $ac_cv_lib_mytinfo_tgoto" >&5 +echo "$as_me:17832: 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" @@ -17603,7 +17843,7 @@ hpux10.*) #(vi # term.h) for cur_colr if test "x$cf_cv_screen" = "xcurses_colr" then - echo "$as_me:17606: checking for initscr in -lcur_colr" >&5 + echo "$as_me:17846: 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 @@ -17611,7 +17851,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lcur_colr $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 17614 "configure" +#line 17854 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -17630,16 +17870,16 @@ initscr (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:17633: \"$ac_link\"") >&5 +if { (eval echo "$as_me:17873: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:17636: \$? = $ac_status" >&5 + echo "$as_me:17876: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:17639: \"$ac_try\"") >&5 + { (eval echo "$as_me:17879: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:17642: \$? = $ac_status" >&5 + echo "$as_me:17882: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_cur_colr_initscr=yes else @@ -17650,7 +17890,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:17653: result: $ac_cv_lib_cur_colr_initscr" >&5 +echo "$as_me:17893: 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 @@ -17659,7 +17899,7 @@ if test $ac_cv_lib_cur_colr_initscr = yes; then else - echo "$as_me:17662: checking for initscr in -lHcurses" >&5 + echo "$as_me:17902: 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 @@ -17667,7 +17907,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lHcurses $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 17670 "configure" +#line 17910 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -17686,16 +17926,16 @@ initscr (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:17689: \"$ac_link\"") >&5 +if { (eval echo "$as_me:17929: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:17692: \$? = $ac_status" >&5 + echo "$as_me:17932: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:17695: \"$ac_try\"") >&5 + { (eval echo "$as_me:17935: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:17698: \$? = $ac_status" >&5 + echo "$as_me:17938: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_Hcurses_initscr=yes else @@ -17706,7 +17946,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:17709: result: $ac_cv_lib_Hcurses_initscr" >&5 +echo "$as_me:17949: 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 @@ -17746,7 +17986,7 @@ if test -n "/lib64" ; then if test "$cf_have_libdir" = no ; then test -n "$verbose" && echo " adding $cf_add_libdir to library-path" 1>&6 -echo "${as_me:-configure}:17749: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:17989: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -17775,7 +18015,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}:17778: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:18018: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -17806,7 +18046,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}:17809: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:18049: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -17841,7 +18081,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}:17844: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:18084: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -17870,13 +18110,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:17873: checking for tgoto" >&5 + echo "$as_me:18113: 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 17879 "configure" +#line 18119 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char tgoto (); below. */ @@ -17907,16 +18147,16 @@ f = tgoto; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:17910: \"$ac_link\"") >&5 +if { (eval echo "$as_me:18150: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:17913: \$? = $ac_status" >&5 + echo "$as_me:18153: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:17916: \"$ac_try\"") >&5 + { (eval echo "$as_me:18156: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:17919: \$? = $ac_status" >&5 + echo "$as_me:18159: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_tgoto=yes else @@ -17926,16 +18166,16 @@ ac_cv_func_tgoto=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:17929: result: $ac_cv_func_tgoto" >&5 +echo "$as_me:18169: 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 else - for cf_term_lib in $cf_check_list termcap termlib unknown + for cf_term_lib in $cf_check_list otermcap termcap termlib unknown do as_ac_Lib=`echo "ac_cv_lib_$cf_term_lib''_tgoto" | $as_tr_sh` -echo "$as_me:17938: checking for tgoto in -l$cf_term_lib" >&5 +echo "$as_me:18178: 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 @@ -17943,7 +18183,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-l$cf_term_lib $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 17946 "configure" +#line 18186 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -17962,16 +18202,16 @@ tgoto (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:17965: \"$ac_link\"") >&5 +if { (eval echo "$as_me:18205: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:17968: \$? = $ac_status" >&5 + echo "$as_me:18208: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:17971: \"$ac_try\"") >&5 + { (eval echo "$as_me:18211: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:17974: \$? = $ac_status" >&5 + echo "$as_me:18214: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_Lib=yes" else @@ -17982,7 +18222,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:17985: result: `eval echo '${'$as_ac_Lib'}'`" >&5 +echo "$as_me:18225: 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 @@ -17997,7 +18237,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:18000: checking for initscr in -l$cf_curs_lib" >&5 +echo "$as_me:18240: 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 @@ -18005,7 +18245,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-l$cf_curs_lib $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 18008 "configure" +#line 18248 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -18024,16 +18264,16 @@ initscr (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:18027: \"$ac_link\"") >&5 +if { (eval echo "$as_me:18267: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:18030: \$? = $ac_status" >&5 + echo "$as_me:18270: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:18033: \"$ac_try\"") >&5 + { (eval echo "$as_me:18273: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:18036: \$? = $ac_status" >&5 + echo "$as_me:18276: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_Lib=yes" else @@ -18044,23 +18284,23 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:18047: result: `eval echo '${'$as_ac_Lib'}'`" >&5 +echo "$as_me:18287: 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:18054: error: no curses library found" >&5 + test $cf_curs_lib = unknown && { { echo "$as_me:18294: 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:18060: checking if we can link with $cf_curs_lib library" >&5 + echo "$as_me:18300: 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 18063 "configure" +#line 18303 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> int @@ -18072,16 +18312,16 @@ initscr() } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:18075: \"$ac_link\"") >&5 +if { (eval echo "$as_me:18315: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:18078: \$? = $ac_status" >&5 + echo "$as_me:18318: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:18081: \"$ac_try\"") >&5 + { (eval echo "$as_me:18321: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:18084: \$? = $ac_status" >&5 + echo "$as_me:18324: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_result=yes else @@ -18090,18 +18330,18 @@ cat conftest.$ac_ext >&5 cf_result=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext - echo "$as_me:18093: result: $cf_result" >&5 + echo "$as_me:18333: result: $cf_result" >&5 echo "${ECHO_T}$cf_result" >&6 - test $cf_result = no && { { echo "$as_me:18095: error: Cannot link curses library" >&5 + test $cf_result = no && { { echo "$as_me:18335: 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:18101: checking if we need both $cf_curs_lib and $cf_term_lib libraries" >&5 + echo "$as_me:18341: 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 18104 "configure" +#line 18344 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> int @@ -18113,16 +18353,16 @@ initscr(); tgoto((char *)0, 0, 0); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:18116: \"$ac_link\"") >&5 +if { (eval echo "$as_me:18356: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:18119: \$? = $ac_status" >&5 + echo "$as_me:18359: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:18122: \"$ac_try\"") >&5 + { (eval echo "$as_me:18362: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:18125: \$? = $ac_status" >&5 + echo "$as_me:18365: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_result=no else @@ -18131,7 +18371,7 @@ cat conftest.$ac_ext >&5 LIBS="-l$cf_curs_lib -l$cf_term_lib $cf_save_LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 18134 "configure" +#line 18374 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> int @@ -18143,16 +18383,16 @@ initscr() } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:18146: \"$ac_link\"") >&5 +if { (eval echo "$as_me:18386: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:18149: \$? = $ac_status" >&5 + echo "$as_me:18389: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:18152: \"$ac_try\"") >&5 + { (eval echo "$as_me:18392: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:18155: \$? = $ac_status" >&5 + echo "$as_me:18395: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_result=yes else @@ -18164,13 +18404,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:18167: result: $cf_result" >&5 + echo "$as_me:18407: result: $cf_result" >&5 echo "${ECHO_T}$cf_result" >&6 fi fi fi -echo "$as_me:18173: checking for curses performance tradeoff" >&5 +echo "$as_me:18413: 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 @@ -18178,7 +18418,7 @@ else cf_cv_curs_performance=no cat >conftest.$ac_ext <<_ACEOF -#line 18181 "configure" +#line 18421 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> @@ -18197,20 +18437,20 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:18200: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:18440: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:18203: \$? = $ac_status" >&5 + echo "$as_me:18443: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:18206: \"$ac_try\"") >&5 + { (eval echo "$as_me:18446: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:18209: \$? = $ac_status" >&5 + echo "$as_me:18449: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cat >conftest.$ac_ext <<_ACEOF -#line 18213 "configure" +#line 18453 "configure" #include "confdefs.h" #define CURS_PERFORMANCE @@ -18230,16 +18470,16 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:18233: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:18473: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:18236: \$? = $ac_status" >&5 + echo "$as_me:18476: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:18239: \"$ac_try\"") >&5 + { (eval echo "$as_me:18479: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:18242: \$? = $ac_status" >&5 + echo "$as_me:18482: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_curs_performance=yes else @@ -18254,20 +18494,20 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:18257: result: $cf_cv_curs_performance" >&5 +echo "$as_me:18497: 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:18263: checking for curses touchline function" >&5 +echo "$as_me:18503: 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 18270 "configure" +#line 18510 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> @@ -18280,23 +18520,23 @@ touchline(stdscr, 1,2,3); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:18283: \"$ac_link\"") >&5 +if { (eval echo "$as_me:18523: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:18286: \$? = $ac_status" >&5 + echo "$as_me:18526: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:18289: \"$ac_try\"") >&5 + { (eval echo "$as_me:18529: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:18292: \$? = $ac_status" >&5 + echo "$as_me:18532: \$? = $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 18299 "configure" +#line 18539 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> @@ -18309,16 +18549,16 @@ touchline(stdscr, 1,2); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:18312: \"$ac_link\"") >&5 +if { (eval echo "$as_me:18552: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:18315: \$? = $ac_status" >&5 + echo "$as_me:18555: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:18318: \"$ac_try\"") >&5 + { (eval echo "$as_me:18558: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:18321: \$? = $ac_status" >&5 + echo "$as_me:18561: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_curs_touchline=sysv else @@ -18330,7 +18570,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:18333: result: $cf_cv_curs_touchline" >&5 +echo "$as_me:18573: result: $cf_cv_curs_touchline" >&5 echo "${ECHO_T}$cf_cv_curs_touchline" >&6 case "$cf_cv_curs_touchline" in #(vi bsd) #(vi @@ -18357,7 +18597,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:18360: checking for $ac_word" >&5 +echo "$as_me:18600: 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 @@ -18374,7 +18614,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:18377: found $ac_dir/$ac_word" >&5 + echo "$as_me:18617: found $ac_dir/$ac_word" >&5 break fi done @@ -18385,10 +18625,10 @@ fi NCURSES_CONFIG=$ac_cv_path_NCURSES_CONFIG if test -n "$NCURSES_CONFIG"; then - echo "$as_me:18388: result: $NCURSES_CONFIG" >&5 + echo "$as_me:18628: result: $NCURSES_CONFIG" >&5 echo "${ECHO_T}$NCURSES_CONFIG" >&6 else - echo "$as_me:18391: result: no" >&5 + echo "$as_me:18631: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -18403,7 +18643,7 @@ LIBS="`$NCURSES_CONFIG --libs` $LIBS" # even with config script, some packages use no-override for curses.h -echo "$as_me:18406: checking if we have identified curses headers" >&5 +echo "$as_me:18646: 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 @@ -18417,7 +18657,7 @@ for cf_header in \ curses.h do cat >conftest.$ac_ext <<_ACEOF -#line 18420 "configure" +#line 18660 "configure" #include "confdefs.h" #include <${cf_header}> int @@ -18429,16 +18669,16 @@ initscr(); tgoto("?", 0,0) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:18432: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:18672: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:18435: \$? = $ac_status" >&5 + echo "$as_me:18675: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:18438: \"$ac_try\"") >&5 + { (eval echo "$as_me:18678: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:18441: \$? = $ac_status" >&5 + echo "$as_me:18681: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_ncurses_header=$cf_header; break else @@ -18449,11 +18689,11 @@ rm -f conftest.$ac_objext conftest.$ac_ext done fi -echo "$as_me:18452: result: $cf_cv_ncurses_header" >&5 +echo "$as_me:18692: 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:18456: error: No curses header-files found" >&5 + { { echo "$as_me:18696: error: No curses header-files found" >&5 echo "$as_me: error: No curses header-files found" >&2;} { (exit 1); exit 1; }; } fi @@ -18463,23 +18703,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:18466: checking for $ac_header" >&5 +echo "$as_me:18706: 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 18472 "configure" +#line 18712 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:18476: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:18716: \"$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:18482: \$? = $ac_status" >&5 + echo "$as_me:18722: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -18498,7 +18738,7 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:18501: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:18741: 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 @@ -18551,7 +18791,7 @@ if test -n "$cf_cv_curses_dir/include/$cf_ncuhdr_root" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 18554 "configure" +#line 18794 "configure" #include "confdefs.h" #include <stdio.h> int @@ -18563,16 +18803,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:18566: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:18806: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:18569: \$? = $ac_status" >&5 + echo "$as_me:18809: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:18572: \"$ac_try\"") >&5 + { (eval echo "$as_me:18812: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:18575: \$? = $ac_status" >&5 + echo "$as_me:18815: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -18589,7 +18829,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}:18592: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:18832: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -18606,7 +18846,7 @@ fi } -echo "$as_me:18609: checking for $cf_ncuhdr_root header in include-path" >&5 +echo "$as_me:18849: 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 @@ -18618,7 +18858,7 @@ else do cat >conftest.$ac_ext <<_ACEOF -#line 18621 "configure" +#line 18861 "configure" #include "confdefs.h" #include <$cf_header> @@ -18642,16 +18882,16 @@ printf("old\n"); } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:18645: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:18885: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:18648: \$? = $ac_status" >&5 + echo "$as_me:18888: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:18651: \"$ac_try\"") >&5 + { (eval echo "$as_me:18891: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:18654: \$? = $ac_status" >&5 + echo "$as_me:18894: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_ncurses_h=$cf_header @@ -18666,14 +18906,14 @@ rm -f conftest.$ac_objext conftest.$ac_ext done fi -echo "$as_me:18669: result: $cf_cv_ncurses_h" >&5 +echo "$as_me:18909: 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:18676: checking for $cf_ncuhdr_root include-path" >&5 +echo "$as_me:18916: 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 @@ -18813,7 +19053,7 @@ if test -n "$cf_incdir" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 18816 "configure" +#line 19056 "configure" #include "confdefs.h" #include <stdio.h> int @@ -18825,16 +19065,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:18828: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:19068: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:18831: \$? = $ac_status" >&5 + echo "$as_me:19071: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:18834: \"$ac_try\"") >&5 + { (eval echo "$as_me:19074: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:18837: \$? = $ac_status" >&5 + echo "$as_me:19077: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -18851,7 +19091,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}:18854: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:19094: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -18872,7 +19112,7 @@ fi do cat >conftest.$ac_ext <<_ACEOF -#line 18875 "configure" +#line 19115 "configure" #include "confdefs.h" #include <$cf_header> @@ -18896,16 +19136,16 @@ printf("old\n"); } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:18899: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:19139: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:18902: \$? = $ac_status" >&5 + echo "$as_me:19142: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:18905: \"$ac_try\"") >&5 + { (eval echo "$as_me:19145: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:18908: \$? = $ac_status" >&5 + echo "$as_me:19148: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_ncurses_h2=$cf_header @@ -18926,12 +19166,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:18929: error: not found" >&5 + test "$cf_cv_ncurses_h2" = no && { { echo "$as_me:19169: error: not found" >&5 echo "$as_me: error: not found" >&2;} { (exit 1); exit 1; }; } fi -echo "$as_me:18934: result: $cf_cv_ncurses_h2" >&5 +echo "$as_me:19174: 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%/[^/]*$%%'` @@ -18964,7 +19204,7 @@ if test -n "$cf_1st_incdir" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 18967 "configure" +#line 19207 "configure" #include "confdefs.h" #include <stdio.h> int @@ -18976,16 +19216,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:18979: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:19219: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:18982: \$? = $ac_status" >&5 + echo "$as_me:19222: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:18985: \"$ac_try\"") >&5 + { (eval echo "$as_me:19225: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:18988: \$? = $ac_status" >&5 + echo "$as_me:19228: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -19002,7 +19242,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}:19005: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:19245: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -19045,7 +19285,7 @@ EOF ;; esac -echo "$as_me:19048: checking for terminfo header" >&5 +echo "$as_me:19288: 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 @@ -19063,7 +19303,7 @@ esac for cf_test in $cf_term_header "ncurses/term.h" "ncursesw/term.h" do cat >conftest.$ac_ext <<_ACEOF -#line 19066 "configure" +#line 19306 "configure" #include "confdefs.h" #include <stdio.h> #include <${cf_cv_ncurses_header:-curses.h}> @@ -19078,16 +19318,16 @@ int x = auto_left_margin } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:19081: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:19321: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:19084: \$? = $ac_status" >&5 + echo "$as_me:19324: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:19087: \"$ac_try\"") >&5 + { (eval echo "$as_me:19327: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:19090: \$? = $ac_status" >&5 + echo "$as_me:19330: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_term_header="$cf_test" @@ -19103,7 +19343,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext done fi -echo "$as_me:19106: result: $cf_cv_term_header" >&5 +echo "$as_me:19346: result: $cf_cv_term_header" >&5 echo "${ECHO_T}$cf_cv_term_header" >&6 # Set definitions to allow ifdef'ing to accommodate subdirectories @@ -19137,7 +19377,7 @@ cat >>confdefs.h <<\EOF #define NCURSES 1 EOF -echo "$as_me:19140: checking for ncurses version" >&5 +echo "$as_me:19380: 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 @@ -19163,10 +19403,10 @@ Autoconf "old" #endif EOF cf_try="$ac_cpp conftest.$ac_ext 2>&5 | grep '^Autoconf ' >conftest.out" - { (eval echo "$as_me:19166: \"$cf_try\"") >&5 + { (eval echo "$as_me:19406: \"$cf_try\"") >&5 (eval $cf_try) 2>&5 ac_status=$? - echo "$as_me:19169: \$? = $ac_status" >&5 + echo "$as_me:19409: \$? = $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%".*%%'` @@ -19176,7 +19416,7 @@ EOF else cat >conftest.$ac_ext <<_ACEOF -#line 19179 "configure" +#line 19419 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> @@ -19201,15 +19441,15 @@ int main() } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:19204: \"$ac_link\"") >&5 +if { (eval echo "$as_me:19444: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:19207: \$? = $ac_status" >&5 + echo "$as_me:19447: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:19209: \"$ac_try\"") >&5 + { (eval echo "$as_me:19449: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:19212: \$? = $ac_status" >&5 + echo "$as_me:19452: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_ncurses_version=`cat $cf_tempfile` @@ -19223,7 +19463,7 @@ fi rm -f $cf_tempfile fi -echo "$as_me:19226: result: $cf_cv_ncurses_version" >&5 +echo "$as_me:19466: 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 @@ -19235,7 +19475,7 @@ cf_nculib_root=ncurses # to link gpm. cf_ncurses_LIBS="" cf_ncurses_SAVE="$LIBS" -echo "$as_me:19238: checking for Gpm_Open in -lgpm" >&5 +echo "$as_me:19478: 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 @@ -19243,7 +19483,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lgpm $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 19246 "configure" +#line 19486 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -19262,16 +19502,16 @@ Gpm_Open (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:19265: \"$ac_link\"") >&5 +if { (eval echo "$as_me:19505: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:19268: \$? = $ac_status" >&5 + echo "$as_me:19508: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:19271: \"$ac_try\"") >&5 + { (eval echo "$as_me:19511: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:19274: \$? = $ac_status" >&5 + echo "$as_me:19514: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_gpm_Gpm_Open=yes else @@ -19282,10 +19522,10 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:19285: result: $ac_cv_lib_gpm_Gpm_Open" >&5 +echo "$as_me:19525: 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:19288: checking for initscr in -lgpm" >&5 + echo "$as_me:19528: 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 @@ -19293,7 +19533,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lgpm $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 19296 "configure" +#line 19536 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -19312,16 +19552,16 @@ initscr (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:19315: \"$ac_link\"") >&5 +if { (eval echo "$as_me:19555: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:19318: \$? = $ac_status" >&5 + echo "$as_me:19558: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:19321: \"$ac_try\"") >&5 + { (eval echo "$as_me:19561: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:19324: \$? = $ac_status" >&5 + echo "$as_me:19564: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_gpm_initscr=yes else @@ -19332,7 +19572,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:19335: result: $ac_cv_lib_gpm_initscr" >&5 +echo "$as_me:19575: 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" @@ -19347,7 +19587,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:19350: checking for tgoto in -lmytinfo" >&5 + echo "$as_me:19590: 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 @@ -19355,7 +19595,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lmytinfo $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 19358 "configure" +#line 19598 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -19374,16 +19614,16 @@ tgoto (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:19377: \"$ac_link\"") >&5 +if { (eval echo "$as_me:19617: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:19380: \$? = $ac_status" >&5 + echo "$as_me:19620: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:19383: \"$ac_try\"") >&5 + { (eval echo "$as_me:19623: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:19386: \$? = $ac_status" >&5 + echo "$as_me:19626: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_mytinfo_tgoto=yes else @@ -19394,7 +19634,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:19397: result: $ac_cv_lib_mytinfo_tgoto" >&5 +echo "$as_me:19637: 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" @@ -19413,13 +19653,13 @@ else eval 'cf_cv_have_lib_'$cf_nculib_root'=no' cf_libdir="" - echo "$as_me:19416: checking for initscr" >&5 + echo "$as_me:19656: 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 19422 "configure" +#line 19662 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char initscr (); below. */ @@ -19450,16 +19690,16 @@ f = initscr; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:19453: \"$ac_link\"") >&5 +if { (eval echo "$as_me:19693: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:19456: \$? = $ac_status" >&5 + echo "$as_me:19696: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:19459: \"$ac_try\"") >&5 + { (eval echo "$as_me:19699: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:19462: \$? = $ac_status" >&5 + echo "$as_me:19702: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_initscr=yes else @@ -19469,18 +19709,18 @@ ac_cv_func_initscr=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:19472: result: $ac_cv_func_initscr" >&5 +echo "$as_me:19712: 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:19479: checking for initscr in -l$cf_nculib_root" >&5 + echo "$as_me:19719: 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 19483 "configure" +#line 19723 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> int @@ -19492,25 +19732,25 @@ initscr() } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:19495: \"$ac_link\"") >&5 +if { (eval echo "$as_me:19735: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:19498: \$? = $ac_status" >&5 + echo "$as_me:19738: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:19501: \"$ac_try\"") >&5 + { (eval echo "$as_me:19741: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:19504: \$? = $ac_status" >&5 + echo "$as_me:19744: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:19506: result: yes" >&5 + echo "$as_me:19746: 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:19513: result: no" >&5 +echo "$as_me:19753: result: no" >&5 echo "${ECHO_T}no" >&6 cf_search= @@ -19600,11 +19840,11 @@ cf_search="$cf_library_path_list $cf_search" for cf_libdir in $cf_search do - echo "$as_me:19603: checking for -l$cf_nculib_root in $cf_libdir" >&5 + echo "$as_me:19843: 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 19607 "configure" +#line 19847 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> int @@ -19616,25 +19856,25 @@ initscr() } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:19619: \"$ac_link\"") >&5 +if { (eval echo "$as_me:19859: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:19622: \$? = $ac_status" >&5 + echo "$as_me:19862: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:19625: \"$ac_try\"") >&5 + { (eval echo "$as_me:19865: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:19628: \$? = $ac_status" >&5 + echo "$as_me:19868: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:19630: result: yes" >&5 + echo "$as_me:19870: 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:19637: result: no" >&5 +echo "$as_me:19877: result: no" >&5 echo "${ECHO_T}no" >&6 LIBS="$cf_save_LIBS" fi @@ -19649,7 +19889,7 @@ fi eval 'cf_found_library=$cf_cv_have_lib_'$cf_nculib_root if test $cf_found_library = no ; then - { { echo "$as_me:19652: error: Cannot link $cf_nculib_root library" >&5 + { { echo "$as_me:19892: error: Cannot link $cf_nculib_root library" >&5 echo "$as_me: error: Cannot link $cf_nculib_root library" >&2;} { (exit 1); exit 1; }; } fi @@ -19657,7 +19897,7 @@ fi fi if test -n "$cf_ncurses_LIBS" ; then - echo "$as_me:19660: checking if we can link $cf_nculib_root without $cf_ncurses_LIBS" >&5 + echo "$as_me:19900: 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 @@ -19667,7 +19907,7 @@ echo $ECHO_N "checking if we can link $cf_nculib_root without $cf_ncurses_LIBS.. fi done cat >conftest.$ac_ext <<_ACEOF -#line 19670 "configure" +#line 19910 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> int @@ -19679,23 +19919,23 @@ initscr(); mousemask(0,0); tgoto((char *)0, 0, 0); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:19682: \"$ac_link\"") >&5 +if { (eval echo "$as_me:19922: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:19685: \$? = $ac_status" >&5 + echo "$as_me:19925: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:19688: \"$ac_try\"") >&5 + { (eval echo "$as_me:19928: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:19691: \$? = $ac_status" >&5 + echo "$as_me:19931: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:19693: result: yes" >&5 + echo "$as_me:19933: result: yes" >&5 echo "${ECHO_T}yes" >&6 else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 -echo "$as_me:19698: result: no" >&5 +echo "$as_me:19938: result: no" >&5 echo "${ECHO_T}no" >&6 LIBS="$cf_ncurses_SAVE" fi @@ -19713,7 +19953,7 @@ fi ;; ncursesw) -echo "$as_me:19716: checking for multibyte character support" >&5 +echo "$as_me:19956: 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 @@ -19721,7 +19961,7 @@ else cf_save_LIBS="$LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 19724 "configure" +#line 19964 "configure" #include "confdefs.h" #include <stdlib.h> @@ -19734,16 +19974,16 @@ putwc(0,0); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:19737: \"$ac_link\"") >&5 +if { (eval echo "$as_me:19977: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:19740: \$? = $ac_status" >&5 + echo "$as_me:19980: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:19743: \"$ac_try\"") >&5 + { (eval echo "$as_me:19983: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:19746: \$? = $ac_status" >&5 + echo "$as_me:19986: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_utf8_lib=yes else @@ -19755,12 +19995,12 @@ cat conftest.$ac_ext >&5 cf_cv_header_path_utf8= cf_cv_library_path_utf8= -echo "${as_me:-configure}:19758: testing Starting FIND_LINKAGE(utf8,) ..." 1>&5 +echo "${as_me:-configure}:19998: testing Starting FIND_LINKAGE(utf8,) ..." 1>&5 cf_save_LIBS="$LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 19763 "configure" +#line 20003 "configure" #include "confdefs.h" #include <libutf8.h> @@ -19773,16 +20013,16 @@ putwc(0,0); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:19776: \"$ac_link\"") >&5 +if { (eval echo "$as_me:20016: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:19779: \$? = $ac_status" >&5 + echo "$as_me:20019: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:19782: \"$ac_try\"") >&5 + { (eval echo "$as_me:20022: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:19785: \$? = $ac_status" >&5 + echo "$as_me:20025: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_find_linkage_utf8=yes @@ -19796,7 +20036,7 @@ cat conftest.$ac_ext >&5 LIBS="-lutf8 $cf_save_LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 19799 "configure" +#line 20039 "configure" #include "confdefs.h" #include <libutf8.h> @@ -19809,16 +20049,16 @@ putwc(0,0); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:19812: \"$ac_link\"") >&5 +if { (eval echo "$as_me:20052: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:19815: \$? = $ac_status" >&5 + echo "$as_me:20055: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:19818: \"$ac_try\"") >&5 + { (eval echo "$as_me:20058: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:19821: \$? = $ac_status" >&5 + echo "$as_me:20061: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_find_linkage_utf8=yes @@ -19835,9 +20075,9 @@ cat conftest.$ac_ext >&5 test -n "$verbose" && echo " find linkage for utf8 library" 1>&6 -echo "${as_me:-configure}:19838: testing find linkage for utf8 library ..." 1>&5 +echo "${as_me:-configure}:20078: testing find linkage for utf8 library ..." 1>&5 -echo "${as_me:-configure}:19840: testing Searching for headers in FIND_LINKAGE(utf8,) ..." 1>&5 +echo "${as_me:-configure}:20080: testing Searching for headers in FIND_LINKAGE(utf8,) ..." 1>&5 cf_save_CPPFLAGS="$CPPFLAGS" cf_test_CPPFLAGS="$CPPFLAGS" @@ -19950,11 +20190,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}:19953: testing ... testing $cf_cv_header_path_utf8 ..." 1>&5 +echo "${as_me:-configure}:20193: 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 19957 "configure" +#line 20197 "configure" #include "confdefs.h" #include <libutf8.h> @@ -19967,21 +20207,21 @@ putwc(0,0); } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:19970: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:20210: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:19973: \$? = $ac_status" >&5 + echo "$as_me:20213: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:19976: \"$ac_try\"") >&5 + { (eval echo "$as_me:20216: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:19979: \$? = $ac_status" >&5 + echo "$as_me:20219: \$? = $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}:19984: testing ... found utf8 headers in $cf_cv_header_path_utf8 ..." 1>&5 +echo "${as_me:-configure}:20224: testing ... found utf8 headers in $cf_cv_header_path_utf8 ..." 1>&5 cf_cv_find_linkage_utf8=maybe cf_test_CPPFLAGS="$CPPFLAGS" @@ -19999,7 +20239,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "$cf_cv_find_linkage_utf8" = maybe ; then -echo "${as_me:-configure}:20002: testing Searching for utf8 library in FIND_LINKAGE(utf8,) ..." 1>&5 +echo "${as_me:-configure}:20242: testing Searching for utf8 library in FIND_LINKAGE(utf8,) ..." 1>&5 cf_save_LIBS="$LIBS" cf_save_LDFLAGS="$LDFLAGS" @@ -20096,13 +20336,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}:20099: testing ... testing $cf_cv_library_path_utf8 ..." 1>&5 +echo "${as_me:-configure}:20339: 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 20105 "configure" +#line 20345 "configure" #include "confdefs.h" #include <libutf8.h> @@ -20115,21 +20355,21 @@ putwc(0,0); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:20118: \"$ac_link\"") >&5 +if { (eval echo "$as_me:20358: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:20121: \$? = $ac_status" >&5 + echo "$as_me:20361: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:20124: \"$ac_try\"") >&5 + { (eval echo "$as_me:20364: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:20127: \$? = $ac_status" >&5 + echo "$as_me:20367: \$? = $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}:20132: testing ... found utf8 library in $cf_cv_library_path_utf8 ..." 1>&5 +echo "${as_me:-configure}:20372: testing ... found utf8 library in $cf_cv_library_path_utf8 ..." 1>&5 cf_cv_find_linkage_utf8=yes cf_cv_library_file_utf8="-lutf8" @@ -20171,7 +20411,7 @@ fi fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:20174: result: $cf_cv_utf8_lib" >&5 +echo "$as_me:20414: 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 @@ -20205,7 +20445,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 20208 "configure" +#line 20448 "configure" #include "confdefs.h" #include <stdio.h> int @@ -20217,16 +20457,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:20220: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:20460: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:20223: \$? = $ac_status" >&5 + echo "$as_me:20463: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:20226: \"$ac_try\"") >&5 + { (eval echo "$as_me:20466: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:20229: \$? = $ac_status" >&5 + echo "$as_me:20469: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -20243,7 +20483,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}:20246: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:20486: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -20277,7 +20517,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}:20280: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:20520: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -20295,7 +20535,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:20298: checking for $ac_word" >&5 +echo "$as_me:20538: 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 @@ -20312,7 +20552,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:20315: found $ac_dir/$ac_word" >&5 + echo "$as_me:20555: found $ac_dir/$ac_word" >&5 break fi done @@ -20323,10 +20563,10 @@ fi NCURSES_CONFIG=$ac_cv_path_NCURSES_CONFIG if test -n "$NCURSES_CONFIG"; then - echo "$as_me:20326: result: $NCURSES_CONFIG" >&5 + echo "$as_me:20566: result: $NCURSES_CONFIG" >&5 echo "${ECHO_T}$NCURSES_CONFIG" >&6 else - echo "$as_me:20329: result: no" >&5 + echo "$as_me:20569: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -20341,7 +20581,7 @@ LIBS="`$NCURSES_CONFIG --libs` $LIBS" # even with config script, some packages use no-override for curses.h -echo "$as_me:20344: checking if we have identified curses headers" >&5 +echo "$as_me:20584: 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 @@ -20355,7 +20595,7 @@ for cf_header in \ curses.h do cat >conftest.$ac_ext <<_ACEOF -#line 20358 "configure" +#line 20598 "configure" #include "confdefs.h" #include <${cf_header}> int @@ -20367,16 +20607,16 @@ initscr(); tgoto("?", 0,0) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:20370: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:20610: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:20373: \$? = $ac_status" >&5 + echo "$as_me:20613: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:20376: \"$ac_try\"") >&5 + { (eval echo "$as_me:20616: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:20379: \$? = $ac_status" >&5 + echo "$as_me:20619: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_ncurses_header=$cf_header; break else @@ -20387,11 +20627,11 @@ rm -f conftest.$ac_objext conftest.$ac_ext done fi -echo "$as_me:20390: result: $cf_cv_ncurses_header" >&5 +echo "$as_me:20630: 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:20394: error: No curses header-files found" >&5 + { { echo "$as_me:20634: error: No curses header-files found" >&5 echo "$as_me: error: No curses header-files found" >&2;} { (exit 1); exit 1; }; } fi @@ -20401,23 +20641,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:20404: checking for $ac_header" >&5 +echo "$as_me:20644: 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 20410 "configure" +#line 20650 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:20414: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:20654: \"$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:20420: \$? = $ac_status" >&5 + echo "$as_me:20660: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -20436,7 +20676,7 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:20439: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:20679: 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 @@ -20489,7 +20729,7 @@ if test -n "$cf_cv_curses_dir/include/$cf_ncuhdr_root" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 20492 "configure" +#line 20732 "configure" #include "confdefs.h" #include <stdio.h> int @@ -20501,16 +20741,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:20504: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:20744: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:20507: \$? = $ac_status" >&5 + echo "$as_me:20747: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:20510: \"$ac_try\"") >&5 + { (eval echo "$as_me:20750: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:20513: \$? = $ac_status" >&5 + echo "$as_me:20753: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -20527,7 +20767,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}:20530: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:20770: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -20544,7 +20784,7 @@ fi } -echo "$as_me:20547: checking for $cf_ncuhdr_root header in include-path" >&5 +echo "$as_me:20787: 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 @@ -20556,7 +20796,7 @@ else do cat >conftest.$ac_ext <<_ACEOF -#line 20559 "configure" +#line 20799 "configure" #include "confdefs.h" #define _XOPEN_SOURCE_EXTENDED @@ -20588,16 +20828,16 @@ printf("old\n"); } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:20591: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:20831: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:20594: \$? = $ac_status" >&5 + echo "$as_me:20834: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:20597: \"$ac_try\"") >&5 + { (eval echo "$as_me:20837: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:20600: \$? = $ac_status" >&5 + echo "$as_me:20840: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_ncurses_h=$cf_header @@ -20612,14 +20852,14 @@ rm -f conftest.$ac_objext conftest.$ac_ext done fi -echo "$as_me:20615: result: $cf_cv_ncurses_h" >&5 +echo "$as_me:20855: 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:20622: checking for $cf_ncuhdr_root include-path" >&5 +echo "$as_me:20862: 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 @@ -20759,7 +20999,7 @@ if test -n "$cf_incdir" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 20762 "configure" +#line 21002 "configure" #include "confdefs.h" #include <stdio.h> int @@ -20771,16 +21011,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:20774: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:21014: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:20777: \$? = $ac_status" >&5 + echo "$as_me:21017: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:20780: \"$ac_try\"") >&5 + { (eval echo "$as_me:21020: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:20783: \$? = $ac_status" >&5 + echo "$as_me:21023: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -20797,7 +21037,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}:20800: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:21040: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -20818,7 +21058,7 @@ fi do cat >conftest.$ac_ext <<_ACEOF -#line 20821 "configure" +#line 21061 "configure" #include "confdefs.h" #include <$cf_header> @@ -20842,16 +21082,16 @@ printf("old\n"); } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:20845: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:21085: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:20848: \$? = $ac_status" >&5 + echo "$as_me:21088: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:20851: \"$ac_try\"") >&5 + { (eval echo "$as_me:21091: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:20854: \$? = $ac_status" >&5 + echo "$as_me:21094: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_ncurses_h2=$cf_header @@ -20872,12 +21112,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:20875: error: not found" >&5 + test "$cf_cv_ncurses_h2" = no && { { echo "$as_me:21115: error: not found" >&5 echo "$as_me: error: not found" >&2;} { (exit 1); exit 1; }; } fi -echo "$as_me:20880: result: $cf_cv_ncurses_h2" >&5 +echo "$as_me:21120: 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%/[^/]*$%%'` @@ -20910,7 +21150,7 @@ if test -n "$cf_1st_incdir" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 20913 "configure" +#line 21153 "configure" #include "confdefs.h" #include <stdio.h> int @@ -20922,16 +21162,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:20925: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:21165: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:20928: \$? = $ac_status" >&5 + echo "$as_me:21168: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:20931: \"$ac_try\"") >&5 + { (eval echo "$as_me:21171: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:20934: \$? = $ac_status" >&5 + echo "$as_me:21174: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -20948,7 +21188,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}:20951: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:21191: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -20991,7 +21231,7 @@ EOF ;; esac -echo "$as_me:20994: checking for terminfo header" >&5 +echo "$as_me:21234: 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 @@ -21009,7 +21249,7 @@ esac for cf_test in $cf_term_header "ncurses/term.h" "ncursesw/term.h" do cat >conftest.$ac_ext <<_ACEOF -#line 21012 "configure" +#line 21252 "configure" #include "confdefs.h" #include <stdio.h> #include <${cf_cv_ncurses_header:-curses.h}> @@ -21024,16 +21264,16 @@ int x = auto_left_margin } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:21027: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:21267: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:21030: \$? = $ac_status" >&5 + echo "$as_me:21270: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:21033: \"$ac_try\"") >&5 + { (eval echo "$as_me:21273: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:21036: \$? = $ac_status" >&5 + echo "$as_me:21276: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_term_header="$cf_test" @@ -21049,7 +21289,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext done fi -echo "$as_me:21052: result: $cf_cv_term_header" >&5 +echo "$as_me:21292: result: $cf_cv_term_header" >&5 echo "${ECHO_T}$cf_cv_term_header" >&6 # Set definitions to allow ifdef'ing to accommodate subdirectories @@ -21083,7 +21323,7 @@ cat >>confdefs.h <<\EOF #define NCURSES 1 EOF -echo "$as_me:21086: checking for ncurses version" >&5 +echo "$as_me:21326: 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 @@ -21109,10 +21349,10 @@ Autoconf "old" #endif EOF cf_try="$ac_cpp conftest.$ac_ext 2>&5 | grep '^Autoconf ' >conftest.out" - { (eval echo "$as_me:21112: \"$cf_try\"") >&5 + { (eval echo "$as_me:21352: \"$cf_try\"") >&5 (eval $cf_try) 2>&5 ac_status=$? - echo "$as_me:21115: \$? = $ac_status" >&5 + echo "$as_me:21355: \$? = $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%".*%%'` @@ -21122,7 +21362,7 @@ EOF else cat >conftest.$ac_ext <<_ACEOF -#line 21125 "configure" +#line 21365 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> @@ -21147,15 +21387,15 @@ int main() } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:21150: \"$ac_link\"") >&5 +if { (eval echo "$as_me:21390: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:21153: \$? = $ac_status" >&5 + echo "$as_me:21393: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:21155: \"$ac_try\"") >&5 + { (eval echo "$as_me:21395: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:21158: \$? = $ac_status" >&5 + echo "$as_me:21398: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_ncurses_version=`cat $cf_tempfile` @@ -21169,7 +21409,7 @@ fi rm -f $cf_tempfile fi -echo "$as_me:21172: result: $cf_cv_ncurses_version" >&5 +echo "$as_me:21412: 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 @@ -21181,7 +21421,7 @@ cf_nculib_root=ncursesw # to link gpm. cf_ncurses_LIBS="" cf_ncurses_SAVE="$LIBS" -echo "$as_me:21184: checking for Gpm_Open in -lgpm" >&5 +echo "$as_me:21424: 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 @@ -21189,7 +21429,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lgpm $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 21192 "configure" +#line 21432 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -21208,16 +21448,16 @@ Gpm_Open (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:21211: \"$ac_link\"") >&5 +if { (eval echo "$as_me:21451: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:21214: \$? = $ac_status" >&5 + echo "$as_me:21454: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:21217: \"$ac_try\"") >&5 + { (eval echo "$as_me:21457: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:21220: \$? = $ac_status" >&5 + echo "$as_me:21460: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_gpm_Gpm_Open=yes else @@ -21228,10 +21468,10 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:21231: result: $ac_cv_lib_gpm_Gpm_Open" >&5 +echo "$as_me:21471: 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:21234: checking for initscr in -lgpm" >&5 + echo "$as_me:21474: 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 @@ -21239,7 +21479,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lgpm $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 21242 "configure" +#line 21482 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -21258,16 +21498,16 @@ initscr (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:21261: \"$ac_link\"") >&5 +if { (eval echo "$as_me:21501: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:21264: \$? = $ac_status" >&5 + echo "$as_me:21504: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:21267: \"$ac_try\"") >&5 + { (eval echo "$as_me:21507: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:21270: \$? = $ac_status" >&5 + echo "$as_me:21510: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_gpm_initscr=yes else @@ -21278,7 +21518,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:21281: result: $ac_cv_lib_gpm_initscr" >&5 +echo "$as_me:21521: 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" @@ -21293,7 +21533,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:21296: checking for tgoto in -lmytinfo" >&5 + echo "$as_me:21536: 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 @@ -21301,7 +21541,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lmytinfo $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 21304 "configure" +#line 21544 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -21320,16 +21560,16 @@ tgoto (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:21323: \"$ac_link\"") >&5 +if { (eval echo "$as_me:21563: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:21326: \$? = $ac_status" >&5 + echo "$as_me:21566: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:21329: \"$ac_try\"") >&5 + { (eval echo "$as_me:21569: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:21332: \$? = $ac_status" >&5 + echo "$as_me:21572: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_mytinfo_tgoto=yes else @@ -21340,7 +21580,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:21343: result: $ac_cv_lib_mytinfo_tgoto" >&5 +echo "$as_me:21583: 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" @@ -21359,13 +21599,13 @@ else eval 'cf_cv_have_lib_'$cf_nculib_root'=no' cf_libdir="" - echo "$as_me:21362: checking for initscr" >&5 + echo "$as_me:21602: 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 21368 "configure" +#line 21608 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char initscr (); below. */ @@ -21396,16 +21636,16 @@ f = initscr; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:21399: \"$ac_link\"") >&5 +if { (eval echo "$as_me:21639: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:21402: \$? = $ac_status" >&5 + echo "$as_me:21642: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:21405: \"$ac_try\"") >&5 + { (eval echo "$as_me:21645: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:21408: \$? = $ac_status" >&5 + echo "$as_me:21648: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_initscr=yes else @@ -21415,18 +21655,18 @@ ac_cv_func_initscr=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:21418: result: $ac_cv_func_initscr" >&5 +echo "$as_me:21658: 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:21425: checking for initscr in -l$cf_nculib_root" >&5 + echo "$as_me:21665: 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 21429 "configure" +#line 21669 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> int @@ -21438,25 +21678,25 @@ initscr() } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:21441: \"$ac_link\"") >&5 +if { (eval echo "$as_me:21681: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:21444: \$? = $ac_status" >&5 + echo "$as_me:21684: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:21447: \"$ac_try\"") >&5 + { (eval echo "$as_me:21687: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:21450: \$? = $ac_status" >&5 + echo "$as_me:21690: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:21452: result: yes" >&5 + echo "$as_me:21692: 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:21459: result: no" >&5 +echo "$as_me:21699: result: no" >&5 echo "${ECHO_T}no" >&6 cf_search= @@ -21546,11 +21786,11 @@ cf_search="$cf_library_path_list $cf_search" for cf_libdir in $cf_search do - echo "$as_me:21549: checking for -l$cf_nculib_root in $cf_libdir" >&5 + echo "$as_me:21789: 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 21553 "configure" +#line 21793 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> int @@ -21562,25 +21802,25 @@ initscr() } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:21565: \"$ac_link\"") >&5 +if { (eval echo "$as_me:21805: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:21568: \$? = $ac_status" >&5 + echo "$as_me:21808: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:21571: \"$ac_try\"") >&5 + { (eval echo "$as_me:21811: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:21574: \$? = $ac_status" >&5 + echo "$as_me:21814: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:21576: result: yes" >&5 + echo "$as_me:21816: 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:21583: result: no" >&5 +echo "$as_me:21823: result: no" >&5 echo "${ECHO_T}no" >&6 LIBS="$cf_save_LIBS" fi @@ -21595,7 +21835,7 @@ fi eval 'cf_found_library=$cf_cv_have_lib_'$cf_nculib_root if test $cf_found_library = no ; then - { { echo "$as_me:21598: error: Cannot link $cf_nculib_root library" >&5 + { { echo "$as_me:21838: error: Cannot link $cf_nculib_root library" >&5 echo "$as_me: error: Cannot link $cf_nculib_root library" >&2;} { (exit 1); exit 1; }; } fi @@ -21603,7 +21843,7 @@ fi fi if test -n "$cf_ncurses_LIBS" ; then - echo "$as_me:21606: checking if we can link $cf_nculib_root without $cf_ncurses_LIBS" >&5 + echo "$as_me:21846: 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 @@ -21613,7 +21853,7 @@ echo $ECHO_N "checking if we can link $cf_nculib_root without $cf_ncurses_LIBS.. fi done cat >conftest.$ac_ext <<_ACEOF -#line 21616 "configure" +#line 21856 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> int @@ -21625,23 +21865,23 @@ initscr(); mousemask(0,0); tgoto((char *)0, 0, 0); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:21628: \"$ac_link\"") >&5 +if { (eval echo "$as_me:21868: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:21631: \$? = $ac_status" >&5 + echo "$as_me:21871: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:21634: \"$ac_try\"") >&5 + { (eval echo "$as_me:21874: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:21637: \$? = $ac_status" >&5 + echo "$as_me:21877: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:21639: result: yes" >&5 + echo "$as_me:21879: result: yes" >&5 echo "${ECHO_T}yes" >&6 else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 -echo "$as_me:21644: result: no" >&5 +echo "$as_me:21884: result: no" >&5 echo "${ECHO_T}no" >&6 LIBS="$cf_ncurses_SAVE" fi @@ -21664,7 +21904,7 @@ pdcurses) ;; slang) -echo "$as_me:21667: checking for slang header file" >&5 +echo "$as_me:21907: 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 @@ -21672,7 +21912,7 @@ else cf_cv_slang_header=no cat >conftest.$ac_ext <<_ACEOF -#line 21675 "configure" +#line 21915 "configure" #include "confdefs.h" #include <slang.h> int @@ -21684,16 +21924,16 @@ printf("%s\n", SLANG_VERSION) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:21687: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:21927: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:21690: \$? = $ac_status" >&5 + echo "$as_me:21930: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:21693: \"$ac_try\"") >&5 + { (eval echo "$as_me:21933: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:21696: \$? = $ac_status" >&5 + echo "$as_me:21936: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_slang_header=predefined else @@ -21820,7 +22060,7 @@ cf_search="$cf_search $cf_header_path_list" fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:21823: result: $cf_cv_slang_header" >&5 +echo "$as_me:22063: result: $cf_cv_slang_header" >&5 echo "${ECHO_T}$cf_cv_slang_header" >&6 if test "x$cf_cv_slang_header" != xno @@ -21860,7 +22100,7 @@ if test -n "$cf_incdir" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 21863 "configure" +#line 22103 "configure" #include "confdefs.h" #include <stdio.h> int @@ -21872,16 +22112,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:21875: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:22115: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:21878: \$? = $ac_status" >&5 + echo "$as_me:22118: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:21881: \"$ac_try\"") >&5 + { (eval echo "$as_me:22121: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:21884: \$? = $ac_status" >&5 + echo "$as_me:22124: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -21898,7 +22138,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}:21901: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:22141: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -21928,7 +22168,7 @@ else cf_cv_termlib=none cat >conftest.$ac_ext <<_ACEOF -#line 21931 "configure" +#line 22171 "configure" #include "confdefs.h" int @@ -21940,19 +22180,19 @@ char *x=(char*)tgoto("",0,0) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:21943: \"$ac_link\"") >&5 +if { (eval echo "$as_me:22183: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:21946: \$? = $ac_status" >&5 + echo "$as_me:22186: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:21949: \"$ac_try\"") >&5 + { (eval echo "$as_me:22189: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:21952: \$? = $ac_status" >&5 + echo "$as_me:22192: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cat >conftest.$ac_ext <<_ACEOF -#line 21955 "configure" +#line 22195 "configure" #include "confdefs.h" int @@ -21964,16 +22204,16 @@ int x=tigetstr("") } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:21967: \"$ac_link\"") >&5 +if { (eval echo "$as_me:22207: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:21970: \$? = $ac_status" >&5 + echo "$as_me:22210: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:21973: \"$ac_try\"") >&5 + { (eval echo "$as_me:22213: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:21976: \$? = $ac_status" >&5 + echo "$as_me:22216: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_termlib=terminfo else @@ -21984,7 +22224,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}:21987: testing using functions in predefined $cf_cv_termlib LIBS ..." 1>&5 +echo "${as_me:-configure}:22227: testing using functions in predefined $cf_cv_termlib LIBS ..." 1>&5 else echo "$as_me: failed program was:" >&5 @@ -21999,10 +22239,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:22002: checking for $cf_func in -l$cf_lib" >&5 + echo "$as_me:22242: 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 22005 "configure" +#line 22245 "configure" #include "confdefs.h" int @@ -22014,16 +22254,16 @@ int x=$cf_func("") } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:22017: \"$ac_link\"") >&5 +if { (eval echo "$as_me:22257: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:22020: \$? = $ac_status" >&5 + echo "$as_me:22260: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:22023: \"$ac_try\"") >&5 + { (eval echo "$as_me:22263: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:22026: \$? = $ac_status" >&5 + echo "$as_me:22266: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_result=yes else @@ -22032,7 +22272,7 @@ cat conftest.$ac_ext >&5 cf_result=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext - echo "$as_me:22035: result: $cf_result" >&5 + echo "$as_me:22275: result: $cf_result" >&5 echo "${ECHO_T}$cf_result" >&6 if test "$cf_result" = yes ; then if test "$cf_func" = tigetstr ; then @@ -22049,7 +22289,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:22052: checking for initscr in -lcurses" >&5 + echo "$as_me:22292: 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 @@ -22057,7 +22297,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lcurses $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 22060 "configure" +#line 22300 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -22076,16 +22316,16 @@ initscr (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:22079: \"$ac_link\"") >&5 +if { (eval echo "$as_me:22319: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:22082: \$? = $ac_status" >&5 + echo "$as_me:22322: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:22085: \"$ac_try\"") >&5 + { (eval echo "$as_me:22325: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:22088: \$? = $ac_status" >&5 + echo "$as_me:22328: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_curses_initscr=yes else @@ -22096,13 +22336,13 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:22099: result: $ac_cv_lib_curses_initscr" >&5 +echo "$as_me:22339: result: $ac_cv_lib_curses_initscr" >&5 echo "${ECHO_T}$ac_cv_lib_curses_initscr" >&6 if test $ac_cv_lib_curses_initscr = yes; then LIBS="-lcurses $LIBS" fi - echo "$as_me:22105: checking for tgoto in -ltermcap" >&5 + echo "$as_me:22345: 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 @@ -22110,7 +22350,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-ltermcap $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 22113 "configure" +#line 22353 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -22129,16 +22369,16 @@ tgoto (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:22132: \"$ac_link\"") >&5 +if { (eval echo "$as_me:22372: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:22135: \$? = $ac_status" >&5 + echo "$as_me:22375: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:22138: \"$ac_try\"") >&5 + { (eval echo "$as_me:22378: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:22141: \$? = $ac_status" >&5 + echo "$as_me:22381: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_termcap_tgoto=yes else @@ -22149,7 +22389,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:22152: result: $ac_cv_lib_termcap_tgoto" >&5 +echo "$as_me:22392: result: $ac_cv_lib_termcap_tgoto" >&5 echo "${ECHO_T}$ac_cv_lib_termcap_tgoto" >&6 if test $ac_cv_lib_termcap_tgoto = yes; then LIBS="-ltermcap $LIBS" cf_cv_termlib=termcap @@ -22160,20 +22400,20 @@ fi fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext if test "$cf_cv_termlib" = none; then - { echo "$as_me:22163: WARNING: Cannot find -ltermlib, -lcurses, or -ltermcap" >&5 + { echo "$as_me:22403: 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:22170: checking for acos" >&5 +echo "$as_me:22410: 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 22176 "configure" +#line 22416 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char acos (); below. */ @@ -22204,16 +22444,16 @@ f = acos; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:22207: \"$ac_link\"") >&5 +if { (eval echo "$as_me:22447: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:22210: \$? = $ac_status" >&5 + echo "$as_me:22450: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:22213: \"$ac_try\"") >&5 + { (eval echo "$as_me:22453: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:22216: \$? = $ac_status" >&5 + echo "$as_me:22456: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_acos=yes else @@ -22223,13 +22463,13 @@ ac_cv_func_acos=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:22226: result: $ac_cv_func_acos" >&5 +echo "$as_me:22466: 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:22232: checking for acos in -lm" >&5 +echo "$as_me:22472: 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 @@ -22237,7 +22477,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lm $LIBS $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 22240 "configure" +#line 22480 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -22256,16 +22496,16 @@ acos (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:22259: \"$ac_link\"") >&5 +if { (eval echo "$as_me:22499: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:22262: \$? = $ac_status" >&5 + echo "$as_me:22502: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:22265: \"$ac_try\"") >&5 + { (eval echo "$as_me:22505: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:22268: \$? = $ac_status" >&5 + echo "$as_me:22508: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_m_acos=yes else @@ -22276,7 +22516,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:22279: result: $ac_cv_lib_m_acos" >&5 +echo "$as_me:22519: 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 @@ -22302,13 +22542,13 @@ os2*) eval 'cf_cv_have_lib_'video'=no' cf_libdir="" - echo "$as_me:22305: checking for v_init" >&5 + echo "$as_me:22545: 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 22311 "configure" +#line 22551 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char v_init (); below. */ @@ -22339,16 +22579,16 @@ f = v_init; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:22342: \"$ac_link\"") >&5 +if { (eval echo "$as_me:22582: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:22345: \$? = $ac_status" >&5 + echo "$as_me:22585: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:22348: \"$ac_try\"") >&5 + { (eval echo "$as_me:22588: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:22351: \$? = $ac_status" >&5 + echo "$as_me:22591: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_v_init=yes else @@ -22358,18 +22598,18 @@ ac_cv_func_v_init=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:22361: result: $ac_cv_func_v_init" >&5 +echo "$as_me:22601: 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:22368: checking for v_init in -lvideo" >&5 + echo "$as_me:22608: 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 22372 "configure" +#line 22612 "configure" #include "confdefs.h" #include <sys/video.h> int @@ -22381,25 +22621,25 @@ v_init() } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:22384: \"$ac_link\"") >&5 +if { (eval echo "$as_me:22624: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:22387: \$? = $ac_status" >&5 + echo "$as_me:22627: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:22390: \"$ac_try\"") >&5 + { (eval echo "$as_me:22630: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:22393: \$? = $ac_status" >&5 + echo "$as_me:22633: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:22395: result: yes" >&5 + echo "$as_me:22635: 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:22402: result: no" >&5 +echo "$as_me:22642: result: no" >&5 echo "${ECHO_T}no" >&6 cf_search= @@ -22489,11 +22729,11 @@ cf_search="$cf_library_path_list $cf_search" for cf_libdir in $cf_search do - echo "$as_me:22492: checking for -lvideo in $cf_libdir" >&5 + echo "$as_me:22732: 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 22496 "configure" +#line 22736 "configure" #include "confdefs.h" #include <sys/video.h> int @@ -22505,25 +22745,25 @@ v_init() } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:22508: \"$ac_link\"") >&5 +if { (eval echo "$as_me:22748: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:22511: \$? = $ac_status" >&5 + echo "$as_me:22751: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:22514: \"$ac_try\"") >&5 + { (eval echo "$as_me:22754: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:22517: \$? = $ac_status" >&5 + echo "$as_me:22757: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:22519: result: yes" >&5 + echo "$as_me:22759: 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:22526: result: no" >&5 +echo "$as_me:22766: result: no" >&5 echo "${ECHO_T}no" >&6 LIBS="$cf_save_LIBS" fi @@ -22538,7 +22778,7 @@ fi eval 'cf_found_library=$cf_cv_have_lib_'video if test $cf_found_library = no ; then - { { echo "$as_me:22541: error: Cannot link video library" >&5 + { { echo "$as_me:22781: error: Cannot link video library" >&5 echo "$as_me: error: Cannot link video library" >&2;} { (exit 1); exit 1; }; } fi @@ -22548,13 +22788,13 @@ esac eval 'cf_cv_have_lib_'slang'=no' cf_libdir="" - echo "$as_me:22551: checking for SLtt_get_screen_size" >&5 + echo "$as_me:22791: 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 22557 "configure" +#line 22797 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char SLtt_get_screen_size (); below. */ @@ -22585,16 +22825,16 @@ f = SLtt_get_screen_size; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:22588: \"$ac_link\"") >&5 +if { (eval echo "$as_me:22828: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:22591: \$? = $ac_status" >&5 + echo "$as_me:22831: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:22594: \"$ac_try\"") >&5 + { (eval echo "$as_me:22834: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:22597: \$? = $ac_status" >&5 + echo "$as_me:22837: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_SLtt_get_screen_size=yes else @@ -22604,18 +22844,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:22607: result: $ac_cv_func_SLtt_get_screen_size" >&5 +echo "$as_me:22847: 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:22614: checking for SLtt_get_screen_size in -lslang" >&5 + echo "$as_me:22854: 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 22618 "configure" +#line 22858 "configure" #include "confdefs.h" #include <slang.h> int @@ -22627,25 +22867,25 @@ SLtt_get_screen_size() } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:22630: \"$ac_link\"") >&5 +if { (eval echo "$as_me:22870: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:22633: \$? = $ac_status" >&5 + echo "$as_me:22873: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:22636: \"$ac_try\"") >&5 + { (eval echo "$as_me:22876: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:22639: \$? = $ac_status" >&5 + echo "$as_me:22879: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:22641: result: yes" >&5 + echo "$as_me:22881: 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:22648: result: no" >&5 +echo "$as_me:22888: result: no" >&5 echo "${ECHO_T}no" >&6 cf_search= @@ -22735,11 +22975,11 @@ cf_search="$cf_library_path_list $cf_search" for cf_libdir in $cf_search do - echo "$as_me:22738: checking for -lslang in $cf_libdir" >&5 + echo "$as_me:22978: 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 22742 "configure" +#line 22982 "configure" #include "confdefs.h" #include <slang.h> int @@ -22751,25 +22991,25 @@ SLtt_get_screen_size() } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:22754: \"$ac_link\"") >&5 +if { (eval echo "$as_me:22994: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:22757: \$? = $ac_status" >&5 + echo "$as_me:22997: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:22760: \"$ac_try\"") >&5 + { (eval echo "$as_me:23000: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:22763: \$? = $ac_status" >&5 + echo "$as_me:23003: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:22765: result: yes" >&5 + echo "$as_me:23005: 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:22772: result: no" >&5 +echo "$as_me:23012: result: no" >&5 echo "${ECHO_T}no" >&6 LIBS="$cf_save_LIBS" fi @@ -22784,13 +23024,13 @@ fi eval 'cf_found_library=$cf_cv_have_lib_'slang if test $cf_found_library = no ; then - { { echo "$as_me:22787: error: Cannot link slang library" >&5 + { { echo "$as_me:23027: 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:22793: checking if we can link slang without termcap" >&5 +echo "$as_me:23033: 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%^.%%'` @@ -22799,7 +23039,7 @@ else fi LIBS=`echo ".$cf_slang_LIBS3" | sed -e "s%$cf_exclude%%" -e 's%^.%%'` cat >conftest.$ac_ext <<_ACEOF -#line 22802 "configure" +#line 23042 "configure" #include "confdefs.h" #include <slang.h> int @@ -22811,16 +23051,16 @@ SLtt_get_screen_size() } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:22814: \"$ac_link\"") >&5 +if { (eval echo "$as_me:23054: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:22817: \$? = $ac_status" >&5 + echo "$as_me:23057: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:22820: \"$ac_try\"") >&5 + { (eval echo "$as_me:23060: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:22823: \$? = $ac_status" >&5 + echo "$as_me:23063: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_result=yes else @@ -22829,13 +23069,13 @@ cat conftest.$ac_ext >&5 cf_result=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext -echo "$as_me:22832: result: $cf_result" >&5 +echo "$as_me:23072: result: $cf_result" >&5 echo "${ECHO_T}$cf_result" >&6 test $cf_result = no && LIBS="$cf_slang_LIBS3" else -echo "$as_me:22838: checking for slang2 header file" >&5 +echo "$as_me:23078: 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 @@ -22843,7 +23083,7 @@ else cf_cv_slang2_header=no cat >conftest.$ac_ext <<_ACEOF -#line 22846 "configure" +#line 23086 "configure" #include "confdefs.h" #include <slang.h> int @@ -22855,16 +23095,16 @@ printf("%s\n", SLANG_VERSION) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:22858: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:23098: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:22861: \$? = $ac_status" >&5 + echo "$as_me:23101: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:22864: \"$ac_try\"") >&5 + { (eval echo "$as_me:23104: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:22867: \$? = $ac_status" >&5 + echo "$as_me:23107: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_slang2_header=predefined else @@ -22991,7 +23231,7 @@ cf_search="$cf_search $cf_header_path_list" fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:22994: result: $cf_cv_slang2_header" >&5 +echo "$as_me:23234: result: $cf_cv_slang2_header" >&5 echo "${ECHO_T}$cf_cv_slang2_header" >&6 if test "x$cf_cv_slang2_header" != xno @@ -23031,7 +23271,7 @@ if test -n "$cf_incdir" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 23034 "configure" +#line 23274 "configure" #include "confdefs.h" #include <stdio.h> int @@ -23043,16 +23283,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:23046: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:23286: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:23049: \$? = $ac_status" >&5 + echo "$as_me:23289: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:23052: \"$ac_try\"") >&5 + { (eval echo "$as_me:23292: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23055: \$? = $ac_status" >&5 + echo "$as_me:23295: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -23069,7 +23309,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}:23072: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:23312: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -23099,7 +23339,7 @@ else cf_cv_termlib=none cat >conftest.$ac_ext <<_ACEOF -#line 23102 "configure" +#line 23342 "configure" #include "confdefs.h" int @@ -23111,19 +23351,19 @@ char *x=(char*)tgoto("",0,0) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:23114: \"$ac_link\"") >&5 +if { (eval echo "$as_me:23354: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:23117: \$? = $ac_status" >&5 + echo "$as_me:23357: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:23120: \"$ac_try\"") >&5 + { (eval echo "$as_me:23360: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23123: \$? = $ac_status" >&5 + echo "$as_me:23363: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cat >conftest.$ac_ext <<_ACEOF -#line 23126 "configure" +#line 23366 "configure" #include "confdefs.h" int @@ -23135,16 +23375,16 @@ int x=tigetstr("") } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:23138: \"$ac_link\"") >&5 +if { (eval echo "$as_me:23378: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:23141: \$? = $ac_status" >&5 + echo "$as_me:23381: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:23144: \"$ac_try\"") >&5 + { (eval echo "$as_me:23384: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23147: \$? = $ac_status" >&5 + echo "$as_me:23387: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_termlib=terminfo else @@ -23155,7 +23395,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}:23158: testing using functions in predefined $cf_cv_termlib LIBS ..." 1>&5 +echo "${as_me:-configure}:23398: testing using functions in predefined $cf_cv_termlib LIBS ..." 1>&5 else echo "$as_me: failed program was:" >&5 @@ -23170,10 +23410,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:23173: checking for $cf_func in -l$cf_lib" >&5 + echo "$as_me:23413: 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 23176 "configure" +#line 23416 "configure" #include "confdefs.h" int @@ -23185,16 +23425,16 @@ int x=$cf_func("") } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:23188: \"$ac_link\"") >&5 +if { (eval echo "$as_me:23428: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:23191: \$? = $ac_status" >&5 + echo "$as_me:23431: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:23194: \"$ac_try\"") >&5 + { (eval echo "$as_me:23434: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23197: \$? = $ac_status" >&5 + echo "$as_me:23437: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_result=yes else @@ -23203,7 +23443,7 @@ cat conftest.$ac_ext >&5 cf_result=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext - echo "$as_me:23206: result: $cf_result" >&5 + echo "$as_me:23446: result: $cf_result" >&5 echo "${ECHO_T}$cf_result" >&6 if test "$cf_result" = yes ; then if test "$cf_func" = tigetstr ; then @@ -23220,7 +23460,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:23223: checking for initscr in -lcurses" >&5 + echo "$as_me:23463: 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 @@ -23228,7 +23468,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lcurses $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 23231 "configure" +#line 23471 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -23247,16 +23487,16 @@ initscr (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:23250: \"$ac_link\"") >&5 +if { (eval echo "$as_me:23490: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:23253: \$? = $ac_status" >&5 + echo "$as_me:23493: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:23256: \"$ac_try\"") >&5 + { (eval echo "$as_me:23496: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23259: \$? = $ac_status" >&5 + echo "$as_me:23499: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_curses_initscr=yes else @@ -23267,13 +23507,13 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:23270: result: $ac_cv_lib_curses_initscr" >&5 +echo "$as_me:23510: result: $ac_cv_lib_curses_initscr" >&5 echo "${ECHO_T}$ac_cv_lib_curses_initscr" >&6 if test $ac_cv_lib_curses_initscr = yes; then LIBS="-lcurses $LIBS" fi - echo "$as_me:23276: checking for tgoto in -ltermcap" >&5 + echo "$as_me:23516: 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 @@ -23281,7 +23521,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-ltermcap $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 23284 "configure" +#line 23524 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -23300,16 +23540,16 @@ tgoto (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:23303: \"$ac_link\"") >&5 +if { (eval echo "$as_me:23543: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:23306: \$? = $ac_status" >&5 + echo "$as_me:23546: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:23309: \"$ac_try\"") >&5 + { (eval echo "$as_me:23549: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23312: \$? = $ac_status" >&5 + echo "$as_me:23552: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_termcap_tgoto=yes else @@ -23320,7 +23560,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:23323: result: $ac_cv_lib_termcap_tgoto" >&5 +echo "$as_me:23563: result: $ac_cv_lib_termcap_tgoto" >&5 echo "${ECHO_T}$ac_cv_lib_termcap_tgoto" >&6 if test $ac_cv_lib_termcap_tgoto = yes; then LIBS="-ltermcap $LIBS" cf_cv_termlib=termcap @@ -23331,20 +23571,20 @@ fi fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext if test "$cf_cv_termlib" = none; then - { echo "$as_me:23334: WARNING: Cannot find -ltermlib, -lcurses, or -ltermcap" >&5 + { echo "$as_me:23574: 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:23341: checking for acos" >&5 +echo "$as_me:23581: 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 23347 "configure" +#line 23587 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char acos (); below. */ @@ -23375,16 +23615,16 @@ f = acos; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:23378: \"$ac_link\"") >&5 +if { (eval echo "$as_me:23618: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:23381: \$? = $ac_status" >&5 + echo "$as_me:23621: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:23384: \"$ac_try\"") >&5 + { (eval echo "$as_me:23624: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23387: \$? = $ac_status" >&5 + echo "$as_me:23627: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_acos=yes else @@ -23394,13 +23634,13 @@ ac_cv_func_acos=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:23397: result: $ac_cv_func_acos" >&5 +echo "$as_me:23637: 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:23403: checking for acos in -lm" >&5 +echo "$as_me:23643: 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 @@ -23408,7 +23648,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lm $LIBS $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 23411 "configure" +#line 23651 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -23427,16 +23667,16 @@ acos (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:23430: \"$ac_link\"") >&5 +if { (eval echo "$as_me:23670: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:23433: \$? = $ac_status" >&5 + echo "$as_me:23673: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:23436: \"$ac_try\"") >&5 + { (eval echo "$as_me:23676: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23439: \$? = $ac_status" >&5 + echo "$as_me:23679: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_m_acos=yes else @@ -23447,7 +23687,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:23450: result: $ac_cv_lib_m_acos" >&5 +echo "$as_me:23690: 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 @@ -23473,13 +23713,13 @@ os2*) eval 'cf_cv_have_lib_'video'=no' cf_libdir="" - echo "$as_me:23476: checking for v_init" >&5 + echo "$as_me:23716: 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 23482 "configure" +#line 23722 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char v_init (); below. */ @@ -23510,16 +23750,16 @@ f = v_init; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:23513: \"$ac_link\"") >&5 +if { (eval echo "$as_me:23753: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:23516: \$? = $ac_status" >&5 + echo "$as_me:23756: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:23519: \"$ac_try\"") >&5 + { (eval echo "$as_me:23759: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23522: \$? = $ac_status" >&5 + echo "$as_me:23762: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_v_init=yes else @@ -23529,18 +23769,18 @@ ac_cv_func_v_init=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:23532: result: $ac_cv_func_v_init" >&5 +echo "$as_me:23772: 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:23539: checking for v_init in -lvideo" >&5 + echo "$as_me:23779: 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 23543 "configure" +#line 23783 "configure" #include "confdefs.h" #include <sys/video.h> int @@ -23552,25 +23792,25 @@ v_init() } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:23555: \"$ac_link\"") >&5 +if { (eval echo "$as_me:23795: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:23558: \$? = $ac_status" >&5 + echo "$as_me:23798: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:23561: \"$ac_try\"") >&5 + { (eval echo "$as_me:23801: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23564: \$? = $ac_status" >&5 + echo "$as_me:23804: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:23566: result: yes" >&5 + echo "$as_me:23806: 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:23573: result: no" >&5 +echo "$as_me:23813: result: no" >&5 echo "${ECHO_T}no" >&6 cf_search= @@ -23660,11 +23900,11 @@ cf_search="$cf_library_path_list $cf_search" for cf_libdir in $cf_search do - echo "$as_me:23663: checking for -lvideo in $cf_libdir" >&5 + echo "$as_me:23903: 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 23667 "configure" +#line 23907 "configure" #include "confdefs.h" #include <sys/video.h> int @@ -23676,25 +23916,25 @@ v_init() } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:23679: \"$ac_link\"") >&5 +if { (eval echo "$as_me:23919: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:23682: \$? = $ac_status" >&5 + echo "$as_me:23922: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:23685: \"$ac_try\"") >&5 + { (eval echo "$as_me:23925: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23688: \$? = $ac_status" >&5 + echo "$as_me:23928: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:23690: result: yes" >&5 + echo "$as_me:23930: 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:23697: result: no" >&5 +echo "$as_me:23937: result: no" >&5 echo "${ECHO_T}no" >&6 LIBS="$cf_save_LIBS" fi @@ -23709,7 +23949,7 @@ fi eval 'cf_found_library=$cf_cv_have_lib_'video if test $cf_found_library = no ; then - { { echo "$as_me:23712: error: Cannot link video library" >&5 + { { echo "$as_me:23952: error: Cannot link video library" >&5 echo "$as_me: error: Cannot link video library" >&2;} { (exit 1); exit 1; }; } fi @@ -23719,13 +23959,13 @@ esac eval 'cf_cv_have_lib_'slang2'=no' cf_libdir="" - echo "$as_me:23722: checking for SLtt_get_screen_size" >&5 + echo "$as_me:23962: 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 23728 "configure" +#line 23968 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char SLtt_get_screen_size (); below. */ @@ -23756,16 +23996,16 @@ f = SLtt_get_screen_size; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:23759: \"$ac_link\"") >&5 +if { (eval echo "$as_me:23999: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:23762: \$? = $ac_status" >&5 + echo "$as_me:24002: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:23765: \"$ac_try\"") >&5 + { (eval echo "$as_me:24005: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23768: \$? = $ac_status" >&5 + echo "$as_me:24008: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_SLtt_get_screen_size=yes else @@ -23775,18 +24015,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:23778: result: $ac_cv_func_SLtt_get_screen_size" >&5 +echo "$as_me:24018: 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:23785: checking for SLtt_get_screen_size in -lslang2" >&5 + echo "$as_me:24025: 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 23789 "configure" +#line 24029 "configure" #include "confdefs.h" #include <slang.h> int @@ -23798,25 +24038,25 @@ SLtt_get_screen_size() } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:23801: \"$ac_link\"") >&5 +if { (eval echo "$as_me:24041: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:23804: \$? = $ac_status" >&5 + echo "$as_me:24044: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:23807: \"$ac_try\"") >&5 + { (eval echo "$as_me:24047: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23810: \$? = $ac_status" >&5 + echo "$as_me:24050: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:23812: result: yes" >&5 + echo "$as_me:24052: 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:23819: result: no" >&5 +echo "$as_me:24059: result: no" >&5 echo "${ECHO_T}no" >&6 cf_search= @@ -23906,11 +24146,11 @@ cf_search="$cf_library_path_list $cf_search" for cf_libdir in $cf_search do - echo "$as_me:23909: checking for -lslang2 in $cf_libdir" >&5 + echo "$as_me:24149: 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 23913 "configure" +#line 24153 "configure" #include "confdefs.h" #include <slang.h> int @@ -23922,25 +24162,25 @@ SLtt_get_screen_size() } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:23925: \"$ac_link\"") >&5 +if { (eval echo "$as_me:24165: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:23928: \$? = $ac_status" >&5 + echo "$as_me:24168: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:23931: \"$ac_try\"") >&5 + { (eval echo "$as_me:24171: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23934: \$? = $ac_status" >&5 + echo "$as_me:24174: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:23936: result: yes" >&5 + echo "$as_me:24176: 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:23943: result: no" >&5 +echo "$as_me:24183: result: no" >&5 echo "${ECHO_T}no" >&6 LIBS="$cf_save_LIBS" fi @@ -23955,13 +24195,13 @@ fi eval 'cf_found_library=$cf_cv_have_lib_'slang2 if test $cf_found_library = no ; then - { { echo "$as_me:23958: error: Cannot link slang2 library" >&5 + { { echo "$as_me:24198: 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:23964: checking if we can link slang2 without termcap" >&5 +echo "$as_me:24204: 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%^.%%'` @@ -23970,7 +24210,7 @@ else fi LIBS=`echo ".$cf_slang_LIBS3" | sed -e "s%$cf_exclude%%" -e 's%^.%%'` cat >conftest.$ac_ext <<_ACEOF -#line 23973 "configure" +#line 24213 "configure" #include "confdefs.h" #include <slang.h> int @@ -23982,16 +24222,16 @@ SLtt_get_screen_size() } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:23985: \"$ac_link\"") >&5 +if { (eval echo "$as_me:24225: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:23988: \$? = $ac_status" >&5 + echo "$as_me:24228: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:23991: \"$ac_try\"") >&5 + { (eval echo "$as_me:24231: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23994: \$? = $ac_status" >&5 + echo "$as_me:24234: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_result=yes else @@ -24000,12 +24240,12 @@ cat conftest.$ac_ext >&5 cf_result=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext -echo "$as_me:24003: result: $cf_result" >&5 +echo "$as_me:24243: result: $cf_result" >&5 echo "${ECHO_T}$cf_result" >&6 test $cf_result = no && LIBS="$cf_slang_LIBS3" else - { { echo "$as_me:24008: error: cannot find slang headers" >&5 + { { echo "$as_me:24248: error: cannot find slang headers" >&5 echo "$as_me: error: cannot find slang headers" >&2;} { (exit 1); exit 1; }; } fi @@ -24013,14 +24253,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:24016: checking if we must define UTF8" >&5 +echo "$as_me:24256: 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 24023 "configure" +#line 24263 "configure" #include "confdefs.h" #include <slang.h> int @@ -24032,16 +24272,16 @@ SLtt_get_screen_size() } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:24035: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:24275: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:24038: \$? = $ac_status" >&5 + echo "$as_me:24278: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:24041: \"$ac_try\"") >&5 + { (eval echo "$as_me:24281: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:24044: \$? = $ac_status" >&5 + echo "$as_me:24284: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_slang_utf8=no else @@ -24049,7 +24289,7 @@ else cat conftest.$ac_ext >&5 cat >conftest.$ac_ext <<_ACEOF -#line 24052 "configure" +#line 24292 "configure" #include "confdefs.h" #define UTF8 @@ -24063,16 +24303,16 @@ SLtt_get_screen_size() } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:24066: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:24306: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:24069: \$? = $ac_status" >&5 + echo "$as_me:24309: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:24072: \"$ac_try\"") >&5 + { (eval echo "$as_me:24312: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:24075: \$? = $ac_status" >&5 + echo "$as_me:24315: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_slang_utf8=yes else @@ -24085,7 +24325,7 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:24088: result: $cf_cv_slang_utf8" >&5 +echo "$as_me:24328: result: $cf_cv_slang_utf8" >&5 echo "${ECHO_T}$cf_cv_slang_utf8" >&6 if test "$cf_cv_slang_utf8" = yes ; then @@ -24095,14 +24335,14 @@ EOF fi -echo "$as_me:24098: checking if we must tell slang this is UNIX" >&5 +echo "$as_me:24338: 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 24105 "configure" +#line 24345 "configure" #include "confdefs.h" #include <slang.h> int @@ -24121,16 +24361,16 @@ SLang_TT_Baud_Rate = 1 } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:24124: \"$ac_link\"") >&5 +if { (eval echo "$as_me:24364: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:24127: \$? = $ac_status" >&5 + echo "$as_me:24367: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:24130: \"$ac_try\"") >&5 + { (eval echo "$as_me:24370: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:24133: \$? = $ac_status" >&5 + echo "$as_me:24373: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_slang_unix=yes else @@ -24141,19 +24381,19 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:24144: result: $cf_cv_slang_unix" >&5 +echo "$as_me:24384: result: $cf_cv_slang_unix" >&5 echo "${ECHO_T}$cf_cv_slang_unix" >&6 test $cf_cv_slang_unix = yes && cat >>confdefs.h <<\EOF #define REAL_UNIX_SYSTEM 1 EOF - echo "$as_me:24150: checking for SLsmg_Color_Type" >&5 + echo "$as_me:24390: checking for SLsmg_Color_Type" >&5 echo $ECHO_N "checking for SLsmg_Color_Type... $ECHO_C" >&6 if test "${ac_cv_type_SLsmg_Color_Type+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 24156 "configure" +#line 24396 "configure" #include "confdefs.h" #include <slang.h> @@ -24169,16 +24409,16 @@ if (sizeof (SLsmg_Color_Type)) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:24172: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:24412: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:24175: \$? = $ac_status" >&5 + echo "$as_me:24415: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:24178: \"$ac_try\"") >&5 + { (eval echo "$as_me:24418: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:24181: \$? = $ac_status" >&5 + echo "$as_me:24421: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_type_SLsmg_Color_Type=yes else @@ -24188,7 +24428,7 @@ ac_cv_type_SLsmg_Color_Type=no fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:24191: result: $ac_cv_type_SLsmg_Color_Type" >&5 +echo "$as_me:24431: result: $ac_cv_type_SLsmg_Color_Type" >&5 echo "${ECHO_T}$ac_cv_type_SLsmg_Color_Type" >&6 if test $ac_cv_type_SLsmg_Color_Type = yes; then ac_cv_type_SLsmg_Color_Type=yes @@ -24203,13 +24443,13 @@ EOF fi - echo "$as_me:24206: checking for SLtt_Char_Type" >&5 + echo "$as_me:24446: checking for SLtt_Char_Type" >&5 echo $ECHO_N "checking for SLtt_Char_Type... $ECHO_C" >&6 if test "${ac_cv_type_SLtt_Char_Type+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 24212 "configure" +#line 24452 "configure" #include "confdefs.h" #include <slang.h> @@ -24225,16 +24465,16 @@ if (sizeof (SLtt_Char_Type)) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:24228: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:24468: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:24231: \$? = $ac_status" >&5 + echo "$as_me:24471: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:24234: \"$ac_try\"") >&5 + { (eval echo "$as_me:24474: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:24237: \$? = $ac_status" >&5 + echo "$as_me:24477: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_type_SLtt_Char_Type=yes else @@ -24244,7 +24484,7 @@ ac_cv_type_SLtt_Char_Type=no fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:24247: result: $ac_cv_type_SLtt_Char_Type" >&5 +echo "$as_me:24487: result: $ac_cv_type_SLtt_Char_Type" >&5 echo "${ECHO_T}$ac_cv_type_SLtt_Char_Type" >&6 if test $ac_cv_type_SLtt_Char_Type = yes; then ac_cv_type_SLtt_Char_Type=yes @@ -24263,14 +24503,14 @@ fi ;; esac -echo "$as_me:24266: checking for chtype typedef" >&5 +echo "$as_me:24506: 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 24273 "configure" +#line 24513 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> int @@ -24282,16 +24522,16 @@ chtype foo } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:24285: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:24525: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:24288: \$? = $ac_status" >&5 + echo "$as_me:24528: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:24291: \"$ac_try\"") >&5 + { (eval echo "$as_me:24531: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:24294: \$? = $ac_status" >&5 + echo "$as_me:24534: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_chtype_decl=yes else @@ -24301,21 +24541,21 @@ cf_cv_chtype_decl=no fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:24304: result: $cf_cv_chtype_decl" >&5 +echo "$as_me:24544: 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:24311: checking if chtype is scalar or struct" >&5 + echo "$as_me:24551: 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 24318 "configure" +#line 24558 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> int @@ -24327,16 +24567,16 @@ chtype foo; long x = foo } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:24330: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:24570: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:24333: \$? = $ac_status" >&5 + echo "$as_me:24573: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:24336: \"$ac_try\"") >&5 + { (eval echo "$as_me:24576: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:24339: \$? = $ac_status" >&5 + echo "$as_me:24579: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_chtype_type=scalar else @@ -24346,7 +24586,7 @@ cf_cv_chtype_type=struct fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:24349: result: $cf_cv_chtype_type" >&5 +echo "$as_me:24589: 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 @@ -24356,7 +24596,7 @@ EOF fi fi -echo "$as_me:24359: checking if you want the wide-curses features" >&5 +echo "$as_me:24599: 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. @@ -24373,10 +24613,10 @@ else use_wide_curses=$cf_wide_curses fi; -echo "$as_me:24376: result: $use_wide_curses" >&5 +echo "$as_me:24616: result: $use_wide_curses" >&5 echo "${ECHO_T}$use_wide_curses" >&6 -echo "$as_me:24379: checking if color-style code should be used" >&5 +echo "$as_me:24619: 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. @@ -24396,7 +24636,7 @@ fi; case $use_color_style in no) - echo "$as_me:24399: result: no" >&5 + echo "$as_me:24639: result: no" >&5 echo "${ECHO_T}no" >&6 INSTALL_LSS= ;; @@ -24405,10 +24645,10 @@ echo "${ECHO_T}no" >&6 #define USE_COLOR_STYLE 1 EOF - echo "$as_me:24408: result: yes" >&5 + echo "$as_me:24648: result: yes" >&5 echo "${ECHO_T}yes" >&6 - echo "$as_me:24411: checking for location of style-sheet file" >&5 + echo "$as_me:24651: 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. @@ -24444,7 +24684,7 @@ case ".$withval" in #(vi withval=`echo $withval | sed -e s%NONE%$cf_path_syntax%` ;; *) - { { echo "$as_me:24447: error: expected a pathname, not \"$withval\"" >&5 + { { echo "$as_me:24687: error: expected a pathname, not \"$withval\"" >&5 echo "$as_me: error: expected a pathname, not \"$withval\"" >&2;} { (exit 1); exit 1; }; } ;; @@ -24453,7 +24693,7 @@ esac fi LYNX_LSS_FILE="$withval" - echo "$as_me:24456: result: $LYNX_LSS_FILE" >&5 + echo "$as_me:24696: result: $LYNX_LSS_FILE" >&5 echo "${ECHO_T}$LYNX_LSS_FILE" >&6 test "$LYNX_LSS_FILE" = no && LYNX_LSS_FILE= @@ -24465,7 +24705,7 @@ EOF ;; esac -echo "$as_me:24468: checking for the default configuration-file" >&5 +echo "$as_me:24708: 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. @@ -24501,7 +24741,7 @@ case ".$withval" in #(vi withval=`echo $withval | sed -e s%NONE%$cf_path_syntax%` ;; *) - { { echo "$as_me:24504: error: expected a pathname, not \"$withval\"" >&5 + { { echo "$as_me:24744: error: expected a pathname, not \"$withval\"" >&5 echo "$as_me: error: expected a pathname, not \"$withval\"" >&2;} { (exit 1); exit 1; }; } ;; @@ -24510,7 +24750,7 @@ esac fi LYNX_CFG_FILE="$withval" -echo "$as_me:24513: result: $LYNX_CFG_FILE" >&5 +echo "$as_me:24753: result: $LYNX_CFG_FILE" >&5 echo "${ECHO_T}$LYNX_CFG_FILE" >&6 test "$LYNX_CFG_FILE" = no && LYNX_CFG_FILE= @@ -24518,7 +24758,7 @@ cat >>confdefs.h <<EOF #define LYNX_CFG_FILE "$LYNX_CFG_FILE" EOF -echo "$as_me:24521: checking if htmlized lynx.cfg should be built" >&5 +echo "$as_me:24761: 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. @@ -24535,7 +24775,7 @@ else use_htmlized_cfg=no fi; -echo "$as_me:24538: result: $use_htmlized_cfg" >&5 +echo "$as_me:24778: result: $use_htmlized_cfg" >&5 echo "${ECHO_T}$use_htmlized_cfg" >&6 LYNXCFG_MAKE='' @@ -24543,7 +24783,7 @@ if test $use_htmlized_cfg = no ; then LYNXCFG_MAKE='#' fi -echo "$as_me:24546: checking if local doc directory should be linked to help page" >&5 +echo "$as_me:24786: 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. @@ -24560,7 +24800,7 @@ else use_local_docs=no fi; -echo "$as_me:24563: result: $use_local_docs" >&5 +echo "$as_me:24803: result: $use_local_docs" >&5 echo "${ECHO_T}$use_local_docs" >&6 LYNXDOC_MAKE='' @@ -24568,7 +24808,7 @@ if test $use_local_docs = no ; then LYNXDOC_MAKE='#' fi -echo "$as_me:24571: checking for MIME library directory" >&5 +echo "$as_me:24811: 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. @@ -24604,7 +24844,7 @@ case ".$withval" in #(vi withval=`echo $withval | sed -e s%NONE%$cf_path_syntax%` ;; *) - { { echo "$as_me:24607: error: expected a pathname, not \"$withval\"" >&5 + { { echo "$as_me:24847: error: expected a pathname, not \"$withval\"" >&5 echo "$as_me: error: expected a pathname, not \"$withval\"" >&2;} { (exit 1); exit 1; }; } ;; @@ -24613,14 +24853,14 @@ esac fi MIME_LIBDIR="$withval" -echo "$as_me:24616: result: $MIME_LIBDIR" >&5 +echo "$as_me:24856: 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:24623: checking if locale-charset selection logic should be used" >&5 +echo "$as_me:24863: 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. @@ -24637,7 +24877,7 @@ else use_locale_charset=yes fi; -echo "$as_me:24640: result: $use_locale_charset" >&5 +echo "$as_me:24880: 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 @@ -24645,7 +24885,7 @@ EOF CHARSET_DEFS= -echo "$as_me:24648: checking if you want only a few charsets" >&5 +echo "$as_me:24888: 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. @@ -24657,7 +24897,7 @@ else fi; if test -n "$cf_charsets" ; then - echo "$as_me:24660: result: yes" >&5 + echo "$as_me:24900: result: yes" >&5 echo "${ECHO_T}yes" >&6 cat >>confdefs.h <<\EOF #define ALL_CHARSETS 0 @@ -24670,7 +24910,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}:24673: testing using minimal list of charsets: $cf_min_charsets ..." 1>&5 +echo "${as_me:-configure}:24913: 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'` @@ -24697,28 +24937,28 @@ echo "${as_me:-configure}:24673: testing using minimal list of charsets: $cf_min then test -n "$verbose" && echo " found $cf_charset" 1>&6 -echo "${as_me:-configure}:24700: testing found $cf_charset ..." 1>&5 +echo "${as_me:-configure}:24940: 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}:24706: testing not found $cf_charset ..." 1>&5 +echo "${as_me:-configure}:24946: testing not found $cf_charset ..." 1>&5 fi done else - echo "$as_me:24711: result: no" >&5 + echo "$as_me:24951: result: no" >&5 echo "${ECHO_T}no" >&6 fi -echo "$as_me:24715: checking for ANSI C header files" >&5 +echo "$as_me:24955: 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 24721 "configure" +#line 24961 "configure" #include "confdefs.h" #include <stdlib.h> #include <stdarg.h> @@ -24726,13 +24966,13 @@ else #include <float.h> _ACEOF -if { (eval echo "$as_me:24729: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:24969: \"$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:24735: \$? = $ac_status" >&5 + echo "$as_me:24975: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -24754,7 +24994,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 24757 "configure" +#line 24997 "configure" #include "confdefs.h" #include <string.h> @@ -24772,7 +25012,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 24775 "configure" +#line 25015 "configure" #include "confdefs.h" #include <stdlib.h> @@ -24793,7 +25033,7 @@ if test $ac_cv_header_stdc = yes; then : else cat >conftest.$ac_ext <<_ACEOF -#line 24796 "configure" +#line 25036 "configure" #include "confdefs.h" #include <ctype.h> #if ((' ' & 0x0FF) == 0x020) @@ -24819,15 +25059,15 @@ main () } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:24822: \"$ac_link\"") >&5 +if { (eval echo "$as_me:25062: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:24825: \$? = $ac_status" >&5 + echo "$as_me:25065: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:24827: \"$ac_try\"") >&5 + { (eval echo "$as_me:25067: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:24830: \$? = $ac_status" >&5 + echo "$as_me:25070: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -24840,7 +25080,7 @@ rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext fi fi fi -echo "$as_me:24843: result: $ac_cv_header_stdc" >&5 +echo "$as_me:25083: result: $ac_cv_header_stdc" >&5 echo "${ECHO_T}$ac_cv_header_stdc" >&6 if test $ac_cv_header_stdc = yes; then @@ -24850,13 +25090,13 @@ EOF fi -echo "$as_me:24853: checking whether time.h and sys/time.h may both be included" >&5 +echo "$as_me:25093: 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 24859 "configure" +#line 25099 "configure" #include "confdefs.h" #include <sys/types.h> #include <sys/time.h> @@ -24872,16 +25112,16 @@ return 0; } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:24875: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:25115: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:24878: \$? = $ac_status" >&5 + echo "$as_me:25118: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:24881: \"$ac_try\"") >&5 + { (eval echo "$as_me:25121: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:24884: \$? = $ac_status" >&5 + echo "$as_me:25124: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_header_time=yes else @@ -24891,7 +25131,7 @@ ac_cv_header_time=no fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:24894: result: $ac_cv_header_time" >&5 +echo "$as_me:25134: result: $ac_cv_header_time" >&5 echo "${ECHO_T}$ac_cv_header_time" >&6 if test $ac_cv_header_time = yes; then @@ -24904,13 +25144,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:24907: checking for $ac_hdr that defines DIR" >&5 +echo "$as_me:25147: 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 24913 "configure" +#line 25153 "configure" #include "confdefs.h" #include <sys/types.h> #include <$ac_hdr> @@ -24925,16 +25165,16 @@ return 0; } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:24928: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:25168: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:24931: \$? = $ac_status" >&5 + echo "$as_me:25171: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:24934: \"$ac_try\"") >&5 + { (eval echo "$as_me:25174: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:24937: \$? = $ac_status" >&5 + echo "$as_me:25177: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_Header=yes" else @@ -24944,7 +25184,7 @@ eval "$as_ac_Header=no" fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:24947: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:25187: 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 @@ -24957,7 +25197,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:24960: checking for opendir in -ldir" >&5 + echo "$as_me:25200: 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 @@ -24965,7 +25205,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-ldir $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 24968 "configure" +#line 25208 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -24984,16 +25224,16 @@ opendir (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:24987: \"$ac_link\"") >&5 +if { (eval echo "$as_me:25227: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:24990: \$? = $ac_status" >&5 + echo "$as_me:25230: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:24993: \"$ac_try\"") >&5 + { (eval echo "$as_me:25233: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:24996: \$? = $ac_status" >&5 + echo "$as_me:25236: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_dir_opendir=yes else @@ -25004,14 +25244,14 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:25007: result: $ac_cv_lib_dir_opendir" >&5 +echo "$as_me:25247: 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:25014: checking for opendir in -lx" >&5 + echo "$as_me:25254: 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 @@ -25019,7 +25259,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lx $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 25022 "configure" +#line 25262 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -25038,16 +25278,16 @@ opendir (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:25041: \"$ac_link\"") >&5 +if { (eval echo "$as_me:25281: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:25044: \$? = $ac_status" >&5 + echo "$as_me:25284: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:25047: \"$ac_try\"") >&5 + { (eval echo "$as_me:25287: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25050: \$? = $ac_status" >&5 + echo "$as_me:25290: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_x_opendir=yes else @@ -25058,7 +25298,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:25061: result: $ac_cv_lib_x_opendir" >&5 +echo "$as_me:25301: 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" @@ -25086,23 +25326,23 @@ for ac_header in \ do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` -echo "$as_me:25089: checking for $ac_header" >&5 +echo "$as_me:25329: 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 25095 "configure" +#line 25335 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:25099: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:25339: \"$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:25105: \$? = $ac_status" >&5 + echo "$as_me:25345: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -25121,7 +25361,7 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:25124: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:25364: 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 @@ -25131,14 +25371,14 @@ EOF fi done -echo "$as_me:25134: checking termio.h and termios.h" >&5 +echo "$as_me:25374: 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 25141 "configure" +#line 25381 "configure" #include "confdefs.h" #if HAVE_TERMIO_H @@ -25156,16 +25396,16 @@ putchar (0x0a) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:25159: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:25399: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:25162: \$? = $ac_status" >&5 + echo "$as_me:25402: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:25165: \"$ac_try\"") >&5 + { (eval echo "$as_me:25405: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25168: \$? = $ac_status" >&5 + echo "$as_me:25408: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_termio_and_termios=yes else @@ -25176,20 +25416,20 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:25179: result: $cf_cv_termio_and_termios" >&5 +echo "$as_me:25419: 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:25185: checking for sigaction and structs" >&5 +echo "$as_me:25425: 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 25192 "configure" +#line 25432 "configure" #include "confdefs.h" #include <sys/types.h> @@ -25209,16 +25449,16 @@ struct sigaction act; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:25212: \"$ac_link\"") >&5 +if { (eval echo "$as_me:25452: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:25215: \$? = $ac_status" >&5 + echo "$as_me:25455: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:25218: \"$ac_try\"") >&5 + { (eval echo "$as_me:25458: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25221: \$? = $ac_status" >&5 + echo "$as_me:25461: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_func_sigaction=yes else @@ -25229,7 +25469,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:25232: result: $cf_cv_func_sigaction" >&5 +echo "$as_me:25472: 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 @@ -25238,23 +25478,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:25241: checking for $ac_header" >&5 +echo "$as_me:25481: 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 25247 "configure" +#line 25487 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:25251: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:25491: \"$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:25257: \$? = $ac_status" >&5 + echo "$as_me:25497: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -25273,7 +25513,7 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:25276: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:25516: 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 @@ -25294,23 +25534,23 @@ else for ac_header in wait.h do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` -echo "$as_me:25297: checking for $ac_header" >&5 +echo "$as_me:25537: 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 25303 "configure" +#line 25543 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:25307: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:25547: \"$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:25313: \$? = $ac_status" >&5 + echo "$as_me:25553: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -25329,7 +25569,7 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:25332: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:25572: 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 @@ -25342,23 +25582,23 @@ done for ac_header in waitstatus.h do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` -echo "$as_me:25345: checking for $ac_header" >&5 +echo "$as_me:25585: 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 25351 "configure" +#line 25591 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:25355: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:25595: \"$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:25361: \$? = $ac_status" >&5 + echo "$as_me:25601: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -25377,7 +25617,7 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:25380: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:25620: 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 @@ -25399,14 +25639,14 @@ cf_wait_headers="$cf_wait_headers fi fi -echo "$as_me:25402: checking for union wait" >&5 +echo "$as_me:25642: 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 25409 "configure" +#line 25649 "configure" #include "confdefs.h" $cf_wait_headers int @@ -25422,16 +25662,16 @@ int x; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:25425: \"$ac_link\"") >&5 +if { (eval echo "$as_me:25665: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:25428: \$? = $ac_status" >&5 + echo "$as_me:25668: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:25431: \"$ac_try\"") >&5 + { (eval echo "$as_me:25671: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25434: \$? = $ac_status" >&5 + echo "$as_me:25674: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_type_unionwait=no echo compiles ok w/o union wait 1>&5 @@ -25441,7 +25681,7 @@ else cat conftest.$ac_ext >&5 cat >conftest.$ac_ext <<_ACEOF -#line 25444 "configure" +#line 25684 "configure" #include "confdefs.h" $cf_wait_headers int @@ -25461,16 +25701,16 @@ union wait x; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:25464: \"$ac_link\"") >&5 +if { (eval echo "$as_me:25704: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:25467: \$? = $ac_status" >&5 + echo "$as_me:25707: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:25470: \"$ac_try\"") >&5 + { (eval echo "$as_me:25710: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25473: \$? = $ac_status" >&5 + echo "$as_me:25713: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_type_unionwait=yes echo compiles ok with union wait and possibly macros too 1>&5 @@ -25485,7 +25725,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:25488: result: $cf_cv_type_unionwait" >&5 +echo "$as_me:25728: 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 @@ -25493,14 +25733,14 @@ EOF if test $cf_cv_type_unionwait = yes; then - echo "$as_me:25496: checking if union wait can be used as wait-arg" >&5 + echo "$as_me:25736: 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 25503 "configure" +#line 25743 "configure" #include "confdefs.h" $cf_wait_headers int @@ -25512,16 +25752,16 @@ union wait x; wait(&x) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:25515: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:25755: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:25518: \$? = $ac_status" >&5 + echo "$as_me:25758: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:25521: \"$ac_try\"") >&5 + { (eval echo "$as_me:25761: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25524: \$? = $ac_status" >&5 + echo "$as_me:25764: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_arg_union_wait=yes else @@ -25533,20 +25773,20 @@ rm -f conftest.$ac_objext conftest.$ac_ext fi - echo "$as_me:25536: result: $cf_cv_arg_union_wait" >&5 + echo "$as_me:25776: 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:25542: checking if union wait can be used as waitpid-arg" >&5 + echo "$as_me:25782: 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 25549 "configure" +#line 25789 "configure" #include "confdefs.h" $cf_wait_headers int @@ -25558,16 +25798,16 @@ union wait x; waitpid(0, &x, 0) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:25561: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:25801: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:25564: \$? = $ac_status" >&5 + echo "$as_me:25804: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:25567: \"$ac_try\"") >&5 + { (eval echo "$as_me:25807: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25570: \$? = $ac_status" >&5 + echo "$as_me:25810: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_arg_union_waitpid=yes else @@ -25579,7 +25819,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext fi - echo "$as_me:25582: result: $cf_cv_arg_union_waitpid" >&5 + echo "$as_me:25822: 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 @@ -25587,13 +25827,13 @@ EOF fi -echo "$as_me:25590: checking for uid_t in sys/types.h" >&5 +echo "$as_me:25830: 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 25596 "configure" +#line 25836 "configure" #include "confdefs.h" #include <sys/types.h> @@ -25607,7 +25847,7 @@ fi rm -rf conftest* fi -echo "$as_me:25610: result: $ac_cv_type_uid_t" >&5 +echo "$as_me:25850: 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 @@ -25621,7 +25861,7 @@ EOF fi -echo "$as_me:25624: checking type of array argument to getgroups" >&5 +echo "$as_me:25864: 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 @@ -25630,7 +25870,7 @@ else ac_cv_type_getgroups=cross else cat >conftest.$ac_ext <<_ACEOF -#line 25633 "configure" +#line 25873 "configure" #include "confdefs.h" /* Thanks to Mike Rendell for this test. */ #include <sys/types.h> @@ -25656,15 +25896,15 @@ main () } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:25659: \"$ac_link\"") >&5 +if { (eval echo "$as_me:25899: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:25662: \$? = $ac_status" >&5 + echo "$as_me:25902: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:25664: \"$ac_try\"") >&5 + { (eval echo "$as_me:25904: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25667: \$? = $ac_status" >&5 + echo "$as_me:25907: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_type_getgroups=gid_t else @@ -25677,7 +25917,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 25680 "configure" +#line 25920 "configure" #include "confdefs.h" #include <unistd.h> @@ -25692,20 +25932,20 @@ rm -rf conftest* fi fi -echo "$as_me:25695: result: $ac_cv_type_getgroups" >&5 +echo "$as_me:25935: 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:25702: checking for off_t" >&5 +echo "$as_me:25942: 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 25708 "configure" +#line 25948 "configure" #include "confdefs.h" $ac_includes_default int @@ -25720,16 +25960,16 @@ if (sizeof (off_t)) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:25723: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:25963: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:25726: \$? = $ac_status" >&5 + echo "$as_me:25966: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:25729: \"$ac_try\"") >&5 + { (eval echo "$as_me:25969: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25732: \$? = $ac_status" >&5 + echo "$as_me:25972: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_type_off_t=yes else @@ -25739,7 +25979,7 @@ ac_cv_type_off_t=no fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:25742: result: $ac_cv_type_off_t" >&5 +echo "$as_me:25982: 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 : @@ -25751,13 +25991,13 @@ EOF fi -echo "$as_me:25754: checking for pid_t" >&5 +echo "$as_me:25994: 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 25760 "configure" +#line 26000 "configure" #include "confdefs.h" $ac_includes_default int @@ -25772,16 +26012,16 @@ if (sizeof (pid_t)) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:25775: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:26015: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:25778: \$? = $ac_status" >&5 + echo "$as_me:26018: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:25781: \"$ac_try\"") >&5 + { (eval echo "$as_me:26021: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25784: \$? = $ac_status" >&5 + echo "$as_me:26024: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_type_pid_t=yes else @@ -25791,7 +26031,7 @@ ac_cv_type_pid_t=no fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:25794: result: $ac_cv_type_pid_t" >&5 +echo "$as_me:26034: 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 : @@ -25803,13 +26043,13 @@ EOF fi -echo "$as_me:25806: checking for uid_t in sys/types.h" >&5 +echo "$as_me:26046: 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 25812 "configure" +#line 26052 "configure" #include "confdefs.h" #include <sys/types.h> @@ -25823,7 +26063,7 @@ fi rm -rf conftest* fi -echo "$as_me:25826: result: $ac_cv_type_uid_t" >&5 +echo "$as_me:26066: 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 @@ -25837,13 +26077,13 @@ EOF fi -echo "$as_me:25840: checking for mode_t" >&5 +echo "$as_me:26080: 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 25846 "configure" +#line 26086 "configure" #include "confdefs.h" $ac_includes_default int @@ -25858,16 +26098,16 @@ if (sizeof (mode_t)) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:25861: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:26101: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:25864: \$? = $ac_status" >&5 + echo "$as_me:26104: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:25867: \"$ac_try\"") >&5 + { (eval echo "$as_me:26107: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25870: \$? = $ac_status" >&5 + echo "$as_me:26110: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_type_mode_t=yes else @@ -25877,7 +26117,7 @@ ac_cv_type_mode_t=no fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:25880: result: $ac_cv_type_mode_t" >&5 +echo "$as_me:26120: 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 : @@ -25889,13 +26129,13 @@ EOF fi - echo "$as_me:25892: checking for ssize_t" >&5 + echo "$as_me:26132: checking for ssize_t" >&5 echo $ECHO_N "checking for ssize_t... $ECHO_C" >&6 if test "${ac_cv_type_ssize_t+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 25898 "configure" +#line 26138 "configure" #include "confdefs.h" $ac_includes_default int @@ -25910,16 +26150,16 @@ if (sizeof (ssize_t)) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:25913: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:26153: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:25916: \$? = $ac_status" >&5 + echo "$as_me:26156: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:25919: \"$ac_try\"") >&5 + { (eval echo "$as_me:26159: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25922: \$? = $ac_status" >&5 + echo "$as_me:26162: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_type_ssize_t=yes else @@ -25929,7 +26169,7 @@ ac_cv_type_ssize_t=no fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:25932: result: $ac_cv_type_ssize_t" >&5 +echo "$as_me:26172: result: $ac_cv_type_ssize_t" >&5 echo "${ECHO_T}$ac_cv_type_ssize_t" >&6 if test $ac_cv_type_ssize_t = yes; then ac_cv_type_ssize_t=yes @@ -25944,13 +26184,13 @@ EOF fi - echo "$as_me:25947: checking for socklen_t" >&5 + echo "$as_me:26187: 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 25953 "configure" +#line 26193 "configure" #include "confdefs.h" #include <sys/types.h> @@ -25968,16 +26208,16 @@ if (sizeof (socklen_t)) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:25971: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:26211: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:25974: \$? = $ac_status" >&5 + echo "$as_me:26214: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:25977: \"$ac_try\"") >&5 + { (eval echo "$as_me:26217: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25980: \$? = $ac_status" >&5 + echo "$as_me:26220: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_type_socklen_t=yes else @@ -25987,7 +26227,7 @@ ac_cv_type_socklen_t=no fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:25990: result: $ac_cv_type_socklen_t" >&5 +echo "$as_me:26230: 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 @@ -26002,7 +26242,7 @@ EOF fi -echo "$as_me:26005: checking for long long type" >&5 +echo "$as_me:26245: 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 @@ -26033,7 +26273,7 @@ _CFEOF rm -f conftest* fi -echo "$as_me:26036: result: $cf_cv_type_long_long" >&5 +echo "$as_me:26276: 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 @@ -26043,14 +26283,14 @@ EOF fi -echo "$as_me:26046: checking for tm.tm_gmtoff" >&5 +echo "$as_me:26286: 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 26053 "configure" +#line 26293 "configure" #include "confdefs.h" #ifdef TIME_WITH_SYS_TIME @@ -26075,16 +26315,16 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:26078: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:26318: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:26081: \$? = $ac_status" >&5 + echo "$as_me:26321: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:26084: \"$ac_try\"") >&5 + { (eval echo "$as_me:26324: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:26087: \$? = $ac_status" >&5 + echo "$as_me:26327: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_tm_gmtoff=yes else @@ -26095,19 +26335,19 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:26098: result: $cf_cv_tm_gmtoff" >&5 +echo "$as_me:26338: 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:26104: checking for int" >&5 +echo "$as_me:26344: 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 26110 "configure" +#line 26350 "configure" #include "confdefs.h" $ac_includes_default int @@ -26122,16 +26362,16 @@ if (sizeof (int)) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:26125: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:26365: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:26128: \$? = $ac_status" >&5 + echo "$as_me:26368: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:26131: \"$ac_try\"") >&5 + { (eval echo "$as_me:26371: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:26134: \$? = $ac_status" >&5 + echo "$as_me:26374: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_type_int=yes else @@ -26141,10 +26381,10 @@ ac_cv_type_int=no fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:26144: result: $ac_cv_type_int" >&5 +echo "$as_me:26384: result: $ac_cv_type_int" >&5 echo "${ECHO_T}$ac_cv_type_int" >&6 -echo "$as_me:26147: checking size of int" >&5 +echo "$as_me:26387: 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 @@ -26153,7 +26393,7 @@ else if test "$cross_compiling" = yes; then # Depending upon the size, compute the lo and hi bounds. cat >conftest.$ac_ext <<_ACEOF -#line 26156 "configure" +#line 26396 "configure" #include "confdefs.h" $ac_includes_default int @@ -26165,21 +26405,21 @@ int _array_ [1 - 2 * !((sizeof (int)) >= 0)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:26168: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:26408: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:26171: \$? = $ac_status" >&5 + echo "$as_me:26411: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:26174: \"$ac_try\"") >&5 + { (eval echo "$as_me:26414: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:26177: \$? = $ac_status" >&5 + echo "$as_me:26417: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_lo=0 ac_mid=0 while :; do cat >conftest.$ac_ext <<_ACEOF -#line 26182 "configure" +#line 26422 "configure" #include "confdefs.h" $ac_includes_default int @@ -26191,16 +26431,16 @@ int _array_ [1 - 2 * !((sizeof (int)) <= $ac_mid)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:26194: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:26434: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:26197: \$? = $ac_status" >&5 + echo "$as_me:26437: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:26200: \"$ac_try\"") >&5 + { (eval echo "$as_me:26440: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:26203: \$? = $ac_status" >&5 + echo "$as_me:26443: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_hi=$ac_mid; break else @@ -26216,7 +26456,7 @@ cat conftest.$ac_ext >&5 ac_hi=-1 ac_mid=-1 while :; do cat >conftest.$ac_ext <<_ACEOF -#line 26219 "configure" +#line 26459 "configure" #include "confdefs.h" $ac_includes_default int @@ -26228,16 +26468,16 @@ int _array_ [1 - 2 * !((sizeof (int)) >= $ac_mid)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:26231: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:26471: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:26234: \$? = $ac_status" >&5 + echo "$as_me:26474: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:26237: \"$ac_try\"") >&5 + { (eval echo "$as_me:26477: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:26240: \$? = $ac_status" >&5 + echo "$as_me:26480: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_lo=$ac_mid; break else @@ -26253,7 +26493,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 26256 "configure" +#line 26496 "configure" #include "confdefs.h" $ac_includes_default int @@ -26265,16 +26505,16 @@ int _array_ [1 - 2 * !((sizeof (int)) <= $ac_mid)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:26268: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:26508: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:26271: \$? = $ac_status" >&5 + echo "$as_me:26511: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:26274: \"$ac_try\"") >&5 + { (eval echo "$as_me:26514: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:26277: \$? = $ac_status" >&5 + echo "$as_me:26517: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_hi=$ac_mid else @@ -26287,12 +26527,12 @@ done ac_cv_sizeof_int=$ac_lo else if test "$cross_compiling" = yes; then - { { echo "$as_me:26290: error: cannot run test program while cross compiling" >&5 + { { echo "$as_me:26530: 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 26295 "configure" +#line 26535 "configure" #include "confdefs.h" $ac_includes_default int @@ -26308,15 +26548,15 @@ fclose (f); } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:26311: \"$ac_link\"") >&5 +if { (eval echo "$as_me:26551: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:26314: \$? = $ac_status" >&5 + echo "$as_me:26554: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:26316: \"$ac_try\"") >&5 + { (eval echo "$as_me:26556: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:26319: \$? = $ac_status" >&5 + echo "$as_me:26559: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_sizeof_int=`cat conftest.val` else @@ -26332,19 +26572,19 @@ else ac_cv_sizeof_int=0 fi fi -echo "$as_me:26335: result: $ac_cv_sizeof_int" >&5 +echo "$as_me:26575: 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:26341: checking for long" >&5 +echo "$as_me:26581: 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 26347 "configure" +#line 26587 "configure" #include "confdefs.h" $ac_includes_default int @@ -26359,16 +26599,16 @@ if (sizeof (long)) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:26362: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:26602: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:26365: \$? = $ac_status" >&5 + echo "$as_me:26605: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:26368: \"$ac_try\"") >&5 + { (eval echo "$as_me:26608: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:26371: \$? = $ac_status" >&5 + echo "$as_me:26611: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_type_long=yes else @@ -26378,10 +26618,10 @@ ac_cv_type_long=no fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:26381: result: $ac_cv_type_long" >&5 +echo "$as_me:26621: result: $ac_cv_type_long" >&5 echo "${ECHO_T}$ac_cv_type_long" >&6 -echo "$as_me:26384: checking size of long" >&5 +echo "$as_me:26624: 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 @@ -26390,7 +26630,7 @@ else if test "$cross_compiling" = yes; then # Depending upon the size, compute the lo and hi bounds. cat >conftest.$ac_ext <<_ACEOF -#line 26393 "configure" +#line 26633 "configure" #include "confdefs.h" $ac_includes_default int @@ -26402,21 +26642,21 @@ int _array_ [1 - 2 * !((sizeof (long)) >= 0)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:26405: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:26645: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:26408: \$? = $ac_status" >&5 + echo "$as_me:26648: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:26411: \"$ac_try\"") >&5 + { (eval echo "$as_me:26651: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:26414: \$? = $ac_status" >&5 + echo "$as_me:26654: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_lo=0 ac_mid=0 while :; do cat >conftest.$ac_ext <<_ACEOF -#line 26419 "configure" +#line 26659 "configure" #include "confdefs.h" $ac_includes_default int @@ -26428,16 +26668,16 @@ int _array_ [1 - 2 * !((sizeof (long)) <= $ac_mid)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:26431: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:26671: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:26434: \$? = $ac_status" >&5 + echo "$as_me:26674: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:26437: \"$ac_try\"") >&5 + { (eval echo "$as_me:26677: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:26440: \$? = $ac_status" >&5 + echo "$as_me:26680: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_hi=$ac_mid; break else @@ -26453,7 +26693,7 @@ cat conftest.$ac_ext >&5 ac_hi=-1 ac_mid=-1 while :; do cat >conftest.$ac_ext <<_ACEOF -#line 26456 "configure" +#line 26696 "configure" #include "confdefs.h" $ac_includes_default int @@ -26465,16 +26705,16 @@ int _array_ [1 - 2 * !((sizeof (long)) >= $ac_mid)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:26468: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:26708: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:26471: \$? = $ac_status" >&5 + echo "$as_me:26711: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:26474: \"$ac_try\"") >&5 + { (eval echo "$as_me:26714: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:26477: \$? = $ac_status" >&5 + echo "$as_me:26717: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_lo=$ac_mid; break else @@ -26490,7 +26730,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 26493 "configure" +#line 26733 "configure" #include "confdefs.h" $ac_includes_default int @@ -26502,16 +26742,16 @@ int _array_ [1 - 2 * !((sizeof (long)) <= $ac_mid)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:26505: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:26745: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:26508: \$? = $ac_status" >&5 + echo "$as_me:26748: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:26511: \"$ac_try\"") >&5 + { (eval echo "$as_me:26751: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:26514: \$? = $ac_status" >&5 + echo "$as_me:26754: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_hi=$ac_mid else @@ -26524,12 +26764,12 @@ done ac_cv_sizeof_long=$ac_lo else if test "$cross_compiling" = yes; then - { { echo "$as_me:26527: error: cannot run test program while cross compiling" >&5 + { { echo "$as_me:26767: 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 26532 "configure" +#line 26772 "configure" #include "confdefs.h" $ac_includes_default int @@ -26545,15 +26785,15 @@ fclose (f); } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:26548: \"$ac_link\"") >&5 +if { (eval echo "$as_me:26788: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:26551: \$? = $ac_status" >&5 + echo "$as_me:26791: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:26553: \"$ac_try\"") >&5 + { (eval echo "$as_me:26793: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:26556: \$? = $ac_status" >&5 + echo "$as_me:26796: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_sizeof_long=`cat conftest.val` else @@ -26569,19 +26809,19 @@ else ac_cv_sizeof_long=0 fi fi -echo "$as_me:26572: result: $ac_cv_sizeof_long" >&5 +echo "$as_me:26812: 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:26578: checking for off_t" >&5 +echo "$as_me:26818: 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 26584 "configure" +#line 26824 "configure" #include "confdefs.h" $ac_includes_default int @@ -26596,16 +26836,16 @@ if (sizeof (off_t)) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:26599: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:26839: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:26602: \$? = $ac_status" >&5 + echo "$as_me:26842: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:26605: \"$ac_try\"") >&5 + { (eval echo "$as_me:26845: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:26608: \$? = $ac_status" >&5 + echo "$as_me:26848: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_type_off_t=yes else @@ -26615,10 +26855,10 @@ ac_cv_type_off_t=no fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:26618: result: $ac_cv_type_off_t" >&5 +echo "$as_me:26858: result: $ac_cv_type_off_t" >&5 echo "${ECHO_T}$ac_cv_type_off_t" >&6 -echo "$as_me:26621: checking size of off_t" >&5 +echo "$as_me:26861: 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 @@ -26627,7 +26867,7 @@ else if test "$cross_compiling" = yes; then # Depending upon the size, compute the lo and hi bounds. cat >conftest.$ac_ext <<_ACEOF -#line 26630 "configure" +#line 26870 "configure" #include "confdefs.h" $ac_includes_default int @@ -26639,21 +26879,21 @@ int _array_ [1 - 2 * !((sizeof (off_t)) >= 0)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:26642: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:26882: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:26645: \$? = $ac_status" >&5 + echo "$as_me:26885: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:26648: \"$ac_try\"") >&5 + { (eval echo "$as_me:26888: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:26651: \$? = $ac_status" >&5 + echo "$as_me:26891: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_lo=0 ac_mid=0 while :; do cat >conftest.$ac_ext <<_ACEOF -#line 26656 "configure" +#line 26896 "configure" #include "confdefs.h" $ac_includes_default int @@ -26665,16 +26905,16 @@ int _array_ [1 - 2 * !((sizeof (off_t)) <= $ac_mid)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:26668: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:26908: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:26671: \$? = $ac_status" >&5 + echo "$as_me:26911: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:26674: \"$ac_try\"") >&5 + { (eval echo "$as_me:26914: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:26677: \$? = $ac_status" >&5 + echo "$as_me:26917: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_hi=$ac_mid; break else @@ -26690,7 +26930,7 @@ cat conftest.$ac_ext >&5 ac_hi=-1 ac_mid=-1 while :; do cat >conftest.$ac_ext <<_ACEOF -#line 26693 "configure" +#line 26933 "configure" #include "confdefs.h" $ac_includes_default int @@ -26702,16 +26942,16 @@ int _array_ [1 - 2 * !((sizeof (off_t)) >= $ac_mid)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:26705: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:26945: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:26708: \$? = $ac_status" >&5 + echo "$as_me:26948: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:26711: \"$ac_try\"") >&5 + { (eval echo "$as_me:26951: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:26714: \$? = $ac_status" >&5 + echo "$as_me:26954: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_lo=$ac_mid; break else @@ -26727,7 +26967,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 26730 "configure" +#line 26970 "configure" #include "confdefs.h" $ac_includes_default int @@ -26739,16 +26979,16 @@ int _array_ [1 - 2 * !((sizeof (off_t)) <= $ac_mid)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:26742: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:26982: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:26745: \$? = $ac_status" >&5 + echo "$as_me:26985: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:26748: \"$ac_try\"") >&5 + { (eval echo "$as_me:26988: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:26751: \$? = $ac_status" >&5 + echo "$as_me:26991: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_hi=$ac_mid else @@ -26761,12 +27001,12 @@ done ac_cv_sizeof_off_t=$ac_lo else if test "$cross_compiling" = yes; then - { { echo "$as_me:26764: error: cannot run test program while cross compiling" >&5 + { { echo "$as_me:27004: 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 26769 "configure" +#line 27009 "configure" #include "confdefs.h" $ac_includes_default int @@ -26782,15 +27022,15 @@ fclose (f); } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:26785: \"$ac_link\"") >&5 +if { (eval echo "$as_me:27025: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:26788: \$? = $ac_status" >&5 + echo "$as_me:27028: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:26790: \"$ac_try\"") >&5 + { (eval echo "$as_me:27030: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:26793: \$? = $ac_status" >&5 + echo "$as_me:27033: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_sizeof_off_t=`cat conftest.val` else @@ -26806,19 +27046,19 @@ else ac_cv_sizeof_off_t=0 fi fi -echo "$as_me:26809: result: $ac_cv_sizeof_off_t" >&5 +echo "$as_me:27049: 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:26815: checking for time_t" >&5 +echo "$as_me:27055: 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 26821 "configure" +#line 27061 "configure" #include "confdefs.h" $ac_includes_default int @@ -26833,16 +27073,16 @@ if (sizeof (time_t)) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:26836: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:27076: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:26839: \$? = $ac_status" >&5 + echo "$as_me:27079: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:26842: \"$ac_try\"") >&5 + { (eval echo "$as_me:27082: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:26845: \$? = $ac_status" >&5 + echo "$as_me:27085: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_type_time_t=yes else @@ -26852,10 +27092,10 @@ ac_cv_type_time_t=no fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:26855: result: $ac_cv_type_time_t" >&5 +echo "$as_me:27095: result: $ac_cv_type_time_t" >&5 echo "${ECHO_T}$ac_cv_type_time_t" >&6 -echo "$as_me:26858: checking size of time_t" >&5 +echo "$as_me:27098: 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 @@ -26864,7 +27104,7 @@ else if test "$cross_compiling" = yes; then # Depending upon the size, compute the lo and hi bounds. cat >conftest.$ac_ext <<_ACEOF -#line 26867 "configure" +#line 27107 "configure" #include "confdefs.h" $ac_includes_default int @@ -26876,21 +27116,21 @@ int _array_ [1 - 2 * !((sizeof (time_t)) >= 0)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:26879: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:27119: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:26882: \$? = $ac_status" >&5 + echo "$as_me:27122: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:26885: \"$ac_try\"") >&5 + { (eval echo "$as_me:27125: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:26888: \$? = $ac_status" >&5 + echo "$as_me:27128: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_lo=0 ac_mid=0 while :; do cat >conftest.$ac_ext <<_ACEOF -#line 26893 "configure" +#line 27133 "configure" #include "confdefs.h" $ac_includes_default int @@ -26902,16 +27142,16 @@ int _array_ [1 - 2 * !((sizeof (time_t)) <= $ac_mid)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:26905: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:27145: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:26908: \$? = $ac_status" >&5 + echo "$as_me:27148: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:26911: \"$ac_try\"") >&5 + { (eval echo "$as_me:27151: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:26914: \$? = $ac_status" >&5 + echo "$as_me:27154: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_hi=$ac_mid; break else @@ -26927,7 +27167,7 @@ cat conftest.$ac_ext >&5 ac_hi=-1 ac_mid=-1 while :; do cat >conftest.$ac_ext <<_ACEOF -#line 26930 "configure" +#line 27170 "configure" #include "confdefs.h" $ac_includes_default int @@ -26939,16 +27179,16 @@ int _array_ [1 - 2 * !((sizeof (time_t)) >= $ac_mid)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:26942: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:27182: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:26945: \$? = $ac_status" >&5 + echo "$as_me:27185: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:26948: \"$ac_try\"") >&5 + { (eval echo "$as_me:27188: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:26951: \$? = $ac_status" >&5 + echo "$as_me:27191: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_lo=$ac_mid; break else @@ -26964,7 +27204,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 26967 "configure" +#line 27207 "configure" #include "confdefs.h" $ac_includes_default int @@ -26976,16 +27216,16 @@ int _array_ [1 - 2 * !((sizeof (time_t)) <= $ac_mid)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:26979: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:27219: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:26982: \$? = $ac_status" >&5 + echo "$as_me:27222: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:26985: \"$ac_try\"") >&5 + { (eval echo "$as_me:27225: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:26988: \$? = $ac_status" >&5 + echo "$as_me:27228: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_hi=$ac_mid else @@ -26998,12 +27238,12 @@ done ac_cv_sizeof_time_t=$ac_lo else if test "$cross_compiling" = yes; then - { { echo "$as_me:27001: error: cannot run test program while cross compiling" >&5 + { { echo "$as_me:27241: 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 27006 "configure" +#line 27246 "configure" #include "confdefs.h" $ac_includes_default int @@ -27019,15 +27259,15 @@ fclose (f); } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:27022: \"$ac_link\"") >&5 +if { (eval echo "$as_me:27262: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:27025: \$? = $ac_status" >&5 + echo "$as_me:27265: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:27027: \"$ac_try\"") >&5 + { (eval echo "$as_me:27267: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27030: \$? = $ac_status" >&5 + echo "$as_me:27270: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_sizeof_time_t=`cat conftest.val` else @@ -27043,7 +27283,7 @@ else ac_cv_sizeof_time_t=0 fi fi -echo "$as_me:27046: result: $ac_cv_sizeof_time_t" >&5 +echo "$as_me:27286: 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 @@ -27051,13 +27291,13 @@ EOF # The Ultrix 4.2 mips builtin alloca declared by alloca.h only works # for constant arguments. Useless! -echo "$as_me:27054: checking for working alloca.h" >&5 +echo "$as_me:27294: 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 27060 "configure" +#line 27300 "configure" #include "confdefs.h" #include <alloca.h> int @@ -27069,16 +27309,16 @@ char *p = (char *) alloca (2 * sizeof (int)); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:27072: \"$ac_link\"") >&5 +if { (eval echo "$as_me:27312: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:27075: \$? = $ac_status" >&5 + echo "$as_me:27315: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:27078: \"$ac_try\"") >&5 + { (eval echo "$as_me:27318: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27081: \$? = $ac_status" >&5 + echo "$as_me:27321: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_working_alloca_h=yes else @@ -27088,7 +27328,7 @@ ac_cv_working_alloca_h=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:27091: result: $ac_cv_working_alloca_h" >&5 +echo "$as_me:27331: 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 @@ -27098,13 +27338,13 @@ EOF fi -echo "$as_me:27101: checking for alloca" >&5 +echo "$as_me:27341: 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 27107 "configure" +#line 27347 "configure" #include "confdefs.h" #ifdef __GNUC__ # define alloca __builtin_alloca @@ -27136,16 +27376,16 @@ char *p = (char *) alloca (1); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:27139: \"$ac_link\"") >&5 +if { (eval echo "$as_me:27379: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:27142: \$? = $ac_status" >&5 + echo "$as_me:27382: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:27145: \"$ac_try\"") >&5 + { (eval echo "$as_me:27385: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27148: \$? = $ac_status" >&5 + echo "$as_me:27388: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_alloca_works=yes else @@ -27155,7 +27395,7 @@ ac_cv_func_alloca_works=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:27158: result: $ac_cv_func_alloca_works" >&5 +echo "$as_me:27398: 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 @@ -27176,13 +27416,13 @@ cat >>confdefs.h <<\EOF #define C_ALLOCA 1 EOF -echo "$as_me:27179: checking whether \`alloca.c' needs Cray hooks" >&5 +echo "$as_me:27419: 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 27185 "configure" +#line 27425 "configure" #include "confdefs.h" #if defined(CRAY) && ! defined(CRAY2) webecray @@ -27200,18 +27440,18 @@ fi rm -rf conftest* fi -echo "$as_me:27203: result: $ac_cv_os_cray" >&5 +echo "$as_me:27443: 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:27208: checking for $ac_func" >&5 +echo "$as_me:27448: 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 27214 "configure" +#line 27454 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. */ @@ -27242,16 +27482,16 @@ f = $ac_func; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:27245: \"$ac_link\"") >&5 +if { (eval echo "$as_me:27485: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:27248: \$? = $ac_status" >&5 + echo "$as_me:27488: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:27251: \"$ac_try\"") >&5 + { (eval echo "$as_me:27491: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27254: \$? = $ac_status" >&5 + echo "$as_me:27494: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else @@ -27261,7 +27501,7 @@ eval "$as_ac_var=no" fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:27264: result: `eval echo '${'$as_ac_var'}'`" >&5 +echo "$as_me:27504: 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 @@ -27275,7 +27515,7 @@ fi done fi -echo "$as_me:27278: checking stack direction for C alloca" >&5 +echo "$as_me:27518: 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 @@ -27284,7 +27524,7 @@ else ac_cv_c_stack_direction=0 else cat >conftest.$ac_ext <<_ACEOF -#line 27287 "configure" +#line 27527 "configure" #include "confdefs.h" int find_stack_direction () @@ -27307,15 +27547,15 @@ main () } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:27310: \"$ac_link\"") >&5 +if { (eval echo "$as_me:27550: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:27313: \$? = $ac_status" >&5 + echo "$as_me:27553: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:27315: \"$ac_try\"") >&5 + { (eval echo "$as_me:27555: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27318: \$? = $ac_status" >&5 + echo "$as_me:27558: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_c_stack_direction=1 else @@ -27327,7 +27567,7 @@ fi rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext fi fi -echo "$as_me:27330: result: $ac_cv_c_stack_direction" >&5 +echo "$as_me:27570: result: $ac_cv_c_stack_direction" >&5 echo "${ECHO_T}$ac_cv_c_stack_direction" >&6 cat >>confdefs.h <<EOF @@ -27339,23 +27579,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:27342: checking for $ac_header" >&5 +echo "$as_me:27582: 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 27348 "configure" +#line 27588 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:27352: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:27592: \"$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:27358: \$? = $ac_status" >&5 + echo "$as_me:27598: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -27374,7 +27614,7 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:27377: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:27617: 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 @@ -27387,13 +27627,13 @@ done for ac_func in fork vfork do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` -echo "$as_me:27390: checking for $ac_func" >&5 +echo "$as_me:27630: 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 27396 "configure" +#line 27636 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. */ @@ -27424,16 +27664,16 @@ f = $ac_func; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:27427: \"$ac_link\"") >&5 +if { (eval echo "$as_me:27667: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:27430: \$? = $ac_status" >&5 + echo "$as_me:27670: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:27433: \"$ac_try\"") >&5 + { (eval echo "$as_me:27673: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27436: \$? = $ac_status" >&5 + echo "$as_me:27676: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else @@ -27443,7 +27683,7 @@ eval "$as_ac_var=no" fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:27446: result: `eval echo '${'$as_ac_var'}'`" >&5 +echo "$as_me:27686: 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 @@ -27455,7 +27695,7 @@ done ac_cv_func_fork_works=$ac_cv_func_fork if test "x$ac_cv_func_fork" = xyes; then - echo "$as_me:27458: checking for working fork" >&5 + echo "$as_me:27698: 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 @@ -27478,15 +27718,15 @@ else } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:27481: \"$ac_link\"") >&5 +if { (eval echo "$as_me:27721: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:27484: \$? = $ac_status" >&5 + echo "$as_me:27724: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:27486: \"$ac_try\"") >&5 + { (eval echo "$as_me:27726: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27489: \$? = $ac_status" >&5 + echo "$as_me:27729: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_fork_works=yes else @@ -27498,7 +27738,7 @@ fi rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext fi fi -echo "$as_me:27501: result: $ac_cv_func_fork_works" >&5 +echo "$as_me:27741: result: $ac_cv_func_fork_works" >&5 echo "${ECHO_T}$ac_cv_func_fork_works" >&6 fi @@ -27512,12 +27752,12 @@ if test "x$ac_cv_func_fork_works" = xcross; then ac_cv_func_fork_works=yes ;; esac - { echo "$as_me:27515: WARNING: CROSS: Result $ac_cv_func_fork_works guessed due to cross-compiling." >&5 + { echo "$as_me:27755: 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:27520: checking for working vfork" >&5 + echo "$as_me:27760: 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 @@ -27526,7 +27766,7 @@ else ac_cv_func_vfork_works=cross else cat >conftest.$ac_ext <<_ACEOF -#line 27529 "configure" +#line 27769 "configure" #include "confdefs.h" /* Thanks to Paul Eggert for this test. */ #include <stdio.h> @@ -27623,15 +27863,15 @@ main () } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:27626: \"$ac_link\"") >&5 +if { (eval echo "$as_me:27866: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:27629: \$? = $ac_status" >&5 + echo "$as_me:27869: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:27631: \"$ac_try\"") >&5 + { (eval echo "$as_me:27871: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27634: \$? = $ac_status" >&5 + echo "$as_me:27874: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_vfork_works=yes else @@ -27643,13 +27883,13 @@ fi rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext fi fi -echo "$as_me:27646: result: $ac_cv_func_vfork_works" >&5 +echo "$as_me:27886: 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:27652: WARNING: CROSS: Result $ac_cv_func_vfork_works guessed due to cross-compiling." >&5 + { echo "$as_me:27892: 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 @@ -27674,14 +27914,14 @@ EOF fi -echo "$as_me:27677: checking if we should use fcntl or ioctl" >&5 +echo "$as_me:27917: 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 27684 "configure" +#line 27924 "configure" #include "confdefs.h" #include <sys/types.h> @@ -27698,16 +27938,16 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:27701: \"$ac_link\"") >&5 +if { (eval echo "$as_me:27941: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:27704: \$? = $ac_status" >&5 + echo "$as_me:27944: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:27707: \"$ac_try\"") >&5 + { (eval echo "$as_me:27947: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27710: \$? = $ac_status" >&5 + echo "$as_me:27950: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_fionbio=ioctl else @@ -27715,7 +27955,7 @@ else cat conftest.$ac_ext >&5 cat >conftest.$ac_ext <<_ACEOF -#line 27718 "configure" +#line 27958 "configure" #include "confdefs.h" #include <sys/types.h> @@ -27737,16 +27977,16 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:27740: \"$ac_link\"") >&5 +if { (eval echo "$as_me:27980: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:27743: \$? = $ac_status" >&5 + echo "$as_me:27983: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:27746: \"$ac_try\"") >&5 + { (eval echo "$as_me:27986: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27749: \$? = $ac_status" >&5 + echo "$as_me:27989: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_fionbio=fcntl else @@ -27759,20 +27999,20 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:27762: result: $cf_cv_fionbio" >&5 +echo "$as_me:28002: 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:27768: checking for broken/missing definition of remove" >&5 +echo "$as_me:28008: 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 27775 "configure" +#line 28015 "configure" #include "confdefs.h" #include <stdio.h> int @@ -27784,23 +28024,23 @@ remove("dummy") } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:27787: \"$ac_link\"") >&5 +if { (eval echo "$as_me:28027: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:27790: \$? = $ac_status" >&5 + echo "$as_me:28030: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:27793: \"$ac_try\"") >&5 + { (eval echo "$as_me:28033: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27796: \$? = $ac_status" >&5 + echo "$as_me:28036: \$? = $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 27803 "configure" +#line 28043 "configure" #include "confdefs.h" #include <stdio.h> int __unlink(name) { return unlink(name); } @@ -27813,16 +28053,16 @@ remove("dummy") } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:27816: \"$ac_link\"") >&5 +if { (eval echo "$as_me:28056: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:27819: \$? = $ac_status" >&5 + echo "$as_me:28059: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:27822: \"$ac_try\"") >&5 + { (eval echo "$as_me:28062: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27825: \$? = $ac_status" >&5 + echo "$as_me:28065: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_baddef_remove=yes else @@ -27837,20 +28077,20 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:27840: result: $cf_cv_baddef_remove" >&5 +echo "$as_me:28080: 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:27846: checking for lstat" >&5 +echo "$as_me:28086: 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 27853 "configure" +#line 28093 "configure" #include "confdefs.h" #include <sys/types.h> @@ -27864,16 +28104,16 @@ lstat(".", (struct stat *)0) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:27867: \"$ac_link\"") >&5 +if { (eval echo "$as_me:28107: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:27870: \$? = $ac_status" >&5 + echo "$as_me:28110: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:27873: \"$ac_try\"") >&5 + { (eval echo "$as_me:28113: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27876: \$? = $ac_status" >&5 + echo "$as_me:28116: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_lstat=yes else @@ -27885,7 +28125,7 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:27888: result: $ac_cv_func_lstat " >&5 +echo "$as_me:28128: 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 @@ -27918,13 +28158,13 @@ for ac_func in \ do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` -echo "$as_me:27921: checking for $ac_func" >&5 +echo "$as_me:28161: 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 27927 "configure" +#line 28167 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. */ @@ -27955,16 +28195,16 @@ f = $ac_func; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:27958: \"$ac_link\"") >&5 +if { (eval echo "$as_me:28198: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:27961: \$? = $ac_status" >&5 + echo "$as_me:28201: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:27964: \"$ac_try\"") >&5 + { (eval echo "$as_me:28204: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27967: \$? = $ac_status" >&5 + echo "$as_me:28207: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else @@ -27974,7 +28214,7 @@ eval "$as_ac_var=no" fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:27977: result: `eval echo '${'$as_ac_var'}'`" >&5 +echo "$as_me:28217: 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 @@ -27990,13 +28230,13 @@ for ac_func in \ do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` -echo "$as_me:27993: checking for $ac_func" >&5 +echo "$as_me:28233: 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 27999 "configure" +#line 28239 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. */ @@ -28027,16 +28267,16 @@ f = $ac_func; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:28030: \"$ac_link\"") >&5 +if { (eval echo "$as_me:28270: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:28033: \$? = $ac_status" >&5 + echo "$as_me:28273: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:28036: \"$ac_try\"") >&5 + { (eval echo "$as_me:28276: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28039: \$? = $ac_status" >&5 + echo "$as_me:28279: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else @@ -28046,7 +28286,7 @@ eval "$as_ac_var=no" fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:28049: result: `eval echo '${'$as_ac_var'}'`" >&5 +echo "$as_me:28289: 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 @@ -28058,7 +28298,7 @@ else fi done -echo "$as_me:28061: checking for random-integer functions" >&5 +echo "$as_me:28301: 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 @@ -28078,7 +28318,7 @@ do esac cat >conftest.$ac_ext <<_ACEOF -#line 28081 "configure" +#line 28321 "configure" #include "confdefs.h" #ifdef HAVE_STDLIB_H @@ -28097,16 +28337,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:28100: \"$ac_link\"") >&5 +if { (eval echo "$as_me:28340: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:28103: \$? = $ac_status" >&5 + echo "$as_me:28343: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:28106: \"$ac_try\"") >&5 + { (eval echo "$as_me:28346: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28109: \$? = $ac_status" >&5 + echo "$as_me:28349: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_srand_func=$cf_func break @@ -28118,10 +28358,10 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext done fi -echo "$as_me:28121: result: $cf_cv_srand_func" >&5 +echo "$as_me:28361: 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:28124: checking for range of random-integers" >&5 + echo "$as_me:28364: 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 @@ -28142,7 +28382,7 @@ else ;; esac cat >conftest.$ac_ext <<_ACEOF -#line 28145 "configure" +#line 28385 "configure" #include "confdefs.h" #ifdef HAVE_STDLIB_H @@ -28161,16 +28401,16 @@ long x = $cf_cv_rand_max } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:28164: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:28404: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:28167: \$? = $ac_status" >&5 + echo "$as_me:28407: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:28170: \"$ac_try\"") >&5 + { (eval echo "$as_me:28410: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28173: \$? = $ac_status" >&5 + echo "$as_me:28413: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -28181,15 +28421,15 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:28184: result: $cf_cv_rand_max" >&5 +echo "$as_me:28424: result: $cf_cv_rand_max" >&5 echo "${ECHO_T}$cf_cv_rand_max" >&6 case $cf_cv_srand_func in */arc4random) - echo "$as_me:28189: checking if <bsd/stdlib.h> should be included" >&5 + echo "$as_me:28429: checking if <bsd/stdlib.h> should be included" >&5 echo $ECHO_N "checking if <bsd/stdlib.h> should be included... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF -#line 28192 "configure" +#line 28432 "configure" #include "confdefs.h" #include <bsd/stdlib.h> int @@ -28202,23 +28442,23 @@ void *arc4random(int); } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:28205: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:28445: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:28208: \$? = $ac_status" >&5 + echo "$as_me:28448: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:28211: \"$ac_try\"") >&5 + { (eval echo "$as_me:28451: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28214: \$? = $ac_status" >&5 + echo "$as_me:28454: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_bsd_stdlib_h=no else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 cat >conftest.$ac_ext <<_ACEOF -#line 28221 "configure" +#line 28461 "configure" #include "confdefs.h" #include <bsd/stdlib.h> int @@ -28230,16 +28470,16 @@ unsigned x = arc4random() } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:28233: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:28473: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:28236: \$? = $ac_status" >&5 + echo "$as_me:28476: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:28239: \"$ac_try\"") >&5 + { (eval echo "$as_me:28479: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28242: \$? = $ac_status" >&5 + echo "$as_me:28482: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_bsd_stdlib_h=yes else @@ -28250,7 +28490,7 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi rm -f conftest.$ac_objext conftest.$ac_ext - echo "$as_me:28253: result: $cf_bsd_stdlib_h" >&5 + echo "$as_me:28493: result: $cf_bsd_stdlib_h" >&5 echo "${ECHO_T}$cf_bsd_stdlib_h" >&6 if test "$cf_bsd_stdlib_h" = yes then @@ -28259,10 +28499,10 @@ echo "${ECHO_T}$cf_bsd_stdlib_h" >&6 EOF else - echo "$as_me:28262: checking if <bsd/random.h> should be included" >&5 + echo "$as_me:28502: checking if <bsd/random.h> should be included" >&5 echo $ECHO_N "checking if <bsd/random.h> should be included... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF -#line 28265 "configure" +#line 28505 "configure" #include "confdefs.h" #include <bsd/random.h> int @@ -28275,23 +28515,23 @@ void *arc4random(int); } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:28278: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:28518: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:28281: \$? = $ac_status" >&5 + echo "$as_me:28521: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:28284: \"$ac_try\"") >&5 + { (eval echo "$as_me:28524: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28287: \$? = $ac_status" >&5 + echo "$as_me:28527: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_bsd_random_h=no else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 cat >conftest.$ac_ext <<_ACEOF -#line 28294 "configure" +#line 28534 "configure" #include "confdefs.h" #include <bsd/random.h> int @@ -28303,16 +28543,16 @@ unsigned x = arc4random() } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:28306: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:28546: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:28309: \$? = $ac_status" >&5 + echo "$as_me:28549: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:28312: \"$ac_try\"") >&5 + { (eval echo "$as_me:28552: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28315: \$? = $ac_status" >&5 + echo "$as_me:28555: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_bsd_random_h=yes else @@ -28323,7 +28563,7 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi rm -f conftest.$ac_objext conftest.$ac_ext - echo "$as_me:28326: result: $cf_bsd_random_h" >&5 + echo "$as_me:28566: result: $cf_bsd_random_h" >&5 echo "${ECHO_T}$cf_bsd_random_h" >&6 if test "$cf_bsd_random_h" = yes then @@ -28332,7 +28572,7 @@ echo "${ECHO_T}$cf_bsd_random_h" >&6 EOF else - { echo "$as_me:28335: WARNING: no header file found for arc4random" >&5 + { echo "$as_me:28575: WARNING: no header file found for arc4random" >&5 echo "$as_me: WARNING: no header file found for arc4random" >&2;} fi fi @@ -28367,13 +28607,13 @@ fi for ac_func in strstr do -echo "$as_me:28370: checking for $ac_func declaration" >&5 +echo "$as_me:28610: 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 28376 "configure" +#line 28616 "configure" #include "confdefs.h" #include <string.h> int @@ -28387,20 +28627,20 @@ extern int $ac_func(); } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:28390: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:28630: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:28393: \$? = $ac_status" >&5 + echo "$as_me:28633: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:28396: \"$ac_try\"") >&5 + { (eval echo "$as_me:28636: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28399: \$? = $ac_status" >&5 + echo "$as_me:28639: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cat >conftest.$ac_ext <<_ACEOF -#line 28403 "configure" +#line 28643 "configure" #include "confdefs.h" #include <string.h> int @@ -28414,16 +28654,16 @@ int (*p)() = $ac_func; } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:28417: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:28657: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:28420: \$? = $ac_status" >&5 + echo "$as_me:28660: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:28423: \"$ac_try\"") >&5 + { (eval echo "$as_me:28663: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28426: \$? = $ac_status" >&5 + echo "$as_me:28666: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "ac_cv_func_decl_$ac_func=yes" @@ -28444,11 +28684,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:28447: result: yes" >&5 + echo "$as_me:28687: result: yes" >&5 echo "${ECHO_T}yes" >&6 : else - echo "$as_me:28451: result: no" >&5 + echo "$as_me:28691: result: no" >&5 echo "${ECHO_T}no" >&6 ac_tr_func=`echo "DECL_$ac_func" | sed y%abcdefghijklmnopqrstuvwxyz./-%ABCDEFGHIJKLMNOPQRSTUVWXYZ___%` @@ -28463,13 +28703,13 @@ done for ac_func in getgrgid getgrnam do -echo "$as_me:28466: checking for $ac_func declaration" >&5 +echo "$as_me:28706: 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 28472 "configure" +#line 28712 "configure" #include "confdefs.h" #include <stdio.h> @@ -28485,20 +28725,20 @@ extern int $ac_func(); } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:28488: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:28728: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:28491: \$? = $ac_status" >&5 + echo "$as_me:28731: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:28494: \"$ac_try\"") >&5 + { (eval echo "$as_me:28734: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28497: \$? = $ac_status" >&5 + echo "$as_me:28737: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cat >conftest.$ac_ext <<_ACEOF -#line 28501 "configure" +#line 28741 "configure" #include "confdefs.h" #include <stdio.h> @@ -28514,16 +28754,16 @@ int (*p)() = $ac_func; } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:28517: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:28757: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:28520: \$? = $ac_status" >&5 + echo "$as_me:28760: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:28523: \"$ac_try\"") >&5 + { (eval echo "$as_me:28763: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28526: \$? = $ac_status" >&5 + echo "$as_me:28766: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "ac_cv_func_decl_$ac_func=yes" @@ -28544,11 +28784,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:28547: result: yes" >&5 + echo "$as_me:28787: result: yes" >&5 echo "${ECHO_T}yes" >&6 : else - echo "$as_me:28551: result: no" >&5 + echo "$as_me:28791: result: no" >&5 echo "${ECHO_T}no" >&6 ac_tr_func=`echo "DECL_$ac_func" | sed y%abcdefghijklmnopqrstuvwxyz./-%ABCDEFGHIJKLMNOPQRSTUVWXYZ___%` @@ -28560,14 +28800,14 @@ EOF fi done -echo "$as_me:28563: checking if TRUE/FALSE are defined" >&5 +echo "$as_me:28803: 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 28570 "configure" +#line 28810 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> @@ -28581,16 +28821,16 @@ int x = TRUE, y = FALSE } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:28584: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:28824: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:28587: \$? = $ac_status" >&5 + echo "$as_me:28827: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:28590: \"$ac_try\"") >&5 + { (eval echo "$as_me:28830: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28593: \$? = $ac_status" >&5 + echo "$as_me:28833: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_bool_defs=yes else @@ -28601,7 +28841,7 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:28604: result: $cf_cv_bool_defs" >&5 +echo "$as_me:28844: 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 @@ -28614,14 +28854,14 @@ EOF fi -echo "$as_me:28617: checking if external errno is declared" >&5 +echo "$as_me:28857: 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 28624 "configure" +#line 28864 "configure" #include "confdefs.h" #ifdef HAVE_STDLIB_H @@ -28639,16 +28879,16 @@ int x = (int) errno } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:28642: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:28882: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:28645: \$? = $ac_status" >&5 + echo "$as_me:28885: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:28648: \"$ac_try\"") >&5 + { (eval echo "$as_me:28888: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28651: \$? = $ac_status" >&5 + echo "$as_me:28891: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_dcl_errno=yes else @@ -28659,7 +28899,7 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:28662: result: $cf_cv_dcl_errno" >&5 +echo "$as_me:28902: result: $cf_cv_dcl_errno" >&5 echo "${ECHO_T}$cf_cv_dcl_errno" >&6 if test "$cf_cv_dcl_errno" = no ; then @@ -28674,14 +28914,14 @@ fi # It's possible (for near-UNIX clones) that the data doesn't exist -echo "$as_me:28677: checking if external errno exists" >&5 +echo "$as_me:28917: 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 28684 "configure" +#line 28924 "configure" #include "confdefs.h" #undef errno @@ -28696,16 +28936,16 @@ errno = 2 } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:28699: \"$ac_link\"") >&5 +if { (eval echo "$as_me:28939: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:28702: \$? = $ac_status" >&5 + echo "$as_me:28942: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:28705: \"$ac_try\"") >&5 + { (eval echo "$as_me:28945: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28708: \$? = $ac_status" >&5 + echo "$as_me:28948: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_have_errno=yes else @@ -28716,7 +28956,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:28719: result: $cf_cv_have_errno" >&5 +echo "$as_me:28959: result: $cf_cv_have_errno" >&5 echo "${ECHO_T}$cf_cv_have_errno" >&6 if test "$cf_cv_have_errno" = yes ; then @@ -28729,7 +28969,7 @@ EOF fi -echo "$as_me:28732: checking if we can set errno" >&5 +echo "$as_me:28972: 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 @@ -28737,7 +28977,7 @@ else if test "$cross_compiling" = yes; then cat >conftest.$ac_ext <<_ACEOF -#line 28740 "configure" +#line 28980 "configure" #include "confdefs.h" #include <errno.h> int @@ -28749,16 +28989,16 @@ errno = 255 } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:28752: \"$ac_link\"") >&5 +if { (eval echo "$as_me:28992: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:28755: \$? = $ac_status" >&5 + echo "$as_me:28995: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:28758: \"$ac_try\"") >&5 + { (eval echo "$as_me:28998: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28761: \$? = $ac_status" >&5 + echo "$as_me:29001: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_set_errno=maybe else @@ -28769,7 +29009,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext else cat >conftest.$ac_ext <<_ACEOF -#line 28772 "configure" +#line 29012 "configure" #include "confdefs.h" #include <errno.h> @@ -28780,15 +29020,15 @@ int main() } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:28783: \"$ac_link\"") >&5 +if { (eval echo "$as_me:29023: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:28786: \$? = $ac_status" >&5 + echo "$as_me:29026: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:28788: \"$ac_try\"") >&5 + { (eval echo "$as_me:29028: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28791: \$? = $ac_status" >&5 + echo "$as_me:29031: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_set_errno=yes else @@ -28801,20 +29041,20 @@ rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext fi fi -echo "$as_me:28804: result: $cf_cv_set_errno" >&5 +echo "$as_me:29044: 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:28810: checking for setlocale()" >&5 +echo "$as_me:29050: 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 28817 "configure" +#line 29057 "configure" #include "confdefs.h" #include <locale.h> int @@ -28826,16 +29066,16 @@ setlocale(LC_ALL, "") } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:28829: \"$ac_link\"") >&5 +if { (eval echo "$as_me:29069: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:28832: \$? = $ac_status" >&5 + echo "$as_me:29072: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:28835: \"$ac_try\"") >&5 + { (eval echo "$as_me:29075: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28838: \$? = $ac_status" >&5 + echo "$as_me:29078: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_locale=yes else @@ -28847,21 +29087,21 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:28850: result: $cf_cv_locale" >&5 +echo "$as_me:29090: 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:28857: checking if NGROUPS is defined" >&5 +echo "$as_me:29097: 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 28864 "configure" +#line 29104 "configure" #include "confdefs.h" #if HAVE_SYS_PARAM_H @@ -28880,23 +29120,23 @@ int x = NGROUPS } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:28883: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:29123: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:28886: \$? = $ac_status" >&5 + echo "$as_me:29126: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:28889: \"$ac_try\"") >&5 + { (eval echo "$as_me:29129: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28892: \$? = $ac_status" >&5 + echo "$as_me:29132: \$? = $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 28899 "configure" +#line 29139 "configure" #include "confdefs.h" #if HAVE_SYS_PARAM_H @@ -28915,16 +29155,16 @@ int x = NGROUPS_MAX } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:28918: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:29158: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:28921: \$? = $ac_status" >&5 + echo "$as_me:29161: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:28924: \"$ac_try\"") >&5 + { (eval echo "$as_me:29164: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28927: \$? = $ac_status" >&5 + echo "$as_me:29167: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_ngroups=NGROUPS_MAX else @@ -28936,7 +29176,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext fi rm -f conftest.$ac_objext conftest.$ac_ext -echo "$as_me:28939: result: $cf_cv_ngroups" >&5 +echo "$as_me:29179: result: $cf_cv_ngroups" >&5 echo "${ECHO_T}$cf_cv_ngroups" >&6 fi @@ -28953,14 +29193,14 @@ EOF fi -echo "$as_me:28956: checking if external sys_nerr is declared" >&5 +echo "$as_me:29196: 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 28963 "configure" +#line 29203 "configure" #include "confdefs.h" #ifdef HAVE_STDLIB_H @@ -28978,16 +29218,16 @@ int x = (int) sys_nerr } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:28981: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:29221: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:28984: \$? = $ac_status" >&5 + echo "$as_me:29224: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:28987: \"$ac_try\"") >&5 + { (eval echo "$as_me:29227: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28990: \$? = $ac_status" >&5 + echo "$as_me:29230: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_dcl_sys_nerr=yes else @@ -28998,7 +29238,7 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:29001: result: $cf_cv_dcl_sys_nerr" >&5 +echo "$as_me:29241: 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 @@ -29013,14 +29253,14 @@ fi # It's possible (for near-UNIX clones) that the data doesn't exist -echo "$as_me:29016: checking if external sys_nerr exists" >&5 +echo "$as_me:29256: 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 29023 "configure" +#line 29263 "configure" #include "confdefs.h" #undef sys_nerr @@ -29035,16 +29275,16 @@ sys_nerr = 2 } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:29038: \"$ac_link\"") >&5 +if { (eval echo "$as_me:29278: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:29041: \$? = $ac_status" >&5 + echo "$as_me:29281: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:29044: \"$ac_try\"") >&5 + { (eval echo "$as_me:29284: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:29047: \$? = $ac_status" >&5 + echo "$as_me:29287: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_have_sys_nerr=yes else @@ -29055,7 +29295,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:29058: result: $cf_cv_have_sys_nerr" >&5 +echo "$as_me:29298: 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 @@ -29068,14 +29308,14 @@ EOF fi -echo "$as_me:29071: checking if external sys_errlist is declared" >&5 +echo "$as_me:29311: 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 29078 "configure" +#line 29318 "configure" #include "confdefs.h" #ifdef HAVE_STDLIB_H @@ -29093,16 +29333,16 @@ int x = (int) sys_errlist } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:29096: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:29336: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:29099: \$? = $ac_status" >&5 + echo "$as_me:29339: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:29102: \"$ac_try\"") >&5 + { (eval echo "$as_me:29342: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:29105: \$? = $ac_status" >&5 + echo "$as_me:29345: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_dcl_sys_errlist=yes else @@ -29113,7 +29353,7 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:29116: result: $cf_cv_dcl_sys_errlist" >&5 +echo "$as_me:29356: 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 @@ -29128,14 +29368,14 @@ fi # It's possible (for near-UNIX clones) that the data doesn't exist -echo "$as_me:29131: checking if external sys_errlist exists" >&5 +echo "$as_me:29371: 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 29138 "configure" +#line 29378 "configure" #include "confdefs.h" #undef sys_errlist @@ -29150,16 +29390,16 @@ sys_errlist = 2 } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:29153: \"$ac_link\"") >&5 +if { (eval echo "$as_me:29393: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:29156: \$? = $ac_status" >&5 + echo "$as_me:29396: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:29159: \"$ac_try\"") >&5 + { (eval echo "$as_me:29399: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:29162: \$? = $ac_status" >&5 + echo "$as_me:29402: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_have_sys_errlist=yes else @@ -29170,7 +29410,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:29173: result: $cf_cv_have_sys_errlist" >&5 +echo "$as_me:29413: 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 @@ -29186,23 +29426,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:29189: checking for $ac_header" >&5 +echo "$as_me:29429: 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 29195 "configure" +#line 29435 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:29199: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:29439: \"$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:29205: \$? = $ac_status" >&5 + echo "$as_me:29445: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -29221,7 +29461,7 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:29224: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:29464: 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 @@ -29231,14 +29471,14 @@ EOF fi done -echo "$as_me:29234: checking for lastlog path" >&5 +echo "$as_me:29474: 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 29241 "configure" +#line 29481 "configure" #include "confdefs.h" #include <sys/types.h> @@ -29258,16 +29498,16 @@ char *path = _PATH_LASTLOG } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:29261: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:29501: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:29264: \$? = $ac_status" >&5 + echo "$as_me:29504: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:29267: \"$ac_try\"") >&5 + { (eval echo "$as_me:29507: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:29270: \$? = $ac_status" >&5 + echo "$as_me:29510: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_path_lastlog="_PATH_LASTLOG" else @@ -29282,13 +29522,13 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:29285: result: $cf_cv_path_lastlog" >&5 +echo "$as_me:29525: 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:29291: checking for utmp implementation" >&5 +echo "$as_me:29531: 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 @@ -29305,7 +29545,7 @@ cf_utmp_includes=" #endif " cat >conftest.$ac_ext <<_ACEOF -#line 29308 "configure" +#line 29548 "configure" #include "confdefs.h" $cf_utmp_includes int @@ -29319,16 +29559,16 @@ struct $cf_header x; } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:29322: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:29562: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:29325: \$? = $ac_status" >&5 + echo "$as_me:29565: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:29328: \"$ac_try\"") >&5 + { (eval echo "$as_me:29568: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:29331: \$? = $ac_status" >&5 + echo "$as_me:29571: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_have_utmp=$cf_header break @@ -29337,7 +29577,7 @@ else cat conftest.$ac_ext >&5 cat >conftest.$ac_ext <<_ACEOF -#line 29340 "configure" +#line 29580 "configure" #include "confdefs.h" $cf_utmp_includes int @@ -29351,16 +29591,16 @@ struct $cf_header x; } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:29354: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:29594: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:29357: \$? = $ac_status" >&5 + echo "$as_me:29597: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:29360: \"$ac_try\"") >&5 + { (eval echo "$as_me:29600: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:29363: \$? = $ac_status" >&5 + echo "$as_me:29603: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_have_utmp=$cf_header break @@ -29375,7 +29615,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext done fi -echo "$as_me:29378: result: $cf_cv_have_utmp" >&5 +echo "$as_me:29618: result: $cf_cv_have_utmp" >&5 echo "${ECHO_T}$cf_cv_have_utmp" >&6 if test $cf_cv_have_utmp != no ; then @@ -29388,14 +29628,14 @@ EOF EOF if test $cf_cv_have_utmp != no ; then -echo "$as_me:29391: checking if ${cf_cv_have_utmp}.ut_host is declared" >&5 +echo "$as_me:29631: 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 29398 "configure" +#line 29638 "configure" #include "confdefs.h" #include <sys/types.h> @@ -29409,16 +29649,16 @@ struct $cf_cv_have_utmp x; char *y = &x.ut_host[0] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:29412: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:29652: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:29415: \$? = $ac_status" >&5 + echo "$as_me:29655: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:29418: \"$ac_try\"") >&5 + { (eval echo "$as_me:29658: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:29421: \$? = $ac_status" >&5 + echo "$as_me:29661: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_have_utmp_ut_host=yes else @@ -29430,7 +29670,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:29433: result: $cf_cv_have_utmp_ut_host" >&5 +echo "$as_me:29673: 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 @@ -29439,14 +29679,14 @@ EOF fi if test $cf_cv_have_utmp != no ; then -echo "$as_me:29442: checking if ${cf_cv_have_utmp}.ut_syslen is declared" >&5 +echo "$as_me:29682: 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 29449 "configure" +#line 29689 "configure" #include "confdefs.h" #include <sys/types.h> @@ -29460,16 +29700,16 @@ struct $cf_cv_have_utmp x; int y = x.ut_syslen } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:29463: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:29703: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:29466: \$? = $ac_status" >&5 + echo "$as_me:29706: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:29469: \"$ac_try\"") >&5 + { (eval echo "$as_me:29709: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:29472: \$? = $ac_status" >&5 + echo "$as_me:29712: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_have_utmp_ut_syslen=yes else @@ -29481,7 +29721,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:29484: result: $cf_cv_have_utmp_ut_syslen" >&5 +echo "$as_me:29724: 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 @@ -29490,7 +29730,7 @@ EOF fi if test $cf_cv_have_utmp != no ; then -echo "$as_me:29493: checking if ${cf_cv_have_utmp}.ut_name is declared" >&5 +echo "$as_me:29733: 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 @@ -29507,7 +29747,7 @@ cf_utmp_includes=" " for cf_header in ut_name ut_user ; do cat >conftest.$ac_ext <<_ACEOF -#line 29510 "configure" +#line 29750 "configure" #include "confdefs.h" $cf_utmp_includes int @@ -29521,16 +29761,16 @@ struct $cf_cv_have_utmp x; } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:29524: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:29764: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:29527: \$? = $ac_status" >&5 + echo "$as_me:29767: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:29530: \"$ac_try\"") >&5 + { (eval echo "$as_me:29770: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:29533: \$? = $ac_status" >&5 + echo "$as_me:29773: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_have_utmp_ut_name=$cf_header break @@ -29542,12 +29782,12 @@ rm -f conftest.$ac_objext conftest.$ac_ext done fi -echo "$as_me:29545: result: $cf_cv_have_utmp_ut_name" >&5 +echo "$as_me:29785: 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:29550: error: Cannot find declaration for ut.ut_name" >&5 + { { echo "$as_me:29790: 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; }; } ;; @@ -29561,7 +29801,7 @@ esac fi if test $cf_cv_have_utmp != no ; then -echo "$as_me:29564: checking for exit-status in $cf_cv_have_utmp" >&5 +echo "$as_me:29804: 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 @@ -29574,7 +29814,7 @@ for cf_result in \ ut_exit.ut_exit do cat >conftest.$ac_ext <<_ACEOF -#line 29577 "configure" +#line 29817 "configure" #include "confdefs.h" #include <sys/types.h> @@ -29588,16 +29828,16 @@ struct $cf_cv_have_utmp x; long y = x.$cf_result = 0 } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:29591: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:29831: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:29594: \$? = $ac_status" >&5 + echo "$as_me:29834: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:29597: \"$ac_try\"") >&5 + { (eval echo "$as_me:29837: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:29600: \$? = $ac_status" >&5 + echo "$as_me:29840: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_have_utmp_ut_xstatus=$cf_result break @@ -29610,7 +29850,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext done fi -echo "$as_me:29613: result: $cf_cv_have_utmp_ut_xstatus" >&5 +echo "$as_me:29853: 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 @@ -29625,14 +29865,14 @@ fi fi if test $cf_cv_have_utmp != no ; then -echo "$as_me:29628: checking if ${cf_cv_have_utmp}.ut_xtime is declared" >&5 +echo "$as_me:29868: 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 29635 "configure" +#line 29875 "configure" #include "confdefs.h" #include <sys/types.h> @@ -29646,23 +29886,23 @@ struct $cf_cv_have_utmp x; long y = x.ut_xtime = 0 } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:29649: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:29889: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:29652: \$? = $ac_status" >&5 + echo "$as_me:29892: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:29655: \"$ac_try\"") >&5 + { (eval echo "$as_me:29895: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:29658: \$? = $ac_status" >&5 + echo "$as_me:29898: \$? = $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 29665 "configure" +#line 29905 "configure" #include "confdefs.h" #include <sys/types.h> @@ -29676,16 +29916,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:29679: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:29919: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:29682: \$? = $ac_status" >&5 + echo "$as_me:29922: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:29685: \"$ac_try\"") >&5 + { (eval echo "$as_me:29925: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:29688: \$? = $ac_status" >&5 + echo "$as_me:29928: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_have_utmp_ut_xtime=define else @@ -29699,7 +29939,7 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:29702: result: $cf_cv_have_utmp_ut_xtime" >&5 +echo "$as_me:29942: 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 @@ -29716,14 +29956,14 @@ fi fi if test $cf_cv_have_utmp != no ; then -echo "$as_me:29719: checking if ${cf_cv_have_utmp}.ut_session is declared" >&5 +echo "$as_me:29959: 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 29726 "configure" +#line 29966 "configure" #include "confdefs.h" #include <sys/types.h> @@ -29737,16 +29977,16 @@ struct $cf_cv_have_utmp x; long y = x.ut_session } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:29740: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:29980: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:29743: \$? = $ac_status" >&5 + echo "$as_me:29983: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:29746: \"$ac_try\"") >&5 + { (eval echo "$as_me:29986: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:29749: \$? = $ac_status" >&5 + echo "$as_me:29989: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_have_utmp_ut_session=yes else @@ -29757,7 +29997,7 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:29760: result: $cf_cv_have_utmp_ut_session" >&5 +echo "$as_me:30000: 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 @@ -29767,7 +30007,7 @@ EOF fi fi -echo "$as_me:29770: checking if $cf_cv_have_utmp is SYSV flavor" >&5 +echo "$as_me:30010: 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 @@ -29775,7 +30015,7 @@ else test "$cf_cv_have_utmp" = "utmp" && cf_prefix="ut" || cf_prefix="utx" cat >conftest.$ac_ext <<_ACEOF -#line 29778 "configure" +#line 30018 "configure" #include "confdefs.h" #include <sys/types.h> @@ -29794,16 +30034,16 @@ struct $cf_cv_have_utmp x; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:29797: \"$ac_link\"") >&5 +if { (eval echo "$as_me:30037: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:29800: \$? = $ac_status" >&5 + echo "$as_me:30040: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:29803: \"$ac_try\"") >&5 + { (eval echo "$as_me:30043: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:29806: \$? = $ac_status" >&5 + echo "$as_me:30046: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_sysv_utmp=yes else @@ -29814,7 +30054,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:29817: result: $cf_cv_sysv_utmp" >&5 +echo "$as_me:30057: 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 @@ -29822,14 +30062,14 @@ EOF fi -echo "$as_me:29825: checking if external h_errno exists" >&5 +echo "$as_me:30065: 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 29832 "configure" +#line 30072 "configure" #include "confdefs.h" #undef h_errno @@ -29844,16 +30084,16 @@ h_errno = 2 } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:29847: \"$ac_link\"") >&5 +if { (eval echo "$as_me:30087: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:29850: \$? = $ac_status" >&5 + echo "$as_me:30090: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:29853: \"$ac_try\"") >&5 + { (eval echo "$as_me:30093: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:29856: \$? = $ac_status" >&5 + echo "$as_me:30096: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_have_h_errno=yes else @@ -29864,7 +30104,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:29867: result: $cf_cv_have_h_errno" >&5 +echo "$as_me:30107: 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 @@ -29877,7 +30117,7 @@ EOF fi -echo "$as_me:29880: checking if bibp: URLs should be supported" >&5 +echo "$as_me:30120: 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. @@ -29894,13 +30134,13 @@ else use_bibp_urls=yes fi; -echo "$as_me:29897: result: $use_bibp_urls" >&5 +echo "$as_me:30137: 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:29903: checking if configuration info should be browsable" >&5 +echo "$as_me:30143: 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. @@ -29917,13 +30157,13 @@ else use_config_info=yes fi; -echo "$as_me:29920: result: $use_config_info" >&5 +echo "$as_me:30160: 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:29926: checking if new-style forms-based options screen should be used" >&5 +echo "$as_me:30166: 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. @@ -29940,13 +30180,13 @@ else use_forms_options=yes fi; -echo "$as_me:29943: result: $use_forms_options" >&5 +echo "$as_me:30183: 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:29949: checking if old-style options menu should be used" >&5 +echo "$as_me:30189: 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. @@ -29963,13 +30203,13 @@ else use_menu_options=yes fi; -echo "$as_me:29966: result: $use_menu_options" >&5 +echo "$as_me:30206: 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:29972: checking if sessions code should be used" >&5 +echo "$as_me:30212: 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. @@ -29986,7 +30226,7 @@ else use_sessions=yes fi; -echo "$as_me:29989: result: $use_sessions" >&5 +echo "$as_me:30229: result: $use_sessions" >&5 echo "${ECHO_T}$use_sessions" >&6 if test $use_sessions != no ; then cat >>confdefs.h <<\EOF @@ -29996,7 +30236,7 @@ EOF EXTRA_OBJS="$EXTRA_OBJS LYSession\$o" fi -echo "$as_me:29999: checking if session-caching code should be used" >&5 +echo "$as_me:30239: 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. @@ -30013,7 +30253,7 @@ else use_session_cache=yes fi; -echo "$as_me:30016: result: $use_session_cache" >&5 +echo "$as_me:30256: result: $use_session_cache" >&5 echo "${ECHO_T}$use_session_cache" >&6 if test $use_session_cache != no ; then cat >>confdefs.h <<\EOF @@ -30022,7 +30262,7 @@ EOF fi -echo "$as_me:30025: checking if address-list page should be used" >&5 +echo "$as_me:30265: checking if address-list page should be used" >&5 echo $ECHO_N "checking if address-list page should be used... $ECHO_C" >&6 # Check whether --enable-addrlist-page or --disable-addrlist-page was given. @@ -30039,13 +30279,13 @@ else use_addrlist_page=yes fi; -echo "$as_me:30042: result: $use_addrlist_page" >&5 +echo "$as_me:30282: result: $use_addrlist_page" >&5 echo "${ECHO_T}$use_addrlist_page" >&6 test $use_addrlist_page != no && cat >>confdefs.h <<\EOF #define USE_ADDRLIST_PAGE 1 EOF -echo "$as_me:30048: checking if experimental CJK logic should be used" >&5 +echo "$as_me:30288: 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. @@ -30062,13 +30302,13 @@ else use_cjk=no fi; -echo "$as_me:30065: result: $use_cjk" >&5 +echo "$as_me:30305: 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:30071: checking if experimental Japanese UTF-8 logic should be used" >&5 +echo "$as_me:30311: 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. @@ -30085,7 +30325,7 @@ else use_ja_utf8=no fi; -echo "$as_me:30088: result: $use_ja_utf8" >&5 +echo "$as_me:30328: result: $use_ja_utf8" >&5 echo "${ECHO_T}$use_ja_utf8" >&6 if test $use_ja_utf8 != no ; then cat >>confdefs.h <<\EOF @@ -30130,7 +30370,7 @@ if test -n "$cf_searchpath/include" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 30133 "configure" +#line 30373 "configure" #include "confdefs.h" #include <stdio.h> int @@ -30142,16 +30382,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:30145: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:30385: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:30148: \$? = $ac_status" >&5 + echo "$as_me:30388: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:30151: \"$ac_try\"") >&5 + { (eval echo "$as_me:30391: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:30154: \$? = $ac_status" >&5 + echo "$as_me:30394: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -30168,7 +30408,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}:30171: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:30411: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -30209,7 +30449,7 @@ if test -n "$cf_searchpath/../include" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 30212 "configure" +#line 30452 "configure" #include "confdefs.h" #include <stdio.h> int @@ -30221,16 +30461,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:30224: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:30464: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:30227: \$? = $ac_status" >&5 + echo "$as_me:30467: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:30230: \"$ac_try\"") >&5 + { (eval echo "$as_me:30470: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:30233: \$? = $ac_status" >&5 + echo "$as_me:30473: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -30247,7 +30487,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}:30250: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:30490: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -30263,7 +30503,7 @@ echo "${as_me:-configure}:30250: testing adding $cf_add_incdir to include-path . fi else -{ { echo "$as_me:30266: error: cannot find libiconv under $withval" >&5 +{ { echo "$as_me:30506: error: cannot find libiconv under $withval" >&5 echo "$as_me: error: cannot find libiconv under $withval" >&2;} { (exit 1); exit 1; }; } fi @@ -30288,7 +30528,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}:30291: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:30531: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -30317,7 +30557,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}:30320: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:30560: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -30326,7 +30566,7 @@ echo "${as_me:-configure}:30320: testing adding $cf_add_libdir to library-path . fi else -{ { echo "$as_me:30329: error: cannot find libiconv under $withval" >&5 +{ { echo "$as_me:30569: error: cannot find libiconv under $withval" >&5 echo "$as_me: error: cannot find libiconv under $withval" >&2;} { (exit 1); exit 1; }; } fi @@ -30337,7 +30577,7 @@ done fi; - echo "$as_me:30340: checking for iconv" >&5 + echo "$as_me:30580: 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 @@ -30348,12 +30588,12 @@ else cf_cv_header_path_iconv= cf_cv_library_path_iconv= -echo "${as_me:-configure}:30351: testing Starting FIND_LINKAGE(iconv,) ..." 1>&5 +echo "${as_me:-configure}:30591: testing Starting FIND_LINKAGE(iconv,) ..." 1>&5 cf_save_LIBS="$LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 30356 "configure" +#line 30596 "configure" #include "confdefs.h" #include <stdlib.h> @@ -30372,16 +30612,16 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:30375: \"$ac_link\"") >&5 +if { (eval echo "$as_me:30615: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:30378: \$? = $ac_status" >&5 + echo "$as_me:30618: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:30381: \"$ac_try\"") >&5 + { (eval echo "$as_me:30621: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:30384: \$? = $ac_status" >&5 + echo "$as_me:30624: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_find_linkage_iconv=yes @@ -30395,7 +30635,7 @@ cat conftest.$ac_ext >&5 LIBS="-liconv $cf_save_LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 30398 "configure" +#line 30638 "configure" #include "confdefs.h" #include <stdlib.h> @@ -30414,16 +30654,16 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:30417: \"$ac_link\"") >&5 +if { (eval echo "$as_me:30657: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:30420: \$? = $ac_status" >&5 + echo "$as_me:30660: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:30423: \"$ac_try\"") >&5 + { (eval echo "$as_me:30663: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:30426: \$? = $ac_status" >&5 + echo "$as_me:30666: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_find_linkage_iconv=yes @@ -30440,9 +30680,9 @@ cat conftest.$ac_ext >&5 test -n "$verbose" && echo " find linkage for iconv library" 1>&6 -echo "${as_me:-configure}:30443: testing find linkage for iconv library ..." 1>&5 +echo "${as_me:-configure}:30683: testing find linkage for iconv library ..." 1>&5 -echo "${as_me:-configure}:30445: testing Searching for headers in FIND_LINKAGE(iconv,) ..." 1>&5 +echo "${as_me:-configure}:30685: testing Searching for headers in FIND_LINKAGE(iconv,) ..." 1>&5 cf_save_CPPFLAGS="$CPPFLAGS" cf_test_CPPFLAGS="$CPPFLAGS" @@ -30555,11 +30795,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}:30558: testing ... testing $cf_cv_header_path_iconv ..." 1>&5 +echo "${as_me:-configure}:30798: 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 30562 "configure" +#line 30802 "configure" #include "confdefs.h" #include <stdlib.h> @@ -30578,21 +30818,21 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:30581: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:30821: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:30584: \$? = $ac_status" >&5 + echo "$as_me:30824: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:30587: \"$ac_try\"") >&5 + { (eval echo "$as_me:30827: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:30590: \$? = $ac_status" >&5 + echo "$as_me:30830: \$? = $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}:30595: testing ... found iconv headers in $cf_cv_header_path_iconv ..." 1>&5 +echo "${as_me:-configure}:30835: testing ... found iconv headers in $cf_cv_header_path_iconv ..." 1>&5 cf_cv_find_linkage_iconv=maybe cf_test_CPPFLAGS="$CPPFLAGS" @@ -30610,7 +30850,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "$cf_cv_find_linkage_iconv" = maybe ; then -echo "${as_me:-configure}:30613: testing Searching for iconv library in FIND_LINKAGE(iconv,) ..." 1>&5 +echo "${as_me:-configure}:30853: testing Searching for iconv library in FIND_LINKAGE(iconv,) ..." 1>&5 cf_save_LIBS="$LIBS" cf_save_LDFLAGS="$LDFLAGS" @@ -30707,13 +30947,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}:30710: testing ... testing $cf_cv_library_path_iconv ..." 1>&5 +echo "${as_me:-configure}:30950: 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 30716 "configure" +#line 30956 "configure" #include "confdefs.h" #include <stdlib.h> @@ -30732,21 +30972,21 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:30735: \"$ac_link\"") >&5 +if { (eval echo "$as_me:30975: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:30738: \$? = $ac_status" >&5 + echo "$as_me:30978: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:30741: \"$ac_try\"") >&5 + { (eval echo "$as_me:30981: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:30744: \$? = $ac_status" >&5 + echo "$as_me:30984: \$? = $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}:30749: testing ... found iconv library in $cf_cv_library_path_iconv ..." 1>&5 +echo "${as_me:-configure}:30989: testing ... found iconv library in $cf_cv_library_path_iconv ..." 1>&5 cf_cv_find_linkage_iconv=yes cf_cv_library_file_iconv="-liconv" @@ -30786,7 +31026,7 @@ am_cv_func_iconv="no, consider installing GNU libiconv" fi fi -echo "$as_me:30789: result: $am_cv_func_iconv" >&5 +echo "$as_me:31029: result: $am_cv_func_iconv" >&5 echo "${ECHO_T}$am_cv_func_iconv" >&6 if test "$am_cv_func_iconv" = yes; then @@ -30795,14 +31035,14 @@ cat >>confdefs.h <<\EOF #define HAVE_ICONV 1 EOF - echo "$as_me:30798: checking if the declaration of iconv() needs const." >&5 + echo "$as_me:31038: 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 30805 "configure" +#line 31045 "configure" #include "confdefs.h" #include <stdlib.h> @@ -30827,16 +31067,16 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:30830: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:31070: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:30833: \$? = $ac_status" >&5 + echo "$as_me:31073: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:30836: \"$ac_try\"") >&5 + { (eval echo "$as_me:31076: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:30839: \$? = $ac_status" >&5 + echo "$as_me:31079: \$? = $ac_status" >&5 (exit $ac_status); }; }; then am_cv_proto_iconv_const=no else @@ -30846,7 +31086,7 @@ am_cv_proto_iconv_const=yes fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:30849: result: $am_cv_proto_iconv_const" >&5 +echo "$as_me:31089: 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 @@ -30888,7 +31128,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 30891 "configure" +#line 31131 "configure" #include "confdefs.h" #include <stdio.h> int @@ -30900,16 +31140,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:30903: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:31143: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:30906: \$? = $ac_status" >&5 + echo "$as_me:31146: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:30909: \"$ac_try\"") >&5 + { (eval echo "$as_me:31149: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:30912: \$? = $ac_status" >&5 + echo "$as_me:31152: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -30926,7 +31166,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}:30929: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:31169: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -30963,7 +31203,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}:30966: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:31206: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -30987,7 +31227,7 @@ curses|slang|ncurses*) esac if test "$use_dft_colors" != no ; then -echo "$as_me:30990: checking if you want to use default-colors" >&5 +echo "$as_me:31230: 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. @@ -31004,7 +31244,7 @@ else use_dft_colors=no fi; -echo "$as_me:31007: result: $use_dft_colors" >&5 +echo "$as_me:31247: 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 @@ -31012,7 +31252,7 @@ EOF fi -echo "$as_me:31015: checking if experimental keyboard-layout logic should be used" >&5 +echo "$as_me:31255: 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. @@ -31029,13 +31269,13 @@ else use_kbd_layout=no fi; -echo "$as_me:31032: result: $use_kbd_layout" >&5 +echo "$as_me:31272: 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:31038: checking if experimental nested-table logic should be used" >&5 +echo "$as_me:31278: 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. @@ -31052,13 +31292,13 @@ else use_nested_tables=no fi; -echo "$as_me:31055: result: $use_nested_tables" >&5 +echo "$as_me:31295: 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:31061: checking if alternative line-edit bindings should be used" >&5 +echo "$as_me:31301: 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. @@ -31075,13 +31315,13 @@ else use_alt_bindings=yes fi; -echo "$as_me:31078: result: $use_alt_bindings" >&5 +echo "$as_me:31318: result: $use_alt_bindings" >&5 echo "${ECHO_T}$use_alt_bindings" >&6 test $use_alt_bindings != no && cat >>confdefs.h <<\EOF #define USE_ALT_BINDINGS 1 EOF -echo "$as_me:31084: checking if ascii case-conversion should be used" >&5 +echo "$as_me:31324: 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. @@ -31098,13 +31338,13 @@ else use_ascii_ctypes=yes fi; -echo "$as_me:31101: result: $use_ascii_ctypes" >&5 +echo "$as_me:31341: 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:31107: checking if you want to use extended HTML DTD logic" >&5 +echo "$as_me:31347: 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. @@ -31121,13 +31361,13 @@ else use_ext_htmldtd=yes fi; -echo "$as_me:31124: result: $use_ext_htmldtd" >&5 +echo "$as_me:31364: 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:31130: checking if file-upload logic should be used" >&5 +echo "$as_me:31370: 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. @@ -31144,13 +31384,13 @@ else use_file_upload=yes fi; -echo "$as_me:31147: result: $use_file_upload" >&5 +echo "$as_me:31387: 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:31153: checking if IDNA support should be used" >&5 +echo "$as_me:31393: 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. @@ -31167,7 +31407,7 @@ else use_idna=yes fi; -echo "$as_me:31170: result: $use_idna" >&5 +echo "$as_me:31410: result: $use_idna" >&5 echo "${ECHO_T}$use_idna" >&6 if test "$use_idna" = yes ; then @@ -31206,7 +31446,7 @@ if test -n "$cf_searchpath/include" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 31209 "configure" +#line 31449 "configure" #include "confdefs.h" #include <stdio.h> int @@ -31218,16 +31458,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:31221: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:31461: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:31224: \$? = $ac_status" >&5 + echo "$as_me:31464: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:31227: \"$ac_try\"") >&5 + { (eval echo "$as_me:31467: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:31230: \$? = $ac_status" >&5 + echo "$as_me:31470: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -31244,7 +31484,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}:31247: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:31487: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -31285,7 +31525,7 @@ if test -n "$cf_searchpath/../include" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 31288 "configure" +#line 31528 "configure" #include "confdefs.h" #include <stdio.h> int @@ -31297,16 +31537,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:31300: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:31540: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:31303: \$? = $ac_status" >&5 + echo "$as_me:31543: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:31306: \"$ac_try\"") >&5 + { (eval echo "$as_me:31546: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:31309: \$? = $ac_status" >&5 + echo "$as_me:31549: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -31323,7 +31563,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}:31326: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:31566: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -31339,7 +31579,7 @@ echo "${as_me:-configure}:31326: testing adding $cf_add_incdir to include-path . fi else -{ { echo "$as_me:31342: error: cannot find under $use_idna" >&5 +{ { echo "$as_me:31582: error: cannot find under $use_idna" >&5 echo "$as_me: error: cannot find under $use_idna" >&2;} { (exit 1); exit 1; }; } fi @@ -31364,7 +31604,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}:31367: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:31607: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -31393,7 +31633,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}:31396: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:31636: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -31402,7 +31642,7 @@ echo "${as_me:-configure}:31396: testing adding $cf_add_libdir to library-path . fi else -{ { echo "$as_me:31405: error: cannot find under $use_idna" >&5 +{ { echo "$as_me:31645: error: cannot find under $use_idna" >&5 echo "$as_me: error: cannot find under $use_idna" >&2;} { (exit 1); exit 1; }; } fi @@ -31416,12 +31656,12 @@ done cf_cv_header_path_idn= cf_cv_library_path_idn= -echo "${as_me:-configure}:31419: testing Starting FIND_LINKAGE(idn,) ..." 1>&5 +echo "${as_me:-configure}:31659: testing Starting FIND_LINKAGE(idn,) ..." 1>&5 cf_save_LIBS="$LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 31424 "configure" +#line 31664 "configure" #include "confdefs.h" #include <stdio.h> @@ -31439,16 +31679,16 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:31442: \"$ac_link\"") >&5 +if { (eval echo "$as_me:31682: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:31445: \$? = $ac_status" >&5 + echo "$as_me:31685: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:31448: \"$ac_try\"") >&5 + { (eval echo "$as_me:31688: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:31451: \$? = $ac_status" >&5 + echo "$as_me:31691: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_find_linkage_idn=yes @@ -31462,7 +31702,7 @@ cat conftest.$ac_ext >&5 LIBS="-lidn $LIBICONV $cf_save_LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 31465 "configure" +#line 31705 "configure" #include "confdefs.h" #include <stdio.h> @@ -31480,16 +31720,16 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:31483: \"$ac_link\"") >&5 +if { (eval echo "$as_me:31723: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:31486: \$? = $ac_status" >&5 + echo "$as_me:31726: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:31489: \"$ac_try\"") >&5 + { (eval echo "$as_me:31729: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:31492: \$? = $ac_status" >&5 + echo "$as_me:31732: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_find_linkage_idn=yes @@ -31506,9 +31746,9 @@ cat conftest.$ac_ext >&5 test -n "$verbose" && echo " find linkage for idn library" 1>&6 -echo "${as_me:-configure}:31509: testing find linkage for idn library ..." 1>&5 +echo "${as_me:-configure}:31749: testing find linkage for idn library ..." 1>&5 -echo "${as_me:-configure}:31511: testing Searching for headers in FIND_LINKAGE(idn,) ..." 1>&5 +echo "${as_me:-configure}:31751: testing Searching for headers in FIND_LINKAGE(idn,) ..." 1>&5 cf_save_CPPFLAGS="$CPPFLAGS" cf_test_CPPFLAGS="$CPPFLAGS" @@ -31621,11 +31861,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}:31624: testing ... testing $cf_cv_header_path_idn ..." 1>&5 +echo "${as_me:-configure}:31864: 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 31628 "configure" +#line 31868 "configure" #include "confdefs.h" #include <stdio.h> @@ -31643,21 +31883,21 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:31646: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:31886: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:31649: \$? = $ac_status" >&5 + echo "$as_me:31889: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:31652: \"$ac_try\"") >&5 + { (eval echo "$as_me:31892: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:31655: \$? = $ac_status" >&5 + echo "$as_me:31895: \$? = $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}:31660: testing ... found idn headers in $cf_cv_header_path_idn ..." 1>&5 +echo "${as_me:-configure}:31900: testing ... found idn headers in $cf_cv_header_path_idn ..." 1>&5 cf_cv_find_linkage_idn=maybe cf_test_CPPFLAGS="$CPPFLAGS" @@ -31675,7 +31915,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "$cf_cv_find_linkage_idn" = maybe ; then -echo "${as_me:-configure}:31678: testing Searching for idn library in FIND_LINKAGE(idn,) ..." 1>&5 +echo "${as_me:-configure}:31918: testing Searching for idn library in FIND_LINKAGE(idn,) ..." 1>&5 cf_save_LIBS="$LIBS" cf_save_LDFLAGS="$LDFLAGS" @@ -31772,13 +32012,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}:31775: testing ... testing $cf_cv_library_path_idn ..." 1>&5 +echo "${as_me:-configure}:32015: testing ... testing $cf_cv_library_path_idn ..." 1>&5 CPPFLAGS="$cf_test_CPPFLAGS" LIBS="-lidn $LIBICONV $cf_save_LIBS" LDFLAGS="$cf_save_LDFLAGS -L$cf_cv_library_path_idn" cat >conftest.$ac_ext <<_ACEOF -#line 31781 "configure" +#line 32021 "configure" #include "confdefs.h" #include <stdio.h> @@ -31796,21 +32036,21 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:31799: \"$ac_link\"") >&5 +if { (eval echo "$as_me:32039: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:31802: \$? = $ac_status" >&5 + echo "$as_me:32042: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:31805: \"$ac_try\"") >&5 + { (eval echo "$as_me:32045: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:31808: \$? = $ac_status" >&5 + echo "$as_me:32048: \$? = $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}:31813: testing ... found idn library in $cf_cv_library_path_idn ..." 1>&5 +echo "${as_me:-configure}:32053: testing ... found idn library in $cf_cv_library_path_idn ..." 1>&5 cf_cv_find_linkage_idn=yes cf_cv_library_file_idn="-lidn" @@ -31869,7 +32109,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 31872 "configure" +#line 32112 "configure" #include "confdefs.h" #include <stdio.h> int @@ -31881,16 +32121,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:31884: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:32124: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:31887: \$? = $ac_status" >&5 + echo "$as_me:32127: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:31890: \"$ac_try\"") >&5 + { (eval echo "$as_me:32130: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:31893: \$? = $ac_status" >&5 + echo "$as_me:32133: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -31907,7 +32147,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}:31910: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:32150: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -31941,7 +32181,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}:31944: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:32184: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -31952,7 +32192,7 @@ fi LIBS="-lidn $LIBS" else -{ echo "$as_me:31955: WARNING: Cannot find idn library" >&5 +{ echo "$as_me:32195: WARNING: Cannot find idn library" >&5 echo "$as_me: WARNING: Cannot find idn library" >&2;} fi @@ -31965,7 +32205,7 @@ fi fi -echo "$as_me:31968: checking if element-justification logic should be used" >&5 +echo "$as_me:32208: 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. @@ -31982,13 +32222,13 @@ else use_justify_elts=yes fi; -echo "$as_me:31985: result: $use_justify_elts" >&5 +echo "$as_me:32225: 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:31991: checking if partial-display should be used" >&5 +echo "$as_me:32231: 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. @@ -32005,13 +32245,13 @@ else use_partial_display=yes fi; -echo "$as_me:32008: result: $use_partial_display" >&5 +echo "$as_me:32248: 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:32014: checking if persistent-cookie logic should be used" >&5 +echo "$as_me:32254: 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. @@ -32028,13 +32268,13 @@ else use_filed_cookies=yes fi; -echo "$as_me:32031: result: $use_filed_cookies" >&5 +echo "$as_me:32271: 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:32037: checking if html source should be colorized" >&5 +echo "$as_me:32277: 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. @@ -32051,13 +32291,13 @@ else use_prettysrc=yes fi; -echo "$as_me:32054: result: $use_prettysrc" >&5 +echo "$as_me:32294: 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:32060: checking if progress-bar code should be used" >&5 +echo "$as_me:32300: 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. @@ -32074,13 +32314,13 @@ else use_progressbar=yes fi; -echo "$as_me:32077: result: $use_progressbar" >&5 +echo "$as_me:32317: 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:32083: checking if read-progress message should show ETA" >&5 +echo "$as_me:32323: 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. @@ -32097,13 +32337,13 @@ else use_read_eta=yes fi; -echo "$as_me:32100: result: $use_read_eta" >&5 +echo "$as_me:32340: 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:32106: checking if source caching should be used" >&5 +echo "$as_me:32346: 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. @@ -32120,13 +32360,13 @@ else use_source_cache=yes fi; -echo "$as_me:32123: result: $use_source_cache" >&5 +echo "$as_me:32363: 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:32129: checking if scrollbar code should be used" >&5 +echo "$as_me:32369: 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. @@ -32143,10 +32383,10 @@ else use_scrollbar=yes fi; -echo "$as_me:32146: result: $use_scrollbar" >&5 +echo "$as_me:32386: result: $use_scrollbar" >&5 echo "${ECHO_T}$use_scrollbar" >&6 -echo "$as_me:32149: checking if charset-selection logic should be used" >&5 +echo "$as_me:32389: 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. @@ -32163,13 +32403,13 @@ else use_charset_choice=no fi; -echo "$as_me:32166: result: $use_charset_choice" >&5 +echo "$as_me:32406: 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:32172: checking if you want to use external commands" >&5 +echo "$as_me:32412: 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. @@ -32186,7 +32426,7 @@ else use_externs=no fi; -echo "$as_me:32189: result: $use_externs" >&5 +echo "$as_me:32429: result: $use_externs" >&5 echo "${ECHO_T}$use_externs" >&6 if test $use_externs != "no" ; then cat >>confdefs.h <<\EOF @@ -32196,7 +32436,7 @@ EOF EXTRA_OBJS="$EXTRA_OBJS LYExtern\$o" fi -echo "$as_me:32199: checking if you want to use setfont support" >&5 +echo "$as_me:32439: 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. @@ -32213,7 +32453,7 @@ else use_setfont=no fi; -echo "$as_me:32216: result: $use_setfont" >&5 +echo "$as_me:32456: result: $use_setfont" >&5 echo "${ECHO_T}$use_setfont" >&6 if test $use_setfont = yes ; then case $host_os in @@ -32224,7 +32464,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:32227: checking for $ac_word" >&5 +echo "$as_me:32467: 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 @@ -32241,7 +32481,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:32244: found $ac_dir/$ac_word" >&5 + echo "$as_me:32484: found $ac_dir/$ac_word" >&5 break fi done @@ -32252,10 +32492,10 @@ fi SETFONT=$ac_cv_path_SETFONT if test -n "$SETFONT"; then - echo "$as_me:32255: result: $SETFONT" >&5 + echo "$as_me:32495: result: $SETFONT" >&5 echo "${ECHO_T}$SETFONT" >&6 else - echo "$as_me:32258: result: no" >&5 + echo "$as_me:32498: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -32314,7 +32554,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me:-configure}:32317: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me:-configure}:32557: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define SETFONT_PATH "$cf_path_prog" @@ -32331,19 +32571,19 @@ fi SETFONT=built-in test -n "$verbose" && echo " Assume $host_os has font-switching" 1>&6 -echo "${as_me:-configure}:32334: testing Assume $host_os has font-switching ..." 1>&5 +echo "${as_me:-configure}:32574: 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}:32341: testing Assume $host_os has no font-switching ..." 1>&5 +echo "${as_me:-configure}:32581: testing Assume $host_os has no font-switching ..." 1>&5 ;; esac if test -z "$SETFONT" ; then - { echo "$as_me:32346: WARNING: Cannot find a font-setting program" >&5 + { echo "$as_me:32586: 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 @@ -32353,7 +32593,7 @@ EOF fi fi -echo "$as_me:32356: checking if you want cgi-link support" >&5 +echo "$as_me:32596: 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. @@ -32369,10 +32609,10 @@ EOF else enableval=no fi; -echo "$as_me:32372: result: $enableval" >&5 +echo "$as_me:32612: result: $enableval" >&5 echo "${ECHO_T}$enableval" >&6 -echo "$as_me:32375: checking if you want change-exec support" >&5 +echo "$as_me:32615: 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. @@ -32389,13 +32629,13 @@ else use_change_exec=no fi; -echo "$as_me:32392: result: $use_change_exec" >&5 +echo "$as_me:32632: 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:32398: checking if you want exec-links support" >&5 +echo "$as_me:32638: 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. @@ -32412,13 +32652,13 @@ else use_exec_links=$enableval fi; -echo "$as_me:32415: result: $use_exec_links" >&5 +echo "$as_me:32655: 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:32421: checking if you want exec-scripts support" >&5 +echo "$as_me:32661: 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. @@ -32435,13 +32675,13 @@ else use_exec_scripts=$enableval fi; -echo "$as_me:32438: result: $use_exec_scripts" >&5 +echo "$as_me:32678: 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:32444: checking if you want internal-links feature" >&5 +echo "$as_me:32684: 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. @@ -32458,13 +32698,13 @@ else use_internal_links=no fi; -echo "$as_me:32461: result: $use_internal_links" >&5 +echo "$as_me:32701: 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:32467: checking if you want to fork NSL requests" >&5 +echo "$as_me:32707: 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. @@ -32481,7 +32721,7 @@ else use_nsl_fork=no fi; -echo "$as_me:32484: result: $use_nsl_fork" >&5 +echo "$as_me:32724: result: $use_nsl_fork" >&5 echo "${ECHO_T}$use_nsl_fork" >&6 if test $use_nsl_fork = yes ; then case $host_os in @@ -32500,7 +32740,7 @@ EOF esac fi -echo "$as_me:32503: checking if you want to log URL requests via syslog" >&5 +echo "$as_me:32743: 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. @@ -32517,13 +32757,13 @@ else use_syslog=no fi; -echo "$as_me:32520: result: $use_syslog" >&5 +echo "$as_me:32760: 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:32526: checking if you want to underline links" >&5 +echo "$as_me:32766: 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. @@ -32540,7 +32780,7 @@ else use_underline=no fi; -echo "$as_me:32543: result: $use_underline" >&5 +echo "$as_me:32783: result: $use_underline" >&5 echo "${ECHO_T}$use_underline" >&6 test $use_underline = yes && cat >>confdefs.h <<\EOF #define UNDERLINE_LINKS 1 @@ -32550,7 +32790,7 @@ test $use_underline = no && cat >>confdefs.h <<\EOF #define UNDERLINE_LINKS 0 EOF -echo "$as_me:32553: checking if help files should be gzip'ed" >&5 +echo "$as_me:32793: 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. @@ -32567,10 +32807,10 @@ else use_gzip_help=no fi; -echo "$as_me:32570: result: $use_gzip_help" >&5 +echo "$as_me:32810: result: $use_gzip_help" >&5 echo "${ECHO_T}$use_gzip_help" >&6 -echo "$as_me:32573: checking if you want to use libbz2 for decompression of some bzip2 files" >&5 +echo "$as_me:32813: 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. @@ -32580,7 +32820,7 @@ if test "${with_bzlib+set}" = set; then else use_bzlib=no fi; -echo "$as_me:32583: result: $use_bzlib" >&5 +echo "$as_me:32823: result: $use_bzlib" >&5 echo "${ECHO_T}$use_bzlib" >&6 if test ".$use_bzlib" != ".no" ; then @@ -32619,7 +32859,7 @@ if test -n "$cf_searchpath/include" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 32622 "configure" +#line 32862 "configure" #include "confdefs.h" #include <stdio.h> int @@ -32631,16 +32871,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:32634: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:32874: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:32637: \$? = $ac_status" >&5 + echo "$as_me:32877: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:32640: \"$ac_try\"") >&5 + { (eval echo "$as_me:32880: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:32643: \$? = $ac_status" >&5 + echo "$as_me:32883: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -32657,7 +32897,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}:32660: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:32900: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -32698,7 +32938,7 @@ if test -n "$cf_searchpath/../include" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 32701 "configure" +#line 32941 "configure" #include "confdefs.h" #include <stdio.h> int @@ -32710,16 +32950,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:32713: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:32953: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:32716: \$? = $ac_status" >&5 + echo "$as_me:32956: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:32719: \"$ac_try\"") >&5 + { (eval echo "$as_me:32959: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:32722: \$? = $ac_status" >&5 + echo "$as_me:32962: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -32736,7 +32976,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}:32739: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:32979: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -32752,7 +32992,7 @@ echo "${as_me:-configure}:32739: testing adding $cf_add_incdir to include-path . fi else -{ { echo "$as_me:32755: error: cannot find under $use_bzlib" >&5 +{ { echo "$as_me:32995: error: cannot find under $use_bzlib" >&5 echo "$as_me: error: cannot find under $use_bzlib" >&2;} { (exit 1); exit 1; }; } fi @@ -32777,7 +33017,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}:32780: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:33020: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -32806,7 +33046,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}:32809: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:33049: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -32815,7 +33055,7 @@ echo "${as_me:-configure}:32809: testing adding $cf_add_libdir to library-path . fi else -{ { echo "$as_me:32818: error: cannot find under $use_bzlib" >&5 +{ { echo "$as_me:33058: error: cannot find under $use_bzlib" >&5 echo "$as_me: error: cannot find under $use_bzlib" >&2;} { (exit 1); exit 1; }; } fi @@ -32829,12 +33069,12 @@ done cf_cv_header_path_bz2= cf_cv_library_path_bz2= -echo "${as_me:-configure}:32832: testing Starting FIND_LINKAGE(bz2,bzlib) ..." 1>&5 +echo "${as_me:-configure}:33072: testing Starting FIND_LINKAGE(bz2,bzlib) ..." 1>&5 cf_save_LIBS="$LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 32837 "configure" +#line 33077 "configure" #include "confdefs.h" #include <stdio.h> @@ -32851,16 +33091,16 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:32854: \"$ac_link\"") >&5 +if { (eval echo "$as_me:33094: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:32857: \$? = $ac_status" >&5 + echo "$as_me:33097: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:32860: \"$ac_try\"") >&5 + { (eval echo "$as_me:33100: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:32863: \$? = $ac_status" >&5 + echo "$as_me:33103: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_find_linkage_bz2=yes @@ -32874,7 +33114,7 @@ cat conftest.$ac_ext >&5 LIBS="-lbz2 $cf_save_LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 32877 "configure" +#line 33117 "configure" #include "confdefs.h" #include <stdio.h> @@ -32891,16 +33131,16 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:32894: \"$ac_link\"") >&5 +if { (eval echo "$as_me:33134: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:32897: \$? = $ac_status" >&5 + echo "$as_me:33137: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:32900: \"$ac_try\"") >&5 + { (eval echo "$as_me:33140: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:32903: \$? = $ac_status" >&5 + echo "$as_me:33143: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_find_linkage_bz2=yes @@ -32917,9 +33157,9 @@ cat conftest.$ac_ext >&5 test -n "$verbose" && echo " find linkage for bz2 library" 1>&6 -echo "${as_me:-configure}:32920: testing find linkage for bz2 library ..." 1>&5 +echo "${as_me:-configure}:33160: testing find linkage for bz2 library ..." 1>&5 -echo "${as_me:-configure}:32922: testing Searching for headers in FIND_LINKAGE(bz2,bzlib) ..." 1>&5 +echo "${as_me:-configure}:33162: testing Searching for headers in FIND_LINKAGE(bz2,bzlib) ..." 1>&5 cf_save_CPPFLAGS="$CPPFLAGS" cf_test_CPPFLAGS="$CPPFLAGS" @@ -33032,11 +33272,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}:33035: testing ... testing $cf_cv_header_path_bz2 ..." 1>&5 +echo "${as_me:-configure}:33275: 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 33039 "configure" +#line 33279 "configure" #include "confdefs.h" #include <stdio.h> @@ -33053,21 +33293,21 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:33056: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:33296: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:33059: \$? = $ac_status" >&5 + echo "$as_me:33299: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:33062: \"$ac_try\"") >&5 + { (eval echo "$as_me:33302: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:33065: \$? = $ac_status" >&5 + echo "$as_me:33305: \$? = $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}:33070: testing ... found bz2 headers in $cf_cv_header_path_bz2 ..." 1>&5 +echo "${as_me:-configure}:33310: testing ... found bz2 headers in $cf_cv_header_path_bz2 ..." 1>&5 cf_cv_find_linkage_bz2=maybe cf_test_CPPFLAGS="$CPPFLAGS" @@ -33085,7 +33325,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "$cf_cv_find_linkage_bz2" = maybe ; then -echo "${as_me:-configure}:33088: testing Searching for bz2 library in FIND_LINKAGE(bz2,bzlib) ..." 1>&5 +echo "${as_me:-configure}:33328: testing Searching for bz2 library in FIND_LINKAGE(bz2,bzlib) ..." 1>&5 cf_save_LIBS="$LIBS" cf_save_LDFLAGS="$LDFLAGS" @@ -33093,7 +33333,7 @@ echo "${as_me:-configure}:33088: testing Searching for bz2 library in FIND_LINKA CPPFLAGS="$cf_test_CPPFLAGS" LIBS="-lbz2 $cf_save_LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 33096 "configure" +#line 33336 "configure" #include "confdefs.h" #include <stdio.h> @@ -33110,21 +33350,21 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:33113: \"$ac_link\"") >&5 +if { (eval echo "$as_me:33353: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:33116: \$? = $ac_status" >&5 + echo "$as_me:33356: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:33119: \"$ac_try\"") >&5 + { (eval echo "$as_me:33359: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:33122: \$? = $ac_status" >&5 + echo "$as_me:33362: \$? = $ac_status" >&5 (exit $ac_status); }; }; then test -n "$verbose" && echo " ... found bz2 library in system" 1>&6 -echo "${as_me:-configure}:33127: testing ... found bz2 library in system ..." 1>&5 +echo "${as_me:-configure}:33367: testing ... found bz2 library in system ..." 1>&5 cf_cv_find_linkage_bz2=yes else @@ -33227,13 +33467,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}:33230: testing ... testing $cf_cv_library_path_bz2 ..." 1>&5 +echo "${as_me:-configure}:33470: 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 33236 "configure" +#line 33476 "configure" #include "confdefs.h" #include <stdio.h> @@ -33250,21 +33490,21 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:33253: \"$ac_link\"") >&5 +if { (eval echo "$as_me:33493: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:33256: \$? = $ac_status" >&5 + echo "$as_me:33496: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:33259: \"$ac_try\"") >&5 + { (eval echo "$as_me:33499: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:33262: \$? = $ac_status" >&5 + echo "$as_me:33502: \$? = $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}:33267: testing ... found bz2 library in $cf_cv_library_path_bz2 ..." 1>&5 +echo "${as_me:-configure}:33507: testing ... found bz2 library in $cf_cv_library_path_bz2 ..." 1>&5 cf_cv_find_linkage_bz2=yes cf_cv_library_file_bz2="-lbz2" @@ -33323,7 +33563,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 33326 "configure" +#line 33566 "configure" #include "confdefs.h" #include <stdio.h> int @@ -33335,16 +33575,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:33338: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:33578: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:33341: \$? = $ac_status" >&5 + echo "$as_me:33581: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:33344: \"$ac_try\"") >&5 + { (eval echo "$as_me:33584: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:33347: \$? = $ac_status" >&5 + echo "$as_me:33587: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -33361,7 +33601,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}:33364: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:33604: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -33395,7 +33635,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}:33398: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:33638: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -33406,7 +33646,7 @@ fi LIBS="-lbz2 $LIBS" else -{ echo "$as_me:33409: WARNING: Cannot find bz2 library" >&5 +{ echo "$as_me:33649: WARNING: Cannot find bz2 library" >&5 echo "$as_me: WARNING: Cannot find bz2 library" >&2;} fi @@ -33416,7 +33656,7 @@ EOF fi -echo "$as_me:33419: checking if you want to use zlib for decompression of some gzip files" >&5 +echo "$as_me:33659: 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. @@ -33426,7 +33666,7 @@ if test "${with_zlib+set}" = set; then else use_zlib=no fi; -echo "$as_me:33429: result: $use_zlib" >&5 +echo "$as_me:33669: result: $use_zlib" >&5 echo "${ECHO_T}$use_zlib" >&6 if test ".$use_zlib" != ".no" ; then @@ -33465,7 +33705,7 @@ if test -n "$cf_searchpath/include" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 33468 "configure" +#line 33708 "configure" #include "confdefs.h" #include <stdio.h> int @@ -33477,16 +33717,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:33480: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:33720: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:33483: \$? = $ac_status" >&5 + echo "$as_me:33723: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:33486: \"$ac_try\"") >&5 + { (eval echo "$as_me:33726: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:33489: \$? = $ac_status" >&5 + echo "$as_me:33729: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -33503,7 +33743,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}:33506: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:33746: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -33544,7 +33784,7 @@ if test -n "$cf_searchpath/../include" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 33547 "configure" +#line 33787 "configure" #include "confdefs.h" #include <stdio.h> int @@ -33556,16 +33796,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:33559: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:33799: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:33562: \$? = $ac_status" >&5 + echo "$as_me:33802: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:33565: \"$ac_try\"") >&5 + { (eval echo "$as_me:33805: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:33568: \$? = $ac_status" >&5 + echo "$as_me:33808: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -33582,7 +33822,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}:33585: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:33825: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -33598,7 +33838,7 @@ echo "${as_me:-configure}:33585: testing adding $cf_add_incdir to include-path . fi else -{ { echo "$as_me:33601: error: cannot find under $use_zlib" >&5 +{ { echo "$as_me:33841: error: cannot find under $use_zlib" >&5 echo "$as_me: error: cannot find under $use_zlib" >&2;} { (exit 1); exit 1; }; } fi @@ -33623,7 +33863,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}:33626: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:33866: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -33652,7 +33892,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}:33655: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:33895: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -33661,7 +33901,7 @@ echo "${as_me:-configure}:33655: testing adding $cf_add_libdir to library-path . fi else -{ { echo "$as_me:33664: error: cannot find under $use_zlib" >&5 +{ { echo "$as_me:33904: error: cannot find under $use_zlib" >&5 echo "$as_me: error: cannot find under $use_zlib" >&2;} { (exit 1); exit 1; }; } fi @@ -33675,12 +33915,12 @@ done cf_cv_header_path_z= cf_cv_library_path_z= -echo "${as_me:-configure}:33678: testing Starting FIND_LINKAGE(z,zlib) ..." 1>&5 +echo "${as_me:-configure}:33918: testing Starting FIND_LINKAGE(z,zlib) ..." 1>&5 cf_save_LIBS="$LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 33683 "configure" +#line 33923 "configure" #include "confdefs.h" #include <zlib.h> @@ -33696,16 +33936,16 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:33699: \"$ac_link\"") >&5 +if { (eval echo "$as_me:33939: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:33702: \$? = $ac_status" >&5 + echo "$as_me:33942: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:33705: \"$ac_try\"") >&5 + { (eval echo "$as_me:33945: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:33708: \$? = $ac_status" >&5 + echo "$as_me:33948: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_find_linkage_z=yes @@ -33719,7 +33959,7 @@ cat conftest.$ac_ext >&5 LIBS="-lz $cf_save_LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 33722 "configure" +#line 33962 "configure" #include "confdefs.h" #include <zlib.h> @@ -33735,16 +33975,16 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:33738: \"$ac_link\"") >&5 +if { (eval echo "$as_me:33978: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:33741: \$? = $ac_status" >&5 + echo "$as_me:33981: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:33744: \"$ac_try\"") >&5 + { (eval echo "$as_me:33984: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:33747: \$? = $ac_status" >&5 + echo "$as_me:33987: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_find_linkage_z=yes @@ -33761,9 +34001,9 @@ cat conftest.$ac_ext >&5 test -n "$verbose" && echo " find linkage for z library" 1>&6 -echo "${as_me:-configure}:33764: testing find linkage for z library ..." 1>&5 +echo "${as_me:-configure}:34004: testing find linkage for z library ..." 1>&5 -echo "${as_me:-configure}:33766: testing Searching for headers in FIND_LINKAGE(z,zlib) ..." 1>&5 +echo "${as_me:-configure}:34006: testing Searching for headers in FIND_LINKAGE(z,zlib) ..." 1>&5 cf_save_CPPFLAGS="$CPPFLAGS" cf_test_CPPFLAGS="$CPPFLAGS" @@ -33876,11 +34116,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}:33879: testing ... testing $cf_cv_header_path_z ..." 1>&5 +echo "${as_me:-configure}:34119: 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 33883 "configure" +#line 34123 "configure" #include "confdefs.h" #include <zlib.h> @@ -33896,21 +34136,21 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:33899: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:34139: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:33902: \$? = $ac_status" >&5 + echo "$as_me:34142: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:33905: \"$ac_try\"") >&5 + { (eval echo "$as_me:34145: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:33908: \$? = $ac_status" >&5 + echo "$as_me:34148: \$? = $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}:33913: testing ... found z headers in $cf_cv_header_path_z ..." 1>&5 +echo "${as_me:-configure}:34153: testing ... found z headers in $cf_cv_header_path_z ..." 1>&5 cf_cv_find_linkage_z=maybe cf_test_CPPFLAGS="$CPPFLAGS" @@ -33928,7 +34168,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "$cf_cv_find_linkage_z" = maybe ; then -echo "${as_me:-configure}:33931: testing Searching for z library in FIND_LINKAGE(z,zlib) ..." 1>&5 +echo "${as_me:-configure}:34171: testing Searching for z library in FIND_LINKAGE(z,zlib) ..." 1>&5 cf_save_LIBS="$LIBS" cf_save_LDFLAGS="$LDFLAGS" @@ -33936,7 +34176,7 @@ echo "${as_me:-configure}:33931: testing Searching for z library in FIND_LINKAGE CPPFLAGS="$cf_test_CPPFLAGS" LIBS="-lz $cf_save_LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 33939 "configure" +#line 34179 "configure" #include "confdefs.h" #include <zlib.h> @@ -33952,21 +34192,21 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:33955: \"$ac_link\"") >&5 +if { (eval echo "$as_me:34195: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:33958: \$? = $ac_status" >&5 + echo "$as_me:34198: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:33961: \"$ac_try\"") >&5 + { (eval echo "$as_me:34201: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:33964: \$? = $ac_status" >&5 + echo "$as_me:34204: \$? = $ac_status" >&5 (exit $ac_status); }; }; then test -n "$verbose" && echo " ... found z library in system" 1>&6 -echo "${as_me:-configure}:33969: testing ... found z library in system ..." 1>&5 +echo "${as_me:-configure}:34209: testing ... found z library in system ..." 1>&5 cf_cv_find_linkage_z=yes else @@ -34069,13 +34309,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}:34072: testing ... testing $cf_cv_library_path_z ..." 1>&5 +echo "${as_me:-configure}:34312: 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 34078 "configure" +#line 34318 "configure" #include "confdefs.h" #include <zlib.h> @@ -34091,21 +34331,21 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:34094: \"$ac_link\"") >&5 +if { (eval echo "$as_me:34334: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:34097: \$? = $ac_status" >&5 + echo "$as_me:34337: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:34100: \"$ac_try\"") >&5 + { (eval echo "$as_me:34340: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:34103: \$? = $ac_status" >&5 + echo "$as_me:34343: \$? = $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}:34108: testing ... found z library in $cf_cv_library_path_z ..." 1>&5 +echo "${as_me:-configure}:34348: testing ... found z library in $cf_cv_library_path_z ..." 1>&5 cf_cv_find_linkage_z=yes cf_cv_library_file_z="-lz" @@ -34164,7 +34404,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 34167 "configure" +#line 34407 "configure" #include "confdefs.h" #include <stdio.h> int @@ -34176,16 +34416,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:34179: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:34419: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:34182: \$? = $ac_status" >&5 + echo "$as_me:34422: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:34185: \"$ac_try\"") >&5 + { (eval echo "$as_me:34425: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:34188: \$? = $ac_status" >&5 + echo "$as_me:34428: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -34202,7 +34442,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}:34205: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:34445: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -34236,7 +34476,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}:34239: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:34479: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -34247,7 +34487,7 @@ fi LIBS="-lz $LIBS" else -{ echo "$as_me:34250: WARNING: Cannot find z library" >&5 +{ echo "$as_me:34490: WARNING: Cannot find z library" >&5 echo "$as_me: WARNING: Cannot find z library" >&2;} fi @@ -34256,13 +34496,13 @@ for ac_func in \ do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` -echo "$as_me:34259: checking for $ac_func" >&5 +echo "$as_me:34499: 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 34265 "configure" +#line 34505 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. */ @@ -34293,16 +34533,16 @@ f = $ac_func; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:34296: \"$ac_link\"") >&5 +if { (eval echo "$as_me:34536: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:34299: \$? = $ac_status" >&5 + echo "$as_me:34539: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:34302: \"$ac_try\"") >&5 + { (eval echo "$as_me:34542: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:34305: \$? = $ac_status" >&5 + echo "$as_me:34545: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else @@ -34312,7 +34552,7 @@ eval "$as_ac_var=no" fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:34315: result: `eval echo '${'$as_ac_var'}'`" >&5 +echo "$as_me:34555: 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 @@ -34328,7 +34568,7 @@ EOF fi -echo "$as_me:34331: checking if you want to exclude FINGER code" >&5 +echo "$as_me:34571: 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. @@ -34345,13 +34585,13 @@ else use_finger=no fi; -echo "$as_me:34348: result: $use_finger" >&5 +echo "$as_me:34588: 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:34354: checking if you want to exclude GOPHER code" >&5 +echo "$as_me:34594: 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. @@ -34368,13 +34608,13 @@ else use_gopher=no fi; -echo "$as_me:34371: result: $use_gopher" >&5 +echo "$as_me:34611: 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:34377: checking if you want to exclude NEWS code" >&5 +echo "$as_me:34617: 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. @@ -34391,13 +34631,13 @@ else use_news=no fi; -echo "$as_me:34394: result: $use_news" >&5 +echo "$as_me:34634: 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:34400: checking if you want to exclude FTP code" >&5 +echo "$as_me:34640: 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. @@ -34414,13 +34654,13 @@ else use_ftp=no fi; -echo "$as_me:34417: result: $use_ftp" >&5 +echo "$as_me:34657: 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:34423: checking if you want to include WAIS code" >&5 +echo "$as_me:34663: 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. @@ -34437,13 +34677,13 @@ else use_wais=no fi; -echo "$as_me:34440: result: $use_wais" >&5 +echo "$as_me:34680: result: $use_wais" >&5 echo "${ECHO_T}$use_wais" >&6 MAKE_WAIS="#" if test $use_wais != "no" then - echo "$as_me:34446: checking for fs_free in -lwais" >&5 + echo "$as_me:34686: 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 @@ -34451,7 +34691,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lwais $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 34454 "configure" +#line 34694 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -34470,16 +34710,16 @@ fs_free (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:34473: \"$ac_link\"") >&5 +if { (eval echo "$as_me:34713: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:34476: \$? = $ac_status" >&5 + echo "$as_me:34716: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:34479: \"$ac_try\"") >&5 + { (eval echo "$as_me:34719: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:34482: \$? = $ac_status" >&5 + echo "$as_me:34722: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_wais_fs_free=yes else @@ -34490,18 +34730,18 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:34493: result: $ac_cv_lib_wais_fs_free" >&5 +echo "$as_me:34733: 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:34497: checking if -lm needed for math functions" >&5 +echo "$as_me:34737: 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 34504 "configure" +#line 34744 "configure" #include "confdefs.h" #include <stdio.h> @@ -34516,16 +34756,16 @@ double x = rand(); printf("result = %g\n", sin(x)) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:34519: \"$ac_link\"") >&5 +if { (eval echo "$as_me:34759: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:34522: \$? = $ac_status" >&5 + echo "$as_me:34762: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:34525: \"$ac_try\"") >&5 + { (eval echo "$as_me:34765: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:34528: \$? = $ac_status" >&5 + echo "$as_me:34768: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_need_libm=no else @@ -34535,7 +34775,7 @@ cf_cv_need_libm=yes fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:34538: result: $cf_cv_need_libm" >&5 +echo "$as_me:34778: result: $cf_cv_need_libm" >&5 echo "${ECHO_T}$cf_cv_need_libm" >&6 if test "$cf_cv_need_libm" = yes then @@ -34549,23 +34789,23 @@ fi for ac_header in wais.h do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` -echo "$as_me:34552: checking for $ac_header" >&5 +echo "$as_me:34792: 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 34558 "configure" +#line 34798 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:34562: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:34802: \"$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:34568: \$? = $ac_status" >&5 + echo "$as_me:34808: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -34584,7 +34824,7 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:34587: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:34827: 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 @@ -34597,7 +34837,7 @@ done MAKE_WAIS= else - { echo "$as_me:34600: WARNING: could not find WAIS library" >&5 + { echo "$as_me:34840: WARNING: could not find WAIS library" >&5 echo "$as_me: WARNING: could not find WAIS library" >&2;} fi @@ -34605,7 +34845,7 @@ fi # All DirEd functions that were enabled on compilation can be disabled # or modified at run time via DIRED_MENU symbols in lynx.cfg. -echo "$as_me:34608: checking if directory-editor code should be used" >&5 +echo "$as_me:34848: 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. @@ -34622,7 +34862,7 @@ else use_dired=yes fi; -echo "$as_me:34625: result: $use_dired" >&5 +echo "$as_me:34865: result: $use_dired" >&5 echo "${ECHO_T}$use_dired" >&6 if test ".$use_dired" != ".no" ; then @@ -34631,7 +34871,7 @@ if test ".$use_dired" != ".no" ; then #define DIRED_SUPPORT 1 EOF - echo "$as_me:34634: checking if you wish to allow extracting from archives via DirEd" >&5 + echo "$as_me:34874: 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. @@ -34647,10 +34887,10 @@ EOF else enableval=yes fi; - echo "$as_me:34650: result: $enableval" >&5 + echo "$as_me:34890: result: $enableval" >&5 echo "${ECHO_T}$enableval" >&6 - echo "$as_me:34653: checking if DirEd mode should override keys" >&5 + echo "$as_me:34893: 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. @@ -34672,10 +34912,10 @@ else EOF fi; - echo "$as_me:34675: result: $enableval" >&5 + echo "$as_me:34915: result: $enableval" >&5 echo "${ECHO_T}$enableval" >&6 - echo "$as_me:34678: checking if you wish to allow permissions commands via DirEd" >&5 + echo "$as_me:34918: 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. @@ -34697,10 +34937,10 @@ else EOF fi; - echo "$as_me:34700: result: $enableval" >&5 + echo "$as_me:34940: result: $enableval" >&5 echo "${ECHO_T}$enableval" >&6 - echo "$as_me:34703: checking if you wish to allow executable-permission commands via DirEd" >&5 + echo "$as_me:34943: 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. @@ -34716,10 +34956,10 @@ EOF else enableval=yes fi; - echo "$as_me:34719: result: $enableval" >&5 + echo "$as_me:34959: result: $enableval" >&5 echo "${ECHO_T}$enableval" >&6 - echo "$as_me:34722: checking if you wish to allow \"tar\" commands from DirEd" >&5 + echo "$as_me:34962: 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. @@ -34741,10 +34981,10 @@ else EOF fi; - echo "$as_me:34744: result: $enableval" >&5 + echo "$as_me:34984: result: $enableval" >&5 echo "${ECHO_T}$enableval" >&6 - echo "$as_me:34747: checking if you wish to allow \"uudecode\" commands from DirEd" >&5 + echo "$as_me:34987: 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. @@ -34766,10 +35006,10 @@ else EOF fi; - echo "$as_me:34769: result: $enableval" >&5 + echo "$as_me:35009: result: $enableval" >&5 echo "${ECHO_T}$enableval" >&6 - echo "$as_me:34772: checking if you wish to allow \"zip\" and \"unzip\" commands from DirEd" >&5 + echo "$as_me:35012: 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. @@ -34791,10 +35031,10 @@ else EOF fi; - echo "$as_me:34794: result: $enableval" >&5 + echo "$as_me:35034: result: $enableval" >&5 echo "${ECHO_T}$enableval" >&6 - echo "$as_me:34797: checking if you wish to allow \"gzip\" and \"gunzip\" commands from DirEd" >&5 + echo "$as_me:35037: 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. @@ -34816,11 +35056,11 @@ else EOF fi; - echo "$as_me:34819: result: $enableval" >&5 + echo "$as_me:35059: result: $enableval" >&5 echo "${ECHO_T}$enableval" >&6 fi -echo "$as_me:34823: checking if you want long-directory listings" >&5 +echo "$as_me:35063: 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. @@ -34842,10 +35082,10 @@ else EOF fi; -echo "$as_me:34845: result: $enableval" >&5 +echo "$as_me:35085: result: $enableval" >&5 echo "${ECHO_T}$enableval" >&6 -echo "$as_me:34848: checking if parent-directory references are permitted" >&5 +echo "$as_me:35088: 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. @@ -34861,7 +35101,7 @@ EOF else enableval=yes fi; -echo "$as_me:34864: result: $enableval" >&5 +echo "$as_me:35104: result: $enableval" >&5 echo "${ECHO_T}$enableval" >&6 test -z "$TELNET" && TELNET=telnet @@ -34869,7 +35109,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:34872: checking for $ac_word" >&5 +echo "$as_me:35112: 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 @@ -34886,7 +35126,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:34889: found $ac_dir/$ac_word" >&5 + echo "$as_me:35129: found $ac_dir/$ac_word" >&5 break fi done @@ -34897,10 +35137,10 @@ fi TELNET=$ac_cv_path_TELNET if test -n "$TELNET"; then - echo "$as_me:34900: result: $TELNET" >&5 + echo "$as_me:35140: result: $TELNET" >&5 echo "${ECHO_T}$TELNET" >&6 else - echo "$as_me:34903: result: no" >&5 + echo "$as_me:35143: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -34959,7 +35199,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me:-configure}:34962: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me:-configure}:35202: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define TELNET_PATH "$cf_path_prog" @@ -34976,7 +35216,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:34979: checking for $ac_word" >&5 +echo "$as_me:35219: 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 @@ -34993,7 +35233,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:34996: found $ac_dir/$ac_word" >&5 + echo "$as_me:35236: found $ac_dir/$ac_word" >&5 break fi done @@ -35004,10 +35244,10 @@ fi TN3270=$ac_cv_path_TN3270 if test -n "$TN3270"; then - echo "$as_me:35007: result: $TN3270" >&5 + echo "$as_me:35247: result: $TN3270" >&5 echo "${ECHO_T}$TN3270" >&6 else - echo "$as_me:35010: result: no" >&5 + echo "$as_me:35250: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -35066,7 +35306,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me:-configure}:35069: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me:-configure}:35309: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define TN3270_PATH "$cf_path_prog" @@ -35083,7 +35323,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:35086: checking for $ac_word" >&5 +echo "$as_me:35326: 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 @@ -35100,7 +35340,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:35103: found $ac_dir/$ac_word" >&5 + echo "$as_me:35343: found $ac_dir/$ac_word" >&5 break fi done @@ -35111,10 +35351,10 @@ fi RLOGIN=$ac_cv_path_RLOGIN if test -n "$RLOGIN"; then - echo "$as_me:35114: result: $RLOGIN" >&5 + echo "$as_me:35354: result: $RLOGIN" >&5 echo "${ECHO_T}$RLOGIN" >&6 else - echo "$as_me:35117: result: no" >&5 + echo "$as_me:35357: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -35173,7 +35413,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me:-configure}:35176: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me:-configure}:35416: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define RLOGIN_PATH "$cf_path_prog" @@ -35190,7 +35430,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:35193: checking for $ac_word" >&5 +echo "$as_me:35433: 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 @@ -35207,7 +35447,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:35210: found $ac_dir/$ac_word" >&5 + echo "$as_me:35450: found $ac_dir/$ac_word" >&5 break fi done @@ -35218,10 +35458,10 @@ fi MV=$ac_cv_path_MV if test -n "$MV"; then - echo "$as_me:35221: result: $MV" >&5 + echo "$as_me:35461: result: $MV" >&5 echo "${ECHO_T}$MV" >&6 else - echo "$as_me:35224: result: no" >&5 + echo "$as_me:35464: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -35280,7 +35520,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me:-configure}:35283: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me:-configure}:35523: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define MV_PATH "$cf_path_prog" @@ -35297,7 +35537,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:35300: checking for $ac_word" >&5 +echo "$as_me:35540: 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 @@ -35314,7 +35554,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:35317: found $ac_dir/$ac_word" >&5 + echo "$as_me:35557: found $ac_dir/$ac_word" >&5 break fi done @@ -35325,10 +35565,10 @@ fi GZIP=$ac_cv_path_GZIP if test -n "$GZIP"; then - echo "$as_me:35328: result: $GZIP" >&5 + echo "$as_me:35568: result: $GZIP" >&5 echo "${ECHO_T}$GZIP" >&6 else - echo "$as_me:35331: result: no" >&5 + echo "$as_me:35571: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -35387,7 +35627,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me:-configure}:35390: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me:-configure}:35630: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define GZIP_PATH "$cf_path_prog" @@ -35404,7 +35644,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:35407: checking for $ac_word" >&5 +echo "$as_me:35647: 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 @@ -35421,7 +35661,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:35424: found $ac_dir/$ac_word" >&5 + echo "$as_me:35664: found $ac_dir/$ac_word" >&5 break fi done @@ -35432,10 +35672,10 @@ fi UNCOMPRESS=$ac_cv_path_UNCOMPRESS if test -n "$UNCOMPRESS"; then - echo "$as_me:35435: result: $UNCOMPRESS" >&5 + echo "$as_me:35675: result: $UNCOMPRESS" >&5 echo "${ECHO_T}$UNCOMPRESS" >&6 else - echo "$as_me:35438: result: no" >&5 + echo "$as_me:35678: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -35494,7 +35734,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me:-configure}:35497: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me:-configure}:35737: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define UNCOMPRESS_PATH "$cf_path_prog" @@ -35511,7 +35751,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:35514: checking for $ac_word" >&5 +echo "$as_me:35754: 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 @@ -35528,7 +35768,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:35531: found $ac_dir/$ac_word" >&5 + echo "$as_me:35771: found $ac_dir/$ac_word" >&5 break fi done @@ -35539,10 +35779,10 @@ fi UNZIP=$ac_cv_path_UNZIP if test -n "$UNZIP"; then - echo "$as_me:35542: result: $UNZIP" >&5 + echo "$as_me:35782: result: $UNZIP" >&5 echo "${ECHO_T}$UNZIP" >&6 else - echo "$as_me:35545: result: no" >&5 + echo "$as_me:35785: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -35601,7 +35841,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me:-configure}:35604: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me:-configure}:35844: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define UNZIP_PATH "$cf_path_prog" @@ -35618,7 +35858,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:35621: checking for $ac_word" >&5 +echo "$as_me:35861: 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 @@ -35635,7 +35875,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:35638: found $ac_dir/$ac_word" >&5 + echo "$as_me:35878: found $ac_dir/$ac_word" >&5 break fi done @@ -35646,10 +35886,10 @@ fi BZIP2=$ac_cv_path_BZIP2 if test -n "$BZIP2"; then - echo "$as_me:35649: result: $BZIP2" >&5 + echo "$as_me:35889: result: $BZIP2" >&5 echo "${ECHO_T}$BZIP2" >&6 else - echo "$as_me:35652: result: no" >&5 + echo "$as_me:35892: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -35708,7 +35948,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me:-configure}:35711: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me:-configure}:35951: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define BZIP2_PATH "$cf_path_prog" @@ -35725,7 +35965,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:35728: checking for $ac_word" >&5 +echo "$as_me:35968: 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 @@ -35742,7 +35982,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:35745: found $ac_dir/$ac_word" >&5 + echo "$as_me:35985: found $ac_dir/$ac_word" >&5 break fi done @@ -35753,10 +35993,10 @@ fi TAR=$ac_cv_path_TAR if test -n "$TAR"; then - echo "$as_me:35756: result: $TAR" >&5 + echo "$as_me:35996: result: $TAR" >&5 echo "${ECHO_T}$TAR" >&6 else - echo "$as_me:35759: result: no" >&5 + echo "$as_me:35999: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -35815,7 +36055,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me:-configure}:35818: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me:-configure}:36058: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define TAR_PATH "$cf_path_prog" @@ -35872,7 +36112,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:35875: checking for $ac_word" >&5 +echo "$as_me:36115: 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 @@ -35889,7 +36129,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:35892: found $ac_dir/$ac_word" >&5 + echo "$as_me:36132: found $ac_dir/$ac_word" >&5 break fi done @@ -35900,10 +36140,10 @@ fi COMPRESS=$ac_cv_path_COMPRESS if test -n "$COMPRESS"; then - echo "$as_me:35903: result: $COMPRESS" >&5 + echo "$as_me:36143: result: $COMPRESS" >&5 echo "${ECHO_T}$COMPRESS" >&6 else - echo "$as_me:35906: result: no" >&5 + echo "$as_me:36146: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -35962,7 +36202,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me:-configure}:35965: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me:-configure}:36205: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define COMPRESS_PATH "$cf_path_prog" @@ -35979,7 +36219,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:35982: checking for $ac_word" >&5 +echo "$as_me:36222: 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 @@ -35996,7 +36236,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:35999: found $ac_dir/$ac_word" >&5 + echo "$as_me:36239: found $ac_dir/$ac_word" >&5 break fi done @@ -36007,10 +36247,10 @@ fi RM=$ac_cv_path_RM if test -n "$RM"; then - echo "$as_me:36010: result: $RM" >&5 + echo "$as_me:36250: result: $RM" >&5 echo "${ECHO_T}$RM" >&6 else - echo "$as_me:36013: result: no" >&5 + echo "$as_me:36253: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -36069,7 +36309,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me:-configure}:36072: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me:-configure}:36312: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define RM_PATH "$cf_path_prog" @@ -36086,7 +36326,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:36089: checking for $ac_word" >&5 +echo "$as_me:36329: 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 @@ -36103,7 +36343,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:36106: found $ac_dir/$ac_word" >&5 + echo "$as_me:36346: found $ac_dir/$ac_word" >&5 break fi done @@ -36114,10 +36354,10 @@ fi UUDECODE=$ac_cv_path_UUDECODE if test -n "$UUDECODE"; then - echo "$as_me:36117: result: $UUDECODE" >&5 + echo "$as_me:36357: result: $UUDECODE" >&5 echo "${ECHO_T}$UUDECODE" >&6 else - echo "$as_me:36120: result: no" >&5 + echo "$as_me:36360: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -36176,7 +36416,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me:-configure}:36179: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me:-configure}:36419: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define UUDECODE_PATH "$cf_path_prog" @@ -36193,7 +36433,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:36196: checking for $ac_word" >&5 +echo "$as_me:36436: 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 @@ -36210,7 +36450,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:36213: found $ac_dir/$ac_word" >&5 + echo "$as_me:36453: found $ac_dir/$ac_word" >&5 break fi done @@ -36221,10 +36461,10 @@ fi ZCAT=$ac_cv_path_ZCAT if test -n "$ZCAT"; then - echo "$as_me:36224: result: $ZCAT" >&5 + echo "$as_me:36464: result: $ZCAT" >&5 echo "${ECHO_T}$ZCAT" >&6 else - echo "$as_me:36227: result: no" >&5 + echo "$as_me:36467: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -36283,7 +36523,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me:-configure}:36286: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me:-configure}:36526: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define ZCAT_PATH "$cf_path_prog" @@ -36300,7 +36540,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:36303: checking for $ac_word" >&5 +echo "$as_me:36543: 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 @@ -36317,7 +36557,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:36320: found $ac_dir/$ac_word" >&5 + echo "$as_me:36560: found $ac_dir/$ac_word" >&5 break fi done @@ -36328,10 +36568,10 @@ fi ZIP=$ac_cv_path_ZIP if test -n "$ZIP"; then - echo "$as_me:36331: result: $ZIP" >&5 + echo "$as_me:36571: result: $ZIP" >&5 echo "${ECHO_T}$ZIP" >&6 else - echo "$as_me:36334: result: no" >&5 + echo "$as_me:36574: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -36390,7 +36630,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me:-configure}:36393: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me:-configure}:36633: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define ZIP_PATH "$cf_path_prog" @@ -36417,7 +36657,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:36420: checking for $ac_word" >&5 +echo "$as_me:36660: 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 @@ -36434,7 +36674,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:36437: found $ac_dir/$ac_word" >&5 + echo "$as_me:36677: found $ac_dir/$ac_word" >&5 break fi done @@ -36445,10 +36685,10 @@ fi INSTALL=$ac_cv_path_INSTALL if test -n "$INSTALL"; then - echo "$as_me:36448: result: $INSTALL" >&5 + echo "$as_me:36688: result: $INSTALL" >&5 echo "${ECHO_T}$INSTALL" >&6 else - echo "$as_me:36451: result: no" >&5 + echo "$as_me:36691: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -36507,7 +36747,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me:-configure}:36510: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me:-configure}:36750: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define INSTALL_PATH "$cf_path_prog" @@ -36533,7 +36773,7 @@ fi if test $cf_cv_screen = pdcurses ; then - echo "$as_me:36536: checking for X" >&5 + echo "$as_me:36776: checking for X" >&5 echo $ECHO_N "checking for X... $ECHO_C" >&6 # Check whether --with-x or --without-x was given. @@ -36630,17 +36870,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 36633 "configure" +#line 36873 "configure" #include "confdefs.h" #include <X11/Intrinsic.h> _ACEOF -if { (eval echo "$as_me:36637: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:36877: \"$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:36643: \$? = $ac_status" >&5 + echo "$as_me:36883: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -36673,7 +36913,7 @@ if test "$ac_x_libraries" = no; then ac_save_LIBS=$LIBS LIBS="-lXt $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 36676 "configure" +#line 36916 "configure" #include "confdefs.h" #include <X11/Intrinsic.h> int @@ -36685,16 +36925,16 @@ XtMalloc (0) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:36688: \"$ac_link\"") >&5 +if { (eval echo "$as_me:36928: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:36691: \$? = $ac_status" >&5 + echo "$as_me:36931: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:36694: \"$ac_try\"") >&5 + { (eval echo "$as_me:36934: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:36697: \$? = $ac_status" >&5 + echo "$as_me:36937: \$? = $ac_status" >&5 (exit $ac_status); }; }; then LIBS=$ac_save_LIBS # We can link X programs with no special library path. @@ -36732,7 +36972,7 @@ fi fi # $with_x != no if test "$have_x" != yes; then - echo "$as_me:36735: result: $have_x" >&5 + echo "$as_me:36975: result: $have_x" >&5 echo "${ECHO_T}$have_x" >&6 no_x=yes else @@ -36742,7 +36982,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:36745: result: libraries $x_libraries, headers $x_includes" >&5 + echo "$as_me:36985: result: libraries $x_libraries, headers $x_includes" >&5 echo "${ECHO_T}libraries $x_libraries, headers $x_includes" >&6 fi @@ -36766,11 +37006,11 @@ else # others require no space. Words are not sufficient . . . . case `(uname -sr) 2>/dev/null` in "SunOS 5"*) - echo "$as_me:36769: checking whether -R must be followed by a space" >&5 + echo "$as_me:37009: 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 36773 "configure" +#line 37013 "configure" #include "confdefs.h" int @@ -36782,16 +37022,16 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:36785: \"$ac_link\"") >&5 +if { (eval echo "$as_me:37025: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:36788: \$? = $ac_status" >&5 + echo "$as_me:37028: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:36791: \"$ac_try\"") >&5 + { (eval echo "$as_me:37031: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:36794: \$? = $ac_status" >&5 + echo "$as_me:37034: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_R_nospace=yes else @@ -36801,13 +37041,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:36804: result: no" >&5 + echo "$as_me:37044: 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 36810 "configure" +#line 37050 "configure" #include "confdefs.h" int @@ -36819,16 +37059,16 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:36822: \"$ac_link\"") >&5 +if { (eval echo "$as_me:37062: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:36825: \$? = $ac_status" >&5 + echo "$as_me:37065: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:36828: \"$ac_try\"") >&5 + { (eval echo "$as_me:37068: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:36831: \$? = $ac_status" >&5 + echo "$as_me:37071: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_R_space=yes else @@ -36838,11 +37078,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:36841: result: yes" >&5 + echo "$as_me:37081: result: yes" >&5 echo "${ECHO_T}yes" >&6 X_LIBS="$X_LIBS -R $x_libraries" else - echo "$as_me:36845: result: neither works" >&5 + echo "$as_me:37085: result: neither works" >&5 echo "${ECHO_T}neither works" >&6 fi fi @@ -36862,7 +37102,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 36865 "configure" +#line 37105 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -36881,22 +37121,22 @@ XOpenDisplay (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:36884: \"$ac_link\"") >&5 +if { (eval echo "$as_me:37124: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:36887: \$? = $ac_status" >&5 + echo "$as_me:37127: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:36890: \"$ac_try\"") >&5 + { (eval echo "$as_me:37130: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:36893: \$? = $ac_status" >&5 + echo "$as_me:37133: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 -echo "$as_me:36899: checking for dnet_ntoa in -ldnet" >&5 +echo "$as_me:37139: 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 @@ -36904,7 +37144,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-ldnet $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 36907 "configure" +#line 37147 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -36923,16 +37163,16 @@ dnet_ntoa (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:36926: \"$ac_link\"") >&5 +if { (eval echo "$as_me:37166: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:36929: \$? = $ac_status" >&5 + echo "$as_me:37169: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:36932: \"$ac_try\"") >&5 + { (eval echo "$as_me:37172: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:36935: \$? = $ac_status" >&5 + echo "$as_me:37175: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_dnet_dnet_ntoa=yes else @@ -36943,14 +37183,14 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:36946: result: $ac_cv_lib_dnet_dnet_ntoa" >&5 +echo "$as_me:37186: 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:36953: checking for dnet_ntoa in -ldnet_stub" >&5 + echo "$as_me:37193: 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 @@ -36958,7 +37198,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-ldnet_stub $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 36961 "configure" +#line 37201 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -36977,16 +37217,16 @@ dnet_ntoa (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:36980: \"$ac_link\"") >&5 +if { (eval echo "$as_me:37220: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:36983: \$? = $ac_status" >&5 + echo "$as_me:37223: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:36986: \"$ac_try\"") >&5 + { (eval echo "$as_me:37226: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:36989: \$? = $ac_status" >&5 + echo "$as_me:37229: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_dnet_stub_dnet_ntoa=yes else @@ -36997,7 +37237,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:37000: result: $ac_cv_lib_dnet_stub_dnet_ntoa" >&5 +echo "$as_me:37240: 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" @@ -37016,13 +37256,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:37019: checking for gethostbyname" >&5 + echo "$as_me:37259: 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 37025 "configure" +#line 37265 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char gethostbyname (); below. */ @@ -37053,16 +37293,16 @@ f = gethostbyname; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:37056: \"$ac_link\"") >&5 +if { (eval echo "$as_me:37296: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:37059: \$? = $ac_status" >&5 + echo "$as_me:37299: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:37062: \"$ac_try\"") >&5 + { (eval echo "$as_me:37302: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:37065: \$? = $ac_status" >&5 + echo "$as_me:37305: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_gethostbyname=yes else @@ -37072,11 +37312,11 @@ ac_cv_func_gethostbyname=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:37075: result: $ac_cv_func_gethostbyname" >&5 +echo "$as_me:37315: 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:37079: checking for gethostbyname in -lnsl" >&5 + echo "$as_me:37319: 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 @@ -37084,7 +37324,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lnsl $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 37087 "configure" +#line 37327 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -37103,16 +37343,16 @@ gethostbyname (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:37106: \"$ac_link\"") >&5 +if { (eval echo "$as_me:37346: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:37109: \$? = $ac_status" >&5 + echo "$as_me:37349: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:37112: \"$ac_try\"") >&5 + { (eval echo "$as_me:37352: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:37115: \$? = $ac_status" >&5 + echo "$as_me:37355: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_nsl_gethostbyname=yes else @@ -37123,14 +37363,14 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:37126: result: $ac_cv_lib_nsl_gethostbyname" >&5 +echo "$as_me:37366: 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:37133: checking for gethostbyname in -lbsd" >&5 + echo "$as_me:37373: 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 @@ -37138,7 +37378,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lbsd $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 37141 "configure" +#line 37381 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -37157,16 +37397,16 @@ gethostbyname (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:37160: \"$ac_link\"") >&5 +if { (eval echo "$as_me:37400: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:37163: \$? = $ac_status" >&5 + echo "$as_me:37403: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:37166: \"$ac_try\"") >&5 + { (eval echo "$as_me:37406: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:37169: \$? = $ac_status" >&5 + echo "$as_me:37409: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_bsd_gethostbyname=yes else @@ -37177,7 +37417,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:37180: result: $ac_cv_lib_bsd_gethostbyname" >&5 +echo "$as_me:37420: 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" @@ -37193,13 +37433,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:37196: checking for connect" >&5 + echo "$as_me:37436: 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 37202 "configure" +#line 37442 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char connect (); below. */ @@ -37230,16 +37470,16 @@ f = connect; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:37233: \"$ac_link\"") >&5 +if { (eval echo "$as_me:37473: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:37236: \$? = $ac_status" >&5 + echo "$as_me:37476: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:37239: \"$ac_try\"") >&5 + { (eval echo "$as_me:37479: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:37242: \$? = $ac_status" >&5 + echo "$as_me:37482: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_connect=yes else @@ -37249,11 +37489,11 @@ ac_cv_func_connect=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:37252: result: $ac_cv_func_connect" >&5 +echo "$as_me:37492: 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:37256: checking for connect in -lsocket" >&5 + echo "$as_me:37496: 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 @@ -37261,7 +37501,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lsocket $X_EXTRA_LIBS $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 37264 "configure" +#line 37504 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -37280,16 +37520,16 @@ connect (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:37283: \"$ac_link\"") >&5 +if { (eval echo "$as_me:37523: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:37286: \$? = $ac_status" >&5 + echo "$as_me:37526: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:37289: \"$ac_try\"") >&5 + { (eval echo "$as_me:37529: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:37292: \$? = $ac_status" >&5 + echo "$as_me:37532: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_socket_connect=yes else @@ -37300,7 +37540,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:37303: result: $ac_cv_lib_socket_connect" >&5 +echo "$as_me:37543: 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" @@ -37309,13 +37549,13 @@ fi fi # Guillermo Gomez says -lposix is necessary on A/UX. - echo "$as_me:37312: checking for remove" >&5 + echo "$as_me:37552: 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 37318 "configure" +#line 37558 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char remove (); below. */ @@ -37346,16 +37586,16 @@ f = remove; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:37349: \"$ac_link\"") >&5 +if { (eval echo "$as_me:37589: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:37352: \$? = $ac_status" >&5 + echo "$as_me:37592: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:37355: \"$ac_try\"") >&5 + { (eval echo "$as_me:37595: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:37358: \$? = $ac_status" >&5 + echo "$as_me:37598: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_remove=yes else @@ -37365,11 +37605,11 @@ ac_cv_func_remove=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:37368: result: $ac_cv_func_remove" >&5 +echo "$as_me:37608: 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:37372: checking for remove in -lposix" >&5 + echo "$as_me:37612: 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 @@ -37377,7 +37617,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lposix $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 37380 "configure" +#line 37620 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -37396,16 +37636,16 @@ remove (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:37399: \"$ac_link\"") >&5 +if { (eval echo "$as_me:37639: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:37402: \$? = $ac_status" >&5 + echo "$as_me:37642: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:37405: \"$ac_try\"") >&5 + { (eval echo "$as_me:37645: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:37408: \$? = $ac_status" >&5 + echo "$as_me:37648: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_posix_remove=yes else @@ -37416,7 +37656,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:37419: result: $ac_cv_lib_posix_remove" >&5 +echo "$as_me:37659: 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" @@ -37425,13 +37665,13 @@ fi fi # BSDI BSD/OS 2.1 needs -lipc for XOpenDisplay. - echo "$as_me:37428: checking for shmat" >&5 + echo "$as_me:37668: 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 37434 "configure" +#line 37674 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char shmat (); below. */ @@ -37462,16 +37702,16 @@ f = shmat; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:37465: \"$ac_link\"") >&5 +if { (eval echo "$as_me:37705: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:37468: \$? = $ac_status" >&5 + echo "$as_me:37708: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:37471: \"$ac_try\"") >&5 + { (eval echo "$as_me:37711: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:37474: \$? = $ac_status" >&5 + echo "$as_me:37714: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_shmat=yes else @@ -37481,11 +37721,11 @@ ac_cv_func_shmat=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:37484: result: $ac_cv_func_shmat" >&5 +echo "$as_me:37724: 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:37488: checking for shmat in -lipc" >&5 + echo "$as_me:37728: 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 @@ -37493,7 +37733,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lipc $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 37496 "configure" +#line 37736 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -37512,16 +37752,16 @@ shmat (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:37515: \"$ac_link\"") >&5 +if { (eval echo "$as_me:37755: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:37518: \$? = $ac_status" >&5 + echo "$as_me:37758: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:37521: \"$ac_try\"") >&5 + { (eval echo "$as_me:37761: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:37524: \$? = $ac_status" >&5 + echo "$as_me:37764: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_ipc_shmat=yes else @@ -37532,7 +37772,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:37535: result: $ac_cv_lib_ipc_shmat" >&5 +echo "$as_me:37775: 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" @@ -37550,7 +37790,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:37553: checking for IceConnectionNumber in -lICE" >&5 + echo "$as_me:37793: 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 @@ -37558,7 +37798,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lICE $X_EXTRA_LIBS $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 37561 "configure" +#line 37801 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -37577,16 +37817,16 @@ IceConnectionNumber (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:37580: \"$ac_link\"") >&5 +if { (eval echo "$as_me:37820: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:37583: \$? = $ac_status" >&5 + echo "$as_me:37823: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:37586: \"$ac_try\"") >&5 + { (eval echo "$as_me:37826: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:37589: \$? = $ac_status" >&5 + echo "$as_me:37829: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_ICE_IceConnectionNumber=yes else @@ -37597,7 +37837,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:37600: result: $ac_cv_lib_ICE_IceConnectionNumber" >&5 +echo "$as_me:37840: 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" @@ -37609,7 +37849,7 @@ fi cf_x_athena=${cf_x_athena:-Xaw} -echo "$as_me:37612: checking if you want to link with Xaw 3d library" >&5 +echo "$as_me:37852: 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= @@ -37620,14 +37860,14 @@ if test "${with_Xaw3d+set}" = set; then fi; if test "$withval" = yes ; then cf_x_athena=Xaw3d - echo "$as_me:37623: result: yes" >&5 + echo "$as_me:37863: result: yes" >&5 echo "${ECHO_T}yes" >&6 else - echo "$as_me:37626: result: no" >&5 + echo "$as_me:37866: result: no" >&5 echo "${ECHO_T}no" >&6 fi -echo "$as_me:37630: checking if you want to link with neXT Athena library" >&5 +echo "$as_me:37870: 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= @@ -37638,14 +37878,14 @@ if test "${with_neXtaw+set}" = set; then fi; if test "$withval" = yes ; then cf_x_athena=neXtaw - echo "$as_me:37641: result: yes" >&5 + echo "$as_me:37881: result: yes" >&5 echo "${ECHO_T}yes" >&6 else - echo "$as_me:37644: result: no" >&5 + echo "$as_me:37884: result: no" >&5 echo "${ECHO_T}no" >&6 fi -echo "$as_me:37648: checking if you want to link with Athena-Plus library" >&5 +echo "$as_me:37888: 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= @@ -37656,10 +37896,10 @@ if test "${with_XawPlus+set}" = set; then fi; if test "$withval" = yes ; then cf_x_athena=XawPlus - echo "$as_me:37659: result: yes" >&5 + echo "$as_me:37899: result: yes" >&5 echo "${ECHO_T}yes" >&6 else - echo "$as_me:37662: result: no" >&5 + echo "$as_me:37902: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -37679,17 +37919,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}:37682: testing found package $cf_athena_pkg ..." 1>&5 +echo "${as_me:-configure}:37922: 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}:37688: testing package $cf_athena_pkg CFLAGS: $cf_pkgconfig_incs ..." 1>&5 +echo "${as_me:-configure}:37928: 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}:37692: testing package $cf_athena_pkg LIBS: $cf_pkgconfig_libs ..." 1>&5 +echo "${as_me:-configure}:37932: testing package $cf_athena_pkg LIBS: $cf_pkgconfig_libs ..." 1>&5 cf_fix_cppflags=no cf_new_cflags= @@ -37779,14 +38019,14 @@ cf_x_athena_LIBS=`echo "HAVE_LIB_$cf_x_athena" | sed y%abcdefghijklmnopqrstuvwxy #define $cf_x_athena_LIBS 1 EOF -echo "$as_me:37782: checking for usable $cf_x_athena/Xmu package" >&5 +echo "$as_me:38022: checking for usable $cf_x_athena/Xmu package" >&5 echo $ECHO_N "checking for usable $cf_x_athena/Xmu package... $ECHO_C" >&6 if test "${cf_cv_xaw_compat+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 37789 "configure" +#line 38029 "configure" #include "confdefs.h" #include <X11/Xmu/CharSet.h> @@ -37802,16 +38042,16 @@ int check = XmuCompareISOLatin1("big", "small") } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:37805: \"$ac_link\"") >&5 +if { (eval echo "$as_me:38045: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:37808: \$? = $ac_status" >&5 + echo "$as_me:38048: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:37811: \"$ac_try\"") >&5 + { (eval echo "$as_me:38051: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:37814: \$? = $ac_status" >&5 + echo "$as_me:38054: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_xaw_compat=yes else @@ -37821,7 +38061,7 @@ cf_cv_xaw_compat=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:37824: result: $cf_cv_xaw_compat" >&5 +echo "$as_me:38064: result: $cf_cv_xaw_compat" >&5 echo "${ECHO_T}$cf_cv_xaw_compat" >&6 if test "$cf_cv_xaw_compat" = no @@ -37833,22 +38073,22 @@ echo "${ECHO_T}$cf_cv_xaw_compat" >&6 *) test -n "$verbose" && echo " work around broken package" 1>&6 -echo "${as_me:-configure}:37836: testing work around broken package ..." 1>&5 +echo "${as_me:-configure}:38076: testing work around broken package ..." 1>&5 if test "$PKG_CONFIG" != none && "$PKG_CONFIG" --exists xmu; then test -n "$verbose" && echo " found package xmu" 1>&6 -echo "${as_me:-configure}:37841: testing found package xmu ..." 1>&5 +echo "${as_me:-configure}:38081: testing found package xmu ..." 1>&5 cf_pkgconfig_incs="`$PKG_CONFIG --cflags xmu 2>/dev/null`" cf_pkgconfig_libs="`$PKG_CONFIG --libs xmu 2>/dev/null`" test -n "$verbose" && echo " package xmu CFLAGS: $cf_pkgconfig_incs" 1>&6 -echo "${as_me:-configure}:37847: testing package xmu CFLAGS: $cf_pkgconfig_incs ..." 1>&5 +echo "${as_me:-configure}:38087: testing package xmu CFLAGS: $cf_pkgconfig_incs ..." 1>&5 test -n "$verbose" && echo " package xmu LIBS: $cf_pkgconfig_libs" 1>&6 -echo "${as_me:-configure}:37851: testing package xmu LIBS: $cf_pkgconfig_libs ..." 1>&5 +echo "${as_me:-configure}:38091: testing package xmu LIBS: $cf_pkgconfig_libs ..." 1>&5 cf_fix_cppflags=no cf_new_cflags= @@ -37934,12 +38174,12 @@ else test -n "$verbose" && echo " ...before $LIBS" 1>&6 -echo "${as_me:-configure}:37937: testing ...before $LIBS ..." 1>&5 +echo "${as_me:-configure}:38177: testing ...before $LIBS ..." 1>&5 LIBS=`echo "$LIBS" | sed -e "s/[ ][ ]*/ /g" -e "s,-lXt ,-lXt -lXmu ," -e 's/ / /g'` test -n "$verbose" && echo " ...after $LIBS" 1>&6 -echo "${as_me:-configure}:37942: testing ...after $LIBS ..." 1>&5 +echo "${as_me:-configure}:38182: testing ...after $LIBS ..." 1>&5 fi @@ -37960,17 +38200,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}:37963: testing found package Xext ..." 1>&5 +echo "${as_me:-configure}:38203: 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}:37969: testing package Xext CFLAGS: $cf_pkgconfig_incs ..." 1>&5 +echo "${as_me:-configure}:38209: 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}:37973: testing package Xext LIBS: $cf_pkgconfig_libs ..." 1>&5 +echo "${as_me:-configure}:38213: testing package Xext LIBS: $cf_pkgconfig_libs ..." 1>&5 cf_fix_cppflags=no cf_new_cflags= @@ -38054,7 +38294,7 @@ fi : else - echo "$as_me:38057: checking for XextCreateExtension in -lXext" >&5 + echo "$as_me:38297: 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 @@ -38062,7 +38302,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lXext $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 38065 "configure" +#line 38305 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -38081,16 +38321,16 @@ XextCreateExtension (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:38084: \"$ac_link\"") >&5 +if { (eval echo "$as_me:38324: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:38087: \$? = $ac_status" >&5 + echo "$as_me:38327: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:38090: \"$ac_try\"") >&5 + { (eval echo "$as_me:38330: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:38093: \$? = $ac_status" >&5 + echo "$as_me:38333: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_Xext_XextCreateExtension=yes else @@ -38101,7 +38341,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:38104: result: $ac_cv_lib_Xext_XextCreateExtension" >&5 +echo "$as_me:38344: 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" @@ -38114,17 +38354,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}:38117: testing found package xt ..." 1>&5 +echo "${as_me:-configure}:38357: 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}:38123: testing package xt CFLAGS: $cf_pkgconfig_incs ..." 1>&5 +echo "${as_me:-configure}:38363: 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}:38127: testing package xt LIBS: $cf_pkgconfig_libs ..." 1>&5 +echo "${as_me:-configure}:38367: testing package xt LIBS: $cf_pkgconfig_libs ..." 1>&5 cf_fix_cppflags=no cf_new_cflags= @@ -38211,14 +38451,14 @@ fi ;; *) # we have an "xt" package, but it may omit Xt's dependency on X11 -echo "$as_me:38214: checking for usable X dependency" >&5 +echo "$as_me:38454: checking for usable X dependency" >&5 echo $ECHO_N "checking for usable X dependency... $ECHO_C" >&6 if test "${cf_cv_xt_x11_compat+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 38221 "configure" +#line 38461 "configure" #include "confdefs.h" #include <X11/Xlib.h> @@ -38237,16 +38477,16 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:38240: \"$ac_link\"") >&5 +if { (eval echo "$as_me:38480: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:38243: \$? = $ac_status" >&5 + echo "$as_me:38483: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:38246: \"$ac_try\"") >&5 + { (eval echo "$as_me:38486: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:38249: \$? = $ac_status" >&5 + echo "$as_me:38489: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_xt_x11_compat=yes else @@ -38256,30 +38496,30 @@ cf_cv_xt_x11_compat=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:38259: result: $cf_cv_xt_x11_compat" >&5 +echo "$as_me:38499: result: $cf_cv_xt_x11_compat" >&5 echo "${ECHO_T}$cf_cv_xt_x11_compat" >&6 if test "$cf_cv_xt_x11_compat" = no then test -n "$verbose" && echo " work around broken X11 dependency" 1>&6 -echo "${as_me:-configure}:38265: testing work around broken X11 dependency ..." 1>&5 +echo "${as_me:-configure}:38505: testing work around broken X11 dependency ..." 1>&5 # 2010/11/19 - good enough until a working Xt on Xcb is delivered. if test "$PKG_CONFIG" != none && "$PKG_CONFIG" --exists x11; then test -n "$verbose" && echo " found package x11" 1>&6 -echo "${as_me:-configure}:38272: testing found package x11 ..." 1>&5 +echo "${as_me:-configure}:38512: testing found package x11 ..." 1>&5 cf_pkgconfig_incs="`$PKG_CONFIG --cflags x11 2>/dev/null`" cf_pkgconfig_libs="`$PKG_CONFIG --libs x11 2>/dev/null`" test -n "$verbose" && echo " package x11 CFLAGS: $cf_pkgconfig_incs" 1>&6 -echo "${as_me:-configure}:38278: testing package x11 CFLAGS: $cf_pkgconfig_incs ..." 1>&5 +echo "${as_me:-configure}:38518: testing package x11 CFLAGS: $cf_pkgconfig_incs ..." 1>&5 test -n "$verbose" && echo " package x11 LIBS: $cf_pkgconfig_libs" 1>&6 -echo "${as_me:-configure}:38282: testing package x11 LIBS: $cf_pkgconfig_libs ..." 1>&5 +echo "${as_me:-configure}:38522: testing package x11 LIBS: $cf_pkgconfig_libs ..." 1>&5 cf_fix_cppflags=no cf_new_cflags= @@ -38365,12 +38605,12 @@ else test -n "$verbose" && echo " ...before $LIBS" 1>&6 -echo "${as_me:-configure}:38368: testing ...before $LIBS ..." 1>&5 +echo "${as_me:-configure}:38608: testing ...before $LIBS ..." 1>&5 LIBS=`echo "$LIBS" | sed -e "s/[ ][ ]*/ /g" -e "s,-lXt ,-lXt -lX11 ," -e 's/ / /g'` test -n "$verbose" && echo " ...after $LIBS" 1>&6 -echo "${as_me:-configure}:38373: testing ...after $LIBS ..." 1>&5 +echo "${as_me:-configure}:38613: testing ...after $LIBS ..." 1>&5 fi @@ -38378,14 +38618,14 @@ fi ;; esac -echo "$as_me:38381: checking for usable X Toolkit package" >&5 +echo "$as_me:38621: checking for usable X Toolkit package" >&5 echo $ECHO_N "checking for usable X Toolkit package... $ECHO_C" >&6 if test "${cf_cv_xt_ice_compat+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 38388 "configure" +#line 38628 "configure" #include "confdefs.h" #include <X11/Shell.h> @@ -38400,16 +38640,16 @@ int num = IceConnectionNumber(0) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:38403: \"$ac_link\"") >&5 +if { (eval echo "$as_me:38643: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:38406: \$? = $ac_status" >&5 + echo "$as_me:38646: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:38409: \"$ac_try\"") >&5 + { (eval echo "$as_me:38649: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:38412: \$? = $ac_status" >&5 + echo "$as_me:38652: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_xt_ice_compat=yes else @@ -38419,7 +38659,7 @@ cf_cv_xt_ice_compat=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:38422: result: $cf_cv_xt_ice_compat" >&5 +echo "$as_me:38662: result: $cf_cv_xt_ice_compat" >&5 echo "${ECHO_T}$cf_cv_xt_ice_compat" >&6 if test "$cf_cv_xt_ice_compat" = no @@ -38433,22 +38673,22 @@ echo "${ECHO_T}$cf_cv_xt_ice_compat" >&6 *) test -n "$verbose" && echo " work around broken ICE dependency" 1>&6 -echo "${as_me:-configure}:38436: testing work around broken ICE dependency ..." 1>&5 +echo "${as_me:-configure}:38676: testing work around broken ICE dependency ..." 1>&5 if test "$PKG_CONFIG" != none && "$PKG_CONFIG" --exists ice; then test -n "$verbose" && echo " found package ice" 1>&6 -echo "${as_me:-configure}:38441: testing found package ice ..." 1>&5 +echo "${as_me:-configure}:38681: testing found package ice ..." 1>&5 cf_pkgconfig_incs="`$PKG_CONFIG --cflags ice 2>/dev/null`" cf_pkgconfig_libs="`$PKG_CONFIG --libs ice 2>/dev/null`" test -n "$verbose" && echo " package ice CFLAGS: $cf_pkgconfig_incs" 1>&6 -echo "${as_me:-configure}:38447: testing package ice CFLAGS: $cf_pkgconfig_incs ..." 1>&5 +echo "${as_me:-configure}:38687: testing package ice CFLAGS: $cf_pkgconfig_incs ..." 1>&5 test -n "$verbose" && echo " package ice LIBS: $cf_pkgconfig_libs" 1>&6 -echo "${as_me:-configure}:38451: testing package ice LIBS: $cf_pkgconfig_libs ..." 1>&5 +echo "${as_me:-configure}:38691: testing package ice LIBS: $cf_pkgconfig_libs ..." 1>&5 cf_fix_cppflags=no cf_new_cflags= @@ -38533,17 +38773,17 @@ fi if test "$PKG_CONFIG" != none && "$PKG_CONFIG" --exists sm; then test -n "$verbose" && echo " found package sm" 1>&6 -echo "${as_me:-configure}:38536: testing found package sm ..." 1>&5 +echo "${as_me:-configure}:38776: testing found package sm ..." 1>&5 cf_pkgconfig_incs="`$PKG_CONFIG --cflags sm 2>/dev/null`" cf_pkgconfig_libs="`$PKG_CONFIG --libs sm 2>/dev/null`" test -n "$verbose" && echo " package sm CFLAGS: $cf_pkgconfig_incs" 1>&6 -echo "${as_me:-configure}:38542: testing package sm CFLAGS: $cf_pkgconfig_incs ..." 1>&5 +echo "${as_me:-configure}:38782: testing package sm CFLAGS: $cf_pkgconfig_incs ..." 1>&5 test -n "$verbose" && echo " package sm LIBS: $cf_pkgconfig_libs" 1>&6 -echo "${as_me:-configure}:38546: testing package sm LIBS: $cf_pkgconfig_libs ..." 1>&5 +echo "${as_me:-configure}:38786: testing package sm LIBS: $cf_pkgconfig_libs ..." 1>&5 cf_fix_cppflags=no cf_new_cflags= @@ -38633,12 +38873,12 @@ else test -n "$verbose" && echo " ...before $LIBS" 1>&6 -echo "${as_me:-configure}:38636: testing ...before $LIBS ..." 1>&5 +echo "${as_me:-configure}:38876: 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}:38641: testing ...after $LIBS ..." 1>&5 +echo "${as_me:-configure}:38881: testing ...after $LIBS ..." 1>&5 fi @@ -38656,7 +38896,7 @@ else test -n "$verbose" && echo " checking additions to CFLAGS" 1>&6 -echo "${as_me:-configure}:38659: testing checking additions to CFLAGS ..." 1>&5 +echo "${as_me:-configure}:38899: testing checking additions to CFLAGS ..." 1>&5 cf_check_cflags="$CFLAGS" cf_check_cppflags="$CPPFLAGS" @@ -38727,7 +38967,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}:38730: testing add to \$CFLAGS $cf_new_cflags ..." 1>&5 +echo "${as_me:-configure}:38970: testing add to \$CFLAGS $cf_new_cflags ..." 1>&5 CFLAGS="$CFLAGS $cf_new_cflags" fi @@ -38735,7 +38975,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}:38738: testing add to \$CPPFLAGS $cf_new_cppflags ..." 1>&5 +echo "${as_me:-configure}:38978: testing add to \$CPPFLAGS $cf_new_cppflags ..." 1>&5 CPPFLAGS="$CPPFLAGS $cf_new_cppflags" fi @@ -38743,14 +38983,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}:38746: testing add to \$EXTRA_CPPFLAGS $cf_new_extra_cppflags ..." 1>&5 +echo "${as_me:-configure}:38986: 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 38753 "configure" +#line 38993 "configure" #include "confdefs.h" #include <stdio.h> int @@ -38762,16 +39002,16 @@ printf("Hello world"); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:38765: \"$ac_link\"") >&5 +if { (eval echo "$as_me:39005: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:38768: \$? = $ac_status" >&5 + echo "$as_me:39008: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:38771: \"$ac_try\"") >&5 + { (eval echo "$as_me:39011: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:38774: \$? = $ac_status" >&5 + echo "$as_me:39014: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -38779,12 +39019,12 @@ else cat conftest.$ac_ext >&5 test -n "$verbose" && echo " test-compile failed. Undoing change to \$CFLAGS" 1>&6 -echo "${as_me:-configure}:38782: testing test-compile failed. Undoing change to \$CFLAGS ..." 1>&5 +echo "${as_me:-configure}:39022: 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}:38787: testing but keeping change to \$CPPFLAGS ..." 1>&5 +echo "${as_me:-configure}:39027: testing but keeping change to \$CPPFLAGS ..." 1>&5 fi CFLAGS="$cf_check_flags" @@ -38792,13 +39032,13 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi - echo "$as_me:38795: checking for XOpenDisplay" >&5 + echo "$as_me:39035: 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 38801 "configure" +#line 39041 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char XOpenDisplay (); below. */ @@ -38829,16 +39069,16 @@ f = XOpenDisplay; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:38832: \"$ac_link\"") >&5 +if { (eval echo "$as_me:39072: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:38835: \$? = $ac_status" >&5 + echo "$as_me:39075: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:38838: \"$ac_try\"") >&5 + { (eval echo "$as_me:39078: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:38841: \$? = $ac_status" >&5 + echo "$as_me:39081: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_XOpenDisplay=yes else @@ -38848,13 +39088,13 @@ ac_cv_func_XOpenDisplay=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:38851: result: $ac_cv_func_XOpenDisplay" >&5 +echo "$as_me:39091: 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:38857: checking for XOpenDisplay in -lX11" >&5 + echo "$as_me:39097: 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 @@ -38862,7 +39102,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lX11 $X_PRE_LIBS $LIBS $X_EXTRA_LIBS $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 38865 "configure" +#line 39105 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -38881,16 +39121,16 @@ XOpenDisplay (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:38884: \"$ac_link\"") >&5 +if { (eval echo "$as_me:39124: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:38887: \$? = $ac_status" >&5 + echo "$as_me:39127: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:38890: \"$ac_try\"") >&5 + { (eval echo "$as_me:39130: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:38893: \$? = $ac_status" >&5 + echo "$as_me:39133: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_X11_XOpenDisplay=yes else @@ -38901,7 +39141,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:38904: result: $ac_cv_lib_X11_XOpenDisplay" >&5 +echo "$as_me:39144: 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" @@ -38909,13 +39149,13 @@ fi fi - echo "$as_me:38912: checking for XtAppInitialize" >&5 + echo "$as_me:39152: 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 38918 "configure" +#line 39158 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char XtAppInitialize (); below. */ @@ -38946,16 +39186,16 @@ f = XtAppInitialize; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:38949: \"$ac_link\"") >&5 +if { (eval echo "$as_me:39189: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:38952: \$? = $ac_status" >&5 + echo "$as_me:39192: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:38955: \"$ac_try\"") >&5 + { (eval echo "$as_me:39195: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:38958: \$? = $ac_status" >&5 + echo "$as_me:39198: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_XtAppInitialize=yes else @@ -38965,13 +39205,13 @@ ac_cv_func_XtAppInitialize=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:38968: result: $ac_cv_func_XtAppInitialize" >&5 +echo "$as_me:39208: 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:38974: checking for XtAppInitialize in -lXt" >&5 + echo "$as_me:39214: 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 @@ -38979,7 +39219,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lXt $X_PRE_LIBS $LIBS $X_EXTRA_LIBS $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 38982 "configure" +#line 39222 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -38998,16 +39238,16 @@ XtAppInitialize (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:39001: \"$ac_link\"") >&5 +if { (eval echo "$as_me:39241: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:39004: \$? = $ac_status" >&5 + echo "$as_me:39244: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:39007: \"$ac_try\"") >&5 + { (eval echo "$as_me:39247: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:39010: \$? = $ac_status" >&5 + echo "$as_me:39250: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_Xt_XtAppInitialize=yes else @@ -39018,7 +39258,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:39021: result: $ac_cv_lib_Xt_XtAppInitialize" >&5 +echo "$as_me:39261: 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 @@ -39034,7 +39274,7 @@ fi fi if test $cf_have_X_LIBS = no ; then - { echo "$as_me:39037: WARNING: Unable to successfully link X Toolkit library (-lXt) with + { echo "$as_me:39277: 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 @@ -39056,14 +39296,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:39059: checking for $cf_test in $cf_path" >&5 + echo "$as_me:39299: 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:39062: checking for $cf_test" >&5 + echo "$as_me:39302: checking for $cf_test" >&5 echo $ECHO_N "checking for $cf_test... $ECHO_C" >&6 fi cat >conftest.$ac_ext <<_ACEOF -#line 39066 "configure" +#line 39306 "configure" #include "confdefs.h" #include <X11/Intrinsic.h> @@ -39077,16 +39317,16 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:39080: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:39320: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:39083: \$? = $ac_status" >&5 + echo "$as_me:39323: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:39086: \"$ac_try\"") >&5 + { (eval echo "$as_me:39326: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:39089: \$? = $ac_status" >&5 + echo "$as_me:39329: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_result=yes else @@ -39095,7 +39335,7 @@ cat conftest.$ac_ext >&5 cf_result=no fi rm -f conftest.$ac_objext conftest.$ac_ext - echo "$as_me:39098: result: $cf_result" >&5 + echo "$as_me:39338: result: $cf_result" >&5 echo "${ECHO_T}$cf_result" >&6 if test "$cf_result" = yes ; then cf_x_athena_inc=$cf_path @@ -39107,7 +39347,7 @@ echo "${ECHO_T}$cf_result" >&6 done if test -z "$cf_x_athena_inc" ; then - { echo "$as_me:39110: WARNING: Unable to successfully find Athena header files with test program" >&5 + { echo "$as_me:39350: 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" @@ -39123,24 +39363,29 @@ for cf_path in default \ /usr/local do for cf_lib in \ - "-l$cf_x_athena_root -lXmu" \ - "-l$cf_x_athena_root -lXpm -lXmu" \ - "-l${cf_x_athena_root}_s -lXmu_s" + ${cf_x_athena_root} \ + ${cf_x_athena_root}7 \ + ${cf_x_athena_root}6 + do + for cf_libs in \ + "-l$cf_lib -lXmu" \ + "-l$cf_lib -lXpm -lXmu" \ + "-l${cf_lib}_s -lXmu_s" do if test -z "$cf_x_athena_lib" ; then cf_save="$LIBS" cf_test=XawSimpleMenuAddGlobalActions if test $cf_path != default ; then - LIBS="-L$cf_path/lib $cf_lib $LIBS" - echo "$as_me:39135: checking for $cf_lib in $cf_path" >&5 -echo $ECHO_N "checking for $cf_lib in $cf_path... $ECHO_C" >&6 + LIBS="-L$cf_path/lib $cf_libs $LIBS" + echo "$as_me:39380: checking for $cf_libs in $cf_path" >&5 +echo $ECHO_N "checking for $cf_libs in $cf_path... $ECHO_C" >&6 else - LIBS="$cf_lib $LIBS" - echo "$as_me:39139: checking for $cf_test in $cf_lib" >&5 -echo $ECHO_N "checking for $cf_test in $cf_lib... $ECHO_C" >&6 + LIBS="$cf_libs $LIBS" + echo "$as_me:39384: checking for $cf_test in $cf_libs" >&5 +echo $ECHO_N "checking for $cf_test in $cf_libs... $ECHO_C" >&6 fi cat >conftest.$ac_ext <<_ACEOF -#line 39143 "configure" +#line 39388 "configure" #include "confdefs.h" #include <X11/Intrinsic.h> @@ -39156,16 +39401,16 @@ $cf_test((XtAppContext) 0) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:39159: \"$ac_link\"") >&5 +if { (eval echo "$as_me:39404: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:39162: \$? = $ac_status" >&5 + echo "$as_me:39407: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:39165: \"$ac_try\"") >&5 + { (eval echo "$as_me:39410: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:39168: \$? = $ac_status" >&5 + echo "$as_me:39413: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_result=yes else @@ -39174,19 +39419,21 @@ cat conftest.$ac_ext >&5 cf_result=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext - echo "$as_me:39177: result: $cf_result" >&5 + echo "$as_me:39422: result: $cf_result" >&5 echo "${ECHO_T}$cf_result" >&6 if test "$cf_result" = yes ; then - cf_x_athena_lib="$cf_lib" + cf_x_athena_lib="$cf_libs" break fi LIBS="$cf_save" fi - done + done # cf_libs + test -n "$cf_x_athena_lib" && break + done # cf_lib done if test -z "$cf_x_athena_lib" ; then - { { echo "$as_me:39189: error: Unable to successfully link Athena library (-l$cf_x_athena_root) with test program" >&5 + { { echo "$as_me:39436: 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 @@ -39203,7 +39450,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:39206: checking for $ac_word" >&5 +echo "$as_me:39453: 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 @@ -39220,7 +39467,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:39223: found $ac_dir/$ac_word" >&5 + echo "$as_me:39470: found $ac_dir/$ac_word" >&5 break fi done @@ -39231,10 +39478,10 @@ fi XCURSES_CONFIG=$ac_cv_path_XCURSES_CONFIG if test -n "$XCURSES_CONFIG"; then - echo "$as_me:39234: result: $XCURSES_CONFIG" >&5 + echo "$as_me:39481: result: $XCURSES_CONFIG" >&5 echo "${ECHO_T}$XCURSES_CONFIG" >&6 else - echo "$as_me:39237: result: no" >&5 + echo "$as_me:39484: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -39255,7 +39502,7 @@ LDFLAGS="$LDFLAGS $X_LIBS" test -n "$verbose" && echo " checking additions to CFLAGS" 1>&6 -echo "${as_me:-configure}:39258: testing checking additions to CFLAGS ..." 1>&5 +echo "${as_me:-configure}:39505: testing checking additions to CFLAGS ..." 1>&5 cf_check_cflags="$CFLAGS" cf_check_cppflags="$CPPFLAGS" @@ -39326,7 +39573,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}:39329: testing add to \$CFLAGS $cf_new_cflags ..." 1>&5 +echo "${as_me:-configure}:39576: testing add to \$CFLAGS $cf_new_cflags ..." 1>&5 CFLAGS="$CFLAGS $cf_new_cflags" fi @@ -39334,7 +39581,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}:39337: testing add to \$CPPFLAGS $cf_new_cppflags ..." 1>&5 +echo "${as_me:-configure}:39584: testing add to \$CPPFLAGS $cf_new_cppflags ..." 1>&5 CPPFLAGS="$CPPFLAGS $cf_new_cppflags" fi @@ -39342,14 +39589,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}:39345: testing add to \$EXTRA_CPPFLAGS $cf_new_extra_cppflags ..." 1>&5 +echo "${as_me:-configure}:39592: 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 39352 "configure" +#line 39599 "configure" #include "confdefs.h" #include <stdio.h> int @@ -39361,16 +39608,16 @@ printf("Hello world"); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:39364: \"$ac_link\"") >&5 +if { (eval echo "$as_me:39611: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:39367: \$? = $ac_status" >&5 + echo "$as_me:39614: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:39370: \"$ac_try\"") >&5 + { (eval echo "$as_me:39617: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:39373: \$? = $ac_status" >&5 + echo "$as_me:39620: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -39378,12 +39625,12 @@ else cat conftest.$ac_ext >&5 test -n "$verbose" && echo " test-compile failed. Undoing change to \$CFLAGS" 1>&6 -echo "${as_me:-configure}:39381: testing test-compile failed. Undoing change to \$CFLAGS ..." 1>&5 +echo "${as_me:-configure}:39628: 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}:39386: testing but keeping change to \$CPPFLAGS ..." 1>&5 +echo "${as_me:-configure}:39633: testing but keeping change to \$CPPFLAGS ..." 1>&5 fi CFLAGS="$cf_check_flags" @@ -39391,7 +39638,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:39394: checking for XOpenDisplay in -lX11" >&5 +echo "$as_me:39641: 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 @@ -39399,7 +39646,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lX11 $X_PRE_LIBS $LIBS $X_EXTRA_LIBS $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 39402 "configure" +#line 39649 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -39418,16 +39665,16 @@ XOpenDisplay (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:39421: \"$ac_link\"") >&5 +if { (eval echo "$as_me:39668: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:39424: \$? = $ac_status" >&5 + echo "$as_me:39671: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:39427: \"$ac_try\"") >&5 + { (eval echo "$as_me:39674: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:39430: \$? = $ac_status" >&5 + echo "$as_me:39677: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_X11_XOpenDisplay=yes else @@ -39438,13 +39685,13 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:39441: result: $ac_cv_lib_X11_XOpenDisplay" >&5 +echo "$as_me:39688: 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:39447: checking for XCurses library" >&5 +echo "$as_me:39694: 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 @@ -39452,7 +39699,7 @@ else LIBS="-lXCurses $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 39455 "configure" +#line 39702 "configure" #include "confdefs.h" #include <xcurses.h> @@ -39467,16 +39714,16 @@ XCursesExit(); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:39470: \"$ac_link\"") >&5 +if { (eval echo "$as_me:39717: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:39473: \$? = $ac_status" >&5 + echo "$as_me:39720: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:39476: \"$ac_try\"") >&5 + { (eval echo "$as_me:39723: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:39479: \$? = $ac_status" >&5 + echo "$as_me:39726: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_lib_XCurses=yes else @@ -39487,7 +39734,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:39490: result: $cf_cv_lib_XCurses" >&5 +echo "$as_me:39737: result: $cf_cv_lib_XCurses" >&5 echo "${ECHO_T}$cf_cv_lib_XCurses" >&6 fi @@ -39501,23 +39748,23 @@ EOF #define XCURSES 1 EOF - echo "$as_me:39504: checking for xcurses.h" >&5 + echo "$as_me:39751: checking for xcurses.h" >&5 echo $ECHO_N "checking for xcurses.h... $ECHO_C" >&6 if test "${ac_cv_header_xcurses_h+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 39510 "configure" +#line 39757 "configure" #include "confdefs.h" #include <xcurses.h> _ACEOF -if { (eval echo "$as_me:39514: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:39761: \"$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:39520: \$? = $ac_status" >&5 + echo "$as_me:39767: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -39536,7 +39783,7 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:39539: result: $ac_cv_header_xcurses_h" >&5 +echo "$as_me:39786: result: $ac_cv_header_xcurses_h" >&5 echo "${ECHO_T}$ac_cv_header_xcurses_h" >&6 if test $ac_cv_header_xcurses_h = yes; then cat >>confdefs.h <<\EOF @@ -39546,14 +39793,14 @@ EOF fi else - { { echo "$as_me:39549: error: Cannot link with XCurses" >&5 + { { echo "$as_me:39796: error: Cannot link with XCurses" >&5 echo "$as_me: error: Cannot link with XCurses" >&2;} { (exit 1); exit 1; }; } fi else -echo "$as_me:39556: checking if we can include termio.h with curses" >&5 +echo "$as_me:39803: 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 @@ -39563,7 +39810,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 39566 "configure" +#line 39813 "configure" #include "confdefs.h" #include <LYCurses.h> @@ -39577,16 +39824,16 @@ putchar(0x0a) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:39580: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:39827: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:39583: \$? = $ac_status" >&5 + echo "$as_me:39830: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:39586: \"$ac_try\"") >&5 + { (eval echo "$as_me:39833: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:39589: \$? = $ac_status" >&5 + echo "$as_me:39836: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_termio_and_curses=yes else @@ -39599,7 +39846,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext rm -f lynx_cfg.h fi -echo "$as_me:39602: result: $cf_cv_termio_and_curses" >&5 +echo "$as_me:39849: 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 @@ -39614,23 +39861,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:39617: checking for $ac_header" >&5 +echo "$as_me:39864: 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 39623 "configure" +#line 39870 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:39627: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:39874: \"$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:39633: \$? = $ac_status" >&5 + echo "$as_me:39880: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -39649,7 +39896,7 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:39652: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:39899: 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 @@ -39659,7 +39906,7 @@ EOF fi done -echo "$as_me:39662: checking if curses supports alternate-character set" >&5 +echo "$as_me:39909: 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 @@ -39668,7 +39915,7 @@ else for mapname in acs_map _acs_map do cat >conftest.$ac_ext <<_ACEOF -#line 39671 "configure" +#line 39918 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> @@ -39682,16 +39929,16 @@ chtype x = $mapname['l']; $mapname['m'] = 0 } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:39685: \"$ac_link\"") >&5 +if { (eval echo "$as_me:39932: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:39688: \$? = $ac_status" >&5 + echo "$as_me:39935: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:39691: \"$ac_try\"") >&5 + { (eval echo "$as_me:39938: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:39694: \$? = $ac_status" >&5 + echo "$as_me:39941: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_alt_char_set=$mapname break @@ -39705,20 +39952,20 @@ done fi -echo "$as_me:39708: result: $cf_cv_alt_char_set" >&5 +echo "$as_me:39955: 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:39714: checking if curses supports fancy attributes" >&5 +echo "$as_me:39961: 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 39721 "configure" +#line 39968 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> @@ -39736,16 +39983,16 @@ attrset(A_UNDERLINE|A_BOLD|A_REVERSE); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:39739: \"$ac_link\"") >&5 +if { (eval echo "$as_me:39986: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:39742: \$? = $ac_status" >&5 + echo "$as_me:39989: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:39745: \"$ac_try\"") >&5 + { (eval echo "$as_me:39992: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:39748: \$? = $ac_status" >&5 + echo "$as_me:39995: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_fancy_curses=yes else @@ -39757,13 +40004,13 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:39760: result: $cf_cv_fancy_curses" >&5 +echo "$as_me:40007: 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:39766: checking for function curses_version" >&5 +echo "$as_me:40013: 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 @@ -39773,7 +40020,7 @@ if test "$cross_compiling" = yes; then cf_cv_func_curses_version=unknown else cat >conftest.$ac_ext <<_ACEOF -#line 39776 "configure" +#line 40023 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> @@ -39786,15 +40033,15 @@ int main() _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:39789: \"$ac_link\"") >&5 +if { (eval echo "$as_me:40036: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:39792: \$? = $ac_status" >&5 + echo "$as_me:40039: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:39794: \"$ac_try\"") >&5 + { (eval echo "$as_me:40041: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:39797: \$? = $ac_status" >&5 + echo "$as_me:40044: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_func_curses_version=yes @@ -39809,21 +40056,21 @@ rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext fi rm -f core fi -echo "$as_me:39812: result: $cf_cv_func_curses_version" >&5 +echo "$as_me:40059: 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:39819: checking for obsolete/broken version of ncurses" >&5 +echo "$as_me:40066: 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 39826 "configure" +#line 40073 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> @@ -39842,16 +40089,16 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:39845: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:40092: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:39848: \$? = $ac_status" >&5 + echo "$as_me:40095: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:39851: \"$ac_try\"") >&5 + { (eval echo "$as_me:40098: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:39854: \$? = $ac_status" >&5 + echo "$as_me:40101: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_ncurses_broken=no else @@ -39863,10 +40110,10 @@ rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:39866: result: $cf_cv_ncurses_broken" >&5 +echo "$as_me:40113: 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:39869: WARNING: hmm... you should get an up-to-date version of ncurses" >&5 + { echo "$as_me:40116: 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 @@ -39875,14 +40122,14 @@ EOF fi fi -echo "$as_me:39878: checking if curses supports color attributes" >&5 +echo "$as_me:40125: 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 39885 "configure" +#line 40132 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> @@ -39902,16 +40149,16 @@ chtype x = COLOR_BLUE; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:39905: \"$ac_link\"") >&5 +if { (eval echo "$as_me:40152: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:39908: \$? = $ac_status" >&5 + echo "$as_me:40155: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:39911: \"$ac_try\"") >&5 + { (eval echo "$as_me:40158: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:39914: \$? = $ac_status" >&5 + echo "$as_me:40161: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_color_curses=yes else @@ -39923,7 +40170,7 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:39926: result: $cf_cv_color_curses" >&5 +echo "$as_me:40173: 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 @@ -39943,23 +40190,23 @@ unistd.h \ do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` -echo "$as_me:39946: checking for $ac_header" >&5 +echo "$as_me:40193: 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 39952 "configure" +#line 40199 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:39956: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:40203: \"$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:39962: \$? = $ac_status" >&5 + echo "$as_me:40209: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -39978,7 +40225,7 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:39981: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:40228: 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 @@ -39993,23 +40240,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:39996: checking for $ac_header" >&5 +echo "$as_me:40243: 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 40002 "configure" +#line 40249 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:40006: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:40253: \"$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:40012: \$? = $ac_status" >&5 + echo "$as_me:40259: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -40028,7 +40275,7 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:40031: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:40278: 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 @@ -40046,10 +40293,10 @@ if test "$ac_cv_header_termios_h" = yes ; then *) termios_bad=maybe ;; esac if test "$termios_bad" = maybe ; then - echo "$as_me:40049: checking whether termios.h needs _POSIX_SOURCE" >&5 + echo "$as_me:40296: 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 40052 "configure" +#line 40299 "configure" #include "confdefs.h" #include <termios.h> int @@ -40061,16 +40308,16 @@ struct termios foo; int x = foo.c_iflag } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:40064: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:40311: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:40067: \$? = $ac_status" >&5 + echo "$as_me:40314: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:40070: \"$ac_try\"") >&5 + { (eval echo "$as_me:40317: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:40073: \$? = $ac_status" >&5 + echo "$as_me:40320: \$? = $ac_status" >&5 (exit $ac_status); }; }; then termios_bad=no else @@ -40078,7 +40325,7 @@ else cat conftest.$ac_ext >&5 cat >conftest.$ac_ext <<_ACEOF -#line 40081 "configure" +#line 40328 "configure" #include "confdefs.h" #define _POSIX_SOURCE @@ -40092,16 +40339,16 @@ struct termios foo; int x = foo.c_iflag } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:40095: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:40342: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:40098: \$? = $ac_status" >&5 + echo "$as_me:40345: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:40101: \"$ac_try\"") >&5 + { (eval echo "$as_me:40348: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:40104: \$? = $ac_status" >&5 + echo "$as_me:40351: \$? = $ac_status" >&5 (exit $ac_status); }; }; then termios_bad=unknown else @@ -40116,12 +40363,12 @@ rm -f conftest.$ac_objext conftest.$ac_ext fi rm -f conftest.$ac_objext conftest.$ac_ext - echo "$as_me:40119: result: $termios_bad" >&5 + echo "$as_me:40366: result: $termios_bad" >&5 echo "${ECHO_T}$termios_bad" >&6 fi fi -echo "$as_me:40124: checking declaration of size-change" >&5 +echo "$as_me:40371: 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 @@ -40136,7 +40383,7 @@ do CPPFLAGS="$cf_save_CPPFLAGS" test -n "$cf_opts" && CPPFLAGS="$CPPFLAGS -D$cf_opts" cat >conftest.$ac_ext <<_ACEOF -#line 40139 "configure" +#line 40386 "configure" #include "confdefs.h" #include <sys/types.h> #ifdef HAVE_TERMIOS_H @@ -40180,16 +40427,16 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:40183: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:40430: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:40186: \$? = $ac_status" >&5 + echo "$as_me:40433: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:40189: \"$ac_try\"") >&5 + { (eval echo "$as_me:40436: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:40192: \$? = $ac_status" >&5 + echo "$as_me:40439: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_sizechange=yes else @@ -40208,7 +40455,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext done fi -echo "$as_me:40211: result: $cf_cv_sizechange" >&5 +echo "$as_me:40458: result: $cf_cv_sizechange" >&5 echo "${ECHO_T}$cf_cv_sizechange" >&6 if test "$cf_cv_sizechange" != no ; then cat >>confdefs.h <<\EOF @@ -40225,14 +40472,14 @@ EOF esac fi -echo "$as_me:40228: checking if ttytype is declared in curses library" >&5 +echo "$as_me:40475: 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 40235 "configure" +#line 40482 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> int @@ -40244,16 +40491,16 @@ char *x = &ttytype[1]; *x = 1 } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:40247: \"$ac_link\"") >&5 +if { (eval echo "$as_me:40494: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:40250: \$? = $ac_status" >&5 + echo "$as_me:40497: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:40253: \"$ac_try\"") >&5 + { (eval echo "$as_me:40500: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:40256: \$? = $ac_status" >&5 + echo "$as_me:40503: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_have_ttytype=yes else @@ -40265,7 +40512,7 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:40268: result: $cf_cv_have_ttytype" >&5 +echo "$as_me:40515: 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 @@ -40273,14 +40520,14 @@ EOF if test "$use_wide_curses" = yes ; then -echo "$as_me:40276: checking if curses supports wide characters" >&5 +echo "$as_me:40523: 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 40283 "configure" +#line 40530 "configure" #include "confdefs.h" #include <stdlib.h> @@ -40299,16 +40546,16 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:40302: \"$ac_link\"") >&5 +if { (eval echo "$as_me:40549: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:40305: \$? = $ac_status" >&5 + echo "$as_me:40552: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:40308: \"$ac_try\"") >&5 + { (eval echo "$as_me:40555: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:40311: \$? = $ac_status" >&5 + echo "$as_me:40558: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_widec_curses=yes else @@ -40319,7 +40566,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:40322: result: $cf_cv_widec_curses" >&5 +echo "$as_me:40569: result: $cf_cv_widec_curses" >&5 echo "${ECHO_T}$cf_cv_widec_curses" >&6 if test "$cf_cv_widec_curses" = yes ; then @@ -40328,14 +40575,14 @@ if test "$cf_cv_widec_curses" = yes ; then EOF # This is needed on Tru64 5.0 to declare mbstate_t - echo "$as_me:40331: checking if we must include wchar.h to declare mbstate_t" >&5 + echo "$as_me:40578: 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 40338 "configure" +#line 40585 "configure" #include "confdefs.h" #include <stdlib.h> @@ -40349,23 +40596,23 @@ mbstate_t state } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:40352: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:40599: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:40355: \$? = $ac_status" >&5 + echo "$as_me:40602: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:40358: \"$ac_try\"") >&5 + { (eval echo "$as_me:40605: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:40361: \$? = $ac_status" >&5 + echo "$as_me:40608: \$? = $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 40368 "configure" +#line 40615 "configure" #include "confdefs.h" #include <stdlib.h> @@ -40380,16 +40627,16 @@ mbstate_t state } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:40383: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:40630: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:40386: \$? = $ac_status" >&5 + echo "$as_me:40633: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:40389: \"$ac_try\"") >&5 + { (eval echo "$as_me:40636: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:40392: \$? = $ac_status" >&5 + echo "$as_me:40639: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_widec_mbstate=yes else @@ -40401,7 +40648,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:40404: result: $cf_cv_widec_mbstate" >&5 +echo "$as_me:40651: result: $cf_cv_widec_mbstate" >&5 echo "${ECHO_T}$cf_cv_widec_mbstate" >&6 if test "$cf_cv_widec_mbstate" = yes ; then @@ -40422,14 +40669,14 @@ fi fi -echo "$as_me:40425: checking if we must define _XOPEN_SOURCE_EXTENDED" >&5 +echo "$as_me:40672: 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 40432 "configure" +#line 40679 "configure" #include "confdefs.h" #include <stdlib.h> @@ -40451,23 +40698,23 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:40454: \"$ac_link\"") >&5 +if { (eval echo "$as_me:40701: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:40457: \$? = $ac_status" >&5 + echo "$as_me:40704: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:40460: \"$ac_try\"") >&5 + { (eval echo "$as_me:40707: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:40463: \$? = $ac_status" >&5 + echo "$as_me:40710: \$? = $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 40470 "configure" +#line 40717 "configure" #include "confdefs.h" #define _XOPEN_SOURCE_EXTENDED @@ -40489,16 +40736,16 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:40492: \"$ac_link\"") >&5 +if { (eval echo "$as_me:40739: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:40495: \$? = $ac_status" >&5 + echo "$as_me:40742: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:40498: \"$ac_try\"") >&5 + { (eval echo "$as_me:40745: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:40501: \$? = $ac_status" >&5 + echo "$as_me:40748: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_need_xopen_extension=yes else @@ -40510,11 +40757,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:40513: result: $cf_cv_need_xopen_extension" >&5 +echo "$as_me:40760: 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:40517: checking for term.h" >&5 +echo "$as_me:40764: 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 @@ -40535,7 +40782,7 @@ esac for cf_header in $cf_header_list do cat >conftest.$ac_ext <<_ACEOF -#line 40538 "configure" +#line 40785 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> @@ -40549,16 +40796,16 @@ WINDOW *x } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:40552: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:40799: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:40555: \$? = $ac_status" >&5 + echo "$as_me:40802: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:40558: \"$ac_try\"") >&5 + { (eval echo "$as_me:40805: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:40561: \$? = $ac_status" >&5 + echo "$as_me:40808: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_term_header=$cf_header break @@ -40577,7 +40824,7 @@ no) for cf_header in ncurses/term.h ncursesw/term.h do cat >conftest.$ac_ext <<_ACEOF -#line 40580 "configure" +#line 40827 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> @@ -40595,16 +40842,16 @@ WINDOW *x } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:40598: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:40845: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:40601: \$? = $ac_status" >&5 + echo "$as_me:40848: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:40604: \"$ac_try\"") >&5 + { (eval echo "$as_me:40851: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:40607: \$? = $ac_status" >&5 + echo "$as_me:40854: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_term_header=$cf_header break @@ -40619,7 +40866,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext esac fi -echo "$as_me:40622: result: $cf_cv_term_header" >&5 +echo "$as_me:40869: result: $cf_cv_term_header" >&5 echo "${ECHO_T}$cf_cv_term_header" >&6 case $cf_cv_term_header in #(vi @@ -40643,7 +40890,7 @@ EOF ;; esac -echo "$as_me:40646: checking for unctrl.h" >&5 +echo "$as_me:40893: checking for unctrl.h" >&5 echo $ECHO_N "checking for unctrl.h... $ECHO_C" >&6 if test "${cf_cv_unctrl_header+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -40664,7 +40911,7 @@ esac for cf_header in $cf_header_list do cat >conftest.$ac_ext <<_ACEOF -#line 40667 "configure" +#line 40914 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> @@ -40678,16 +40925,16 @@ WINDOW *x } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:40681: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:40928: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:40684: \$? = $ac_status" >&5 + echo "$as_me:40931: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:40687: \"$ac_try\"") >&5 + { (eval echo "$as_me:40934: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:40690: \$? = $ac_status" >&5 + echo "$as_me:40937: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_unctrl_header=$cf_header break @@ -40701,13 +40948,13 @@ done case $cf_cv_unctrl_header in #(vi no) - { echo "$as_me:40704: WARNING: unctrl.h header not found" >&5 + { echo "$as_me:40951: WARNING: unctrl.h header not found" >&5 echo "$as_me: WARNING: unctrl.h header not found" >&2;} ;; esac fi -echo "$as_me:40710: result: $cf_cv_unctrl_header" >&5 +echo "$as_me:40957: result: $cf_cv_unctrl_header" >&5 echo "${ECHO_T}$cf_cv_unctrl_header" >&6 case $cf_cv_unctrl_header in #(vi @@ -40758,10 +41005,10 @@ do cf_tr_func=`echo "$cf_func" | sed y%abcdefghijklmnopqrstuvwxyz./-%ABCDEFGHIJKLMNOPQRSTUVWXYZ___%` - echo "$as_me:40761: checking for ${cf_func}" >&5 + echo "$as_me:41008: checking for ${cf_func}" >&5 echo $ECHO_N "checking for ${cf_func}... $ECHO_C" >&6 -echo "${as_me:-configure}:40764: testing ${cf_func} ..." 1>&5 +echo "${as_me:-configure}:41011: testing ${cf_func} ..." 1>&5 if eval "test \"\${cf_cv_func_$cf_func+set}\" = set"; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -40770,7 +41017,7 @@ else eval cf_result='$ac_cv_func_'$cf_func if test ".$cf_result" != ".no"; then cat >conftest.$ac_ext <<_ACEOF -#line 40773 "configure" +#line 41020 "configure" #include "confdefs.h" #ifdef HAVE_XCURSES @@ -40802,16 +41049,16 @@ if (foo + 1234 > 5678) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:40805: \"$ac_link\"") >&5 +if { (eval echo "$as_me:41052: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:40808: \$? = $ac_status" >&5 + echo "$as_me:41055: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:40811: \"$ac_try\"") >&5 + { (eval echo "$as_me:41058: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:40814: \$? = $ac_status" >&5 + echo "$as_me:41061: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_result=yes else @@ -40827,7 +41074,7 @@ fi # use the computed/retrieved cache-value: eval 'cf_result=$cf_cv_func_'$cf_func - echo "$as_me:40830: result: $cf_result" >&5 + echo "$as_me:41077: result: $cf_result" >&5 echo "${ECHO_T}$cf_result" >&6 if test $cf_result != no; then cat >>confdefs.h <<EOF @@ -40843,13 +41090,13 @@ for ac_func in \ do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` -echo "$as_me:40846: checking for $ac_func" >&5 +echo "$as_me:41093: 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 40852 "configure" +#line 41099 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. */ @@ -40880,16 +41127,16 @@ f = $ac_func; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:40883: \"$ac_link\"") >&5 +if { (eval echo "$as_me:41130: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:40886: \$? = $ac_status" >&5 + echo "$as_me:41133: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:40889: \"$ac_try\"") >&5 + { (eval echo "$as_me:41136: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:40892: \$? = $ac_status" >&5 + echo "$as_me:41139: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else @@ -40899,7 +41146,7 @@ eval "$as_ac_var=no" fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:40902: result: `eval echo '${'$as_ac_var'}'`" >&5 +echo "$as_me:41149: 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 @@ -40913,12 +41160,12 @@ fi if test $use_color_style != no ; then if test .$cf_cv_color_curses != .yes ; then - { { echo "$as_me:40916: error: Configuration does not support color-styles" >&5 + { { echo "$as_me:41163: 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:40921: error: Configuration does not support color-styles" >&5 + { { echo "$as_me:41168: error: Configuration does not support color-styles" >&5 echo "$as_me: error: Configuration does not support color-styles" >&2;} { (exit 1); exit 1; }; } fi @@ -40926,7 +41173,7 @@ fi if test $use_scrollbar != no ; then if test .$cf_cv_fancy_curses != .yes ; then - { echo "$as_me:40929: WARNING: Configuration does not support ACS_xxx definitions" >&5 + { echo "$as_me:41176: 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 @@ -40939,7 +41186,7 @@ fi # use rpath for libraries in unusual places LD_RPATH_OPT= -echo "$as_me:40942: checking for an rpath option" >&5 +echo "$as_me:41189: 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 @@ -40955,7 +41202,7 @@ linux*|gnu*|k*bsd*-gnu) #(vi openbsd[2-9].*|mirbsd*) #(vi LD_RPATH_OPT="-Wl,-rpath," ;; -freebsd*) #(vi +dragonfly*|freebsd*) #(vi LD_RPATH_OPT="-rpath " ;; netbsd*) #(vi @@ -40970,17 +41217,17 @@ solaris2*) #(vi *) ;; esac -echo "$as_me:40973: result: $LD_RPATH_OPT" >&5 +echo "$as_me:41220: result: $LD_RPATH_OPT" >&5 echo "${ECHO_T}$LD_RPATH_OPT" >&6 case "x$LD_RPATH_OPT" in #(vi x-R*) - echo "$as_me:40978: checking if we need a space after rpath option" >&5 + echo "$as_me:41225: 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 40983 "configure" +#line 41230 "configure" #include "confdefs.h" int @@ -40992,16 +41239,16 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:40995: \"$ac_link\"") >&5 +if { (eval echo "$as_me:41242: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:40998: \$? = $ac_status" >&5 + echo "$as_me:41245: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:41001: \"$ac_try\"") >&5 + { (eval echo "$as_me:41248: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:41004: \$? = $ac_status" >&5 + echo "$as_me:41251: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_rpath_space=no else @@ -41011,13 +41258,13 @@ cf_rpath_space=yes fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS="$cf_save_LIBS" - echo "$as_me:41014: result: $cf_rpath_space" >&5 + echo "$as_me:41261: 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:41020: checking if rpath-hack should be disabled" >&5 +echo "$as_me:41267: checking if rpath-hack should be disabled" >&5 echo $ECHO_N "checking if rpath-hack should be disabled... $ECHO_C" >&6 # Check whether --enable-rpath-hack or --disable-rpath-hack was given. @@ -41034,21 +41281,21 @@ else cf_disable_rpath_hack=no fi; -echo "$as_me:41037: result: $cf_disable_rpath_hack" >&5 +echo "$as_me:41284: 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:41041: checking for updated LDFLAGS" >&5 +echo "$as_me:41288: 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:41044: result: maybe" >&5 + echo "$as_me:41291: 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:41051: checking for $ac_word" >&5 +echo "$as_me:41298: 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 @@ -41063,7 +41310,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:41066: found $ac_dir/$ac_word" >&5 +echo "$as_me:41313: found $ac_dir/$ac_word" >&5 break done @@ -41071,10 +41318,10 @@ fi fi cf_ldd_prog=$ac_cv_prog_cf_ldd_prog if test -n "$cf_ldd_prog"; then - echo "$as_me:41074: result: $cf_ldd_prog" >&5 + echo "$as_me:41321: result: $cf_ldd_prog" >&5 echo "${ECHO_T}$cf_ldd_prog" >&6 else - echo "$as_me:41077: result: no" >&5 + echo "$as_me:41324: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -41088,7 +41335,7 @@ test -n "$cf_ldd_prog" || cf_ldd_prog="no" cf_rpath_oops= cat >conftest.$ac_ext <<_ACEOF -#line 41091 "configure" +#line 41338 "configure" #include "confdefs.h" #include <stdio.h> int @@ -41100,16 +41347,16 @@ printf("Hello"); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:41103: \"$ac_link\"") >&5 +if { (eval echo "$as_me:41350: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:41106: \$? = $ac_status" >&5 + echo "$as_me:41353: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:41109: \"$ac_try\"") >&5 + { (eval echo "$as_me:41356: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:41112: \$? = $ac_status" >&5 + echo "$as_me:41359: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_rpath_oops=`$cf_ldd_prog conftest$ac_exeext | fgrep ' not found' | sed -e 's% =>.*$%%' |sort -u` cf_rpath_list=`$cf_ldd_prog conftest$ac_exeext | fgrep / | sed -e 's%^.*[ ]/%/%' -e 's%/[^/][^/]*$%%' |sort -u` @@ -41137,7 +41384,7 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext then test -n "$verbose" && echo " ...adding -L$cf_rpath_dir/lib to LDFLAGS for $cf_rpath_src" 1>&6 -echo "${as_me:-configure}:41140: testing ...adding -L$cf_rpath_dir/lib to LDFLAGS for $cf_rpath_src ..." 1>&5 +echo "${as_me:-configure}:41387: testing ...adding -L$cf_rpath_dir/lib to LDFLAGS for $cf_rpath_src ..." 1>&5 LDFLAGS="$LDFLAGS -L$cf_rpath_dir/lib" break @@ -41149,11 +41396,11 @@ echo "${as_me:-configure}:41140: testing ...adding -L$cf_rpath_dir/lib to LDFLAG test -n "$verbose" && echo " ...checking EXTRA_LDFLAGS $EXTRA_LDFLAGS" 1>&6 -echo "${as_me:-configure}:41152: testing ...checking EXTRA_LDFLAGS $EXTRA_LDFLAGS ..." 1>&5 +echo "${as_me:-configure}:41399: testing ...checking EXTRA_LDFLAGS $EXTRA_LDFLAGS ..." 1>&5 test -n "$verbose" && echo " ...checking LDFLAGS $LDFLAGS" 1>&6 -echo "${as_me:-configure}:41156: testing ...checking LDFLAGS $LDFLAGS ..." 1>&5 +echo "${as_me:-configure}:41403: testing ...checking LDFLAGS $LDFLAGS ..." 1>&5 cf_rpath_dst= for cf_rpath_src in $LDFLAGS @@ -41190,7 +41437,7 @@ do then test -n "$verbose" && echo " ...Filter $cf_rpath_src ->$cf_rpath_tmp" 1>&6 -echo "${as_me:-configure}:41193: testing ...Filter $cf_rpath_src ->$cf_rpath_tmp ..." 1>&5 +echo "${as_me:-configure}:41440: testing ...Filter $cf_rpath_src ->$cf_rpath_tmp ..." 1>&5 EXTRA_LDFLAGS="$cf_rpath_tmp $EXTRA_LDFLAGS" fi @@ -41203,11 +41450,11 @@ LDFLAGS=$cf_rpath_dst test -n "$verbose" && echo " ...checked LDFLAGS $LDFLAGS" 1>&6 -echo "${as_me:-configure}:41206: testing ...checked LDFLAGS $LDFLAGS ..." 1>&5 +echo "${as_me:-configure}:41453: testing ...checked LDFLAGS $LDFLAGS ..." 1>&5 test -n "$verbose" && echo " ...checking LIBS $LIBS" 1>&6 -echo "${as_me:-configure}:41210: testing ...checking LIBS $LIBS ..." 1>&5 +echo "${as_me:-configure}:41457: testing ...checking LIBS $LIBS ..." 1>&5 cf_rpath_dst= for cf_rpath_src in $LIBS @@ -41244,7 +41491,7 @@ do then test -n "$verbose" && echo " ...Filter $cf_rpath_src ->$cf_rpath_tmp" 1>&6 -echo "${as_me:-configure}:41247: testing ...Filter $cf_rpath_src ->$cf_rpath_tmp ..." 1>&5 +echo "${as_me:-configure}:41494: testing ...Filter $cf_rpath_src ->$cf_rpath_tmp ..." 1>&5 EXTRA_LDFLAGS="$cf_rpath_tmp $EXTRA_LDFLAGS" fi @@ -41257,11 +41504,11 @@ LIBS=$cf_rpath_dst test -n "$verbose" && echo " ...checked LIBS $LIBS" 1>&6 -echo "${as_me:-configure}:41260: testing ...checked LIBS $LIBS ..." 1>&5 +echo "${as_me:-configure}:41507: testing ...checked LIBS $LIBS ..." 1>&5 test -n "$verbose" && echo " ...checked EXTRA_LDFLAGS $EXTRA_LDFLAGS" 1>&6 -echo "${as_me:-configure}:41264: testing ...checked EXTRA_LDFLAGS $EXTRA_LDFLAGS ..." 1>&5 +echo "${as_me:-configure}:41511: testing ...checked EXTRA_LDFLAGS $EXTRA_LDFLAGS ..." 1>&5 fi @@ -41362,7 +41609,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:41365: creating $CONFIG_STATUS" >&5 +{ echo "$as_me:41612: creating $CONFIG_STATUS" >&5 echo "$as_me: creating $CONFIG_STATUS" >&6;} cat >$CONFIG_STATUS <<_ACEOF #! $SHELL @@ -41538,7 +41785,7 @@ cat >>$CONFIG_STATUS <<\EOF echo "$ac_cs_version"; exit 0 ;; --he | --h) # Conflict between --help and --header - { { echo "$as_me:41541: error: ambiguous option: $1 + { { echo "$as_me:41788: 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;} @@ -41557,7 +41804,7 @@ Try \`$0 --help' for more information." >&2;} ac_need_defaults=false;; # This is an error. - -*) { { echo "$as_me:41560: error: unrecognized option: $1 + -*) { { echo "$as_me:41807: 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;} @@ -41610,7 +41857,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:41613: error: invalid argument: $ac_config_target" >&5 + *) { { echo "$as_me:41860: error: invalid argument: $ac_config_target" >&5 echo "$as_me: error: invalid argument: $ac_config_target" >&2;} { (exit 1); exit 1; }; };; esac @@ -41938,7 +42185,7 @@ done; } esac if test x"$ac_file" != x-; then - { echo "$as_me:41941: creating $ac_file" >&5 + { echo "$as_me:42188: creating $ac_file" >&5 echo "$as_me: creating $ac_file" >&6;} rm -f "$ac_file" fi @@ -41956,7 +42203,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:41959: error: cannot find input file: $f" >&5 + test -f "$f" || { { echo "$as_me:42206: error: cannot find input file: $f" >&5 echo "$as_me: error: cannot find input file: $f" >&2;} { (exit 1); exit 1; }; } echo $f;; @@ -41969,7 +42216,7 @@ echo "$as_me: error: cannot find input file: $f" >&2;} echo $srcdir/$f else # /dev/null tree - { { echo "$as_me:41972: error: cannot find input file: $f" >&5 + { { echo "$as_me:42219: error: cannot find input file: $f" >&5 echo "$as_me: error: cannot find input file: $f" >&2;} { (exit 1); exit 1; }; } fi;; @@ -42035,7 +42282,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:42038: creating $ac_file" >&5 + test x"$ac_file" != x- && { echo "$as_me:42285: creating $ac_file" >&5 echo "$as_me: creating $ac_file" >&6;} # First look for the input files in the build tree, otherwise in the @@ -42046,7 +42293,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:42049: error: cannot find input file: $f" >&5 + test -f "$f" || { { echo "$as_me:42296: error: cannot find input file: $f" >&5 echo "$as_me: error: cannot find input file: $f" >&2;} { (exit 1); exit 1; }; } echo $f;; @@ -42059,7 +42306,7 @@ echo "$as_me: error: cannot find input file: $f" >&2;} echo $srcdir/$f else # /dev/null tree - { { echo "$as_me:42062: error: cannot find input file: $f" >&5 + { { echo "$as_me:42309: error: cannot find input file: $f" >&5 echo "$as_me: error: cannot find input file: $f" >&2;} { (exit 1); exit 1; }; } fi;; @@ -42177,7 +42424,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:42180: $ac_file is unchanged" >&5 + { echo "$as_me:42427: $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/lynx.rsp b/lynx.rsp deleted file mode 100644 index b7f4f247..00000000 --- a/lynx.rsp +++ /dev/null @@ -1,89 +0,0 @@ -../obj/DefaultStyle.obj -../obj/GridText.obj -../obj/HTAabrow.obj -../obj/HTAaprot.obj -../obj/HTAautil.obj -../obj/HTAccess.obj -../obj/HTAlert.obj -../obj/HTAnchor.obj -../obj/HTAssoc.obj -../obj/HTAtom.obj -../obj/HTBtree.obj -../obj/HTChunk.obj -../obj/HTDOS.obj -../obj/HTFile.obj -../obj/HTFinger.obj -../obj/HTFormat.obj -../obj/HTFtp.obj -../obj/HTFwriter.obj -../obj/HTGopher.obj -../obj/HTGroup.obj -../obj/HTInit.obj -../obj/HTLex.obj -../obj/HTList.obj -../obj/HTMIME.obj -../obj/HTML.obj -../obj/HTMLDTD.obj -../obj/HTMLGen.obj -../obj/HTNews.obj -../obj/HTParse.obj -../obj/HTPlain.obj -../obj/HTRules.obj -../obj/HTString.obj -../obj/HTStyle.obj -../obj/HTTP.obj -../obj/HTTcp.obj -../obj/HTTelnet.obj -../obj/HTUU.obj -../obj/HTWSRC.obj -../obj/LYBookmark.obj -../obj/LYCgi.obj -../obj/LYCharSets.obj -../obj/LYCharUtils.obj -../obj/LYClean.obj -../obj/LYCookie.obj -../obj/LYCurses.obj -../obj/LYDownload.obj -../obj/LYEdit.obj -../obj/LYEditmap.obj -../obj/LYExit.obj -../obj/LYExtern.obj -../obj/LYForms.obj -../obj/LYGetFile.obj -../obj/LYHistory.obj -../obj/LYJump.obj -../obj/LYKeymap.obj -../obj/LYLeaks.obj -../obj/LYList.obj -../obj/LYLocal.obj -../obj/LYMail.obj -../obj/LYMain.obj -../obj/LYMainLoop.obj -../obj/LYMap.obj -../obj/LYNews.obj -../obj/LYOptions.obj -../obj/LYPrint.obj -../obj/LYPrettySrc.obj -../obj/LYReadCFG.obj -../obj/LYSearch.obj -../obj/LYSession.obj -../obj/LYShowInfo.obj -../obj/LYStrings.obj -../obj/LYTraversal.obj -../obj/LYUpload.obj -../obj/LYmktime.obj -../obj/LYrcFile.obj -../obj/parsdate.obj -../obj/SGML.obj -../obj/TRSTable.obj -../obj/UCAuto.obj -../obj/UCAux.obj -../obj/UCdomap.obj -../obj/lyutils.obj -../obj/xsystem.obj -../curses/PDCURSES.LIB -../curses/zdllbor.lib -../curses/libeay32.lib -../curses/ssleay32.lib -../curses/iconv.lib -../curses/libintl.lib |