diff options
-rw-r--r-- | CHANGES | 20 | ||||
-rw-r--r-- | PACKAGE/debian/changelog | 6 | ||||
-rw-r--r-- | PACKAGE/debian/copyright | 4 | ||||
-rw-r--r-- | PACKAGE/lynx.iss | 4 | ||||
-rw-r--r-- | PACKAGE/lynx.spec | 4 | ||||
-rw-r--r-- | aclocal.m4 | 175 | ||||
-rwxr-xr-x | config.guess | 167 | ||||
-rwxr-xr-x | config.sub | 87 | ||||
-rwxr-xr-x | configure | 4580 | ||||
-rw-r--r-- | src/tidy_tls.c | 4 | ||||
-rw-r--r-- | userdefs.h | 4 |
11 files changed, 2602 insertions, 2453 deletions
diff --git a/CHANGES b/CHANGES index b126cfee..3fd2b7a9 100644 --- a/CHANGES +++ b/CHANGES @@ -1,8 +1,26 @@ --- $LynxId: CHANGES,v 1.653 2013/07/29 19:54:21 tom Exp $ +-- $LynxId: CHANGES,v 1.654 2013/09/30 00:23:10 tom Exp $ =============================================================================== Changes since Lynx 2.8 release =============================================================================== +2013-09-29 (2.8.8dev.17) +* updates for configure macros -TD + + CF_ACVERSION_CHECK, fix from byacc for "newer" autoconf. + + CF_ADD_LIB_AFTER, fix from xterm for problem with -Wl,xxx options + + CF_CURSES_LIBS, modify to allow external script to set $cf_term_lib and/or + $cf_curs_lib + + CF_INTEL_COMPILER, $host_os needs AC_CANONICAL_HOST + + CF_MIXEDCASE_FILENAMES, add msys / msysdll to known host/platform types + + CF_RPATH_HACK, use sort and uniq rather than sort -u, to work with HPUX + 11.11, etc. + + CF_TRY_PKG_CONFIG, set variables for consistent usage of this macro + + CF_XOPEN_SOURCE, add msys / msysdll to known host/platform types + + CF_X_ATHENA, trim extra X libraries after updating lists, to work with ld + --as-needed option which in effect uses only the first mention of the + library. If that does not follow everything that depends on the library, + ld will silently fail to resolve symbols. +* update config.guess (2013-06-10), config.sub (2013-09-05) + 2013-07-29 (2.8.8dev.16) * build-fix for setmode() definition on Cygwin -TD * modify HTUtils.h to work around header conflict with Cygwin w32api and diff --git a/PACKAGE/debian/changelog b/PACKAGE/debian/changelog index f6fac4bc..44ae2b82 100644 --- a/PACKAGE/debian/changelog +++ b/PACKAGE/debian/changelog @@ -1,3 +1,9 @@ +lynx-dev (2.8.8dev.17) unstable; urgency=high + + * changes for dev.17 + + -- Thomas E. Dickey <dickey@invisible-island.net> Sun, 29 Sep 2013 19:33:16 -0400 + lynx-dev (2.8.8dev.16) unstable; urgency=high * changes for dev.16 diff --git a/PACKAGE/debian/copyright b/PACKAGE/debian/copyright index 3df77a17..85c8fd93 100644 --- a/PACKAGE/debian/copyright +++ b/PACKAGE/debian/copyright @@ -47,7 +47,7 @@ For reference, below is the original copyright notice for Lynx (2.4.2). Files: aclocal.m4 Licence: other-BSD -Copyright: 1997-2009,2010 by Thomas E. Dickey +Copyright: 1997-2012,2013 by Thomas E. Dickey Permission to use, copy, modify, and distribute this software and its documentation for any purpose and without fee is hereby granted, provided that the above copyright notice appear in all copies and that @@ -101,7 +101,7 @@ Licence: other-BSD shared with many OS's install programs. Files: debian/* -Copyright: 2010 Thomas E. Dickey +Copyright: 2010-2013 Thomas E. Dickey Licence: other-BSD Permission to use, copy, modify, and distribute this software and its documentation for any purpose and without fee is hereby granted, diff --git a/PACKAGE/lynx.iss b/PACKAGE/lynx.iss index f764a9a2..096684d1 100644 --- a/PACKAGE/lynx.iss +++ b/PACKAGE/lynx.iss @@ -1,4 +1,4 @@ -; $LynxId: lynx.iss,v 1.9 2012/11/16 10:00:03 tom Exp $ +; $LynxId: lynx.iss,v 1.10 2013/09/30 00:34:08 tom Exp $ ; vile:ts=2 sw=2 notabinsert ; ; This is the BASE script for different flavors of the installer for Lynx. @@ -90,7 +90,7 @@ AppName={#MyAppName} #emit 'VersionInfoVersion=' + LYNX_TARGET2 AppVerName={#MyAppVerName} AppPublisher={#MyAppPublisher} -AppCopyright=© 1997-2011,2012, Thomas E. Dickey +AppCopyright=© 1997-2012,2013, Thomas E. Dickey AppPublisherURL={#MyAppURL} AppSupportURL={#MyAppURL} AppUpdatesURL={#MyAppURL} diff --git a/PACKAGE/lynx.spec b/PACKAGE/lynx.spec index 128bc394..6d77974c 100644 --- a/PACKAGE/lynx.spec +++ b/PACKAGE/lynx.spec @@ -1,8 +1,8 @@ -# $LynxId: lynx.spec,v 1.17 2013/04/30 08:32:37 tom Exp $ +# $LynxId: lynx.spec,v 1.18 2013/09/29 23:32:33 tom Exp $ Summary: A text-based Web browser Name: lynx Version: 2.8.8 -Release: dev.16 +Release: dev.17 License: GPLv2 Group: Applications/Internet Source: lynx%{version}%{release}.tgz diff --git a/aclocal.m4 b/aclocal.m4 index 84925269..8b425ff6 100644 --- a/aclocal.m4 +++ b/aclocal.m4 @@ -1,4 +1,4 @@ -dnl $LynxId: aclocal.m4,v 1.198 2012/11/09 10:48:49 tom Exp $ +dnl $LynxId: aclocal.m4,v 1.200 2013/09/30 00:42:07 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> @@ -13,7 +13,7 @@ dnl http://invisible-island.net/autoconf/autoconf.html dnl dnl --------------------------------------------------------------------------- dnl -dnl Copyright 1997-2011,2012 by Thomas E. Dickey +dnl Copyright 1997-2012,2013 by Thomas E. Dickey dnl dnl Permission to use, copy, modify, and distribute this software and its dnl documentation for any purpose and without fee is hereby granted, @@ -597,7 +597,7 @@ changequote([,])dnl AC_SUBST(GENCAT) ])dnl dnl --------------------------------------------------------------------------- -dnl CF_ACVERSION_CHECK version: 3 updated: 2012/10/03 18:39:53 +dnl CF_ACVERSION_CHECK version: 4 updated: 2013/03/04 19:52:56 dnl ------------------ dnl Conditionally generate script according to whether we're using a given autoconf. dnl @@ -606,6 +606,7 @@ dnl $2 = code to use if AC_ACVERSION is at least as high as $1. dnl $3 = code to use if AC_ACVERSION is older than $1. define([CF_ACVERSION_CHECK], [ +ifdef([AC_ACVERSION], ,[m4_copy([m4_PACKAGE_VERSION],[AC_ACVERSION])])dnl ifdef([m4_version_compare], [m4_if(m4_version_compare(m4_defn([AC_ACVERSION]), [$1]), -1, [$3], [$2])], [CF_ACVERSION_COMPARE( @@ -819,7 +820,7 @@ dnl $1 = libraries to add, with the "-l", etc. dnl $2 = variable to update (default $LIBS) AC_DEFUN([CF_ADD_LIBS],[ifelse($2,,LIBS,[$2])="$1 [$]ifelse($2,,LIBS,[$2])"])dnl dnl --------------------------------------------------------------------------- -dnl CF_ADD_LIB_AFTER version: 2 updated: 2010/11/08 20:33:46 +dnl CF_ADD_LIB_AFTER version: 3 updated: 2013/07/09 21:27:22 dnl ---------------- dnl Add a given library after another, e.g., following the one it satisfies a dnl dependency for. @@ -828,7 +829,7 @@ dnl $1 = the first library dnl $2 = its dependency AC_DEFUN([CF_ADD_LIB_AFTER],[ CF_VERBOSE(...before $LIBS) -LIBS=`echo "$LIBS" | sed -e "s/[[ ]][[ ]]*/ /g" -e "s,$1 ,$1 $2 ," -e 's/ / /g'` +LIBS=`echo "$LIBS" | sed -e "s/[[ ]][[ ]]*/ /g" -e "s%$1 %$1 $2 %" -e 's% % %g'` CF_VERBOSE(...after $LIBS) ])dnl dnl --------------------------------------------------------------------------- @@ -1813,7 +1814,7 @@ fi AC_CHECK_HEADERS($cf_cv_ncurses_header) ])dnl dnl --------------------------------------------------------------------------- -dnl CF_CURSES_LIBS version: 36 updated: 2012/07/07 21:02:48 +dnl CF_CURSES_LIBS version: 37 updated: 2013/02/09 17:33:50 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. @@ -1850,7 +1851,7 @@ hpux10.*) #(vi ac_cv_func_initscr=yes ])]) fi - ;; + ;; linux*) case `arch 2>/dev/null` in x86_64) @@ -1865,7 +1866,7 @@ linux*) CF_ADD_LIBDIR(/lib) ;; esac - ;; + ;; sunos3*|sunos4*) if test "x$cf_cv_screen" = "xcurses_5lib" then @@ -1879,59 +1880,63 @@ sunos3*|sunos4*) esac if test ".$ac_cv_func_initscr" != .yes ; then - cf_save_LIBS="$LIBS" - cf_term_lib="" - cf_curs_lib="" + cf_save_LIBS="$LIBS" - if test ".${cf_cv_ncurses_version:-no}" != .no - then - cf_check_list="ncurses curses cursesX" - else - cf_check_list="cursesX curses ncurses" - fi + if test ".${cf_cv_ncurses_version:-no}" != .no + then + cf_check_list="ncurses curses cursesX" + else + cf_check_list="cursesX curses ncurses" + fi - # 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 otermcap termcap tinfo termlib unknown - do - AC_CHECK_LIB($cf_term_lib,tgoto,[break]) - done - ]) + # Check for library containing tgoto. Do this before curses library + # because it may be needed to link the test-case for initscr. + if test "x$cf_term_lib" = x + then + AC_CHECK_FUNC(tgoto,[cf_term_lib=predefined],[ + for cf_term_lib in $cf_check_list otermcap termcap tinfo termlib unknown + do + AC_CHECK_LIB($cf_term_lib,tgoto,[break]) + done + ]) + fi - # Check for library containing initscr - test "$cf_term_lib" != predefined && test "$cf_term_lib" != unknown && LIBS="-l$cf_term_lib $cf_save_LIBS" - for cf_curs_lib in $cf_check_list xcurses jcurses pdcurses unknown - do - AC_CHECK_LIB($cf_curs_lib,initscr,[break]) - done - test $cf_curs_lib = unknown && AC_MSG_ERROR(no curses library found) - - LIBS="-l$cf_curs_lib $cf_save_LIBS" - if test "$cf_term_lib" = unknown ; then - AC_MSG_CHECKING(if we can link with $cf_curs_lib library) - AC_TRY_LINK([#include <${cf_cv_ncurses_header:-curses.h}>], - [initscr()], - [cf_result=yes], - [cf_result=no]) - AC_MSG_RESULT($cf_result) - test $cf_result = no && AC_MSG_ERROR(Cannot link curses library) - elif test "$cf_curs_lib" = "$cf_term_lib" ; then - : - elif test "$cf_term_lib" != predefined ; then - AC_MSG_CHECKING(if we need both $cf_curs_lib and $cf_term_lib libraries) - AC_TRY_LINK([#include <${cf_cv_ncurses_header:-curses.h}>], - [initscr(); tgoto((char *)0, 0, 0);], - [cf_result=no], - [ - LIBS="-l$cf_curs_lib -l$cf_term_lib $cf_save_LIBS" - AC_TRY_LINK([#include <${cf_cv_ncurses_header:-curses.h}>], - [initscr()], - [cf_result=yes], - [cf_result=error]) - ]) - AC_MSG_RESULT($cf_result) - fi + # Check for library containing initscr + test "$cf_term_lib" != predefined && test "$cf_term_lib" != unknown && LIBS="-l$cf_term_lib $cf_save_LIBS" + if test "x$cf_curs_lib" = x + then + for cf_curs_lib in $cf_check_list xcurses jcurses pdcurses unknown + do + AC_CHECK_LIB($cf_curs_lib,initscr,[break]) + done + fi + test $cf_curs_lib = unknown && AC_MSG_ERROR(no curses library found) + + LIBS="-l$cf_curs_lib $cf_save_LIBS" + if test "$cf_term_lib" = unknown ; then + AC_MSG_CHECKING(if we can link with $cf_curs_lib library) + AC_TRY_LINK([#include <${cf_cv_ncurses_header:-curses.h}>], + [initscr()], + [cf_result=yes], + [cf_result=no]) + AC_MSG_RESULT($cf_result) + test $cf_result = no && AC_MSG_ERROR(Cannot link curses library) + elif test "$cf_curs_lib" = "$cf_term_lib" ; then + : + elif test "$cf_term_lib" != predefined ; then + AC_MSG_CHECKING(if we need both $cf_curs_lib and $cf_term_lib libraries) + AC_TRY_LINK([#include <${cf_cv_ncurses_header:-curses.h}>], + [initscr(); tgoto((char *)0, 0, 0);], + [cf_result=no], + [ + LIBS="-l$cf_curs_lib -l$cf_term_lib $cf_save_LIBS" + AC_TRY_LINK([#include <${cf_cv_ncurses_header:-curses.h}>], + [initscr()], + [cf_result=yes], + [cf_result=error]) + ]) + AC_MSG_RESULT($cf_result) + fi fi fi @@ -3287,7 +3292,7 @@ else fi ])dnl dnl --------------------------------------------------------------------------- -dnl CF_INTEL_COMPILER version: 4 updated: 2010/05/26 05:38:42 +dnl CF_INTEL_COMPILER version: 5 updated: 2013/02/10 10:41:05 dnl ----------------- dnl Check if the given compiler is really the Intel compiler for Linux. It dnl tries to imitate gcc, but does not return an error when it finds a mismatch @@ -3301,6 +3306,7 @@ dnl $1 = GCC (default) or GXX dnl $2 = INTEL_COMPILER (default) or INTEL_CPLUSPLUS dnl $3 = CFLAGS (default) or CXXFLAGS AC_DEFUN([CF_INTEL_COMPILER],[ +AC_REQUIRE([AC_CANONICAL_HOST]) ifelse([$2],,INTEL_COMPILER,[$2])=no if test "$ifelse([$1],,[$1],GCC)" = yes ; then @@ -3591,7 +3597,7 @@ ifelse($1,,[ fi ]) dnl --------------------------------------------------------------------------- -dnl CF_MIXEDCASE_FILENAMES version: 4 updated: 2012/10/02 20:55:03 +dnl CF_MIXEDCASE_FILENAMES version: 5 updated: 2013/09/07 13:54:05 dnl ---------------------- dnl Check if the file-system supports mixed-case filenames. If we're able to dnl create a lowercase name and see it as uppercase, it doesn't support that. @@ -3600,7 +3606,7 @@ AC_DEFUN([CF_MIXEDCASE_FILENAMES], AC_CACHE_CHECK(if filesystem supports mixed-case filenames,cf_cv_mixedcase,[ if test "$cross_compiling" = yes ; then case $target_alias in #(vi - *-os2-emx*|*-msdosdjgpp*|*-cygwin*|*-mingw32*|*-uwin*) #(vi + *-os2-emx*|*-msdosdjgpp*|*-cygwin*|*-msys*|*-mingw32*|*-uwin*) #(vi cf_cv_mixedcase=no ;; *) @@ -4654,7 +4660,7 @@ $1=`echo "$2" | \ -e 's/-[[UD]]'"$3"'\(=[[^ ]]*\)\?[$]//g'` ])dnl dnl --------------------------------------------------------------------------- -dnl CF_RPATH_HACK version: 9 updated: 2011/02/13 13:31:33 +dnl CF_RPATH_HACK version: 11 updated: 2013/09/01 13:02:00 dnl ------------- AC_DEFUN([CF_RPATH_HACK], [ @@ -4671,8 +4677,8 @@ if test -n "$LD_RPATH_OPT" ; then AC_TRY_LINK([#include <stdio.h>], [printf("Hello");], - [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`]) + [cf_rpath_oops=`$cf_ldd_prog conftest$ac_exeext | fgrep ' not found' | sed -e 's% =>.*$%%' |sort | uniq` + cf_rpath_list=`$cf_ldd_prog conftest$ac_exeext | fgrep / | sed -e 's%^.*[[ ]]/%/%' -e 's%/[[^/]][[^/]]*$%%' |sort | uniq`]) # If we passed the link-test, but get a "not found" on a given library, # this could be due to inept reconfiguration of gcc to make it only @@ -4705,6 +4711,8 @@ AC_TRY_LINK([#include <stdio.h>], CF_RPATH_HACK_2(LIBS) CF_VERBOSE(...checked EXTRA_LDFLAGS $EXTRA_LDFLAGS) +else + AC_MSG_RESULT(no) fi AC_SUBST(EXTRA_LDFLAGS) ])dnl @@ -5718,7 +5726,23 @@ AC_MSG_RESULT($cf_cv_tm_gmtoff) test $cf_cv_tm_gmtoff = no && AC_DEFINE(DONT_HAVE_TM_GMTOFF,1,[Define to 1 if the tm-struct defines .tm_gmtoff member]) ])dnl dnl --------------------------------------------------------------------------- -dnl CF_TRY_PKG_CONFIG version: 4 updated: 2010/06/14 17:42:30 +dnl CF_TRIM_X_LIBS version: 2 updated: 2013/07/09 21:27:22 +dnl -------------- +dnl Trim extra base X libraries added as a workaround for inconsistent library +dnl dependencies returned by "new" pkg-config files. +AC_DEFUN([CF_TRIM_X_LIBS],[ + for cf_trim_lib in Xmu Xt X11 + do + case "$LIBS" in + *-l$cf_trim_lib\ *-l$cf_trim_lib*) + LIBS=`echo "$LIBS " | sed -e 's/ / /g' -e 's%-l'"$cf_trim_lib"' %%' -e 's/ $//'` + CF_VERBOSE(..trimmed $LIBS) + ;; + esac + done +]) +dnl --------------------------------------------------------------------------- +dnl CF_TRY_PKG_CONFIG version: 5 updated: 2013/07/06 21:27:06 dnl ----------------- dnl This is a simple wrapper to use for pkg-config, for libraries which may be dnl available in that form. @@ -5739,6 +5763,8 @@ if test "$PKG_CONFIG" != none && "$PKG_CONFIG" --exists $1; then CF_ADD_LIBS($cf_pkgconfig_libs) ifelse([$2],,:,[$2]) else + cf_pkgconfig_incs= + cf_pkgconfig_libs= ifelse([$3],,:,[$3]) fi ]) @@ -6379,7 +6405,7 @@ AC_TRY_LINK([ test $cf_cv_need_xopen_extension = yes && CPPFLAGS="$CPPFLAGS -D_XOPEN_SOURCE_EXTENDED" ])dnl dnl --------------------------------------------------------------------------- -dnl CF_XOPEN_SOURCE version: 42 updated: 2012/01/07 08:26:49 +dnl CF_XOPEN_SOURCE version: 45 updated: 2013/09/07 14:06:25 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, @@ -6389,6 +6415,7 @@ dnl Parameters: dnl $1 is the nominal value for _XOPEN_SOURCE dnl $2 is the nominal value for _POSIX_C_SOURCE AC_DEFUN([CF_XOPEN_SOURCE],[ +AC_REQUIRE([AC_CANONICAL_HOST]) cf_XOPEN_SOURCE=ifelse([$1],,500,[$1]) cf_POSIX_C_SOURCE=ifelse([$2],,199506L,[$2]) @@ -6398,7 +6425,7 @@ case $host_os in #(vi aix[[4-7]]*) #(vi cf_xopen_source="-D_ALL_SOURCE" ;; -cygwin) #(vi +cygwin|msys) #(vi cf_XOPEN_SOURCE=600 ;; darwin[[0-8]].*) #(vi @@ -6497,7 +6524,7 @@ make an error fi ]) dnl --------------------------------------------------------------------------- -dnl CF_X_ATHENA version: 20 updated: 2010/11/09 05:18:02 +dnl CF_X_ATHENA version: 21 updated: 2013/07/06 21:27:06 dnl ----------- dnl Check for Xaw (Athena) libraries dnl @@ -6556,6 +6583,8 @@ if test "$PKG_CONFIG" != none ; then CF_UPPER(cf_x_athena_LIBS,HAVE_LIB_$cf_x_athena) AC_DEFINE_UNQUOTED($cf_x_athena_LIBS) + CF_TRIM_X_LIBS + AC_CACHE_CHECK(for usable $cf_x_athena/Xmu package,cf_cv_xaw_compat,[ AC_TRY_LINK([ #include <X11/Xmu/CharSet.h> @@ -6571,7 +6600,15 @@ int check = XmuCompareISOLatin1("big", "small") ;; *) CF_VERBOSE(work around broken package) - CF_TRY_PKG_CONFIG(xmu,,[CF_ADD_LIB_AFTER(-lXt,-lXmu)]) + cf_save_xmu="$LIBS" + cf_first_lib=`echo "$cf_save_xmu" | sed -e 's/^[ ][ ]*//' -e 's/ .*//'` + CF_TRY_PKG_CONFIG(xmu,[ + LIBS="$cf_save_xmu" + CF_ADD_LIB_AFTER($cf_first_lib,$cf_pkgconfig_libs) + ],[ + CF_ADD_LIB_AFTER($cf_first_lib,-lXmu) + ]) + CF_TRIM_X_LIBS ;; esac fi diff --git a/config.guess b/config.guess index 872b96a1..b79252d6 100755 --- a/config.guess +++ b/config.guess @@ -1,14 +1,12 @@ #! /bin/sh # Attempt to guess a canonical system name. -# Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, -# 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, -# 2011, 2012 Free Software Foundation, Inc. +# Copyright 1992-2013 Free Software Foundation, Inc. -timestamp='2012-09-25' +timestamp='2013-06-10' # This file is free software; you can redistribute it and/or modify it # under the terms of the GNU General Public License as published by -# the Free Software Foundation; either version 2 of the License, or +# the Free Software Foundation; either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, but @@ -22,19 +20,17 @@ timestamp='2012-09-25' # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a # configuration script generated by Autoconf, you may include it under -# the same distribution terms that you use for the rest of that program. - - -# Originally written by Per Bothner. Please send patches (context -# diff format) to <config-patches@gnu.org> and include a ChangeLog -# entry. +# the same distribution terms that you use for the rest of that +# program. This Exception is an additional permission under section 7 +# of the GNU General Public License, version 3 ("GPLv3"). # -# This script attempts to guess a canonical system name similar to -# config.sub. If it succeeds, it prints the system name on stdout, and -# exits with 0. Otherwise, it exits with 1. +# Originally written by Per Bothner. # # You can get the latest version of this script from: # http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.guess;hb=HEAD +# +# Please send patches with a ChangeLog entry to config-patches@gnu.org. + me=`echo "$0" | sed -e 's,.*/,,'` @@ -54,9 +50,7 @@ version="\ GNU config.guess ($timestamp) Originally written by Per Bothner. -Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, -2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012 -Free Software Foundation, Inc. +Copyright 1992-2013 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE." @@ -138,6 +132,27 @@ UNAME_RELEASE=`(uname -r) 2>/dev/null` || UNAME_RELEASE=unknown UNAME_SYSTEM=`(uname -s) 2>/dev/null` || UNAME_SYSTEM=unknown UNAME_VERSION=`(uname -v) 2>/dev/null` || UNAME_VERSION=unknown +case "${UNAME_SYSTEM}" in +Linux|GNU|GNU/*) + # If the system lacks a compiler, then just pick glibc. + # We could probably try harder. + LIBC=gnu + + eval $set_cc_for_build + cat <<-EOF > $dummy.c + #include <features.h> + #if defined(__UCLIBC__) + LIBC=uclibc + #elif defined(__dietlibc__) + LIBC=dietlibc + #else + LIBC=gnu + #endif + EOF + eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep '^LIBC'` + ;; +esac + # Note: order is significant - the case branches are not exclusive. case "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" in @@ -859,21 +874,21 @@ EOF exit ;; *:GNU:*:*) # the GNU system - echo `echo ${UNAME_MACHINE}|sed -e 's,[-/].*$,,'`-unknown-gnu`echo ${UNAME_RELEASE}|sed -e 's,/.*$,,'` + echo `echo ${UNAME_MACHINE}|sed -e 's,[-/].*$,,'`-unknown-${LIBC}`echo ${UNAME_RELEASE}|sed -e 's,/.*$,,'` exit ;; *:GNU/*:*:*) # other systems with GNU libc and userland - echo ${UNAME_MACHINE}-unknown-`echo ${UNAME_SYSTEM} | sed 's,^[^/]*/,,' | tr '[A-Z]' '[a-z]'``echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'`-gnu + echo ${UNAME_MACHINE}-unknown-`echo ${UNAME_SYSTEM} | sed 's,^[^/]*/,,' | tr '[A-Z]' '[a-z]'``echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'`-${LIBC} exit ;; i*86:Minix:*:*) echo ${UNAME_MACHINE}-pc-minix exit ;; aarch64:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-gnu + echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; aarch64_be:Linux:*:*) UNAME_MACHINE=aarch64_be - echo ${UNAME_MACHINE}-unknown-linux-gnu + echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; alpha:Linux:*:*) case `sed -n '/^cpu model/s/^.*: \(.*\)/\1/p' < /proc/cpuinfo` in @@ -886,59 +901,54 @@ EOF EV68*) UNAME_MACHINE=alphaev68 ;; esac objdump --private-headers /bin/sh | grep -q ld.so.1 - if test "$?" = 0 ; then LIBC="libc1" ; else LIBC="" ; fi - echo ${UNAME_MACHINE}-unknown-linux-gnu${LIBC} + if test "$?" = 0 ; then LIBC="gnulibc1" ; fi + echo ${UNAME_MACHINE}-unknown-linux-${LIBC} + exit ;; + arc:Linux:*:* | arceb:Linux:*:*) + echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; arm*:Linux:*:*) eval $set_cc_for_build if echo __ARM_EABI__ | $CC_FOR_BUILD -E - 2>/dev/null \ | grep -q __ARM_EABI__ then - echo ${UNAME_MACHINE}-unknown-linux-gnu + echo ${UNAME_MACHINE}-unknown-linux-${LIBC} else if echo __ARM_PCS_VFP | $CC_FOR_BUILD -E - 2>/dev/null \ | grep -q __ARM_PCS_VFP then - echo ${UNAME_MACHINE}-unknown-linux-gnueabi + echo ${UNAME_MACHINE}-unknown-linux-${LIBC}eabi else - echo ${UNAME_MACHINE}-unknown-linux-gnueabihf + echo ${UNAME_MACHINE}-unknown-linux-${LIBC}eabihf fi fi exit ;; avr32*:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-gnu + echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; cris:Linux:*:*) - echo ${UNAME_MACHINE}-axis-linux-gnu + echo ${UNAME_MACHINE}-axis-linux-${LIBC} exit ;; crisv32:Linux:*:*) - echo ${UNAME_MACHINE}-axis-linux-gnu + echo ${UNAME_MACHINE}-axis-linux-${LIBC} exit ;; frv:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-gnu + echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; hexagon:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-gnu + echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; i*86:Linux:*:*) - LIBC=gnu - eval $set_cc_for_build - sed 's/^ //' << EOF >$dummy.c - #ifdef __dietlibc__ - LIBC=dietlibc - #endif -EOF - eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep '^LIBC'` - echo "${UNAME_MACHINE}-pc-linux-${LIBC}" + echo ${UNAME_MACHINE}-pc-linux-${LIBC} exit ;; ia64:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-gnu + echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; m32r*:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-gnu + echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; m68*:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-gnu + echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; mips:Linux:*:* | mips64:Linux:*:*) eval $set_cc_for_build @@ -957,54 +967,63 @@ EOF #endif EOF eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep '^CPU'` - test x"${CPU}" != x && { echo "${CPU}-unknown-linux-gnu"; exit; } + test x"${CPU}" != x && { echo "${CPU}-unknown-linux-${LIBC}"; exit; } ;; + or1k:Linux:*:*) + echo ${UNAME_MACHINE}-unknown-linux-${LIBC} + exit ;; or32:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-gnu + echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; padre:Linux:*:*) - echo sparc-unknown-linux-gnu + echo sparc-unknown-linux-${LIBC} exit ;; parisc64:Linux:*:* | hppa64:Linux:*:*) - echo hppa64-unknown-linux-gnu + echo hppa64-unknown-linux-${LIBC} exit ;; parisc:Linux:*:* | hppa:Linux:*:*) # Look for CPU level case `grep '^cpu[^a-z]*:' /proc/cpuinfo 2>/dev/null | cut -d' ' -f2` in - PA7*) echo hppa1.1-unknown-linux-gnu ;; - PA8*) echo hppa2.0-unknown-linux-gnu ;; - *) echo hppa-unknown-linux-gnu ;; + PA7*) echo hppa1.1-unknown-linux-${LIBC} ;; + PA8*) echo hppa2.0-unknown-linux-${LIBC} ;; + *) echo hppa-unknown-linux-${LIBC} ;; esac exit ;; ppc64:Linux:*:*) - echo powerpc64-unknown-linux-gnu + echo powerpc64-unknown-linux-${LIBC} exit ;; ppc:Linux:*:*) - echo powerpc-unknown-linux-gnu + echo powerpc-unknown-linux-${LIBC} + exit ;; + ppc64le:Linux:*:*) + echo powerpc64le-unknown-linux-${LIBC} + exit ;; + ppcle:Linux:*:*) + echo powerpcle-unknown-linux-${LIBC} exit ;; s390:Linux:*:* | s390x:Linux:*:*) - echo ${UNAME_MACHINE}-ibm-linux + echo ${UNAME_MACHINE}-ibm-linux-${LIBC} exit ;; sh64*:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-gnu + echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; sh*:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-gnu + echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; sparc:Linux:*:* | sparc64:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-gnu + echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; tile*:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-gnu + echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; vax:Linux:*:*) - echo ${UNAME_MACHINE}-dec-linux-gnu + echo ${UNAME_MACHINE}-dec-linux-${LIBC} exit ;; x86_64:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-gnu + echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; xtensa*:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-gnu + echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; i*86:DYNIX/ptx:4*:*) # ptx 4.0 does uname -s correctly, with DYNIX/ptx in there. @@ -1237,19 +1256,21 @@ EOF exit ;; *:Darwin:*:*) UNAME_PROCESSOR=`uname -p` || UNAME_PROCESSOR=unknown - case $UNAME_PROCESSOR in - i386) - eval $set_cc_for_build - if [ "$CC_FOR_BUILD" != 'no_compiler_found' ]; then - if (echo '#ifdef __LP64__'; echo IS_64BIT_ARCH; echo '#endif') | \ - (CCOPTS= $CC_FOR_BUILD -E - 2>/dev/null) | \ - grep IS_64BIT_ARCH >/dev/null - then - UNAME_PROCESSOR="x86_64" - fi - fi ;; - unknown) UNAME_PROCESSOR=powerpc ;; - esac + eval $set_cc_for_build + if test "$UNAME_PROCESSOR" = unknown ; then + UNAME_PROCESSOR=powerpc + fi + if [ "$CC_FOR_BUILD" != 'no_compiler_found' ]; then + if (echo '#ifdef __LP64__'; echo IS_64BIT_ARCH; echo '#endif') | \ + (CCOPTS= $CC_FOR_BUILD -E - 2>/dev/null) | \ + grep IS_64BIT_ARCH >/dev/null + then + case $UNAME_PROCESSOR in + i386) UNAME_PROCESSOR=x86_64 ;; + powerpc) UNAME_PROCESSOR=powerpc64 ;; + esac + fi + fi echo ${UNAME_PROCESSOR}-apple-darwin${UNAME_RELEASE} exit ;; *:procnto*:*:* | *:QNX:[0123456789]*:*) diff --git a/config.sub b/config.sub index bdda9e4a..85a159e5 100755 --- a/config.sub +++ b/config.sub @@ -1,24 +1,18 @@ #! /bin/sh # Configuration validation subroutine script. -# Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, -# 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, -# 2011, 2012 Free Software Foundation, Inc. +# Copyright 1992-2013 Free Software Foundation, Inc. -timestamp='2012-08-18' +timestamp='2013-09-05' -# This file is (in principle) common to ALL GNU software. -# The presence of a machine in this file suggests that SOME GNU software -# can handle that machine. It does not imply ALL GNU software can. -# -# This file is free software; you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation; either version 2 of the License, or +# This file is free software; you can redistribute it and/or modify it +# under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 3 of the License, or # (at your option) any later version. # -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. +# This program is distributed in the hope that it will be useful, but +# WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, see <http://www.gnu.org/licenses/>. @@ -26,11 +20,12 @@ timestamp='2012-08-18' # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a # configuration script generated by Autoconf, you may include it under -# the same distribution terms that you use for the rest of that program. +# the same distribution terms that you use for the rest of that +# program. This Exception is an additional permission under section 7 +# of the GNU General Public License, version 3 ("GPLv3"). -# Please send patches to <config-patches@gnu.org>. Submit a context -# diff and a properly formatted GNU ChangeLog entry. +# Please send patches with a ChangeLog entry to config-patches@gnu.org. # # Configuration subroutine to validate and canonicalize a configuration type. # Supply the specified configuration type as an argument. @@ -73,9 +68,7 @@ Report bugs and patches to <config-patches@gnu.org>." version="\ GNU config.sub ($timestamp) -Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, -2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012 -Free Software Foundation, Inc. +Copyright 1992-2013 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE." @@ -156,7 +149,7 @@ case $os in -convergent* | -ncr* | -news | -32* | -3600* | -3100* | -hitachi* |\ -c[123]* | -convex* | -sun | -crds | -omron* | -dg | -ultra | -tti* | \ -harris | -dolphin | -highlevel | -gould | -cbm | -ns | -masscomp | \ - -apple | -axis | -knuth | -cray | -microblaze) + -apple | -axis | -knuth | -cray | -microblaze*) os= basic_machine=$1 ;; @@ -259,10 +252,12 @@ case $basic_machine in | alpha | alphaev[4-8] | alphaev56 | alphaev6[78] | alphapca5[67] \ | alpha64 | alpha64ev[4-8] | alpha64ev56 | alpha64ev6[78] | alpha64pca5[67] \ | am33_2.0 \ - | arc | arm | arm[bl]e | arme[lb] | armv[2345] | armv[345][lb] | avr | avr32 \ - | be32 | be64 \ + | arc | arceb \ + | arm | arm[bl]e | arme[lb] | armv[2-8] | armv[3-8][lb] | armv7[arm] \ + | avr | avr32 \ + | be32 | be64 \ | bfin \ - | c4x | clipper \ + | c4x | c8051 | clipper \ | d10v | d30v | dlx | dsp16xx \ | epiphany \ | fido | fr30 | frv \ @@ -273,7 +268,7 @@ case $basic_machine in | le32 | le64 \ | lm32 \ | m32c | m32r | m32rle | m68000 | m68k | m88k \ - | maxq | mb | microblaze | mcore | mep | metag \ + | maxq | mb | microblaze | microblazeel | mcore | mep | metag \ | mips | mipsbe | mipseb | mipsel | mipsle \ | mips16 \ | mips64 | mips64el \ @@ -291,16 +286,17 @@ case $basic_machine in | mipsisa64r2 | mipsisa64r2el \ | mipsisa64sb1 | mipsisa64sb1el \ | mipsisa64sr71k | mipsisa64sr71kel \ + | mipsr5900 | mipsr5900el \ | mipstx39 | mipstx39el \ | mn10200 | mn10300 \ | moxie \ | mt \ | msp430 \ | nds32 | nds32le | nds32be \ - | nios | nios2 \ + | nios | nios2 | nios2eb | nios2el \ | ns16k | ns32k \ | open8 \ - | or32 \ + | or1k | or32 \ | pdp10 | pdp11 | pj | pjl \ | powerpc | powerpc64 | powerpc64le | powerpcle \ | pyramid \ @@ -328,7 +324,7 @@ case $basic_machine in c6x) basic_machine=tic6x-unknown ;; - m6811 | m68hc11 | m6812 | m68hc12 | m68hcs12x | picochip) + m6811 | m68hc11 | m6812 | m68hc12 | m68hcs12x | nvptx | picochip) basic_machine=$basic_machine-unknown os=-none ;; @@ -370,13 +366,13 @@ case $basic_machine in | aarch64-* | aarch64_be-* \ | alpha-* | alphaev[4-8]-* | alphaev56-* | alphaev6[78]-* \ | alpha64-* | alpha64ev[4-8]-* | alpha64ev56-* | alpha64ev6[78]-* \ - | alphapca5[67]-* | alpha64pca5[67]-* | arc-* \ + | alphapca5[67]-* | alpha64pca5[67]-* | arc-* | arceb-* \ | arm-* | armbe-* | armle-* | armeb-* | armv*-* \ | avr-* | avr32-* \ | be32-* | be64-* \ | bfin-* | bs2000-* \ | c[123]* | c30-* | [cjt]90-* | c4x-* \ - | clipper-* | craynv-* | cydra-* \ + | c8051-* | clipper-* | craynv-* | cydra-* \ | d10v-* | d30v-* | dlx-* \ | elxsi-* \ | f30[01]-* | f700-* | fido-* | fr30-* | frv-* | fx80-* \ @@ -389,7 +385,8 @@ case $basic_machine in | lm32-* \ | m32c-* | m32r-* | m32rle-* \ | m68000-* | m680[012346]0-* | m68360-* | m683?2-* | m68k-* \ - | m88110-* | m88k-* | maxq-* | mcore-* | metag-* | microblaze-* \ + | m88110-* | m88k-* | maxq-* | mcore-* | metag-* \ + | microblaze-* | microblazeel-* \ | mips-* | mipsbe-* | mipseb-* | mipsel-* | mipsle-* \ | mips16-* \ | mips64-* | mips64el-* \ @@ -407,12 +404,13 @@ case $basic_machine in | mipsisa64r2-* | mipsisa64r2el-* \ | mipsisa64sb1-* | mipsisa64sb1el-* \ | mipsisa64sr71k-* | mipsisa64sr71kel-* \ + | mipsr5900-* | mipsr5900el-* \ | mipstx39-* | mipstx39el-* \ | mmix-* \ | mt-* \ | msp430-* \ | nds32-* | nds32le-* | nds32be-* \ - | nios-* | nios2-* \ + | nios-* | nios2-* | nios2eb-* | nios2el-* \ | none-* | np1-* | ns16k-* | ns32k-* \ | open8-* \ | orion-* \ @@ -788,7 +786,7 @@ case $basic_machine in basic_machine=ns32k-utek os=-sysv ;; - microblaze) + microblaze*) basic_machine=microblaze-xilinx ;; mingw64) @@ -796,7 +794,7 @@ case $basic_machine in os=-mingw64 ;; mingw32) - basic_machine=i386-pc + basic_machine=i686-pc os=-mingw32 ;; mingw32ce) @@ -832,7 +830,7 @@ case $basic_machine in basic_machine=`echo $basic_machine | sed -e 's/ms1-/mt-/'` ;; msys) - basic_machine=i386-pc + basic_machine=i686-pc os=-msys ;; mvs) @@ -1023,7 +1021,11 @@ case $basic_machine in basic_machine=i586-unknown os=-pw32 ;; - rdos) + rdos | rdos64) + basic_machine=x86_64-pc + os=-rdos + ;; + rdos32) basic_machine=i386-pc os=-rdos ;; @@ -1350,7 +1352,7 @@ case $os in -gnu* | -bsd* | -mach* | -minix* | -genix* | -ultrix* | -irix* \ | -*vms* | -sco* | -esix* | -isc* | -aix* | -cnk* | -sunos | -sunos[34]*\ | -hpux* | -unos* | -osf* | -luna* | -dgux* | -auroraux* | -solaris* \ - | -sym* | -kopensolaris* \ + | -sym* | -kopensolaris* | -plan9* \ | -amigaos* | -amigados* | -msdos* | -newsos* | -unicos* | -aof* \ | -aos* | -aros* \ | -nindy* | -vxsim* | -vxworks* | -ebmon* | -hms* | -mvs* \ @@ -1496,9 +1498,6 @@ case $os in -aros*) os=-aros ;; - -kaos*) - os=-kaos - ;; -zvmoe) os=-zvmoe ;; @@ -1547,6 +1546,9 @@ case $basic_machine in c4x-* | tic4x-*) os=-coff ;; + c8051-*) + os=-elf + ;; hexagon-*) os=-elf ;; @@ -1590,6 +1592,9 @@ case $basic_machine in mips*-*) os=-elf ;; + or1k-*) + os=-elf + ;; or32-*) os=-coff ;; diff --git a/configure b/configure index 65f36ab7..8b4a5072 100755 --- a/configure +++ b/configure @@ -1,5 +1,5 @@ #! /bin/sh -# From configure.in 2.8.8dev.15. +# From configure.in 2.8.8dev.16. # Guess values for system-dependent variables and create Makefiles. # Generated by Autoconf 2.52.20121002. # @@ -2670,7 +2670,7 @@ else if test "$cross_compiling" = yes ; then case $target_alias in #(vi - *-os2-emx*|*-msdosdjgpp*|*-cygwin*|*-mingw32*|*-uwin*) #(vi + *-os2-emx*|*-msdosdjgpp*|*-cygwin*|*-msys*|*-mingw32*|*-uwin*) #(vi cf_cv_mixedcase=no ;; *) @@ -9060,7 +9060,7 @@ case $host_os in #(vi aix[4-7]*) #(vi cf_xopen_source="-D_ALL_SOURCE" ;; -cygwin) #(vi +cygwin|msys) #(vi cf_XOPEN_SOURCE=600 ;; darwin[0-8].*) #(vi @@ -18654,7 +18654,7 @@ fi fi fi - ;; + ;; linux*) case `arch 2>/dev/null` in x86_64) @@ -18750,7 +18750,7 @@ fi ;; esac - ;; + ;; sunos3*|sunos4*) if test "x$cf_cv_screen" = "xcurses_5lib" then @@ -18791,20 +18791,20 @@ fi esac if test ".$ac_cv_func_initscr" != .yes ; then - cf_save_LIBS="$LIBS" - cf_term_lib="" - cf_curs_lib="" + cf_save_LIBS="$LIBS" - if test ".${cf_cv_ncurses_version:-no}" != .no - then - cf_check_list="ncurses curses cursesX" - else - cf_check_list="cursesX curses ncurses" - fi + if test ".${cf_cv_ncurses_version:-no}" != .no + then + cf_check_list="ncurses curses cursesX" + else + cf_check_list="cursesX curses ncurses" + fi - # 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:18807: checking for tgoto" >&5 + # Check for library containing tgoto. Do this before curses library + # because it may be needed to link the test-case for initscr. + if test "x$cf_term_lib" = x + then + echo "$as_me:18807: checking for tgoto" >&5 echo $ECHO_N "checking for tgoto... $ECHO_C" >&6 if test "${ac_cv_func_tgoto+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -18866,9 +18866,9 @@ if test $ac_cv_func_tgoto = yes; then cf_term_lib=predefined else - for cf_term_lib in $cf_check_list otermcap termcap tinfo termlib unknown - do - as_ac_Lib=`echo "ac_cv_lib_$cf_term_lib''_tgoto" | $as_tr_sh` + for cf_term_lib in $cf_check_list otermcap termcap tinfo termlib unknown + do + as_ac_Lib=`echo "ac_cv_lib_$cf_term_lib''_tgoto" | $as_tr_sh` echo "$as_me:18872: checking for tgoto in -l$cf_term_lib" >&5 echo $ECHO_N "checking for tgoto in -l$cf_term_lib... $ECHO_C" >&6 if eval "test \"\${$as_ac_Lib+set}\" = set"; then @@ -18922,16 +18922,20 @@ if test `eval echo '${'$as_ac_Lib'}'` = yes; then break fi - done + done fi - # Check for library containing initscr - test "$cf_term_lib" != predefined && test "$cf_term_lib" != unknown && LIBS="-l$cf_term_lib $cf_save_LIBS" - 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:18934: checking for initscr in -l$cf_curs_lib" >&5 + fi + + # Check for library containing initscr + test "$cf_term_lib" != predefined && test "$cf_term_lib" != unknown && LIBS="-l$cf_term_lib $cf_save_LIBS" + if test "x$cf_curs_lib" = x + then + for cf_curs_lib in $cf_check_list xcurses jcurses pdcurses unknown + do + as_ac_Lib=`echo "ac_cv_lib_$cf_curs_lib''_initscr" | $as_tr_sh` +echo "$as_me:18938: checking for initscr in -l$cf_curs_lib" >&5 echo $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 @@ -18939,7 +18943,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-l$cf_curs_lib $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 18942 "configure" +#line 18946 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -18958,16 +18962,16 @@ initscr (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:18961: \"$ac_link\"") >&5 +if { (eval echo "$as_me:18965: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:18964: \$? = $ac_status" >&5 + echo "$as_me:18968: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:18967: \"$ac_try\"") >&5 + { (eval echo "$as_me:18971: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:18970: \$? = $ac_status" >&5 + echo "$as_me:18974: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_Lib=yes" else @@ -18978,23 +18982,24 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:18981: result: `eval echo '${'$as_ac_Lib'}'`" >&5 +echo "$as_me:18985: 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:18988: error: no curses library found" >&5 + done + fi + test $cf_curs_lib = unknown && { { echo "$as_me:18993: 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:18994: checking if we can link with $cf_curs_lib library" >&5 + LIBS="-l$cf_curs_lib $cf_save_LIBS" + if test "$cf_term_lib" = unknown ; then + echo "$as_me:18999: checking if we can link with $cf_curs_lib library" >&5 echo $ECHO_N "checking if we can link with $cf_curs_lib library... $ECHO_C" >&6 - cat >conftest.$ac_ext <<_ACEOF -#line 18997 "configure" + cat >conftest.$ac_ext <<_ACEOF +#line 19002 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> int @@ -19006,16 +19011,16 @@ initscr() } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:19009: \"$ac_link\"") >&5 +if { (eval echo "$as_me:19014: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:19012: \$? = $ac_status" >&5 + echo "$as_me:19017: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:19015: \"$ac_try\"") >&5 + { (eval echo "$as_me:19020: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:19018: \$? = $ac_status" >&5 + echo "$as_me:19023: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_result=yes else @@ -19024,18 +19029,18 @@ cat conftest.$ac_ext >&5 cf_result=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext - echo "$as_me:19027: result: $cf_result" >&5 + echo "$as_me:19032: result: $cf_result" >&5 echo "${ECHO_T}$cf_result" >&6 - test $cf_result = no && { { echo "$as_me:19029: error: Cannot link curses library" >&5 + test $cf_result = no && { { echo "$as_me:19034: 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:19035: checking if we need both $cf_curs_lib and $cf_term_lib libraries" >&5 + elif test "$cf_curs_lib" = "$cf_term_lib" ; then + : + elif test "$cf_term_lib" != predefined ; then + echo "$as_me:19040: checking if we need both $cf_curs_lib and $cf_term_lib libraries" >&5 echo $ECHO_N "checking if we need both $cf_curs_lib and $cf_term_lib libraries... $ECHO_C" >&6 - cat >conftest.$ac_ext <<_ACEOF -#line 19038 "configure" + cat >conftest.$ac_ext <<_ACEOF +#line 19043 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> int @@ -19047,25 +19052,25 @@ initscr(); tgoto((char *)0, 0, 0); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:19050: \"$ac_link\"") >&5 +if { (eval echo "$as_me:19055: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:19053: \$? = $ac_status" >&5 + echo "$as_me:19058: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:19056: \"$ac_try\"") >&5 + { (eval echo "$as_me:19061: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:19059: \$? = $ac_status" >&5 + echo "$as_me:19064: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_result=no else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 - LIBS="-l$cf_curs_lib -l$cf_term_lib $cf_save_LIBS" - cat >conftest.$ac_ext <<_ACEOF -#line 19068 "configure" + LIBS="-l$cf_curs_lib -l$cf_term_lib $cf_save_LIBS" + cat >conftest.$ac_ext <<_ACEOF +#line 19073 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> int @@ -19077,16 +19082,16 @@ initscr() } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:19080: \"$ac_link\"") >&5 +if { (eval echo "$as_me:19085: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:19083: \$? = $ac_status" >&5 + echo "$as_me:19088: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:19086: \"$ac_try\"") >&5 + { (eval echo "$as_me:19091: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:19089: \$? = $ac_status" >&5 + echo "$as_me:19094: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_result=yes else @@ -19098,13 +19103,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:19101: result: $cf_result" >&5 + echo "$as_me:19106: result: $cf_result" >&5 echo "${ECHO_T}$cf_result" >&6 - fi + fi fi fi -echo "$as_me:19107: checking for curses performance tradeoff" >&5 +echo "$as_me:19112: 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 @@ -19112,7 +19117,7 @@ else cf_cv_curs_performance=no cat >conftest.$ac_ext <<_ACEOF -#line 19115 "configure" +#line 19120 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> @@ -19131,20 +19136,20 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:19134: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:19139: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:19137: \$? = $ac_status" >&5 + echo "$as_me:19142: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:19140: \"$ac_try\"") >&5 + { (eval echo "$as_me:19145: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:19143: \$? = $ac_status" >&5 + echo "$as_me:19148: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cat >conftest.$ac_ext <<_ACEOF -#line 19147 "configure" +#line 19152 "configure" #include "confdefs.h" #define CURS_PERFORMANCE @@ -19164,16 +19169,16 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:19167: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:19172: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:19170: \$? = $ac_status" >&5 + echo "$as_me:19175: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:19173: \"$ac_try\"") >&5 + { (eval echo "$as_me:19178: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:19176: \$? = $ac_status" >&5 + echo "$as_me:19181: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_curs_performance=yes else @@ -19188,21 +19193,21 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:19191: result: $cf_cv_curs_performance" >&5 +echo "$as_me:19196: 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:19198: checking for curses touchline function" >&5 +echo "$as_me:19203: 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 19205 "configure" +#line 19210 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> @@ -19215,23 +19220,23 @@ touchline(stdscr, 1,2,3); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:19218: \"$ac_link\"") >&5 +if { (eval echo "$as_me:19223: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:19221: \$? = $ac_status" >&5 + echo "$as_me:19226: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:19224: \"$ac_try\"") >&5 + { (eval echo "$as_me:19229: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:19227: \$? = $ac_status" >&5 + echo "$as_me:19232: \$? = $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 19234 "configure" +#line 19239 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> @@ -19244,16 +19249,16 @@ touchline(stdscr, 1,2); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:19247: \"$ac_link\"") >&5 +if { (eval echo "$as_me:19252: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:19250: \$? = $ac_status" >&5 + echo "$as_me:19255: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:19253: \"$ac_try\"") >&5 + { (eval echo "$as_me:19258: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:19256: \$? = $ac_status" >&5 + echo "$as_me:19261: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_curs_touchline=sysv else @@ -19265,7 +19270,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:19268: result: $cf_cv_curs_touchline" >&5 +echo "$as_me:19273: result: $cf_cv_curs_touchline" >&5 echo "${ECHO_T}$cf_cv_curs_touchline" >&6 case "$cf_cv_curs_touchline" in #(vi bsd) #(vi @@ -19296,7 +19301,7 @@ if test -n "$ac_tool_prefix"; then do # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. set dummy $ac_tool_prefix$ac_prog; ac_word=$2 -echo "$as_me:19299: checking for $ac_word" >&5 +echo "$as_me:19304: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_prog_NCURSES_CONFIG+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -19311,7 +19316,7 @@ for ac_dir in $ac_dummy; do test -z "$ac_dir" && ac_dir=. $as_executable_p "$ac_dir/$ac_word" || continue ac_cv_prog_NCURSES_CONFIG="$ac_tool_prefix$ac_prog" -echo "$as_me:19314: found $ac_dir/$ac_word" >&5 +echo "$as_me:19319: found $ac_dir/$ac_word" >&5 break done @@ -19319,10 +19324,10 @@ fi fi NCURSES_CONFIG=$ac_cv_prog_NCURSES_CONFIG if test -n "$NCURSES_CONFIG"; then - echo "$as_me:19322: result: $NCURSES_CONFIG" >&5 + echo "$as_me:19327: result: $NCURSES_CONFIG" >&5 echo "${ECHO_T}$NCURSES_CONFIG" >&6 else - echo "$as_me:19325: result: no" >&5 + echo "$as_me:19330: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -19335,7 +19340,7 @@ if test -z "$NCURSES_CONFIG"; then do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 -echo "$as_me:19338: checking for $ac_word" >&5 +echo "$as_me:19343: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_prog_ac_ct_NCURSES_CONFIG+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -19350,7 +19355,7 @@ for ac_dir in $ac_dummy; do test -z "$ac_dir" && ac_dir=. $as_executable_p "$ac_dir/$ac_word" || continue ac_cv_prog_ac_ct_NCURSES_CONFIG="$ac_prog" -echo "$as_me:19353: found $ac_dir/$ac_word" >&5 +echo "$as_me:19358: found $ac_dir/$ac_word" >&5 break done @@ -19358,10 +19363,10 @@ fi fi ac_ct_NCURSES_CONFIG=$ac_cv_prog_ac_ct_NCURSES_CONFIG if test -n "$ac_ct_NCURSES_CONFIG"; then - echo "$as_me:19361: result: $ac_ct_NCURSES_CONFIG" >&5 + echo "$as_me:19366: result: $ac_ct_NCURSES_CONFIG" >&5 echo "${ECHO_T}$ac_ct_NCURSES_CONFIG" >&6 else - echo "$as_me:19364: result: no" >&5 + echo "$as_me:19369: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -19379,7 +19384,7 @@ LIBS="`$NCURSES_CONFIG --libs` $LIBS" # even with config script, some packages use no-override for curses.h -echo "$as_me:19382: checking if we have identified curses headers" >&5 +echo "$as_me:19387: 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 @@ -19393,7 +19398,7 @@ for cf_header in \ curses.h do cat >conftest.$ac_ext <<_ACEOF -#line 19396 "configure" +#line 19401 "configure" #include "confdefs.h" #include <${cf_header}> int @@ -19405,16 +19410,16 @@ initscr(); tgoto("?", 0,0) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:19408: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:19413: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:19411: \$? = $ac_status" >&5 + echo "$as_me:19416: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:19414: \"$ac_try\"") >&5 + { (eval echo "$as_me:19419: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:19417: \$? = $ac_status" >&5 + echo "$as_me:19422: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_ncurses_header=$cf_header; break else @@ -19425,11 +19430,11 @@ rm -f conftest.$ac_objext conftest.$ac_ext done fi -echo "$as_me:19428: result: $cf_cv_ncurses_header" >&5 +echo "$as_me:19433: 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:19432: error: No curses header-files found" >&5 + { { echo "$as_me:19437: error: No curses header-files found" >&5 echo "$as_me: error: No curses header-files found" >&2;} { (exit 1); exit 1; }; } fi @@ -19439,23 +19444,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:19442: checking for $ac_header" >&5 +echo "$as_me:19447: 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 19448 "configure" +#line 19453 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:19452: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:19457: \"$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:19458: \$? = $ac_status" >&5 + echo "$as_me:19463: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -19474,7 +19479,7 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:19477: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:19482: 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 @@ -19527,7 +19532,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 19530 "configure" +#line 19535 "configure" #include "confdefs.h" #include <stdio.h> int @@ -19539,16 +19544,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:19542: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:19547: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:19545: \$? = $ac_status" >&5 + echo "$as_me:19550: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:19548: \"$ac_try\"") >&5 + { (eval echo "$as_me:19553: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:19551: \$? = $ac_status" >&5 + echo "$as_me:19556: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -19565,7 +19570,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}:19568: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:19573: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -19582,7 +19587,7 @@ fi } -echo "$as_me:19585: checking for $cf_ncuhdr_root header in include-path" >&5 +echo "$as_me:19590: 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 @@ -19594,7 +19599,7 @@ else do cat >conftest.$ac_ext <<_ACEOF -#line 19597 "configure" +#line 19602 "configure" #include "confdefs.h" #include <$cf_header> @@ -19618,16 +19623,16 @@ printf("old\n"); } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:19621: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:19626: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:19624: \$? = $ac_status" >&5 + echo "$as_me:19629: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:19627: \"$ac_try\"") >&5 + { (eval echo "$as_me:19632: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:19630: \$? = $ac_status" >&5 + echo "$as_me:19635: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_ncurses_h=$cf_header @@ -19642,14 +19647,14 @@ rm -f conftest.$ac_objext conftest.$ac_ext done fi -echo "$as_me:19645: result: $cf_cv_ncurses_h" >&5 +echo "$as_me:19650: 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:19652: checking for $cf_ncuhdr_root include-path" >&5 +echo "$as_me:19657: 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 @@ -19789,7 +19794,7 @@ if test -n "$cf_incdir" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 19792 "configure" +#line 19797 "configure" #include "confdefs.h" #include <stdio.h> int @@ -19801,16 +19806,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:19804: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:19809: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:19807: \$? = $ac_status" >&5 + echo "$as_me:19812: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:19810: \"$ac_try\"") >&5 + { (eval echo "$as_me:19815: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:19813: \$? = $ac_status" >&5 + echo "$as_me:19818: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -19827,7 +19832,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}:19830: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:19835: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -19848,7 +19853,7 @@ fi do cat >conftest.$ac_ext <<_ACEOF -#line 19851 "configure" +#line 19856 "configure" #include "confdefs.h" #include <$cf_header> @@ -19872,16 +19877,16 @@ printf("old\n"); } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:19875: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:19880: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:19878: \$? = $ac_status" >&5 + echo "$as_me:19883: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:19881: \"$ac_try\"") >&5 + { (eval echo "$as_me:19886: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:19884: \$? = $ac_status" >&5 + echo "$as_me:19889: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_ncurses_h2=$cf_header @@ -19902,12 +19907,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:19905: error: not found" >&5 + test "$cf_cv_ncurses_h2" = no && { { echo "$as_me:19910: error: not found" >&5 echo "$as_me: error: not found" >&2;} { (exit 1); exit 1; }; } fi -echo "$as_me:19910: result: $cf_cv_ncurses_h2" >&5 +echo "$as_me:19915: 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%/[^/]*$%%'` @@ -19940,7 +19945,7 @@ if test -n "$cf_1st_incdir" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 19943 "configure" +#line 19948 "configure" #include "confdefs.h" #include <stdio.h> int @@ -19952,16 +19957,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:19955: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:19960: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:19958: \$? = $ac_status" >&5 + echo "$as_me:19963: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:19961: \"$ac_try\"") >&5 + { (eval echo "$as_me:19966: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:19964: \$? = $ac_status" >&5 + echo "$as_me:19969: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -19978,7 +19983,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}:19981: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:19986: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -20024,7 +20029,7 @@ EOF ;; esac -echo "$as_me:20027: checking for terminfo header" >&5 +echo "$as_me:20032: 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 @@ -20042,7 +20047,7 @@ esac for cf_test in $cf_term_header "ncurses/term.h" "ncursesw/term.h" do cat >conftest.$ac_ext <<_ACEOF -#line 20045 "configure" +#line 20050 "configure" #include "confdefs.h" #include <stdio.h> #include <${cf_cv_ncurses_header:-curses.h}> @@ -20057,16 +20062,16 @@ int x = auto_left_margin } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:20060: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:20065: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:20063: \$? = $ac_status" >&5 + echo "$as_me:20068: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:20066: \"$ac_try\"") >&5 + { (eval echo "$as_me:20071: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:20069: \$? = $ac_status" >&5 + echo "$as_me:20074: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_term_header="$cf_test" @@ -20082,7 +20087,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext done fi -echo "$as_me:20085: result: $cf_cv_term_header" >&5 +echo "$as_me:20090: result: $cf_cv_term_header" >&5 echo "${ECHO_T}$cf_cv_term_header" >&6 # Set definitions to allow ifdef'ing to accommodate subdirectories @@ -20120,7 +20125,7 @@ cat >>confdefs.h <<\EOF #define NCURSES 1 EOF -echo "$as_me:20123: checking for ncurses version" >&5 +echo "$as_me:20128: 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 @@ -20146,10 +20151,10 @@ Autoconf "old" #endif EOF cf_try="$ac_cpp conftest.$ac_ext 2>&5 | grep '^Autoconf ' >conftest.out" - { (eval echo "$as_me:20149: \"$cf_try\"") >&5 + { (eval echo "$as_me:20154: \"$cf_try\"") >&5 (eval $cf_try) 2>&5 ac_status=$? - echo "$as_me:20152: \$? = $ac_status" >&5 + echo "$as_me:20157: \$? = $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%".*%%'` @@ -20159,7 +20164,7 @@ EOF else cat >conftest.$ac_ext <<_ACEOF -#line 20162 "configure" +#line 20167 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> @@ -20184,15 +20189,15 @@ int main() } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:20187: \"$ac_link\"") >&5 +if { (eval echo "$as_me:20192: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:20190: \$? = $ac_status" >&5 + echo "$as_me:20195: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:20192: \"$ac_try\"") >&5 + { (eval echo "$as_me:20197: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:20195: \$? = $ac_status" >&5 + echo "$as_me:20200: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_ncurses_version=`cat $cf_tempfile` @@ -20206,7 +20211,7 @@ fi rm -f $cf_tempfile fi -echo "$as_me:20209: result: $cf_cv_ncurses_version" >&5 +echo "$as_me:20214: result: $cf_cv_ncurses_version" >&5 echo "${ECHO_T}$cf_cv_ncurses_version" >&6 test "$cf_cv_ncurses_version" = no || cat >>confdefs.h <<\EOF @@ -20219,7 +20224,7 @@ cf_nculib_root=ncurses # to link gpm. cf_ncurses_LIBS="" cf_ncurses_SAVE="$LIBS" -echo "$as_me:20222: checking for Gpm_Open in -lgpm" >&5 +echo "$as_me:20227: 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 @@ -20227,7 +20232,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lgpm $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 20230 "configure" +#line 20235 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -20246,16 +20251,16 @@ Gpm_Open (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:20249: \"$ac_link\"") >&5 +if { (eval echo "$as_me:20254: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:20252: \$? = $ac_status" >&5 + echo "$as_me:20257: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:20255: \"$ac_try\"") >&5 + { (eval echo "$as_me:20260: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:20258: \$? = $ac_status" >&5 + echo "$as_me:20263: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_gpm_Gpm_Open=yes else @@ -20266,10 +20271,10 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:20269: result: $ac_cv_lib_gpm_Gpm_Open" >&5 +echo "$as_me:20274: 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:20272: checking for initscr in -lgpm" >&5 + echo "$as_me:20277: 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 @@ -20277,7 +20282,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lgpm $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 20280 "configure" +#line 20285 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -20296,16 +20301,16 @@ initscr (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:20299: \"$ac_link\"") >&5 +if { (eval echo "$as_me:20304: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:20302: \$? = $ac_status" >&5 + echo "$as_me:20307: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:20305: \"$ac_try\"") >&5 + { (eval echo "$as_me:20310: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:20308: \$? = $ac_status" >&5 + echo "$as_me:20313: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_gpm_initscr=yes else @@ -20316,7 +20321,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:20319: result: $ac_cv_lib_gpm_initscr" >&5 +echo "$as_me:20324: 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" @@ -20331,7 +20336,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:20334: checking for tgoto in -lmytinfo" >&5 + echo "$as_me:20339: 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 @@ -20339,7 +20344,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lmytinfo $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 20342 "configure" +#line 20347 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -20358,16 +20363,16 @@ tgoto (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:20361: \"$ac_link\"") >&5 +if { (eval echo "$as_me:20366: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:20364: \$? = $ac_status" >&5 + echo "$as_me:20369: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:20367: \"$ac_try\"") >&5 + { (eval echo "$as_me:20372: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:20370: \$? = $ac_status" >&5 + echo "$as_me:20375: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_mytinfo_tgoto=yes else @@ -20378,7 +20383,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:20381: result: $ac_cv_lib_mytinfo_tgoto" >&5 +echo "$as_me:20386: 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" @@ -20397,13 +20402,13 @@ else eval 'cf_cv_have_lib_'$cf_nculib_root'=no' cf_libdir="" - echo "$as_me:20400: checking for initscr" >&5 + echo "$as_me:20405: 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 20406 "configure" +#line 20411 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char initscr (); below. */ @@ -20434,16 +20439,16 @@ f = initscr; /* workaround for ICC 12.0.3 */ if (f == 0) return 1; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:20437: \"$ac_link\"") >&5 +if { (eval echo "$as_me:20442: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:20440: \$? = $ac_status" >&5 + echo "$as_me:20445: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:20443: \"$ac_try\"") >&5 + { (eval echo "$as_me:20448: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:20446: \$? = $ac_status" >&5 + echo "$as_me:20451: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_initscr=yes else @@ -20453,18 +20458,18 @@ ac_cv_func_initscr=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:20456: result: $ac_cv_func_initscr" >&5 +echo "$as_me:20461: 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:20463: checking for initscr in -l$cf_nculib_root" >&5 + echo "$as_me:20468: 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 20467 "configure" +#line 20472 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> int @@ -20476,25 +20481,25 @@ initscr() } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:20479: \"$ac_link\"") >&5 +if { (eval echo "$as_me:20484: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:20482: \$? = $ac_status" >&5 + echo "$as_me:20487: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:20485: \"$ac_try\"") >&5 + { (eval echo "$as_me:20490: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:20488: \$? = $ac_status" >&5 + echo "$as_me:20493: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:20490: result: yes" >&5 + echo "$as_me:20495: 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:20497: result: no" >&5 +echo "$as_me:20502: result: no" >&5 echo "${ECHO_T}no" >&6 cf_search= @@ -20584,11 +20589,11 @@ cf_search="$cf_library_path_list $cf_search" for cf_libdir in $cf_search do - echo "$as_me:20587: checking for -l$cf_nculib_root in $cf_libdir" >&5 + echo "$as_me:20592: 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 20591 "configure" +#line 20596 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> int @@ -20600,25 +20605,25 @@ initscr() } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:20603: \"$ac_link\"") >&5 +if { (eval echo "$as_me:20608: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:20606: \$? = $ac_status" >&5 + echo "$as_me:20611: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:20609: \"$ac_try\"") >&5 + { (eval echo "$as_me:20614: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:20612: \$? = $ac_status" >&5 + echo "$as_me:20617: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:20614: result: yes" >&5 + echo "$as_me:20619: 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:20621: result: no" >&5 +echo "$as_me:20626: result: no" >&5 echo "${ECHO_T}no" >&6 LIBS="$cf_save_LIBS" fi @@ -20633,7 +20638,7 @@ fi eval 'cf_found_library=$cf_cv_have_lib_'$cf_nculib_root if test $cf_found_library = no ; then - { { echo "$as_me:20636: error: Cannot link $cf_nculib_root library" >&5 + { { echo "$as_me:20641: error: Cannot link $cf_nculib_root library" >&5 echo "$as_me: error: Cannot link $cf_nculib_root library" >&2;} { (exit 1); exit 1; }; } fi @@ -20641,7 +20646,7 @@ fi fi if test -n "$cf_ncurses_LIBS" ; then - echo "$as_me:20644: checking if we can link $cf_nculib_root without $cf_ncurses_LIBS" >&5 + echo "$as_me:20649: 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 @@ -20651,7 +20656,7 @@ echo $ECHO_N "checking if we can link $cf_nculib_root without $cf_ncurses_LIBS.. fi done cat >conftest.$ac_ext <<_ACEOF -#line 20654 "configure" +#line 20659 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> int @@ -20663,23 +20668,23 @@ initscr(); mousemask(0,0); tgoto((char *)0, 0, 0); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:20666: \"$ac_link\"") >&5 +if { (eval echo "$as_me:20671: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:20669: \$? = $ac_status" >&5 + echo "$as_me:20674: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:20672: \"$ac_try\"") >&5 + { (eval echo "$as_me:20677: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:20675: \$? = $ac_status" >&5 + echo "$as_me:20680: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:20677: result: yes" >&5 + echo "$as_me:20682: result: yes" >&5 echo "${ECHO_T}yes" >&6 else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 -echo "$as_me:20682: result: no" >&5 +echo "$as_me:20687: result: no" >&5 echo "${ECHO_T}no" >&6 LIBS="$cf_ncurses_SAVE" fi @@ -20697,7 +20702,7 @@ fi ;; ncursesw) -echo "$as_me:20700: checking for multibyte character support" >&5 +echo "$as_me:20705: 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 @@ -20705,7 +20710,7 @@ else cf_save_LIBS="$LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 20708 "configure" +#line 20713 "configure" #include "confdefs.h" #include <stdlib.h> @@ -20718,16 +20723,16 @@ putwc(0,0); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:20721: \"$ac_link\"") >&5 +if { (eval echo "$as_me:20726: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:20724: \$? = $ac_status" >&5 + echo "$as_me:20729: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:20727: \"$ac_try\"") >&5 + { (eval echo "$as_me:20732: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:20730: \$? = $ac_status" >&5 + echo "$as_me:20735: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_utf8_lib=yes else @@ -20739,12 +20744,12 @@ cat conftest.$ac_ext >&5 cf_cv_header_path_utf8= cf_cv_library_path_utf8= -echo "${as_me:-configure}:20742: testing Starting FIND_LINKAGE(utf8,) ..." 1>&5 +echo "${as_me:-configure}:20747: testing Starting FIND_LINKAGE(utf8,) ..." 1>&5 cf_save_LIBS="$LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 20747 "configure" +#line 20752 "configure" #include "confdefs.h" #include <libutf8.h> @@ -20757,16 +20762,16 @@ putwc(0,0); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:20760: \"$ac_link\"") >&5 +if { (eval echo "$as_me:20765: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:20763: \$? = $ac_status" >&5 + echo "$as_me:20768: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:20766: \"$ac_try\"") >&5 + { (eval echo "$as_me:20771: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:20769: \$? = $ac_status" >&5 + echo "$as_me:20774: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_find_linkage_utf8=yes @@ -20780,7 +20785,7 @@ cat conftest.$ac_ext >&5 LIBS="-lutf8 $cf_save_LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 20783 "configure" +#line 20788 "configure" #include "confdefs.h" #include <libutf8.h> @@ -20793,16 +20798,16 @@ putwc(0,0); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:20796: \"$ac_link\"") >&5 +if { (eval echo "$as_me:20801: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:20799: \$? = $ac_status" >&5 + echo "$as_me:20804: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:20802: \"$ac_try\"") >&5 + { (eval echo "$as_me:20807: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:20805: \$? = $ac_status" >&5 + echo "$as_me:20810: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_find_linkage_utf8=yes @@ -20819,9 +20824,9 @@ cat conftest.$ac_ext >&5 test -n "$verbose" && echo " find linkage for utf8 library" 1>&6 -echo "${as_me:-configure}:20822: testing find linkage for utf8 library ..." 1>&5 +echo "${as_me:-configure}:20827: testing find linkage for utf8 library ..." 1>&5 -echo "${as_me:-configure}:20824: testing Searching for headers in FIND_LINKAGE(utf8,) ..." 1>&5 +echo "${as_me:-configure}:20829: testing Searching for headers in FIND_LINKAGE(utf8,) ..." 1>&5 cf_save_CPPFLAGS="$CPPFLAGS" cf_test_CPPFLAGS="$CPPFLAGS" @@ -20934,11 +20939,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}:20937: testing ... testing $cf_cv_header_path_utf8 ..." 1>&5 +echo "${as_me:-configure}:20942: 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 20941 "configure" +#line 20946 "configure" #include "confdefs.h" #include <libutf8.h> @@ -20951,21 +20956,21 @@ putwc(0,0); } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:20954: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:20959: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:20957: \$? = $ac_status" >&5 + echo "$as_me:20962: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:20960: \"$ac_try\"") >&5 + { (eval echo "$as_me:20965: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:20963: \$? = $ac_status" >&5 + echo "$as_me:20968: \$? = $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}:20968: testing ... found utf8 headers in $cf_cv_header_path_utf8 ..." 1>&5 +echo "${as_me:-configure}:20973: testing ... found utf8 headers in $cf_cv_header_path_utf8 ..." 1>&5 cf_cv_find_linkage_utf8=maybe cf_test_CPPFLAGS="$CPPFLAGS" @@ -20983,7 +20988,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "$cf_cv_find_linkage_utf8" = maybe ; then -echo "${as_me:-configure}:20986: testing Searching for utf8 library in FIND_LINKAGE(utf8,) ..." 1>&5 +echo "${as_me:-configure}:20991: testing Searching for utf8 library in FIND_LINKAGE(utf8,) ..." 1>&5 cf_save_LIBS="$LIBS" cf_save_LDFLAGS="$LDFLAGS" @@ -21080,13 +21085,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}:21083: testing ... testing $cf_cv_library_path_utf8 ..." 1>&5 +echo "${as_me:-configure}:21088: 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 21089 "configure" +#line 21094 "configure" #include "confdefs.h" #include <libutf8.h> @@ -21099,21 +21104,21 @@ putwc(0,0); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:21102: \"$ac_link\"") >&5 +if { (eval echo "$as_me:21107: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:21105: \$? = $ac_status" >&5 + echo "$as_me:21110: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:21108: \"$ac_try\"") >&5 + { (eval echo "$as_me:21113: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:21111: \$? = $ac_status" >&5 + echo "$as_me:21116: \$? = $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}:21116: testing ... found utf8 library in $cf_cv_library_path_utf8 ..." 1>&5 +echo "${as_me:-configure}:21121: testing ... found utf8 library in $cf_cv_library_path_utf8 ..." 1>&5 cf_cv_find_linkage_utf8=yes cf_cv_library_file_utf8="-lutf8" @@ -21155,7 +21160,7 @@ fi fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:21158: result: $cf_cv_utf8_lib" >&5 +echo "$as_me:21163: 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 @@ -21190,7 +21195,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 21193 "configure" +#line 21198 "configure" #include "confdefs.h" #include <stdio.h> int @@ -21202,16 +21207,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:21205: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:21210: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:21208: \$? = $ac_status" >&5 + echo "$as_me:21213: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:21211: \"$ac_try\"") >&5 + { (eval echo "$as_me:21216: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:21214: \$? = $ac_status" >&5 + echo "$as_me:21219: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -21228,7 +21233,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}:21231: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:21236: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -21262,7 +21267,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}:21265: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:21270: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -21282,7 +21287,7 @@ if test -n "$ac_tool_prefix"; then do # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. set dummy $ac_tool_prefix$ac_prog; ac_word=$2 -echo "$as_me:21285: checking for $ac_word" >&5 +echo "$as_me:21290: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_prog_NCURSES_CONFIG+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -21297,7 +21302,7 @@ for ac_dir in $ac_dummy; do test -z "$ac_dir" && ac_dir=. $as_executable_p "$ac_dir/$ac_word" || continue ac_cv_prog_NCURSES_CONFIG="$ac_tool_prefix$ac_prog" -echo "$as_me:21300: found $ac_dir/$ac_word" >&5 +echo "$as_me:21305: found $ac_dir/$ac_word" >&5 break done @@ -21305,10 +21310,10 @@ fi fi NCURSES_CONFIG=$ac_cv_prog_NCURSES_CONFIG if test -n "$NCURSES_CONFIG"; then - echo "$as_me:21308: result: $NCURSES_CONFIG" >&5 + echo "$as_me:21313: result: $NCURSES_CONFIG" >&5 echo "${ECHO_T}$NCURSES_CONFIG" >&6 else - echo "$as_me:21311: result: no" >&5 + echo "$as_me:21316: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -21321,7 +21326,7 @@ if test -z "$NCURSES_CONFIG"; then do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 -echo "$as_me:21324: checking for $ac_word" >&5 +echo "$as_me:21329: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_prog_ac_ct_NCURSES_CONFIG+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -21336,7 +21341,7 @@ for ac_dir in $ac_dummy; do test -z "$ac_dir" && ac_dir=. $as_executable_p "$ac_dir/$ac_word" || continue ac_cv_prog_ac_ct_NCURSES_CONFIG="$ac_prog" -echo "$as_me:21339: found $ac_dir/$ac_word" >&5 +echo "$as_me:21344: found $ac_dir/$ac_word" >&5 break done @@ -21344,10 +21349,10 @@ fi fi ac_ct_NCURSES_CONFIG=$ac_cv_prog_ac_ct_NCURSES_CONFIG if test -n "$ac_ct_NCURSES_CONFIG"; then - echo "$as_me:21347: result: $ac_ct_NCURSES_CONFIG" >&5 + echo "$as_me:21352: result: $ac_ct_NCURSES_CONFIG" >&5 echo "${ECHO_T}$ac_ct_NCURSES_CONFIG" >&6 else - echo "$as_me:21350: result: no" >&5 + echo "$as_me:21355: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -21365,7 +21370,7 @@ LIBS="`$NCURSES_CONFIG --libs` $LIBS" # even with config script, some packages use no-override for curses.h -echo "$as_me:21368: checking if we have identified curses headers" >&5 +echo "$as_me:21373: 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 @@ -21379,7 +21384,7 @@ for cf_header in \ curses.h do cat >conftest.$ac_ext <<_ACEOF -#line 21382 "configure" +#line 21387 "configure" #include "confdefs.h" #include <${cf_header}> int @@ -21391,16 +21396,16 @@ initscr(); tgoto("?", 0,0) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:21394: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:21399: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:21397: \$? = $ac_status" >&5 + echo "$as_me:21402: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:21400: \"$ac_try\"") >&5 + { (eval echo "$as_me:21405: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:21403: \$? = $ac_status" >&5 + echo "$as_me:21408: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_ncurses_header=$cf_header; break else @@ -21411,11 +21416,11 @@ rm -f conftest.$ac_objext conftest.$ac_ext done fi -echo "$as_me:21414: result: $cf_cv_ncurses_header" >&5 +echo "$as_me:21419: 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:21418: error: No curses header-files found" >&5 + { { echo "$as_me:21423: error: No curses header-files found" >&5 echo "$as_me: error: No curses header-files found" >&2;} { (exit 1); exit 1; }; } fi @@ -21425,23 +21430,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:21428: checking for $ac_header" >&5 +echo "$as_me:21433: 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 21434 "configure" +#line 21439 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:21438: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:21443: \"$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:21444: \$? = $ac_status" >&5 + echo "$as_me:21449: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -21460,7 +21465,7 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:21463: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:21468: 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 @@ -21513,7 +21518,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 21516 "configure" +#line 21521 "configure" #include "confdefs.h" #include <stdio.h> int @@ -21525,16 +21530,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:21528: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:21533: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:21531: \$? = $ac_status" >&5 + echo "$as_me:21536: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:21534: \"$ac_try\"") >&5 + { (eval echo "$as_me:21539: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:21537: \$? = $ac_status" >&5 + echo "$as_me:21542: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -21551,7 +21556,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}:21554: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:21559: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -21568,7 +21573,7 @@ fi } -echo "$as_me:21571: checking for $cf_ncuhdr_root header in include-path" >&5 +echo "$as_me:21576: 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 @@ -21580,7 +21585,7 @@ else do cat >conftest.$ac_ext <<_ACEOF -#line 21583 "configure" +#line 21588 "configure" #include "confdefs.h" #define _XOPEN_SOURCE_EXTENDED @@ -21612,16 +21617,16 @@ printf("old\n"); } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:21615: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:21620: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:21618: \$? = $ac_status" >&5 + echo "$as_me:21623: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:21621: \"$ac_try\"") >&5 + { (eval echo "$as_me:21626: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:21624: \$? = $ac_status" >&5 + echo "$as_me:21629: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_ncurses_h=$cf_header @@ -21636,14 +21641,14 @@ rm -f conftest.$ac_objext conftest.$ac_ext done fi -echo "$as_me:21639: result: $cf_cv_ncurses_h" >&5 +echo "$as_me:21644: 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:21646: checking for $cf_ncuhdr_root include-path" >&5 +echo "$as_me:21651: 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 @@ -21783,7 +21788,7 @@ if test -n "$cf_incdir" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 21786 "configure" +#line 21791 "configure" #include "confdefs.h" #include <stdio.h> int @@ -21795,16 +21800,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:21798: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:21803: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:21801: \$? = $ac_status" >&5 + echo "$as_me:21806: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:21804: \"$ac_try\"") >&5 + { (eval echo "$as_me:21809: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:21807: \$? = $ac_status" >&5 + echo "$as_me:21812: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -21821,7 +21826,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}:21824: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:21829: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -21842,7 +21847,7 @@ fi do cat >conftest.$ac_ext <<_ACEOF -#line 21845 "configure" +#line 21850 "configure" #include "confdefs.h" #include <$cf_header> @@ -21866,16 +21871,16 @@ printf("old\n"); } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:21869: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:21874: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:21872: \$? = $ac_status" >&5 + echo "$as_me:21877: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:21875: \"$ac_try\"") >&5 + { (eval echo "$as_me:21880: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:21878: \$? = $ac_status" >&5 + echo "$as_me:21883: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_ncurses_h2=$cf_header @@ -21896,12 +21901,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:21899: error: not found" >&5 + test "$cf_cv_ncurses_h2" = no && { { echo "$as_me:21904: error: not found" >&5 echo "$as_me: error: not found" >&2;} { (exit 1); exit 1; }; } fi -echo "$as_me:21904: result: $cf_cv_ncurses_h2" >&5 +echo "$as_me:21909: 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%/[^/]*$%%'` @@ -21934,7 +21939,7 @@ if test -n "$cf_1st_incdir" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 21937 "configure" +#line 21942 "configure" #include "confdefs.h" #include <stdio.h> int @@ -21946,16 +21951,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:21949: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:21954: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:21952: \$? = $ac_status" >&5 + echo "$as_me:21957: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:21955: \"$ac_try\"") >&5 + { (eval echo "$as_me:21960: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:21958: \$? = $ac_status" >&5 + echo "$as_me:21963: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -21972,7 +21977,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}:21975: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:21980: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -22018,7 +22023,7 @@ EOF ;; esac -echo "$as_me:22021: checking for terminfo header" >&5 +echo "$as_me:22026: 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 @@ -22036,7 +22041,7 @@ esac for cf_test in $cf_term_header "ncurses/term.h" "ncursesw/term.h" do cat >conftest.$ac_ext <<_ACEOF -#line 22039 "configure" +#line 22044 "configure" #include "confdefs.h" #include <stdio.h> #include <${cf_cv_ncurses_header:-curses.h}> @@ -22051,16 +22056,16 @@ int x = auto_left_margin } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:22054: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:22059: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:22057: \$? = $ac_status" >&5 + echo "$as_me:22062: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:22060: \"$ac_try\"") >&5 + { (eval echo "$as_me:22065: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:22063: \$? = $ac_status" >&5 + echo "$as_me:22068: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_term_header="$cf_test" @@ -22076,7 +22081,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext done fi -echo "$as_me:22079: result: $cf_cv_term_header" >&5 +echo "$as_me:22084: result: $cf_cv_term_header" >&5 echo "${ECHO_T}$cf_cv_term_header" >&6 # Set definitions to allow ifdef'ing to accommodate subdirectories @@ -22114,7 +22119,7 @@ cat >>confdefs.h <<\EOF #define NCURSES 1 EOF -echo "$as_me:22117: checking for ncurses version" >&5 +echo "$as_me:22122: 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 @@ -22140,10 +22145,10 @@ Autoconf "old" #endif EOF cf_try="$ac_cpp conftest.$ac_ext 2>&5 | grep '^Autoconf ' >conftest.out" - { (eval echo "$as_me:22143: \"$cf_try\"") >&5 + { (eval echo "$as_me:22148: \"$cf_try\"") >&5 (eval $cf_try) 2>&5 ac_status=$? - echo "$as_me:22146: \$? = $ac_status" >&5 + echo "$as_me:22151: \$? = $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%".*%%'` @@ -22153,7 +22158,7 @@ EOF else cat >conftest.$ac_ext <<_ACEOF -#line 22156 "configure" +#line 22161 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> @@ -22178,15 +22183,15 @@ int main() } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:22181: \"$ac_link\"") >&5 +if { (eval echo "$as_me:22186: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:22184: \$? = $ac_status" >&5 + echo "$as_me:22189: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:22186: \"$ac_try\"") >&5 + { (eval echo "$as_me:22191: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:22189: \$? = $ac_status" >&5 + echo "$as_me:22194: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_ncurses_version=`cat $cf_tempfile` @@ -22200,7 +22205,7 @@ fi rm -f $cf_tempfile fi -echo "$as_me:22203: result: $cf_cv_ncurses_version" >&5 +echo "$as_me:22208: result: $cf_cv_ncurses_version" >&5 echo "${ECHO_T}$cf_cv_ncurses_version" >&6 test "$cf_cv_ncurses_version" = no || cat >>confdefs.h <<\EOF @@ -22213,7 +22218,7 @@ cf_nculib_root=ncursesw # to link gpm. cf_ncurses_LIBS="" cf_ncurses_SAVE="$LIBS" -echo "$as_me:22216: checking for Gpm_Open in -lgpm" >&5 +echo "$as_me:22221: 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 @@ -22221,7 +22226,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lgpm $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 22224 "configure" +#line 22229 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -22240,16 +22245,16 @@ Gpm_Open (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:22243: \"$ac_link\"") >&5 +if { (eval echo "$as_me:22248: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:22246: \$? = $ac_status" >&5 + echo "$as_me:22251: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:22249: \"$ac_try\"") >&5 + { (eval echo "$as_me:22254: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:22252: \$? = $ac_status" >&5 + echo "$as_me:22257: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_gpm_Gpm_Open=yes else @@ -22260,10 +22265,10 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:22263: result: $ac_cv_lib_gpm_Gpm_Open" >&5 +echo "$as_me:22268: 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:22266: checking for initscr in -lgpm" >&5 + echo "$as_me:22271: 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 @@ -22271,7 +22276,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lgpm $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 22274 "configure" +#line 22279 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -22290,16 +22295,16 @@ initscr (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:22293: \"$ac_link\"") >&5 +if { (eval echo "$as_me:22298: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:22296: \$? = $ac_status" >&5 + echo "$as_me:22301: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:22299: \"$ac_try\"") >&5 + { (eval echo "$as_me:22304: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:22302: \$? = $ac_status" >&5 + echo "$as_me:22307: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_gpm_initscr=yes else @@ -22310,7 +22315,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:22313: result: $ac_cv_lib_gpm_initscr" >&5 +echo "$as_me:22318: 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" @@ -22325,7 +22330,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:22328: checking for tgoto in -lmytinfo" >&5 + echo "$as_me:22333: 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 @@ -22333,7 +22338,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lmytinfo $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 22336 "configure" +#line 22341 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -22352,16 +22357,16 @@ tgoto (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:22355: \"$ac_link\"") >&5 +if { (eval echo "$as_me:22360: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:22358: \$? = $ac_status" >&5 + echo "$as_me:22363: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:22361: \"$ac_try\"") >&5 + { (eval echo "$as_me:22366: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:22364: \$? = $ac_status" >&5 + echo "$as_me:22369: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_mytinfo_tgoto=yes else @@ -22372,7 +22377,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:22375: result: $ac_cv_lib_mytinfo_tgoto" >&5 +echo "$as_me:22380: 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" @@ -22391,13 +22396,13 @@ else eval 'cf_cv_have_lib_'$cf_nculib_root'=no' cf_libdir="" - echo "$as_me:22394: checking for initscr" >&5 + echo "$as_me:22399: 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 22400 "configure" +#line 22405 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char initscr (); below. */ @@ -22428,16 +22433,16 @@ f = initscr; /* workaround for ICC 12.0.3 */ if (f == 0) return 1; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:22431: \"$ac_link\"") >&5 +if { (eval echo "$as_me:22436: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:22434: \$? = $ac_status" >&5 + echo "$as_me:22439: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:22437: \"$ac_try\"") >&5 + { (eval echo "$as_me:22442: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:22440: \$? = $ac_status" >&5 + echo "$as_me:22445: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_initscr=yes else @@ -22447,18 +22452,18 @@ ac_cv_func_initscr=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:22450: result: $ac_cv_func_initscr" >&5 +echo "$as_me:22455: 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:22457: checking for initscr in -l$cf_nculib_root" >&5 + echo "$as_me:22462: 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 22461 "configure" +#line 22466 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> int @@ -22470,25 +22475,25 @@ initscr() } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:22473: \"$ac_link\"") >&5 +if { (eval echo "$as_me:22478: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:22476: \$? = $ac_status" >&5 + echo "$as_me:22481: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:22479: \"$ac_try\"") >&5 + { (eval echo "$as_me:22484: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:22482: \$? = $ac_status" >&5 + echo "$as_me:22487: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:22484: result: yes" >&5 + echo "$as_me:22489: 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:22491: result: no" >&5 +echo "$as_me:22496: result: no" >&5 echo "${ECHO_T}no" >&6 cf_search= @@ -22578,11 +22583,11 @@ cf_search="$cf_library_path_list $cf_search" for cf_libdir in $cf_search do - echo "$as_me:22581: checking for -l$cf_nculib_root in $cf_libdir" >&5 + echo "$as_me:22586: 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 22585 "configure" +#line 22590 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> int @@ -22594,25 +22599,25 @@ initscr() } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:22597: \"$ac_link\"") >&5 +if { (eval echo "$as_me:22602: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:22600: \$? = $ac_status" >&5 + echo "$as_me:22605: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:22603: \"$ac_try\"") >&5 + { (eval echo "$as_me:22608: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:22606: \$? = $ac_status" >&5 + echo "$as_me:22611: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:22608: result: yes" >&5 + echo "$as_me:22613: 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:22615: result: no" >&5 +echo "$as_me:22620: result: no" >&5 echo "${ECHO_T}no" >&6 LIBS="$cf_save_LIBS" fi @@ -22627,7 +22632,7 @@ fi eval 'cf_found_library=$cf_cv_have_lib_'$cf_nculib_root if test $cf_found_library = no ; then - { { echo "$as_me:22630: error: Cannot link $cf_nculib_root library" >&5 + { { echo "$as_me:22635: error: Cannot link $cf_nculib_root library" >&5 echo "$as_me: error: Cannot link $cf_nculib_root library" >&2;} { (exit 1); exit 1; }; } fi @@ -22635,7 +22640,7 @@ fi fi if test -n "$cf_ncurses_LIBS" ; then - echo "$as_me:22638: checking if we can link $cf_nculib_root without $cf_ncurses_LIBS" >&5 + echo "$as_me:22643: 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 @@ -22645,7 +22650,7 @@ echo $ECHO_N "checking if we can link $cf_nculib_root without $cf_ncurses_LIBS.. fi done cat >conftest.$ac_ext <<_ACEOF -#line 22648 "configure" +#line 22653 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> int @@ -22657,23 +22662,23 @@ initscr(); mousemask(0,0); tgoto((char *)0, 0, 0); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:22660: \"$ac_link\"") >&5 +if { (eval echo "$as_me:22665: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:22663: \$? = $ac_status" >&5 + echo "$as_me:22668: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:22666: \"$ac_try\"") >&5 + { (eval echo "$as_me:22671: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:22669: \$? = $ac_status" >&5 + echo "$as_me:22674: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:22671: result: yes" >&5 + echo "$as_me:22676: result: yes" >&5 echo "${ECHO_T}yes" >&6 else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 -echo "$as_me:22676: result: no" >&5 +echo "$as_me:22681: result: no" >&5 echo "${ECHO_T}no" >&6 LIBS="$cf_ncurses_SAVE" fi @@ -22696,7 +22701,7 @@ pdcurses) ;; slang) -echo "$as_me:22699: checking for slang header file" >&5 +echo "$as_me:22704: 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 @@ -22704,7 +22709,7 @@ else cf_cv_slang_header=no cat >conftest.$ac_ext <<_ACEOF -#line 22707 "configure" +#line 22712 "configure" #include "confdefs.h" #include <slang.h> int @@ -22716,16 +22721,16 @@ printf("%s\n", SLANG_VERSION) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:22719: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:22724: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:22722: \$? = $ac_status" >&5 + echo "$as_me:22727: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:22725: \"$ac_try\"") >&5 + { (eval echo "$as_me:22730: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:22728: \$? = $ac_status" >&5 + echo "$as_me:22733: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_slang_header=predefined else @@ -22852,7 +22857,7 @@ cf_search="$cf_search $cf_header_path_list" fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:22855: result: $cf_cv_slang_header" >&5 +echo "$as_me:22860: result: $cf_cv_slang_header" >&5 echo "${ECHO_T}$cf_cv_slang_header" >&6 if test "x$cf_cv_slang_header" != xno @@ -22893,7 +22898,7 @@ if test -n "$cf_incdir" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 22896 "configure" +#line 22901 "configure" #include "confdefs.h" #include <stdio.h> int @@ -22905,16 +22910,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:22908: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:22913: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:22911: \$? = $ac_status" >&5 + echo "$as_me:22916: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:22914: \"$ac_try\"") >&5 + { (eval echo "$as_me:22919: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:22917: \$? = $ac_status" >&5 + echo "$as_me:22922: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -22931,7 +22936,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}:22934: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:22939: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -22961,7 +22966,7 @@ else cf_cv_termlib=none cat >conftest.$ac_ext <<_ACEOF -#line 22964 "configure" +#line 22969 "configure" #include "confdefs.h" int @@ -22973,19 +22978,19 @@ char *x=(char*)tgoto("",0,0) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:22976: \"$ac_link\"") >&5 +if { (eval echo "$as_me:22981: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:22979: \$? = $ac_status" >&5 + echo "$as_me:22984: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:22982: \"$ac_try\"") >&5 + { (eval echo "$as_me:22987: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:22985: \$? = $ac_status" >&5 + echo "$as_me:22990: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cat >conftest.$ac_ext <<_ACEOF -#line 22988 "configure" +#line 22993 "configure" #include "confdefs.h" int @@ -22997,16 +23002,16 @@ int x=tigetstr("") } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:23000: \"$ac_link\"") >&5 +if { (eval echo "$as_me:23005: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:23003: \$? = $ac_status" >&5 + echo "$as_me:23008: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:23006: \"$ac_try\"") >&5 + { (eval echo "$as_me:23011: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23009: \$? = $ac_status" >&5 + echo "$as_me:23014: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_termlib=terminfo else @@ -23017,7 +23022,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}:23020: testing using functions in predefined $cf_cv_termlib LIBS ..." 1>&5 +echo "${as_me:-configure}:23025: testing using functions in predefined $cf_cv_termlib LIBS ..." 1>&5 else echo "$as_me: failed program was:" >&5 @@ -23032,10 +23037,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:23035: checking for $cf_func in -l$cf_lib" >&5 + echo "$as_me:23040: 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 23038 "configure" +#line 23043 "configure" #include "confdefs.h" int @@ -23047,16 +23052,16 @@ int x=$cf_func("") } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:23050: \"$ac_link\"") >&5 +if { (eval echo "$as_me:23055: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:23053: \$? = $ac_status" >&5 + echo "$as_me:23058: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:23056: \"$ac_try\"") >&5 + { (eval echo "$as_me:23061: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23059: \$? = $ac_status" >&5 + echo "$as_me:23064: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_result=yes else @@ -23065,7 +23070,7 @@ cat conftest.$ac_ext >&5 cf_result=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext - echo "$as_me:23068: result: $cf_result" >&5 + echo "$as_me:23073: result: $cf_result" >&5 echo "${ECHO_T}$cf_result" >&6 if test "$cf_result" = yes ; then if test "$cf_func" = tigetstr ; then @@ -23082,7 +23087,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:23085: checking for initscr in -lcurses" >&5 + echo "$as_me:23090: 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 @@ -23090,7 +23095,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lcurses $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 23093 "configure" +#line 23098 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -23109,16 +23114,16 @@ initscr (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:23112: \"$ac_link\"") >&5 +if { (eval echo "$as_me:23117: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:23115: \$? = $ac_status" >&5 + echo "$as_me:23120: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:23118: \"$ac_try\"") >&5 + { (eval echo "$as_me:23123: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23121: \$? = $ac_status" >&5 + echo "$as_me:23126: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_curses_initscr=yes else @@ -23129,13 +23134,13 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:23132: result: $ac_cv_lib_curses_initscr" >&5 +echo "$as_me:23137: 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:23138: checking for tgoto in -ltermcap" >&5 + echo "$as_me:23143: 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 @@ -23143,7 +23148,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-ltermcap $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 23146 "configure" +#line 23151 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -23162,16 +23167,16 @@ tgoto (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:23165: \"$ac_link\"") >&5 +if { (eval echo "$as_me:23170: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:23168: \$? = $ac_status" >&5 + echo "$as_me:23173: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:23171: \"$ac_try\"") >&5 + { (eval echo "$as_me:23176: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23174: \$? = $ac_status" >&5 + echo "$as_me:23179: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_termcap_tgoto=yes else @@ -23182,7 +23187,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:23185: result: $ac_cv_lib_termcap_tgoto" >&5 +echo "$as_me:23190: 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 @@ -23193,20 +23198,20 @@ fi fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext if test "$cf_cv_termlib" = none; then - { echo "$as_me:23196: WARNING: Cannot find -ltermlib, -lcurses, or -ltermcap" >&5 + { echo "$as_me:23201: 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:23203: checking for acos" >&5 +echo "$as_me:23208: 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 23209 "configure" +#line 23214 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char acos (); below. */ @@ -23237,16 +23242,16 @@ f = acos; /* workaround for ICC 12.0.3 */ if (f == 0) return 1; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:23240: \"$ac_link\"") >&5 +if { (eval echo "$as_me:23245: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:23243: \$? = $ac_status" >&5 + echo "$as_me:23248: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:23246: \"$ac_try\"") >&5 + { (eval echo "$as_me:23251: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23249: \$? = $ac_status" >&5 + echo "$as_me:23254: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_acos=yes else @@ -23256,13 +23261,13 @@ ac_cv_func_acos=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:23259: result: $ac_cv_func_acos" >&5 +echo "$as_me:23264: 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:23265: checking for acos in -lm" >&5 +echo "$as_me:23270: 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 @@ -23270,7 +23275,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lm $LIBS $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 23273 "configure" +#line 23278 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -23289,16 +23294,16 @@ acos (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:23292: \"$ac_link\"") >&5 +if { (eval echo "$as_me:23297: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:23295: \$? = $ac_status" >&5 + echo "$as_me:23300: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:23298: \"$ac_try\"") >&5 + { (eval echo "$as_me:23303: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23301: \$? = $ac_status" >&5 + echo "$as_me:23306: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_m_acos=yes else @@ -23309,7 +23314,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:23312: result: $ac_cv_lib_m_acos" >&5 +echo "$as_me:23317: 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 @@ -23335,13 +23340,13 @@ os2*) eval 'cf_cv_have_lib_'video'=no' cf_libdir="" - echo "$as_me:23338: checking for v_init" >&5 + echo "$as_me:23343: 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 23344 "configure" +#line 23349 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char v_init (); below. */ @@ -23372,16 +23377,16 @@ f = v_init; /* workaround for ICC 12.0.3 */ if (f == 0) return 1; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:23375: \"$ac_link\"") >&5 +if { (eval echo "$as_me:23380: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:23378: \$? = $ac_status" >&5 + echo "$as_me:23383: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:23381: \"$ac_try\"") >&5 + { (eval echo "$as_me:23386: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23384: \$? = $ac_status" >&5 + echo "$as_me:23389: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_v_init=yes else @@ -23391,18 +23396,18 @@ ac_cv_func_v_init=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:23394: result: $ac_cv_func_v_init" >&5 +echo "$as_me:23399: 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:23401: checking for v_init in -lvideo" >&5 + echo "$as_me:23406: 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 23405 "configure" +#line 23410 "configure" #include "confdefs.h" #include <sys/video.h> int @@ -23414,25 +23419,25 @@ v_init() } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:23417: \"$ac_link\"") >&5 +if { (eval echo "$as_me:23422: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:23420: \$? = $ac_status" >&5 + echo "$as_me:23425: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:23423: \"$ac_try\"") >&5 + { (eval echo "$as_me:23428: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23426: \$? = $ac_status" >&5 + echo "$as_me:23431: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:23428: result: yes" >&5 + echo "$as_me:23433: 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:23435: result: no" >&5 +echo "$as_me:23440: result: no" >&5 echo "${ECHO_T}no" >&6 cf_search= @@ -23522,11 +23527,11 @@ cf_search="$cf_library_path_list $cf_search" for cf_libdir in $cf_search do - echo "$as_me:23525: checking for -lvideo in $cf_libdir" >&5 + echo "$as_me:23530: 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 23529 "configure" +#line 23534 "configure" #include "confdefs.h" #include <sys/video.h> int @@ -23538,25 +23543,25 @@ v_init() } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:23541: \"$ac_link\"") >&5 +if { (eval echo "$as_me:23546: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:23544: \$? = $ac_status" >&5 + echo "$as_me:23549: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:23547: \"$ac_try\"") >&5 + { (eval echo "$as_me:23552: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23550: \$? = $ac_status" >&5 + echo "$as_me:23555: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:23552: result: yes" >&5 + echo "$as_me:23557: 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:23559: result: no" >&5 +echo "$as_me:23564: result: no" >&5 echo "${ECHO_T}no" >&6 LIBS="$cf_save_LIBS" fi @@ -23571,7 +23576,7 @@ fi eval 'cf_found_library=$cf_cv_have_lib_'video if test $cf_found_library = no ; then - { { echo "$as_me:23574: error: Cannot link video library" >&5 + { { echo "$as_me:23579: error: Cannot link video library" >&5 echo "$as_me: error: Cannot link video library" >&2;} { (exit 1); exit 1; }; } fi @@ -23581,13 +23586,13 @@ esac eval 'cf_cv_have_lib_'slang'=no' cf_libdir="" - echo "$as_me:23584: checking for SLtt_get_screen_size" >&5 + echo "$as_me:23589: 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 23590 "configure" +#line 23595 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char SLtt_get_screen_size (); below. */ @@ -23618,16 +23623,16 @@ f = SLtt_get_screen_size; /* workaround for ICC 12.0.3 */ if (f == 0) return 1; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:23621: \"$ac_link\"") >&5 +if { (eval echo "$as_me:23626: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:23624: \$? = $ac_status" >&5 + echo "$as_me:23629: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:23627: \"$ac_try\"") >&5 + { (eval echo "$as_me:23632: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23630: \$? = $ac_status" >&5 + echo "$as_me:23635: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_SLtt_get_screen_size=yes else @@ -23637,18 +23642,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:23640: result: $ac_cv_func_SLtt_get_screen_size" >&5 +echo "$as_me:23645: 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:23647: checking for SLtt_get_screen_size in -lslang" >&5 + echo "$as_me:23652: 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 23651 "configure" +#line 23656 "configure" #include "confdefs.h" #include <slang.h> int @@ -23660,25 +23665,25 @@ SLtt_get_screen_size() } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:23663: \"$ac_link\"") >&5 +if { (eval echo "$as_me:23668: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:23666: \$? = $ac_status" >&5 + echo "$as_me:23671: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:23669: \"$ac_try\"") >&5 + { (eval echo "$as_me:23674: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23672: \$? = $ac_status" >&5 + echo "$as_me:23677: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:23674: result: yes" >&5 + echo "$as_me:23679: 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:23681: result: no" >&5 +echo "$as_me:23686: result: no" >&5 echo "${ECHO_T}no" >&6 cf_search= @@ -23768,11 +23773,11 @@ cf_search="$cf_library_path_list $cf_search" for cf_libdir in $cf_search do - echo "$as_me:23771: checking for -lslang in $cf_libdir" >&5 + echo "$as_me:23776: 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 23775 "configure" +#line 23780 "configure" #include "confdefs.h" #include <slang.h> int @@ -23784,25 +23789,25 @@ SLtt_get_screen_size() } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:23787: \"$ac_link\"") >&5 +if { (eval echo "$as_me:23792: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:23790: \$? = $ac_status" >&5 + echo "$as_me:23795: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:23793: \"$ac_try\"") >&5 + { (eval echo "$as_me:23798: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23796: \$? = $ac_status" >&5 + echo "$as_me:23801: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:23798: result: yes" >&5 + echo "$as_me:23803: 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:23805: result: no" >&5 +echo "$as_me:23810: result: no" >&5 echo "${ECHO_T}no" >&6 LIBS="$cf_save_LIBS" fi @@ -23817,13 +23822,13 @@ fi eval 'cf_found_library=$cf_cv_have_lib_'slang if test $cf_found_library = no ; then - { { echo "$as_me:23820: error: Cannot link slang library" >&5 + { { echo "$as_me:23825: 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:23826: checking if we can link slang without termcap" >&5 +echo "$as_me:23831: 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%^.%%'` @@ -23832,7 +23837,7 @@ else fi LIBS=`echo ".$cf_slang_LIBS3" | sed -e "s%$cf_exclude%%" -e 's%^.%%'` cat >conftest.$ac_ext <<_ACEOF -#line 23835 "configure" +#line 23840 "configure" #include "confdefs.h" #include <slang.h> int @@ -23844,16 +23849,16 @@ SLtt_get_screen_size() } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:23847: \"$ac_link\"") >&5 +if { (eval echo "$as_me:23852: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:23850: \$? = $ac_status" >&5 + echo "$as_me:23855: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:23853: \"$ac_try\"") >&5 + { (eval echo "$as_me:23858: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23856: \$? = $ac_status" >&5 + echo "$as_me:23861: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_result=yes else @@ -23862,13 +23867,13 @@ cat conftest.$ac_ext >&5 cf_result=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext -echo "$as_me:23865: result: $cf_result" >&5 +echo "$as_me:23870: result: $cf_result" >&5 echo "${ECHO_T}$cf_result" >&6 test $cf_result = no && LIBS="$cf_slang_LIBS3" else -echo "$as_me:23871: checking for slang2 header file" >&5 +echo "$as_me:23876: 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 @@ -23876,7 +23881,7 @@ else cf_cv_slang2_header=no cat >conftest.$ac_ext <<_ACEOF -#line 23879 "configure" +#line 23884 "configure" #include "confdefs.h" #include <slang.h> int @@ -23888,16 +23893,16 @@ printf("%s\n", SLANG_VERSION) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:23891: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:23896: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:23894: \$? = $ac_status" >&5 + echo "$as_me:23899: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:23897: \"$ac_try\"") >&5 + { (eval echo "$as_me:23902: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23900: \$? = $ac_status" >&5 + echo "$as_me:23905: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_slang2_header=predefined else @@ -24024,7 +24029,7 @@ cf_search="$cf_search $cf_header_path_list" fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:24027: result: $cf_cv_slang2_header" >&5 +echo "$as_me:24032: result: $cf_cv_slang2_header" >&5 echo "${ECHO_T}$cf_cv_slang2_header" >&6 if test "x$cf_cv_slang2_header" != xno @@ -24065,7 +24070,7 @@ if test -n "$cf_incdir" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 24068 "configure" +#line 24073 "configure" #include "confdefs.h" #include <stdio.h> int @@ -24077,16 +24082,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:24080: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:24085: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:24083: \$? = $ac_status" >&5 + echo "$as_me:24088: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:24086: \"$ac_try\"") >&5 + { (eval echo "$as_me:24091: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:24089: \$? = $ac_status" >&5 + echo "$as_me:24094: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -24103,7 +24108,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}:24106: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:24111: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -24133,7 +24138,7 @@ else cf_cv_termlib=none cat >conftest.$ac_ext <<_ACEOF -#line 24136 "configure" +#line 24141 "configure" #include "confdefs.h" int @@ -24145,19 +24150,19 @@ char *x=(char*)tgoto("",0,0) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:24148: \"$ac_link\"") >&5 +if { (eval echo "$as_me:24153: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:24151: \$? = $ac_status" >&5 + echo "$as_me:24156: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:24154: \"$ac_try\"") >&5 + { (eval echo "$as_me:24159: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:24157: \$? = $ac_status" >&5 + echo "$as_me:24162: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cat >conftest.$ac_ext <<_ACEOF -#line 24160 "configure" +#line 24165 "configure" #include "confdefs.h" int @@ -24169,16 +24174,16 @@ int x=tigetstr("") } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:24172: \"$ac_link\"") >&5 +if { (eval echo "$as_me:24177: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:24175: \$? = $ac_status" >&5 + echo "$as_me:24180: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:24178: \"$ac_try\"") >&5 + { (eval echo "$as_me:24183: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:24181: \$? = $ac_status" >&5 + echo "$as_me:24186: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_termlib=terminfo else @@ -24189,7 +24194,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}:24192: testing using functions in predefined $cf_cv_termlib LIBS ..." 1>&5 +echo "${as_me:-configure}:24197: testing using functions in predefined $cf_cv_termlib LIBS ..." 1>&5 else echo "$as_me: failed program was:" >&5 @@ -24204,10 +24209,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:24207: checking for $cf_func in -l$cf_lib" >&5 + echo "$as_me:24212: 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 24210 "configure" +#line 24215 "configure" #include "confdefs.h" int @@ -24219,16 +24224,16 @@ int x=$cf_func("") } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:24222: \"$ac_link\"") >&5 +if { (eval echo "$as_me:24227: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:24225: \$? = $ac_status" >&5 + echo "$as_me:24230: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:24228: \"$ac_try\"") >&5 + { (eval echo "$as_me:24233: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:24231: \$? = $ac_status" >&5 + echo "$as_me:24236: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_result=yes else @@ -24237,7 +24242,7 @@ cat conftest.$ac_ext >&5 cf_result=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext - echo "$as_me:24240: result: $cf_result" >&5 + echo "$as_me:24245: result: $cf_result" >&5 echo "${ECHO_T}$cf_result" >&6 if test "$cf_result" = yes ; then if test "$cf_func" = tigetstr ; then @@ -24254,7 +24259,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:24257: checking for initscr in -lcurses" >&5 + echo "$as_me:24262: 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 @@ -24262,7 +24267,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lcurses $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 24265 "configure" +#line 24270 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -24281,16 +24286,16 @@ initscr (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:24284: \"$ac_link\"") >&5 +if { (eval echo "$as_me:24289: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:24287: \$? = $ac_status" >&5 + echo "$as_me:24292: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:24290: \"$ac_try\"") >&5 + { (eval echo "$as_me:24295: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:24293: \$? = $ac_status" >&5 + echo "$as_me:24298: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_curses_initscr=yes else @@ -24301,13 +24306,13 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:24304: result: $ac_cv_lib_curses_initscr" >&5 +echo "$as_me:24309: 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:24310: checking for tgoto in -ltermcap" >&5 + echo "$as_me:24315: 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 @@ -24315,7 +24320,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-ltermcap $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 24318 "configure" +#line 24323 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -24334,16 +24339,16 @@ tgoto (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:24337: \"$ac_link\"") >&5 +if { (eval echo "$as_me:24342: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:24340: \$? = $ac_status" >&5 + echo "$as_me:24345: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:24343: \"$ac_try\"") >&5 + { (eval echo "$as_me:24348: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:24346: \$? = $ac_status" >&5 + echo "$as_me:24351: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_termcap_tgoto=yes else @@ -24354,7 +24359,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:24357: result: $ac_cv_lib_termcap_tgoto" >&5 +echo "$as_me:24362: 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 @@ -24365,20 +24370,20 @@ fi fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext if test "$cf_cv_termlib" = none; then - { echo "$as_me:24368: WARNING: Cannot find -ltermlib, -lcurses, or -ltermcap" >&5 + { echo "$as_me:24373: 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:24375: checking for acos" >&5 +echo "$as_me:24380: 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 24381 "configure" +#line 24386 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char acos (); below. */ @@ -24409,16 +24414,16 @@ f = acos; /* workaround for ICC 12.0.3 */ if (f == 0) return 1; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:24412: \"$ac_link\"") >&5 +if { (eval echo "$as_me:24417: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:24415: \$? = $ac_status" >&5 + echo "$as_me:24420: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:24418: \"$ac_try\"") >&5 + { (eval echo "$as_me:24423: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:24421: \$? = $ac_status" >&5 + echo "$as_me:24426: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_acos=yes else @@ -24428,13 +24433,13 @@ ac_cv_func_acos=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:24431: result: $ac_cv_func_acos" >&5 +echo "$as_me:24436: 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:24437: checking for acos in -lm" >&5 +echo "$as_me:24442: 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 @@ -24442,7 +24447,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lm $LIBS $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 24445 "configure" +#line 24450 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -24461,16 +24466,16 @@ acos (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:24464: \"$ac_link\"") >&5 +if { (eval echo "$as_me:24469: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:24467: \$? = $ac_status" >&5 + echo "$as_me:24472: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:24470: \"$ac_try\"") >&5 + { (eval echo "$as_me:24475: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:24473: \$? = $ac_status" >&5 + echo "$as_me:24478: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_m_acos=yes else @@ -24481,7 +24486,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:24484: result: $ac_cv_lib_m_acos" >&5 +echo "$as_me:24489: 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 @@ -24507,13 +24512,13 @@ os2*) eval 'cf_cv_have_lib_'video'=no' cf_libdir="" - echo "$as_me:24510: checking for v_init" >&5 + echo "$as_me:24515: 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 24516 "configure" +#line 24521 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char v_init (); below. */ @@ -24544,16 +24549,16 @@ f = v_init; /* workaround for ICC 12.0.3 */ if (f == 0) return 1; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:24547: \"$ac_link\"") >&5 +if { (eval echo "$as_me:24552: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:24550: \$? = $ac_status" >&5 + echo "$as_me:24555: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:24553: \"$ac_try\"") >&5 + { (eval echo "$as_me:24558: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:24556: \$? = $ac_status" >&5 + echo "$as_me:24561: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_v_init=yes else @@ -24563,18 +24568,18 @@ ac_cv_func_v_init=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:24566: result: $ac_cv_func_v_init" >&5 +echo "$as_me:24571: 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:24573: checking for v_init in -lvideo" >&5 + echo "$as_me:24578: 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 24577 "configure" +#line 24582 "configure" #include "confdefs.h" #include <sys/video.h> int @@ -24586,25 +24591,25 @@ v_init() } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:24589: \"$ac_link\"") >&5 +if { (eval echo "$as_me:24594: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:24592: \$? = $ac_status" >&5 + echo "$as_me:24597: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:24595: \"$ac_try\"") >&5 + { (eval echo "$as_me:24600: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:24598: \$? = $ac_status" >&5 + echo "$as_me:24603: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:24600: result: yes" >&5 + echo "$as_me:24605: 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:24607: result: no" >&5 +echo "$as_me:24612: result: no" >&5 echo "${ECHO_T}no" >&6 cf_search= @@ -24694,11 +24699,11 @@ cf_search="$cf_library_path_list $cf_search" for cf_libdir in $cf_search do - echo "$as_me:24697: checking for -lvideo in $cf_libdir" >&5 + echo "$as_me:24702: 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 24701 "configure" +#line 24706 "configure" #include "confdefs.h" #include <sys/video.h> int @@ -24710,25 +24715,25 @@ v_init() } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:24713: \"$ac_link\"") >&5 +if { (eval echo "$as_me:24718: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:24716: \$? = $ac_status" >&5 + echo "$as_me:24721: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:24719: \"$ac_try\"") >&5 + { (eval echo "$as_me:24724: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:24722: \$? = $ac_status" >&5 + echo "$as_me:24727: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:24724: result: yes" >&5 + echo "$as_me:24729: 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:24731: result: no" >&5 +echo "$as_me:24736: result: no" >&5 echo "${ECHO_T}no" >&6 LIBS="$cf_save_LIBS" fi @@ -24743,7 +24748,7 @@ fi eval 'cf_found_library=$cf_cv_have_lib_'video if test $cf_found_library = no ; then - { { echo "$as_me:24746: error: Cannot link video library" >&5 + { { echo "$as_me:24751: error: Cannot link video library" >&5 echo "$as_me: error: Cannot link video library" >&2;} { (exit 1); exit 1; }; } fi @@ -24753,13 +24758,13 @@ esac eval 'cf_cv_have_lib_'slang2'=no' cf_libdir="" - echo "$as_me:24756: checking for SLtt_get_screen_size" >&5 + echo "$as_me:24761: 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 24762 "configure" +#line 24767 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char SLtt_get_screen_size (); below. */ @@ -24790,16 +24795,16 @@ f = SLtt_get_screen_size; /* workaround for ICC 12.0.3 */ if (f == 0) return 1; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:24793: \"$ac_link\"") >&5 +if { (eval echo "$as_me:24798: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:24796: \$? = $ac_status" >&5 + echo "$as_me:24801: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:24799: \"$ac_try\"") >&5 + { (eval echo "$as_me:24804: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:24802: \$? = $ac_status" >&5 + echo "$as_me:24807: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_SLtt_get_screen_size=yes else @@ -24809,18 +24814,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:24812: result: $ac_cv_func_SLtt_get_screen_size" >&5 +echo "$as_me:24817: 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:24819: checking for SLtt_get_screen_size in -lslang2" >&5 + echo "$as_me:24824: 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 24823 "configure" +#line 24828 "configure" #include "confdefs.h" #include <slang.h> int @@ -24832,25 +24837,25 @@ SLtt_get_screen_size() } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:24835: \"$ac_link\"") >&5 +if { (eval echo "$as_me:24840: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:24838: \$? = $ac_status" >&5 + echo "$as_me:24843: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:24841: \"$ac_try\"") >&5 + { (eval echo "$as_me:24846: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:24844: \$? = $ac_status" >&5 + echo "$as_me:24849: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:24846: result: yes" >&5 + echo "$as_me:24851: 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:24853: result: no" >&5 +echo "$as_me:24858: result: no" >&5 echo "${ECHO_T}no" >&6 cf_search= @@ -24940,11 +24945,11 @@ cf_search="$cf_library_path_list $cf_search" for cf_libdir in $cf_search do - echo "$as_me:24943: checking for -lslang2 in $cf_libdir" >&5 + echo "$as_me:24948: 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 24947 "configure" +#line 24952 "configure" #include "confdefs.h" #include <slang.h> int @@ -24956,25 +24961,25 @@ SLtt_get_screen_size() } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:24959: \"$ac_link\"") >&5 +if { (eval echo "$as_me:24964: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:24962: \$? = $ac_status" >&5 + echo "$as_me:24967: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:24965: \"$ac_try\"") >&5 + { (eval echo "$as_me:24970: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:24968: \$? = $ac_status" >&5 + echo "$as_me:24973: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:24970: result: yes" >&5 + echo "$as_me:24975: 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:24977: result: no" >&5 +echo "$as_me:24982: result: no" >&5 echo "${ECHO_T}no" >&6 LIBS="$cf_save_LIBS" fi @@ -24989,13 +24994,13 @@ fi eval 'cf_found_library=$cf_cv_have_lib_'slang2 if test $cf_found_library = no ; then - { { echo "$as_me:24992: error: Cannot link slang2 library" >&5 + { { echo "$as_me:24997: 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:24998: checking if we can link slang2 without termcap" >&5 +echo "$as_me:25003: 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%^.%%'` @@ -25004,7 +25009,7 @@ else fi LIBS=`echo ".$cf_slang_LIBS3" | sed -e "s%$cf_exclude%%" -e 's%^.%%'` cat >conftest.$ac_ext <<_ACEOF -#line 25007 "configure" +#line 25012 "configure" #include "confdefs.h" #include <slang.h> int @@ -25016,16 +25021,16 @@ SLtt_get_screen_size() } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:25019: \"$ac_link\"") >&5 +if { (eval echo "$as_me:25024: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:25022: \$? = $ac_status" >&5 + echo "$as_me:25027: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:25025: \"$ac_try\"") >&5 + { (eval echo "$as_me:25030: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25028: \$? = $ac_status" >&5 + echo "$as_me:25033: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_result=yes else @@ -25034,12 +25039,12 @@ cat conftest.$ac_ext >&5 cf_result=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext -echo "$as_me:25037: result: $cf_result" >&5 +echo "$as_me:25042: result: $cf_result" >&5 echo "${ECHO_T}$cf_result" >&6 test $cf_result = no && LIBS="$cf_slang_LIBS3" else - { { echo "$as_me:25042: error: cannot find slang headers" >&5 + { { echo "$as_me:25047: error: cannot find slang headers" >&5 echo "$as_me: error: cannot find slang headers" >&2;} { (exit 1); exit 1; }; } fi @@ -25047,14 +25052,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:25050: checking if we must define UTF8" >&5 +echo "$as_me:25055: 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 25057 "configure" +#line 25062 "configure" #include "confdefs.h" #include <slang.h> int @@ -25066,16 +25071,16 @@ SLtt_get_screen_size() } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:25069: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:25074: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:25072: \$? = $ac_status" >&5 + echo "$as_me:25077: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:25075: \"$ac_try\"") >&5 + { (eval echo "$as_me:25080: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25078: \$? = $ac_status" >&5 + echo "$as_me:25083: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_slang_utf8=no else @@ -25083,7 +25088,7 @@ else cat conftest.$ac_ext >&5 cat >conftest.$ac_ext <<_ACEOF -#line 25086 "configure" +#line 25091 "configure" #include "confdefs.h" #define UTF8 @@ -25097,16 +25102,16 @@ SLtt_get_screen_size() } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:25100: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:25105: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:25103: \$? = $ac_status" >&5 + echo "$as_me:25108: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:25106: \"$ac_try\"") >&5 + { (eval echo "$as_me:25111: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25109: \$? = $ac_status" >&5 + echo "$as_me:25114: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_slang_utf8=yes else @@ -25119,7 +25124,7 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:25122: result: $cf_cv_slang_utf8" >&5 +echo "$as_me:25127: result: $cf_cv_slang_utf8" >&5 echo "${ECHO_T}$cf_cv_slang_utf8" >&6 if test "$cf_cv_slang_utf8" = yes ; then @@ -25130,14 +25135,14 @@ EOF fi -echo "$as_me:25133: checking if we must tell slang this is UNIX" >&5 +echo "$as_me:25138: 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 25140 "configure" +#line 25145 "configure" #include "confdefs.h" #include <slang.h> int @@ -25156,16 +25161,16 @@ SLang_TT_Baud_Rate = 1 } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:25159: \"$ac_link\"") >&5 +if { (eval echo "$as_me:25164: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:25162: \$? = $ac_status" >&5 + echo "$as_me:25167: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:25165: \"$ac_try\"") >&5 + { (eval echo "$as_me:25170: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25168: \$? = $ac_status" >&5 + echo "$as_me:25173: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_slang_unix=yes else @@ -25176,20 +25181,20 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:25179: result: $cf_cv_slang_unix" >&5 +echo "$as_me:25184: 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:25186: checking for SLsmg_Color_Type" >&5 + echo "$as_me:25191: 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 25192 "configure" +#line 25197 "configure" #include "confdefs.h" #include <slang.h> @@ -25205,16 +25210,16 @@ if (sizeof (SLsmg_Color_Type)) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:25208: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:25213: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:25211: \$? = $ac_status" >&5 + echo "$as_me:25216: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:25214: \"$ac_try\"") >&5 + { (eval echo "$as_me:25219: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25217: \$? = $ac_status" >&5 + echo "$as_me:25222: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_type_SLsmg_Color_Type=yes else @@ -25224,7 +25229,7 @@ ac_cv_type_SLsmg_Color_Type=no fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:25227: result: $ac_cv_type_SLsmg_Color_Type" >&5 +echo "$as_me:25232: 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 @@ -25240,13 +25245,13 @@ EOF fi - echo "$as_me:25243: checking for SLtt_Char_Type" >&5 + echo "$as_me:25248: 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 25249 "configure" +#line 25254 "configure" #include "confdefs.h" #include <slang.h> @@ -25262,16 +25267,16 @@ if (sizeof (SLtt_Char_Type)) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:25265: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:25270: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:25268: \$? = $ac_status" >&5 + echo "$as_me:25273: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:25271: \"$ac_try\"") >&5 + { (eval echo "$as_me:25276: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25274: \$? = $ac_status" >&5 + echo "$as_me:25279: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_type_SLtt_Char_Type=yes else @@ -25281,7 +25286,7 @@ ac_cv_type_SLtt_Char_Type=no fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:25284: result: $ac_cv_type_SLtt_Char_Type" >&5 +echo "$as_me:25289: 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 @@ -25301,14 +25306,14 @@ fi ;; esac -echo "$as_me:25304: checking for chtype typedef" >&5 +echo "$as_me:25309: 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 25311 "configure" +#line 25316 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> int @@ -25320,16 +25325,16 @@ chtype foo } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:25323: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:25328: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:25326: \$? = $ac_status" >&5 + echo "$as_me:25331: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:25329: \"$ac_try\"") >&5 + { (eval echo "$as_me:25334: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25332: \$? = $ac_status" >&5 + echo "$as_me:25337: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_chtype_decl=yes else @@ -25339,7 +25344,7 @@ cf_cv_chtype_decl=no fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:25342: result: $cf_cv_chtype_decl" >&5 +echo "$as_me:25347: result: $cf_cv_chtype_decl" >&5 echo "${ECHO_T}$cf_cv_chtype_decl" >&6 if test $cf_cv_chtype_decl = yes ; then @@ -25347,14 +25352,14 @@ cat >>confdefs.h <<\EOF #define HAVE_TYPE_CHTYPE 1 EOF - echo "$as_me:25350: checking if chtype is scalar or struct" >&5 + echo "$as_me:25355: 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 25357 "configure" +#line 25362 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> int @@ -25366,16 +25371,16 @@ chtype foo; long x = foo } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:25369: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:25374: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:25372: \$? = $ac_status" >&5 + echo "$as_me:25377: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:25375: \"$ac_try\"") >&5 + { (eval echo "$as_me:25380: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25378: \$? = $ac_status" >&5 + echo "$as_me:25383: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_chtype_type=scalar else @@ -25385,7 +25390,7 @@ cf_cv_chtype_type=struct fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:25388: result: $cf_cv_chtype_type" >&5 +echo "$as_me:25393: result: $cf_cv_chtype_type" >&5 echo "${ECHO_T}$cf_cv_chtype_type" >&6 if test $cf_cv_chtype_type = scalar ; then @@ -25396,7 +25401,7 @@ EOF fi fi -echo "$as_me:25399: checking if you want the wide-curses features" >&5 +echo "$as_me:25404: 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. @@ -25413,10 +25418,10 @@ else use_wide_curses=$cf_wide_curses fi; -echo "$as_me:25416: result: $use_wide_curses" >&5 +echo "$as_me:25421: result: $use_wide_curses" >&5 echo "${ECHO_T}$use_wide_curses" >&6 -echo "$as_me:25419: checking if color-style code should be used" >&5 +echo "$as_me:25424: 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. @@ -25436,7 +25441,7 @@ fi; case $use_color_style in no) - echo "$as_me:25439: result: no" >&5 + echo "$as_me:25444: result: no" >&5 echo "${ECHO_T}no" >&6 INSTALL_LSS= ;; @@ -25446,10 +25451,10 @@ cat >>confdefs.h <<\EOF #define USE_COLOR_STYLE 1 EOF - echo "$as_me:25449: result: yes" >&5 + echo "$as_me:25454: result: yes" >&5 echo "${ECHO_T}yes" >&6 - echo "$as_me:25452: checking for location of style-sheet file" >&5 + echo "$as_me:25457: 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. @@ -25485,7 +25490,7 @@ case ".$withval" in #(vi withval=`echo $withval | sed -e s%NONE%$cf_path_syntax%` ;; *) - { { echo "$as_me:25488: error: expected a pathname, not \"$withval\"" >&5 + { { echo "$as_me:25493: error: expected a pathname, not \"$withval\"" >&5 echo "$as_me: error: expected a pathname, not \"$withval\"" >&2;} { (exit 1); exit 1; }; } ;; @@ -25494,7 +25499,7 @@ esac fi eval LYNX_LSS_FILE="$withval" - echo "$as_me:25497: result: $LYNX_LSS_FILE" >&5 + echo "$as_me:25502: result: $LYNX_LSS_FILE" >&5 echo "${ECHO_T}$LYNX_LSS_FILE" >&6 test "$LYNX_LSS_FILE" = no && LYNX_LSS_FILE= @@ -25507,7 +25512,7 @@ EOF ;; esac -echo "$as_me:25510: checking for the default configuration-file" >&5 +echo "$as_me:25515: 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. @@ -25543,7 +25548,7 @@ case ".$withval" in #(vi withval=`echo $withval | sed -e s%NONE%$cf_path_syntax%` ;; *) - { { echo "$as_me:25546: error: expected a pathname, not \"$withval\"" >&5 + { { echo "$as_me:25551: error: expected a pathname, not \"$withval\"" >&5 echo "$as_me: error: expected a pathname, not \"$withval\"" >&2;} { (exit 1); exit 1; }; } ;; @@ -25552,7 +25557,7 @@ esac fi eval LYNX_CFG_FILE="$withval" -echo "$as_me:25555: result: $LYNX_CFG_FILE" >&5 +echo "$as_me:25560: result: $LYNX_CFG_FILE" >&5 echo "${ECHO_T}$LYNX_CFG_FILE" >&6 test "$LYNX_CFG_FILE" = no && LYNX_CFG_FILE= @@ -25561,7 +25566,7 @@ cat >>confdefs.h <<EOF #define LYNX_CFG_FILE "$LYNX_CFG_FILE" EOF -echo "$as_me:25564: checking if htmlized lynx.cfg should be built" >&5 +echo "$as_me:25569: 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. @@ -25578,7 +25583,7 @@ else use_htmlized_cfg=no fi; -echo "$as_me:25581: result: $use_htmlized_cfg" >&5 +echo "$as_me:25586: result: $use_htmlized_cfg" >&5 echo "${ECHO_T}$use_htmlized_cfg" >&6 LYNXCFG_MAKE='' @@ -25586,7 +25591,7 @@ if test $use_htmlized_cfg = no ; then LYNXCFG_MAKE='#' fi -echo "$as_me:25589: checking if local doc directory should be linked to help page" >&5 +echo "$as_me:25594: 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. @@ -25603,7 +25608,7 @@ else use_local_docs=no fi; -echo "$as_me:25606: result: $use_local_docs" >&5 +echo "$as_me:25611: result: $use_local_docs" >&5 echo "${ECHO_T}$use_local_docs" >&6 LYNXDOC_MAKE='' @@ -25611,7 +25616,7 @@ if test $use_local_docs = no ; then LYNXDOC_MAKE='#' fi -echo "$as_me:25614: checking for MIME library directory" >&5 +echo "$as_me:25619: 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. @@ -25647,7 +25652,7 @@ case ".$withval" in #(vi withval=`echo $withval | sed -e s%NONE%$cf_path_syntax%` ;; *) - { { echo "$as_me:25650: error: expected a pathname, not \"$withval\"" >&5 + { { echo "$as_me:25655: error: expected a pathname, not \"$withval\"" >&5 echo "$as_me: error: expected a pathname, not \"$withval\"" >&2;} { (exit 1); exit 1; }; } ;; @@ -25656,7 +25661,7 @@ esac fi eval MIME_LIBDIR="$withval" -echo "$as_me:25659: result: $MIME_LIBDIR" >&5 +echo "$as_me:25664: result: $MIME_LIBDIR" >&5 echo "${ECHO_T}$MIME_LIBDIR" >&6 MIME_LIBDIR=`echo "$MIME_LIBDIR" | sed -e 's,/$,,' -e 's,$,/,'` @@ -25664,7 +25669,7 @@ cat >>confdefs.h <<EOF #define MIME_LIBDIR "$MIME_LIBDIR" EOF -echo "$as_me:25667: checking if locale-charset selection logic should be used" >&5 +echo "$as_me:25672: 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. @@ -25681,7 +25686,7 @@ else use_locale_charset=yes fi; -echo "$as_me:25684: result: $use_locale_charset" >&5 +echo "$as_me:25689: result: $use_locale_charset" >&5 echo "${ECHO_T}$use_locale_charset" >&6 test $use_locale_charset != no && cat >>confdefs.h <<\EOF @@ -25690,7 +25695,7 @@ EOF CHARSET_DEFS= -echo "$as_me:25693: checking if you want only a few charsets" >&5 +echo "$as_me:25698: 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. @@ -25702,7 +25707,7 @@ else fi; if test -n "$cf_charsets" ; then - echo "$as_me:25705: result: yes" >&5 + echo "$as_me:25710: result: yes" >&5 echo "${ECHO_T}yes" >&6 cat >>confdefs.h <<\EOF @@ -25716,7 +25721,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}:25719: testing using minimal list of charsets: $cf_min_charsets ..." 1>&5 +echo "${as_me:-configure}:25724: 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'` @@ -25743,28 +25748,28 @@ echo "${as_me:-configure}:25719: testing using minimal list of charsets: $cf_min then test -n "$verbose" && echo " found $cf_charset" 1>&6 -echo "${as_me:-configure}:25746: testing found $cf_charset ..." 1>&5 +echo "${as_me:-configure}:25751: 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}:25752: testing not found $cf_charset ..." 1>&5 +echo "${as_me:-configure}:25757: testing not found $cf_charset ..." 1>&5 fi done else - echo "$as_me:25757: result: no" >&5 + echo "$as_me:25762: result: no" >&5 echo "${ECHO_T}no" >&6 fi -echo "$as_me:25761: checking for ANSI C header files" >&5 +echo "$as_me:25766: 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 25767 "configure" +#line 25772 "configure" #include "confdefs.h" #include <stdlib.h> #include <stdarg.h> @@ -25772,13 +25777,13 @@ else #include <float.h> _ACEOF -if { (eval echo "$as_me:25775: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:25780: \"$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:25781: \$? = $ac_status" >&5 + echo "$as_me:25786: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -25800,7 +25805,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 25803 "configure" +#line 25808 "configure" #include "confdefs.h" #include <string.h> @@ -25818,7 +25823,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 25821 "configure" +#line 25826 "configure" #include "confdefs.h" #include <stdlib.h> @@ -25839,7 +25844,7 @@ if test $ac_cv_header_stdc = yes; then : else cat >conftest.$ac_ext <<_ACEOF -#line 25842 "configure" +#line 25847 "configure" #include "confdefs.h" #include <ctype.h> #if ((' ' & 0x0FF) == 0x020) @@ -25865,15 +25870,15 @@ main () } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:25868: \"$ac_link\"") >&5 +if { (eval echo "$as_me:25873: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:25871: \$? = $ac_status" >&5 + echo "$as_me:25876: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:25873: \"$ac_try\"") >&5 + { (eval echo "$as_me:25878: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25876: \$? = $ac_status" >&5 + echo "$as_me:25881: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -25886,7 +25891,7 @@ rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext fi fi fi -echo "$as_me:25889: result: $ac_cv_header_stdc" >&5 +echo "$as_me:25894: result: $ac_cv_header_stdc" >&5 echo "${ECHO_T}$ac_cv_header_stdc" >&6 if test $ac_cv_header_stdc = yes; then @@ -25896,13 +25901,13 @@ EOF fi -echo "$as_me:25899: checking whether time.h and sys/time.h may both be included" >&5 +echo "$as_me:25904: 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 25905 "configure" +#line 25910 "configure" #include "confdefs.h" #include <sys/types.h> #include <sys/time.h> @@ -25918,16 +25923,16 @@ return 0; } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:25921: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:25926: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:25924: \$? = $ac_status" >&5 + echo "$as_me:25929: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:25927: \"$ac_try\"") >&5 + { (eval echo "$as_me:25932: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25930: \$? = $ac_status" >&5 + echo "$as_me:25935: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_header_time=yes else @@ -25937,7 +25942,7 @@ ac_cv_header_time=no fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:25940: result: $ac_cv_header_time" >&5 +echo "$as_me:25945: result: $ac_cv_header_time" >&5 echo "${ECHO_T}$ac_cv_header_time" >&6 if test $ac_cv_header_time = yes; then @@ -25950,13 +25955,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:25953: checking for $ac_hdr that defines DIR" >&5 +echo "$as_me:25958: 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 25959 "configure" +#line 25964 "configure" #include "confdefs.h" #include <sys/types.h> #include <$ac_hdr> @@ -25971,16 +25976,16 @@ return 0; } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:25974: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:25979: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:25977: \$? = $ac_status" >&5 + echo "$as_me:25982: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:25980: \"$ac_try\"") >&5 + { (eval echo "$as_me:25985: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25983: \$? = $ac_status" >&5 + echo "$as_me:25988: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_Header=yes" else @@ -25990,7 +25995,7 @@ eval "$as_ac_Header=no" fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:25993: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:25998: 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 @@ -26003,7 +26008,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:26006: checking for opendir in -ldir" >&5 + echo "$as_me:26011: 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 @@ -26011,7 +26016,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-ldir $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 26014 "configure" +#line 26019 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -26030,16 +26035,16 @@ opendir (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:26033: \"$ac_link\"") >&5 +if { (eval echo "$as_me:26038: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:26036: \$? = $ac_status" >&5 + echo "$as_me:26041: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:26039: \"$ac_try\"") >&5 + { (eval echo "$as_me:26044: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:26042: \$? = $ac_status" >&5 + echo "$as_me:26047: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_dir_opendir=yes else @@ -26050,14 +26055,14 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:26053: result: $ac_cv_lib_dir_opendir" >&5 +echo "$as_me:26058: 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:26060: checking for opendir in -lx" >&5 + echo "$as_me:26065: 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 @@ -26065,7 +26070,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lx $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 26068 "configure" +#line 26073 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -26084,16 +26089,16 @@ opendir (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:26087: \"$ac_link\"") >&5 +if { (eval echo "$as_me:26092: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:26090: \$? = $ac_status" >&5 + echo "$as_me:26095: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:26093: \"$ac_try\"") >&5 + { (eval echo "$as_me:26098: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:26096: \$? = $ac_status" >&5 + echo "$as_me:26101: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_x_opendir=yes else @@ -26104,7 +26109,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:26107: result: $ac_cv_lib_x_opendir" >&5 +echo "$as_me:26112: 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" @@ -26132,23 +26137,23 @@ for ac_header in \ do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` -echo "$as_me:26135: checking for $ac_header" >&5 +echo "$as_me:26140: 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 26141 "configure" +#line 26146 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:26145: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:26150: \"$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:26151: \$? = $ac_status" >&5 + echo "$as_me:26156: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -26167,7 +26172,7 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:26170: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:26175: 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 @@ -26177,14 +26182,14 @@ EOF fi done -echo "$as_me:26180: checking termio.h and termios.h" >&5 +echo "$as_me:26185: 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 26187 "configure" +#line 26192 "configure" #include "confdefs.h" #if HAVE_TERMIO_H @@ -26202,16 +26207,16 @@ putchar (0x0a) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:26205: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:26210: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:26208: \$? = $ac_status" >&5 + echo "$as_me:26213: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:26211: \"$ac_try\"") >&5 + { (eval echo "$as_me:26216: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:26214: \$? = $ac_status" >&5 + echo "$as_me:26219: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_termio_and_termios=yes else @@ -26222,21 +26227,21 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:26225: result: $cf_cv_termio_and_termios" >&5 +echo "$as_me:26230: 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:26232: checking for sigaction and structs" >&5 +echo "$as_me:26237: 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 26239 "configure" +#line 26244 "configure" #include "confdefs.h" #include <sys/types.h> @@ -26256,16 +26261,16 @@ struct sigaction act; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:26259: \"$ac_link\"") >&5 +if { (eval echo "$as_me:26264: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:26262: \$? = $ac_status" >&5 + echo "$as_me:26267: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:26265: \"$ac_try\"") >&5 + { (eval echo "$as_me:26270: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:26268: \$? = $ac_status" >&5 + echo "$as_me:26273: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_func_sigaction=yes else @@ -26276,7 +26281,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:26279: result: $cf_cv_func_sigaction" >&5 +echo "$as_me:26284: result: $cf_cv_func_sigaction" >&5 echo "${ECHO_T}$cf_cv_func_sigaction" >&6 test "$cf_cv_func_sigaction" = yes && cat >>confdefs.h <<\EOF @@ -26286,23 +26291,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:26289: checking for $ac_header" >&5 +echo "$as_me:26294: 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 26295 "configure" +#line 26300 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:26299: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:26304: \"$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:26305: \$? = $ac_status" >&5 + echo "$as_me:26310: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -26321,7 +26326,7 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:26324: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:26329: 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 @@ -26342,23 +26347,23 @@ else for ac_header in wait.h do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` -echo "$as_me:26345: checking for $ac_header" >&5 +echo "$as_me:26350: 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 26351 "configure" +#line 26356 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:26355: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:26360: \"$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:26361: \$? = $ac_status" >&5 + echo "$as_me:26366: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -26377,7 +26382,7 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:26380: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:26385: 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 @@ -26390,23 +26395,23 @@ done for ac_header in waitstatus.h do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` -echo "$as_me:26393: checking for $ac_header" >&5 +echo "$as_me:26398: 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 26399 "configure" +#line 26404 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:26403: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:26408: \"$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:26409: \$? = $ac_status" >&5 + echo "$as_me:26414: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -26425,7 +26430,7 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:26428: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:26433: 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 @@ -26447,14 +26452,14 @@ cf_wait_headers="$cf_wait_headers fi fi -echo "$as_me:26450: checking for union wait" >&5 +echo "$as_me:26455: 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 26457 "configure" +#line 26462 "configure" #include "confdefs.h" $cf_wait_headers int @@ -26470,16 +26475,16 @@ int x; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:26473: \"$ac_link\"") >&5 +if { (eval echo "$as_me:26478: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:26476: \$? = $ac_status" >&5 + echo "$as_me:26481: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:26479: \"$ac_try\"") >&5 + { (eval echo "$as_me:26484: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:26482: \$? = $ac_status" >&5 + echo "$as_me:26487: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_type_unionwait=no echo compiles ok w/o union wait 1>&5 @@ -26489,7 +26494,7 @@ else cat conftest.$ac_ext >&5 cat >conftest.$ac_ext <<_ACEOF -#line 26492 "configure" +#line 26497 "configure" #include "confdefs.h" $cf_wait_headers int @@ -26509,16 +26514,16 @@ union wait x; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:26512: \"$ac_link\"") >&5 +if { (eval echo "$as_me:26517: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:26515: \$? = $ac_status" >&5 + echo "$as_me:26520: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:26518: \"$ac_try\"") >&5 + { (eval echo "$as_me:26523: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:26521: \$? = $ac_status" >&5 + echo "$as_me:26526: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_type_unionwait=yes echo compiles ok with union wait and possibly macros too 1>&5 @@ -26533,7 +26538,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:26536: result: $cf_cv_type_unionwait" >&5 +echo "$as_me:26541: result: $cf_cv_type_unionwait" >&5 echo "${ECHO_T}$cf_cv_type_unionwait" >&6 test $cf_cv_type_unionwait = yes && cat >>confdefs.h <<\EOF @@ -26542,14 +26547,14 @@ EOF if test $cf_cv_type_unionwait = yes; then - echo "$as_me:26545: checking if union wait can be used as wait-arg" >&5 + echo "$as_me:26550: 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 26552 "configure" +#line 26557 "configure" #include "confdefs.h" $cf_wait_headers int @@ -26561,16 +26566,16 @@ union wait x; wait(&x) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:26564: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:26569: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:26567: \$? = $ac_status" >&5 + echo "$as_me:26572: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:26570: \"$ac_try\"") >&5 + { (eval echo "$as_me:26575: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:26573: \$? = $ac_status" >&5 + echo "$as_me:26578: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_arg_union_wait=yes else @@ -26582,21 +26587,21 @@ rm -f conftest.$ac_objext conftest.$ac_ext fi - echo "$as_me:26585: result: $cf_cv_arg_union_wait" >&5 + echo "$as_me:26590: 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:26592: checking if union wait can be used as waitpid-arg" >&5 + echo "$as_me:26597: 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 26599 "configure" +#line 26604 "configure" #include "confdefs.h" $cf_wait_headers int @@ -26608,16 +26613,16 @@ union wait x; waitpid(0, &x, 0) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:26611: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:26616: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:26614: \$? = $ac_status" >&5 + echo "$as_me:26619: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:26617: \"$ac_try\"") >&5 + { (eval echo "$as_me:26622: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:26620: \$? = $ac_status" >&5 + echo "$as_me:26625: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_arg_union_waitpid=yes else @@ -26629,7 +26634,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext fi - echo "$as_me:26632: result: $cf_cv_arg_union_waitpid" >&5 + echo "$as_me:26637: 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 @@ -26638,13 +26643,13 @@ EOF fi -echo "$as_me:26641: checking for uid_t in sys/types.h" >&5 +echo "$as_me:26646: 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 26647 "configure" +#line 26652 "configure" #include "confdefs.h" #include <sys/types.h> @@ -26658,7 +26663,7 @@ fi rm -rf conftest* fi -echo "$as_me:26661: result: $ac_cv_type_uid_t" >&5 +echo "$as_me:26666: 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 @@ -26672,7 +26677,7 @@ EOF fi -echo "$as_me:26675: checking type of array argument to getgroups" >&5 +echo "$as_me:26680: 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 @@ -26681,7 +26686,7 @@ else ac_cv_type_getgroups=cross else cat >conftest.$ac_ext <<_ACEOF -#line 26684 "configure" +#line 26689 "configure" #include "confdefs.h" /* Thanks to Mike Rendell for this test. */ #include <sys/types.h> @@ -26707,15 +26712,15 @@ main () } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:26710: \"$ac_link\"") >&5 +if { (eval echo "$as_me:26715: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:26713: \$? = $ac_status" >&5 + echo "$as_me:26718: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:26715: \"$ac_try\"") >&5 + { (eval echo "$as_me:26720: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:26718: \$? = $ac_status" >&5 + echo "$as_me:26723: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_type_getgroups=gid_t else @@ -26728,7 +26733,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 26731 "configure" +#line 26736 "configure" #include "confdefs.h" #include <unistd.h> @@ -26743,20 +26748,20 @@ rm -rf conftest* fi fi -echo "$as_me:26746: result: $ac_cv_type_getgroups" >&5 +echo "$as_me:26751: 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:26753: checking for off_t" >&5 +echo "$as_me:26758: 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 26759 "configure" +#line 26764 "configure" #include "confdefs.h" $ac_includes_default int @@ -26771,16 +26776,16 @@ if (sizeof (off_t)) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:26774: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:26779: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:26777: \$? = $ac_status" >&5 + echo "$as_me:26782: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:26780: \"$ac_try\"") >&5 + { (eval echo "$as_me:26785: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:26783: \$? = $ac_status" >&5 + echo "$as_me:26788: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_type_off_t=yes else @@ -26790,7 +26795,7 @@ ac_cv_type_off_t=no fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:26793: result: $ac_cv_type_off_t" >&5 +echo "$as_me:26798: 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 : @@ -26802,13 +26807,13 @@ EOF fi -echo "$as_me:26805: checking for pid_t" >&5 +echo "$as_me:26810: 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 26811 "configure" +#line 26816 "configure" #include "confdefs.h" $ac_includes_default int @@ -26823,16 +26828,16 @@ if (sizeof (pid_t)) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:26826: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:26831: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:26829: \$? = $ac_status" >&5 + echo "$as_me:26834: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:26832: \"$ac_try\"") >&5 + { (eval echo "$as_me:26837: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:26835: \$? = $ac_status" >&5 + echo "$as_me:26840: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_type_pid_t=yes else @@ -26842,7 +26847,7 @@ ac_cv_type_pid_t=no fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:26845: result: $ac_cv_type_pid_t" >&5 +echo "$as_me:26850: 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 : @@ -26854,13 +26859,13 @@ EOF fi -echo "$as_me:26857: checking for uid_t in sys/types.h" >&5 +echo "$as_me:26862: 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 26863 "configure" +#line 26868 "configure" #include "confdefs.h" #include <sys/types.h> @@ -26874,7 +26879,7 @@ fi rm -rf conftest* fi -echo "$as_me:26877: result: $ac_cv_type_uid_t" >&5 +echo "$as_me:26882: 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 @@ -26888,13 +26893,13 @@ EOF fi -echo "$as_me:26891: checking for mode_t" >&5 +echo "$as_me:26896: 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 26897 "configure" +#line 26902 "configure" #include "confdefs.h" $ac_includes_default int @@ -26909,16 +26914,16 @@ if (sizeof (mode_t)) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:26912: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:26917: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:26915: \$? = $ac_status" >&5 + echo "$as_me:26920: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:26918: \"$ac_try\"") >&5 + { (eval echo "$as_me:26923: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:26921: \$? = $ac_status" >&5 + echo "$as_me:26926: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_type_mode_t=yes else @@ -26928,7 +26933,7 @@ ac_cv_type_mode_t=no fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:26931: result: $ac_cv_type_mode_t" >&5 +echo "$as_me:26936: 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 : @@ -26940,13 +26945,13 @@ EOF fi - echo "$as_me:26943: checking for ssize_t" >&5 + echo "$as_me:26948: 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 26949 "configure" +#line 26954 "configure" #include "confdefs.h" $ac_includes_default int @@ -26961,16 +26966,16 @@ if (sizeof (ssize_t)) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:26964: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:26969: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:26967: \$? = $ac_status" >&5 + echo "$as_me:26972: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:26970: \"$ac_try\"") >&5 + { (eval echo "$as_me:26975: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:26973: \$? = $ac_status" >&5 + echo "$as_me:26978: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_type_ssize_t=yes else @@ -26980,7 +26985,7 @@ ac_cv_type_ssize_t=no fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:26983: result: $ac_cv_type_ssize_t" >&5 +echo "$as_me:26988: 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 @@ -26996,13 +27001,13 @@ EOF fi - echo "$as_me:26999: checking for socklen_t" >&5 + echo "$as_me:27004: 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 27005 "configure" +#line 27010 "configure" #include "confdefs.h" #include <sys/types.h> @@ -27020,16 +27025,16 @@ if (sizeof (socklen_t)) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:27023: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:27028: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:27026: \$? = $ac_status" >&5 + echo "$as_me:27031: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:27029: \"$ac_try\"") >&5 + { (eval echo "$as_me:27034: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27032: \$? = $ac_status" >&5 + echo "$as_me:27037: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_type_socklen_t=yes else @@ -27039,7 +27044,7 @@ ac_cv_type_socklen_t=no fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:27042: result: $ac_cv_type_socklen_t" >&5 +echo "$as_me:27047: 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 @@ -27055,7 +27060,7 @@ EOF fi -echo "$as_me:27058: checking for long long type" >&5 +echo "$as_me:27063: 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 @@ -27086,7 +27091,7 @@ _CFEOF rm -f conftest* fi -echo "$as_me:27089: result: $cf_cv_type_long_long" >&5 +echo "$as_me:27094: 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 @@ -27097,14 +27102,14 @@ EOF fi -echo "$as_me:27100: checking for tm.tm_gmtoff" >&5 +echo "$as_me:27105: 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 27107 "configure" +#line 27112 "configure" #include "confdefs.h" #ifdef TIME_WITH_SYS_TIME @@ -27129,16 +27134,16 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:27132: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:27137: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:27135: \$? = $ac_status" >&5 + echo "$as_me:27140: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:27138: \"$ac_try\"") >&5 + { (eval echo "$as_me:27143: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27141: \$? = $ac_status" >&5 + echo "$as_me:27146: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_tm_gmtoff=yes else @@ -27149,20 +27154,20 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:27152: result: $cf_cv_tm_gmtoff" >&5 +echo "$as_me:27157: 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:27159: checking for int" >&5 +echo "$as_me:27164: 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 27165 "configure" +#line 27170 "configure" #include "confdefs.h" $ac_includes_default int @@ -27177,16 +27182,16 @@ if (sizeof (int)) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:27180: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:27185: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:27183: \$? = $ac_status" >&5 + echo "$as_me:27188: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:27186: \"$ac_try\"") >&5 + { (eval echo "$as_me:27191: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27189: \$? = $ac_status" >&5 + echo "$as_me:27194: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_type_int=yes else @@ -27196,10 +27201,10 @@ ac_cv_type_int=no fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:27199: result: $ac_cv_type_int" >&5 +echo "$as_me:27204: result: $ac_cv_type_int" >&5 echo "${ECHO_T}$ac_cv_type_int" >&6 -echo "$as_me:27202: checking size of int" >&5 +echo "$as_me:27207: 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 @@ -27208,7 +27213,7 @@ else if test "$cross_compiling" = yes; then # Depending upon the size, compute the lo and hi bounds. cat >conftest.$ac_ext <<_ACEOF -#line 27211 "configure" +#line 27216 "configure" #include "confdefs.h" $ac_includes_default int @@ -27220,21 +27225,21 @@ int _array_ [1 - 2 * !((sizeof (int)) >= 0)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:27223: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:27228: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:27226: \$? = $ac_status" >&5 + echo "$as_me:27231: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:27229: \"$ac_try\"") >&5 + { (eval echo "$as_me:27234: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27232: \$? = $ac_status" >&5 + echo "$as_me:27237: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_lo=0 ac_mid=0 while :; do cat >conftest.$ac_ext <<_ACEOF -#line 27237 "configure" +#line 27242 "configure" #include "confdefs.h" $ac_includes_default int @@ -27246,16 +27251,16 @@ int _array_ [1 - 2 * !((sizeof (int)) <= $ac_mid)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:27249: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:27254: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:27252: \$? = $ac_status" >&5 + echo "$as_me:27257: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:27255: \"$ac_try\"") >&5 + { (eval echo "$as_me:27260: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27258: \$? = $ac_status" >&5 + echo "$as_me:27263: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_hi=$ac_mid; break else @@ -27271,7 +27276,7 @@ cat conftest.$ac_ext >&5 ac_hi=-1 ac_mid=-1 while :; do cat >conftest.$ac_ext <<_ACEOF -#line 27274 "configure" +#line 27279 "configure" #include "confdefs.h" $ac_includes_default int @@ -27283,16 +27288,16 @@ int _array_ [1 - 2 * !((sizeof (int)) >= $ac_mid)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:27286: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:27291: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:27289: \$? = $ac_status" >&5 + echo "$as_me:27294: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:27292: \"$ac_try\"") >&5 + { (eval echo "$as_me:27297: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27295: \$? = $ac_status" >&5 + echo "$as_me:27300: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_lo=$ac_mid; break else @@ -27308,7 +27313,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 27311 "configure" +#line 27316 "configure" #include "confdefs.h" $ac_includes_default int @@ -27320,16 +27325,16 @@ int _array_ [1 - 2 * !((sizeof (int)) <= $ac_mid)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:27323: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:27328: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:27326: \$? = $ac_status" >&5 + echo "$as_me:27331: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:27329: \"$ac_try\"") >&5 + { (eval echo "$as_me:27334: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27332: \$? = $ac_status" >&5 + echo "$as_me:27337: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_hi=$ac_mid else @@ -27342,12 +27347,12 @@ done ac_cv_sizeof_int=$ac_lo else if test "$cross_compiling" = yes; then - { { echo "$as_me:27345: error: cannot run test program while cross compiling" >&5 + { { echo "$as_me:27350: 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 27350 "configure" +#line 27355 "configure" #include "confdefs.h" $ac_includes_default int @@ -27363,15 +27368,15 @@ fclose (f); } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:27366: \"$ac_link\"") >&5 +if { (eval echo "$as_me:27371: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:27369: \$? = $ac_status" >&5 + echo "$as_me:27374: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:27371: \"$ac_try\"") >&5 + { (eval echo "$as_me:27376: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27374: \$? = $ac_status" >&5 + echo "$as_me:27379: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_sizeof_int=`cat conftest.val` else @@ -27387,7 +27392,7 @@ else ac_cv_sizeof_int=0 fi fi -echo "$as_me:27390: result: $ac_cv_sizeof_int" >&5 +echo "$as_me:27395: 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 @@ -27395,23 +27400,23 @@ EOF if test "${ac_cv_type_int:+set}" = set; then if test "${ac_cv_sizeof_int:+set}" != set; then - { echo "$as_me:27398: WARNING: using 4 for sizeof int" >&5 + { echo "$as_me:27403: WARNING: using 4 for sizeof int" >&5 echo "$as_me: WARNING: using 4 for sizeof int" >&2;} ac_cv_sizeof_int=4 elif test "x${ac_cv_sizeof_int}" = x0; then - { echo "$as_me:27402: WARNING: sizeof int not found, using 4" >&5 + { echo "$as_me:27407: WARNING: sizeof int not found, using 4" >&5 echo "$as_me: WARNING: sizeof int not found, using 4" >&2;} ac_cv_sizeof_int=4 fi fi -echo "$as_me:27408: checking for long" >&5 +echo "$as_me:27413: 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 27414 "configure" +#line 27419 "configure" #include "confdefs.h" $ac_includes_default int @@ -27426,16 +27431,16 @@ if (sizeof (long)) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:27429: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:27434: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:27432: \$? = $ac_status" >&5 + echo "$as_me:27437: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:27435: \"$ac_try\"") >&5 + { (eval echo "$as_me:27440: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27438: \$? = $ac_status" >&5 + echo "$as_me:27443: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_type_long=yes else @@ -27445,10 +27450,10 @@ ac_cv_type_long=no fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:27448: result: $ac_cv_type_long" >&5 +echo "$as_me:27453: result: $ac_cv_type_long" >&5 echo "${ECHO_T}$ac_cv_type_long" >&6 -echo "$as_me:27451: checking size of long" >&5 +echo "$as_me:27456: 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 @@ -27457,7 +27462,7 @@ else if test "$cross_compiling" = yes; then # Depending upon the size, compute the lo and hi bounds. cat >conftest.$ac_ext <<_ACEOF -#line 27460 "configure" +#line 27465 "configure" #include "confdefs.h" $ac_includes_default int @@ -27469,21 +27474,21 @@ int _array_ [1 - 2 * !((sizeof (long)) >= 0)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:27472: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:27477: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:27475: \$? = $ac_status" >&5 + echo "$as_me:27480: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:27478: \"$ac_try\"") >&5 + { (eval echo "$as_me:27483: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27481: \$? = $ac_status" >&5 + echo "$as_me:27486: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_lo=0 ac_mid=0 while :; do cat >conftest.$ac_ext <<_ACEOF -#line 27486 "configure" +#line 27491 "configure" #include "confdefs.h" $ac_includes_default int @@ -27495,16 +27500,16 @@ int _array_ [1 - 2 * !((sizeof (long)) <= $ac_mid)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:27498: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:27503: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:27501: \$? = $ac_status" >&5 + echo "$as_me:27506: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:27504: \"$ac_try\"") >&5 + { (eval echo "$as_me:27509: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27507: \$? = $ac_status" >&5 + echo "$as_me:27512: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_hi=$ac_mid; break else @@ -27520,7 +27525,7 @@ cat conftest.$ac_ext >&5 ac_hi=-1 ac_mid=-1 while :; do cat >conftest.$ac_ext <<_ACEOF -#line 27523 "configure" +#line 27528 "configure" #include "confdefs.h" $ac_includes_default int @@ -27532,16 +27537,16 @@ int _array_ [1 - 2 * !((sizeof (long)) >= $ac_mid)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:27535: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:27540: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:27538: \$? = $ac_status" >&5 + echo "$as_me:27543: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:27541: \"$ac_try\"") >&5 + { (eval echo "$as_me:27546: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27544: \$? = $ac_status" >&5 + echo "$as_me:27549: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_lo=$ac_mid; break else @@ -27557,7 +27562,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 27560 "configure" +#line 27565 "configure" #include "confdefs.h" $ac_includes_default int @@ -27569,16 +27574,16 @@ int _array_ [1 - 2 * !((sizeof (long)) <= $ac_mid)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:27572: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:27577: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:27575: \$? = $ac_status" >&5 + echo "$as_me:27580: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:27578: \"$ac_try\"") >&5 + { (eval echo "$as_me:27583: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27581: \$? = $ac_status" >&5 + echo "$as_me:27586: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_hi=$ac_mid else @@ -27591,12 +27596,12 @@ done ac_cv_sizeof_long=$ac_lo else if test "$cross_compiling" = yes; then - { { echo "$as_me:27594: error: cannot run test program while cross compiling" >&5 + { { echo "$as_me:27599: 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 27599 "configure" +#line 27604 "configure" #include "confdefs.h" $ac_includes_default int @@ -27612,15 +27617,15 @@ fclose (f); } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:27615: \"$ac_link\"") >&5 +if { (eval echo "$as_me:27620: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:27618: \$? = $ac_status" >&5 + echo "$as_me:27623: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:27620: \"$ac_try\"") >&5 + { (eval echo "$as_me:27625: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27623: \$? = $ac_status" >&5 + echo "$as_me:27628: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_sizeof_long=`cat conftest.val` else @@ -27636,7 +27641,7 @@ else ac_cv_sizeof_long=0 fi fi -echo "$as_me:27639: result: $ac_cv_sizeof_long" >&5 +echo "$as_me:27644: 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 @@ -27644,23 +27649,23 @@ EOF if test "${ac_cv_type_long:+set}" = set; then if test "${ac_cv_sizeof_long:+set}" != set; then - { echo "$as_me:27647: WARNING: using 4 for sizeof long" >&5 + { echo "$as_me:27652: WARNING: using 4 for sizeof long" >&5 echo "$as_me: WARNING: using 4 for sizeof long" >&2;} ac_cv_sizeof_long=4 elif test "x${ac_cv_sizeof_long}" = x0; then - { echo "$as_me:27651: WARNING: sizeof long not found, using 4" >&5 + { echo "$as_me:27656: WARNING: sizeof long not found, using 4" >&5 echo "$as_me: WARNING: sizeof long not found, using 4" >&2;} ac_cv_sizeof_long=4 fi fi -echo "$as_me:27657: checking for off_t" >&5 +echo "$as_me:27662: 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 27663 "configure" +#line 27668 "configure" #include "confdefs.h" $ac_includes_default int @@ -27675,16 +27680,16 @@ if (sizeof (off_t)) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:27678: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:27683: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:27681: \$? = $ac_status" >&5 + echo "$as_me:27686: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:27684: \"$ac_try\"") >&5 + { (eval echo "$as_me:27689: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27687: \$? = $ac_status" >&5 + echo "$as_me:27692: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_type_off_t=yes else @@ -27694,10 +27699,10 @@ ac_cv_type_off_t=no fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:27697: result: $ac_cv_type_off_t" >&5 +echo "$as_me:27702: result: $ac_cv_type_off_t" >&5 echo "${ECHO_T}$ac_cv_type_off_t" >&6 -echo "$as_me:27700: checking size of off_t" >&5 +echo "$as_me:27705: 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 @@ -27706,7 +27711,7 @@ else if test "$cross_compiling" = yes; then # Depending upon the size, compute the lo and hi bounds. cat >conftest.$ac_ext <<_ACEOF -#line 27709 "configure" +#line 27714 "configure" #include "confdefs.h" $ac_includes_default int @@ -27718,21 +27723,21 @@ int _array_ [1 - 2 * !((sizeof (off_t)) >= 0)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:27721: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:27726: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:27724: \$? = $ac_status" >&5 + echo "$as_me:27729: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:27727: \"$ac_try\"") >&5 + { (eval echo "$as_me:27732: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27730: \$? = $ac_status" >&5 + echo "$as_me:27735: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_lo=0 ac_mid=0 while :; do cat >conftest.$ac_ext <<_ACEOF -#line 27735 "configure" +#line 27740 "configure" #include "confdefs.h" $ac_includes_default int @@ -27744,16 +27749,16 @@ int _array_ [1 - 2 * !((sizeof (off_t)) <= $ac_mid)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:27747: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:27752: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:27750: \$? = $ac_status" >&5 + echo "$as_me:27755: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:27753: \"$ac_try\"") >&5 + { (eval echo "$as_me:27758: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27756: \$? = $ac_status" >&5 + echo "$as_me:27761: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_hi=$ac_mid; break else @@ -27769,7 +27774,7 @@ cat conftest.$ac_ext >&5 ac_hi=-1 ac_mid=-1 while :; do cat >conftest.$ac_ext <<_ACEOF -#line 27772 "configure" +#line 27777 "configure" #include "confdefs.h" $ac_includes_default int @@ -27781,16 +27786,16 @@ int _array_ [1 - 2 * !((sizeof (off_t)) >= $ac_mid)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:27784: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:27789: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:27787: \$? = $ac_status" >&5 + echo "$as_me:27792: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:27790: \"$ac_try\"") >&5 + { (eval echo "$as_me:27795: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27793: \$? = $ac_status" >&5 + echo "$as_me:27798: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_lo=$ac_mid; break else @@ -27806,7 +27811,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 27809 "configure" +#line 27814 "configure" #include "confdefs.h" $ac_includes_default int @@ -27818,16 +27823,16 @@ int _array_ [1 - 2 * !((sizeof (off_t)) <= $ac_mid)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:27821: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:27826: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:27824: \$? = $ac_status" >&5 + echo "$as_me:27829: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:27827: \"$ac_try\"") >&5 + { (eval echo "$as_me:27832: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27830: \$? = $ac_status" >&5 + echo "$as_me:27835: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_hi=$ac_mid else @@ -27840,12 +27845,12 @@ done ac_cv_sizeof_off_t=$ac_lo else if test "$cross_compiling" = yes; then - { { echo "$as_me:27843: error: cannot run test program while cross compiling" >&5 + { { echo "$as_me:27848: 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 27848 "configure" +#line 27853 "configure" #include "confdefs.h" $ac_includes_default int @@ -27861,15 +27866,15 @@ fclose (f); } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:27864: \"$ac_link\"") >&5 +if { (eval echo "$as_me:27869: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:27867: \$? = $ac_status" >&5 + echo "$as_me:27872: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:27869: \"$ac_try\"") >&5 + { (eval echo "$as_me:27874: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27872: \$? = $ac_status" >&5 + echo "$as_me:27877: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_sizeof_off_t=`cat conftest.val` else @@ -27885,7 +27890,7 @@ else ac_cv_sizeof_off_t=0 fi fi -echo "$as_me:27888: result: $ac_cv_sizeof_off_t" >&5 +echo "$as_me:27893: 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 @@ -27893,23 +27898,23 @@ EOF if test "${ac_cv_type_off_t:+set}" = set; then if test "${ac_cv_sizeof_off_t:+set}" != set; then - { echo "$as_me:27896: WARNING: using 4 for sizeof off_t" >&5 + { echo "$as_me:27901: WARNING: using 4 for sizeof off_t" >&5 echo "$as_me: WARNING: using 4 for sizeof off_t" >&2;} ac_cv_sizeof_off_t=4 elif test "x${ac_cv_sizeof_off_t}" = x0; then - { echo "$as_me:27900: WARNING: sizeof off_t not found, using 4" >&5 + { echo "$as_me:27905: WARNING: sizeof off_t not found, using 4" >&5 echo "$as_me: WARNING: sizeof off_t not found, using 4" >&2;} ac_cv_sizeof_off_t=4 fi fi -echo "$as_me:27906: checking for time_t" >&5 +echo "$as_me:27911: 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 27912 "configure" +#line 27917 "configure" #include "confdefs.h" $ac_includes_default int @@ -27924,16 +27929,16 @@ if (sizeof (time_t)) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:27927: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:27932: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:27930: \$? = $ac_status" >&5 + echo "$as_me:27935: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:27933: \"$ac_try\"") >&5 + { (eval echo "$as_me:27938: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27936: \$? = $ac_status" >&5 + echo "$as_me:27941: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_type_time_t=yes else @@ -27943,10 +27948,10 @@ ac_cv_type_time_t=no fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:27946: result: $ac_cv_type_time_t" >&5 +echo "$as_me:27951: result: $ac_cv_type_time_t" >&5 echo "${ECHO_T}$ac_cv_type_time_t" >&6 -echo "$as_me:27949: checking size of time_t" >&5 +echo "$as_me:27954: 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 @@ -27955,7 +27960,7 @@ else if test "$cross_compiling" = yes; then # Depending upon the size, compute the lo and hi bounds. cat >conftest.$ac_ext <<_ACEOF -#line 27958 "configure" +#line 27963 "configure" #include "confdefs.h" $ac_includes_default int @@ -27967,21 +27972,21 @@ int _array_ [1 - 2 * !((sizeof (time_t)) >= 0)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:27970: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:27975: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:27973: \$? = $ac_status" >&5 + echo "$as_me:27978: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:27976: \"$ac_try\"") >&5 + { (eval echo "$as_me:27981: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27979: \$? = $ac_status" >&5 + echo "$as_me:27984: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_lo=0 ac_mid=0 while :; do cat >conftest.$ac_ext <<_ACEOF -#line 27984 "configure" +#line 27989 "configure" #include "confdefs.h" $ac_includes_default int @@ -27993,16 +27998,16 @@ int _array_ [1 - 2 * !((sizeof (time_t)) <= $ac_mid)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:27996: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:28001: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:27999: \$? = $ac_status" >&5 + echo "$as_me:28004: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:28002: \"$ac_try\"") >&5 + { (eval echo "$as_me:28007: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28005: \$? = $ac_status" >&5 + echo "$as_me:28010: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_hi=$ac_mid; break else @@ -28018,7 +28023,7 @@ cat conftest.$ac_ext >&5 ac_hi=-1 ac_mid=-1 while :; do cat >conftest.$ac_ext <<_ACEOF -#line 28021 "configure" +#line 28026 "configure" #include "confdefs.h" $ac_includes_default int @@ -28030,16 +28035,16 @@ int _array_ [1 - 2 * !((sizeof (time_t)) >= $ac_mid)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:28033: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:28038: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:28036: \$? = $ac_status" >&5 + echo "$as_me:28041: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:28039: \"$ac_try\"") >&5 + { (eval echo "$as_me:28044: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28042: \$? = $ac_status" >&5 + echo "$as_me:28047: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_lo=$ac_mid; break else @@ -28055,7 +28060,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 28058 "configure" +#line 28063 "configure" #include "confdefs.h" $ac_includes_default int @@ -28067,16 +28072,16 @@ int _array_ [1 - 2 * !((sizeof (time_t)) <= $ac_mid)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:28070: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:28075: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:28073: \$? = $ac_status" >&5 + echo "$as_me:28078: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:28076: \"$ac_try\"") >&5 + { (eval echo "$as_me:28081: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28079: \$? = $ac_status" >&5 + echo "$as_me:28084: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_hi=$ac_mid else @@ -28089,12 +28094,12 @@ done ac_cv_sizeof_time_t=$ac_lo else if test "$cross_compiling" = yes; then - { { echo "$as_me:28092: error: cannot run test program while cross compiling" >&5 + { { echo "$as_me:28097: 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 28097 "configure" +#line 28102 "configure" #include "confdefs.h" $ac_includes_default int @@ -28110,15 +28115,15 @@ fclose (f); } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:28113: \"$ac_link\"") >&5 +if { (eval echo "$as_me:28118: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:28116: \$? = $ac_status" >&5 + echo "$as_me:28121: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:28118: \"$ac_try\"") >&5 + { (eval echo "$as_me:28123: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28121: \$? = $ac_status" >&5 + echo "$as_me:28126: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_sizeof_time_t=`cat conftest.val` else @@ -28134,7 +28139,7 @@ else ac_cv_sizeof_time_t=0 fi fi -echo "$as_me:28137: result: $ac_cv_sizeof_time_t" >&5 +echo "$as_me:28142: 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 @@ -28142,23 +28147,23 @@ EOF if test "${ac_cv_type_time_t:+set}" = set; then if test "${ac_cv_sizeof_time_t:+set}" != set; then - { echo "$as_me:28145: WARNING: using 4 for sizeof time_t" >&5 + { echo "$as_me:28150: WARNING: using 4 for sizeof time_t" >&5 echo "$as_me: WARNING: using 4 for sizeof time_t" >&2;} ac_cv_sizeof_time_t=4 elif test "x${ac_cv_sizeof_time_t}" = x0; then - { echo "$as_me:28149: WARNING: sizeof time_t not found, using 4" >&5 + { echo "$as_me:28154: WARNING: sizeof time_t not found, using 4" >&5 echo "$as_me: WARNING: sizeof time_t not found, using 4" >&2;} ac_cv_sizeof_time_t=4 fi fi -echo "$as_me:28155: checking for intptr_t" >&5 +echo "$as_me:28160: checking for intptr_t" >&5 echo $ECHO_N "checking for intptr_t... $ECHO_C" >&6 if test "${ac_cv_type_intptr_t+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 28161 "configure" +#line 28166 "configure" #include "confdefs.h" $ac_includes_default int @@ -28173,16 +28178,16 @@ if (sizeof (intptr_t)) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:28176: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:28181: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:28179: \$? = $ac_status" >&5 + echo "$as_me:28184: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:28182: \"$ac_try\"") >&5 + { (eval echo "$as_me:28187: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28185: \$? = $ac_status" >&5 + echo "$as_me:28190: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_type_intptr_t=yes else @@ -28192,7 +28197,7 @@ ac_cv_type_intptr_t=no fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:28195: result: $ac_cv_type_intptr_t" >&5 +echo "$as_me:28200: result: $ac_cv_type_intptr_t" >&5 echo "${ECHO_T}$ac_cv_type_intptr_t" >&6 if test $ac_cv_type_intptr_t = yes; then : @@ -28206,13 +28211,13 @@ fi # The Ultrix 4.2 mips builtin alloca declared by alloca.h only works # for constant arguments. Useless! -echo "$as_me:28209: checking for working alloca.h" >&5 +echo "$as_me:28214: 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 28215 "configure" +#line 28220 "configure" #include "confdefs.h" #include <alloca.h> int @@ -28224,16 +28229,16 @@ char *p = (char *) alloca (2 * sizeof (int)); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:28227: \"$ac_link\"") >&5 +if { (eval echo "$as_me:28232: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:28230: \$? = $ac_status" >&5 + echo "$as_me:28235: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:28233: \"$ac_try\"") >&5 + { (eval echo "$as_me:28238: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28236: \$? = $ac_status" >&5 + echo "$as_me:28241: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_working_alloca_h=yes else @@ -28243,7 +28248,7 @@ ac_cv_working_alloca_h=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:28246: result: $ac_cv_working_alloca_h" >&5 +echo "$as_me:28251: 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 @@ -28253,13 +28258,13 @@ EOF fi -echo "$as_me:28256: checking for alloca" >&5 +echo "$as_me:28261: 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 28262 "configure" +#line 28267 "configure" #include "confdefs.h" #ifdef __GNUC__ # define alloca __builtin_alloca @@ -28291,16 +28296,16 @@ char *p = (char *) alloca (1); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:28294: \"$ac_link\"") >&5 +if { (eval echo "$as_me:28299: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:28297: \$? = $ac_status" >&5 + echo "$as_me:28302: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:28300: \"$ac_try\"") >&5 + { (eval echo "$as_me:28305: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28303: \$? = $ac_status" >&5 + echo "$as_me:28308: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_alloca_works=yes else @@ -28310,7 +28315,7 @@ ac_cv_func_alloca_works=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:28313: result: $ac_cv_func_alloca_works" >&5 +echo "$as_me:28318: 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 @@ -28331,13 +28336,13 @@ cat >>confdefs.h <<\EOF #define C_ALLOCA 1 EOF -echo "$as_me:28334: checking whether \`alloca.c' needs Cray hooks" >&5 +echo "$as_me:28339: 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 28340 "configure" +#line 28345 "configure" #include "confdefs.h" #if defined(CRAY) && ! defined(CRAY2) webecray @@ -28355,18 +28360,18 @@ fi rm -rf conftest* fi -echo "$as_me:28358: result: $ac_cv_os_cray" >&5 +echo "$as_me:28363: 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:28363: checking for $ac_func" >&5 +echo "$as_me:28368: 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 28369 "configure" +#line 28374 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. */ @@ -28397,16 +28402,16 @@ f = $ac_func; /* workaround for ICC 12.0.3 */ if (f == 0) return 1; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:28400: \"$ac_link\"") >&5 +if { (eval echo "$as_me:28405: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:28403: \$? = $ac_status" >&5 + echo "$as_me:28408: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:28406: \"$ac_try\"") >&5 + { (eval echo "$as_me:28411: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28409: \$? = $ac_status" >&5 + echo "$as_me:28414: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else @@ -28416,7 +28421,7 @@ eval "$as_ac_var=no" fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:28419: result: `eval echo '${'$as_ac_var'}'`" >&5 +echo "$as_me:28424: 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 @@ -28430,7 +28435,7 @@ fi done fi -echo "$as_me:28433: checking stack direction for C alloca" >&5 +echo "$as_me:28438: 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 @@ -28439,7 +28444,7 @@ else ac_cv_c_stack_direction=0 else cat >conftest.$ac_ext <<_ACEOF -#line 28442 "configure" +#line 28447 "configure" #include "confdefs.h" int find_stack_direction () @@ -28462,15 +28467,15 @@ main () } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:28465: \"$ac_link\"") >&5 +if { (eval echo "$as_me:28470: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:28468: \$? = $ac_status" >&5 + echo "$as_me:28473: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:28470: \"$ac_try\"") >&5 + { (eval echo "$as_me:28475: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28473: \$? = $ac_status" >&5 + echo "$as_me:28478: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_c_stack_direction=1 else @@ -28482,7 +28487,7 @@ fi rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext fi fi -echo "$as_me:28485: result: $ac_cv_c_stack_direction" >&5 +echo "$as_me:28490: result: $ac_cv_c_stack_direction" >&5 echo "${ECHO_T}$ac_cv_c_stack_direction" >&6 cat >>confdefs.h <<EOF @@ -28494,23 +28499,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:28497: checking for $ac_header" >&5 +echo "$as_me:28502: 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 28503 "configure" +#line 28508 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:28507: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:28512: \"$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:28513: \$? = $ac_status" >&5 + echo "$as_me:28518: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -28529,7 +28534,7 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:28532: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:28537: 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 @@ -28542,13 +28547,13 @@ done for ac_func in fork vfork do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` -echo "$as_me:28545: checking for $ac_func" >&5 +echo "$as_me:28550: 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 28551 "configure" +#line 28556 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. */ @@ -28579,16 +28584,16 @@ f = $ac_func; /* workaround for ICC 12.0.3 */ if (f == 0) return 1; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:28582: \"$ac_link\"") >&5 +if { (eval echo "$as_me:28587: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:28585: \$? = $ac_status" >&5 + echo "$as_me:28590: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:28588: \"$ac_try\"") >&5 + { (eval echo "$as_me:28593: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28591: \$? = $ac_status" >&5 + echo "$as_me:28596: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else @@ -28598,7 +28603,7 @@ eval "$as_ac_var=no" fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:28601: result: `eval echo '${'$as_ac_var'}'`" >&5 +echo "$as_me:28606: 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 @@ -28610,7 +28615,7 @@ done ac_cv_func_fork_works=$ac_cv_func_fork if test "x$ac_cv_func_fork" = xyes; then - echo "$as_me:28613: checking for working fork" >&5 + echo "$as_me:28618: 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 @@ -28633,15 +28638,15 @@ else } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:28636: \"$ac_link\"") >&5 +if { (eval echo "$as_me:28641: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:28639: \$? = $ac_status" >&5 + echo "$as_me:28644: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:28641: \"$ac_try\"") >&5 + { (eval echo "$as_me:28646: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28644: \$? = $ac_status" >&5 + echo "$as_me:28649: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_fork_works=yes else @@ -28653,7 +28658,7 @@ fi rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext fi fi -echo "$as_me:28656: result: $ac_cv_func_fork_works" >&5 +echo "$as_me:28661: result: $ac_cv_func_fork_works" >&5 echo "${ECHO_T}$ac_cv_func_fork_works" >&6 fi @@ -28667,12 +28672,12 @@ if test "x$ac_cv_func_fork_works" = xcross; then ac_cv_func_fork_works=yes ;; esac - { echo "$as_me:28670: WARNING: CROSS: Result $ac_cv_func_fork_works guessed due to cross-compiling." >&5 + { echo "$as_me:28675: 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:28675: checking for working vfork" >&5 + echo "$as_me:28680: 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 @@ -28681,7 +28686,7 @@ else ac_cv_func_vfork_works=cross else cat >conftest.$ac_ext <<_ACEOF -#line 28684 "configure" +#line 28689 "configure" #include "confdefs.h" /* Thanks to Paul Eggert for this test. */ #include <stdio.h> @@ -28778,15 +28783,15 @@ main () } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:28781: \"$ac_link\"") >&5 +if { (eval echo "$as_me:28786: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:28784: \$? = $ac_status" >&5 + echo "$as_me:28789: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:28786: \"$ac_try\"") >&5 + { (eval echo "$as_me:28791: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28789: \$? = $ac_status" >&5 + echo "$as_me:28794: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_vfork_works=yes else @@ -28798,13 +28803,13 @@ fi rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext fi fi -echo "$as_me:28801: result: $ac_cv_func_vfork_works" >&5 +echo "$as_me:28806: 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:28807: WARNING: CROSS: Result $ac_cv_func_vfork_works guessed due to cross-compiling." >&5 + { echo "$as_me:28812: 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 @@ -28829,14 +28834,14 @@ EOF fi -echo "$as_me:28832: checking if we should use fcntl or ioctl" >&5 +echo "$as_me:28837: 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 28839 "configure" +#line 28844 "configure" #include "confdefs.h" #include <sys/types.h> @@ -28853,16 +28858,16 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:28856: \"$ac_link\"") >&5 +if { (eval echo "$as_me:28861: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:28859: \$? = $ac_status" >&5 + echo "$as_me:28864: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:28862: \"$ac_try\"") >&5 + { (eval echo "$as_me:28867: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28865: \$? = $ac_status" >&5 + echo "$as_me:28870: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_fionbio=ioctl else @@ -28870,7 +28875,7 @@ else cat conftest.$ac_ext >&5 cat >conftest.$ac_ext <<_ACEOF -#line 28873 "configure" +#line 28878 "configure" #include "confdefs.h" #include <sys/types.h> @@ -28892,16 +28897,16 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:28895: \"$ac_link\"") >&5 +if { (eval echo "$as_me:28900: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:28898: \$? = $ac_status" >&5 + echo "$as_me:28903: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:28901: \"$ac_try\"") >&5 + { (eval echo "$as_me:28906: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28904: \$? = $ac_status" >&5 + echo "$as_me:28909: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_fionbio=fcntl else @@ -28914,21 +28919,21 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:28917: result: $cf_cv_fionbio" >&5 +echo "$as_me:28922: 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:28924: checking for broken/missing definition of remove" >&5 +echo "$as_me:28929: 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 28931 "configure" +#line 28936 "configure" #include "confdefs.h" #include <stdio.h> int @@ -28940,23 +28945,23 @@ remove("dummy") } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:28943: \"$ac_link\"") >&5 +if { (eval echo "$as_me:28948: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:28946: \$? = $ac_status" >&5 + echo "$as_me:28951: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:28949: \"$ac_try\"") >&5 + { (eval echo "$as_me:28954: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28952: \$? = $ac_status" >&5 + echo "$as_me:28957: \$? = $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 28959 "configure" +#line 28964 "configure" #include "confdefs.h" #include <stdio.h> int __unlink(name) { return unlink(name); } @@ -28969,16 +28974,16 @@ remove("dummy") } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:28972: \"$ac_link\"") >&5 +if { (eval echo "$as_me:28977: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:28975: \$? = $ac_status" >&5 + echo "$as_me:28980: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:28978: \"$ac_try\"") >&5 + { (eval echo "$as_me:28983: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28981: \$? = $ac_status" >&5 + echo "$as_me:28986: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_baddef_remove=yes else @@ -28993,21 +28998,21 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:28996: result: $cf_cv_baddef_remove" >&5 +echo "$as_me:29001: 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:29003: checking for lstat" >&5 +echo "$as_me:29008: 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 29010 "configure" +#line 29015 "configure" #include "confdefs.h" #include <sys/types.h> @@ -29021,16 +29026,16 @@ lstat(".", (struct stat *)0) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:29024: \"$ac_link\"") >&5 +if { (eval echo "$as_me:29029: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:29027: \$? = $ac_status" >&5 + echo "$as_me:29032: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:29030: \"$ac_try\"") >&5 + { (eval echo "$as_me:29035: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:29033: \$? = $ac_status" >&5 + echo "$as_me:29038: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_lstat=yes else @@ -29042,7 +29047,7 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:29045: result: $ac_cv_func_lstat " >&5 +echo "$as_me:29050: result: $ac_cv_func_lstat " >&5 echo "${ECHO_T}$ac_cv_func_lstat " >&6 if test $ac_cv_func_lstat = yes; then @@ -29077,13 +29082,13 @@ for ac_func in \ do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` -echo "$as_me:29080: checking for $ac_func" >&5 +echo "$as_me:29085: 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 29086 "configure" +#line 29091 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. */ @@ -29114,16 +29119,16 @@ f = $ac_func; /* workaround for ICC 12.0.3 */ if (f == 0) return 1; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:29117: \"$ac_link\"") >&5 +if { (eval echo "$as_me:29122: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:29120: \$? = $ac_status" >&5 + echo "$as_me:29125: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:29123: \"$ac_try\"") >&5 + { (eval echo "$as_me:29128: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:29126: \$? = $ac_status" >&5 + echo "$as_me:29131: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else @@ -29133,7 +29138,7 @@ eval "$as_ac_var=no" fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:29136: result: `eval echo '${'$as_ac_var'}'`" >&5 +echo "$as_me:29141: 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 @@ -29149,13 +29154,13 @@ for ac_func in \ do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` -echo "$as_me:29152: checking for $ac_func" >&5 +echo "$as_me:29157: 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 29158 "configure" +#line 29163 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. */ @@ -29186,16 +29191,16 @@ f = $ac_func; /* workaround for ICC 12.0.3 */ if (f == 0) return 1; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:29189: \"$ac_link\"") >&5 +if { (eval echo "$as_me:29194: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:29192: \$? = $ac_status" >&5 + echo "$as_me:29197: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:29195: \"$ac_try\"") >&5 + { (eval echo "$as_me:29200: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:29198: \$? = $ac_status" >&5 + echo "$as_me:29203: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else @@ -29205,7 +29210,7 @@ eval "$as_ac_var=no" fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:29208: result: `eval echo '${'$as_ac_var'}'`" >&5 +echo "$as_me:29213: 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 @@ -29217,7 +29222,7 @@ else fi done -echo "$as_me:29220: checking for random-integer functions" >&5 +echo "$as_me:29225: 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 @@ -29237,7 +29242,7 @@ do esac cat >conftest.$ac_ext <<_ACEOF -#line 29240 "configure" +#line 29245 "configure" #include "confdefs.h" #ifdef HAVE_STDLIB_H @@ -29256,16 +29261,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:29259: \"$ac_link\"") >&5 +if { (eval echo "$as_me:29264: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:29262: \$? = $ac_status" >&5 + echo "$as_me:29267: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:29265: \"$ac_try\"") >&5 + { (eval echo "$as_me:29270: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:29268: \$? = $ac_status" >&5 + echo "$as_me:29273: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_srand_func=$cf_func break @@ -29277,10 +29282,10 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext done fi -echo "$as_me:29280: result: $cf_cv_srand_func" >&5 +echo "$as_me:29285: 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:29283: checking for range of random-integers" >&5 + echo "$as_me:29288: 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 @@ -29301,7 +29306,7 @@ else ;; esac cat >conftest.$ac_ext <<_ACEOF -#line 29304 "configure" +#line 29309 "configure" #include "confdefs.h" #ifdef HAVE_STDLIB_H @@ -29320,16 +29325,16 @@ long x = $cf_cv_rand_max } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:29323: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:29328: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:29326: \$? = $ac_status" >&5 + echo "$as_me:29331: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:29329: \"$ac_try\"") >&5 + { (eval echo "$as_me:29334: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:29332: \$? = $ac_status" >&5 + echo "$as_me:29337: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -29340,15 +29345,15 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:29343: result: $cf_cv_rand_max" >&5 +echo "$as_me:29348: result: $cf_cv_rand_max" >&5 echo "${ECHO_T}$cf_cv_rand_max" >&6 case $cf_cv_srand_func in */arc4random) - echo "$as_me:29348: checking if <bsd/stdlib.h> should be included" >&5 + echo "$as_me:29353: 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 29351 "configure" +#line 29356 "configure" #include "confdefs.h" #include <bsd/stdlib.h> int @@ -29361,23 +29366,23 @@ void *arc4random(int); } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:29364: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:29369: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:29367: \$? = $ac_status" >&5 + echo "$as_me:29372: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:29370: \"$ac_try\"") >&5 + { (eval echo "$as_me:29375: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:29373: \$? = $ac_status" >&5 + echo "$as_me:29378: \$? = $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 29380 "configure" +#line 29385 "configure" #include "confdefs.h" #include <bsd/stdlib.h> int @@ -29389,16 +29394,16 @@ unsigned x = arc4random() } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:29392: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:29397: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:29395: \$? = $ac_status" >&5 + echo "$as_me:29400: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:29398: \"$ac_try\"") >&5 + { (eval echo "$as_me:29403: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:29401: \$? = $ac_status" >&5 + echo "$as_me:29406: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_bsd_stdlib_h=yes else @@ -29409,7 +29414,7 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi rm -f conftest.$ac_objext conftest.$ac_ext - echo "$as_me:29412: result: $cf_bsd_stdlib_h" >&5 + echo "$as_me:29417: result: $cf_bsd_stdlib_h" >&5 echo "${ECHO_T}$cf_bsd_stdlib_h" >&6 if test "$cf_bsd_stdlib_h" = yes then @@ -29419,10 +29424,10 @@ cat >>confdefs.h <<\EOF EOF else - echo "$as_me:29422: checking if <bsd/random.h> should be included" >&5 + echo "$as_me:29427: 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 29425 "configure" +#line 29430 "configure" #include "confdefs.h" #include <bsd/random.h> int @@ -29435,23 +29440,23 @@ void *arc4random(int); } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:29438: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:29443: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:29441: \$? = $ac_status" >&5 + echo "$as_me:29446: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:29444: \"$ac_try\"") >&5 + { (eval echo "$as_me:29449: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:29447: \$? = $ac_status" >&5 + echo "$as_me:29452: \$? = $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 29454 "configure" +#line 29459 "configure" #include "confdefs.h" #include <bsd/random.h> int @@ -29463,16 +29468,16 @@ unsigned x = arc4random() } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:29466: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:29471: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:29469: \$? = $ac_status" >&5 + echo "$as_me:29474: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:29472: \"$ac_try\"") >&5 + { (eval echo "$as_me:29477: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:29475: \$? = $ac_status" >&5 + echo "$as_me:29480: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_bsd_random_h=yes else @@ -29483,7 +29488,7 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi rm -f conftest.$ac_objext conftest.$ac_ext - echo "$as_me:29486: result: $cf_bsd_random_h" >&5 + echo "$as_me:29491: result: $cf_bsd_random_h" >&5 echo "${ECHO_T}$cf_bsd_random_h" >&6 if test "$cf_bsd_random_h" = yes then @@ -29493,7 +29498,7 @@ cat >>confdefs.h <<\EOF EOF else - { echo "$as_me:29496: WARNING: no header file found for arc4random" >&5 + { echo "$as_me:29501: WARNING: no header file found for arc4random" >&5 echo "$as_me: WARNING: no header file found for arc4random" >&2;} fi fi @@ -29528,13 +29533,13 @@ fi for ac_func in strstr do -echo "$as_me:29531: checking for $ac_func declaration" >&5 +echo "$as_me:29536: 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 29537 "configure" +#line 29542 "configure" #include "confdefs.h" #include <string.h> int @@ -29548,20 +29553,20 @@ extern int $ac_func(); } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:29551: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:29556: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:29554: \$? = $ac_status" >&5 + echo "$as_me:29559: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:29557: \"$ac_try\"") >&5 + { (eval echo "$as_me:29562: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:29560: \$? = $ac_status" >&5 + echo "$as_me:29565: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cat >conftest.$ac_ext <<_ACEOF -#line 29564 "configure" +#line 29569 "configure" #include "confdefs.h" #include <string.h> int @@ -29575,16 +29580,16 @@ int (*p)() = $ac_func; } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:29578: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:29583: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:29581: \$? = $ac_status" >&5 + echo "$as_me:29586: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:29584: \"$ac_try\"") >&5 + { (eval echo "$as_me:29589: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:29587: \$? = $ac_status" >&5 + echo "$as_me:29592: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "ac_cv_func_decl_$ac_func=yes" @@ -29605,11 +29610,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:29608: result: yes" >&5 + echo "$as_me:29613: result: yes" >&5 echo "${ECHO_T}yes" >&6 : else - echo "$as_me:29612: result: no" >&5 + echo "$as_me:29617: result: no" >&5 echo "${ECHO_T}no" >&6 ac_tr_func=`echo "DECL_$ac_func" | sed y%abcdefghijklmnopqrstuvwxyz./-%ABCDEFGHIJKLMNOPQRSTUVWXYZ___%` @@ -29624,13 +29629,13 @@ done for ac_func in getgrgid getgrnam do -echo "$as_me:29627: checking for $ac_func declaration" >&5 +echo "$as_me:29632: 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 29633 "configure" +#line 29638 "configure" #include "confdefs.h" #include <stdio.h> @@ -29646,20 +29651,20 @@ extern int $ac_func(); } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:29649: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:29654: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:29652: \$? = $ac_status" >&5 + echo "$as_me:29657: \$? = $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:29660: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:29658: \$? = $ac_status" >&5 + echo "$as_me:29663: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cat >conftest.$ac_ext <<_ACEOF -#line 29662 "configure" +#line 29667 "configure" #include "confdefs.h" #include <stdio.h> @@ -29675,16 +29680,16 @@ int (*p)() = $ac_func; } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:29678: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:29683: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:29681: \$? = $ac_status" >&5 + echo "$as_me:29686: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:29684: \"$ac_try\"") >&5 + { (eval echo "$as_me:29689: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:29687: \$? = $ac_status" >&5 + echo "$as_me:29692: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "ac_cv_func_decl_$ac_func=yes" @@ -29705,11 +29710,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:29708: result: yes" >&5 + echo "$as_me:29713: result: yes" >&5 echo "${ECHO_T}yes" >&6 : else - echo "$as_me:29712: result: no" >&5 + echo "$as_me:29717: result: no" >&5 echo "${ECHO_T}no" >&6 ac_tr_func=`echo "DECL_$ac_func" | sed y%abcdefghijklmnopqrstuvwxyz./-%ABCDEFGHIJKLMNOPQRSTUVWXYZ___%` @@ -29721,14 +29726,14 @@ EOF fi done -echo "$as_me:29724: checking if TRUE/FALSE are defined" >&5 +echo "$as_me:29729: 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 29731 "configure" +#line 29736 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> @@ -29742,16 +29747,16 @@ int x = TRUE, y = FALSE } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:29745: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:29750: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:29748: \$? = $ac_status" >&5 + echo "$as_me:29753: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:29751: \"$ac_try\"") >&5 + { (eval echo "$as_me:29756: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:29754: \$? = $ac_status" >&5 + echo "$as_me:29759: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_bool_defs=yes else @@ -29762,7 +29767,7 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:29765: result: $cf_cv_bool_defs" >&5 +echo "$as_me:29770: result: $cf_cv_bool_defs" >&5 echo "${ECHO_T}$cf_cv_bool_defs" >&6 if test "$cf_cv_bool_defs" = no ; then @@ -29776,14 +29781,14 @@ EOF fi -echo "$as_me:29779: checking if external errno is declared" >&5 +echo "$as_me:29784: 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 29786 "configure" +#line 29791 "configure" #include "confdefs.h" #ifdef HAVE_STDLIB_H @@ -29801,16 +29806,16 @@ int x = (int) errno } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:29804: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:29809: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:29807: \$? = $ac_status" >&5 + echo "$as_me:29812: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:29810: \"$ac_try\"") >&5 + { (eval echo "$as_me:29815: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:29813: \$? = $ac_status" >&5 + echo "$as_me:29818: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_dcl_errno=yes else @@ -29821,7 +29826,7 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:29824: result: $cf_cv_dcl_errno" >&5 +echo "$as_me:29829: result: $cf_cv_dcl_errno" >&5 echo "${ECHO_T}$cf_cv_dcl_errno" >&6 if test "$cf_cv_dcl_errno" = no ; then @@ -29836,14 +29841,14 @@ fi # It's possible (for near-UNIX clones) that the data doesn't exist -echo "$as_me:29839: checking if external errno exists" >&5 +echo "$as_me:29844: 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 29846 "configure" +#line 29851 "configure" #include "confdefs.h" #undef errno @@ -29858,16 +29863,16 @@ errno = 2 } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:29861: \"$ac_link\"") >&5 +if { (eval echo "$as_me:29866: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:29864: \$? = $ac_status" >&5 + echo "$as_me:29869: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:29867: \"$ac_try\"") >&5 + { (eval echo "$as_me:29872: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:29870: \$? = $ac_status" >&5 + echo "$as_me:29875: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_have_errno=yes else @@ -29878,7 +29883,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:29881: result: $cf_cv_have_errno" >&5 +echo "$as_me:29886: result: $cf_cv_have_errno" >&5 echo "${ECHO_T}$cf_cv_have_errno" >&6 if test "$cf_cv_have_errno" = yes ; then @@ -29891,7 +29896,7 @@ EOF fi -echo "$as_me:29894: checking if we can set errno" >&5 +echo "$as_me:29899: 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 @@ -29899,7 +29904,7 @@ else if test "$cross_compiling" = yes; then cat >conftest.$ac_ext <<_ACEOF -#line 29902 "configure" +#line 29907 "configure" #include "confdefs.h" #include <errno.h> int @@ -29911,16 +29916,16 @@ errno = 255 } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:29914: \"$ac_link\"") >&5 +if { (eval echo "$as_me:29919: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:29917: \$? = $ac_status" >&5 + echo "$as_me:29922: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:29920: \"$ac_try\"") >&5 + { (eval echo "$as_me:29925: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:29923: \$? = $ac_status" >&5 + echo "$as_me:29928: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_set_errno=maybe else @@ -29931,7 +29936,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext else cat >conftest.$ac_ext <<_ACEOF -#line 29934 "configure" +#line 29939 "configure" #include "confdefs.h" #include <errno.h> @@ -29942,15 +29947,15 @@ int main() } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:29945: \"$ac_link\"") >&5 +if { (eval echo "$as_me:29950: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:29948: \$? = $ac_status" >&5 + echo "$as_me:29953: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:29950: \"$ac_try\"") >&5 + { (eval echo "$as_me:29955: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:29953: \$? = $ac_status" >&5 + echo "$as_me:29958: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_set_errno=yes else @@ -29963,21 +29968,21 @@ rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext fi fi -echo "$as_me:29966: result: $cf_cv_set_errno" >&5 +echo "$as_me:29971: 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:29973: checking for setlocale()" >&5 +echo "$as_me:29978: 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 29980 "configure" +#line 29985 "configure" #include "confdefs.h" #include <locale.h> int @@ -29989,16 +29994,16 @@ setlocale(LC_ALL, "") } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:29992: \"$ac_link\"") >&5 +if { (eval echo "$as_me:29997: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:29995: \$? = $ac_status" >&5 + echo "$as_me:30000: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:29998: \"$ac_try\"") >&5 + { (eval echo "$as_me:30003: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:30001: \$? = $ac_status" >&5 + echo "$as_me:30006: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_locale=yes else @@ -30010,7 +30015,7 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:30013: result: $cf_cv_locale" >&5 +echo "$as_me:30018: result: $cf_cv_locale" >&5 echo "${ECHO_T}$cf_cv_locale" >&6 test $cf_cv_locale = yes && { cat >>confdefs.h <<\EOF @@ -30018,14 +30023,14 @@ cat >>confdefs.h <<\EOF EOF } -echo "$as_me:30021: checking if NGROUPS is defined" >&5 +echo "$as_me:30026: 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 30028 "configure" +#line 30033 "configure" #include "confdefs.h" #if HAVE_SYS_PARAM_H @@ -30044,23 +30049,23 @@ int x = NGROUPS } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:30047: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:30052: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:30050: \$? = $ac_status" >&5 + echo "$as_me:30055: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:30053: \"$ac_try\"") >&5 + { (eval echo "$as_me:30058: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:30056: \$? = $ac_status" >&5 + echo "$as_me:30061: \$? = $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 30063 "configure" +#line 30068 "configure" #include "confdefs.h" #if HAVE_SYS_PARAM_H @@ -30079,16 +30084,16 @@ int x = NGROUPS_MAX } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:30082: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:30087: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:30085: \$? = $ac_status" >&5 + echo "$as_me:30090: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:30088: \"$ac_try\"") >&5 + { (eval echo "$as_me:30093: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:30091: \$? = $ac_status" >&5 + echo "$as_me:30096: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_ngroups=NGROUPS_MAX else @@ -30100,7 +30105,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext fi rm -f conftest.$ac_objext conftest.$ac_ext -echo "$as_me:30103: result: $cf_cv_ngroups" >&5 +echo "$as_me:30108: result: $cf_cv_ngroups" >&5 echo "${ECHO_T}$cf_cv_ngroups" >&6 fi @@ -30118,14 +30123,14 @@ EOF fi -echo "$as_me:30121: checking if external sys_nerr is declared" >&5 +echo "$as_me:30126: 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 30128 "configure" +#line 30133 "configure" #include "confdefs.h" #ifdef HAVE_STDLIB_H @@ -30143,16 +30148,16 @@ int x = (int) sys_nerr } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:30146: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:30151: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:30149: \$? = $ac_status" >&5 + echo "$as_me:30154: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:30152: \"$ac_try\"") >&5 + { (eval echo "$as_me:30157: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:30155: \$? = $ac_status" >&5 + echo "$as_me:30160: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_dcl_sys_nerr=yes else @@ -30163,7 +30168,7 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:30166: result: $cf_cv_dcl_sys_nerr" >&5 +echo "$as_me:30171: 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 @@ -30178,14 +30183,14 @@ fi # It's possible (for near-UNIX clones) that the data doesn't exist -echo "$as_me:30181: checking if external sys_nerr exists" >&5 +echo "$as_me:30186: 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 30188 "configure" +#line 30193 "configure" #include "confdefs.h" #undef sys_nerr @@ -30200,16 +30205,16 @@ sys_nerr = 2 } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:30203: \"$ac_link\"") >&5 +if { (eval echo "$as_me:30208: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:30206: \$? = $ac_status" >&5 + echo "$as_me:30211: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:30209: \"$ac_try\"") >&5 + { (eval echo "$as_me:30214: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:30212: \$? = $ac_status" >&5 + echo "$as_me:30217: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_have_sys_nerr=yes else @@ -30220,7 +30225,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:30223: result: $cf_cv_have_sys_nerr" >&5 +echo "$as_me:30228: 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 @@ -30233,14 +30238,14 @@ EOF fi -echo "$as_me:30236: checking if external sys_errlist is declared" >&5 +echo "$as_me:30241: 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 30243 "configure" +#line 30248 "configure" #include "confdefs.h" #ifdef HAVE_STDLIB_H @@ -30258,16 +30263,16 @@ int x = (int) sys_errlist } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:30261: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:30266: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:30264: \$? = $ac_status" >&5 + echo "$as_me:30269: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:30267: \"$ac_try\"") >&5 + { (eval echo "$as_me:30272: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:30270: \$? = $ac_status" >&5 + echo "$as_me:30275: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_dcl_sys_errlist=yes else @@ -30278,7 +30283,7 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:30281: result: $cf_cv_dcl_sys_errlist" >&5 +echo "$as_me:30286: 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 @@ -30293,14 +30298,14 @@ fi # It's possible (for near-UNIX clones) that the data doesn't exist -echo "$as_me:30296: checking if external sys_errlist exists" >&5 +echo "$as_me:30301: 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 30303 "configure" +#line 30308 "configure" #include "confdefs.h" #undef sys_errlist @@ -30315,16 +30320,16 @@ sys_errlist = 2 } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:30318: \"$ac_link\"") >&5 +if { (eval echo "$as_me:30323: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:30321: \$? = $ac_status" >&5 + echo "$as_me:30326: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:30324: \"$ac_try\"") >&5 + { (eval echo "$as_me:30329: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:30327: \$? = $ac_status" >&5 + echo "$as_me:30332: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_have_sys_errlist=yes else @@ -30335,7 +30340,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:30338: result: $cf_cv_have_sys_errlist" >&5 +echo "$as_me:30343: 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 @@ -30351,23 +30356,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:30354: checking for $ac_header" >&5 +echo "$as_me:30359: 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 30360 "configure" +#line 30365 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:30364: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:30369: \"$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:30370: \$? = $ac_status" >&5 + echo "$as_me:30375: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -30386,7 +30391,7 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:30389: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:30394: 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 @@ -30396,14 +30401,14 @@ EOF fi done -echo "$as_me:30399: checking for lastlog path" >&5 +echo "$as_me:30404: 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 30406 "configure" +#line 30411 "configure" #include "confdefs.h" #include <sys/types.h> @@ -30423,16 +30428,16 @@ char *path = _PATH_LASTLOG } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:30426: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:30431: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:30429: \$? = $ac_status" >&5 + echo "$as_me:30434: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:30432: \"$ac_try\"") >&5 + { (eval echo "$as_me:30437: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:30435: \$? = $ac_status" >&5 + echo "$as_me:30440: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_path_lastlog="_PATH_LASTLOG" else @@ -30447,14 +30452,14 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:30450: result: $cf_cv_path_lastlog" >&5 +echo "$as_me:30455: 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:30457: checking for utmp implementation" >&5 +echo "$as_me:30462: 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 @@ -30471,7 +30476,7 @@ cf_utmp_includes=" #endif " cat >conftest.$ac_ext <<_ACEOF -#line 30474 "configure" +#line 30479 "configure" #include "confdefs.h" $cf_utmp_includes int @@ -30485,16 +30490,16 @@ struct $cf_header x; } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:30488: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:30493: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:30491: \$? = $ac_status" >&5 + echo "$as_me:30496: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:30494: \"$ac_try\"") >&5 + { (eval echo "$as_me:30499: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:30497: \$? = $ac_status" >&5 + echo "$as_me:30502: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_have_utmp=$cf_header break @@ -30503,7 +30508,7 @@ else cat conftest.$ac_ext >&5 cat >conftest.$ac_ext <<_ACEOF -#line 30506 "configure" +#line 30511 "configure" #include "confdefs.h" $cf_utmp_includes int @@ -30517,16 +30522,16 @@ struct $cf_header x; } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:30520: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:30525: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:30523: \$? = $ac_status" >&5 + echo "$as_me:30528: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:30526: \"$ac_try\"") >&5 + { (eval echo "$as_me:30531: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:30529: \$? = $ac_status" >&5 + echo "$as_me:30534: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_have_utmp=$cf_header break @@ -30541,7 +30546,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext done fi -echo "$as_me:30544: result: $cf_cv_have_utmp" >&5 +echo "$as_me:30549: result: $cf_cv_have_utmp" >&5 echo "${ECHO_T}$cf_cv_have_utmp" >&6 if test $cf_cv_have_utmp != no ; then @@ -30556,14 +30561,14 @@ cat >>confdefs.h <<\EOF EOF if test $cf_cv_have_utmp != no ; then -echo "$as_me:30559: checking if ${cf_cv_have_utmp}.ut_host is declared" >&5 +echo "$as_me:30564: 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 30566 "configure" +#line 30571 "configure" #include "confdefs.h" #include <sys/types.h> @@ -30577,16 +30582,16 @@ struct $cf_cv_have_utmp x; char *y = &x.ut_host[0] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:30580: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:30585: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:30583: \$? = $ac_status" >&5 + echo "$as_me:30588: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:30586: \"$ac_try\"") >&5 + { (eval echo "$as_me:30591: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:30589: \$? = $ac_status" >&5 + echo "$as_me:30594: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_have_utmp_ut_host=yes else @@ -30598,7 +30603,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:30601: result: $cf_cv_have_utmp_ut_host" >&5 +echo "$as_me:30606: 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 @@ -30608,14 +30613,14 @@ EOF fi if test $cf_cv_have_utmp != no ; then -echo "$as_me:30611: checking if ${cf_cv_have_utmp}.ut_syslen is declared" >&5 +echo "$as_me:30616: 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 30618 "configure" +#line 30623 "configure" #include "confdefs.h" #include <sys/types.h> @@ -30629,16 +30634,16 @@ struct $cf_cv_have_utmp x; int y = x.ut_syslen } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:30632: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:30637: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:30635: \$? = $ac_status" >&5 + echo "$as_me:30640: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:30638: \"$ac_try\"") >&5 + { (eval echo "$as_me:30643: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:30641: \$? = $ac_status" >&5 + echo "$as_me:30646: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_have_utmp_ut_syslen=yes else @@ -30650,7 +30655,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:30653: result: $cf_cv_have_utmp_ut_syslen" >&5 +echo "$as_me:30658: 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 @@ -30660,7 +30665,7 @@ EOF fi if test $cf_cv_have_utmp != no ; then -echo "$as_me:30663: checking if ${cf_cv_have_utmp}.ut_name is declared" >&5 +echo "$as_me:30668: 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 @@ -30677,7 +30682,7 @@ cf_utmp_includes=" " for cf_header in ut_name ut_user ; do cat >conftest.$ac_ext <<_ACEOF -#line 30680 "configure" +#line 30685 "configure" #include "confdefs.h" $cf_utmp_includes int @@ -30691,16 +30696,16 @@ struct $cf_cv_have_utmp x; } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:30694: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:30699: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:30697: \$? = $ac_status" >&5 + echo "$as_me:30702: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:30700: \"$ac_try\"") >&5 + { (eval echo "$as_me:30705: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:30703: \$? = $ac_status" >&5 + echo "$as_me:30708: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_have_utmp_ut_name=$cf_header break @@ -30712,12 +30717,12 @@ rm -f conftest.$ac_objext conftest.$ac_ext done fi -echo "$as_me:30715: result: $cf_cv_have_utmp_ut_name" >&5 +echo "$as_me:30720: 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:30720: error: Cannot find declaration for ut.ut_name" >&5 + { { echo "$as_me:30725: 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; }; } ;; @@ -30732,7 +30737,7 @@ esac fi if test $cf_cv_have_utmp != no ; then -echo "$as_me:30735: checking for exit-status in $cf_cv_have_utmp" >&5 +echo "$as_me:30740: 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 @@ -30745,7 +30750,7 @@ for cf_result in \ ut_exit.ut_exit do cat >conftest.$ac_ext <<_ACEOF -#line 30748 "configure" +#line 30753 "configure" #include "confdefs.h" #include <sys/types.h> @@ -30759,16 +30764,16 @@ struct $cf_cv_have_utmp x; long y = x.$cf_result = 0 } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:30762: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:30767: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:30765: \$? = $ac_status" >&5 + echo "$as_me:30770: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:30768: \"$ac_try\"") >&5 + { (eval echo "$as_me:30773: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:30771: \$? = $ac_status" >&5 + echo "$as_me:30776: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_have_utmp_ut_xstatus=$cf_result break @@ -30781,7 +30786,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext done fi -echo "$as_me:30784: result: $cf_cv_have_utmp_ut_xstatus" >&5 +echo "$as_me:30789: 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 @@ -30797,14 +30802,14 @@ fi fi if test $cf_cv_have_utmp != no ; then -echo "$as_me:30800: checking if ${cf_cv_have_utmp}.ut_xtime is declared" >&5 +echo "$as_me:30805: 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 30807 "configure" +#line 30812 "configure" #include "confdefs.h" #include <sys/types.h> @@ -30818,23 +30823,23 @@ struct $cf_cv_have_utmp x; long y = x.ut_xtime = 0 } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:30821: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:30826: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:30824: \$? = $ac_status" >&5 + echo "$as_me:30829: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:30827: \"$ac_try\"") >&5 + { (eval echo "$as_me:30832: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:30830: \$? = $ac_status" >&5 + echo "$as_me:30835: \$? = $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 30837 "configure" +#line 30842 "configure" #include "confdefs.h" #include <sys/types.h> @@ -30848,16 +30853,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:30851: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:30856: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:30854: \$? = $ac_status" >&5 + echo "$as_me:30859: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:30857: \"$ac_try\"") >&5 + { (eval echo "$as_me:30862: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:30860: \$? = $ac_status" >&5 + echo "$as_me:30865: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_have_utmp_ut_xtime=define else @@ -30871,7 +30876,7 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:30874: result: $cf_cv_have_utmp_ut_xtime" >&5 +echo "$as_me:30879: 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 @@ -30890,14 +30895,14 @@ fi fi if test $cf_cv_have_utmp != no ; then -echo "$as_me:30893: checking if ${cf_cv_have_utmp}.ut_session is declared" >&5 +echo "$as_me:30898: 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 30900 "configure" +#line 30905 "configure" #include "confdefs.h" #include <sys/types.h> @@ -30911,16 +30916,16 @@ struct $cf_cv_have_utmp x; long y = x.ut_session } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:30914: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:30919: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:30917: \$? = $ac_status" >&5 + echo "$as_me:30922: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:30920: \"$ac_try\"") >&5 + { (eval echo "$as_me:30925: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:30923: \$? = $ac_status" >&5 + echo "$as_me:30928: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_have_utmp_ut_session=yes else @@ -30931,7 +30936,7 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:30934: result: $cf_cv_have_utmp_ut_session" >&5 +echo "$as_me:30939: 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 @@ -30942,7 +30947,7 @@ EOF fi fi -echo "$as_me:30945: checking if $cf_cv_have_utmp is SYSV flavor" >&5 +echo "$as_me:30950: 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 @@ -30950,7 +30955,7 @@ else test "$cf_cv_have_utmp" = "utmp" && cf_prefix="ut" || cf_prefix="utx" cat >conftest.$ac_ext <<_ACEOF -#line 30953 "configure" +#line 30958 "configure" #include "confdefs.h" #include <sys/types.h> @@ -30969,16 +30974,16 @@ struct $cf_cv_have_utmp x; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:30972: \"$ac_link\"") >&5 +if { (eval echo "$as_me:30977: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:30975: \$? = $ac_status" >&5 + echo "$as_me:30980: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:30978: \"$ac_try\"") >&5 + { (eval echo "$as_me:30983: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:30981: \$? = $ac_status" >&5 + echo "$as_me:30986: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_sysv_utmp=yes else @@ -30989,7 +30994,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:30992: result: $cf_cv_sysv_utmp" >&5 +echo "$as_me:30997: result: $cf_cv_sysv_utmp" >&5 echo "${ECHO_T}$cf_cv_sysv_utmp" >&6 test $cf_cv_sysv_utmp = yes && cat >>confdefs.h <<\EOF @@ -30998,14 +31003,14 @@ EOF fi -echo "$as_me:31001: checking if external h_errno exists" >&5 +echo "$as_me:31006: 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 31008 "configure" +#line 31013 "configure" #include "confdefs.h" #undef h_errno @@ -31020,16 +31025,16 @@ h_errno = 2 } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:31023: \"$ac_link\"") >&5 +if { (eval echo "$as_me:31028: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:31026: \$? = $ac_status" >&5 + echo "$as_me:31031: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:31029: \"$ac_try\"") >&5 + { (eval echo "$as_me:31034: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:31032: \$? = $ac_status" >&5 + echo "$as_me:31037: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_have_h_errno=yes else @@ -31040,7 +31045,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:31043: result: $cf_cv_have_h_errno" >&5 +echo "$as_me:31048: 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 @@ -31053,7 +31058,7 @@ EOF fi -echo "$as_me:31056: checking if bibp: URLs should be supported" >&5 +echo "$as_me:31061: 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. @@ -31070,14 +31075,14 @@ else use_bibp_urls=yes fi; -echo "$as_me:31073: result: $use_bibp_urls" >&5 +echo "$as_me:31078: 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:31080: checking if configuration info should be browsable" >&5 +echo "$as_me:31085: 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. @@ -31094,14 +31099,14 @@ else use_config_info=yes fi; -echo "$as_me:31097: result: $use_config_info" >&5 +echo "$as_me:31102: 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:31104: checking if new-style forms-based options screen should be used" >&5 +echo "$as_me:31109: 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. @@ -31118,14 +31123,14 @@ else use_forms_options=yes fi; -echo "$as_me:31121: result: $use_forms_options" >&5 +echo "$as_me:31126: 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:31128: checking if old-style options menu should be used" >&5 +echo "$as_me:31133: 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. @@ -31142,14 +31147,14 @@ else use_menu_options=yes fi; -echo "$as_me:31145: result: $use_menu_options" >&5 +echo "$as_me:31150: 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:31152: checking if sessions code should be used" >&5 +echo "$as_me:31157: 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. @@ -31166,7 +31171,7 @@ else use_sessions=yes fi; -echo "$as_me:31169: result: $use_sessions" >&5 +echo "$as_me:31174: result: $use_sessions" >&5 echo "${ECHO_T}$use_sessions" >&6 if test $use_sessions != no ; then @@ -31177,7 +31182,7 @@ EOF EXTRA_OBJS="$EXTRA_OBJS LYSession\$o" fi -echo "$as_me:31180: checking if session-caching code should be used" >&5 +echo "$as_me:31185: 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. @@ -31194,7 +31199,7 @@ else use_session_cache=yes fi; -echo "$as_me:31197: result: $use_session_cache" >&5 +echo "$as_me:31202: result: $use_session_cache" >&5 echo "${ECHO_T}$use_session_cache" >&6 if test $use_session_cache != no ; then @@ -31204,7 +31209,7 @@ EOF fi -echo "$as_me:31207: checking if address-list page should be used" >&5 +echo "$as_me:31212: 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. @@ -31221,14 +31226,14 @@ else use_addrlist_page=yes fi; -echo "$as_me:31224: result: $use_addrlist_page" >&5 +echo "$as_me:31229: 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:31231: checking if experimental CJK logic should be used" >&5 +echo "$as_me:31236: 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. @@ -31245,14 +31250,14 @@ else use_cjk=no fi; -echo "$as_me:31248: result: $use_cjk" >&5 +echo "$as_me:31253: 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:31255: checking if experimental Japanese UTF-8 logic should be used" >&5 +echo "$as_me:31260: 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. @@ -31269,7 +31274,7 @@ else use_ja_utf8=no fi; -echo "$as_me:31272: result: $use_ja_utf8" >&5 +echo "$as_me:31277: result: $use_ja_utf8" >&5 echo "${ECHO_T}$use_ja_utf8" >&6 if test $use_ja_utf8 != no ; then @@ -31315,7 +31320,7 @@ if test -n "$cf_searchpath/include" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 31318 "configure" +#line 31323 "configure" #include "confdefs.h" #include <stdio.h> int @@ -31327,16 +31332,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:31330: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:31335: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:31333: \$? = $ac_status" >&5 + echo "$as_me:31338: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:31336: \"$ac_try\"") >&5 + { (eval echo "$as_me:31341: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:31339: \$? = $ac_status" >&5 + echo "$as_me:31344: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -31353,7 +31358,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}:31356: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:31361: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -31394,7 +31399,7 @@ if test -n "$cf_searchpath/../include" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 31397 "configure" +#line 31402 "configure" #include "confdefs.h" #include <stdio.h> int @@ -31406,16 +31411,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:31409: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:31414: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:31412: \$? = $ac_status" >&5 + echo "$as_me:31417: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:31415: \"$ac_try\"") >&5 + { (eval echo "$as_me:31420: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:31418: \$? = $ac_status" >&5 + echo "$as_me:31423: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -31432,7 +31437,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}:31435: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:31440: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -31448,7 +31453,7 @@ echo "${as_me:-configure}:31435: testing adding $cf_add_incdir to include-path . fi else -{ { echo "$as_me:31451: error: cannot find libiconv under $withval" >&5 +{ { echo "$as_me:31456: error: cannot find libiconv under $withval" >&5 echo "$as_me: error: cannot find libiconv under $withval" >&2;} { (exit 1); exit 1; }; } fi @@ -31473,7 +31478,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}:31476: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:31481: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -31502,7 +31507,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}:31505: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:31510: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -31511,7 +31516,7 @@ echo "${as_me:-configure}:31505: testing adding $cf_add_libdir to library-path . fi else -{ { echo "$as_me:31514: error: cannot find libiconv under $withval" >&5 +{ { echo "$as_me:31519: error: cannot find libiconv under $withval" >&5 echo "$as_me: error: cannot find libiconv under $withval" >&2;} { (exit 1); exit 1; }; } fi @@ -31522,7 +31527,7 @@ done fi; - echo "$as_me:31525: checking for iconv" >&5 + echo "$as_me:31530: 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 @@ -31533,12 +31538,12 @@ else cf_cv_header_path_iconv= cf_cv_library_path_iconv= -echo "${as_me:-configure}:31536: testing Starting FIND_LINKAGE(iconv,) ..." 1>&5 +echo "${as_me:-configure}:31541: testing Starting FIND_LINKAGE(iconv,) ..." 1>&5 cf_save_LIBS="$LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 31541 "configure" +#line 31546 "configure" #include "confdefs.h" #include <stdlib.h> @@ -31557,16 +31562,16 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:31560: \"$ac_link\"") >&5 +if { (eval echo "$as_me:31565: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:31563: \$? = $ac_status" >&5 + echo "$as_me:31568: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:31566: \"$ac_try\"") >&5 + { (eval echo "$as_me:31571: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:31569: \$? = $ac_status" >&5 + echo "$as_me:31574: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_find_linkage_iconv=yes @@ -31580,7 +31585,7 @@ cat conftest.$ac_ext >&5 LIBS="-liconv $cf_save_LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 31583 "configure" +#line 31588 "configure" #include "confdefs.h" #include <stdlib.h> @@ -31599,16 +31604,16 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:31602: \"$ac_link\"") >&5 +if { (eval echo "$as_me:31607: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:31605: \$? = $ac_status" >&5 + echo "$as_me:31610: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:31608: \"$ac_try\"") >&5 + { (eval echo "$as_me:31613: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:31611: \$? = $ac_status" >&5 + echo "$as_me:31616: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_find_linkage_iconv=yes @@ -31625,9 +31630,9 @@ cat conftest.$ac_ext >&5 test -n "$verbose" && echo " find linkage for iconv library" 1>&6 -echo "${as_me:-configure}:31628: testing find linkage for iconv library ..." 1>&5 +echo "${as_me:-configure}:31633: testing find linkage for iconv library ..." 1>&5 -echo "${as_me:-configure}:31630: testing Searching for headers in FIND_LINKAGE(iconv,) ..." 1>&5 +echo "${as_me:-configure}:31635: testing Searching for headers in FIND_LINKAGE(iconv,) ..." 1>&5 cf_save_CPPFLAGS="$CPPFLAGS" cf_test_CPPFLAGS="$CPPFLAGS" @@ -31740,11 +31745,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}:31743: testing ... testing $cf_cv_header_path_iconv ..." 1>&5 +echo "${as_me:-configure}:31748: 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 31747 "configure" +#line 31752 "configure" #include "confdefs.h" #include <stdlib.h> @@ -31763,21 +31768,21 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:31766: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:31771: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:31769: \$? = $ac_status" >&5 + echo "$as_me:31774: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:31772: \"$ac_try\"") >&5 + { (eval echo "$as_me:31777: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:31775: \$? = $ac_status" >&5 + echo "$as_me:31780: \$? = $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}:31780: testing ... found iconv headers in $cf_cv_header_path_iconv ..." 1>&5 +echo "${as_me:-configure}:31785: testing ... found iconv headers in $cf_cv_header_path_iconv ..." 1>&5 cf_cv_find_linkage_iconv=maybe cf_test_CPPFLAGS="$CPPFLAGS" @@ -31795,7 +31800,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "$cf_cv_find_linkage_iconv" = maybe ; then -echo "${as_me:-configure}:31798: testing Searching for iconv library in FIND_LINKAGE(iconv,) ..." 1>&5 +echo "${as_me:-configure}:31803: testing Searching for iconv library in FIND_LINKAGE(iconv,) ..." 1>&5 cf_save_LIBS="$LIBS" cf_save_LDFLAGS="$LDFLAGS" @@ -31892,13 +31897,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}:31895: testing ... testing $cf_cv_library_path_iconv ..." 1>&5 +echo "${as_me:-configure}:31900: 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 31901 "configure" +#line 31906 "configure" #include "confdefs.h" #include <stdlib.h> @@ -31917,21 +31922,21 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:31920: \"$ac_link\"") >&5 +if { (eval echo "$as_me:31925: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:31923: \$? = $ac_status" >&5 + echo "$as_me:31928: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:31926: \"$ac_try\"") >&5 + { (eval echo "$as_me:31931: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:31929: \$? = $ac_status" >&5 + echo "$as_me:31934: \$? = $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}:31934: testing ... found iconv library in $cf_cv_library_path_iconv ..." 1>&5 +echo "${as_me:-configure}:31939: testing ... found iconv library in $cf_cv_library_path_iconv ..." 1>&5 cf_cv_find_linkage_iconv=yes cf_cv_library_file_iconv="-liconv" @@ -31971,7 +31976,7 @@ am_cv_func_iconv="no, consider installing GNU libiconv" fi fi -echo "$as_me:31974: result: $am_cv_func_iconv" >&5 +echo "$as_me:31979: result: $am_cv_func_iconv" >&5 echo "${ECHO_T}$am_cv_func_iconv" >&6 if test "$am_cv_func_iconv" = yes; then @@ -31980,14 +31985,14 @@ cat >>confdefs.h <<\EOF #define HAVE_ICONV 1 EOF - echo "$as_me:31983: checking if the declaration of iconv() needs const." >&5 + echo "$as_me:31988: 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 31990 "configure" +#line 31995 "configure" #include "confdefs.h" #include <stdlib.h> @@ -32012,16 +32017,16 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:32015: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:32020: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:32018: \$? = $ac_status" >&5 + echo "$as_me:32023: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:32021: \"$ac_try\"") >&5 + { (eval echo "$as_me:32026: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:32024: \$? = $ac_status" >&5 + echo "$as_me:32029: \$? = $ac_status" >&5 (exit $ac_status); }; }; then am_cv_proto_iconv_const=no else @@ -32031,7 +32036,7 @@ am_cv_proto_iconv_const=yes fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:32034: result: $am_cv_proto_iconv_const" >&5 +echo "$as_me:32039: 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 @@ -32073,7 +32078,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 32076 "configure" +#line 32081 "configure" #include "confdefs.h" #include <stdio.h> int @@ -32085,16 +32090,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:32088: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:32093: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:32091: \$? = $ac_status" >&5 + echo "$as_me:32096: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:32094: \"$ac_try\"") >&5 + { (eval echo "$as_me:32099: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:32097: \$? = $ac_status" >&5 + echo "$as_me:32102: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -32111,7 +32116,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}:32114: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:32119: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -32148,7 +32153,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}:32151: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:32156: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -32172,7 +32177,7 @@ curses|slang|ncurses*) esac if test "$use_dft_colors" != no ; then -echo "$as_me:32175: checking if you want to use default-colors" >&5 +echo "$as_me:32180: 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. @@ -32189,7 +32194,7 @@ else use_dft_colors=no fi; -echo "$as_me:32192: result: $use_dft_colors" >&5 +echo "$as_me:32197: result: $use_dft_colors" >&5 echo "${ECHO_T}$use_dft_colors" >&6 test $use_dft_colors = "yes" && cat >>confdefs.h <<\EOF @@ -32198,7 +32203,7 @@ EOF fi -echo "$as_me:32201: checking if experimental keyboard-layout logic should be used" >&5 +echo "$as_me:32206: 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. @@ -32215,14 +32220,14 @@ else use_kbd_layout=no fi; -echo "$as_me:32218: result: $use_kbd_layout" >&5 +echo "$as_me:32223: 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:32225: checking if experimental nested-table logic should be used" >&5 +echo "$as_me:32230: 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. @@ -32239,14 +32244,14 @@ else use_nested_tables=no fi; -echo "$as_me:32242: result: $use_nested_tables" >&5 +echo "$as_me:32247: 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:32249: checking if alternative line-edit bindings should be used" >&5 +echo "$as_me:32254: 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. @@ -32263,14 +32268,14 @@ else use_alt_bindings=yes fi; -echo "$as_me:32266: result: $use_alt_bindings" >&5 +echo "$as_me:32271: 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:32273: checking if ascii case-conversion should be used" >&5 +echo "$as_me:32278: 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. @@ -32287,14 +32292,14 @@ else use_ascii_ctypes=yes fi; -echo "$as_me:32290: result: $use_ascii_ctypes" >&5 +echo "$as_me:32295: 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:32297: checking if you want to use extended HTML DTD logic" >&5 +echo "$as_me:32302: 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. @@ -32311,14 +32316,14 @@ else use_ext_htmldtd=yes fi; -echo "$as_me:32314: result: $use_ext_htmldtd" >&5 +echo "$as_me:32319: 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:32321: checking if file-upload logic should be used" >&5 +echo "$as_me:32326: 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. @@ -32335,14 +32340,14 @@ else use_file_upload=yes fi; -echo "$as_me:32338: result: $use_file_upload" >&5 +echo "$as_me:32343: 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:32345: checking if IDNA support should be used" >&5 +echo "$as_me:32350: 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. @@ -32359,7 +32364,7 @@ else use_idna=yes fi; -echo "$as_me:32362: result: $use_idna" >&5 +echo "$as_me:32367: result: $use_idna" >&5 echo "${ECHO_T}$use_idna" >&6 if test "$use_idna" = yes ; then @@ -32398,7 +32403,7 @@ if test -n "$cf_searchpath/include" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 32401 "configure" +#line 32406 "configure" #include "confdefs.h" #include <stdio.h> int @@ -32410,16 +32415,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:32413: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:32418: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:32416: \$? = $ac_status" >&5 + echo "$as_me:32421: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:32419: \"$ac_try\"") >&5 + { (eval echo "$as_me:32424: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:32422: \$? = $ac_status" >&5 + echo "$as_me:32427: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -32436,7 +32441,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}:32439: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:32444: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -32477,7 +32482,7 @@ if test -n "$cf_searchpath/../include" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 32480 "configure" +#line 32485 "configure" #include "confdefs.h" #include <stdio.h> int @@ -32489,16 +32494,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:32492: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:32497: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:32495: \$? = $ac_status" >&5 + echo "$as_me:32500: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:32498: \"$ac_try\"") >&5 + { (eval echo "$as_me:32503: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:32501: \$? = $ac_status" >&5 + echo "$as_me:32506: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -32515,7 +32520,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}:32518: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:32523: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -32531,7 +32536,7 @@ echo "${as_me:-configure}:32518: testing adding $cf_add_incdir to include-path . fi else -{ { echo "$as_me:32534: error: cannot find under $use_idna" >&5 +{ { echo "$as_me:32539: error: cannot find under $use_idna" >&5 echo "$as_me: error: cannot find under $use_idna" >&2;} { (exit 1); exit 1; }; } fi @@ -32556,7 +32561,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}:32559: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:32564: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -32585,7 +32590,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}:32588: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:32593: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -32594,7 +32599,7 @@ echo "${as_me:-configure}:32588: testing adding $cf_add_libdir to library-path . fi else -{ { echo "$as_me:32597: error: cannot find under $use_idna" >&5 +{ { echo "$as_me:32602: error: cannot find under $use_idna" >&5 echo "$as_me: error: cannot find under $use_idna" >&2;} { (exit 1); exit 1; }; } fi @@ -32608,12 +32613,12 @@ done cf_cv_header_path_idn= cf_cv_library_path_idn= -echo "${as_me:-configure}:32611: testing Starting FIND_LINKAGE(idn,) ..." 1>&5 +echo "${as_me:-configure}:32616: testing Starting FIND_LINKAGE(idn,) ..." 1>&5 cf_save_LIBS="$LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 32616 "configure" +#line 32621 "configure" #include "confdefs.h" #include <stdio.h> @@ -32631,16 +32636,16 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:32634: \"$ac_link\"") >&5 +if { (eval echo "$as_me:32639: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:32637: \$? = $ac_status" >&5 + echo "$as_me:32642: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:32640: \"$ac_try\"") >&5 + { (eval echo "$as_me:32645: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:32643: \$? = $ac_status" >&5 + echo "$as_me:32648: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_find_linkage_idn=yes @@ -32654,7 +32659,7 @@ cat conftest.$ac_ext >&5 LIBS="-lidn $LIBICONV $cf_save_LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 32657 "configure" +#line 32662 "configure" #include "confdefs.h" #include <stdio.h> @@ -32672,16 +32677,16 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:32675: \"$ac_link\"") >&5 +if { (eval echo "$as_me:32680: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:32678: \$? = $ac_status" >&5 + echo "$as_me:32683: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:32681: \"$ac_try\"") >&5 + { (eval echo "$as_me:32686: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:32684: \$? = $ac_status" >&5 + echo "$as_me:32689: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_find_linkage_idn=yes @@ -32698,9 +32703,9 @@ cat conftest.$ac_ext >&5 test -n "$verbose" && echo " find linkage for idn library" 1>&6 -echo "${as_me:-configure}:32701: testing find linkage for idn library ..." 1>&5 +echo "${as_me:-configure}:32706: testing find linkage for idn library ..." 1>&5 -echo "${as_me:-configure}:32703: testing Searching for headers in FIND_LINKAGE(idn,) ..." 1>&5 +echo "${as_me:-configure}:32708: testing Searching for headers in FIND_LINKAGE(idn,) ..." 1>&5 cf_save_CPPFLAGS="$CPPFLAGS" cf_test_CPPFLAGS="$CPPFLAGS" @@ -32813,11 +32818,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}:32816: testing ... testing $cf_cv_header_path_idn ..." 1>&5 +echo "${as_me:-configure}:32821: 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 32820 "configure" +#line 32825 "configure" #include "confdefs.h" #include <stdio.h> @@ -32835,21 +32840,21 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:32838: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:32843: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:32841: \$? = $ac_status" >&5 + echo "$as_me:32846: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:32844: \"$ac_try\"") >&5 + { (eval echo "$as_me:32849: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:32847: \$? = $ac_status" >&5 + echo "$as_me:32852: \$? = $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}:32852: testing ... found idn headers in $cf_cv_header_path_idn ..." 1>&5 +echo "${as_me:-configure}:32857: testing ... found idn headers in $cf_cv_header_path_idn ..." 1>&5 cf_cv_find_linkage_idn=maybe cf_test_CPPFLAGS="$CPPFLAGS" @@ -32867,7 +32872,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "$cf_cv_find_linkage_idn" = maybe ; then -echo "${as_me:-configure}:32870: testing Searching for idn library in FIND_LINKAGE(idn,) ..." 1>&5 +echo "${as_me:-configure}:32875: testing Searching for idn library in FIND_LINKAGE(idn,) ..." 1>&5 cf_save_LIBS="$LIBS" cf_save_LDFLAGS="$LDFLAGS" @@ -32964,13 +32969,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}:32967: testing ... testing $cf_cv_library_path_idn ..." 1>&5 +echo "${as_me:-configure}:32972: 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 32973 "configure" +#line 32978 "configure" #include "confdefs.h" #include <stdio.h> @@ -32988,21 +32993,21 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:32991: \"$ac_link\"") >&5 +if { (eval echo "$as_me:32996: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:32994: \$? = $ac_status" >&5 + echo "$as_me:32999: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:32997: \"$ac_try\"") >&5 + { (eval echo "$as_me:33002: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:33000: \$? = $ac_status" >&5 + echo "$as_me:33005: \$? = $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}:33005: testing ... found idn library in $cf_cv_library_path_idn ..." 1>&5 +echo "${as_me:-configure}:33010: testing ... found idn library in $cf_cv_library_path_idn ..." 1>&5 cf_cv_find_linkage_idn=yes cf_cv_library_file_idn="-lidn" @@ -33061,7 +33066,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 33064 "configure" +#line 33069 "configure" #include "confdefs.h" #include <stdio.h> int @@ -33073,16 +33078,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:33076: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:33081: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:33079: \$? = $ac_status" >&5 + echo "$as_me:33084: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:33082: \"$ac_try\"") >&5 + { (eval echo "$as_me:33087: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:33085: \$? = $ac_status" >&5 + echo "$as_me:33090: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -33099,7 +33104,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}:33102: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:33107: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -33133,7 +33138,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}:33136: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:33141: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -33144,7 +33149,7 @@ fi LIBS="-lidn $LIBS" else -{ echo "$as_me:33147: WARNING: Cannot find idn library" >&5 +{ echo "$as_me:33152: WARNING: Cannot find idn library" >&5 echo "$as_me: WARNING: Cannot find idn library" >&2;} fi @@ -33158,7 +33163,7 @@ fi fi -echo "$as_me:33161: checking if element-justification logic should be used" >&5 +echo "$as_me:33166: 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. @@ -33175,14 +33180,14 @@ else use_justify_elts=yes fi; -echo "$as_me:33178: result: $use_justify_elts" >&5 +echo "$as_me:33183: 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:33185: checking if partial-display should be used" >&5 +echo "$as_me:33190: 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. @@ -33199,14 +33204,14 @@ else use_partial_display=yes fi; -echo "$as_me:33202: result: $use_partial_display" >&5 +echo "$as_me:33207: 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:33209: checking if persistent-cookie logic should be used" >&5 +echo "$as_me:33214: 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. @@ -33223,14 +33228,14 @@ else use_filed_cookies=yes fi; -echo "$as_me:33226: result: $use_filed_cookies" >&5 +echo "$as_me:33231: 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:33233: checking if html source should be colorized" >&5 +echo "$as_me:33238: 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. @@ -33247,14 +33252,14 @@ else use_prettysrc=yes fi; -echo "$as_me:33250: result: $use_prettysrc" >&5 +echo "$as_me:33255: 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:33257: checking if progress-bar code should be used" >&5 +echo "$as_me:33262: 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. @@ -33271,14 +33276,14 @@ else use_progressbar=yes fi; -echo "$as_me:33274: result: $use_progressbar" >&5 +echo "$as_me:33279: 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:33281: checking if read-progress message should show ETA" >&5 +echo "$as_me:33286: 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. @@ -33295,14 +33300,14 @@ else use_read_eta=yes fi; -echo "$as_me:33298: result: $use_read_eta" >&5 +echo "$as_me:33303: 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:33305: checking if source caching should be used" >&5 +echo "$as_me:33310: 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. @@ -33319,14 +33324,14 @@ else use_source_cache=yes fi; -echo "$as_me:33322: result: $use_source_cache" >&5 +echo "$as_me:33327: 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:33329: checking if scrollbar code should be used" >&5 +echo "$as_me:33334: 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. @@ -33343,10 +33348,10 @@ else use_scrollbar=yes fi; -echo "$as_me:33346: result: $use_scrollbar" >&5 +echo "$as_me:33351: result: $use_scrollbar" >&5 echo "${ECHO_T}$use_scrollbar" >&6 -echo "$as_me:33349: checking if charset-selection logic should be used" >&5 +echo "$as_me:33354: 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. @@ -33363,14 +33368,14 @@ else use_charset_choice=no fi; -echo "$as_me:33366: result: $use_charset_choice" >&5 +echo "$as_me:33371: 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:33373: checking if you want to use external commands" >&5 +echo "$as_me:33378: 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. @@ -33387,7 +33392,7 @@ else use_externs=no fi; -echo "$as_me:33390: result: $use_externs" >&5 +echo "$as_me:33395: result: $use_externs" >&5 echo "${ECHO_T}$use_externs" >&6 if test $use_externs != "no" ; then @@ -33398,7 +33403,7 @@ EOF EXTRA_OBJS="$EXTRA_OBJS LYExtern\$o" fi -echo "$as_me:33401: checking if you want to use setfont support" >&5 +echo "$as_me:33406: 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. @@ -33415,7 +33420,7 @@ else use_setfont=no fi; -echo "$as_me:33418: result: $use_setfont" >&5 +echo "$as_me:33423: result: $use_setfont" >&5 echo "${ECHO_T}$use_setfont" >&6 if test $use_setfont = yes ; then case $host_os in @@ -33426,7 +33431,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:33429: checking for $ac_word" >&5 +echo "$as_me:33434: 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 @@ -33443,7 +33448,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:33446: found $ac_dir/$ac_word" >&5 + echo "$as_me:33451: found $ac_dir/$ac_word" >&5 break fi done @@ -33454,10 +33459,10 @@ fi SETFONT=$ac_cv_path_SETFONT if test -n "$SETFONT"; then - echo "$as_me:33457: result: $SETFONT" >&5 + echo "$as_me:33462: result: $SETFONT" >&5 echo "${ECHO_T}$SETFONT" >&6 else - echo "$as_me:33460: result: no" >&5 + echo "$as_me:33465: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -33516,7 +33521,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me:-configure}:33519: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me:-configure}:33524: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define SETFONT_PATH "$cf_path_prog" @@ -33534,19 +33539,19 @@ fi SETFONT=built-in test -n "$verbose" && echo " Assume $host_os has font-switching" 1>&6 -echo "${as_me:-configure}:33537: testing Assume $host_os has font-switching ..." 1>&5 +echo "${as_me:-configure}:33542: 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}:33544: testing Assume $host_os has no font-switching ..." 1>&5 +echo "${as_me:-configure}:33549: testing Assume $host_os has no font-switching ..." 1>&5 ;; esac if test -z "$SETFONT" ; then - { echo "$as_me:33549: WARNING: Cannot find a font-setting program" >&5 + { echo "$as_me:33554: WARNING: Cannot find a font-setting program" >&5 echo "$as_me: WARNING: Cannot find a font-setting program" >&2;} elif test "$SETFONT" != unknown ; then @@ -33557,7 +33562,7 @@ EOF fi fi -echo "$as_me:33560: checking if you want cgi-link support" >&5 +echo "$as_me:33565: 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. @@ -33574,10 +33579,10 @@ EOF else enableval=no fi; -echo "$as_me:33577: result: $enableval" >&5 +echo "$as_me:33582: result: $enableval" >&5 echo "${ECHO_T}$enableval" >&6 -echo "$as_me:33580: checking if you want change-exec support" >&5 +echo "$as_me:33585: 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. @@ -33594,14 +33599,14 @@ else use_change_exec=no fi; -echo "$as_me:33597: result: $use_change_exec" >&5 +echo "$as_me:33602: 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:33604: checking if you want exec-links support" >&5 +echo "$as_me:33609: 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. @@ -33618,14 +33623,14 @@ else use_exec_links=$enableval fi; -echo "$as_me:33621: result: $use_exec_links" >&5 +echo "$as_me:33626: 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:33628: checking if you want exec-scripts support" >&5 +echo "$as_me:33633: 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. @@ -33642,14 +33647,14 @@ else use_exec_scripts=$enableval fi; -echo "$as_me:33645: result: $use_exec_scripts" >&5 +echo "$as_me:33650: 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:33652: checking if you want internal-links feature" >&5 +echo "$as_me:33657: 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. @@ -33666,14 +33671,14 @@ else use_internal_links=no fi; -echo "$as_me:33669: result: $use_internal_links" >&5 +echo "$as_me:33674: result: $use_internal_links" >&5 echo "${ECHO_T}$use_internal_links" >&6 test $use_internal_links = yes && cat >>confdefs.h <<\EOF #define TRACK_INTERNAL_LINKS 1 EOF -echo "$as_me:33676: checking if you want to fork NSL requests" >&5 +echo "$as_me:33681: 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. @@ -33690,7 +33695,7 @@ else use_nsl_fork=no fi; -echo "$as_me:33693: result: $use_nsl_fork" >&5 +echo "$as_me:33698: result: $use_nsl_fork" >&5 echo "${ECHO_T}$use_nsl_fork" >&6 if test $use_nsl_fork = yes ; then case $host_os in @@ -33711,7 +33716,7 @@ EOF esac fi -echo "$as_me:33714: checking if you want to log URL requests via syslog" >&5 +echo "$as_me:33719: 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. @@ -33728,14 +33733,14 @@ else use_syslog=no fi; -echo "$as_me:33731: result: $use_syslog" >&5 +echo "$as_me:33736: 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:33738: checking if you want to underline links" >&5 +echo "$as_me:33743: 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. @@ -33752,7 +33757,7 @@ else use_underline=no fi; -echo "$as_me:33755: result: $use_underline" >&5 +echo "$as_me:33760: result: $use_underline" >&5 echo "${ECHO_T}$use_underline" >&6 test $use_underline = yes && cat >>confdefs.h <<\EOF @@ -33764,7 +33769,7 @@ cat >>confdefs.h <<\EOF #define UNDERLINE_LINKS 0 EOF -echo "$as_me:33767: checking if help files should be gzip'ed" >&5 +echo "$as_me:33772: 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. @@ -33781,10 +33786,10 @@ else use_gzip_help=no fi; -echo "$as_me:33784: result: $use_gzip_help" >&5 +echo "$as_me:33789: result: $use_gzip_help" >&5 echo "${ECHO_T}$use_gzip_help" >&6 -echo "$as_me:33787: checking if you want to use libbz2 for decompression of some bzip2 files" >&5 +echo "$as_me:33792: 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. @@ -33794,7 +33799,7 @@ if test "${with_bzlib+set}" = set; then else use_bzlib=no fi; -echo "$as_me:33797: result: $use_bzlib" >&5 +echo "$as_me:33802: result: $use_bzlib" >&5 echo "${ECHO_T}$use_bzlib" >&6 if test ".$use_bzlib" != ".no" ; then @@ -33833,7 +33838,7 @@ if test -n "$cf_searchpath/include" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 33836 "configure" +#line 33841 "configure" #include "confdefs.h" #include <stdio.h> int @@ -33845,16 +33850,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:33848: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:33853: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:33851: \$? = $ac_status" >&5 + echo "$as_me:33856: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:33854: \"$ac_try\"") >&5 + { (eval echo "$as_me:33859: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:33857: \$? = $ac_status" >&5 + echo "$as_me:33862: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -33871,7 +33876,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}:33874: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:33879: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -33912,7 +33917,7 @@ if test -n "$cf_searchpath/../include" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 33915 "configure" +#line 33920 "configure" #include "confdefs.h" #include <stdio.h> int @@ -33924,16 +33929,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:33927: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:33932: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:33930: \$? = $ac_status" >&5 + echo "$as_me:33935: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:33933: \"$ac_try\"") >&5 + { (eval echo "$as_me:33938: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:33936: \$? = $ac_status" >&5 + echo "$as_me:33941: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -33950,7 +33955,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}:33953: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:33958: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -33966,7 +33971,7 @@ echo "${as_me:-configure}:33953: testing adding $cf_add_incdir to include-path . fi else -{ { echo "$as_me:33969: error: cannot find under $use_bzlib" >&5 +{ { echo "$as_me:33974: error: cannot find under $use_bzlib" >&5 echo "$as_me: error: cannot find under $use_bzlib" >&2;} { (exit 1); exit 1; }; } fi @@ -33991,7 +33996,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}:33994: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:33999: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -34020,7 +34025,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}:34023: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:34028: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -34029,7 +34034,7 @@ echo "${as_me:-configure}:34023: testing adding $cf_add_libdir to library-path . fi else -{ { echo "$as_me:34032: error: cannot find under $use_bzlib" >&5 +{ { echo "$as_me:34037: error: cannot find under $use_bzlib" >&5 echo "$as_me: error: cannot find under $use_bzlib" >&2;} { (exit 1); exit 1; }; } fi @@ -34043,12 +34048,12 @@ done cf_cv_header_path_bz2= cf_cv_library_path_bz2= -echo "${as_me:-configure}:34046: testing Starting FIND_LINKAGE(bz2,bzlib) ..." 1>&5 +echo "${as_me:-configure}:34051: testing Starting FIND_LINKAGE(bz2,bzlib) ..." 1>&5 cf_save_LIBS="$LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 34051 "configure" +#line 34056 "configure" #include "confdefs.h" #include <stdio.h> @@ -34065,16 +34070,16 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:34068: \"$ac_link\"") >&5 +if { (eval echo "$as_me:34073: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:34071: \$? = $ac_status" >&5 + echo "$as_me:34076: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:34074: \"$ac_try\"") >&5 + { (eval echo "$as_me:34079: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:34077: \$? = $ac_status" >&5 + echo "$as_me:34082: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_find_linkage_bz2=yes @@ -34088,7 +34093,7 @@ cat conftest.$ac_ext >&5 LIBS="-lbz2 $cf_save_LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 34091 "configure" +#line 34096 "configure" #include "confdefs.h" #include <stdio.h> @@ -34105,16 +34110,16 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:34108: \"$ac_link\"") >&5 +if { (eval echo "$as_me:34113: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:34111: \$? = $ac_status" >&5 + echo "$as_me:34116: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:34114: \"$ac_try\"") >&5 + { (eval echo "$as_me:34119: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:34117: \$? = $ac_status" >&5 + echo "$as_me:34122: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_find_linkage_bz2=yes @@ -34131,9 +34136,9 @@ cat conftest.$ac_ext >&5 test -n "$verbose" && echo " find linkage for bz2 library" 1>&6 -echo "${as_me:-configure}:34134: testing find linkage for bz2 library ..." 1>&5 +echo "${as_me:-configure}:34139: testing find linkage for bz2 library ..." 1>&5 -echo "${as_me:-configure}:34136: testing Searching for headers in FIND_LINKAGE(bz2,bzlib) ..." 1>&5 +echo "${as_me:-configure}:34141: testing Searching for headers in FIND_LINKAGE(bz2,bzlib) ..." 1>&5 cf_save_CPPFLAGS="$CPPFLAGS" cf_test_CPPFLAGS="$CPPFLAGS" @@ -34246,11 +34251,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}:34249: testing ... testing $cf_cv_header_path_bz2 ..." 1>&5 +echo "${as_me:-configure}:34254: 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 34253 "configure" +#line 34258 "configure" #include "confdefs.h" #include <stdio.h> @@ -34267,21 +34272,21 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:34270: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:34275: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:34273: \$? = $ac_status" >&5 + echo "$as_me:34278: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:34276: \"$ac_try\"") >&5 + { (eval echo "$as_me:34281: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:34279: \$? = $ac_status" >&5 + echo "$as_me:34284: \$? = $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}:34284: testing ... found bz2 headers in $cf_cv_header_path_bz2 ..." 1>&5 +echo "${as_me:-configure}:34289: testing ... found bz2 headers in $cf_cv_header_path_bz2 ..." 1>&5 cf_cv_find_linkage_bz2=maybe cf_test_CPPFLAGS="$CPPFLAGS" @@ -34299,7 +34304,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "$cf_cv_find_linkage_bz2" = maybe ; then -echo "${as_me:-configure}:34302: testing Searching for bz2 library in FIND_LINKAGE(bz2,bzlib) ..." 1>&5 +echo "${as_me:-configure}:34307: testing Searching for bz2 library in FIND_LINKAGE(bz2,bzlib) ..." 1>&5 cf_save_LIBS="$LIBS" cf_save_LDFLAGS="$LDFLAGS" @@ -34307,7 +34312,7 @@ echo "${as_me:-configure}:34302: testing Searching for bz2 library in FIND_LINKA CPPFLAGS="$cf_test_CPPFLAGS" LIBS="-lbz2 $cf_save_LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 34310 "configure" +#line 34315 "configure" #include "confdefs.h" #include <stdio.h> @@ -34324,21 +34329,21 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:34327: \"$ac_link\"") >&5 +if { (eval echo "$as_me:34332: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:34330: \$? = $ac_status" >&5 + echo "$as_me:34335: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:34333: \"$ac_try\"") >&5 + { (eval echo "$as_me:34338: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:34336: \$? = $ac_status" >&5 + echo "$as_me:34341: \$? = $ac_status" >&5 (exit $ac_status); }; }; then test -n "$verbose" && echo " ... found bz2 library in system" 1>&6 -echo "${as_me:-configure}:34341: testing ... found bz2 library in system ..." 1>&5 +echo "${as_me:-configure}:34346: testing ... found bz2 library in system ..." 1>&5 cf_cv_find_linkage_bz2=yes else @@ -34441,13 +34446,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}:34444: testing ... testing $cf_cv_library_path_bz2 ..." 1>&5 +echo "${as_me:-configure}:34449: 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 34450 "configure" +#line 34455 "configure" #include "confdefs.h" #include <stdio.h> @@ -34464,21 +34469,21 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:34467: \"$ac_link\"") >&5 +if { (eval echo "$as_me:34472: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:34470: \$? = $ac_status" >&5 + echo "$as_me:34475: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:34473: \"$ac_try\"") >&5 + { (eval echo "$as_me:34478: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:34476: \$? = $ac_status" >&5 + echo "$as_me:34481: \$? = $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}:34481: testing ... found bz2 library in $cf_cv_library_path_bz2 ..." 1>&5 +echo "${as_me:-configure}:34486: testing ... found bz2 library in $cf_cv_library_path_bz2 ..." 1>&5 cf_cv_find_linkage_bz2=yes cf_cv_library_file_bz2="-lbz2" @@ -34537,7 +34542,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 34540 "configure" +#line 34545 "configure" #include "confdefs.h" #include <stdio.h> int @@ -34549,16 +34554,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:34552: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:34557: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:34555: \$? = $ac_status" >&5 + echo "$as_me:34560: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:34558: \"$ac_try\"") >&5 + { (eval echo "$as_me:34563: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:34561: \$? = $ac_status" >&5 + echo "$as_me:34566: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -34575,7 +34580,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}:34578: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:34583: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -34609,7 +34614,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}:34612: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:34617: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -34620,7 +34625,7 @@ fi LIBS="-lbz2 $LIBS" else -{ echo "$as_me:34623: WARNING: Cannot find bz2 library" >&5 +{ echo "$as_me:34628: WARNING: Cannot find bz2 library" >&5 echo "$as_me: WARNING: Cannot find bz2 library" >&2;} fi @@ -34631,7 +34636,7 @@ EOF fi -echo "$as_me:34634: checking if you want to use zlib for decompression of some gzip files" >&5 +echo "$as_me:34639: 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. @@ -34641,7 +34646,7 @@ if test "${with_zlib+set}" = set; then else use_zlib=no fi; -echo "$as_me:34644: result: $use_zlib" >&5 +echo "$as_me:34649: result: $use_zlib" >&5 echo "${ECHO_T}$use_zlib" >&6 if test ".$use_zlib" != ".no" ; then @@ -34680,7 +34685,7 @@ if test -n "$cf_searchpath/include" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 34683 "configure" +#line 34688 "configure" #include "confdefs.h" #include <stdio.h> int @@ -34692,16 +34697,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:34695: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:34700: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:34698: \$? = $ac_status" >&5 + echo "$as_me:34703: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:34701: \"$ac_try\"") >&5 + { (eval echo "$as_me:34706: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:34704: \$? = $ac_status" >&5 + echo "$as_me:34709: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -34718,7 +34723,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}:34721: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:34726: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -34759,7 +34764,7 @@ if test -n "$cf_searchpath/../include" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 34762 "configure" +#line 34767 "configure" #include "confdefs.h" #include <stdio.h> int @@ -34771,16 +34776,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:34774: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:34779: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:34777: \$? = $ac_status" >&5 + echo "$as_me:34782: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:34780: \"$ac_try\"") >&5 + { (eval echo "$as_me:34785: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:34783: \$? = $ac_status" >&5 + echo "$as_me:34788: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -34797,7 +34802,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}:34800: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:34805: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -34813,7 +34818,7 @@ echo "${as_me:-configure}:34800: testing adding $cf_add_incdir to include-path . fi else -{ { echo "$as_me:34816: error: cannot find under $use_zlib" >&5 +{ { echo "$as_me:34821: error: cannot find under $use_zlib" >&5 echo "$as_me: error: cannot find under $use_zlib" >&2;} { (exit 1); exit 1; }; } fi @@ -34838,7 +34843,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}:34841: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:34846: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -34867,7 +34872,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}:34870: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:34875: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -34876,7 +34881,7 @@ echo "${as_me:-configure}:34870: testing adding $cf_add_libdir to library-path . fi else -{ { echo "$as_me:34879: error: cannot find under $use_zlib" >&5 +{ { echo "$as_me:34884: error: cannot find under $use_zlib" >&5 echo "$as_me: error: cannot find under $use_zlib" >&2;} { (exit 1); exit 1; }; } fi @@ -34890,12 +34895,12 @@ done cf_cv_header_path_z= cf_cv_library_path_z= -echo "${as_me:-configure}:34893: testing Starting FIND_LINKAGE(z,zlib) ..." 1>&5 +echo "${as_me:-configure}:34898: testing Starting FIND_LINKAGE(z,zlib) ..." 1>&5 cf_save_LIBS="$LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 34898 "configure" +#line 34903 "configure" #include "confdefs.h" #include <zlib.h> @@ -34911,16 +34916,16 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:34914: \"$ac_link\"") >&5 +if { (eval echo "$as_me:34919: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:34917: \$? = $ac_status" >&5 + echo "$as_me:34922: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:34920: \"$ac_try\"") >&5 + { (eval echo "$as_me:34925: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:34923: \$? = $ac_status" >&5 + echo "$as_me:34928: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_find_linkage_z=yes @@ -34934,7 +34939,7 @@ cat conftest.$ac_ext >&5 LIBS="-lz $cf_save_LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 34937 "configure" +#line 34942 "configure" #include "confdefs.h" #include <zlib.h> @@ -34950,16 +34955,16 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:34953: \"$ac_link\"") >&5 +if { (eval echo "$as_me:34958: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:34956: \$? = $ac_status" >&5 + echo "$as_me:34961: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:34959: \"$ac_try\"") >&5 + { (eval echo "$as_me:34964: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:34962: \$? = $ac_status" >&5 + echo "$as_me:34967: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_find_linkage_z=yes @@ -34976,9 +34981,9 @@ cat conftest.$ac_ext >&5 test -n "$verbose" && echo " find linkage for z library" 1>&6 -echo "${as_me:-configure}:34979: testing find linkage for z library ..." 1>&5 +echo "${as_me:-configure}:34984: testing find linkage for z library ..." 1>&5 -echo "${as_me:-configure}:34981: testing Searching for headers in FIND_LINKAGE(z,zlib) ..." 1>&5 +echo "${as_me:-configure}:34986: testing Searching for headers in FIND_LINKAGE(z,zlib) ..." 1>&5 cf_save_CPPFLAGS="$CPPFLAGS" cf_test_CPPFLAGS="$CPPFLAGS" @@ -35091,11 +35096,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}:35094: testing ... testing $cf_cv_header_path_z ..." 1>&5 +echo "${as_me:-configure}:35099: 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 35098 "configure" +#line 35103 "configure" #include "confdefs.h" #include <zlib.h> @@ -35111,21 +35116,21 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:35114: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:35119: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:35117: \$? = $ac_status" >&5 + echo "$as_me:35122: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:35120: \"$ac_try\"") >&5 + { (eval echo "$as_me:35125: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:35123: \$? = $ac_status" >&5 + echo "$as_me:35128: \$? = $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}:35128: testing ... found z headers in $cf_cv_header_path_z ..." 1>&5 +echo "${as_me:-configure}:35133: testing ... found z headers in $cf_cv_header_path_z ..." 1>&5 cf_cv_find_linkage_z=maybe cf_test_CPPFLAGS="$CPPFLAGS" @@ -35143,7 +35148,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "$cf_cv_find_linkage_z" = maybe ; then -echo "${as_me:-configure}:35146: testing Searching for z library in FIND_LINKAGE(z,zlib) ..." 1>&5 +echo "${as_me:-configure}:35151: testing Searching for z library in FIND_LINKAGE(z,zlib) ..." 1>&5 cf_save_LIBS="$LIBS" cf_save_LDFLAGS="$LDFLAGS" @@ -35151,7 +35156,7 @@ echo "${as_me:-configure}:35146: testing Searching for z library in FIND_LINKAGE CPPFLAGS="$cf_test_CPPFLAGS" LIBS="-lz $cf_save_LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 35154 "configure" +#line 35159 "configure" #include "confdefs.h" #include <zlib.h> @@ -35167,21 +35172,21 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:35170: \"$ac_link\"") >&5 +if { (eval echo "$as_me:35175: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:35173: \$? = $ac_status" >&5 + echo "$as_me:35178: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:35176: \"$ac_try\"") >&5 + { (eval echo "$as_me:35181: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:35179: \$? = $ac_status" >&5 + echo "$as_me:35184: \$? = $ac_status" >&5 (exit $ac_status); }; }; then test -n "$verbose" && echo " ... found z library in system" 1>&6 -echo "${as_me:-configure}:35184: testing ... found z library in system ..." 1>&5 +echo "${as_me:-configure}:35189: testing ... found z library in system ..." 1>&5 cf_cv_find_linkage_z=yes else @@ -35284,13 +35289,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}:35287: testing ... testing $cf_cv_library_path_z ..." 1>&5 +echo "${as_me:-configure}:35292: 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 35293 "configure" +#line 35298 "configure" #include "confdefs.h" #include <zlib.h> @@ -35306,21 +35311,21 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:35309: \"$ac_link\"") >&5 +if { (eval echo "$as_me:35314: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:35312: \$? = $ac_status" >&5 + echo "$as_me:35317: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:35315: \"$ac_try\"") >&5 + { (eval echo "$as_me:35320: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:35318: \$? = $ac_status" >&5 + echo "$as_me:35323: \$? = $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}:35323: testing ... found z library in $cf_cv_library_path_z ..." 1>&5 +echo "${as_me:-configure}:35328: testing ... found z library in $cf_cv_library_path_z ..." 1>&5 cf_cv_find_linkage_z=yes cf_cv_library_file_z="-lz" @@ -35379,7 +35384,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 35382 "configure" +#line 35387 "configure" #include "confdefs.h" #include <stdio.h> int @@ -35391,16 +35396,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:35394: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:35399: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:35397: \$? = $ac_status" >&5 + echo "$as_me:35402: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:35400: \"$ac_try\"") >&5 + { (eval echo "$as_me:35405: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:35403: \$? = $ac_status" >&5 + echo "$as_me:35408: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -35417,7 +35422,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}:35420: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:35425: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -35451,7 +35456,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}:35454: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:35459: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -35462,7 +35467,7 @@ fi LIBS="-lz $LIBS" else -{ echo "$as_me:35465: WARNING: Cannot find z library" >&5 +{ echo "$as_me:35470: WARNING: Cannot find z library" >&5 echo "$as_me: WARNING: Cannot find z library" >&2;} fi @@ -35471,13 +35476,13 @@ for ac_func in \ do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` -echo "$as_me:35474: checking for $ac_func" >&5 +echo "$as_me:35479: 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 35480 "configure" +#line 35485 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. */ @@ -35508,16 +35513,16 @@ f = $ac_func; /* workaround for ICC 12.0.3 */ if (f == 0) return 1; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:35511: \"$ac_link\"") >&5 +if { (eval echo "$as_me:35516: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:35514: \$? = $ac_status" >&5 + echo "$as_me:35519: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:35517: \"$ac_try\"") >&5 + { (eval echo "$as_me:35522: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:35520: \$? = $ac_status" >&5 + echo "$as_me:35525: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else @@ -35527,7 +35532,7 @@ eval "$as_ac_var=no" fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:35530: result: `eval echo '${'$as_ac_var'}'`" >&5 +echo "$as_me:35535: 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 @@ -35544,7 +35549,7 @@ EOF fi -echo "$as_me:35547: checking if you want to exclude FINGER code" >&5 +echo "$as_me:35552: 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. @@ -35561,14 +35566,14 @@ else use_finger=no fi; -echo "$as_me:35564: result: $use_finger" >&5 +echo "$as_me:35569: 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:35571: checking if you want to exclude GOPHER code" >&5 +echo "$as_me:35576: 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. @@ -35585,14 +35590,14 @@ else use_gopher=no fi; -echo "$as_me:35588: result: $use_gopher" >&5 +echo "$as_me:35593: 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:35595: checking if you want to exclude NEWS code" >&5 +echo "$as_me:35600: 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. @@ -35609,14 +35614,14 @@ else use_news=no fi; -echo "$as_me:35612: result: $use_news" >&5 +echo "$as_me:35617: 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:35619: checking if you want to exclude FTP code" >&5 +echo "$as_me:35624: 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. @@ -35633,14 +35638,14 @@ else use_ftp=no fi; -echo "$as_me:35636: result: $use_ftp" >&5 +echo "$as_me:35641: 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:35643: checking if you want to include WAIS code" >&5 +echo "$as_me:35648: 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. @@ -35657,13 +35662,13 @@ else use_wais=no fi; -echo "$as_me:35660: result: $use_wais" >&5 +echo "$as_me:35665: result: $use_wais" >&5 echo "${ECHO_T}$use_wais" >&6 MAKE_WAIS="#" if test $use_wais != "no" then - echo "$as_me:35666: checking for fs_free in -lwais" >&5 + echo "$as_me:35671: 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 @@ -35671,7 +35676,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lwais $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 35674 "configure" +#line 35679 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -35690,16 +35695,16 @@ fs_free (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:35693: \"$ac_link\"") >&5 +if { (eval echo "$as_me:35698: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:35696: \$? = $ac_status" >&5 + echo "$as_me:35701: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:35699: \"$ac_try\"") >&5 + { (eval echo "$as_me:35704: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:35702: \$? = $ac_status" >&5 + echo "$as_me:35707: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_wais_fs_free=yes else @@ -35710,18 +35715,18 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:35713: result: $ac_cv_lib_wais_fs_free" >&5 +echo "$as_me:35718: 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:35717: checking if -lm needed for math functions" >&5 +echo "$as_me:35722: 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 35724 "configure" +#line 35729 "configure" #include "confdefs.h" #include <stdio.h> @@ -35736,16 +35741,16 @@ double x = rand(); printf("result = %g\n", sin(x)) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:35739: \"$ac_link\"") >&5 +if { (eval echo "$as_me:35744: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:35742: \$? = $ac_status" >&5 + echo "$as_me:35747: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:35745: \"$ac_try\"") >&5 + { (eval echo "$as_me:35750: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:35748: \$? = $ac_status" >&5 + echo "$as_me:35753: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_need_libm=no else @@ -35755,7 +35760,7 @@ cf_cv_need_libm=yes fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:35758: result: $cf_cv_need_libm" >&5 +echo "$as_me:35763: result: $cf_cv_need_libm" >&5 echo "${ECHO_T}$cf_cv_need_libm" >&6 if test "$cf_cv_need_libm" = yes then @@ -35769,23 +35774,23 @@ fi for ac_header in wais.h do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` -echo "$as_me:35772: checking for $ac_header" >&5 +echo "$as_me:35777: 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 35778 "configure" +#line 35783 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:35782: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:35787: \"$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:35788: \$? = $ac_status" >&5 + echo "$as_me:35793: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -35804,7 +35809,7 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:35807: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:35812: 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 @@ -35817,7 +35822,7 @@ done MAKE_WAIS= else - { echo "$as_me:35820: WARNING: could not find WAIS library" >&5 + { echo "$as_me:35825: WARNING: could not find WAIS library" >&5 echo "$as_me: WARNING: could not find WAIS library" >&2;} fi @@ -35825,7 +35830,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:35828: checking if directory-editor code should be used" >&5 +echo "$as_me:35833: 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. @@ -35842,7 +35847,7 @@ else use_dired=yes fi; -echo "$as_me:35845: result: $use_dired" >&5 +echo "$as_me:35850: result: $use_dired" >&5 echo "${ECHO_T}$use_dired" >&6 if test ".$use_dired" != ".no" ; then @@ -35852,7 +35857,7 @@ cat >>confdefs.h <<\EOF #define DIRED_SUPPORT 1 EOF - echo "$as_me:35855: checking if you wish to allow extracting from archives via DirEd" >&5 + echo "$as_me:35860: 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. @@ -35869,10 +35874,10 @@ EOF else enableval=yes fi; - echo "$as_me:35872: result: $enableval" >&5 + echo "$as_me:35877: result: $enableval" >&5 echo "${ECHO_T}$enableval" >&6 - echo "$as_me:35875: checking if DirEd mode should override keys" >&5 + echo "$as_me:35880: 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. @@ -35896,10 +35901,10 @@ cat >>confdefs.h <<\EOF EOF fi; - echo "$as_me:35899: result: $enableval" >&5 + echo "$as_me:35904: result: $enableval" >&5 echo "${ECHO_T}$enableval" >&6 - echo "$as_me:35902: checking if you wish to allow permissions commands via DirEd" >&5 + echo "$as_me:35907: 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. @@ -35923,10 +35928,10 @@ cat >>confdefs.h <<\EOF EOF fi; - echo "$as_me:35926: result: $enableval" >&5 + echo "$as_me:35931: result: $enableval" >&5 echo "${ECHO_T}$enableval" >&6 - echo "$as_me:35929: checking if you wish to allow executable-permission commands via DirEd" >&5 + echo "$as_me:35934: 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. @@ -35943,10 +35948,10 @@ EOF else enableval=yes fi; - echo "$as_me:35946: result: $enableval" >&5 + echo "$as_me:35951: result: $enableval" >&5 echo "${ECHO_T}$enableval" >&6 - echo "$as_me:35949: checking if you wish to allow \"tar\" commands from DirEd" >&5 + echo "$as_me:35954: 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. @@ -35970,10 +35975,10 @@ cat >>confdefs.h <<\EOF EOF fi; - echo "$as_me:35973: result: $enableval" >&5 + echo "$as_me:35978: result: $enableval" >&5 echo "${ECHO_T}$enableval" >&6 - echo "$as_me:35976: checking if you wish to allow \"uudecode\" commands from DirEd" >&5 + echo "$as_me:35981: 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. @@ -35997,10 +36002,10 @@ cat >>confdefs.h <<\EOF EOF fi; - echo "$as_me:36000: result: $enableval" >&5 + echo "$as_me:36005: result: $enableval" >&5 echo "${ECHO_T}$enableval" >&6 - echo "$as_me:36003: checking if you wish to allow \"zip\" and \"unzip\" commands from DirEd" >&5 + echo "$as_me:36008: 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. @@ -36024,10 +36029,10 @@ cat >>confdefs.h <<\EOF EOF fi; - echo "$as_me:36027: result: $enableval" >&5 + echo "$as_me:36032: result: $enableval" >&5 echo "${ECHO_T}$enableval" >&6 - echo "$as_me:36030: checking if you wish to allow \"gzip\" and \"gunzip\" commands from DirEd" >&5 + echo "$as_me:36035: 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. @@ -36051,11 +36056,11 @@ cat >>confdefs.h <<\EOF EOF fi; - echo "$as_me:36054: result: $enableval" >&5 + echo "$as_me:36059: result: $enableval" >&5 echo "${ECHO_T}$enableval" >&6 fi -echo "$as_me:36058: checking if you want long-directory listings" >&5 +echo "$as_me:36063: 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. @@ -36079,10 +36084,10 @@ cat >>confdefs.h <<\EOF EOF fi; -echo "$as_me:36082: result: $enableval" >&5 +echo "$as_me:36087: result: $enableval" >&5 echo "${ECHO_T}$enableval" >&6 -echo "$as_me:36085: checking if parent-directory references are permitted" >&5 +echo "$as_me:36090: 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. @@ -36099,7 +36104,7 @@ EOF else enableval=yes fi; -echo "$as_me:36102: result: $enableval" >&5 +echo "$as_me:36107: result: $enableval" >&5 echo "${ECHO_T}$enableval" >&6 test -z "$TELNET" && TELNET=telnet @@ -36107,7 +36112,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:36110: 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_TELNET+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -36124,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_TELNET="$ac_dir/$ac_word" - echo "$as_me:36127: found $ac_dir/$ac_word" >&5 + echo "$as_me:36132: found $ac_dir/$ac_word" >&5 break fi done @@ -36135,10 +36140,10 @@ fi TELNET=$ac_cv_path_TELNET if test -n "$TELNET"; then - echo "$as_me:36138: result: $TELNET" >&5 + echo "$as_me:36143: result: $TELNET" >&5 echo "${ECHO_T}$TELNET" >&6 else - echo "$as_me:36141: result: no" >&5 + echo "$as_me:36146: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -36197,7 +36202,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me:-configure}:36200: 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 TELNET_PATH "$cf_path_prog" @@ -36215,7 +36220,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:36218: checking for $ac_word" >&5 +echo "$as_me:36223: 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 @@ -36232,7 +36237,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:36235: found $ac_dir/$ac_word" >&5 + echo "$as_me:36240: found $ac_dir/$ac_word" >&5 break fi done @@ -36243,10 +36248,10 @@ fi TN3270=$ac_cv_path_TN3270 if test -n "$TN3270"; then - echo "$as_me:36246: result: $TN3270" >&5 + echo "$as_me:36251: result: $TN3270" >&5 echo "${ECHO_T}$TN3270" >&6 else - echo "$as_me:36249: result: no" >&5 + echo "$as_me:36254: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -36305,7 +36310,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me:-configure}:36308: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me:-configure}:36313: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define TN3270_PATH "$cf_path_prog" @@ -36323,7 +36328,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:36326: checking for $ac_word" >&5 +echo "$as_me:36331: 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 @@ -36340,7 +36345,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:36343: found $ac_dir/$ac_word" >&5 + echo "$as_me:36348: found $ac_dir/$ac_word" >&5 break fi done @@ -36351,10 +36356,10 @@ fi RLOGIN=$ac_cv_path_RLOGIN if test -n "$RLOGIN"; then - echo "$as_me:36354: result: $RLOGIN" >&5 + echo "$as_me:36359: result: $RLOGIN" >&5 echo "${ECHO_T}$RLOGIN" >&6 else - echo "$as_me:36357: result: no" >&5 + echo "$as_me:36362: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -36413,7 +36418,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me:-configure}:36416: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me:-configure}:36421: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define RLOGIN_PATH "$cf_path_prog" @@ -36431,7 +36436,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:36434: checking for $ac_word" >&5 +echo "$as_me:36439: 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 @@ -36448,7 +36453,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:36451: found $ac_dir/$ac_word" >&5 + echo "$as_me:36456: found $ac_dir/$ac_word" >&5 break fi done @@ -36459,10 +36464,10 @@ fi MV=$ac_cv_path_MV if test -n "$MV"; then - echo "$as_me:36462: result: $MV" >&5 + echo "$as_me:36467: result: $MV" >&5 echo "${ECHO_T}$MV" >&6 else - echo "$as_me:36465: result: no" >&5 + echo "$as_me:36470: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -36521,7 +36526,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me:-configure}:36524: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me:-configure}:36529: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define MV_PATH "$cf_path_prog" @@ -36539,7 +36544,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:36542: checking for $ac_word" >&5 +echo "$as_me:36547: 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 @@ -36556,7 +36561,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:36559: found $ac_dir/$ac_word" >&5 + echo "$as_me:36564: found $ac_dir/$ac_word" >&5 break fi done @@ -36567,10 +36572,10 @@ fi GZIP=$ac_cv_path_GZIP if test -n "$GZIP"; then - echo "$as_me:36570: result: $GZIP" >&5 + echo "$as_me:36575: result: $GZIP" >&5 echo "${ECHO_T}$GZIP" >&6 else - echo "$as_me:36573: result: no" >&5 + echo "$as_me:36578: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -36629,7 +36634,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me:-configure}:36632: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me:-configure}:36637: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define GZIP_PATH "$cf_path_prog" @@ -36647,7 +36652,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:36650: checking for $ac_word" >&5 +echo "$as_me:36655: 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 @@ -36664,7 +36669,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:36667: found $ac_dir/$ac_word" >&5 + echo "$as_me:36672: found $ac_dir/$ac_word" >&5 break fi done @@ -36675,10 +36680,10 @@ fi UNCOMPRESS=$ac_cv_path_UNCOMPRESS if test -n "$UNCOMPRESS"; then - echo "$as_me:36678: result: $UNCOMPRESS" >&5 + echo "$as_me:36683: result: $UNCOMPRESS" >&5 echo "${ECHO_T}$UNCOMPRESS" >&6 else - echo "$as_me:36681: result: no" >&5 + echo "$as_me:36686: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -36737,7 +36742,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me:-configure}:36740: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me:-configure}:36745: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define UNCOMPRESS_PATH "$cf_path_prog" @@ -36755,7 +36760,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:36758: checking for $ac_word" >&5 +echo "$as_me:36763: 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 @@ -36772,7 +36777,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:36775: found $ac_dir/$ac_word" >&5 + echo "$as_me:36780: found $ac_dir/$ac_word" >&5 break fi done @@ -36783,10 +36788,10 @@ fi UNZIP=$ac_cv_path_UNZIP if test -n "$UNZIP"; then - echo "$as_me:36786: result: $UNZIP" >&5 + echo "$as_me:36791: result: $UNZIP" >&5 echo "${ECHO_T}$UNZIP" >&6 else - echo "$as_me:36789: result: no" >&5 + echo "$as_me:36794: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -36845,7 +36850,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me:-configure}:36848: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me:-configure}:36853: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define UNZIP_PATH "$cf_path_prog" @@ -36863,7 +36868,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:36866: checking for $ac_word" >&5 +echo "$as_me:36871: 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 @@ -36880,7 +36885,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:36883: found $ac_dir/$ac_word" >&5 + echo "$as_me:36888: found $ac_dir/$ac_word" >&5 break fi done @@ -36891,10 +36896,10 @@ fi BZIP2=$ac_cv_path_BZIP2 if test -n "$BZIP2"; then - echo "$as_me:36894: result: $BZIP2" >&5 + echo "$as_me:36899: result: $BZIP2" >&5 echo "${ECHO_T}$BZIP2" >&6 else - echo "$as_me:36897: result: no" >&5 + echo "$as_me:36902: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -36953,7 +36958,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me:-configure}:36956: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me:-configure}:36961: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define BZIP2_PATH "$cf_path_prog" @@ -36971,7 +36976,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:36974: checking for $ac_word" >&5 +echo "$as_me:36979: 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 @@ -36988,7 +36993,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:36991: found $ac_dir/$ac_word" >&5 + echo "$as_me:36996: found $ac_dir/$ac_word" >&5 break fi done @@ -36999,10 +37004,10 @@ fi TAR=$ac_cv_path_TAR if test -n "$TAR"; then - echo "$as_me:37002: result: $TAR" >&5 + echo "$as_me:37007: result: $TAR" >&5 echo "${ECHO_T}$TAR" >&6 else - echo "$as_me:37005: result: no" >&5 + echo "$as_me:37010: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -37061,7 +37066,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me:-configure}:37064: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me:-configure}:37069: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define TAR_PATH "$cf_path_prog" @@ -37119,7 +37124,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:37122: checking for $ac_word" >&5 +echo "$as_me:37127: 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 @@ -37136,7 +37141,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:37139: found $ac_dir/$ac_word" >&5 + echo "$as_me:37144: found $ac_dir/$ac_word" >&5 break fi done @@ -37147,10 +37152,10 @@ fi COMPRESS=$ac_cv_path_COMPRESS if test -n "$COMPRESS"; then - echo "$as_me:37150: result: $COMPRESS" >&5 + echo "$as_me:37155: result: $COMPRESS" >&5 echo "${ECHO_T}$COMPRESS" >&6 else - echo "$as_me:37153: result: no" >&5 + echo "$as_me:37158: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -37209,7 +37214,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me:-configure}:37212: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me:-configure}:37217: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define COMPRESS_PATH "$cf_path_prog" @@ -37227,7 +37232,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:37230: checking for $ac_word" >&5 +echo "$as_me:37235: 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 @@ -37244,7 +37249,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:37247: found $ac_dir/$ac_word" >&5 + echo "$as_me:37252: found $ac_dir/$ac_word" >&5 break fi done @@ -37255,10 +37260,10 @@ fi RM=$ac_cv_path_RM if test -n "$RM"; then - echo "$as_me:37258: result: $RM" >&5 + echo "$as_me:37263: result: $RM" >&5 echo "${ECHO_T}$RM" >&6 else - echo "$as_me:37261: result: no" >&5 + echo "$as_me:37266: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -37317,7 +37322,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me:-configure}:37320: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me:-configure}:37325: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define RM_PATH "$cf_path_prog" @@ -37335,7 +37340,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:37338: checking for $ac_word" >&5 +echo "$as_me:37343: 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 @@ -37352,7 +37357,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:37355: found $ac_dir/$ac_word" >&5 + echo "$as_me:37360: found $ac_dir/$ac_word" >&5 break fi done @@ -37363,10 +37368,10 @@ fi UUDECODE=$ac_cv_path_UUDECODE if test -n "$UUDECODE"; then - echo "$as_me:37366: result: $UUDECODE" >&5 + echo "$as_me:37371: result: $UUDECODE" >&5 echo "${ECHO_T}$UUDECODE" >&6 else - echo "$as_me:37369: result: no" >&5 + echo "$as_me:37374: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -37425,7 +37430,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me:-configure}:37428: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me:-configure}:37433: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define UUDECODE_PATH "$cf_path_prog" @@ -37443,7 +37448,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:37446: checking for $ac_word" >&5 +echo "$as_me:37451: 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 @@ -37460,7 +37465,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:37463: found $ac_dir/$ac_word" >&5 + echo "$as_me:37468: found $ac_dir/$ac_word" >&5 break fi done @@ -37471,10 +37476,10 @@ fi ZCAT=$ac_cv_path_ZCAT if test -n "$ZCAT"; then - echo "$as_me:37474: result: $ZCAT" >&5 + echo "$as_me:37479: result: $ZCAT" >&5 echo "${ECHO_T}$ZCAT" >&6 else - echo "$as_me:37477: result: no" >&5 + echo "$as_me:37482: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -37533,7 +37538,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me:-configure}:37536: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me:-configure}:37541: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define ZCAT_PATH "$cf_path_prog" @@ -37551,7 +37556,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:37554: checking for $ac_word" >&5 +echo "$as_me:37559: 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 @@ -37568,7 +37573,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:37571: found $ac_dir/$ac_word" >&5 + echo "$as_me:37576: found $ac_dir/$ac_word" >&5 break fi done @@ -37579,10 +37584,10 @@ fi ZIP=$ac_cv_path_ZIP if test -n "$ZIP"; then - echo "$as_me:37582: result: $ZIP" >&5 + echo "$as_me:37587: result: $ZIP" >&5 echo "${ECHO_T}$ZIP" >&6 else - echo "$as_me:37585: result: no" >&5 + echo "$as_me:37590: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -37641,7 +37646,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me:-configure}:37644: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me:-configure}:37649: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define ZIP_PATH "$cf_path_prog" @@ -37669,7 +37674,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:37672: checking for $ac_word" >&5 +echo "$as_me:37677: 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 @@ -37686,7 +37691,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:37689: found $ac_dir/$ac_word" >&5 + echo "$as_me:37694: found $ac_dir/$ac_word" >&5 break fi done @@ -37697,10 +37702,10 @@ fi INSTALL=$ac_cv_path_INSTALL if test -n "$INSTALL"; then - echo "$as_me:37700: result: $INSTALL" >&5 + echo "$as_me:37705: result: $INSTALL" >&5 echo "${ECHO_T}$INSTALL" >&6 else - echo "$as_me:37703: result: no" >&5 + echo "$as_me:37708: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -37759,7 +37764,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me:-configure}:37762: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me:-configure}:37767: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define INSTALL_PATH "$cf_path_prog" @@ -37786,7 +37791,7 @@ fi if test $cf_cv_screen = pdcurses ; then - echo "$as_me:37789: checking for X" >&5 + echo "$as_me:37794: checking for X" >&5 echo $ECHO_N "checking for X... $ECHO_C" >&6 # Check whether --with-x or --without-x was given. @@ -37883,17 +37888,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 37886 "configure" +#line 37891 "configure" #include "confdefs.h" #include <X11/Intrinsic.h> _ACEOF -if { (eval echo "$as_me:37890: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:37895: \"$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:37896: \$? = $ac_status" >&5 + echo "$as_me:37901: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -37926,7 +37931,7 @@ if test "$ac_x_libraries" = no; then ac_save_LIBS=$LIBS LIBS="-lXt $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 37929 "configure" +#line 37934 "configure" #include "confdefs.h" #include <X11/Intrinsic.h> int @@ -37938,16 +37943,16 @@ XtMalloc (0) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:37941: \"$ac_link\"") >&5 +if { (eval echo "$as_me:37946: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:37944: \$? = $ac_status" >&5 + echo "$as_me:37949: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:37947: \"$ac_try\"") >&5 + { (eval echo "$as_me:37952: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:37950: \$? = $ac_status" >&5 + echo "$as_me:37955: \$? = $ac_status" >&5 (exit $ac_status); }; }; then LIBS=$ac_save_LIBS # We can link X programs with no special library path. @@ -37985,7 +37990,7 @@ fi fi # $with_x != no if test "$have_x" != yes; then - echo "$as_me:37988: result: $have_x" >&5 + echo "$as_me:37993: result: $have_x" >&5 echo "${ECHO_T}$have_x" >&6 no_x=yes else @@ -37995,7 +38000,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:37998: result: libraries $x_libraries, headers $x_includes" >&5 + echo "$as_me:38003: result: libraries $x_libraries, headers $x_includes" >&5 echo "${ECHO_T}libraries $x_libraries, headers $x_includes" >&6 fi @@ -38019,11 +38024,11 @@ else # others require no space. Words are not sufficient . . . . case `(uname -sr) 2>/dev/null` in "SunOS 5"*) - echo "$as_me:38022: checking whether -R must be followed by a space" >&5 + echo "$as_me:38027: 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 38026 "configure" +#line 38031 "configure" #include "confdefs.h" int @@ -38035,16 +38040,16 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:38038: \"$ac_link\"") >&5 +if { (eval echo "$as_me:38043: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:38041: \$? = $ac_status" >&5 + echo "$as_me:38046: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:38044: \"$ac_try\"") >&5 + { (eval echo "$as_me:38049: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:38047: \$? = $ac_status" >&5 + echo "$as_me:38052: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_R_nospace=yes else @@ -38054,13 +38059,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:38057: result: no" >&5 + echo "$as_me:38062: 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 38063 "configure" +#line 38068 "configure" #include "confdefs.h" int @@ -38072,16 +38077,16 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:38075: \"$ac_link\"") >&5 +if { (eval echo "$as_me:38080: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:38078: \$? = $ac_status" >&5 + echo "$as_me:38083: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:38081: \"$ac_try\"") >&5 + { (eval echo "$as_me:38086: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:38084: \$? = $ac_status" >&5 + echo "$as_me:38089: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_R_space=yes else @@ -38091,11 +38096,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:38094: result: yes" >&5 + echo "$as_me:38099: result: yes" >&5 echo "${ECHO_T}yes" >&6 X_LIBS="$X_LIBS -R $x_libraries" else - echo "$as_me:38098: result: neither works" >&5 + echo "$as_me:38103: result: neither works" >&5 echo "${ECHO_T}neither works" >&6 fi fi @@ -38115,7 +38120,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 38118 "configure" +#line 38123 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -38134,22 +38139,22 @@ XOpenDisplay (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:38137: \"$ac_link\"") >&5 +if { (eval echo "$as_me:38142: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:38140: \$? = $ac_status" >&5 + echo "$as_me:38145: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:38143: \"$ac_try\"") >&5 + { (eval echo "$as_me:38148: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:38146: \$? = $ac_status" >&5 + echo "$as_me:38151: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 -echo "$as_me:38152: checking for dnet_ntoa in -ldnet" >&5 +echo "$as_me:38157: 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 @@ -38157,7 +38162,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-ldnet $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 38160 "configure" +#line 38165 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -38176,16 +38181,16 @@ dnet_ntoa (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:38179: \"$ac_link\"") >&5 +if { (eval echo "$as_me:38184: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:38182: \$? = $ac_status" >&5 + echo "$as_me:38187: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:38185: \"$ac_try\"") >&5 + { (eval echo "$as_me:38190: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:38188: \$? = $ac_status" >&5 + echo "$as_me:38193: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_dnet_dnet_ntoa=yes else @@ -38196,14 +38201,14 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:38199: result: $ac_cv_lib_dnet_dnet_ntoa" >&5 +echo "$as_me:38204: 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:38206: checking for dnet_ntoa in -ldnet_stub" >&5 + echo "$as_me:38211: 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 @@ -38211,7 +38216,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-ldnet_stub $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 38214 "configure" +#line 38219 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -38230,16 +38235,16 @@ dnet_ntoa (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:38233: \"$ac_link\"") >&5 +if { (eval echo "$as_me:38238: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:38236: \$? = $ac_status" >&5 + echo "$as_me:38241: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:38239: \"$ac_try\"") >&5 + { (eval echo "$as_me:38244: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:38242: \$? = $ac_status" >&5 + echo "$as_me:38247: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_dnet_stub_dnet_ntoa=yes else @@ -38250,7 +38255,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:38253: result: $ac_cv_lib_dnet_stub_dnet_ntoa" >&5 +echo "$as_me:38258: 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" @@ -38269,13 +38274,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:38272: checking for gethostbyname" >&5 + echo "$as_me:38277: 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 38278 "configure" +#line 38283 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char gethostbyname (); below. */ @@ -38306,16 +38311,16 @@ f = gethostbyname; /* workaround for ICC 12.0.3 */ if (f == 0) return 1; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:38309: \"$ac_link\"") >&5 +if { (eval echo "$as_me:38314: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:38312: \$? = $ac_status" >&5 + echo "$as_me:38317: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:38315: \"$ac_try\"") >&5 + { (eval echo "$as_me:38320: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:38318: \$? = $ac_status" >&5 + echo "$as_me:38323: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_gethostbyname=yes else @@ -38325,11 +38330,11 @@ ac_cv_func_gethostbyname=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:38328: result: $ac_cv_func_gethostbyname" >&5 +echo "$as_me:38333: 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:38332: checking for gethostbyname in -lnsl" >&5 + echo "$as_me:38337: 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 @@ -38337,7 +38342,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lnsl $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 38340 "configure" +#line 38345 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -38356,16 +38361,16 @@ gethostbyname (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:38359: \"$ac_link\"") >&5 +if { (eval echo "$as_me:38364: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:38362: \$? = $ac_status" >&5 + echo "$as_me:38367: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:38365: \"$ac_try\"") >&5 + { (eval echo "$as_me:38370: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:38368: \$? = $ac_status" >&5 + echo "$as_me:38373: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_nsl_gethostbyname=yes else @@ -38376,14 +38381,14 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:38379: result: $ac_cv_lib_nsl_gethostbyname" >&5 +echo "$as_me:38384: 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:38386: checking for gethostbyname in -lbsd" >&5 + echo "$as_me:38391: 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 @@ -38391,7 +38396,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lbsd $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 38394 "configure" +#line 38399 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -38410,16 +38415,16 @@ gethostbyname (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:38413: \"$ac_link\"") >&5 +if { (eval echo "$as_me:38418: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:38416: \$? = $ac_status" >&5 + echo "$as_me:38421: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:38419: \"$ac_try\"") >&5 + { (eval echo "$as_me:38424: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:38422: \$? = $ac_status" >&5 + echo "$as_me:38427: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_bsd_gethostbyname=yes else @@ -38430,7 +38435,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:38433: result: $ac_cv_lib_bsd_gethostbyname" >&5 +echo "$as_me:38438: 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" @@ -38446,13 +38451,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:38449: checking for connect" >&5 + echo "$as_me:38454: 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 38455 "configure" +#line 38460 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char connect (); below. */ @@ -38483,16 +38488,16 @@ f = connect; /* workaround for ICC 12.0.3 */ if (f == 0) return 1; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:38486: \"$ac_link\"") >&5 +if { (eval echo "$as_me:38491: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:38489: \$? = $ac_status" >&5 + echo "$as_me:38494: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:38492: \"$ac_try\"") >&5 + { (eval echo "$as_me:38497: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:38495: \$? = $ac_status" >&5 + echo "$as_me:38500: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_connect=yes else @@ -38502,11 +38507,11 @@ ac_cv_func_connect=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:38505: result: $ac_cv_func_connect" >&5 +echo "$as_me:38510: 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:38509: checking for connect in -lsocket" >&5 + echo "$as_me:38514: 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 @@ -38514,7 +38519,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lsocket $X_EXTRA_LIBS $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 38517 "configure" +#line 38522 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -38533,16 +38538,16 @@ connect (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:38536: \"$ac_link\"") >&5 +if { (eval echo "$as_me:38541: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:38539: \$? = $ac_status" >&5 + echo "$as_me:38544: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:38542: \"$ac_try\"") >&5 + { (eval echo "$as_me:38547: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:38545: \$? = $ac_status" >&5 + echo "$as_me:38550: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_socket_connect=yes else @@ -38553,7 +38558,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:38556: result: $ac_cv_lib_socket_connect" >&5 +echo "$as_me:38561: 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" @@ -38562,13 +38567,13 @@ fi fi # Guillermo Gomez says -lposix is necessary on A/UX. - echo "$as_me:38565: checking for remove" >&5 + echo "$as_me:38570: 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 38571 "configure" +#line 38576 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char remove (); below. */ @@ -38599,16 +38604,16 @@ f = remove; /* workaround for ICC 12.0.3 */ if (f == 0) return 1; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:38602: \"$ac_link\"") >&5 +if { (eval echo "$as_me:38607: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:38605: \$? = $ac_status" >&5 + echo "$as_me:38610: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:38608: \"$ac_try\"") >&5 + { (eval echo "$as_me:38613: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:38611: \$? = $ac_status" >&5 + echo "$as_me:38616: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_remove=yes else @@ -38618,11 +38623,11 @@ ac_cv_func_remove=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:38621: result: $ac_cv_func_remove" >&5 +echo "$as_me:38626: 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:38625: checking for remove in -lposix" >&5 + echo "$as_me:38630: 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 @@ -38630,7 +38635,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lposix $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 38633 "configure" +#line 38638 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -38649,16 +38654,16 @@ remove (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:38652: \"$ac_link\"") >&5 +if { (eval echo "$as_me:38657: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:38655: \$? = $ac_status" >&5 + echo "$as_me:38660: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:38658: \"$ac_try\"") >&5 + { (eval echo "$as_me:38663: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:38661: \$? = $ac_status" >&5 + echo "$as_me:38666: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_posix_remove=yes else @@ -38669,7 +38674,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:38672: result: $ac_cv_lib_posix_remove" >&5 +echo "$as_me:38677: 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" @@ -38678,13 +38683,13 @@ fi fi # BSDI BSD/OS 2.1 needs -lipc for XOpenDisplay. - echo "$as_me:38681: checking for shmat" >&5 + echo "$as_me:38686: 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 38687 "configure" +#line 38692 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char shmat (); below. */ @@ -38715,16 +38720,16 @@ f = shmat; /* workaround for ICC 12.0.3 */ if (f == 0) return 1; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:38718: \"$ac_link\"") >&5 +if { (eval echo "$as_me:38723: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:38721: \$? = $ac_status" >&5 + echo "$as_me:38726: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:38724: \"$ac_try\"") >&5 + { (eval echo "$as_me:38729: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:38727: \$? = $ac_status" >&5 + echo "$as_me:38732: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_shmat=yes else @@ -38734,11 +38739,11 @@ ac_cv_func_shmat=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:38737: result: $ac_cv_func_shmat" >&5 +echo "$as_me:38742: 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:38741: checking for shmat in -lipc" >&5 + echo "$as_me:38746: 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 @@ -38746,7 +38751,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lipc $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 38749 "configure" +#line 38754 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -38765,16 +38770,16 @@ shmat (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:38768: \"$ac_link\"") >&5 +if { (eval echo "$as_me:38773: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:38771: \$? = $ac_status" >&5 + echo "$as_me:38776: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:38774: \"$ac_try\"") >&5 + { (eval echo "$as_me:38779: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:38777: \$? = $ac_status" >&5 + echo "$as_me:38782: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_ipc_shmat=yes else @@ -38785,7 +38790,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:38788: result: $ac_cv_lib_ipc_shmat" >&5 +echo "$as_me:38793: 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" @@ -38803,7 +38808,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:38806: checking for IceConnectionNumber in -lICE" >&5 + echo "$as_me:38811: 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 @@ -38811,7 +38816,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lICE $X_EXTRA_LIBS $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 38814 "configure" +#line 38819 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -38830,16 +38835,16 @@ IceConnectionNumber (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:38833: \"$ac_link\"") >&5 +if { (eval echo "$as_me:38838: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:38836: \$? = $ac_status" >&5 + echo "$as_me:38841: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:38839: \"$ac_try\"") >&5 + { (eval echo "$as_me:38844: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:38842: \$? = $ac_status" >&5 + echo "$as_me:38847: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_ICE_IceConnectionNumber=yes else @@ -38850,7 +38855,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:38853: result: $ac_cv_lib_ICE_IceConnectionNumber" >&5 +echo "$as_me:38858: 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" @@ -38862,7 +38867,7 @@ fi cf_x_athena=${cf_x_athena:-Xaw} -echo "$as_me:38865: checking if you want to link with Xaw 3d library" >&5 +echo "$as_me:38870: 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= @@ -38873,14 +38878,14 @@ if test "${with_Xaw3d+set}" = set; then fi; if test "$withval" = yes ; then cf_x_athena=Xaw3d - echo "$as_me:38876: result: yes" >&5 + echo "$as_me:38881: result: yes" >&5 echo "${ECHO_T}yes" >&6 else - echo "$as_me:38879: result: no" >&5 + echo "$as_me:38884: result: no" >&5 echo "${ECHO_T}no" >&6 fi -echo "$as_me:38883: checking if you want to link with neXT Athena library" >&5 +echo "$as_me:38888: 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= @@ -38891,14 +38896,14 @@ if test "${with_neXtaw+set}" = set; then fi; if test "$withval" = yes ; then cf_x_athena=neXtaw - echo "$as_me:38894: result: yes" >&5 + echo "$as_me:38899: result: yes" >&5 echo "${ECHO_T}yes" >&6 else - echo "$as_me:38897: result: no" >&5 + echo "$as_me:38902: result: no" >&5 echo "${ECHO_T}no" >&6 fi -echo "$as_me:38901: checking if you want to link with Athena-Plus library" >&5 +echo "$as_me:38906: 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= @@ -38909,10 +38914,10 @@ if test "${with_XawPlus+set}" = set; then fi; if test "$withval" = yes ; then cf_x_athena=XawPlus - echo "$as_me:38912: result: yes" >&5 + echo "$as_me:38917: result: yes" >&5 echo "${ECHO_T}yes" >&6 else - echo "$as_me:38915: result: no" >&5 + echo "$as_me:38920: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -38932,17 +38937,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}:38935: testing found package $cf_athena_pkg ..." 1>&5 +echo "${as_me:-configure}:38940: 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}:38941: testing package $cf_athena_pkg CFLAGS: $cf_pkgconfig_incs ..." 1>&5 +echo "${as_me:-configure}:38946: 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}:38945: testing package $cf_athena_pkg LIBS: $cf_pkgconfig_libs ..." 1>&5 +echo "${as_me:-configure}:38950: testing package $cf_athena_pkg LIBS: $cf_pkgconfig_libs ..." 1>&5 cf_fix_cppflags=no cf_new_cflags= @@ -39032,14 +39037,27 @@ cf_x_athena_LIBS=`echo "HAVE_LIB_$cf_x_athena" | sed y%abcdefghijklmnopqrstuvwxy #define $cf_x_athena_LIBS 1 EOF -echo "$as_me:39035: checking for usable $cf_x_athena/Xmu package" >&5 + for cf_trim_lib in Xmu Xt X11 + do + case "$LIBS" in + *-l$cf_trim_lib\ *-l$cf_trim_lib*) + LIBS=`echo "$LIBS " | sed -e 's/ / /g' -e 's%-l'"$cf_trim_lib"' %%' -e 's/ $//'` + test -n "$verbose" && echo " ..trimmed $LIBS" 1>&6 + +echo "${as_me:-configure}:39047: testing ..trimmed $LIBS ..." 1>&5 + + ;; + esac + done + +echo "$as_me:39053: 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 39042 "configure" +#line 39060 "configure" #include "confdefs.h" #include <X11/Xmu/CharSet.h> @@ -39055,16 +39073,16 @@ int check = XmuCompareISOLatin1("big", "small") } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:39058: \"$ac_link\"") >&5 +if { (eval echo "$as_me:39076: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:39061: \$? = $ac_status" >&5 + echo "$as_me:39079: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:39064: \"$ac_try\"") >&5 + { (eval echo "$as_me:39082: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:39067: \$? = $ac_status" >&5 + echo "$as_me:39085: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_xaw_compat=yes else @@ -39074,7 +39092,7 @@ cf_cv_xaw_compat=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:39077: result: $cf_cv_xaw_compat" >&5 +echo "$as_me:39095: result: $cf_cv_xaw_compat" >&5 echo "${ECHO_T}$cf_cv_xaw_compat" >&6 if test "$cf_cv_xaw_compat" = no @@ -39086,22 +39104,25 @@ echo "${ECHO_T}$cf_cv_xaw_compat" >&6 *) test -n "$verbose" && echo " work around broken package" 1>&6 -echo "${as_me:-configure}:39089: testing work around broken package ..." 1>&5 +echo "${as_me:-configure}:39107: testing work around broken package ..." 1>&5 + + cf_save_xmu="$LIBS" + cf_first_lib=`echo "$cf_save_xmu" | sed -e 's/^ *//' -e 's/ .*//'` if test "$PKG_CONFIG" != none && "$PKG_CONFIG" --exists xmu; then test -n "$verbose" && echo " found package xmu" 1>&6 -echo "${as_me:-configure}:39094: testing found package xmu ..." 1>&5 +echo "${as_me:-configure}:39115: 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}:39100: testing package xmu CFLAGS: $cf_pkgconfig_incs ..." 1>&5 +echo "${as_me:-configure}:39121: 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}:39104: testing package xmu LIBS: $cf_pkgconfig_libs ..." 1>&5 +echo "${as_me:-configure}:39125: testing package xmu LIBS: $cf_pkgconfig_libs ..." 1>&5 cf_fix_cppflags=no cf_new_cflags= @@ -39182,26 +39203,54 @@ if test -n "$cf_new_extra_cppflags" ; then fi LIBS="$cf_pkgconfig_libs $LIBS" - : + + LIBS="$cf_save_xmu" + +test -n "$verbose" && echo " ...before $LIBS" 1>&6 + +echo "${as_me:-configure}:39211: testing ...before $LIBS ..." 1>&5 + +LIBS=`echo "$LIBS" | sed -e "s/[ ][ ]*/ /g" -e "s%$cf_first_lib %$cf_first_lib $cf_pkgconfig_libs %" -e 's% % %g'` +test -n "$verbose" && echo " ...after $LIBS" 1>&6 + +echo "${as_me:-configure}:39216: testing ...after $LIBS ..." 1>&5 + else + cf_pkgconfig_incs= + cf_pkgconfig_libs= test -n "$verbose" && echo " ...before $LIBS" 1>&6 -echo "${as_me:-configure}:39190: testing ...before $LIBS ..." 1>&5 +echo "${as_me:-configure}:39224: testing ...before $LIBS ..." 1>&5 -LIBS=`echo "$LIBS" | sed -e "s/[ ][ ]*/ /g" -e "s,-lXt ,-lXt -lXmu ," -e 's/ / /g'` +LIBS=`echo "$LIBS" | sed -e "s/[ ][ ]*/ /g" -e "s%$cf_first_lib %$cf_first_lib -lXmu %" -e 's% % %g'` test -n "$verbose" && echo " ...after $LIBS" 1>&6 -echo "${as_me:-configure}:39195: testing ...after $LIBS ..." 1>&5 +echo "${as_me:-configure}:39229: testing ...after $LIBS ..." 1>&5 fi + for cf_trim_lib in Xmu Xt X11 + do + case "$LIBS" in + *-l$cf_trim_lib\ *-l$cf_trim_lib*) + LIBS=`echo "$LIBS " | sed -e 's/ / /g' -e 's%-l'"$cf_trim_lib"' %%' -e 's/ $//'` + test -n "$verbose" && echo " ..trimmed $LIBS" 1>&6 + +echo "${as_me:-configure}:39240: testing ..trimmed $LIBS ..." 1>&5 + + ;; + esac + done + ;; esac fi break else + cf_pkgconfig_incs= + cf_pkgconfig_libs= : fi @@ -39213,17 +39262,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}:39216: testing found package Xext ..." 1>&5 +echo "${as_me:-configure}:39265: 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}:39222: testing package Xext CFLAGS: $cf_pkgconfig_incs ..." 1>&5 +echo "${as_me:-configure}:39271: 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}:39226: testing package Xext LIBS: $cf_pkgconfig_libs ..." 1>&5 +echo "${as_me:-configure}:39275: testing package Xext LIBS: $cf_pkgconfig_libs ..." 1>&5 cf_fix_cppflags=no cf_new_cflags= @@ -39306,8 +39355,10 @@ fi LIBS="$cf_pkgconfig_libs $LIBS" : else + cf_pkgconfig_incs= + cf_pkgconfig_libs= - echo "$as_me:39310: checking for XextCreateExtension in -lXext" >&5 + echo "$as_me:39361: 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 @@ -39315,7 +39366,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lXext $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 39318 "configure" +#line 39369 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -39334,16 +39385,16 @@ XextCreateExtension (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:39337: \"$ac_link\"") >&5 +if { (eval echo "$as_me:39388: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:39340: \$? = $ac_status" >&5 + echo "$as_me:39391: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:39343: \"$ac_try\"") >&5 + { (eval echo "$as_me:39394: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:39346: \$? = $ac_status" >&5 + echo "$as_me:39397: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_Xext_XextCreateExtension=yes else @@ -39354,7 +39405,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:39357: result: $ac_cv_lib_Xext_XextCreateExtension" >&5 +echo "$as_me:39408: 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" @@ -39367,17 +39418,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}:39370: testing found package xt ..." 1>&5 +echo "${as_me:-configure}:39421: 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}:39376: testing package xt CFLAGS: $cf_pkgconfig_incs ..." 1>&5 +echo "${as_me:-configure}:39427: 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}:39380: testing package xt LIBS: $cf_pkgconfig_libs ..." 1>&5 +echo "${as_me:-configure}:39431: testing package xt LIBS: $cf_pkgconfig_libs ..." 1>&5 cf_fix_cppflags=no cf_new_cflags= @@ -39464,14 +39515,14 @@ fi ;; *) # we have an "xt" package, but it may omit Xt's dependency on X11 -echo "$as_me:39467: checking for usable X dependency" >&5 +echo "$as_me:39518: 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 39474 "configure" +#line 39525 "configure" #include "confdefs.h" #include <X11/Xlib.h> @@ -39490,16 +39541,16 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:39493: \"$ac_link\"") >&5 +if { (eval echo "$as_me:39544: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:39496: \$? = $ac_status" >&5 + echo "$as_me:39547: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:39499: \"$ac_try\"") >&5 + { (eval echo "$as_me:39550: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:39502: \$? = $ac_status" >&5 + echo "$as_me:39553: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_xt_x11_compat=yes else @@ -39509,30 +39560,30 @@ cf_cv_xt_x11_compat=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:39512: result: $cf_cv_xt_x11_compat" >&5 +echo "$as_me:39563: 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}:39518: testing work around broken X11 dependency ..." 1>&5 +echo "${as_me:-configure}:39569: 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}:39525: testing found package x11 ..." 1>&5 +echo "${as_me:-configure}:39576: 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}:39531: testing package x11 CFLAGS: $cf_pkgconfig_incs ..." 1>&5 +echo "${as_me:-configure}:39582: 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}:39535: testing package x11 LIBS: $cf_pkgconfig_libs ..." 1>&5 +echo "${as_me:-configure}:39586: testing package x11 LIBS: $cf_pkgconfig_libs ..." 1>&5 cf_fix_cppflags=no cf_new_cflags= @@ -39615,15 +39666,17 @@ fi LIBS="$cf_pkgconfig_libs $LIBS" : else + cf_pkgconfig_incs= + cf_pkgconfig_libs= test -n "$verbose" && echo " ...before $LIBS" 1>&6 -echo "${as_me:-configure}:39621: testing ...before $LIBS ..." 1>&5 +echo "${as_me:-configure}:39674: testing ...before $LIBS ..." 1>&5 -LIBS=`echo "$LIBS" | sed -e "s/[ ][ ]*/ /g" -e "s,-lXt ,-lXt -lX11 ," -e 's/ / /g'` +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}:39626: testing ...after $LIBS ..." 1>&5 +echo "${as_me:-configure}:39679: testing ...after $LIBS ..." 1>&5 fi @@ -39631,14 +39684,14 @@ fi ;; esac -echo "$as_me:39634: checking for usable X Toolkit package" >&5 +echo "$as_me:39687: 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 39641 "configure" +#line 39694 "configure" #include "confdefs.h" #include <X11/Shell.h> @@ -39653,16 +39706,16 @@ int num = IceConnectionNumber(0) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:39656: \"$ac_link\"") >&5 +if { (eval echo "$as_me:39709: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:39659: \$? = $ac_status" >&5 + echo "$as_me:39712: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:39662: \"$ac_try\"") >&5 + { (eval echo "$as_me:39715: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:39665: \$? = $ac_status" >&5 + echo "$as_me:39718: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_xt_ice_compat=yes else @@ -39672,7 +39725,7 @@ cf_cv_xt_ice_compat=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:39675: result: $cf_cv_xt_ice_compat" >&5 +echo "$as_me:39728: result: $cf_cv_xt_ice_compat" >&5 echo "${ECHO_T}$cf_cv_xt_ice_compat" >&6 if test "$cf_cv_xt_ice_compat" = no @@ -39686,22 +39739,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}:39689: testing work around broken ICE dependency ..." 1>&5 +echo "${as_me:-configure}:39742: 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}:39694: testing found package ice ..." 1>&5 +echo "${as_me:-configure}:39747: 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}:39700: testing package ice CFLAGS: $cf_pkgconfig_incs ..." 1>&5 +echo "${as_me:-configure}:39753: 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}:39704: testing package ice LIBS: $cf_pkgconfig_libs ..." 1>&5 +echo "${as_me:-configure}:39757: testing package ice LIBS: $cf_pkgconfig_libs ..." 1>&5 cf_fix_cppflags=no cf_new_cflags= @@ -39786,17 +39839,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}:39789: testing found package sm ..." 1>&5 +echo "${as_me:-configure}:39842: 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}:39795: testing package sm CFLAGS: $cf_pkgconfig_incs ..." 1>&5 +echo "${as_me:-configure}:39848: 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}:39799: testing package sm LIBS: $cf_pkgconfig_libs ..." 1>&5 +echo "${as_me:-configure}:39852: testing package sm LIBS: $cf_pkgconfig_libs ..." 1>&5 cf_fix_cppflags=no cf_new_cflags= @@ -39879,19 +39932,23 @@ fi LIBS="$cf_pkgconfig_libs $LIBS" : else + cf_pkgconfig_incs= + cf_pkgconfig_libs= : fi else + cf_pkgconfig_incs= + cf_pkgconfig_libs= test -n "$verbose" && echo " ...before $LIBS" 1>&6 -echo "${as_me:-configure}:39889: testing ...before $LIBS ..." 1>&5 +echo "${as_me:-configure}:39946: testing ...before $LIBS ..." 1>&5 -LIBS=`echo "$LIBS" | sed -e "s/[ ][ ]*/ /g" -e "s,-lXt ,-lXt $X_PRE_LIBS ," -e 's/ / /g'` +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}:39894: testing ...after $LIBS ..." 1>&5 +echo "${as_me:-configure}:39951: testing ...after $LIBS ..." 1>&5 fi @@ -39904,12 +39961,14 @@ fi cf_have_X_LIBS=yes else + cf_pkgconfig_incs= + cf_pkgconfig_libs= LDFLAGS="$X_LIBS $LDFLAGS" test -n "$verbose" && echo " checking additions to CFLAGS" 1>&6 -echo "${as_me:-configure}:39912: testing checking additions to CFLAGS ..." 1>&5 +echo "${as_me:-configure}:39971: testing checking additions to CFLAGS ..." 1>&5 cf_check_cflags="$CFLAGS" cf_check_cppflags="$CPPFLAGS" @@ -39980,7 +40039,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}:39983: testing add to \$CFLAGS $cf_new_cflags ..." 1>&5 +echo "${as_me:-configure}:40042: testing add to \$CFLAGS $cf_new_cflags ..." 1>&5 CFLAGS="$CFLAGS $cf_new_cflags" fi @@ -39988,7 +40047,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}:39991: testing add to \$CPPFLAGS $cf_new_cppflags ..." 1>&5 +echo "${as_me:-configure}:40050: testing add to \$CPPFLAGS $cf_new_cppflags ..." 1>&5 CPPFLAGS="$CPPFLAGS $cf_new_cppflags" fi @@ -39996,14 +40055,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}:39999: testing add to \$EXTRA_CPPFLAGS $cf_new_extra_cppflags ..." 1>&5 +echo "${as_me:-configure}:40058: 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 40006 "configure" +#line 40065 "configure" #include "confdefs.h" #include <stdio.h> int @@ -40015,16 +40074,16 @@ printf("Hello world"); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:40018: \"$ac_link\"") >&5 +if { (eval echo "$as_me:40077: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:40021: \$? = $ac_status" >&5 + echo "$as_me:40080: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:40024: \"$ac_try\"") >&5 + { (eval echo "$as_me:40083: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:40027: \$? = $ac_status" >&5 + echo "$as_me:40086: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -40032,12 +40091,12 @@ else cat conftest.$ac_ext >&5 test -n "$verbose" && echo " test-compile failed. Undoing change to \$CFLAGS" 1>&6 -echo "${as_me:-configure}:40035: testing test-compile failed. Undoing change to \$CFLAGS ..." 1>&5 +echo "${as_me:-configure}:40094: 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}:40040: testing but keeping change to \$CPPFLAGS ..." 1>&5 +echo "${as_me:-configure}:40099: testing but keeping change to \$CPPFLAGS ..." 1>&5 fi CFLAGS="$cf_check_flags" @@ -40045,13 +40104,13 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi - echo "$as_me:40048: checking for XOpenDisplay" >&5 + echo "$as_me:40107: 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 40054 "configure" +#line 40113 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char XOpenDisplay (); below. */ @@ -40082,16 +40141,16 @@ f = XOpenDisplay; /* workaround for ICC 12.0.3 */ if (f == 0) return 1; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:40085: \"$ac_link\"") >&5 +if { (eval echo "$as_me:40144: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:40088: \$? = $ac_status" >&5 + echo "$as_me:40147: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:40091: \"$ac_try\"") >&5 + { (eval echo "$as_me:40150: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:40094: \$? = $ac_status" >&5 + echo "$as_me:40153: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_XOpenDisplay=yes else @@ -40101,13 +40160,13 @@ ac_cv_func_XOpenDisplay=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:40104: result: $ac_cv_func_XOpenDisplay" >&5 +echo "$as_me:40163: 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:40110: checking for XOpenDisplay in -lX11" >&5 + echo "$as_me:40169: 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 @@ -40115,7 +40174,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lX11 $X_PRE_LIBS $LIBS $X_EXTRA_LIBS $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 40118 "configure" +#line 40177 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -40134,16 +40193,16 @@ XOpenDisplay (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:40137: \"$ac_link\"") >&5 +if { (eval echo "$as_me:40196: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:40140: \$? = $ac_status" >&5 + echo "$as_me:40199: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:40143: \"$ac_try\"") >&5 + { (eval echo "$as_me:40202: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:40146: \$? = $ac_status" >&5 + echo "$as_me:40205: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_X11_XOpenDisplay=yes else @@ -40154,7 +40213,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:40157: result: $ac_cv_lib_X11_XOpenDisplay" >&5 +echo "$as_me:40216: 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" @@ -40162,13 +40221,13 @@ fi fi - echo "$as_me:40165: checking for XtAppInitialize" >&5 + echo "$as_me:40224: 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 40171 "configure" +#line 40230 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char XtAppInitialize (); below. */ @@ -40199,16 +40258,16 @@ f = XtAppInitialize; /* workaround for ICC 12.0.3 */ if (f == 0) return 1; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:40202: \"$ac_link\"") >&5 +if { (eval echo "$as_me:40261: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:40205: \$? = $ac_status" >&5 + echo "$as_me:40264: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:40208: \"$ac_try\"") >&5 + { (eval echo "$as_me:40267: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:40211: \$? = $ac_status" >&5 + echo "$as_me:40270: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_XtAppInitialize=yes else @@ -40218,13 +40277,13 @@ ac_cv_func_XtAppInitialize=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:40221: result: $ac_cv_func_XtAppInitialize" >&5 +echo "$as_me:40280: 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:40227: checking for XtAppInitialize in -lXt" >&5 + echo "$as_me:40286: 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 @@ -40232,7 +40291,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lXt $X_PRE_LIBS $LIBS $X_EXTRA_LIBS $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 40235 "configure" +#line 40294 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -40251,16 +40310,16 @@ XtAppInitialize (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:40254: \"$ac_link\"") >&5 +if { (eval echo "$as_me:40313: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:40257: \$? = $ac_status" >&5 + echo "$as_me:40316: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:40260: \"$ac_try\"") >&5 + { (eval echo "$as_me:40319: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:40263: \$? = $ac_status" >&5 + echo "$as_me:40322: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_Xt_XtAppInitialize=yes else @@ -40271,7 +40330,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:40274: result: $ac_cv_lib_Xt_XtAppInitialize" >&5 +echo "$as_me:40333: 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 @@ -40288,7 +40347,7 @@ fi fi if test $cf_have_X_LIBS = no ; then - { echo "$as_me:40291: WARNING: Unable to successfully link X Toolkit library (-lXt) with + { echo "$as_me:40350: 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 @@ -40310,14 +40369,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:40313: checking for $cf_test in $cf_path" >&5 + echo "$as_me:40372: 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:40316: checking for $cf_test" >&5 + echo "$as_me:40375: checking for $cf_test" >&5 echo $ECHO_N "checking for $cf_test... $ECHO_C" >&6 fi cat >conftest.$ac_ext <<_ACEOF -#line 40320 "configure" +#line 40379 "configure" #include "confdefs.h" #include <X11/Intrinsic.h> @@ -40331,16 +40390,16 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:40334: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:40393: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:40337: \$? = $ac_status" >&5 + echo "$as_me:40396: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:40340: \"$ac_try\"") >&5 + { (eval echo "$as_me:40399: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:40343: \$? = $ac_status" >&5 + echo "$as_me:40402: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_result=yes else @@ -40349,7 +40408,7 @@ cat conftest.$ac_ext >&5 cf_result=no fi rm -f conftest.$ac_objext conftest.$ac_ext - echo "$as_me:40352: result: $cf_result" >&5 + echo "$as_me:40411: result: $cf_result" >&5 echo "${ECHO_T}$cf_result" >&6 if test "$cf_result" = yes ; then cf_x_athena_inc=$cf_path @@ -40361,7 +40420,7 @@ echo "${ECHO_T}$cf_result" >&6 done if test -z "$cf_x_athena_inc" ; then - { echo "$as_me:40364: WARNING: Unable to successfully find Athena header files with test program" >&5 + { echo "$as_me:40423: 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" @@ -40391,15 +40450,15 @@ do cf_test=XawSimpleMenuAddGlobalActions if test $cf_path != default ; then LIBS="-L$cf_path/lib $cf_libs $LIBS" - echo "$as_me:40394: checking for $cf_libs in $cf_path" >&5 + echo "$as_me:40453: checking for $cf_libs in $cf_path" >&5 echo $ECHO_N "checking for $cf_libs in $cf_path... $ECHO_C" >&6 else LIBS="$cf_libs $LIBS" - echo "$as_me:40398: checking for $cf_test in $cf_libs" >&5 + echo "$as_me:40457: 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 40402 "configure" +#line 40461 "configure" #include "confdefs.h" #include <X11/Intrinsic.h> @@ -40415,16 +40474,16 @@ $cf_test((XtAppContext) 0) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:40418: \"$ac_link\"") >&5 +if { (eval echo "$as_me:40477: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:40421: \$? = $ac_status" >&5 + echo "$as_me:40480: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:40424: \"$ac_try\"") >&5 + { (eval echo "$as_me:40483: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:40427: \$? = $ac_status" >&5 + echo "$as_me:40486: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_result=yes else @@ -40433,7 +40492,7 @@ cat conftest.$ac_ext >&5 cf_result=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext - echo "$as_me:40436: result: $cf_result" >&5 + echo "$as_me:40495: result: $cf_result" >&5 echo "${ECHO_T}$cf_result" >&6 if test "$cf_result" = yes ; then cf_x_athena_lib="$cf_libs" @@ -40447,7 +40506,7 @@ echo "${ECHO_T}$cf_result" >&6 done if test -z "$cf_x_athena_lib" ; then - { { echo "$as_me:40450: error: Unable to successfully link Athena library (-l$cf_x_athena_root) with test program" >&5 + { { echo "$as_me:40509: 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 @@ -40465,7 +40524,7 @@ if test -n "$ac_tool_prefix"; then do # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. set dummy $ac_tool_prefix$ac_prog; ac_word=$2 -echo "$as_me:40468: checking for $ac_word" >&5 +echo "$as_me:40527: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_prog_XCURSES_CONFIG+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -40480,7 +40539,7 @@ for ac_dir in $ac_dummy; do test -z "$ac_dir" && ac_dir=. $as_executable_p "$ac_dir/$ac_word" || continue ac_cv_prog_XCURSES_CONFIG="$ac_tool_prefix$ac_prog" -echo "$as_me:40483: found $ac_dir/$ac_word" >&5 +echo "$as_me:40542: found $ac_dir/$ac_word" >&5 break done @@ -40488,10 +40547,10 @@ fi fi XCURSES_CONFIG=$ac_cv_prog_XCURSES_CONFIG if test -n "$XCURSES_CONFIG"; then - echo "$as_me:40491: result: $XCURSES_CONFIG" >&5 + echo "$as_me:40550: result: $XCURSES_CONFIG" >&5 echo "${ECHO_T}$XCURSES_CONFIG" >&6 else - echo "$as_me:40494: result: no" >&5 + echo "$as_me:40553: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -40504,7 +40563,7 @@ if test -z "$XCURSES_CONFIG"; then do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 -echo "$as_me:40507: checking for $ac_word" >&5 +echo "$as_me:40566: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_prog_ac_ct_XCURSES_CONFIG+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -40519,7 +40578,7 @@ for ac_dir in $ac_dummy; do test -z "$ac_dir" && ac_dir=. $as_executable_p "$ac_dir/$ac_word" || continue ac_cv_prog_ac_ct_XCURSES_CONFIG="$ac_prog" -echo "$as_me:40522: found $ac_dir/$ac_word" >&5 +echo "$as_me:40581: found $ac_dir/$ac_word" >&5 break done @@ -40527,10 +40586,10 @@ fi fi ac_ct_XCURSES_CONFIG=$ac_cv_prog_ac_ct_XCURSES_CONFIG if test -n "$ac_ct_XCURSES_CONFIG"; then - echo "$as_me:40530: result: $ac_ct_XCURSES_CONFIG" >&5 + echo "$as_me:40589: result: $ac_ct_XCURSES_CONFIG" >&5 echo "${ECHO_T}$ac_ct_XCURSES_CONFIG" >&6 else - echo "$as_me:40533: result: no" >&5 + echo "$as_me:40592: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -40554,7 +40613,7 @@ LDFLAGS="$LDFLAGS $X_LIBS" test -n "$verbose" && echo " checking additions to CFLAGS" 1>&6 -echo "${as_me:-configure}:40557: testing checking additions to CFLAGS ..." 1>&5 +echo "${as_me:-configure}:40616: testing checking additions to CFLAGS ..." 1>&5 cf_check_cflags="$CFLAGS" cf_check_cppflags="$CPPFLAGS" @@ -40625,7 +40684,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}:40628: testing add to \$CFLAGS $cf_new_cflags ..." 1>&5 +echo "${as_me:-configure}:40687: testing add to \$CFLAGS $cf_new_cflags ..." 1>&5 CFLAGS="$CFLAGS $cf_new_cflags" fi @@ -40633,7 +40692,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}:40636: testing add to \$CPPFLAGS $cf_new_cppflags ..." 1>&5 +echo "${as_me:-configure}:40695: testing add to \$CPPFLAGS $cf_new_cppflags ..." 1>&5 CPPFLAGS="$CPPFLAGS $cf_new_cppflags" fi @@ -40641,14 +40700,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}:40644: testing add to \$EXTRA_CPPFLAGS $cf_new_extra_cppflags ..." 1>&5 +echo "${as_me:-configure}:40703: 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 40651 "configure" +#line 40710 "configure" #include "confdefs.h" #include <stdio.h> int @@ -40660,16 +40719,16 @@ printf("Hello world"); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:40663: \"$ac_link\"") >&5 +if { (eval echo "$as_me:40722: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:40666: \$? = $ac_status" >&5 + echo "$as_me:40725: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:40669: \"$ac_try\"") >&5 + { (eval echo "$as_me:40728: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:40672: \$? = $ac_status" >&5 + echo "$as_me:40731: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -40677,12 +40736,12 @@ else cat conftest.$ac_ext >&5 test -n "$verbose" && echo " test-compile failed. Undoing change to \$CFLAGS" 1>&6 -echo "${as_me:-configure}:40680: testing test-compile failed. Undoing change to \$CFLAGS ..." 1>&5 +echo "${as_me:-configure}:40739: 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}:40685: testing but keeping change to \$CPPFLAGS ..." 1>&5 +echo "${as_me:-configure}:40744: testing but keeping change to \$CPPFLAGS ..." 1>&5 fi CFLAGS="$cf_check_flags" @@ -40690,7 +40749,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:40693: checking for XOpenDisplay in -lX11" >&5 +echo "$as_me:40752: 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 @@ -40698,7 +40757,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lX11 $X_PRE_LIBS $LIBS $X_EXTRA_LIBS $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 40701 "configure" +#line 40760 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -40717,16 +40776,16 @@ XOpenDisplay (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:40720: \"$ac_link\"") >&5 +if { (eval echo "$as_me:40779: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:40723: \$? = $ac_status" >&5 + echo "$as_me:40782: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:40726: \"$ac_try\"") >&5 + { (eval echo "$as_me:40785: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:40729: \$? = $ac_status" >&5 + echo "$as_me:40788: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_X11_XOpenDisplay=yes else @@ -40737,13 +40796,13 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:40740: result: $ac_cv_lib_X11_XOpenDisplay" >&5 +echo "$as_me:40799: 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:40746: checking for XCurses library" >&5 +echo "$as_me:40805: 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 @@ -40751,7 +40810,7 @@ else LIBS="-lXCurses $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 40754 "configure" +#line 40813 "configure" #include "confdefs.h" #include <xcurses.h> @@ -40766,16 +40825,16 @@ XCursesExit(); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:40769: \"$ac_link\"") >&5 +if { (eval echo "$as_me:40828: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:40772: \$? = $ac_status" >&5 + echo "$as_me:40831: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:40775: \"$ac_try\"") >&5 + { (eval echo "$as_me:40834: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:40778: \$? = $ac_status" >&5 + echo "$as_me:40837: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_lib_XCurses=yes else @@ -40786,7 +40845,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:40789: result: $cf_cv_lib_XCurses" >&5 +echo "$as_me:40848: result: $cf_cv_lib_XCurses" >&5 echo "${ECHO_T}$cf_cv_lib_XCurses" >&6 fi @@ -40801,23 +40860,23 @@ cat >>confdefs.h <<\EOF #define XCURSES 1 EOF - echo "$as_me:40804: checking for xcurses.h" >&5 + echo "$as_me:40863: 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 40810 "configure" +#line 40869 "configure" #include "confdefs.h" #include <xcurses.h> _ACEOF -if { (eval echo "$as_me:40814: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:40873: \"$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:40820: \$? = $ac_status" >&5 + echo "$as_me:40879: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -40836,7 +40895,7 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:40839: result: $ac_cv_header_xcurses_h" >&5 +echo "$as_me:40898: 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 @@ -40847,14 +40906,14 @@ EOF fi else - { { echo "$as_me:40850: error: Cannot link with XCurses" >&5 + { { echo "$as_me:40909: error: Cannot link with XCurses" >&5 echo "$as_me: error: Cannot link with XCurses" >&2;} { (exit 1); exit 1; }; } fi else -echo "$as_me:40857: checking if we can include termio.h with curses" >&5 +echo "$as_me:40916: 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 @@ -40864,7 +40923,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 40867 "configure" +#line 40926 "configure" #include "confdefs.h" #include <LYCurses.h> @@ -40878,16 +40937,16 @@ putchar(0x0a) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:40881: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:40940: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:40884: \$? = $ac_status" >&5 + echo "$as_me:40943: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:40887: \"$ac_try\"") >&5 + { (eval echo "$as_me:40946: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:40890: \$? = $ac_status" >&5 + echo "$as_me:40949: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_termio_and_curses=yes else @@ -40900,7 +40959,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext rm -f lynx_cfg.h fi -echo "$as_me:40903: result: $cf_cv_termio_and_curses" >&5 +echo "$as_me:40962: result: $cf_cv_termio_and_curses" >&5 echo "${ECHO_T}$cf_cv_termio_and_curses" >&6 test $cf_cv_termio_and_curses = yes && @@ -40916,23 +40975,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:40919: checking for $ac_header" >&5 +echo "$as_me:40978: 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 40925 "configure" +#line 40984 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:40929: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:40988: \"$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:40935: \$? = $ac_status" >&5 + echo "$as_me:40994: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -40951,7 +41010,7 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:40954: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:41013: 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 @@ -40961,7 +41020,7 @@ EOF fi done -echo "$as_me:40964: checking if curses supports alternate-character set" >&5 +echo "$as_me:41023: 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 @@ -40970,7 +41029,7 @@ else for mapname in acs_map _acs_map do cat >conftest.$ac_ext <<_ACEOF -#line 40973 "configure" +#line 41032 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> @@ -40984,16 +41043,16 @@ chtype x = $mapname['l']; $mapname['m'] = 0 } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:40987: \"$ac_link\"") >&5 +if { (eval echo "$as_me:41046: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:40990: \$? = $ac_status" >&5 + echo "$as_me:41049: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:40993: \"$ac_try\"") >&5 + { (eval echo "$as_me:41052: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:40996: \$? = $ac_status" >&5 + echo "$as_me:41055: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_alt_char_set=$mapname break @@ -41007,21 +41066,21 @@ done fi -echo "$as_me:41010: result: $cf_cv_alt_char_set" >&5 +echo "$as_me:41069: 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:41017: checking if curses supports fancy attributes" >&5 +echo "$as_me:41076: 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 41024 "configure" +#line 41083 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> @@ -41039,16 +41098,16 @@ attrset(A_UNDERLINE|A_BOLD|A_REVERSE); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:41042: \"$ac_link\"") >&5 +if { (eval echo "$as_me:41101: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:41045: \$? = $ac_status" >&5 + echo "$as_me:41104: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:41048: \"$ac_try\"") >&5 + { (eval echo "$as_me:41107: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:41051: \$? = $ac_status" >&5 + echo "$as_me:41110: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_fancy_curses=yes else @@ -41060,14 +41119,14 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:41063: result: $cf_cv_fancy_curses" >&5 +echo "$as_me:41122: 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:41070: checking for function curses_version" >&5 +echo "$as_me:41129: 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 @@ -41077,7 +41136,7 @@ if test "$cross_compiling" = yes; then cf_cv_func_curses_version=unknown else cat >conftest.$ac_ext <<_ACEOF -#line 41080 "configure" +#line 41139 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> @@ -41090,15 +41149,15 @@ int main() _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:41093: \"$ac_link\"") >&5 +if { (eval echo "$as_me:41152: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:41096: \$? = $ac_status" >&5 + echo "$as_me:41155: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:41098: \"$ac_try\"") >&5 + { (eval echo "$as_me:41157: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:41101: \$? = $ac_status" >&5 + echo "$as_me:41160: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_func_curses_version=yes @@ -41113,7 +41172,7 @@ rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext fi rm -f core fi -echo "$as_me:41116: result: $cf_cv_func_curses_version" >&5 +echo "$as_me:41175: 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 @@ -41121,14 +41180,14 @@ cat >>confdefs.h <<\EOF EOF if test "$cf_cv_ncurses_version" != no ; then -echo "$as_me:41124: checking for obsolete/broken version of ncurses" >&5 +echo "$as_me:41183: 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 41131 "configure" +#line 41190 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> @@ -41147,16 +41206,16 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:41150: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:41209: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:41153: \$? = $ac_status" >&5 + echo "$as_me:41212: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:41156: \"$ac_try\"") >&5 + { (eval echo "$as_me:41215: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:41159: \$? = $ac_status" >&5 + echo "$as_me:41218: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_ncurses_broken=no else @@ -41168,10 +41227,10 @@ rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:41171: result: $cf_cv_ncurses_broken" >&5 +echo "$as_me:41230: 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:41174: WARNING: hmm... you should get an up-to-date version of ncurses" >&5 + { echo "$as_me:41233: 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 @@ -41181,14 +41240,14 @@ EOF fi fi -echo "$as_me:41184: checking if curses supports color attributes" >&5 +echo "$as_me:41243: 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 41191 "configure" +#line 41250 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> @@ -41208,16 +41267,16 @@ chtype x = COLOR_BLUE; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:41211: \"$ac_link\"") >&5 +if { (eval echo "$as_me:41270: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:41214: \$? = $ac_status" >&5 + echo "$as_me:41273: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:41217: \"$ac_try\"") >&5 + { (eval echo "$as_me:41276: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:41220: \$? = $ac_status" >&5 + echo "$as_me:41279: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_color_curses=yes else @@ -41229,7 +41288,7 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:41232: result: $cf_cv_color_curses" >&5 +echo "$as_me:41291: result: $cf_cv_color_curses" >&5 echo "${ECHO_T}$cf_cv_color_curses" >&6 if test $cf_cv_color_curses = yes ; then @@ -41251,23 +41310,23 @@ unistd.h \ do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` -echo "$as_me:41254: checking for $ac_header" >&5 +echo "$as_me:41313: 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 41260 "configure" +#line 41319 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:41264: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:41323: \"$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:41270: \$? = $ac_status" >&5 + echo "$as_me:41329: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -41286,7 +41345,7 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:41289: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:41348: 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 @@ -41301,23 +41360,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:41304: checking for $ac_header" >&5 +echo "$as_me:41363: 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 41310 "configure" +#line 41369 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:41314: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:41373: \"$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:41320: \$? = $ac_status" >&5 + echo "$as_me:41379: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -41336,7 +41395,7 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:41339: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:41398: 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 @@ -41354,10 +41413,10 @@ if test "$ac_cv_header_termios_h" = yes ; then *) termios_bad=maybe ;; esac if test "$termios_bad" = maybe ; then - echo "$as_me:41357: checking whether termios.h needs _POSIX_SOURCE" >&5 + echo "$as_me:41416: 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 41360 "configure" +#line 41419 "configure" #include "confdefs.h" #include <termios.h> int @@ -41369,16 +41428,16 @@ struct termios foo; int x = foo.c_iflag } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:41372: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:41431: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:41375: \$? = $ac_status" >&5 + echo "$as_me:41434: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:41378: \"$ac_try\"") >&5 + { (eval echo "$as_me:41437: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:41381: \$? = $ac_status" >&5 + echo "$as_me:41440: \$? = $ac_status" >&5 (exit $ac_status); }; }; then termios_bad=no else @@ -41386,7 +41445,7 @@ else cat conftest.$ac_ext >&5 cat >conftest.$ac_ext <<_ACEOF -#line 41389 "configure" +#line 41448 "configure" #include "confdefs.h" #define _POSIX_SOURCE @@ -41400,16 +41459,16 @@ struct termios foo; int x = foo.c_iflag } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:41403: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:41462: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:41406: \$? = $ac_status" >&5 + echo "$as_me:41465: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:41409: \"$ac_try\"") >&5 + { (eval echo "$as_me:41468: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:41412: \$? = $ac_status" >&5 + echo "$as_me:41471: \$? = $ac_status" >&5 (exit $ac_status); }; }; then termios_bad=unknown else @@ -41425,12 +41484,12 @@ rm -f conftest.$ac_objext conftest.$ac_ext fi rm -f conftest.$ac_objext conftest.$ac_ext - echo "$as_me:41428: result: $termios_bad" >&5 + echo "$as_me:41487: result: $termios_bad" >&5 echo "${ECHO_T}$termios_bad" >&6 fi fi -echo "$as_me:41433: checking declaration of size-change" >&5 +echo "$as_me:41492: 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 @@ -41445,7 +41504,7 @@ do CPPFLAGS="$cf_save_CPPFLAGS" test -n "$cf_opts" && CPPFLAGS="$CPPFLAGS -D$cf_opts" cat >conftest.$ac_ext <<_ACEOF -#line 41448 "configure" +#line 41507 "configure" #include "confdefs.h" #include <sys/types.h> #ifdef HAVE_TERMIOS_H @@ -41489,16 +41548,16 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:41492: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:41551: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:41495: \$? = $ac_status" >&5 + echo "$as_me:41554: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:41498: \"$ac_try\"") >&5 + { (eval echo "$as_me:41557: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:41501: \$? = $ac_status" >&5 + echo "$as_me:41560: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_sizechange=yes else @@ -41517,7 +41576,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext done fi -echo "$as_me:41520: result: $cf_cv_sizechange" >&5 +echo "$as_me:41579: result: $cf_cv_sizechange" >&5 echo "${ECHO_T}$cf_cv_sizechange" >&6 if test "$cf_cv_sizechange" != no ; then @@ -41535,14 +41594,14 @@ EOF esac fi -echo "$as_me:41538: checking if ttytype is declared in curses library" >&5 +echo "$as_me:41597: 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 41545 "configure" +#line 41604 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> int @@ -41554,16 +41613,16 @@ char *x = &ttytype[1]; *x = 1 } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:41557: \"$ac_link\"") >&5 +if { (eval echo "$as_me:41616: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:41560: \$? = $ac_status" >&5 + echo "$as_me:41619: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:41563: \"$ac_try\"") >&5 + { (eval echo "$as_me:41622: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:41566: \$? = $ac_status" >&5 + echo "$as_me:41625: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_have_ttytype=yes else @@ -41575,7 +41634,7 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:41578: result: $cf_cv_have_ttytype" >&5 +echo "$as_me:41637: result: $cf_cv_have_ttytype" >&5 echo "${ECHO_T}$cf_cv_have_ttytype" >&6 test $cf_cv_have_ttytype = yes && cat >>confdefs.h <<\EOF @@ -41584,14 +41643,14 @@ EOF if test "$use_wide_curses" = yes ; then -echo "$as_me:41587: checking if curses supports wide characters" >&5 +echo "$as_me:41646: 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 41594 "configure" +#line 41653 "configure" #include "confdefs.h" #include <stdlib.h> @@ -41610,16 +41669,16 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:41613: \"$ac_link\"") >&5 +if { (eval echo "$as_me:41672: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:41616: \$? = $ac_status" >&5 + echo "$as_me:41675: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:41619: \"$ac_try\"") >&5 + { (eval echo "$as_me:41678: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:41622: \$? = $ac_status" >&5 + echo "$as_me:41681: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_widec_curses=yes else @@ -41630,7 +41689,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:41633: result: $cf_cv_widec_curses" >&5 +echo "$as_me:41692: result: $cf_cv_widec_curses" >&5 echo "${ECHO_T}$cf_cv_widec_curses" >&6 if test "$cf_cv_widec_curses" = yes ; then @@ -41640,14 +41699,14 @@ cat >>confdefs.h <<\EOF EOF # This is needed on Tru64 5.0 to declare mbstate_t - echo "$as_me:41643: checking if we must include wchar.h to declare mbstate_t" >&5 + echo "$as_me:41702: 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 41650 "configure" +#line 41709 "configure" #include "confdefs.h" #include <stdlib.h> @@ -41661,23 +41720,23 @@ mbstate_t state } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:41664: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:41723: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:41667: \$? = $ac_status" >&5 + echo "$as_me:41726: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:41670: \"$ac_try\"") >&5 + { (eval echo "$as_me:41729: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:41673: \$? = $ac_status" >&5 + echo "$as_me:41732: \$? = $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 41680 "configure" +#line 41739 "configure" #include "confdefs.h" #include <stdlib.h> @@ -41692,16 +41751,16 @@ mbstate_t state } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:41695: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:41754: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:41698: \$? = $ac_status" >&5 + echo "$as_me:41757: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:41701: \"$ac_try\"") >&5 + { (eval echo "$as_me:41760: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:41704: \$? = $ac_status" >&5 + echo "$as_me:41763: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_widec_mbstate=yes else @@ -41713,7 +41772,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:41716: result: $cf_cv_widec_mbstate" >&5 +echo "$as_me:41775: result: $cf_cv_widec_mbstate" >&5 echo "${ECHO_T}$cf_cv_widec_mbstate" >&6 if test "$cf_cv_widec_mbstate" = yes ; then @@ -41736,14 +41795,14 @@ fi fi -echo "$as_me:41739: checking if we must define _XOPEN_SOURCE_EXTENDED" >&5 +echo "$as_me:41798: 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 41746 "configure" +#line 41805 "configure" #include "confdefs.h" #include <stdlib.h> @@ -41765,23 +41824,23 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:41768: \"$ac_link\"") >&5 +if { (eval echo "$as_me:41827: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:41771: \$? = $ac_status" >&5 + echo "$as_me:41830: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:41774: \"$ac_try\"") >&5 + { (eval echo "$as_me:41833: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:41777: \$? = $ac_status" >&5 + echo "$as_me:41836: \$? = $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 41784 "configure" +#line 41843 "configure" #include "confdefs.h" #define _XOPEN_SOURCE_EXTENDED @@ -41803,16 +41862,16 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:41806: \"$ac_link\"") >&5 +if { (eval echo "$as_me:41865: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:41809: \$? = $ac_status" >&5 + echo "$as_me:41868: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:41812: \"$ac_try\"") >&5 + { (eval echo "$as_me:41871: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:41815: \$? = $ac_status" >&5 + echo "$as_me:41874: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_need_xopen_extension=yes else @@ -41824,11 +41883,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:41827: result: $cf_cv_need_xopen_extension" >&5 +echo "$as_me:41886: 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:41831: checking for term.h" >&5 +echo "$as_me:41890: 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 @@ -41849,7 +41908,7 @@ esac for cf_header in $cf_header_list do cat >conftest.$ac_ext <<_ACEOF -#line 41852 "configure" +#line 41911 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> @@ -41863,16 +41922,16 @@ WINDOW *x } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:41866: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:41925: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:41869: \$? = $ac_status" >&5 + echo "$as_me:41928: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:41872: \"$ac_try\"") >&5 + { (eval echo "$as_me:41931: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:41875: \$? = $ac_status" >&5 + echo "$as_me:41934: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_term_header=$cf_header break @@ -41891,7 +41950,7 @@ no) for cf_header in ncurses/term.h ncursesw/term.h do cat >conftest.$ac_ext <<_ACEOF -#line 41894 "configure" +#line 41953 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> @@ -41909,16 +41968,16 @@ WINDOW *x } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:41912: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:41971: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:41915: \$? = $ac_status" >&5 + echo "$as_me:41974: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:41918: \"$ac_try\"") >&5 + { (eval echo "$as_me:41977: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:41921: \$? = $ac_status" >&5 + echo "$as_me:41980: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_term_header=$cf_header break @@ -41933,7 +41992,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext esac fi -echo "$as_me:41936: result: $cf_cv_term_header" >&5 +echo "$as_me:41995: result: $cf_cv_term_header" >&5 echo "${ECHO_T}$cf_cv_term_header" >&6 case $cf_cv_term_header in #(vi @@ -41960,7 +42019,7 @@ EOF ;; esac -echo "$as_me:41963: checking for unctrl.h" >&5 +echo "$as_me:42022: 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 @@ -41981,7 +42040,7 @@ esac for cf_header in $cf_header_list do cat >conftest.$ac_ext <<_ACEOF -#line 41984 "configure" +#line 42043 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> @@ -41995,16 +42054,16 @@ WINDOW *x } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:41998: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:42057: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:42001: \$? = $ac_status" >&5 + echo "$as_me:42060: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:42004: \"$ac_try\"") >&5 + { (eval echo "$as_me:42063: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:42007: \$? = $ac_status" >&5 + echo "$as_me:42066: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_unctrl_header=$cf_header break @@ -42018,13 +42077,13 @@ done case $cf_cv_unctrl_header in #(vi no) - { echo "$as_me:42021: WARNING: unctrl.h header not found" >&5 + { echo "$as_me:42080: WARNING: unctrl.h header not found" >&5 echo "$as_me: WARNING: unctrl.h header not found" >&2;} ;; esac fi -echo "$as_me:42027: result: $cf_cv_unctrl_header" >&5 +echo "$as_me:42086: result: $cf_cv_unctrl_header" >&5 echo "${ECHO_T}$cf_cv_unctrl_header" >&6 case $cf_cv_unctrl_header in #(vi @@ -42078,10 +42137,10 @@ do cf_tr_func=`echo "$cf_func" | sed y%abcdefghijklmnopqrstuvwxyz./-%ABCDEFGHIJKLMNOPQRSTUVWXYZ___%` - echo "$as_me:42081: checking for ${cf_func}" >&5 + echo "$as_me:42140: checking for ${cf_func}" >&5 echo $ECHO_N "checking for ${cf_func}... $ECHO_C" >&6 -echo "${as_me:-configure}:42084: testing ${cf_func} ..." 1>&5 +echo "${as_me:-configure}:42143: testing ${cf_func} ..." 1>&5 if eval "test \"\${cf_cv_func_$cf_func+set}\" = set"; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -42090,7 +42149,7 @@ else eval cf_result='$ac_cv_func_'$cf_func if test ".$cf_result" != ".no"; then cat >conftest.$ac_ext <<_ACEOF -#line 42093 "configure" +#line 42152 "configure" #include "confdefs.h" #ifdef HAVE_XCURSES @@ -42122,16 +42181,16 @@ if (foo + 1234 > 5678) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:42125: \"$ac_link\"") >&5 +if { (eval echo "$as_me:42184: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:42128: \$? = $ac_status" >&5 + echo "$as_me:42187: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:42131: \"$ac_try\"") >&5 + { (eval echo "$as_me:42190: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:42134: \$? = $ac_status" >&5 + echo "$as_me:42193: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_result=yes else @@ -42147,7 +42206,7 @@ fi # use the computed/retrieved cache-value: eval 'cf_result=$cf_cv_func_'$cf_func - echo "$as_me:42150: result: $cf_result" >&5 + echo "$as_me:42209: result: $cf_result" >&5 echo "${ECHO_T}$cf_result" >&6 if test $cf_result != no; then cat >>confdefs.h <<EOF @@ -42163,13 +42222,13 @@ for ac_func in \ do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` -echo "$as_me:42166: checking for $ac_func" >&5 +echo "$as_me:42225: 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 42172 "configure" +#line 42231 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. */ @@ -42200,16 +42259,16 @@ f = $ac_func; /* workaround for ICC 12.0.3 */ if (f == 0) return 1; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:42203: \"$ac_link\"") >&5 +if { (eval echo "$as_me:42262: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:42206: \$? = $ac_status" >&5 + echo "$as_me:42265: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:42209: \"$ac_try\"") >&5 + { (eval echo "$as_me:42268: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:42212: \$? = $ac_status" >&5 + echo "$as_me:42271: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else @@ -42219,7 +42278,7 @@ eval "$as_ac_var=no" fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:42222: result: `eval echo '${'$as_ac_var'}'`" >&5 +echo "$as_me:42281: 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 @@ -42233,12 +42292,12 @@ fi if test $use_color_style != no ; then if test .$cf_cv_color_curses != .yes ; then - { { echo "$as_me:42236: error: Configuration does not support color-styles" >&5 + { { echo "$as_me:42295: 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:42241: error: Configuration does not support color-styles" >&5 + { { echo "$as_me:42300: error: Configuration does not support color-styles" >&5 echo "$as_me: error: Configuration does not support color-styles" >&2;} { (exit 1); exit 1; }; } fi @@ -42246,7 +42305,7 @@ fi if test $use_scrollbar != no ; then if test .$cf_cv_fancy_curses != .yes ; then - { echo "$as_me:42249: WARNING: Configuration does not support ACS_xxx definitions" >&5 + { echo "$as_me:42308: WARNING: Configuration does not support ACS_xxx definitions" >&5 echo "$as_me: WARNING: Configuration does not support ACS_xxx definitions" >&2;} else @@ -42260,7 +42319,7 @@ fi # use rpath for libraries in unusual places LD_RPATH_OPT= -echo "$as_me:42263: checking for an rpath option" >&5 +echo "$as_me:42322: 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 @@ -42291,17 +42350,17 @@ solaris2*) #(vi *) ;; esac -echo "$as_me:42294: result: $LD_RPATH_OPT" >&5 +echo "$as_me:42353: result: $LD_RPATH_OPT" >&5 echo "${ECHO_T}$LD_RPATH_OPT" >&6 case "x$LD_RPATH_OPT" in #(vi x-R*) - echo "$as_me:42299: checking if we need a space after rpath option" >&5 + echo "$as_me:42358: 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 42304 "configure" +#line 42363 "configure" #include "confdefs.h" int @@ -42313,16 +42372,16 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:42316: \"$ac_link\"") >&5 +if { (eval echo "$as_me:42375: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:42319: \$? = $ac_status" >&5 + echo "$as_me:42378: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:42322: \"$ac_try\"") >&5 + { (eval echo "$as_me:42381: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:42325: \$? = $ac_status" >&5 + echo "$as_me:42384: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_rpath_space=no else @@ -42332,13 +42391,13 @@ cf_rpath_space=yes fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS="$cf_save_LIBS" - echo "$as_me:42335: result: $cf_rpath_space" >&5 + echo "$as_me:42394: 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:42341: checking if rpath-hack should be disabled" >&5 +echo "$as_me:42400: 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. @@ -42355,21 +42414,21 @@ else cf_disable_rpath_hack=no fi; -echo "$as_me:42358: result: $cf_disable_rpath_hack" >&5 +echo "$as_me:42417: 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:42362: checking for updated LDFLAGS" >&5 +echo "$as_me:42421: 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:42365: result: maybe" >&5 + echo "$as_me:42424: 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:42372: checking for $ac_word" >&5 +echo "$as_me:42431: 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 @@ -42384,7 +42443,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:42387: found $ac_dir/$ac_word" >&5 +echo "$as_me:42446: found $ac_dir/$ac_word" >&5 break done @@ -42392,10 +42451,10 @@ fi fi cf_ldd_prog=$ac_cv_prog_cf_ldd_prog if test -n "$cf_ldd_prog"; then - echo "$as_me:42395: result: $cf_ldd_prog" >&5 + echo "$as_me:42454: result: $cf_ldd_prog" >&5 echo "${ECHO_T}$cf_ldd_prog" >&6 else - echo "$as_me:42398: result: no" >&5 + echo "$as_me:42457: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -42409,7 +42468,7 @@ test -n "$cf_ldd_prog" || cf_ldd_prog="no" cf_rpath_oops= cat >conftest.$ac_ext <<_ACEOF -#line 42412 "configure" +#line 42471 "configure" #include "confdefs.h" #include <stdio.h> int @@ -42421,19 +42480,19 @@ printf("Hello"); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:42424: \"$ac_link\"") >&5 +if { (eval echo "$as_me:42483: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:42427: \$? = $ac_status" >&5 + echo "$as_me:42486: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:42430: \"$ac_try\"") >&5 + { (eval echo "$as_me:42489: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:42433: \$? = $ac_status" >&5 + echo "$as_me:42492: \$? = $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` + cf_rpath_oops=`$cf_ldd_prog conftest$ac_exeext | fgrep ' not found' | sed -e 's% =>.*$%%' |sort | uniq` + cf_rpath_list=`$cf_ldd_prog conftest$ac_exeext | fgrep / | sed -e 's%^.*[ ]/%/%' -e 's%/[^/][^/]*$%%' |sort | uniq` else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 @@ -42458,7 +42517,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}:42461: testing ...adding -L$cf_rpath_dir/lib to LDFLAGS for $cf_rpath_src ..." 1>&5 +echo "${as_me:-configure}:42520: testing ...adding -L$cf_rpath_dir/lib to LDFLAGS for $cf_rpath_src ..." 1>&5 LDFLAGS="$LDFLAGS -L$cf_rpath_dir/lib" break @@ -42470,11 +42529,11 @@ echo "${as_me:-configure}:42461: testing ...adding -L$cf_rpath_dir/lib to LDFLAG test -n "$verbose" && echo " ...checking EXTRA_LDFLAGS $EXTRA_LDFLAGS" 1>&6 -echo "${as_me:-configure}:42473: testing ...checking EXTRA_LDFLAGS $EXTRA_LDFLAGS ..." 1>&5 +echo "${as_me:-configure}:42532: testing ...checking EXTRA_LDFLAGS $EXTRA_LDFLAGS ..." 1>&5 test -n "$verbose" && echo " ...checking LDFLAGS $LDFLAGS" 1>&6 -echo "${as_me:-configure}:42477: testing ...checking LDFLAGS $LDFLAGS ..." 1>&5 +echo "${as_me:-configure}:42536: testing ...checking LDFLAGS $LDFLAGS ..." 1>&5 cf_rpath_dst= for cf_rpath_src in $LDFLAGS @@ -42511,7 +42570,7 @@ do then test -n "$verbose" && echo " ...Filter $cf_rpath_src ->$cf_rpath_tmp" 1>&6 -echo "${as_me:-configure}:42514: testing ...Filter $cf_rpath_src ->$cf_rpath_tmp ..." 1>&5 +echo "${as_me:-configure}:42573: testing ...Filter $cf_rpath_src ->$cf_rpath_tmp ..." 1>&5 EXTRA_LDFLAGS="$cf_rpath_tmp $EXTRA_LDFLAGS" fi @@ -42524,11 +42583,11 @@ LDFLAGS=$cf_rpath_dst test -n "$verbose" && echo " ...checked LDFLAGS $LDFLAGS" 1>&6 -echo "${as_me:-configure}:42527: testing ...checked LDFLAGS $LDFLAGS ..." 1>&5 +echo "${as_me:-configure}:42586: testing ...checked LDFLAGS $LDFLAGS ..." 1>&5 test -n "$verbose" && echo " ...checking LIBS $LIBS" 1>&6 -echo "${as_me:-configure}:42531: testing ...checking LIBS $LIBS ..." 1>&5 +echo "${as_me:-configure}:42590: testing ...checking LIBS $LIBS ..." 1>&5 cf_rpath_dst= for cf_rpath_src in $LIBS @@ -42565,7 +42624,7 @@ do then test -n "$verbose" && echo " ...Filter $cf_rpath_src ->$cf_rpath_tmp" 1>&6 -echo "${as_me:-configure}:42568: testing ...Filter $cf_rpath_src ->$cf_rpath_tmp ..." 1>&5 +echo "${as_me:-configure}:42627: testing ...Filter $cf_rpath_src ->$cf_rpath_tmp ..." 1>&5 EXTRA_LDFLAGS="$cf_rpath_tmp $EXTRA_LDFLAGS" fi @@ -42578,12 +42637,15 @@ LIBS=$cf_rpath_dst test -n "$verbose" && echo " ...checked LIBS $LIBS" 1>&6 -echo "${as_me:-configure}:42581: testing ...checked LIBS $LIBS ..." 1>&5 +echo "${as_me:-configure}:42640: testing ...checked LIBS $LIBS ..." 1>&5 test -n "$verbose" && echo " ...checked EXTRA_LDFLAGS $EXTRA_LDFLAGS" 1>&6 -echo "${as_me:-configure}:42585: testing ...checked EXTRA_LDFLAGS $EXTRA_LDFLAGS ..." 1>&5 +echo "${as_me:-configure}:42644: testing ...checked EXTRA_LDFLAGS $EXTRA_LDFLAGS ..." 1>&5 +else + echo "$as_me:42647: result: no" >&5 +echo "${ECHO_T}no" >&6 fi fi @@ -42683,7 +42745,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:42686: creating $CONFIG_STATUS" >&5 +{ echo "$as_me:42748: creating $CONFIG_STATUS" >&5 echo "$as_me: creating $CONFIG_STATUS" >&6;} cat >$CONFIG_STATUS <<_ACEOF #! $SHELL @@ -42859,7 +42921,7 @@ cat >>$CONFIG_STATUS <<\EOF echo "$ac_cs_version"; exit 0 ;; --he | --h) # Conflict between --help and --header - { { echo "$as_me:42862: error: ambiguous option: $1 + { { echo "$as_me:42924: 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;} @@ -42878,7 +42940,7 @@ Try \`$0 --help' for more information." >&2;} ac_need_defaults=false;; # This is an error. - -*) { { echo "$as_me:42881: error: unrecognized option: $1 + -*) { { echo "$as_me:42943: 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;} @@ -42931,7 +42993,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:42934: error: invalid argument: $ac_config_target" >&5 + *) { { echo "$as_me:42996: error: invalid argument: $ac_config_target" >&5 echo "$as_me: error: invalid argument: $ac_config_target" >&2;} { (exit 1); exit 1; }; };; esac @@ -43264,7 +43326,7 @@ done; } esac if test x"$ac_file" != x-; then - { echo "$as_me:43267: creating $ac_file" >&5 + { echo "$as_me:43329: creating $ac_file" >&5 echo "$as_me: creating $ac_file" >&6;} rm -f "$ac_file" fi @@ -43282,7 +43344,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:43285: error: cannot find input file: $f" >&5 + test -f "$f" || { { echo "$as_me:43347: error: cannot find input file: $f" >&5 echo "$as_me: error: cannot find input file: $f" >&2;} { (exit 1); exit 1; }; } echo $f;; @@ -43295,7 +43357,7 @@ echo "$as_me: error: cannot find input file: $f" >&2;} echo $srcdir/$f else # /dev/null tree - { { echo "$as_me:43298: error: cannot find input file: $f" >&5 + { { echo "$as_me:43360: error: cannot find input file: $f" >&5 echo "$as_me: error: cannot find input file: $f" >&2;} { (exit 1); exit 1; }; } fi;; @@ -43311,7 +43373,7 @@ cat >>$CONFIG_STATUS <<\EOF if test -n "$ac_seen"; then ac_used=`grep '@datarootdir@' $ac_item` if test -z "$ac_used"; then - { echo "$as_me:43314: WARNING: datarootdir was used implicitly but not set: + { echo "$as_me:43376: WARNING: datarootdir was used implicitly but not set: $ac_seen" >&5 echo "$as_me: WARNING: datarootdir was used implicitly but not set: $ac_seen" >&2;} @@ -43320,7 +43382,7 @@ $ac_seen" >&2;} fi ac_seen=`grep '${datarootdir}' $ac_item` if test -n "$ac_seen"; then - { echo "$as_me:43323: WARNING: datarootdir was used explicitly but not set: + { echo "$as_me:43385: WARNING: datarootdir was used explicitly but not set: $ac_seen" >&5 echo "$as_me: WARNING: datarootdir was used explicitly but not set: $ac_seen" >&2;} @@ -43357,7 +43419,7 @@ s,@INSTALL@,$ac_INSTALL,;t t ac_init=`egrep '[ ]*'$ac_name'[ ]*=' $ac_file` if test -z "$ac_init"; then ac_seen=`echo "$ac_seen" |sed -e 's,^,'$ac_file':,'` - { echo "$as_me:43360: WARNING: Variable $ac_name is used but was not set: + { echo "$as_me:43422: WARNING: Variable $ac_name is used but was not set: $ac_seen" >&5 echo "$as_me: WARNING: Variable $ac_name is used but was not set: $ac_seen" >&2;} @@ -43368,7 +43430,7 @@ $ac_seen" >&2;} egrep -n '@[A-Z_][A-Z_0-9]+@' $ac_file >>$tmp/out if test -s $tmp/out; then ac_seen=`sed -e 's,^,'$ac_file':,' < $tmp/out` - { echo "$as_me:43371: WARNING: Some variables may not be substituted: + { echo "$as_me:43433: WARNING: Some variables may not be substituted: $ac_seen" >&5 echo "$as_me: WARNING: Some variables may not be substituted: $ac_seen" >&2;} @@ -43417,7 +43479,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:43420: creating $ac_file" >&5 + test x"$ac_file" != x- && { echo "$as_me:43482: creating $ac_file" >&5 echo "$as_me: creating $ac_file" >&6;} # First look for the input files in the build tree, otherwise in the @@ -43428,7 +43490,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:43431: error: cannot find input file: $f" >&5 + test -f "$f" || { { echo "$as_me:43493: error: cannot find input file: $f" >&5 echo "$as_me: error: cannot find input file: $f" >&2;} { (exit 1); exit 1; }; } echo $f;; @@ -43441,7 +43503,7 @@ echo "$as_me: error: cannot find input file: $f" >&2;} echo $srcdir/$f else # /dev/null tree - { { echo "$as_me:43444: error: cannot find input file: $f" >&5 + { { echo "$as_me:43506: error: cannot find input file: $f" >&5 echo "$as_me: error: cannot find input file: $f" >&2;} { (exit 1); exit 1; }; } fi;; @@ -43559,7 +43621,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:43562: $ac_file is unchanged" >&5 + { echo "$as_me:43624: $ac_file is unchanged" >&5 echo "$as_me: $ac_file is unchanged" >&6;} else ac_dir=`$as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ diff --git a/src/tidy_tls.c b/src/tidy_tls.c index e08f1b79..c012e22e 100644 --- a/src/tidy_tls.c +++ b/src/tidy_tls.c @@ -1,6 +1,6 @@ /* - * $LynxId: tidy_tls.c,v 1.11 2013/05/01 08:52:41 tom Exp $ - * Copyright 2008-2011,2011 Thomas E. Dickey + * $LynxId: tidy_tls.c,v 1.12 2013/09/29 23:38:30 tom Exp $ + * Copyright 2008-2011,2013 Thomas E. Dickey * with fix Copyright 2008 by Thomas Viehmann * * Required libraries: diff --git a/userdefs.h b/userdefs.h index 43ec6d18..4d7ba330 100644 --- a/userdefs.h +++ b/userdefs.h @@ -1,12 +1,12 @@ /* - * $LynxId: userdefs.h,v 1.275 2013/07/29 21:38:35 tom Exp $ + * $LynxId: userdefs.h,v 1.276 2013/09/30 00:37:25 tom Exp $ * * Lynx - Hypertext navigation system * * (c) Copyright 1992, 1993, 1994 University of Kansas * 1995, 1996: GNU General Public License * - * Copyrights 1996-2007 Lynx Developers Group + * Copyright 1996-2012,2013 Thomas E. Dickey and Lynx Developers Group * Note: GNU General Public License is not a copyright. */ |