diff options
-rw-r--r-- | CHANGES | 6 | ||||
-rw-r--r-- | WWW/Library/Implementation/makefile.in | 4 | ||||
-rw-r--r-- | aclocal.m4 | 99 | ||||
-rwxr-xr-x | config.guess | 52 | ||||
-rwxr-xr-x | config.sub | 588 | ||||
-rwxr-xr-x | configure | 7793 | ||||
-rw-r--r-- | configure.in | 23 | ||||
-rw-r--r-- | makefile.in | 4 | ||||
-rw-r--r-- | src/chrtrans/makefile.in | 5 | ||||
-rw-r--r-- | src/makefile.in | 9 |
10 files changed, 4422 insertions, 4161 deletions
diff --git a/CHANGES b/CHANGES index 0604a218..a6502efb 100644 --- a/CHANGES +++ b/CHANGES @@ -1,9 +1,11 @@ --- $LynxId: CHANGES,v 1.1051 2020/06/15 17:32:02 tom Exp $ +-- $LynxId: CHANGES,v 1.1052 2020/08/28 18:35:31 tom Exp $ =============================================================================== Changes since Lynx 2.8 release =============================================================================== -2020-06-18 (2.9.0dev.6) +2020-08-28 (2.9.0dev.6) +* in configure script, filter out gcc -Werror options where they would interere + with configure checks (report by Ryan Schmidt) -TD * minor formatting fixes for manual page (Debian #961080) * update autoconf macros, mostly changes to reduce unused-variable warnings in the compile-checks -TD diff --git a/WWW/Library/Implementation/makefile.in b/WWW/Library/Implementation/makefile.in index e5a27547..6acd09ea 100644 --- a/WWW/Library/Implementation/makefile.in +++ b/WWW/Library/Implementation/makefile.in @@ -1,4 +1,4 @@ -# $LynxId: makefile.in,v 1.33 2017/07/04 22:45:38 tom Exp $ +# $LynxId: makefile.in,v 1.34 2020/08/28 18:44:35 tom Exp $ # Make WWW under unix for a.n.other unix system (bsd) # Use this as a template @@ -41,7 +41,7 @@ CPPOPTS = $(DEFS) $(LYFLAGS) \ -I$(top_srcdir)/src \ $(INTLDIR_CPPFLAGS) -I$(WWWINC) $(EXTRA_CPPFLAGS) $(CPPFLAGS) -LY_CFLAGS = @CFLAGS@ +LY_CFLAGS = @CFLAGS@ @EXTRA_CFLAGS@ CFLAGS = $(CPPOPTS) $(LY_CFLAGS) LINT = @LINT@ diff --git a/aclocal.m4 b/aclocal.m4 index 44710d22..25fd2ad8 100644 --- a/aclocal.m4 +++ b/aclocal.m4 @@ -1,4 +1,4 @@ -dnl $LynxId: aclocal.m4,v 1.266 2020/04/04 20:16:13 tom Exp $ +dnl $LynxId: aclocal.m4,v 1.269 2020/08/28 20:56:27 tom Exp $ dnl Macros for auto-configure script. dnl by Thomas E. Dickey <dickey@invisible-island.net> dnl and Jim Spath <jspath@mail.bcpl.lib.md.us> @@ -1742,7 +1742,7 @@ if test $ac_cv_type_$1 = no; then fi ])dnl dnl --------------------------------------------------------------------------- -dnl CF_CLANG_COMPILER version: 2 updated: 2013/11/19 19:23:35 +dnl CF_CLANG_COMPILER version: 3 updated: 2020/08/28 04:10:22 dnl ----------------- dnl Check if the given compiler is really clang. clang's C driver defines dnl __GNUC__ (fooling the configure script into setting $GCC to yes) but does @@ -1773,6 +1773,10 @@ cf_save_CFLAGS="$cf_save_CFLAGS -Qunused-arguments" ifelse([$3],,CFLAGS,[$3])="$cf_save_CFLAGS" AC_MSG_RESULT($ifelse([$2],,CLANG_COMPILER,[$2])) fi + +if test "x$CLANG_COMPILER" = "xyes" ; then + CF_APPEND_TEXT(CFLAGS,-Wno-error=implicit-function-declaration) +fi ]) dnl --------------------------------------------------------------------------- dnl CF_COLOR_CURSES version: 8 updated: 2012/11/08 20:57:52 @@ -2396,6 +2400,29 @@ if test "$cf_disable_rpath_hack" = no ; then fi ]) dnl --------------------------------------------------------------------------- +dnl CF_ENABLE_WARNINGS version: 6 updated: 2020/08/28 04:10:22 +dnl ------------------ +dnl Configure-option to enable gcc warnings +AC_DEFUN([CF_ENABLE_WARNINGS],[ +if ( test "$GCC" = yes || test "$GXX" = yes ) +then +CF_FIX_WARNINGS(CFLAGS) +CF_FIX_WARNINGS(CPPFLAGS) +CF_FIX_WARNINGS(LDFLAGS) +AC_MSG_CHECKING(if you want to turn on gcc warnings) +CF_ARG_ENABLE(warnings, + [ --enable-warnings test: turn on gcc compiler warnings], + [with_warnings=yes], + [with_warnings=no]) +AC_MSG_RESULT($with_warnings) +if test "$with_warnings" = "yes" +then + CF_GCC_ATTRIBUTES + CF_GCC_WARNINGS($1) +fi +fi +])dnl +dnl --------------------------------------------------------------------------- dnl CF_ERRNO version: 5 updated: 1997/11/30 12:44:39 dnl -------- dnl Check if 'errno' is declared in <errno.h> @@ -2797,6 +2824,40 @@ AC_TRY_LINK([ test "$cf_cv_fionbio" = "fcntl" && AC_DEFINE(USE_FCNTL,1,[Define to 1 if we should use fcntl]) ])dnl dnl --------------------------------------------------------------------------- +dnl CF_FIX_WARNINGS version: 2 updated: 2020/08/28 15:08:28 +dnl --------------- +dnl Warning flags do not belong in CFLAGS, CPPFLAGS, etc. Any of gcc's +dnl "-Werror" flags can interfere with configure-checks. Those go into +dnl EXTRA_CFLAGS. +dnl +dnl $1 = variable name to repair +define([CF_FIX_WARNINGS],[ +if ( test "$GCC" = yes || test "$GXX" = yes ) +then + case [$]$1 in + (*-Werror=*) + CF_VERBOSE(repairing $1: [$]$1) + cf_temp_flags= + for cf_temp_scan in [$]$1 + do + case "x$cf_temp_scan" in + (x-Werror=*) + CF_APPEND_TEXT(EXTRA_CFLAGS,"$cf_temp_scan") + ;; + (*) + CF_APPEND_TEXT(cf_temp_flags,"$cf_temp_scan") + ;; + esac + done + $1="$cf_temp_flags" + CF_VERBOSE(... fixed [$]$1) + CF_VERBOSE(... extra $EXTRA_CFLAGS) + ;; + esac +fi +AC_SUBST(EXTRA_CFLAGS) +])dnl +dnl --------------------------------------------------------------------------- dnl CF_FUNC_CURSES_VERSION version: 7 updated: 2017/05/10 18:31:29 dnl ---------------------- dnl Solaris has a data item 'curses_version', which confuses AC_CHECK_FUNCS. @@ -3154,7 +3215,7 @@ CF_INTEL_COMPILER(GCC,INTEL_COMPILER,CFLAGS) CF_CLANG_COMPILER(GCC,CLANG_COMPILER,CFLAGS) ])dnl dnl --------------------------------------------------------------------------- -dnl CF_GCC_WARNINGS version: 37 updated: 2020/01/05 20:04:12 +dnl CF_GCC_WARNINGS version: 38 updated: 2020/08/28 15:08:28 dnl --------------- dnl Check if the compiler supports useful warning options. There's a few that dnl we don't use, simply because they're too noisy: @@ -3197,7 +3258,7 @@ then AC_CHECKING([for $CC warning options]) cf_save_CFLAGS="$CFLAGS" - EXTRA_CFLAGS="-Wall" + EXTRA_CFLAGS="$EXTRA_CFLAGS -Wall" for cf_opt in \ wd1419 \ wd1683 \ @@ -3220,7 +3281,6 @@ elif test "$GCC" = yes && test "$GCC_VERSION" != "unknown" then AC_CHECKING([for $CC warning options]) cf_save_CFLAGS="$CFLAGS" - EXTRA_CFLAGS= cf_warn_CONST="" test "$with_ext_const" = yes && cf_warn_CONST="Wwrite-strings" cf_gcc_warnings="Wignored-qualifiers Wlogical-op Wvarargs" @@ -5700,7 +5760,7 @@ AC_MSG_RESULT($cf_use_socks5p_h) test "$cf_use_socks5p_h" = yes && AC_DEFINE(INCLUDE_PROTOTYPES,1,[Define to 1 if needed to declare prototypes in socks headers]) ])dnl dnl --------------------------------------------------------------------------- -dnl CF_SRAND version: 13 updated: 2016/09/05 12:39:46 +dnl CF_SRAND version: 14 updated: 2020/07/30 16:32:36 dnl -------- dnl Check for functions similar to srand() and rand(). lrand48() and random() dnl return a 31-bit value, while rand() returns a value less than RAND_MAX @@ -5754,7 +5814,7 @@ if test "$cf_cv_srand_func" != unknown ; then #ifdef HAVE_LIMITS_H #include <limits.h> #endif - ],[long x = $cf_cv_rand_max],, + ],[long x = $cf_cv_rand_max; (void)x],, [cf_cv_rand_max="(1UL<<$cf_rand_max)-1"]) ]) @@ -5763,10 +5823,10 @@ if test "$cf_cv_srand_func" != unknown ; then AC_MSG_CHECKING(if <bsd/stdlib.h> should be included) AC_TRY_COMPILE([#include <bsd/stdlib.h>], [void *arc4random(int); - void *x = arc4random(1)], + void *x = arc4random(1); (void)x], [cf_bsd_stdlib_h=no], [AC_TRY_COMPILE([#include <bsd/stdlib.h>], - [unsigned x = arc4random()], + [unsigned x = arc4random(); (void)x], [cf_bsd_stdlib_h=yes], [cf_bsd_stdlib_h=no])]) AC_MSG_RESULT($cf_bsd_stdlib_h) @@ -5777,10 +5837,10 @@ if test "$cf_cv_srand_func" != unknown ; then AC_MSG_CHECKING(if <bsd/random.h> should be included) AC_TRY_COMPILE([#include <bsd/random.h>], [void *arc4random(int); - void *x = arc4random(1)], + void *x = arc4random(1); (void)x], [cf_bsd_random_h=no], [AC_TRY_COMPILE([#include <bsd/random.h>], - [unsigned x = arc4random()], + [unsigned x = arc4random(); (void)x], [cf_bsd_random_h=yes], [cf_bsd_random_h=no])]) AC_MSG_RESULT($cf_bsd_random_h) @@ -7013,6 +7073,23 @@ eval $3="$withval" AC_SUBST($3)dnl ])dnl dnl --------------------------------------------------------------------------- +dnl CF_WITH_SCREEN_PDCURSES version: 1 updated: 2020/08/28 16:56:27 +dnl ----------------------- +dnl Call this macro before CF_ENABLE_WARNINGS for configure scripts which use +dnl the "--with-screen=pdcurses" selection. Doing that allows the configure +dnl script to search for the X11/Xt header files to declare (or not) the +dnl symbol needed to enable "const" in those header files. If that configure +dnl option is not used, then those checks are unnecessary. +AC_DEFUN([CF_WITH_SCREEN_PDCURSES],[ +AC_PROVIDE([AC_PATH_XTRA]) +AC_PROVIDE([AC_PATH_X]) +if test -n "$with_screen" && test "x$with_screen" = "xpdcurses" +then + AC_PATH_X + AC_PATH_XTRA +fi +])dnl +dnl --------------------------------------------------------------------------- dnl CF_WITH_ZLIB version: 4 updated: 2011/05/28 12:10:58 dnl ------------ dnl check for libz aka "zlib" diff --git a/config.guess b/config.guess index 95b16c77..9aff91cf 100755 --- a/config.guess +++ b/config.guess @@ -1,8 +1,8 @@ #! /bin/sh # Attempt to guess a canonical system name. -# Copyright 1992-2019 Free Software Foundation, Inc. +# Copyright 1992-2020 Free Software Foundation, Inc. -timestamp='2019-12-21' +timestamp='2020-08-17' # 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 @@ -50,7 +50,7 @@ version="\ GNU config.guess ($timestamp) Originally written by Per Bothner. -Copyright 1992-2019 Free Software Foundation, Inc. +Copyright 1992-2020 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." @@ -404,7 +404,7 @@ case "$UNAME_MACHINE:$UNAME_SYSTEM:$UNAME_RELEASE:$UNAME_VERSION" in # If there is a compiler, see if it is configured for 64-bit objects. # Note that the Sun cc does not turn __LP64__ into 1 like gcc does. # This test works for both compilers. - if [ "$CC_FOR_BUILD" != no_compiler_found ]; then + if test "$CC_FOR_BUILD" != no_compiler_found; then if (echo '#ifdef __amd64'; echo IS_64BIT_ARCH; echo '#endif') | \ (CCOPTS="" $CC_FOR_BUILD -E - 2>/dev/null) | \ grep IS_64BIT_ARCH >/dev/null @@ -544,10 +544,10 @@ EOF AViiON:dgux:*:*) # DG/UX returns AViiON for all architectures UNAME_PROCESSOR=`/usr/bin/uname -p` - if [ "$UNAME_PROCESSOR" = mc88100 ] || [ "$UNAME_PROCESSOR" = mc88110 ] + if test "$UNAME_PROCESSOR" = mc88100 || test "$UNAME_PROCESSOR" = mc88110 then - if [ "$TARGET_BINARY_INTERFACE"x = m88kdguxelfx ] || \ - [ "$TARGET_BINARY_INTERFACE"x = x ] + if test "$TARGET_BINARY_INTERFACE"x = m88kdguxelfx || \ + test "$TARGET_BINARY_INTERFACE"x = x then echo m88k-dg-dgux"$UNAME_RELEASE" else @@ -580,7 +580,7 @@ EOF echo i386-ibm-aix exit ;; ia64:AIX:*:*) - if [ -x /usr/bin/oslevel ] ; then + if test -x /usr/bin/oslevel ; then IBM_REV=`/usr/bin/oslevel` else IBM_REV="$UNAME_VERSION.$UNAME_RELEASE" @@ -620,7 +620,7 @@ EOF else IBM_ARCH=powerpc fi - if [ -x /usr/bin/lslpp ] ; then + if test -x /usr/bin/lslpp ; then IBM_REV=`/usr/bin/lslpp -Lqc bos.rte.libc | awk -F: '{ print $3 }' | sed s/[0-9]*$/0/` else @@ -655,7 +655,7 @@ EOF 9000/31?) HP_ARCH=m68000 ;; 9000/[34]??) HP_ARCH=m68k ;; 9000/[678][0-9][0-9]) - if [ -x /usr/bin/getconf ]; then + if test -x /usr/bin/getconf; then sc_cpu_version=`/usr/bin/getconf SC_CPU_VERSION 2>/dev/null` sc_kernel_bits=`/usr/bin/getconf SC_KERNEL_BITS 2>/dev/null` case "$sc_cpu_version" in @@ -669,7 +669,7 @@ EOF esac ;; esac fi - if [ "$HP_ARCH" = "" ]; then + if test "$HP_ARCH" = ""; then set_cc_for_build sed 's/^ //' << EOF > "$dummy.c" @@ -708,7 +708,7 @@ EOF test -z "$HP_ARCH" && HP_ARCH=hppa fi ;; esac - if [ "$HP_ARCH" = hppa2.0w ] + if test "$HP_ARCH" = hppa2.0w then set_cc_for_build @@ -782,7 +782,7 @@ EOF echo hppa1.0-hp-osf exit ;; i*86:OSF1:*:*) - if [ -x /usr/sbin/sysversion ] ; then + if test -x /usr/sbin/sysversion ; then echo "$UNAME_MACHINE"-unknown-osf1mk else echo "$UNAME_MACHINE"-unknown-osf1 @@ -1095,7 +1095,17 @@ EOF echo "$UNAME_MACHINE"-dec-linux-"$LIBC" exit ;; x86_64:Linux:*:*) - echo "$UNAME_MACHINE"-pc-linux-"$LIBC" + set_cc_for_build + LIBCABI=$LIBC + if test "$CC_FOR_BUILD" != no_compiler_found; then + if (echo '#ifdef __ILP32__'; echo IS_X32; echo '#endif') | \ + (CCOPTS="" $CC_FOR_BUILD -E - 2>/dev/null) | \ + grep IS_X32 >/dev/null + then + LIBCABI="$LIBC"x32 + fi + fi + echo "$UNAME_MACHINE"-pc-linux-"$LIBCABI" exit ;; xtensa*:Linux:*:*) echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" @@ -1284,7 +1294,7 @@ EOF echo mips-sony-newsos6 exit ;; R[34]000:*System_V*:*:* | R4000:UNIX_SYSV:*:* | R*000:UNIX_SV:*:*) - if [ -d /usr/nec ]; then + if test -d /usr/nec; then echo mips-nec-sysv"$UNAME_RELEASE" else echo mips-unknown-sysv"$UNAME_RELEASE" @@ -1332,6 +1342,9 @@ EOF *:Rhapsody:*:*) echo "$UNAME_MACHINE"-apple-rhapsody"$UNAME_RELEASE" exit ;; + arm64:Darwin:*:*) + echo aarch64-apple-darwin"$UNAME_RELEASE" + exit ;; *:Darwin:*:*) UNAME_PROCESSOR=`uname -p` case $UNAME_PROCESSOR in @@ -1346,7 +1359,7 @@ EOF else set_cc_for_build fi - if [ "$CC_FOR_BUILD" != no_compiler_found ]; then + if test "$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 @@ -1629,6 +1642,12 @@ copies of config.guess and config.sub with the latest versions from: https://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.guess and https://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.sub +EOF + +year=`echo $timestamp | sed 's,-.*,,'` +# shellcheck disable=SC2003 +if test "`expr "\`date +%Y\`" - "$year"`" -lt 3 ; then + cat >&2 <<EOF If $0 has already been updated, send the following data and any information you think might be pertinent to config-patches@gnu.org to @@ -1656,6 +1675,7 @@ UNAME_RELEASE = "$UNAME_RELEASE" UNAME_SYSTEM = "$UNAME_SYSTEM" UNAME_VERSION = "$UNAME_VERSION" EOF +fi exit 1 diff --git a/config.sub b/config.sub index 0f2234c1..0753e308 100755 --- a/config.sub +++ b/config.sub @@ -1,8 +1,8 @@ #! /bin/sh # Configuration validation subroutine script. -# Copyright 1992-2019 Free Software Foundation, Inc. +# Copyright 1992-2020 Free Software Foundation, Inc. -timestamp='2019-06-30' +timestamp='2020-08-17' # 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 @@ -67,7 +67,7 @@ Report bugs and patches to <config-patches@gnu.org>." version="\ GNU config.sub ($timestamp) -Copyright 1992-2019 Free Software Foundation, Inc. +Copyright 1992-2020 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." @@ -124,28 +124,27 @@ case $1 in ;; *-*-*-*) basic_machine=$field1-$field2 - os=$field3-$field4 + basic_os=$field3-$field4 ;; *-*-*) # Ambiguous whether COMPANY is present, or skipped and KERNEL-OS is two # parts maybe_os=$field2-$field3 case $maybe_os in - nto-qnx* | linux-gnu* | linux-android* | linux-dietlibc \ - | linux-newlib* | linux-musl* | linux-uclibc* | uclinux-uclibc* \ + nto-qnx* | linux-* | uclinux-uclibc* \ | uclinux-gnu* | kfreebsd*-gnu* | knetbsd*-gnu* | netbsd*-gnu* \ | netbsd*-eabi* | kopensolaris*-gnu* | cloudabi*-eabi* \ | storm-chaos* | os2-emx* | rtmk-nova*) basic_machine=$field1 - os=$maybe_os + basic_os=$maybe_os ;; android-linux) basic_machine=$field1-unknown - os=linux-android + basic_os=linux-android ;; *) basic_machine=$field1-$field2 - os=$field3 + basic_os=$field3 ;; esac ;; @@ -154,7 +153,7 @@ case $1 in case $field1-$field2 in decstation-3100) basic_machine=mips-dec - os= + basic_os= ;; *-*) # Second component is usually, but not always the OS @@ -162,7 +161,7 @@ case $1 in # Prevent following clause from handling this valid os sun*os*) basic_machine=$field1 - os=$field2 + basic_os=$field2 ;; # Manufacturers dec* | mips* | sequent* | encore* | pc533* | sgi* | sony* \ @@ -175,11 +174,11 @@ case $1 in | microblaze* | sim | cisco \ | oki | wec | wrs | winbond) basic_machine=$field1-$field2 - os= + basic_os= ;; *) basic_machine=$field1 - os=$field2 + basic_os=$field2 ;; esac ;; @@ -191,447 +190,451 @@ case $1 in case $field1 in 386bsd) basic_machine=i386-pc - os=bsd + basic_os=bsd ;; a29khif) basic_machine=a29k-amd - os=udi + basic_os=udi ;; adobe68k) basic_machine=m68010-adobe - os=scout + basic_os=scout ;; alliant) basic_machine=fx80-alliant - os= + basic_os= ;; altos | altos3068) basic_machine=m68k-altos - os= + basic_os= ;; am29k) basic_machine=a29k-none - os=bsd + basic_os=bsd ;; amdahl) basic_machine=580-amdahl - os=sysv + basic_os=sysv ;; amiga) basic_machine=m68k-unknown - os= + basic_os= ;; amigaos | amigados) basic_machine=m68k-unknown - os=amigaos + basic_os=amigaos ;; amigaunix | amix) basic_machine=m68k-unknown - os=sysv4 + basic_os=sysv4 ;; apollo68) basic_machine=m68k-apollo - os=sysv + basic_os=sysv ;; apollo68bsd) basic_machine=m68k-apollo - os=bsd + basic_os=bsd ;; aros) basic_machine=i386-pc - os=aros + basic_os=aros ;; aux) basic_machine=m68k-apple - os=aux + basic_os=aux ;; balance) basic_machine=ns32k-sequent - os=dynix + basic_os=dynix ;; blackfin) basic_machine=bfin-unknown - os=linux + basic_os=linux ;; cegcc) basic_machine=arm-unknown - os=cegcc + basic_os=cegcc ;; convex-c1) basic_machine=c1-convex - os=bsd + basic_os=bsd ;; convex-c2) basic_machine=c2-convex - os=bsd + basic_os=bsd ;; convex-c32) basic_machine=c32-convex - os=bsd + basic_os=bsd ;; convex-c34) basic_machine=c34-convex - os=bsd + basic_os=bsd ;; convex-c38) basic_machine=c38-convex - os=bsd + basic_os=bsd ;; cray) basic_machine=j90-cray - os=unicos + basic_os=unicos ;; crds | unos) basic_machine=m68k-crds - os= + basic_os= ;; da30) basic_machine=m68k-da30 - os= + basic_os= ;; decstation | pmax | pmin | dec3100 | decstatn) basic_machine=mips-dec - os= + basic_os= ;; delta88) basic_machine=m88k-motorola - os=sysv3 + basic_os=sysv3 ;; dicos) basic_machine=i686-pc - os=dicos + basic_os=dicos ;; djgpp) basic_machine=i586-pc - os=msdosdjgpp + basic_os=msdosdjgpp ;; ebmon29k) basic_machine=a29k-amd - os=ebmon + basic_os=ebmon ;; es1800 | OSE68k | ose68k | ose | OSE) basic_machine=m68k-ericsson - os=ose + basic_os=ose ;; gmicro) basic_machine=tron-gmicro - os=sysv + basic_os=sysv ;; go32) basic_machine=i386-pc - os=go32 + basic_os=go32 ;; h8300hms) basic_machine=h8300-hitachi - os=hms + basic_os=hms ;; h8300xray) basic_machine=h8300-hitachi - os=xray + basic_os=xray ;; h8500hms) basic_machine=h8500-hitachi - os=hms + basic_os=hms ;; harris) basic_machine=m88k-harris - os=sysv3 + basic_os=sysv3 ;; hp300 | hp300hpux) basic_machine=m68k-hp - os=hpux + basic_os=hpux ;; hp300bsd) basic_machine=m68k-hp - os=bsd + basic_os=bsd ;; hppaosf) basic_machine=hppa1.1-hp - os=osf + basic_os=osf ;; hppro) basic_machine=hppa1.1-hp - os=proelf + basic_os=proelf ;; i386mach) basic_machine=i386-mach - os=mach + basic_os=mach ;; isi68 | isi) basic_machine=m68k-isi - os=sysv + basic_os=sysv ;; m68knommu) basic_machine=m68k-unknown - os=linux + basic_os=linux ;; magnum | m3230) basic_machine=mips-mips - os=sysv + basic_os=sysv ;; merlin) basic_machine=ns32k-utek - os=sysv + basic_os=sysv ;; mingw64) basic_machine=x86_64-pc - os=mingw64 + basic_os=mingw64 ;; mingw32) basic_machine=i686-pc - os=mingw32 + basic_os=mingw32 ;; mingw32ce) basic_machine=arm-unknown - os=mingw32ce + basic_os=mingw32ce ;; monitor) basic_machine=m68k-rom68k - os=coff + basic_os=coff ;; morphos) basic_machine=powerpc-unknown - os=morphos + basic_os=morphos ;; moxiebox) basic_machine=moxie-unknown - os=moxiebox + basic_os=moxiebox ;; msdos) basic_machine=i386-pc - os=msdos + basic_os=msdos ;; msys) basic_machine=i686-pc - os=msys + basic_os=msys ;; mvs) basic_machine=i370-ibm - os=mvs + basic_os=mvs ;; nacl) basic_machine=le32-unknown - os=nacl + basic_os=nacl ;; ncr3000) basic_machine=i486-ncr - os=sysv4 + basic_os=sysv4 ;; netbsd386) basic_machine=i386-pc - os=netbsd + basic_os=netbsd ;; netwinder) basic_machine=armv4l-rebel - os=linux + basic_os=linux ;; news | news700 | news800 | news900) basic_machine=m68k-sony - os=newsos + basic_os=newsos ;; news1000) basic_machine=m68030-sony - os=newsos + basic_os=newsos ;; necv70) basic_machine=v70-nec - os=sysv + basic_os=sysv ;; nh3000) basic_machine=m68k-harris - os=cxux + basic_os=cxux ;; nh[45]000) basic_machine=m88k-harris - os=cxux + basic_os=cxux ;; nindy960) basic_machine=i960-intel - os=nindy + basic_os=nindy ;; mon960) basic_machine=i960-intel - os=mon960 + basic_os=mon960 ;; nonstopux) basic_machine=mips-compaq - os=nonstopux + basic_os=nonstopux ;; os400) basic_machine=powerpc-ibm - os=os400 + basic_os=os400 ;; OSE68000 | ose68000) basic_machine=m68000-ericsson - os=ose + basic_os=ose ;; os68k) basic_machine=m68k-none - os=os68k + basic_os=os68k ;; paragon) basic_machine=i860-intel - os=osf + basic_os=osf ;; parisc) basic_machine=hppa-unknown - os=linux + basic_os=linux + ;; + psp) + basic_machine=mipsallegrexel-sony + basic_os=psp ;; pw32) basic_machine=i586-unknown - os=pw32 + basic_os=pw32 ;; rdos | rdos64) basic_machine=x86_64-pc - os=rdos + basic_os=rdos ;; rdos32) basic_machine=i386-pc - os=rdos + basic_os=rdos ;; rom68k) basic_machine=m68k-rom68k - os=coff + basic_os=coff ;; sa29200) basic_machine=a29k-amd - os=udi + basic_os=udi ;; sei) basic_machine=mips-sei - os=seiux + basic_os=seiux ;; sequent) basic_machine=i386-sequent - os= + basic_os= ;; sps7) basic_machine=m68k-bull - os=sysv2 + basic_os=sysv2 ;; st2000) basic_machine=m68k-tandem - os= + basic_os= ;; stratus) basic_machine=i860-stratus - os=sysv4 + basic_os=sysv4 ;; sun2) basic_machine=m68000-sun - os= + basic_os= ;; sun2os3) basic_machine=m68000-sun - os=sunos3 + basic_os=sunos3 ;; sun2os4) basic_machine=m68000-sun - os=sunos4 + basic_os=sunos4 ;; sun3) basic_machine=m68k-sun - os= + basic_os= ;; sun3os3) basic_machine=m68k-sun - os=sunos3 + basic_os=sunos3 ;; sun3os4) basic_machine=m68k-sun - os=sunos4 + basic_os=sunos4 ;; sun4) basic_machine=sparc-sun - os= + basic_os= ;; sun4os3) basic_machine=sparc-sun - os=sunos3 + basic_os=sunos3 ;; sun4os4) basic_machine=sparc-sun - os=sunos4 + basic_os=sunos4 ;; sun4sol2) basic_machine=sparc-sun - os=solaris2 + basic_os=solaris2 ;; sun386 | sun386i | roadrunner) basic_machine=i386-sun - os= + basic_os= ;; sv1) basic_machine=sv1-cray - os=unicos + basic_os=unicos ;; symmetry) basic_machine=i386-sequent - os=dynix + basic_os=dynix ;; t3e) basic_machine=alphaev5-cray - os=unicos + basic_os=unicos ;; t90) basic_machine=t90-cray - os=unicos + basic_os=unicos ;; toad1) basic_machine=pdp10-xkl - os=tops20 + basic_os=tops20 ;; tpf) basic_machine=s390x-ibm - os=tpf + basic_os=tpf ;; udi29k) basic_machine=a29k-amd - os=udi + basic_os=udi ;; ultra3) basic_machine=a29k-nyu - os=sym1 + basic_os=sym1 ;; v810 | necv810) basic_machine=v810-nec - os=none + basic_os=none ;; vaxv) basic_machine=vax-dec - os=sysv + basic_os=sysv ;; vms) basic_machine=vax-dec - os=vms + basic_os=vms ;; vsta) basic_machine=i386-pc - os=vsta + basic_os=vsta ;; vxworks960) basic_machine=i960-wrs - os=vxworks + basic_os=vxworks ;; vxworks68) basic_machine=m68k-wrs - os=vxworks + basic_os=vxworks ;; vxworks29k) basic_machine=a29k-wrs - os=vxworks + basic_os=vxworks ;; xbox) basic_machine=i686-pc - os=mingw32 + basic_os=mingw32 ;; ymp) basic_machine=ymp-cray - os=unicos + basic_os=unicos ;; *) basic_machine=$1 - os= + basic_os= ;; esac ;; @@ -683,17 +686,17 @@ case $basic_machine in bluegene*) cpu=powerpc vendor=ibm - os=cnk + basic_os=cnk ;; decsystem10* | dec10*) cpu=pdp10 vendor=dec - os=tops10 + basic_os=tops10 ;; decsystem20* | dec20*) cpu=pdp10 vendor=dec - os=tops20 + basic_os=tops20 ;; delta | 3300 | motorola-3300 | motorola-delta \ | 3300-motorola | delta-motorola) @@ -703,7 +706,7 @@ case $basic_machine in dpx2*) cpu=m68k vendor=bull - os=sysv3 + basic_os=sysv3 ;; encore | umax | mmax) cpu=ns32k @@ -712,7 +715,7 @@ case $basic_machine in elxsi) cpu=elxsi vendor=elxsi - os=${os:-bsd} + basic_os=${basic_os:-bsd} ;; fx2800) cpu=i860 @@ -725,7 +728,7 @@ case $basic_machine in h3050r* | hiux*) cpu=hppa1.1 vendor=hitachi - os=hiuxwe2 + basic_os=hiuxwe2 ;; hp3k9[0-9][0-9] | hp9[0-9][0-9]) cpu=hppa1.0 @@ -768,36 +771,36 @@ case $basic_machine in i*86v32) cpu=`echo "$1" | sed -e 's/86.*/86/'` vendor=pc - os=sysv32 + basic_os=sysv32 ;; i*86v4*) cpu=`echo "$1" | sed -e 's/86.*/86/'` vendor=pc - os=sysv4 + basic_os=sysv4 ;; i*86v) cpu=`echo "$1" | sed -e 's/86.*/86/'` vendor=pc - os=sysv + basic_os=sysv ;; i*86sol2) cpu=`echo "$1" | sed -e 's/86.*/86/'` vendor=pc - os=solaris2 + basic_os=solaris2 ;; j90 | j90-cray) cpu=j90 vendor=cray - os=${os:-unicos} + basic_os=${basic_os:-unicos} ;; iris | iris4d) cpu=mips vendor=sgi - case $os in + case $basic_os in irix*) ;; *) - os=irix4 + basic_os=irix4 ;; esac ;; @@ -808,26 +811,26 @@ case $basic_machine in *mint | mint[0-9]* | *MiNT | *MiNT[0-9]*) cpu=m68k vendor=atari - os=mint + basic_os=mint ;; news-3600 | risc-news) cpu=mips vendor=sony - os=newsos + basic_os=newsos ;; next | m*-next) cpu=m68k vendor=next - case $os in + case $basic_os in openstep*) ;; nextstep*) ;; ns2*) - os=nextstep2 + basic_os=nextstep2 ;; *) - os=nextstep3 + basic_os=nextstep3 ;; esac ;; @@ -838,12 +841,12 @@ case $basic_machine in op50n-* | op60c-*) cpu=hppa1.1 vendor=oki - os=proelf + basic_os=proelf ;; pa-hitachi) cpu=hppa1.1 vendor=hitachi - os=hiuxwe2 + basic_os=hiuxwe2 ;; pbd) cpu=sparc @@ -880,12 +883,12 @@ case $basic_machine in sde) cpu=mipsisa32 vendor=sde - os=${os:-elf} + basic_os=${basic_os:-elf} ;; simso-wrs) cpu=sparclite vendor=wrs - os=vxworks + basic_os=vxworks ;; tower | tower-32) cpu=m68k @@ -902,7 +905,7 @@ case $basic_machine in w89k-*) cpu=hppa1.1 vendor=winbond - os=proelf + basic_os=proelf ;; none) cpu=none @@ -955,11 +958,11 @@ case $cpu-$vendor in # some cases the only manufacturer, in others, it is the most popular. craynv-unknown) vendor=cray - os=${os:-unicosmp} + basic_os=${basic_os:-unicosmp} ;; c90-unknown | c90-cray) vendor=cray - os=${os:-unicos} + basic_os=${Basic_os:-unicos} ;; fx80-unknown) vendor=alliant @@ -1003,7 +1006,7 @@ case $cpu-$vendor in dpx20-unknown | dpx20-bull) cpu=rs6000 vendor=bull - os=${os:-bosx} + basic_os=${basic_os:-bosx} ;; # Here we normalize CPU types irrespective of the vendor @@ -1012,7 +1015,7 @@ case $cpu-$vendor in ;; blackfin-*) cpu=bfin - os=linux + basic_os=linux ;; c54x-*) cpu=tic54x @@ -1025,7 +1028,7 @@ case $cpu-$vendor in ;; e500v[12]-*) cpu=powerpc - os=$os"spe" + basic_os=${basic_os}"spe" ;; mips3*-*) cpu=mips64 @@ -1035,7 +1038,7 @@ case $cpu-$vendor in ;; m68knommu-*) cpu=m68k - os=linux + basic_os=linux ;; m9s12z-* | m68hcs12z-* | hcs12z-* | s12z-*) cpu=s12z @@ -1045,7 +1048,7 @@ case $cpu-$vendor in ;; parisc-*) cpu=hppa - os=linux + basic_os=linux ;; pentium-* | p5-* | k5-* | k6-* | nexgen-* | viac3-*) cpu=i586 @@ -1101,11 +1104,14 @@ case $cpu-$vendor in xscale-* | xscalee[bl]-*) cpu=`echo "$cpu" | sed 's/^xscale/arm/'` ;; + arm64-*) + cpu=aarch64 + ;; # Recognize the canonical CPU Types that limit and/or modify the # company names they are paired with. cr16-*) - os=${os:-elf} + basic_os=${basic_os:-elf} ;; crisv32-* | etraxfs*-*) cpu=crisv32 @@ -1116,7 +1122,7 @@ case $cpu-$vendor in vendor=axis ;; crx-*) - os=${os:-elf} + basic_os=${basic_os:-elf} ;; neo-tandem) cpu=neo @@ -1138,16 +1144,12 @@ case $cpu-$vendor in cpu=nsx vendor=tandem ;; - s390-*) - cpu=s390 - vendor=ibm - ;; - s390x-*) - cpu=s390x - vendor=ibm + mipsallegrexel-sony) + cpu=mipsallegrexel + vendor=sony ;; tile*-*) - os=${os:-linux-gnu} + basic_os=${basic_os:-linux-gnu} ;; *) @@ -1164,7 +1166,7 @@ case $cpu-$vendor in | am33_2.0 \ | amdgcn \ | arc | arceb \ - | arm | arm[lb]e | arme[lb] | armv* \ + | arm | arm[lb]e | arme[lb] | armv* \ | avr | avr32 \ | asmjs \ | ba \ @@ -1229,6 +1231,7 @@ case $cpu-$vendor in | pyramid \ | riscv | riscv32 | riscv64 \ | rl78 | romp | rs6000 | rx \ + | s390 | s390x \ | score \ | sh | shl \ | sh[1234] | sh[24]a | sh[24]ae[lb] | sh[23]e | she[lb] | sh[lb]e \ @@ -1275,8 +1278,43 @@ esac # Decode manufacturer-specific aliases for certain operating systems. -if [ x$os != x ] +if test x$basic_os != x then + +# First recognize some ad-hoc caes, or perhaps split kernel-os, or else just +# set os. +case $basic_os in + gnu/linux*) + kernel=linux + os=`echo $basic_os | sed -e 's|gnu/linux|gnu|'` + ;; + nto-qnx*) + kernel=nto + os=`echo $basic_os | sed -e 's|nto-qnx|qnx|'` + ;; + *-*) + # shellcheck disable=SC2162 + IFS="-" read kernel os <<EOF +$basic_os +EOF + ;; + # Default OS when just kernel was specified + nto*) + kernel=nto + os=`echo $basic_os | sed -e 's|nto|qnx|'` + ;; + linux*) + kernel=linux + os=`echo $basic_os | sed -e 's|linux|gnu|'` + ;; + *) + kernel= + os=$basic_os + ;; +esac + +# Now, normalize the OS (knowing we just have one component, it's not a kernel, +# etc.) case $os in # First match some system type aliases that might get confused # with valid system types. @@ -1296,9 +1334,6 @@ case $os in unixware*) os=sysv4.2uw ;; - gnu/linux*) - os=`echo $os | sed -e 's|gnu/linux|linux-gnu|'` - ;; # es1800 is here to avoid being matched by es* (a different OS) es1800*) os=ose @@ -1322,10 +1357,7 @@ case $os in sco3.2.[4-9]*) os=`echo $os | sed -e 's/sco3.2./sco3.2v/'` ;; - sco3.2v[4-9]* | sco5v6*) - # Don't forget version if it is 3.2v4 or newer. - ;; - scout) + sco*v* | scout) # Don't match below ;; sco*) @@ -1334,41 +1366,6 @@ case $os in psos*) os=psos ;; - # Now accept the basic system types. - # The portable systems comes first. - # Each alternative MUST end in a * to match a version number. - # sysv* is not here because it comes later, after sysvr4. - gnu* | bsd* | mach* | minix* | genix* | ultrix* | irix* \ - | *vms* | esix* | aix* | cnk* | sunos | sunos[34]*\ - | hpux* | unos* | osf* | luna* | dgux* | auroraux* | solaris* \ - | sym* | kopensolaris* | plan9* \ - | amigaos* | amigados* | msdos* | newsos* | unicos* | aof* \ - | aos* | aros* | cloudabi* | sortix* | twizzler* \ - | nindy* | vxsim* | vxworks* | ebmon* | hms* | mvs* \ - | clix* | riscos* | uniplus* | iris* | isc* | rtu* | xenix* \ - | knetbsd* | mirbsd* | netbsd* \ - | bitrig* | openbsd* | solidbsd* | libertybsd* | os108* \ - | ekkobsd* | kfreebsd* | freebsd* | riscix* | lynxos* \ - | bosx* | nextstep* | cxux* | aout* | elf* | oabi* \ - | ptx* | coff* | ecoff* | winnt* | domain* | vsta* \ - | udi* | eabi* | lites* | ieee* | go32* | aux* | hcos* \ - | chorusrdb* | cegcc* | glidix* \ - | cygwin* | msys* | pe* | moss* | proelf* | rtems* \ - | midipix* | mingw32* | mingw64* | linux-gnu* | linux-android* \ - | linux-newlib* | linux-musl* | linux-uclibc* \ - | uxpv* | beos* | mpeix* | udk* | moxiebox* \ - | interix* | uwin* | mks* | rhapsody* | darwin* \ - | openstep* | oskit* | conix* | pw32* | nonstopux* \ - | storm-chaos* | tops10* | tenex* | tops20* | its* \ - | os2* | vos* | palmos* | uclinux* | nucleus* \ - | morphos* | superux* | rtmk* | windiss* \ - | powermax* | dnix* | nx6 | nx7 | sei* | dragonfly* \ - | skyos* | haiku* | rdos* | toppers* | drops* | es* \ - | onefs* | tirtos* | phoenix* | fuchsia* | redox* | bme* \ - | midnightbsd* | amdhsa* | unleashed* | emscripten* | wasi* \ - | nsk* | powerunix) - # Remember, each alternative MUST END IN *, to match a version number. - ;; qnx*) case $cpu in x86 | i*86) @@ -1381,31 +1378,19 @@ case $os in hiux*) os=hiuxwe2 ;; - nto-qnx*) - ;; - nto*) - os=`echo $os | sed -e 's|nto|nto-qnx|'` - ;; - sim | xray | os68k* | v88r* \ - | windows* | osx | abug | netware* | os9* \ - | macos* | mpw* | magic* | mmixware* | mon960* | lnews*) - ;; - linux-dietlibc) - os=linux-dietlibc - ;; - linux*) - os=`echo $os | sed -e 's|linux|linux-gnu|'` - ;; lynx*178) os=lynxos178 ;; lynx*5) os=lynxos5 ;; + lynxos*) + # don't get caught up in next wildcard + ;; lynx*) os=lynxos ;; - mac*) + mac[0-9]*) os=`echo "$os" | sed -e 's|mac|macos|'` ;; opened*) @@ -1475,18 +1460,12 @@ case $os in sysvr4) os=sysv4 ;; - # This must come after sysvr4. - sysv*) - ;; ose*) os=ose ;; *mint | mint[0-9]* | *MiNT | MiNT[0-9]*) os=mint ;; - zvmoe) - os=zvmoe - ;; dicos*) os=dicos ;; @@ -1503,19 +1482,11 @@ case $os in ;; esac ;; - nacl*) - ;; - ios) - ;; - none) - ;; - *-eabi) - ;; *) - echo Invalid configuration \`"$1"\': system \`"$os"\' not recognized 1>&2 - exit 1 + # No normalization, but not necessarily accepted, that comes below. ;; esac + else # Here we handle the default operating systems that come with various machines. @@ -1528,6 +1499,7 @@ else # will signal an error saying that MANUFACTURER isn't an operating # system, and we'll never get to this point. +kernel= case $cpu-$vendor in score-*) os=elf @@ -1539,7 +1511,8 @@ case $cpu-$vendor in os=riscix1.2 ;; arm*-rebel) - os=linux + kernel=linux + os=gnu ;; arm*-semi) os=aout @@ -1705,84 +1678,169 @@ case $cpu-$vendor in os=none ;; esac + fi +# Now, validate our (potentially fixed-up) OS. +case $os in + # Sometimes we do "kernel-abi", so those need to count as OSes. + musl* | newlib* | uclibc*) + ;; + # Likewise for "kernel-libc" + eabi | eabihf | gnueabi | gnueabihf) + ;; + # Now accept the basic system types. + # The portable systems comes first. + # Each alternative MUST end in a * to match a version number. + gnu* | android* | bsd* | mach* | minix* | genix* | ultrix* | irix* \ + | *vms* | esix* | aix* | cnk* | sunos | sunos[34]* \ + | hpux* | unos* | osf* | luna* | dgux* | auroraux* | solaris* \ + | sym* | plan9* | psp* | sim* | xray* | os68k* | v88r* \ + | hiux* | abug | nacl* | netware* | windows* \ + | os9* | macos* | osx* | ios* \ + | mpw* | magic* | mmixware* | mon960* | lnews* \ + | amigaos* | amigados* | msdos* | newsos* | unicos* | aof* \ + | aos* | aros* | cloudabi* | sortix* | twizzler* \ + | nindy* | vxsim* | vxworks* | ebmon* | hms* | mvs* \ + | clix* | riscos* | uniplus* | iris* | isc* | rtu* | xenix* \ + | mirbsd* | netbsd* | dicos* | openedition* | ose* \ + | bitrig* | openbsd* | solidbsd* | libertybsd* | os108* \ + | ekkobsd* | freebsd* | riscix* | lynxos* | os400* \ + | bosx* | nextstep* | cxux* | aout* | elf* | oabi* \ + | ptx* | coff* | ecoff* | winnt* | domain* | vsta* \ + | udi* | lites* | ieee* | go32* | aux* | hcos* \ + | chorusrdb* | cegcc* | glidix* \ + | cygwin* | msys* | pe* | moss* | proelf* | rtems* \ + | midipix* | mingw32* | mingw64* | mint* \ + | uxpv* | beos* | mpeix* | udk* | moxiebox* \ + | interix* | uwin* | mks* | rhapsody* | darwin* \ + | openstep* | oskit* | conix* | pw32* | nonstopux* \ + | storm-chaos* | tops10* | tenex* | tops20* | its* \ + | os2* | vos* | palmos* | uclinux* | nucleus* | morphos* \ + | scout* | superux* | sysv* | rtmk* | tpf* | windiss* \ + | powermax* | dnix* | nx6 | nx7 | sei* | dragonfly* \ + | skyos* | haiku* | rdos* | toppers* | drops* | es* \ + | onefs* | tirtos* | phoenix* | fuchsia* | redox* | bme* \ + | midnightbsd* | amdhsa* | unleashed* | emscripten* | wasi* \ + | nsk* | powerunix* | genode* | zvmoe* ) + ;; + # This one is extra strict with allowed versions + sco3.2v2 | sco3.2v[4-9]* | sco5v6*) + # Don't forget version if it is 3.2v4 or newer. + ;; + none) + ;; + *) + echo Invalid configuration \`"$1"\': OS \`"$os"\' not recognized 1>&2 + exit 1 + ;; +esac + +# As a final step for OS-related things, validate the OS-kernel combination +# (given a valid OS), if there is a kernel. +case $kernel-$os in + linux-gnu* | linux-dietlibc* | linux-android* | linux-newlib* | linux-musl* | linux-uclibc* ) + ;; + -dietlibc* | -newlib* | -musl* | -uclibc* ) + # These are just libc implementations, not actual OSes, and thus + # require a kernel. + echo "Invalid configuration \`$1': libc \`$os' needs explicit kernel." 1>&2 + exit 1 + ;; + kfreebsd*-gnu* | kopensolaris*-gnu*) + ;; + nto-qnx*) + ;; + *-eabi* | *-gnueabi*) + ;; + -*) + # Blank kernel with real OS is always fine. + ;; + *-*) + echo "Invalid configuration \`$1': Kernel \`$kernel' not known to work with OS \`$os'." 1>&2 + exit 1 + ;; +esac + # Here we handle the case where we know the os, and the CPU type, but not the # manufacturer. We pick the logical manufacturer. case $vendor in unknown) - case $os in - riscix*) + case $cpu-$os in + *-riscix*) vendor=acorn ;; - sunos*) + *-sunos*) vendor=sun ;; - cnk*|-aix*) + *-cnk* | *-aix*) vendor=ibm ;; - beos*) + *-beos*) vendor=be ;; - hpux*) + *-hpux*) vendor=hp ;; - mpeix*) + *-mpeix*) vendor=hp ;; - hiux*) + *-hiux*) vendor=hitachi ;; - unos*) + *-unos*) vendor=crds ;; - dgux*) + *-dgux*) vendor=dg ;; - luna*) + *-luna*) vendor=omron ;; - genix*) + *-genix*) vendor=ns ;; - clix*) + *-clix*) vendor=intergraph ;; - mvs* | opened*) + *-mvs* | *-opened*) + vendor=ibm + ;; + *-os400*) vendor=ibm ;; - os400*) + s390-* | s390x-*) vendor=ibm ;; - ptx*) + *-ptx*) vendor=sequent ;; - tpf*) + *-tpf*) vendor=ibm ;; - vxsim* | vxworks* | windiss*) + *-vxsim* | *-vxworks* | *-windiss*) vendor=wrs ;; - aux*) + *-aux*) vendor=apple ;; - hms*) + *-hms*) vendor=hitachi ;; - mpw* | macos*) + *-mpw* | *-macos*) vendor=apple ;; - *mint | mint[0-9]* | *MiNT | MiNT[0-9]*) + *-*mint | *-mint[0-9]* | *-*MiNT | *-MiNT[0-9]*) vendor=atari ;; - vos*) + *-vos*) vendor=stratus ;; esac ;; esac -echo "$cpu-$vendor-$os" +echo "$cpu-$vendor-${kernel:+$kernel-}$os" exit # Local variables: diff --git a/configure b/configure index e6e77f2e..addccf35 100755 --- a/configure +++ b/configure @@ -1,7 +1,7 @@ #! /bin/sh # From configure.in 2.9.0dev.6. # Guess values for system-dependent variables and create Makefiles. -# Generated by Autoconf 2.52.20200111. +# Generated by Autoconf 2.52.20200802. # # Copyright 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001 # Free Software Foundation, Inc. @@ -718,8 +718,8 @@ Development Options: --enable-debug compile w/ debugging (if \$CFLAGS is set, add -g there, too) --disable-trace disable logic for trace code --enable-vertrace verbose trace code - --enable-warnings GCC compiler warnings --with-x use the X Window System + --enable-warnings test: turn on gcc compiler warnings --with-dbmalloc test: use Conor Cahill's dbmalloc library --with-dmalloc test: use Gray Watson's dmalloc library Basic Configuration Options: @@ -892,7 +892,7 @@ This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. It was created by $as_me, which was -generated by GNU Autoconf 2.52.20200111. Invocation command line was +generated by GNU Autoconf 2.52.20200802. Invocation command line was $ $0 $@ @@ -2153,7 +2153,14 @@ rm -f conftest.$ac_objext conftest.$ac_ext echo "${ECHO_T}$CLANG_COMPILER" >&6 fi -echo "$as_me:2156: checking for $CC option to accept ANSI C" >&5 +if test "x$CLANG_COMPILER" = "xyes" ; then + + test -n "$CFLAGS" && CFLAGS="$CFLAGS " + CFLAGS="${CFLAGS}-Wno-error=implicit-function-declaration" + +fi + +echo "$as_me:2163: checking for $CC option to accept ANSI C" >&5 echo $ECHO_N "checking for $CC option to accept ANSI C... $ECHO_C" >&6 if test "${ac_cv_prog_cc_stdc+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -2161,7 +2168,7 @@ else ac_cv_prog_cc_stdc=no ac_save_CC=$CC cat >conftest.$ac_ext <<_ACEOF -#line 2164 "configure" +#line 2171 "configure" #include "confdefs.h" #include <stdarg.h> #include <stdio.h> @@ -2210,16 +2217,16 @@ for ac_arg in "" -qlanglvl=ansi -std1 -Ae "-Aa -D_HPUX_SOURCE" "-Xc -D__EXTENSIO do CC="$ac_save_CC $ac_arg" rm -f conftest.$ac_objext -if { (eval echo "$as_me:2213: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:2220: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:2216: \$? = $ac_status" >&5 + echo "$as_me:2223: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:2219: \"$ac_try\"") >&5 + { (eval echo "$as_me:2226: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:2222: \$? = $ac_status" >&5 + echo "$as_me:2229: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_prog_cc_stdc=$ac_arg break @@ -2236,10 +2243,10 @@ fi case "x$ac_cv_prog_cc_stdc" in x|xno) - echo "$as_me:2239: result: none needed" >&5 + echo "$as_me:2246: result: none needed" >&5 echo "${ECHO_T}none needed" >&6 ;; *) - echo "$as_me:2242: result: $ac_cv_prog_cc_stdc" >&5 + echo "$as_me:2249: result: $ac_cv_prog_cc_stdc" >&5 echo "${ECHO_T}$ac_cv_prog_cc_stdc" >&6 CC="$CC $ac_cv_prog_cc_stdc" ;; esac @@ -2247,13 +2254,13 @@ esac # This should have been defined by AC_PROG_CC : ${CC:=cc} -echo "$as_me:2250: checking \$CFLAGS variable" >&5 +echo "$as_me:2257: checking \$CFLAGS variable" >&5 echo $ECHO_N "checking \$CFLAGS variable... $ECHO_C" >&6 case "x$CFLAGS" in (*-[IUD]*) - echo "$as_me:2254: result: broken" >&5 + echo "$as_me:2261: result: broken" >&5 echo "${ECHO_T}broken" >&6 - { echo "$as_me:2256: WARNING: your environment uses the CFLAGS variable to hold CPPFLAGS options" >&5 + { echo "$as_me:2263: WARNING: your environment uses the CFLAGS variable to hold CPPFLAGS options" >&5 echo "$as_me: WARNING: your environment uses the CFLAGS variable to hold CPPFLAGS options" >&2;} cf_flags="$CFLAGS" CFLAGS= @@ -2361,18 +2368,18 @@ fi done ;; (*) - echo "$as_me:2364: result: ok" >&5 + echo "$as_me:2371: result: ok" >&5 echo "${ECHO_T}ok" >&6 ;; esac -echo "$as_me:2369: checking \$CC variable" >&5 +echo "$as_me:2376: checking \$CC variable" >&5 echo $ECHO_N "checking \$CC variable... $ECHO_C" >&6 case "$CC" in (*[\ \ ]-*) - echo "$as_me:2373: result: broken" >&5 + echo "$as_me:2380: result: broken" >&5 echo "${ECHO_T}broken" >&6 - { echo "$as_me:2375: WARNING: your environment uses the CC variable to hold CFLAGS/CPPFLAGS options" >&5 + { echo "$as_me:2382: WARNING: your environment uses the CC variable to hold CFLAGS/CPPFLAGS options" >&5 echo "$as_me: WARNING: your environment uses the CC variable to hold CFLAGS/CPPFLAGS options" >&2;} # humor him... cf_prog=`echo "$CC" | sed -e 's/ / /g' -e 's/[ ]* / /g' -e 's/[ ]*[ ]-[^ ].*//'` @@ -2489,19 +2496,19 @@ fi done test -n "$verbose" && echo " resulting CC: '$CC'" 1>&6 -echo "${as_me:-configure}:2492: testing resulting CC: '$CC' ..." 1>&5 +echo "${as_me:-configure}:2499: testing resulting CC: '$CC' ..." 1>&5 test -n "$verbose" && echo " resulting CFLAGS: '$CFLAGS'" 1>&6 -echo "${as_me:-configure}:2496: testing resulting CFLAGS: '$CFLAGS' ..." 1>&5 +echo "${as_me:-configure}:2503: testing resulting CFLAGS: '$CFLAGS' ..." 1>&5 test -n "$verbose" && echo " resulting CPPFLAGS: '$CPPFLAGS'" 1>&6 -echo "${as_me:-configure}:2500: testing resulting CPPFLAGS: '$CPPFLAGS' ..." 1>&5 +echo "${as_me:-configure}:2507: testing resulting CPPFLAGS: '$CPPFLAGS' ..." 1>&5 ;; (*) - echo "$as_me:2504: result: ok" >&5 + echo "$as_me:2511: result: ok" >&5 echo "${ECHO_T}ok" >&6 ;; esac @@ -2512,7 +2519,7 @@ ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu ac_main_return=return -echo "$as_me:2515: checking how to run the C preprocessor" >&5 +echo "$as_me:2522: checking how to run the C preprocessor" >&5 echo $ECHO_N "checking how to run the C preprocessor... $ECHO_C" >&6 # On Suns, sometimes $CPP names a directory. if test -n "$CPP" && test -d "$CPP"; then @@ -2533,18 +2540,18 @@ do # On the NeXT, cc -E runs the code through the compiler's parser, # not just through cpp. "Syntax error" is here to catch this case. cat >conftest.$ac_ext <<_ACEOF -#line 2536 "configure" +#line 2543 "configure" #include "confdefs.h" #include <assert.h> Syntax error _ACEOF -if { (eval echo "$as_me:2541: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:2548: \"$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:2547: \$? = $ac_status" >&5 + echo "$as_me:2554: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -2567,17 +2574,17 @@ rm -f conftest.err conftest.$ac_ext # OK, works on sane cases. Now check whether non-existent headers # can be detected and how. cat >conftest.$ac_ext <<_ACEOF -#line 2570 "configure" +#line 2577 "configure" #include "confdefs.h" #include <ac_nonexistent.h> _ACEOF -if { (eval echo "$as_me:2574: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:2581: \"$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:2580: \$? = $ac_status" >&5 + echo "$as_me:2587: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -2614,7 +2621,7 @@ fi else ac_cv_prog_CPP=$CPP fi -echo "$as_me:2617: result: $CPP" >&5 +echo "$as_me:2624: result: $CPP" >&5 echo "${ECHO_T}$CPP" >&6 ac_preproc_ok=false for ac_c_preproc_warn_flag in '' yes @@ -2624,18 +2631,18 @@ do # On the NeXT, cc -E runs the code through the compiler's parser, # not just through cpp. "Syntax error" is here to catch this case. cat >conftest.$ac_ext <<_ACEOF -#line 2627 "configure" +#line 2634 "configure" #include "confdefs.h" #include <assert.h> Syntax error _ACEOF -if { (eval echo "$as_me:2632: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:2639: \"$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:2638: \$? = $ac_status" >&5 + echo "$as_me:2645: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -2658,17 +2665,17 @@ rm -f conftest.err conftest.$ac_ext # OK, works on sane cases. Now check whether non-existent headers # can be detected and how. cat >conftest.$ac_ext <<_ACEOF -#line 2661 "configure" +#line 2668 "configure" #include "confdefs.h" #include <ac_nonexistent.h> _ACEOF -if { (eval echo "$as_me:2665: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:2672: \"$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:2671: \$? = $ac_status" >&5 + echo "$as_me:2678: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -2696,7 +2703,7 @@ rm -f conftest.err conftest.$ac_ext if $ac_preproc_ok; then : else - { { echo "$as_me:2699: error: C preprocessor \"$CPP\" fails sanity check" >&5 + { { echo "$as_me:2706: error: C preprocessor \"$CPP\" fails sanity check" >&5 echo "$as_me: error: C preprocessor \"$CPP\" fails sanity check" >&2;} { (exit 1); exit 1; }; } fi @@ -2708,7 +2715,7 @@ ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $ ac_compiler_gnu=$ac_cv_c_compiler_gnu ac_main_return=return -echo "$as_me:2711: checking if preprocessor -C option works" >&5 +echo "$as_me:2718: checking if preprocessor -C option works" >&5 echo $ECHO_N "checking if preprocessor -C option works... $ECHO_C" >&6 if test "${cf_cv_prog_cpp_comments+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -2733,34 +2740,34 @@ rm -f conftest.[ci] fi -echo "$as_me:2736: result: $cf_cv_prog_cpp_comments" >&5 +echo "$as_me:2743: result: $cf_cv_prog_cpp_comments" >&5 echo "${ECHO_T}$cf_cv_prog_cpp_comments" >&6 if test x$cf_cv_prog_cpp_comments = xyes then CPP="$CPP -C" fi -echo "$as_me:2743: checking whether ln -s works" >&5 +echo "$as_me:2750: checking whether ln -s works" >&5 echo $ECHO_N "checking whether ln -s works... $ECHO_C" >&6 LN_S=$as_ln_s if test "$LN_S" = "ln -s"; then - echo "$as_me:2747: result: yes" >&5 + echo "$as_me:2754: result: yes" >&5 echo "${ECHO_T}yes" >&6 else - echo "$as_me:2750: result: no, using $LN_S" >&5 + echo "$as_me:2757: result: no, using $LN_S" >&5 echo "${ECHO_T}no, using $LN_S" >&6 fi case $host_os in (mingw*) LN_S="cp -p" -echo "$as_me:2757: result: Override: No symbolic links in mingw." >&5 +echo "$as_me:2764: result: Override: No symbolic links in mingw." >&5 echo "${ECHO_T}Override: No symbolic links in mingw." >&6 ;; (*) ;; esac -echo "$as_me:2763: checking whether ${MAKE-make} sets \${MAKE}" >&5 +echo "$as_me:2770: checking whether ${MAKE-make} sets \${MAKE}" >&5 echo $ECHO_N "checking whether ${MAKE-make} sets \${MAKE}... $ECHO_C" >&6 set dummy ${MAKE-make}; ac_make=`echo "$2" | sed 'y,./+-,__p_,'` if eval "test \"\${ac_cv_prog_make_${ac_make}_set+set}\" = set"; then @@ -2780,11 +2787,11 @@ fi rm -f conftest.make fi if eval "test \"`echo '$ac_cv_prog_make_'${ac_make}_set`\" = yes"; then - echo "$as_me:2783: result: yes" >&5 + echo "$as_me:2790: result: yes" >&5 echo "${ECHO_T}yes" >&6 SET_MAKE= else - echo "$as_me:2787: result: no" >&5 + echo "$as_me:2794: result: no" >&5 echo "${ECHO_T}no" >&6 SET_MAKE="MAKE=${MAKE-make}" fi @@ -2801,7 +2808,7 @@ fi # AFS /usr/afsws/bin/install, which mishandles nonexistent args # SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff" # ./install, which can be erroneously created by make from ./install.sh. -echo "$as_me:2804: checking for a BSD compatible install" >&5 +echo "$as_me:2811: checking for a BSD compatible install" >&5 echo $ECHO_N "checking for a BSD compatible install... $ECHO_C" >&6 if test -z "$INSTALL"; then if test "${ac_cv_path_install+set}" = set; then @@ -2850,7 +2857,7 @@ fi INSTALL=$ac_install_sh fi fi -echo "$as_me:2853: result: $INSTALL" >&5 +echo "$as_me:2860: result: $INSTALL" >&5 echo "${ECHO_T}$INSTALL" >&6 # Use test -z because SunOS4 sh mishandles braces in ${var-val}. @@ -2865,7 +2872,7 @@ for ac_prog in byacc 'bison -y' 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:2868: checking for $ac_word" >&5 +echo "$as_me:2875: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_prog_YACC+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -2880,7 +2887,7 @@ for ac_dir in $ac_dummy; do test -z "$ac_dir" && ac_dir=. $as_executable_p "$ac_dir/$ac_word" || continue ac_cv_prog_YACC="$ac_prog" -echo "$as_me:2883: found $ac_dir/$ac_word" >&5 +echo "$as_me:2890: found $ac_dir/$ac_word" >&5 break done @@ -2888,10 +2895,10 @@ fi fi YACC=$ac_cv_prog_YACC if test -n "$YACC"; then - echo "$as_me:2891: result: $YACC" >&5 + echo "$as_me:2898: result: $YACC" >&5 echo "${ECHO_T}$YACC" >&6 else - echo "$as_me:2894: result: no" >&5 + echo "$as_me:2901: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -2903,7 +2910,7 @@ for ac_prog in lint cppcheck splint 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:2906: checking for $ac_word" >&5 +echo "$as_me:2913: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_prog_LINT+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -2918,7 +2925,7 @@ for ac_dir in $ac_dummy; do test -z "$ac_dir" && ac_dir=. $as_executable_p "$ac_dir/$ac_word" || continue ac_cv_prog_LINT="$ac_prog" -echo "$as_me:2921: found $ac_dir/$ac_word" >&5 +echo "$as_me:2928: found $ac_dir/$ac_word" >&5 break done @@ -2926,10 +2933,10 @@ fi fi LINT=$ac_cv_prog_LINT if test -n "$LINT"; then - echo "$as_me:2929: result: $LINT" >&5 + echo "$as_me:2936: result: $LINT" >&5 echo "${ECHO_T}$LINT" >&6 else - echo "$as_me:2932: result: no" >&5 + echo "$as_me:2939: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -2942,7 +2949,7 @@ case "x$LINT" in ;; esac -echo "$as_me:2945: checking for makeflags variable" >&5 +echo "$as_me:2952: checking for makeflags variable" >&5 echo $ECHO_N "checking for makeflags variable... $ECHO_C" >&6 if test "${cf_cv_makeflags+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -2972,7 +2979,7 @@ CF_EOF ;; (*) -echo "${as_me:-configure}:2975: testing given option \"$cf_option\",no match \"$cf_result\" ..." 1>&5 +echo "${as_me:-configure}:2982: testing given option \"$cf_option\",no match \"$cf_result\" ..." 1>&5 ;; esac @@ -2980,10 +2987,10 @@ echo "${as_me:-configure}:2975: testing given option \"$cf_option\",no match \"$ rm -f cf_makeflags.tmp fi -echo "$as_me:2983: result: $cf_cv_makeflags" >&5 +echo "$as_me:2990: result: $cf_cv_makeflags" >&5 echo "${ECHO_T}$cf_cv_makeflags" >&6 -echo "$as_me:2986: checking if filesystem supports mixed-case filenames" >&5 +echo "$as_me:2993: checking if filesystem supports mixed-case filenames" >&5 echo $ECHO_N "checking if filesystem supports mixed-case filenames... $ECHO_C" >&6 if test "${cf_cv_mixedcase+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -3010,7 +3017,7 @@ else fi fi -echo "$as_me:3013: result: $cf_cv_mixedcase" >&5 +echo "$as_me:3020: result: $cf_cv_mixedcase" >&5 echo "${ECHO_T}$cf_cv_mixedcase" >&6 test "$cf_cv_mixedcase" = yes && cat >>confdefs.h <<\EOF @@ -3021,7 +3028,7 @@ for ac_prog in exctags ctags 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:3024: checking for $ac_word" >&5 +echo "$as_me:3031: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_prog_CTAGS+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -3036,7 +3043,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_CTAGS="$ac_prog" -echo "$as_me:3039: found $ac_dir/$ac_word" >&5 +echo "$as_me:3046: found $ac_dir/$ac_word" >&5 break done @@ -3044,10 +3051,10 @@ fi fi CTAGS=$ac_cv_prog_CTAGS if test -n "$CTAGS"; then - echo "$as_me:3047: result: $CTAGS" >&5 + echo "$as_me:3054: result: $CTAGS" >&5 echo "${ECHO_T}$CTAGS" >&6 else - echo "$as_me:3050: result: no" >&5 + echo "$as_me:3057: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -3058,7 +3065,7 @@ for ac_prog in exetags etags 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:3061: checking for $ac_word" >&5 +echo "$as_me:3068: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_prog_ETAGS+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -3073,7 +3080,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_ETAGS="$ac_prog" -echo "$as_me:3076: found $ac_dir/$ac_word" >&5 +echo "$as_me:3083: found $ac_dir/$ac_word" >&5 break done @@ -3081,10 +3088,10 @@ fi fi ETAGS=$ac_cv_prog_ETAGS if test -n "$ETAGS"; then - echo "$as_me:3084: result: $ETAGS" >&5 + echo "$as_me:3091: result: $ETAGS" >&5 echo "${ECHO_T}$ETAGS" >&6 else - echo "$as_me:3087: result: no" >&5 + echo "$as_me:3094: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -3093,7 +3100,7 @@ done # Extract the first word of "${CTAGS:-ctags}", so it can be a program name with args. set dummy ${CTAGS:-ctags}; ac_word=$2 -echo "$as_me:3096: checking for $ac_word" >&5 +echo "$as_me:3103: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_prog_MAKE_LOWER_TAGS+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -3108,7 +3115,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_MAKE_LOWER_TAGS="yes" -echo "$as_me:3111: found $ac_dir/$ac_word" >&5 +echo "$as_me:3118: found $ac_dir/$ac_word" >&5 break done @@ -3117,17 +3124,17 @@ fi fi MAKE_LOWER_TAGS=$ac_cv_prog_MAKE_LOWER_TAGS if test -n "$MAKE_LOWER_TAGS"; then - echo "$as_me:3120: result: $MAKE_LOWER_TAGS" >&5 + echo "$as_me:3127: result: $MAKE_LOWER_TAGS" >&5 echo "${ECHO_T}$MAKE_LOWER_TAGS" >&6 else - echo "$as_me:3123: result: no" >&5 + echo "$as_me:3130: result: no" >&5 echo "${ECHO_T}no" >&6 fi if test "$cf_cv_mixedcase" = yes ; then # Extract the first word of "${ETAGS:-etags}", so it can be a program name with args. set dummy ${ETAGS:-etags}; ac_word=$2 -echo "$as_me:3130: checking for $ac_word" >&5 +echo "$as_me:3137: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_prog_MAKE_UPPER_TAGS+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -3142,7 +3149,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_MAKE_UPPER_TAGS="yes" -echo "$as_me:3145: found $ac_dir/$ac_word" >&5 +echo "$as_me:3152: found $ac_dir/$ac_word" >&5 break done @@ -3151,10 +3158,10 @@ fi fi MAKE_UPPER_TAGS=$ac_cv_prog_MAKE_UPPER_TAGS if test -n "$MAKE_UPPER_TAGS"; then - echo "$as_me:3154: result: $MAKE_UPPER_TAGS" >&5 + echo "$as_me:3161: result: $MAKE_UPPER_TAGS" >&5 echo "${ECHO_T}$MAKE_UPPER_TAGS" >&6 else - echo "$as_me:3157: result: no" >&5 + echo "$as_me:3164: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -3177,7 +3184,7 @@ fi if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}windres", so it can be a program name with args. set dummy ${ac_tool_prefix}windres; ac_word=$2 -echo "$as_me:3180: checking for $ac_word" >&5 +echo "$as_me:3187: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_path_WINDRES+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -3194,7 +3201,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_WINDRES="$ac_dir/$ac_word" - echo "$as_me:3197: found $ac_dir/$ac_word" >&5 + echo "$as_me:3204: found $ac_dir/$ac_word" >&5 break fi done @@ -3205,10 +3212,10 @@ fi WINDRES=$ac_cv_path_WINDRES if test -n "$WINDRES"; then - echo "$as_me:3208: result: $WINDRES" >&5 + echo "$as_me:3215: result: $WINDRES" >&5 echo "${ECHO_T}$WINDRES" >&6 else - echo "$as_me:3211: result: no" >&5 + echo "$as_me:3218: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -3217,7 +3224,7 @@ if test -z "$ac_cv_path_WINDRES"; then ac_pt_WINDRES=$WINDRES # Extract the first word of "windres", so it can be a program name with args. set dummy windres; ac_word=$2 -echo "$as_me:3220: checking for $ac_word" >&5 +echo "$as_me:3227: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_path_ac_pt_WINDRES+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -3234,7 +3241,7 @@ for ac_dir in $ac_dummy; do test -z "$ac_dir" && ac_dir=. if $as_executable_p "$ac_dir/$ac_word"; then ac_cv_path_ac_pt_WINDRES="$ac_dir/$ac_word" - echo "$as_me:3237: found $ac_dir/$ac_word" >&5 + echo "$as_me:3244: found $ac_dir/$ac_word" >&5 break fi done @@ -3246,10 +3253,10 @@ fi ac_pt_WINDRES=$ac_cv_path_ac_pt_WINDRES if test -n "$ac_pt_WINDRES"; then - echo "$as_me:3249: result: $ac_pt_WINDRES" >&5 + echo "$as_me:3256: result: $ac_pt_WINDRES" >&5 echo "${ECHO_T}$ac_pt_WINDRES" >&6 else - echo "$as_me:3252: result: no" >&5 + echo "$as_me:3259: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -3277,7 +3284,7 @@ else do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 -echo "$as_me:3280: checking for $ac_word" >&5 +echo "$as_me:3287: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_prog_BUILD_CC+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -3292,7 +3299,7 @@ for ac_dir in $ac_dummy; do test -z "$ac_dir" && ac_dir=. $as_executable_p "$ac_dir/$ac_word" || continue ac_cv_prog_BUILD_CC="$ac_prog" -echo "$as_me:3295: found $ac_dir/$ac_word" >&5 +echo "$as_me:3302: found $ac_dir/$ac_word" >&5 break done @@ -3300,10 +3307,10 @@ fi fi BUILD_CC=$ac_cv_prog_BUILD_CC if test -n "$BUILD_CC"; then - echo "$as_me:3303: result: $BUILD_CC" >&5 + echo "$as_me:3310: result: $BUILD_CC" >&5 echo "${ECHO_T}$BUILD_CC" >&6 else - echo "$as_me:3306: result: no" >&5 + echo "$as_me:3313: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -3312,12 +3319,12 @@ done test -n "$BUILD_CC" || BUILD_CC="none" fi; - echo "$as_me:3315: checking for native build C compiler" >&5 + echo "$as_me:3322: checking for native build C compiler" >&5 echo $ECHO_N "checking for native build C compiler... $ECHO_C" >&6 - echo "$as_me:3317: result: $BUILD_CC" >&5 + echo "$as_me:3324: result: $BUILD_CC" >&5 echo "${ECHO_T}$BUILD_CC" >&6 - echo "$as_me:3320: checking for native build C preprocessor" >&5 + echo "$as_me:3327: checking for native build C preprocessor" >&5 echo $ECHO_N "checking for native build C preprocessor... $ECHO_C" >&6 # Check whether --with-build-cpp or --without-build-cpp was given. @@ -3327,10 +3334,10 @@ if test "${with_build_cpp+set}" = set; then else BUILD_CPP='${BUILD_CC} -E' fi; - echo "$as_me:3330: result: $BUILD_CPP" >&5 + echo "$as_me:3337: result: $BUILD_CPP" >&5 echo "${ECHO_T}$BUILD_CPP" >&6 - echo "$as_me:3333: checking for native build C flags" >&5 + echo "$as_me:3340: checking for native build C flags" >&5 echo $ECHO_N "checking for native build C flags... $ECHO_C" >&6 # Check whether --with-build-cflags or --without-build-cflags was given. @@ -3338,10 +3345,10 @@ if test "${with_build_cflags+set}" = set; then withval="$with_build_cflags" BUILD_CFLAGS="$withval" fi; - echo "$as_me:3341: result: $BUILD_CFLAGS" >&5 + echo "$as_me:3348: result: $BUILD_CFLAGS" >&5 echo "${ECHO_T}$BUILD_CFLAGS" >&6 - echo "$as_me:3344: checking for native build C preprocessor-flags" >&5 + echo "$as_me:3351: checking for native build C preprocessor-flags" >&5 echo $ECHO_N "checking for native build C preprocessor-flags... $ECHO_C" >&6 # Check whether --with-build-cppflags or --without-build-cppflags was given. @@ -3349,10 +3356,10 @@ if test "${with_build_cppflags+set}" = set; then withval="$with_build_cppflags" BUILD_CPPFLAGS="$withval" fi; - echo "$as_me:3352: result: $BUILD_CPPFLAGS" >&5 + echo "$as_me:3359: result: $BUILD_CPPFLAGS" >&5 echo "${ECHO_T}$BUILD_CPPFLAGS" >&6 - echo "$as_me:3355: checking for native build linker-flags" >&5 + echo "$as_me:3362: checking for native build linker-flags" >&5 echo $ECHO_N "checking for native build linker-flags... $ECHO_C" >&6 # Check whether --with-build-ldflags or --without-build-ldflags was given. @@ -3360,10 +3367,10 @@ if test "${with_build_ldflags+set}" = set; then withval="$with_build_ldflags" BUILD_LDFLAGS="$withval" fi; - echo "$as_me:3363: result: $BUILD_LDFLAGS" >&5 + echo "$as_me:3370: result: $BUILD_LDFLAGS" >&5 echo "${ECHO_T}$BUILD_LDFLAGS" >&6 - echo "$as_me:3366: checking for native build linker-libraries" >&5 + echo "$as_me:3373: checking for native build linker-libraries" >&5 echo $ECHO_N "checking for native build linker-libraries... $ECHO_C" >&6 # Check whether --with-build-libs or --without-build-libs was given. @@ -3371,7 +3378,7 @@ if test "${with_build_libs+set}" = set; then withval="$with_build_libs" BUILD_LIBS="$withval" fi; - echo "$as_me:3374: result: $BUILD_LIBS" >&5 + echo "$as_me:3381: result: $BUILD_LIBS" >&5 echo "${ECHO_T}$BUILD_LIBS" >&6 # this assumes we're on Unix. @@ -3381,7 +3388,7 @@ echo "${ECHO_T}$BUILD_LIBS" >&6 : ${BUILD_CC:='${CC}'} if ( test "$BUILD_CC" = "$CC" || test "$BUILD_CC" = '${CC}' ) ; then - { { echo "$as_me:3384: error: Cross-build requires two compilers. + { { echo "$as_me:3391: error: Cross-build requires two compilers. Use --with-build-cc to specify the native compiler." >&5 echo "$as_me: error: Cross-build requires two compilers. Use --with-build-cc to specify the native compiler." >&2;} @@ -3402,7 +3409,7 @@ fi if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}ranlib", so it can be a program name with args. set dummy ${ac_tool_prefix}ranlib; ac_word=$2 -echo "$as_me:3405: checking for $ac_word" >&5 +echo "$as_me:3412: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_prog_RANLIB+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -3417,7 +3424,7 @@ for ac_dir in $ac_dummy; do test -z "$ac_dir" && ac_dir=. $as_executable_p "$ac_dir/$ac_word" || continue ac_cv_prog_RANLIB="${ac_tool_prefix}ranlib" -echo "$as_me:3420: found $ac_dir/$ac_word" >&5 +echo "$as_me:3427: found $ac_dir/$ac_word" >&5 break done @@ -3425,10 +3432,10 @@ fi fi RANLIB=$ac_cv_prog_RANLIB if test -n "$RANLIB"; then - echo "$as_me:3428: result: $RANLIB" >&5 + echo "$as_me:3435: result: $RANLIB" >&5 echo "${ECHO_T}$RANLIB" >&6 else - echo "$as_me:3431: result: no" >&5 + echo "$as_me:3438: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -3437,7 +3444,7 @@ if test -z "$ac_cv_prog_RANLIB"; then ac_ct_RANLIB=$RANLIB # Extract the first word of "ranlib", so it can be a program name with args. set dummy ranlib; ac_word=$2 -echo "$as_me:3440: checking for $ac_word" >&5 +echo "$as_me:3447: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_prog_ac_ct_RANLIB+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -3452,7 +3459,7 @@ for ac_dir in $ac_dummy; do test -z "$ac_dir" && ac_dir=. $as_executable_p "$ac_dir/$ac_word" || continue ac_cv_prog_ac_ct_RANLIB="ranlib" -echo "$as_me:3455: found $ac_dir/$ac_word" >&5 +echo "$as_me:3462: found $ac_dir/$ac_word" >&5 break done @@ -3461,10 +3468,10 @@ fi fi ac_ct_RANLIB=$ac_cv_prog_ac_ct_RANLIB if test -n "$ac_ct_RANLIB"; then - echo "$as_me:3464: result: $ac_ct_RANLIB" >&5 + echo "$as_me:3471: result: $ac_ct_RANLIB" >&5 echo "${ECHO_T}$ac_ct_RANLIB" >&6 else - echo "$as_me:3467: result: no" >&5 + echo "$as_me:3474: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -3476,7 +3483,7 @@ fi if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}ar", so it can be a program name with args. set dummy ${ac_tool_prefix}ar; ac_word=$2 -echo "$as_me:3479: checking for $ac_word" >&5 +echo "$as_me:3486: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_prog_AR+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -3491,7 +3498,7 @@ for ac_dir in $ac_dummy; do test -z "$ac_dir" && ac_dir=. $as_executable_p "$ac_dir/$ac_word" || continue ac_cv_prog_AR="${ac_tool_prefix}ar" -echo "$as_me:3494: found $ac_dir/$ac_word" >&5 +echo "$as_me:3501: found $ac_dir/$ac_word" >&5 break done @@ -3499,10 +3506,10 @@ fi fi AR=$ac_cv_prog_AR if test -n "$AR"; then - echo "$as_me:3502: result: $AR" >&5 + echo "$as_me:3509: result: $AR" >&5 echo "${ECHO_T}$AR" >&6 else - echo "$as_me:3505: result: no" >&5 + echo "$as_me:3512: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -3511,7 +3518,7 @@ if test -z "$ac_cv_prog_AR"; then ac_ct_AR=$AR # Extract the first word of "ar", so it can be a program name with args. set dummy ar; ac_word=$2 -echo "$as_me:3514: checking for $ac_word" >&5 +echo "$as_me:3521: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_prog_ac_ct_AR+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -3526,7 +3533,7 @@ for ac_dir in $ac_dummy; do test -z "$ac_dir" && ac_dir=. $as_executable_p "$ac_dir/$ac_word" || continue ac_cv_prog_ac_ct_AR="ar" -echo "$as_me:3529: found $ac_dir/$ac_word" >&5 +echo "$as_me:3536: found $ac_dir/$ac_word" >&5 break done @@ -3535,10 +3542,10 @@ fi fi ac_ct_AR=$ac_cv_prog_ac_ct_AR if test -n "$ac_ct_AR"; then - echo "$as_me:3538: result: $ac_ct_AR" >&5 + echo "$as_me:3545: result: $ac_ct_AR" >&5 echo "${ECHO_T}$ac_ct_AR" >&6 else - echo "$as_me:3541: result: no" >&5 + echo "$as_me:3548: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -3547,7 +3554,7 @@ else AR="$ac_cv_prog_AR" fi -echo "$as_me:3550: checking for options to update archives" >&5 +echo "$as_me:3557: checking for options to update archives" >&5 echo $ECHO_N "checking for options to update archives... $ECHO_C" >&6 if test "${cf_cv_ar_flags+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -3584,13 +3591,13 @@ else rm -f conftest.a cat >conftest.$ac_ext <<EOF -#line 3587 "configure" +#line 3594 "configure" int testdata[3] = { 123, 456, 789 }; EOF - if { (eval echo "$as_me:3590: \"$ac_compile\"") >&5 + if { (eval echo "$as_me:3597: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:3593: \$? = $ac_status" >&5 + echo "$as_me:3600: \$? = $ac_status" >&5 (exit $ac_status); } ; then echo "$AR $ARFLAGS $cf_ar_flags conftest.a conftest.$ac_cv_objext" >&5 $AR $ARFLAGS $cf_ar_flags conftest.a conftest.$ac_cv_objext 2>&5 1>/dev/null @@ -3601,7 +3608,7 @@ EOF else test -n "$verbose" && echo " cannot compile test-program" 1>&6 -echo "${as_me:-configure}:3604: testing cannot compile test-program ..." 1>&5 +echo "${as_me:-configure}:3611: testing cannot compile test-program ..." 1>&5 break fi @@ -3611,7 +3618,7 @@ echo "${as_me:-configure}:3604: testing cannot compile test-program ..." 1>&5 esac fi -echo "$as_me:3614: result: $cf_cv_ar_flags" >&5 +echo "$as_me:3621: result: $cf_cv_ar_flags" >&5 echo "${ECHO_T}$cf_cv_ar_flags" >&6 if test -n "$ARFLAGS" ; then @@ -3622,7 +3629,7 @@ else ARFLAGS=$cf_cv_ar_flags fi -echo "$as_me:3625: checking if you want to see long compiling messages" >&5 +echo "$as_me:3632: checking if you want to see long compiling messages" >&5 echo $ECHO_N "checking if you want to see long compiling messages... $ECHO_C" >&6 # Check whether --enable-echo or --disable-echo was given. @@ -3656,7 +3663,7 @@ else ECHO_CC='' fi; -echo "$as_me:3659: result: $enableval" >&5 +echo "$as_me:3666: result: $enableval" >&5 echo "${ECHO_T}$enableval" >&6 # special case for WWW/* @@ -3666,7 +3673,7 @@ else DONT_ECHO_CC='' fi -echo "$as_me:3669: checking if you want to check memory-leaks" >&5 +echo "$as_me:3676: checking if you want to check memory-leaks" >&5 echo $ECHO_N "checking if you want to check memory-leaks... $ECHO_C" >&6 # Check whether --enable-find-leaks or --disable-find-leaks was given. @@ -3683,7 +3690,7 @@ else with_leak_checks=no fi; -echo "$as_me:3686: result: $with_leak_checks" >&5 +echo "$as_me:3693: result: $with_leak_checks" >&5 echo "${ECHO_T}$with_leak_checks" >&6 test "$with_leak_checks" = "yes" && cat >>confdefs.h <<\EOF @@ -3693,7 +3700,7 @@ EOF # The comment about adding -g to $CFLAGS is unclear. Autoconf tries to add # a -g flag; we remove it if the user's $CFLAGS was not set and debugging is # disabled. -echo "$as_me:3696: checking if you want to enable debug-code" >&5 +echo "$as_me:3703: checking if you want to enable debug-code" >&5 echo $ECHO_N "checking if you want to enable debug-code... $ECHO_C" >&6 # Check whether --enable-debug or --disable-debug was given. @@ -3710,7 +3717,7 @@ else with_debug=no fi; -echo "$as_me:3713: result: $with_debug" >&5 +echo "$as_me:3720: result: $with_debug" >&5 echo "${ECHO_T}$with_debug" >&6 if test "$with_debug" = "yes" ; then case $host_os in @@ -3735,7 +3742,7 @@ else esac fi -echo "$as_me:3738: checking if you want to enable lynx trace code *recommended* " >&5 +echo "$as_me:3745: checking if you want to enable lynx trace code *recommended* " >&5 echo $ECHO_N "checking if you want to enable lynx trace code *recommended* ... $ECHO_C" >&6 # Check whether --enable-trace or --disable-trace was given. @@ -3752,14 +3759,14 @@ else with_trace=yes fi; -echo "$as_me:3755: result: $with_trace" >&5 +echo "$as_me:3762: result: $with_trace" >&5 echo "${ECHO_T}$with_trace" >&6 test $with_trace = no && cat >>confdefs.h <<\EOF #define NO_LYNX_TRACE 1 EOF -echo "$as_me:3762: checking if you want verbose trace code" >&5 +echo "$as_me:3769: checking if you want verbose trace code" >&5 echo $ECHO_N "checking if you want verbose trace code... $ECHO_C" >&6 # Check whether --enable-vertrace or --disable-vertrace was given. @@ -3776,40 +3783,16 @@ else with_vertrace=no fi; -echo "$as_me:3779: result: $with_vertrace" >&5 +echo "$as_me:3786: result: $with_vertrace" >&5 echo "${ECHO_T}$with_vertrace" >&6 test $with_vertrace = yes && cat >>confdefs.h <<\EOF #define LY_TRACELINE __LINE__ EOF -if test -n "$GCC" +if test -n "$with_screen" && test "x$with_screen" = "xpdcurses" then -echo "$as_me:3788: checking if you want to turn on gcc warnings" >&5 -echo $ECHO_N "checking if you want to turn on gcc warnings... $ECHO_C" >&6 - -# Check whether --enable-warnings or --disable-warnings was given. -if test "${enable_warnings+set}" = set; then - enableval="$enable_warnings" - test "$enableval" != yes && enableval=no - if test "$enableval" != "no" ; then - with_warnings=yes - else - with_warnings=no - fi -else - enableval=no - with_warnings=no - -fi; -echo "$as_me:3805: result: $with_warnings" >&5 -echo "${ECHO_T}$with_warnings" >&6 -if test "$with_warnings" = "yes" -then - if test "x$with_x" = "xyes" - then - -echo "$as_me:3812: checking for X" >&5 + echo "$as_me:3795: checking for X" >&5 echo $ECHO_N "checking for X... $ECHO_C" >&6 # Check whether --with-x or --without-x was given. @@ -3913,17 +3896,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 3916 "configure" +#line 3899 "configure" #include "confdefs.h" #include <X11/Intrinsic.h> _ACEOF -if { (eval echo "$as_me:3920: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:3903: \"$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:3926: \$? = $ac_status" >&5 + echo "$as_me:3909: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -3956,7 +3939,7 @@ if test "$ac_x_libraries" = no; then ac_save_LIBS=$LIBS LIBS="-lXt $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 3959 "configure" +#line 3942 "configure" #include "confdefs.h" #include <X11/Intrinsic.h> int @@ -3968,16 +3951,16 @@ XtMalloc (0) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:3971: \"$ac_link\"") >&5 +if { (eval echo "$as_me:3954: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:3974: \$? = $ac_status" >&5 + echo "$as_me:3957: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:3977: \"$ac_try\"") >&5 + { (eval echo "$as_me:3960: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:3980: \$? = $ac_status" >&5 + echo "$as_me:3963: \$? = $ac_status" >&5 (exit $ac_status); }; }; then LIBS=$ac_save_LIBS # We can link X programs with no special library path. @@ -4015,7 +3998,7 @@ fi fi # $with_x != no if test "$have_x" != yes; then - echo "$as_me:4018: result: $have_x" >&5 + echo "$as_me:4001: result: $have_x" >&5 echo "${ECHO_T}$have_x" >&6 no_x=yes else @@ -4025,11 +4008,11 @@ 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:4028: result: libraries $x_libraries, headers $x_includes" >&5 + echo "$as_me:4011: result: libraries $x_libraries, headers $x_includes" >&5 echo "${ECHO_T}libraries $x_libraries, headers $x_includes" >&6 fi -if test "$no_x" = yes; then + if test "$no_x" = yes; then # Not all programs may use this symbol, but it does not hurt to define it. cat >>confdefs.h <<\EOF @@ -4049,11 +4032,11 @@ else # others require no space. Words are not sufficient . . . . case `(uname -sr) 2>/dev/null` in "SunOS 5"*) - echo "$as_me:4052: checking whether -R must be followed by a space" >&5 + echo "$as_me:4035: 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 4056 "configure" +#line 4039 "configure" #include "confdefs.h" int @@ -4065,16 +4048,16 @@ main (void) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:4068: \"$ac_link\"") >&5 +if { (eval echo "$as_me:4051: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:4071: \$? = $ac_status" >&5 + echo "$as_me:4054: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:4074: \"$ac_try\"") >&5 + { (eval echo "$as_me:4057: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:4077: \$? = $ac_status" >&5 + echo "$as_me:4060: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_R_nospace=yes else @@ -4084,13 +4067,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:4087: result: no" >&5 + echo "$as_me:4070: 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 4093 "configure" +#line 4076 "configure" #include "confdefs.h" int @@ -4102,16 +4085,16 @@ main (void) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:4105: \"$ac_link\"") >&5 +if { (eval echo "$as_me:4088: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:4108: \$? = $ac_status" >&5 + echo "$as_me:4091: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:4111: \"$ac_try\"") >&5 + { (eval echo "$as_me:4094: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:4114: \$? = $ac_status" >&5 + echo "$as_me:4097: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_R_space=yes else @@ -4121,11 +4104,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:4124: result: yes" >&5 + echo "$as_me:4107: result: yes" >&5 echo "${ECHO_T}yes" >&6 X_LIBS="$X_LIBS -R $x_libraries" else - echo "$as_me:4128: result: neither works" >&5 + echo "$as_me:4111: result: neither works" >&5 echo "${ECHO_T}neither works" >&6 fi fi @@ -4145,7 +4128,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 4148 "configure" +#line 4131 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -4164,22 +4147,22 @@ XOpenDisplay (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:4167: \"$ac_link\"") >&5 +if { (eval echo "$as_me:4150: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:4170: \$? = $ac_status" >&5 + echo "$as_me:4153: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:4173: \"$ac_try\"") >&5 + { (eval echo "$as_me:4156: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:4176: \$? = $ac_status" >&5 + echo "$as_me:4159: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 -echo "$as_me:4182: checking for dnet_ntoa in -ldnet" >&5 +echo "$as_me:4165: 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 @@ -4187,7 +4170,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-ldnet $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 4190 "configure" +#line 4173 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -4206,16 +4189,16 @@ dnet_ntoa (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:4209: \"$ac_link\"") >&5 +if { (eval echo "$as_me:4192: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:4212: \$? = $ac_status" >&5 + echo "$as_me:4195: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:4215: \"$ac_try\"") >&5 + { (eval echo "$as_me:4198: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:4218: \$? = $ac_status" >&5 + echo "$as_me:4201: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_dnet_dnet_ntoa=yes else @@ -4226,14 +4209,14 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:4229: result: $ac_cv_lib_dnet_dnet_ntoa" >&5 +echo "$as_me:4212: 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:4236: checking for dnet_ntoa in -ldnet_stub" >&5 + echo "$as_me:4219: 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 @@ -4241,7 +4224,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-ldnet_stub $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 4244 "configure" +#line 4227 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -4260,16 +4243,16 @@ dnet_ntoa (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:4263: \"$ac_link\"") >&5 +if { (eval echo "$as_me:4246: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:4266: \$? = $ac_status" >&5 + echo "$as_me:4249: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:4269: \"$ac_try\"") >&5 + { (eval echo "$as_me:4252: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:4272: \$? = $ac_status" >&5 + echo "$as_me:4255: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_dnet_stub_dnet_ntoa=yes else @@ -4280,7 +4263,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:4283: result: $ac_cv_lib_dnet_stub_dnet_ntoa" >&5 +echo "$as_me:4266: 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" @@ -4299,13 +4282,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:4302: checking for gethostbyname" >&5 + echo "$as_me:4285: 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 4308 "configure" +#line 4291 "configure" #include "confdefs.h" #define gethostbyname autoconf_temporary #include <limits.h> /* least-intrusive standard header which defines gcc2 __stub macros */ @@ -4336,16 +4319,16 @@ main (void) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:4339: \"$ac_link\"") >&5 +if { (eval echo "$as_me:4322: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:4342: \$? = $ac_status" >&5 + echo "$as_me:4325: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:4345: \"$ac_try\"") >&5 + { (eval echo "$as_me:4328: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:4348: \$? = $ac_status" >&5 + echo "$as_me:4331: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_gethostbyname=yes else @@ -4355,11 +4338,11 @@ ac_cv_func_gethostbyname=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:4358: result: $ac_cv_func_gethostbyname" >&5 +echo "$as_me:4341: 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:4362: checking for gethostbyname in -lnsl" >&5 + echo "$as_me:4345: 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 @@ -4367,7 +4350,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lnsl $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 4370 "configure" +#line 4353 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -4386,16 +4369,16 @@ gethostbyname (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:4389: \"$ac_link\"") >&5 +if { (eval echo "$as_me:4372: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:4392: \$? = $ac_status" >&5 + echo "$as_me:4375: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:4395: \"$ac_try\"") >&5 + { (eval echo "$as_me:4378: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:4398: \$? = $ac_status" >&5 + echo "$as_me:4381: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_nsl_gethostbyname=yes else @@ -4406,14 +4389,14 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:4409: result: $ac_cv_lib_nsl_gethostbyname" >&5 +echo "$as_me:4392: 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:4416: checking for gethostbyname in -lbsd" >&5 + echo "$as_me:4399: 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 @@ -4421,7 +4404,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lbsd $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 4424 "configure" +#line 4407 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -4440,16 +4423,16 @@ gethostbyname (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:4443: \"$ac_link\"") >&5 +if { (eval echo "$as_me:4426: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:4446: \$? = $ac_status" >&5 + echo "$as_me:4429: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:4449: \"$ac_try\"") >&5 + { (eval echo "$as_me:4432: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:4452: \$? = $ac_status" >&5 + echo "$as_me:4435: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_bsd_gethostbyname=yes else @@ -4460,7 +4443,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:4463: result: $ac_cv_lib_bsd_gethostbyname" >&5 +echo "$as_me:4446: 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" @@ -4476,13 +4459,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:4479: checking for connect" >&5 + echo "$as_me:4462: 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 4485 "configure" +#line 4468 "configure" #include "confdefs.h" #define connect autoconf_temporary #include <limits.h> /* least-intrusive standard header which defines gcc2 __stub macros */ @@ -4513,16 +4496,16 @@ main (void) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:4516: \"$ac_link\"") >&5 +if { (eval echo "$as_me:4499: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:4519: \$? = $ac_status" >&5 + echo "$as_me:4502: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:4522: \"$ac_try\"") >&5 + { (eval echo "$as_me:4505: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:4525: \$? = $ac_status" >&5 + echo "$as_me:4508: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_connect=yes else @@ -4532,11 +4515,11 @@ ac_cv_func_connect=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:4535: result: $ac_cv_func_connect" >&5 +echo "$as_me:4518: 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:4539: checking for connect in -lsocket" >&5 + echo "$as_me:4522: 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 @@ -4544,7 +4527,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lsocket $X_EXTRA_LIBS $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 4547 "configure" +#line 4530 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -4563,16 +4546,16 @@ connect (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:4566: \"$ac_link\"") >&5 +if { (eval echo "$as_me:4549: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:4569: \$? = $ac_status" >&5 + echo "$as_me:4552: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:4572: \"$ac_try\"") >&5 + { (eval echo "$as_me:4555: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:4575: \$? = $ac_status" >&5 + echo "$as_me:4558: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_socket_connect=yes else @@ -4583,7 +4566,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:4586: result: $ac_cv_lib_socket_connect" >&5 +echo "$as_me:4569: 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" @@ -4592,13 +4575,13 @@ fi fi # Guillermo Gomez says -lposix is necessary on A/UX. - echo "$as_me:4595: checking for remove" >&5 + echo "$as_me:4578: 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 4601 "configure" +#line 4584 "configure" #include "confdefs.h" #define remove autoconf_temporary #include <limits.h> /* least-intrusive standard header which defines gcc2 __stub macros */ @@ -4629,16 +4612,16 @@ main (void) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:4632: \"$ac_link\"") >&5 +if { (eval echo "$as_me:4615: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:4635: \$? = $ac_status" >&5 + echo "$as_me:4618: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:4638: \"$ac_try\"") >&5 + { (eval echo "$as_me:4621: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:4641: \$? = $ac_status" >&5 + echo "$as_me:4624: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_remove=yes else @@ -4648,11 +4631,11 @@ ac_cv_func_remove=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:4651: result: $ac_cv_func_remove" >&5 +echo "$as_me:4634: 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:4655: checking for remove in -lposix" >&5 + echo "$as_me:4638: 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 @@ -4660,7 +4643,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lposix $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 4663 "configure" +#line 4646 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -4679,16 +4662,16 @@ remove (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:4682: \"$ac_link\"") >&5 +if { (eval echo "$as_me:4665: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:4685: \$? = $ac_status" >&5 + echo "$as_me:4668: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:4688: \"$ac_try\"") >&5 + { (eval echo "$as_me:4671: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:4691: \$? = $ac_status" >&5 + echo "$as_me:4674: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_posix_remove=yes else @@ -4699,7 +4682,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:4702: result: $ac_cv_lib_posix_remove" >&5 +echo "$as_me:4685: 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" @@ -4708,13 +4691,13 @@ fi fi # BSDI BSD/OS 2.1 needs -lipc for XOpenDisplay. - echo "$as_me:4711: checking for shmat" >&5 + echo "$as_me:4694: 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 4717 "configure" +#line 4700 "configure" #include "confdefs.h" #define shmat autoconf_temporary #include <limits.h> /* least-intrusive standard header which defines gcc2 __stub macros */ @@ -4745,16 +4728,16 @@ main (void) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:4748: \"$ac_link\"") >&5 +if { (eval echo "$as_me:4731: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:4751: \$? = $ac_status" >&5 + echo "$as_me:4734: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:4754: \"$ac_try\"") >&5 + { (eval echo "$as_me:4737: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:4757: \$? = $ac_status" >&5 + echo "$as_me:4740: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_shmat=yes else @@ -4764,11 +4747,11 @@ ac_cv_func_shmat=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:4767: result: $ac_cv_func_shmat" >&5 +echo "$as_me:4750: 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:4771: checking for shmat in -lipc" >&5 + echo "$as_me:4754: 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 @@ -4776,7 +4759,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lipc $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 4779 "configure" +#line 4762 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -4795,16 +4778,16 @@ shmat (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:4798: \"$ac_link\"") >&5 +if { (eval echo "$as_me:4781: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:4801: \$? = $ac_status" >&5 + echo "$as_me:4784: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:4804: \"$ac_try\"") >&5 + { (eval echo "$as_me:4787: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:4807: \$? = $ac_status" >&5 + echo "$as_me:4790: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_ipc_shmat=yes else @@ -4815,7 +4798,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:4818: result: $ac_cv_lib_ipc_shmat" >&5 +echo "$as_me:4801: 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" @@ -4833,7 +4816,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:4836: checking for IceConnectionNumber in -lICE" >&5 + echo "$as_me:4819: 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 @@ -4841,7 +4824,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lICE $X_EXTRA_LIBS $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 4844 "configure" +#line 4827 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -4860,16 +4843,16 @@ IceConnectionNumber (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:4863: \"$ac_link\"") >&5 +if { (eval echo "$as_me:4846: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:4866: \$? = $ac_status" >&5 + echo "$as_me:4849: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:4869: \"$ac_try\"") >&5 + { (eval echo "$as_me:4852: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:4872: \$? = $ac_status" >&5 + echo "$as_me:4855: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_ICE_IceConnectionNumber=yes else @@ -4880,7 +4863,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:4883: result: $ac_cv_lib_ICE_IceConnectionNumber" >&5 +echo "$as_me:4866: 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" @@ -4890,7 +4873,149 @@ fi fi +fi + +if ( test "$GCC" = yes || test "$GXX" = yes ) +then + +if ( test "$GCC" = yes || test "$GXX" = yes ) +then + case $CFLAGS in + (*-Werror=*) + test -n "$verbose" && echo " repairing CFLAGS: $CFLAGS" 1>&6 + +echo "${as_me:-configure}:4887: testing repairing CFLAGS: $CFLAGS ..." 1>&5 + + cf_temp_flags= + for cf_temp_scan in $CFLAGS + do + case "x$cf_temp_scan" in + (x-Werror=*) + + test -n "$EXTRA_CFLAGS" && EXTRA_CFLAGS="$EXTRA_CFLAGS " + EXTRA_CFLAGS="${EXTRA_CFLAGS}"$cf_temp_scan"" + + ;; + (*) + + test -n "$cf_temp_flags" && cf_temp_flags="$cf_temp_flags " + cf_temp_flags="${cf_temp_flags}"$cf_temp_scan"" + + ;; + esac + done + CFLAGS="$cf_temp_flags" + test -n "$verbose" && echo " ... fixed $CFLAGS" 1>&6 + +echo "${as_me:-configure}:4910: testing ... fixed $CFLAGS ..." 1>&5 + + test -n "$verbose" && echo " ... extra $EXTRA_CFLAGS" 1>&6 + +echo "${as_me:-configure}:4914: testing ... extra $EXTRA_CFLAGS ..." 1>&5 + + ;; + esac +fi + +if ( test "$GCC" = yes || test "$GXX" = yes ) +then + case $CPPFLAGS in + (*-Werror=*) + test -n "$verbose" && echo " repairing CPPFLAGS: $CPPFLAGS" 1>&6 + +echo "${as_me:-configure}:4926: testing repairing CPPFLAGS: $CPPFLAGS ..." 1>&5 + + cf_temp_flags= + for cf_temp_scan in $CPPFLAGS + do + case "x$cf_temp_scan" in + (x-Werror=*) + + test -n "$EXTRA_CFLAGS" && EXTRA_CFLAGS="$EXTRA_CFLAGS " + EXTRA_CFLAGS="${EXTRA_CFLAGS}"$cf_temp_scan"" + + ;; + (*) + + test -n "$cf_temp_flags" && cf_temp_flags="$cf_temp_flags " + cf_temp_flags="${cf_temp_flags}"$cf_temp_scan"" + + ;; + esac + done + CPPFLAGS="$cf_temp_flags" + test -n "$verbose" && echo " ... fixed $CPPFLAGS" 1>&6 + +echo "${as_me:-configure}:4949: testing ... fixed $CPPFLAGS ..." 1>&5 + + test -n "$verbose" && echo " ... extra $EXTRA_CFLAGS" 1>&6 + +echo "${as_me:-configure}:4953: testing ... extra $EXTRA_CFLAGS ..." 1>&5 + + ;; + esac +fi + +if ( test "$GCC" = yes || test "$GXX" = yes ) +then + case $LDFLAGS in + (*-Werror=*) + test -n "$verbose" && echo " repairing LDFLAGS: $LDFLAGS" 1>&6 + +echo "${as_me:-configure}:4965: testing repairing LDFLAGS: $LDFLAGS ..." 1>&5 + + cf_temp_flags= + for cf_temp_scan in $LDFLAGS + do + case "x$cf_temp_scan" in + (x-Werror=*) + + test -n "$EXTRA_CFLAGS" && EXTRA_CFLAGS="$EXTRA_CFLAGS " + EXTRA_CFLAGS="${EXTRA_CFLAGS}"$cf_temp_scan"" + + ;; + (*) + + test -n "$cf_temp_flags" && cf_temp_flags="$cf_temp_flags " + cf_temp_flags="${cf_temp_flags}"$cf_temp_scan"" + + ;; + esac + done + LDFLAGS="$cf_temp_flags" + test -n "$verbose" && echo " ... fixed $LDFLAGS" 1>&6 + +echo "${as_me:-configure}:4988: testing ... fixed $LDFLAGS ..." 1>&5 + + test -n "$verbose" && echo " ... extra $EXTRA_CFLAGS" 1>&6 + +echo "${as_me:-configure}:4992: testing ... extra $EXTRA_CFLAGS ..." 1>&5 + + ;; + esac +fi + +echo "$as_me:4998: checking if you want to turn on gcc warnings" >&5 +echo $ECHO_N "checking if you want to turn on gcc warnings... $ECHO_C" >&6 + +# Check whether --enable-warnings or --disable-warnings was given. +if test "${enable_warnings+set}" = set; then + enableval="$enable_warnings" + test "$enableval" != yes && enableval=no + if test "$enableval" != "no" ; then + with_warnings=yes + else + with_warnings=no fi +else + enableval=no + with_warnings=no + +fi; +echo "$as_me:5015: result: $with_warnings" >&5 +echo "${ECHO_T}$with_warnings" >&6 +if test "$with_warnings" = "yes" +then if test "$GCC" = yes then @@ -4910,10 +5035,10 @@ cat > conftest.i <<EOF EOF if test "$GCC" = yes then - { echo "$as_me:4913: checking for $CC __attribute__ directives..." >&5 + { echo "$as_me:5038: checking for $CC __attribute__ directives..." >&5 echo "$as_me: checking for $CC __attribute__ directives..." >&6;} cat > conftest.$ac_ext <<EOF -#line 4916 "${as_me:-configure}" +#line 5041 "${as_me:-configure}" #include "confdefs.h" #include "conftest.h" #include "conftest.i" @@ -4962,12 +5087,12 @@ EOF ;; esac - if { (eval echo "$as_me:4965: \"$ac_compile\"") >&5 + if { (eval echo "$as_me:5090: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:4968: \$? = $ac_status" >&5 + echo "$as_me:5093: \$? = $ac_status" >&5 (exit $ac_status); }; then - test -n "$verbose" && echo "$as_me:4970: result: ... $cf_attribute" >&5 + test -n "$verbose" && echo "$as_me:5095: result: ... $cf_attribute" >&5 echo "${ECHO_T}... $cf_attribute" >&6 cat conftest.h >>confdefs.h case $cf_attribute in @@ -5045,7 +5170,7 @@ do done cat >conftest.$ac_ext <<_ACEOF -#line 5048 "configure" +#line 5173 "configure" #include "confdefs.h" #include <stdlib.h> @@ -5060,26 +5185,26 @@ String foo = malloc(1); (void)foo } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:5063: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:5188: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:5066: \$? = $ac_status" >&5 + echo "$as_me:5191: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:5069: \"$ac_try\"") >&5 + { (eval echo "$as_me:5194: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:5072: \$? = $ac_status" >&5 + echo "$as_me:5197: \$? = $ac_status" >&5 (exit $ac_status); }; }; then -echo "$as_me:5075: checking for X11/Xt const-feature" >&5 +echo "$as_me:5200: checking for X11/Xt const-feature" >&5 echo $ECHO_N "checking for X11/Xt const-feature... $ECHO_C" >&6 if test "${cf_cv_const_x_string+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 5082 "configure" +#line 5207 "configure" #include "confdefs.h" #define _CONST_X_STRING /* X11R7.8 (perhaps) */ @@ -5096,16 +5221,16 @@ String foo = malloc(1); *foo = 0 } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:5099: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:5224: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:5102: \$? = $ac_status" >&5 + echo "$as_me:5227: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:5105: \"$ac_try\"") >&5 + { (eval echo "$as_me:5230: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:5108: \$? = $ac_status" >&5 + echo "$as_me:5233: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_const_x_string=no @@ -5120,7 +5245,7 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:5123: result: $cf_cv_const_x_string" >&5 +echo "$as_me:5248: result: $cf_cv_const_x_string" >&5 echo "${ECHO_T}$cf_cv_const_x_string" >&6 LIBS="$cf_save_LIBS_CF_CONST_X_STRING" @@ -5149,7 +5274,7 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi cat > conftest.$ac_ext <<EOF -#line 5152 "${as_me:-configure}" +#line 5277 "${as_me:-configure}" int main(int argc, char *argv[]) { return (argv[argc-1] == 0) ; } EOF if test "$INTEL_COMPILER" = yes @@ -5165,10 +5290,10 @@ then # remark #981: operands are evaluated in unspecified order # warning #279: controlling expression is constant - { echo "$as_me:5168: checking for $CC warning options..." >&5 + { echo "$as_me:5293: checking for $CC warning options..." >&5 echo "$as_me: checking for $CC warning options..." >&6;} cf_save_CFLAGS="$CFLAGS" - EXTRA_CFLAGS="-Wall" + EXTRA_CFLAGS="$EXTRA_CFLAGS -Wall" for cf_opt in \ wd1419 \ wd1683 \ @@ -5181,12 +5306,12 @@ echo "$as_me: checking for $CC warning options..." >&6;} wd981 do CFLAGS="$cf_save_CFLAGS $EXTRA_CFLAGS -$cf_opt" - if { (eval echo "$as_me:5184: \"$ac_compile\"") >&5 + if { (eval echo "$as_me:5309: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:5187: \$? = $ac_status" >&5 + echo "$as_me:5312: \$? = $ac_status" >&5 (exit $ac_status); }; then - test -n "$verbose" && echo "$as_me:5189: result: ... -$cf_opt" >&5 + test -n "$verbose" && echo "$as_me:5314: result: ... -$cf_opt" >&5 echo "${ECHO_T}... -$cf_opt" >&6 EXTRA_CFLAGS="$EXTRA_CFLAGS -$cf_opt" fi @@ -5194,10 +5319,9 @@ echo "${ECHO_T}... -$cf_opt" >&6 CFLAGS="$cf_save_CFLAGS" elif test "$GCC" = yes && test "$GCC_VERSION" != "unknown" then - { echo "$as_me:5197: checking for $CC warning options..." >&5 + { echo "$as_me:5322: checking for $CC warning options..." >&5 echo "$as_me: checking for $CC warning options..." >&6;} cf_save_CFLAGS="$CFLAGS" - EXTRA_CFLAGS= cf_warn_CONST="" test "$with_ext_const" = yes && cf_warn_CONST="Wwrite-strings" cf_gcc_warnings="Wignored-qualifiers Wlogical-op Wvarargs" @@ -5218,12 +5342,12 @@ echo "$as_me: checking for $CC warning options..." >&6;} Wundef Wno-inline $cf_gcc_warnings $cf_warn_CONST do CFLAGS="$cf_save_CFLAGS $EXTRA_CFLAGS -$cf_opt" - if { (eval echo "$as_me:5221: \"$ac_compile\"") >&5 + if { (eval echo "$as_me:5345: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:5224: \$? = $ac_status" >&5 + echo "$as_me:5348: \$? = $ac_status" >&5 (exit $ac_status); }; then - test -n "$verbose" && echo "$as_me:5226: result: ... -$cf_opt" >&5 + test -n "$verbose" && echo "$as_me:5350: result: ... -$cf_opt" >&5 echo "${ECHO_T}... -$cf_opt" >&6 case $cf_opt in (Winline) @@ -5231,7 +5355,7 @@ echo "${ECHO_T}... -$cf_opt" >&6 ([34].*) test -n "$verbose" && echo " feature is broken in gcc $GCC_VERSION" 1>&6 -echo "${as_me:-configure}:5234: testing feature is broken in gcc $GCC_VERSION ..." 1>&5 +echo "${as_me:-configure}:5358: testing feature is broken in gcc $GCC_VERSION ..." 1>&5 continue;; esac @@ -5241,7 +5365,7 @@ echo "${as_me:-configure}:5234: testing feature is broken in gcc $GCC_VERSION .. ([12].*) test -n "$verbose" && echo " feature is broken in gcc $GCC_VERSION" 1>&6 -echo "${as_me:-configure}:5244: testing feature is broken in gcc $GCC_VERSION ..." 1>&5 +echo "${as_me:-configure}:5368: testing feature is broken in gcc $GCC_VERSION ..." 1>&5 continue;; esac @@ -5257,7 +5381,7 @@ rm -rf conftest* fi fi -echo "$as_me:5260: checking if you want to use dbmalloc for testing" >&5 +echo "$as_me:5384: checking if you want to use dbmalloc for testing" >&5 echo $ECHO_N "checking if you want to use dbmalloc for testing... $ECHO_C" >&6 # Check whether --with-dbmalloc or --without-dbmalloc was given. @@ -5274,7 +5398,7 @@ EOF else with_dbmalloc= fi; -echo "$as_me:5277: result: ${with_dbmalloc:-no}" >&5 +echo "$as_me:5401: result: ${with_dbmalloc:-no}" >&5 echo "${ECHO_T}${with_dbmalloc:-no}" >&6 case .$with_cflags in @@ -5388,23 +5512,23 @@ fi esac if test "$with_dbmalloc" = yes ; then - echo "$as_me:5391: checking for dbmalloc.h" >&5 + echo "$as_me:5515: checking for dbmalloc.h" >&5 echo $ECHO_N "checking for dbmalloc.h... $ECHO_C" >&6 if test "${ac_cv_header_dbmalloc_h+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 5397 "configure" +#line 5521 "configure" #include "confdefs.h" #include <dbmalloc.h> _ACEOF -if { (eval echo "$as_me:5401: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:5525: \"$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:5407: \$? = $ac_status" >&5 + echo "$as_me:5531: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -5423,11 +5547,11 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:5426: result: $ac_cv_header_dbmalloc_h" >&5 +echo "$as_me:5550: result: $ac_cv_header_dbmalloc_h" >&5 echo "${ECHO_T}$ac_cv_header_dbmalloc_h" >&6 if test $ac_cv_header_dbmalloc_h = yes; then -echo "$as_me:5430: checking for debug_malloc in -ldbmalloc" >&5 +echo "$as_me:5554: checking for debug_malloc in -ldbmalloc" >&5 echo $ECHO_N "checking for debug_malloc in -ldbmalloc... $ECHO_C" >&6 if test "${ac_cv_lib_dbmalloc_debug_malloc+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -5435,7 +5559,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-ldbmalloc $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 5438 "configure" +#line 5562 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -5454,16 +5578,16 @@ debug_malloc (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:5457: \"$ac_link\"") >&5 +if { (eval echo "$as_me:5581: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:5460: \$? = $ac_status" >&5 + echo "$as_me:5584: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:5463: \"$ac_try\"") >&5 + { (eval echo "$as_me:5587: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:5466: \$? = $ac_status" >&5 + echo "$as_me:5590: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_dbmalloc_debug_malloc=yes else @@ -5474,7 +5598,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:5477: result: $ac_cv_lib_dbmalloc_debug_malloc" >&5 +echo "$as_me:5601: result: $ac_cv_lib_dbmalloc_debug_malloc" >&5 echo "${ECHO_T}$ac_cv_lib_dbmalloc_debug_malloc" >&6 if test $ac_cv_lib_dbmalloc_debug_malloc = yes; then cat >>confdefs.h <<EOF @@ -5489,7 +5613,7 @@ fi fi -echo "$as_me:5492: checking if you want to use dmalloc for testing" >&5 +echo "$as_me:5616: checking if you want to use dmalloc for testing" >&5 echo $ECHO_N "checking if you want to use dmalloc for testing... $ECHO_C" >&6 # Check whether --with-dmalloc or --without-dmalloc was given. @@ -5506,7 +5630,7 @@ EOF else with_dmalloc= fi; -echo "$as_me:5509: result: ${with_dmalloc:-no}" >&5 +echo "$as_me:5633: result: ${with_dmalloc:-no}" >&5 echo "${ECHO_T}${with_dmalloc:-no}" >&6 case .$with_cflags in @@ -5620,23 +5744,23 @@ fi esac if test "$with_dmalloc" = yes ; then - echo "$as_me:5623: checking for dmalloc.h" >&5 + echo "$as_me:5747: checking for dmalloc.h" >&5 echo $ECHO_N "checking for dmalloc.h... $ECHO_C" >&6 if test "${ac_cv_header_dmalloc_h+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 5629 "configure" +#line 5753 "configure" #include "confdefs.h" #include <dmalloc.h> _ACEOF -if { (eval echo "$as_me:5633: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:5757: \"$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:5639: \$? = $ac_status" >&5 + echo "$as_me:5763: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -5655,11 +5779,11 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:5658: result: $ac_cv_header_dmalloc_h" >&5 +echo "$as_me:5782: result: $ac_cv_header_dmalloc_h" >&5 echo "${ECHO_T}$ac_cv_header_dmalloc_h" >&6 if test $ac_cv_header_dmalloc_h = yes; then -echo "$as_me:5662: checking for dmalloc_debug in -ldmalloc" >&5 +echo "$as_me:5786: checking for dmalloc_debug in -ldmalloc" >&5 echo $ECHO_N "checking for dmalloc_debug in -ldmalloc... $ECHO_C" >&6 if test "${ac_cv_lib_dmalloc_dmalloc_debug+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -5667,7 +5791,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-ldmalloc $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 5670 "configure" +#line 5794 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -5686,16 +5810,16 @@ dmalloc_debug (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:5689: \"$ac_link\"") >&5 +if { (eval echo "$as_me:5813: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:5692: \$? = $ac_status" >&5 + echo "$as_me:5816: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:5695: \"$ac_try\"") >&5 + { (eval echo "$as_me:5819: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:5698: \$? = $ac_status" >&5 + echo "$as_me:5822: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_dmalloc_dmalloc_debug=yes else @@ -5706,7 +5830,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:5709: result: $ac_cv_lib_dmalloc_dmalloc_debug" >&5 +echo "$as_me:5833: result: $ac_cv_lib_dmalloc_dmalloc_debug" >&5 echo "${ECHO_T}$ac_cv_lib_dmalloc_dmalloc_debug" >&6 if test $ac_cv_lib_dmalloc_dmalloc_debug = yes; then cat >>confdefs.h <<EOF @@ -5746,7 +5870,7 @@ case $host_os in # contributed by Alex Matulich (matuli_a@marlin.navsea.navy.mil) also # references -lmalloc and -lbsd. -echo "$as_me:5749: checking for strcmp in -lc_s" >&5 +echo "$as_me:5873: checking for strcmp in -lc_s" >&5 echo $ECHO_N "checking for strcmp in -lc_s... $ECHO_C" >&6 if test "${ac_cv_lib_c_s_strcmp+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -5754,7 +5878,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lc_s $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 5757 "configure" +#line 5881 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -5773,16 +5897,16 @@ strcmp (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:5776: \"$ac_link\"") >&5 +if { (eval echo "$as_me:5900: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:5779: \$? = $ac_status" >&5 + echo "$as_me:5903: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:5782: \"$ac_try\"") >&5 + { (eval echo "$as_me:5906: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:5785: \$? = $ac_status" >&5 + echo "$as_me:5909: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_c_s_strcmp=yes else @@ -5793,7 +5917,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:5796: result: $ac_cv_lib_c_s_strcmp" >&5 +echo "$as_me:5920: result: $ac_cv_lib_c_s_strcmp" >&5 echo "${ECHO_T}$ac_cv_lib_c_s_strcmp" >&6 if test $ac_cv_lib_c_s_strcmp = yes; then cat >>confdefs.h <<EOF @@ -5973,14 +6097,14 @@ fi # SCO's cc (which is reported to have broken const/volatile). case "$CC" in (cc|*/cc) - { echo "$as_me:5976: WARNING: You should consider using gcc or rcc if available" >&5 + { echo "$as_me:6100: WARNING: You should consider using gcc or rcc if available" >&5 echo "$as_me: WARNING: You should consider using gcc or rcc if available" >&2;} unset ac_cv_prog_CC for ac_prog in gcc rcc do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 -echo "$as_me:5983: checking for $ac_word" >&5 +echo "$as_me:6107: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_prog_CC+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -5995,7 +6119,7 @@ for ac_dir in $ac_dummy; do test -z "$ac_dir" && ac_dir=. $as_executable_p "$ac_dir/$ac_word" || continue ac_cv_prog_CC="$ac_prog" -echo "$as_me:5998: found $ac_dir/$ac_word" >&5 +echo "$as_me:6122: found $ac_dir/$ac_word" >&5 break done @@ -6003,10 +6127,10 @@ fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then - echo "$as_me:6006: result: $CC" >&5 + echo "$as_me:6130: result: $CC" >&5 echo "${ECHO_T}$CC" >&6 else - echo "$as_me:6009: result: no" >&5 + echo "$as_me:6133: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -6029,23 +6153,23 @@ test -n "$CC" || CC="$CC" for ac_header in jcurses.h do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` -echo "$as_me:6032: checking for $ac_header" >&5 +echo "$as_me:6156: 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 6038 "configure" +#line 6162 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:6042: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:6166: \"$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:6048: \$? = $ac_status" >&5 + echo "$as_me:6172: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -6064,7 +6188,7 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:6067: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:6191: 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 @@ -6092,23 +6216,23 @@ done for ac_header in cursesX.h do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` -echo "$as_me:6095: checking for $ac_header" >&5 +echo "$as_me:6219: 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 6101 "configure" +#line 6225 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:6105: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:6229: \"$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:6111: \$? = $ac_status" >&5 + echo "$as_me:6235: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -6127,7 +6251,7 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:6130: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:6254: 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 @@ -6154,13 +6278,13 @@ esac # This should have been defined by AC_PROG_CC : ${CC:=cc} -echo "$as_me:6157: checking \$CFLAGS variable" >&5 +echo "$as_me:6281: checking \$CFLAGS variable" >&5 echo $ECHO_N "checking \$CFLAGS variable... $ECHO_C" >&6 case "x$CFLAGS" in (*-[IUD]*) - echo "$as_me:6161: result: broken" >&5 + echo "$as_me:6285: result: broken" >&5 echo "${ECHO_T}broken" >&6 - { echo "$as_me:6163: WARNING: your environment uses the CFLAGS variable to hold CPPFLAGS options" >&5 + { echo "$as_me:6287: WARNING: your environment uses the CFLAGS variable to hold CPPFLAGS options" >&5 echo "$as_me: WARNING: your environment uses the CFLAGS variable to hold CPPFLAGS options" >&2;} cf_flags="$CFLAGS" CFLAGS= @@ -6268,18 +6392,18 @@ fi done ;; (*) - echo "$as_me:6271: result: ok" >&5 + echo "$as_me:6395: result: ok" >&5 echo "${ECHO_T}ok" >&6 ;; esac -echo "$as_me:6276: checking \$CC variable" >&5 +echo "$as_me:6400: checking \$CC variable" >&5 echo $ECHO_N "checking \$CC variable... $ECHO_C" >&6 case "$CC" in (*[\ \ ]-*) - echo "$as_me:6280: result: broken" >&5 + echo "$as_me:6404: result: broken" >&5 echo "${ECHO_T}broken" >&6 - { echo "$as_me:6282: WARNING: your environment uses the CC variable to hold CFLAGS/CPPFLAGS options" >&5 + { echo "$as_me:6406: WARNING: your environment uses the CC variable to hold CFLAGS/CPPFLAGS options" >&5 echo "$as_me: WARNING: your environment uses the CC variable to hold CFLAGS/CPPFLAGS options" >&2;} # humor him... cf_prog=`echo "$CC" | sed -e 's/ / /g' -e 's/[ ]* / /g' -e 's/[ ]*[ ]-[^ ].*//'` @@ -6396,24 +6520,24 @@ fi done test -n "$verbose" && echo " resulting CC: '$CC'" 1>&6 -echo "${as_me:-configure}:6399: testing resulting CC: '$CC' ..." 1>&5 +echo "${as_me:-configure}:6523: testing resulting CC: '$CC' ..." 1>&5 test -n "$verbose" && echo " resulting CFLAGS: '$CFLAGS'" 1>&6 -echo "${as_me:-configure}:6403: testing resulting CFLAGS: '$CFLAGS' ..." 1>&5 +echo "${as_me:-configure}:6527: testing resulting CFLAGS: '$CFLAGS' ..." 1>&5 test -n "$verbose" && echo " resulting CPPFLAGS: '$CPPFLAGS'" 1>&6 -echo "${as_me:-configure}:6407: testing resulting CPPFLAGS: '$CPPFLAGS' ..." 1>&5 +echo "${as_me:-configure}:6531: testing resulting CPPFLAGS: '$CPPFLAGS' ..." 1>&5 ;; (*) - echo "$as_me:6411: result: ok" >&5 + echo "$as_me:6535: result: ok" >&5 echo "${ECHO_T}ok" >&6 ;; esac -echo "$as_me:6416: checking for ${CC:-cc} option to accept ANSI C" >&5 +echo "$as_me:6540: checking for ${CC:-cc} option to accept ANSI C" >&5 echo $ECHO_N "checking for ${CC:-cc} option to accept ANSI C... $ECHO_C" >&6 if test "${cf_cv_ansi_cc+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -6537,7 +6661,7 @@ if test -n "$cf_new_extra_cppflags" ; then fi cat >conftest.$ac_ext <<_ACEOF -#line 6540 "configure" +#line 6664 "configure" #include "confdefs.h" #ifndef CC_HAS_PROTOS @@ -6558,16 +6682,16 @@ main (void) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:6561: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:6685: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:6564: \$? = $ac_status" >&5 + echo "$as_me:6688: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:6567: \"$ac_try\"") >&5 + { (eval echo "$as_me:6691: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:6570: \$? = $ac_status" >&5 + echo "$as_me:6694: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_ansi_cc="$cf_arg"; break else @@ -6580,7 +6704,7 @@ CFLAGS="$cf_save_CFLAGS" CPPFLAGS="$cf_save_CPPFLAGS" fi -echo "$as_me:6583: result: $cf_cv_ansi_cc" >&5 +echo "$as_me:6707: result: $cf_cv_ansi_cc" >&5 echo "${ECHO_T}$cf_cv_ansi_cc" >&6 if test "$cf_cv_ansi_cc" != "no"; then @@ -6694,7 +6818,7 @@ fi fi if test "$cf_cv_ansi_cc" = "no"; then - { { echo "$as_me:6697: error: Your compiler does not appear to recognize prototypes. + { { echo "$as_me:6821: error: Your compiler does not appear to recognize prototypes. You have the following choices: a. adjust your compiler options b. get an up-to-date compiler @@ -6714,7 +6838,7 @@ if test "${enable_largefile+set}" = set; then fi; if test "$enable_largefile" != no; then - echo "$as_me:6717: checking for special C compiler options needed for large files" >&5 + echo "$as_me:6841: checking for special C compiler options needed for large files" >&5 echo $ECHO_N "checking for special C compiler options needed for large files... $ECHO_C" >&6 if test "${ac_cv_sys_largefile_CC+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -6726,7 +6850,7 @@ else # IRIX 6.2 and later do not support large files by default, # so use the C compiler's -n32 option if that helps. cat >conftest.$ac_ext <<_ACEOF -#line 6729 "configure" +#line 6853 "configure" #include "confdefs.h" #include <sys/types.h> /* Check that off_t can represent 2**63 - 1 correctly. @@ -6746,16 +6870,16 @@ main (void) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:6749: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:6873: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:6752: \$? = $ac_status" >&5 + echo "$as_me:6876: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:6755: \"$ac_try\"") >&5 + { (eval echo "$as_me:6879: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:6758: \$? = $ac_status" >&5 + echo "$as_me:6882: \$? = $ac_status" >&5 (exit $ac_status); }; }; then break else @@ -6765,16 +6889,16 @@ fi rm -f conftest.$ac_objext CC="$CC -n32" rm -f conftest.$ac_objext -if { (eval echo "$as_me:6768: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:6892: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:6771: \$? = $ac_status" >&5 + echo "$as_me:6895: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:6774: \"$ac_try\"") >&5 + { (eval echo "$as_me:6898: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:6777: \$? = $ac_status" >&5 + echo "$as_me:6901: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_sys_largefile_CC=' -n32'; break else @@ -6788,13 +6912,13 @@ rm -f conftest.$ac_objext rm -f conftest.$ac_ext fi fi -echo "$as_me:6791: result: $ac_cv_sys_largefile_CC" >&5 +echo "$as_me:6915: result: $ac_cv_sys_largefile_CC" >&5 echo "${ECHO_T}$ac_cv_sys_largefile_CC" >&6 if test "$ac_cv_sys_largefile_CC" != no; then CC=$CC$ac_cv_sys_largefile_CC fi - echo "$as_me:6797: checking for _FILE_OFFSET_BITS value needed for large files" >&5 + echo "$as_me:6921: checking for _FILE_OFFSET_BITS value needed for large files" >&5 echo $ECHO_N "checking for _FILE_OFFSET_BITS value needed for large files... $ECHO_C" >&6 if test "${ac_cv_sys_file_offset_bits+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -6802,7 +6926,7 @@ else while :; do ac_cv_sys_file_offset_bits=no cat >conftest.$ac_ext <<_ACEOF -#line 6805 "configure" +#line 6929 "configure" #include "confdefs.h" #include <sys/types.h> /* Check that off_t can represent 2**63 - 1 correctly. @@ -6822,16 +6946,16 @@ main (void) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:6825: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:6949: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:6828: \$? = $ac_status" >&5 + echo "$as_me:6952: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:6831: \"$ac_try\"") >&5 + { (eval echo "$as_me:6955: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:6834: \$? = $ac_status" >&5 + echo "$as_me:6958: \$? = $ac_status" >&5 (exit $ac_status); }; }; then break else @@ -6840,7 +6964,7 @@ cat conftest.$ac_ext >&5 fi rm -f conftest.$ac_objext conftest.$ac_ext cat >conftest.$ac_ext <<_ACEOF -#line 6843 "configure" +#line 6967 "configure" #include "confdefs.h" #define _FILE_OFFSET_BITS 64 #include <sys/types.h> @@ -6861,16 +6985,16 @@ main (void) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:6864: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:6988: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:6867: \$? = $ac_status" >&5 + echo "$as_me:6991: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:6870: \"$ac_try\"") >&5 + { (eval echo "$as_me:6994: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:6873: \$? = $ac_status" >&5 + echo "$as_me:6997: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_sys_file_offset_bits=64; break else @@ -6881,7 +7005,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext break done fi -echo "$as_me:6884: result: $ac_cv_sys_file_offset_bits" >&5 +echo "$as_me:7008: result: $ac_cv_sys_file_offset_bits" >&5 echo "${ECHO_T}$ac_cv_sys_file_offset_bits" >&6 if test "$ac_cv_sys_file_offset_bits" != no; then @@ -6891,7 +7015,7 @@ EOF fi rm -rf conftest* - echo "$as_me:6894: checking for _LARGE_FILES value needed for large files" >&5 + echo "$as_me:7018: checking for _LARGE_FILES value needed for large files" >&5 echo $ECHO_N "checking for _LARGE_FILES value needed for large files... $ECHO_C" >&6 if test "${ac_cv_sys_large_files+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -6899,7 +7023,7 @@ else while :; do ac_cv_sys_large_files=no cat >conftest.$ac_ext <<_ACEOF -#line 6902 "configure" +#line 7026 "configure" #include "confdefs.h" #include <sys/types.h> /* Check that off_t can represent 2**63 - 1 correctly. @@ -6919,16 +7043,16 @@ main (void) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:6922: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:7046: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:6925: \$? = $ac_status" >&5 + echo "$as_me:7049: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:6928: \"$ac_try\"") >&5 + { (eval echo "$as_me:7052: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:6931: \$? = $ac_status" >&5 + echo "$as_me:7055: \$? = $ac_status" >&5 (exit $ac_status); }; }; then break else @@ -6937,7 +7061,7 @@ cat conftest.$ac_ext >&5 fi rm -f conftest.$ac_objext conftest.$ac_ext cat >conftest.$ac_ext <<_ACEOF -#line 6940 "configure" +#line 7064 "configure" #include "confdefs.h" #define _LARGE_FILES 1 #include <sys/types.h> @@ -6958,16 +7082,16 @@ main (void) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:6961: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:7085: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:6964: \$? = $ac_status" >&5 + echo "$as_me:7088: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:6967: \"$ac_try\"") >&5 + { (eval echo "$as_me:7091: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:6970: \$? = $ac_status" >&5 + echo "$as_me:7094: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_sys_large_files=1; break else @@ -6978,7 +7102,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext break done fi -echo "$as_me:6981: result: $ac_cv_sys_large_files" >&5 +echo "$as_me:7105: result: $ac_cv_sys_large_files" >&5 echo "${ECHO_T}$ac_cv_sys_large_files" >&6 if test "$ac_cv_sys_large_files" != no; then @@ -6991,7 +7115,7 @@ rm -rf conftest* fi if test "$enable_largefile" != no ; then - echo "$as_me:6994: checking for _LARGEFILE_SOURCE value needed for large files" >&5 + echo "$as_me:7118: checking for _LARGEFILE_SOURCE value needed for large files" >&5 echo $ECHO_N "checking for _LARGEFILE_SOURCE value needed for large files... $ECHO_C" >&6 if test "${ac_cv_sys_largefile_source+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -6999,7 +7123,7 @@ else while :; do ac_cv_sys_largefile_source=no cat >conftest.$ac_ext <<_ACEOF -#line 7002 "configure" +#line 7126 "configure" #include "confdefs.h" #include <stdio.h> int @@ -7011,16 +7135,16 @@ return !fseeko; } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:7014: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:7138: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:7017: \$? = $ac_status" >&5 + echo "$as_me:7141: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:7020: \"$ac_try\"") >&5 + { (eval echo "$as_me:7144: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:7023: \$? = $ac_status" >&5 + echo "$as_me:7147: \$? = $ac_status" >&5 (exit $ac_status); }; }; then break else @@ -7029,7 +7153,7 @@ cat conftest.$ac_ext >&5 fi rm -f conftest.$ac_objext conftest.$ac_ext cat >conftest.$ac_ext <<_ACEOF -#line 7032 "configure" +#line 7156 "configure" #include "confdefs.h" #define _LARGEFILE_SOURCE 1 #include <stdio.h> @@ -7042,16 +7166,16 @@ return !fseeko; } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:7045: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:7169: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:7048: \$? = $ac_status" >&5 + echo "$as_me:7172: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:7051: \"$ac_try\"") >&5 + { (eval echo "$as_me:7175: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:7054: \$? = $ac_status" >&5 + echo "$as_me:7178: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_sys_largefile_source=1; break else @@ -7062,7 +7186,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext break done fi -echo "$as_me:7065: result: $ac_cv_sys_largefile_source" >&5 +echo "$as_me:7189: result: $ac_cv_sys_largefile_source" >&5 echo "${ECHO_T}$ac_cv_sys_largefile_source" >&6 if test "$ac_cv_sys_largefile_source" != no; then @@ -7076,13 +7200,13 @@ rm -rf conftest* # We used to try defining _XOPEN_SOURCE=500 too, to work around a bug # in glibc 2.1.3, but that breaks too many other things. # If you want fseeko and ftello with glibc, upgrade to a fixed glibc. -echo "$as_me:7079: checking for fseeko" >&5 +echo "$as_me:7203: checking for fseeko" >&5 echo $ECHO_N "checking for fseeko... $ECHO_C" >&6 if test "${ac_cv_func_fseeko+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 7085 "configure" +#line 7209 "configure" #include "confdefs.h" #include <stdio.h> int @@ -7094,16 +7218,16 @@ return fseeko && fseeko (stdin, 0, 0); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:7097: \"$ac_link\"") >&5 +if { (eval echo "$as_me:7221: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:7100: \$? = $ac_status" >&5 + echo "$as_me:7224: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:7103: \"$ac_try\"") >&5 + { (eval echo "$as_me:7227: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:7106: \$? = $ac_status" >&5 + echo "$as_me:7230: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_fseeko=yes else @@ -7113,7 +7237,7 @@ ac_cv_func_fseeko=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:7116: result: $ac_cv_func_fseeko" >&5 +echo "$as_me:7240: result: $ac_cv_func_fseeko" >&5 echo "${ECHO_T}$ac_cv_func_fseeko" >&6 if test $ac_cv_func_fseeko = yes; then @@ -7152,14 +7276,14 @@ fi fi - echo "$as_me:7155: checking whether to use struct dirent64" >&5 + echo "$as_me:7279: checking whether to use struct dirent64" >&5 echo $ECHO_N "checking whether to use struct dirent64... $ECHO_C" >&6 if test "${cf_cv_struct_dirent64+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 7162 "configure" +#line 7286 "configure" #include "confdefs.h" #pragma GCC diagnostic error "-Wincompatible-pointer-types" @@ -7182,16 +7306,16 @@ main (void) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:7185: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:7309: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:7188: \$? = $ac_status" >&5 + echo "$as_me:7312: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:7191: \"$ac_try\"") >&5 + { (eval echo "$as_me:7315: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:7194: \$? = $ac_status" >&5 + echo "$as_me:7318: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_struct_dirent64=yes else @@ -7202,7 +7326,7 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:7205: result: $cf_cv_struct_dirent64" >&5 +echo "$as_me:7329: result: $cf_cv_struct_dirent64" >&5 echo "${ECHO_T}$cf_cv_struct_dirent64" >&6 test "$cf_cv_struct_dirent64" = yes && cat >>confdefs.h <<\EOF @@ -7214,20 +7338,20 @@ EOF if test -z "$ALL_LINGUAS" ; then ALL_LINGUAS=`test -d $srcdir/po && cd $srcdir/po && echo *.po|sed -e 's/\.po//g' -e 's/*//'` - echo "$as_me:7217: checking for PATH separator" >&5 + echo "$as_me:7341: checking for PATH separator" >&5 echo $ECHO_N "checking for PATH separator... $ECHO_C" >&6 case $cf_cv_system_name in (os2*) PATH_SEPARATOR=';' ;; (*) ${PATH_SEPARATOR:=':'} ;; esac - echo "$as_me:7224: result: $PATH_SEPARATOR" >&5 + echo "$as_me:7348: result: $PATH_SEPARATOR" >&5 echo "${ECHO_T}$PATH_SEPARATOR" >&6 # Extract the first word of "msginit", so it can be a program name with args. set dummy msginit; ac_word=$2 -echo "$as_me:7230: checking for $ac_word" >&5 +echo "$as_me:7354: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_path_MSGINIT+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -7254,17 +7378,17 @@ esac fi MSGINIT="$ac_cv_path_MSGINIT" if test "$MSGINIT" != ":"; then - echo "$as_me:7257: result: $MSGINIT" >&5 + echo "$as_me:7381: result: $MSGINIT" >&5 echo "${ECHO_T}$MSGINIT" >&6 else - echo "$as_me:7260: result: no" >&5 + echo "$as_me:7384: result: no" >&5 echo "${ECHO_T}no" >&6 fi if test "$MSGINIT" != ":" ; then test -n "$verbose" && echo " adding en.po" 1>&6 -echo "${as_me:-configure}:7267: testing adding en.po ..." 1>&5 +echo "${as_me:-configure}:7391: testing adding en.po ..." 1>&5 ALL_LINGUAS="$ALL_LINGUAS en" fi @@ -7273,7 +7397,7 @@ fi if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}ranlib", so it can be a program name with args. set dummy ${ac_tool_prefix}ranlib; ac_word=$2 -echo "$as_me:7276: checking for $ac_word" >&5 +echo "$as_me:7400: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_prog_RANLIB+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -7288,7 +7412,7 @@ for ac_dir in $ac_dummy; do test -z "$ac_dir" && ac_dir=. $as_executable_p "$ac_dir/$ac_word" || continue ac_cv_prog_RANLIB="${ac_tool_prefix}ranlib" -echo "$as_me:7291: found $ac_dir/$ac_word" >&5 +echo "$as_me:7415: found $ac_dir/$ac_word" >&5 break done @@ -7296,10 +7420,10 @@ fi fi RANLIB=$ac_cv_prog_RANLIB if test -n "$RANLIB"; then - echo "$as_me:7299: result: $RANLIB" >&5 + echo "$as_me:7423: result: $RANLIB" >&5 echo "${ECHO_T}$RANLIB" >&6 else - echo "$as_me:7302: result: no" >&5 + echo "$as_me:7426: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -7308,7 +7432,7 @@ if test -z "$ac_cv_prog_RANLIB"; then ac_ct_RANLIB=$RANLIB # Extract the first word of "ranlib", so it can be a program name with args. set dummy ranlib; ac_word=$2 -echo "$as_me:7311: checking for $ac_word" >&5 +echo "$as_me:7435: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_prog_ac_ct_RANLIB+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -7323,7 +7447,7 @@ for ac_dir in $ac_dummy; do test -z "$ac_dir" && ac_dir=. $as_executable_p "$ac_dir/$ac_word" || continue ac_cv_prog_ac_ct_RANLIB="ranlib" -echo "$as_me:7326: found $ac_dir/$ac_word" >&5 +echo "$as_me:7450: found $ac_dir/$ac_word" >&5 break done @@ -7332,10 +7456,10 @@ fi fi ac_ct_RANLIB=$ac_cv_prog_ac_ct_RANLIB if test -n "$ac_ct_RANLIB"; then - echo "$as_me:7335: result: $ac_ct_RANLIB" >&5 + echo "$as_me:7459: result: $ac_ct_RANLIB" >&5 echo "${ECHO_T}$ac_ct_RANLIB" >&6 else - echo "$as_me:7338: result: no" >&5 + echo "$as_me:7462: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -7344,13 +7468,13 @@ else RANLIB="$ac_cv_prog_RANLIB" fi -echo "$as_me:7347: checking for ANSI C header files" >&5 +echo "$as_me:7471: 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 7353 "configure" +#line 7477 "configure" #include "confdefs.h" #include <stdlib.h> #include <stdarg.h> @@ -7358,13 +7482,13 @@ else #include <float.h> _ACEOF -if { (eval echo "$as_me:7361: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:7485: \"$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:7367: \$? = $ac_status" >&5 + echo "$as_me:7491: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -7386,7 +7510,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 7389 "configure" +#line 7513 "configure" #include "confdefs.h" #include <string.h> @@ -7404,7 +7528,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 7407 "configure" +#line 7531 "configure" #include "confdefs.h" #include <stdlib.h> @@ -7425,7 +7549,7 @@ if test $ac_cv_header_stdc = yes; then : else cat >conftest.$ac_ext <<_ACEOF -#line 7428 "configure" +#line 7552 "configure" #include "confdefs.h" #include <ctype.h> #if ((' ' & 0x0FF) == 0x020) @@ -7451,15 +7575,15 @@ main (void) } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:7454: \"$ac_link\"") >&5 +if { (eval echo "$as_me:7578: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:7457: \$? = $ac_status" >&5 + echo "$as_me:7581: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:7459: \"$ac_try\"") >&5 + { (eval echo "$as_me:7583: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:7462: \$? = $ac_status" >&5 + echo "$as_me:7586: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -7472,7 +7596,7 @@ rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext fi fi fi -echo "$as_me:7475: result: $ac_cv_header_stdc" >&5 +echo "$as_me:7599: result: $ac_cv_header_stdc" >&5 echo "${ECHO_T}$ac_cv_header_stdc" >&6 if test $ac_cv_header_stdc = yes; then @@ -7482,7 +7606,7 @@ EOF fi -echo "$as_me:7485: checking for inline" >&5 +echo "$as_me:7609: checking for inline" >&5 echo $ECHO_N "checking for inline... $ECHO_C" >&6 if test "${ac_cv_c_inline+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -7490,7 +7614,7 @@ else ac_cv_c_inline=no for ac_kw in inline __inline__ __inline; do cat >conftest.$ac_ext <<_ACEOF -#line 7493 "configure" +#line 7617 "configure" #include "confdefs.h" #ifndef __cplusplus static $ac_kw int static_foo () {return 0; } @@ -7499,16 +7623,16 @@ $ac_kw int foo () {return 0; } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:7502: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:7626: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:7505: \$? = $ac_status" >&5 + echo "$as_me:7629: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:7508: \"$ac_try\"") >&5 + { (eval echo "$as_me:7632: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:7511: \$? = $ac_status" >&5 + echo "$as_me:7635: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_c_inline=$ac_kw; break else @@ -7519,7 +7643,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext done fi -echo "$as_me:7522: result: $ac_cv_c_inline" >&5 +echo "$as_me:7646: result: $ac_cv_c_inline" >&5 echo "${ECHO_T}$ac_cv_c_inline" >&6 case $ac_cv_c_inline in inline | yes) ;; @@ -7540,28 +7664,28 @@ for ac_header in sys/types.h sys/stat.h stdlib.h string.h memory.h strings.h \ inttypes.h stdint.h unistd.h do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` -echo "$as_me:7543: checking for $ac_header" >&5 +echo "$as_me:7667: 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 7549 "configure" +#line 7673 "configure" #include "confdefs.h" $ac_includes_default #include <$ac_header> _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:7555: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:7679: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:7558: \$? = $ac_status" >&5 + echo "$as_me:7682: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:7561: \"$ac_try\"") >&5 + { (eval echo "$as_me:7685: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:7564: \$? = $ac_status" >&5 + echo "$as_me:7688: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_Header=yes" else @@ -7571,7 +7695,7 @@ eval "$as_ac_Header=no" fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:7574: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:7698: 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 @@ -7581,13 +7705,13 @@ EOF fi done -echo "$as_me:7584: checking for off_t" >&5 +echo "$as_me:7708: 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 7590 "configure" +#line 7714 "configure" #include "confdefs.h" $ac_includes_default int @@ -7602,16 +7726,16 @@ if (sizeof (off_t)) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:7605: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:7729: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:7608: \$? = $ac_status" >&5 + echo "$as_me:7732: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:7611: \"$ac_try\"") >&5 + { (eval echo "$as_me:7735: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:7614: \$? = $ac_status" >&5 + echo "$as_me:7738: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_type_off_t=yes else @@ -7621,7 +7745,7 @@ ac_cv_type_off_t=no fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:7624: result: $ac_cv_type_off_t" >&5 +echo "$as_me:7748: 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 : @@ -7633,13 +7757,13 @@ EOF fi -echo "$as_me:7636: checking for size_t" >&5 +echo "$as_me:7760: checking for size_t" >&5 echo $ECHO_N "checking for size_t... $ECHO_C" >&6 if test "${ac_cv_type_size_t+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 7642 "configure" +#line 7766 "configure" #include "confdefs.h" $ac_includes_default int @@ -7654,16 +7778,16 @@ if (sizeof (size_t)) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:7657: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:7781: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:7660: \$? = $ac_status" >&5 + echo "$as_me:7784: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:7663: \"$ac_try\"") >&5 + { (eval echo "$as_me:7787: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:7666: \$? = $ac_status" >&5 + echo "$as_me:7790: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_type_size_t=yes else @@ -7673,7 +7797,7 @@ ac_cv_type_size_t=no fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:7676: result: $ac_cv_type_size_t" >&5 +echo "$as_me:7800: result: $ac_cv_type_size_t" >&5 echo "${ECHO_T}$ac_cv_type_size_t" >&6 if test $ac_cv_type_size_t = yes; then : @@ -7687,13 +7811,13 @@ fi # The Ultrix 4.2 mips builtin alloca declared by alloca.h only works # for constant arguments. Useless! -echo "$as_me:7690: checking for working alloca.h" >&5 +echo "$as_me:7814: 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 7696 "configure" +#line 7820 "configure" #include "confdefs.h" #include <alloca.h> int @@ -7705,16 +7829,16 @@ char *p = (char *) alloca (2 * sizeof (int)); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:7708: \"$ac_link\"") >&5 +if { (eval echo "$as_me:7832: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:7711: \$? = $ac_status" >&5 + echo "$as_me:7835: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:7714: \"$ac_try\"") >&5 + { (eval echo "$as_me:7838: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:7717: \$? = $ac_status" >&5 + echo "$as_me:7841: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_working_alloca_h=yes else @@ -7724,7 +7848,7 @@ ac_cv_working_alloca_h=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:7727: result: $ac_cv_working_alloca_h" >&5 +echo "$as_me:7851: 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 @@ -7734,13 +7858,13 @@ EOF fi -echo "$as_me:7737: checking for alloca" >&5 +echo "$as_me:7861: 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 7743 "configure" +#line 7867 "configure" #include "confdefs.h" #ifdef __GNUC__ # define alloca __builtin_alloca @@ -7772,16 +7896,16 @@ char *p = (char *) alloca (1); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:7775: \"$ac_link\"") >&5 +if { (eval echo "$as_me:7899: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:7778: \$? = $ac_status" >&5 + echo "$as_me:7902: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:7781: \"$ac_try\"") >&5 + { (eval echo "$as_me:7905: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:7784: \$? = $ac_status" >&5 + echo "$as_me:7908: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_alloca_works=yes else @@ -7791,7 +7915,7 @@ ac_cv_func_alloca_works=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:7794: result: $ac_cv_func_alloca_works" >&5 +echo "$as_me:7918: 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 @@ -7812,13 +7936,13 @@ cat >>confdefs.h <<\EOF #define C_ALLOCA 1 EOF -echo "$as_me:7815: checking whether \`alloca.c' needs Cray hooks" >&5 +echo "$as_me:7939: 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 7821 "configure" +#line 7945 "configure" #include "confdefs.h" #if defined(CRAY) && ! defined(CRAY2) webecray @@ -7836,18 +7960,18 @@ fi rm -rf conftest* fi -echo "$as_me:7839: result: $ac_cv_os_cray" >&5 +echo "$as_me:7963: 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:7844: checking for $ac_func" >&5 +echo "$as_me:7968: 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 7850 "configure" +#line 7974 "configure" #include "confdefs.h" #define $ac_func autoconf_temporary #include <limits.h> /* least-intrusive standard header which defines gcc2 __stub macros */ @@ -7878,16 +8002,16 @@ main (void) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:7881: \"$ac_link\"") >&5 +if { (eval echo "$as_me:8005: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:7884: \$? = $ac_status" >&5 + echo "$as_me:8008: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:7887: \"$ac_try\"") >&5 + { (eval echo "$as_me:8011: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:7890: \$? = $ac_status" >&5 + echo "$as_me:8014: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else @@ -7897,7 +8021,7 @@ eval "$as_ac_var=no" fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:7900: result: `eval echo '${'$as_ac_var'}'`" >&5 +echo "$as_me:8024: 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 @@ -7911,7 +8035,7 @@ fi done fi -echo "$as_me:7914: checking stack direction for C alloca" >&5 +echo "$as_me:8038: 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 @@ -7920,7 +8044,7 @@ else ac_cv_c_stack_direction=0 else cat >conftest.$ac_ext <<_ACEOF -#line 7923 "configure" +#line 8047 "configure" #include "confdefs.h" int find_stack_direction (void) @@ -7943,15 +8067,15 @@ main (void) } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:7946: \"$ac_link\"") >&5 +if { (eval echo "$as_me:8070: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:7949: \$? = $ac_status" >&5 + echo "$as_me:8073: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:7951: \"$ac_try\"") >&5 + { (eval echo "$as_me:8075: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:7954: \$? = $ac_status" >&5 + echo "$as_me:8078: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_c_stack_direction=1 else @@ -7963,7 +8087,7 @@ fi rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext fi fi -echo "$as_me:7966: result: $ac_cv_c_stack_direction" >&5 +echo "$as_me:8090: result: $ac_cv_c_stack_direction" >&5 echo "${ECHO_T}$ac_cv_c_stack_direction" >&6 cat >>confdefs.h <<EOF @@ -7975,23 +8099,23 @@ fi for ac_header in stdlib.h unistd.h do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` -echo "$as_me:7978: checking for $ac_header" >&5 +echo "$as_me:8102: 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 7984 "configure" +#line 8108 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:7988: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:8112: \"$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:7994: \$? = $ac_status" >&5 + echo "$as_me:8118: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -8010,7 +8134,7 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:8013: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:8137: 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 @@ -8023,13 +8147,13 @@ done for ac_func in getpagesize do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` -echo "$as_me:8026: checking for $ac_func" >&5 +echo "$as_me:8150: 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 8032 "configure" +#line 8156 "configure" #include "confdefs.h" #define $ac_func autoconf_temporary #include <limits.h> /* least-intrusive standard header which defines gcc2 __stub macros */ @@ -8060,16 +8184,16 @@ main (void) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:8063: \"$ac_link\"") >&5 +if { (eval echo "$as_me:8187: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:8066: \$? = $ac_status" >&5 + echo "$as_me:8190: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:8069: \"$ac_try\"") >&5 + { (eval echo "$as_me:8193: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:8072: \$? = $ac_status" >&5 + echo "$as_me:8196: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else @@ -8079,7 +8203,7 @@ eval "$as_ac_var=no" fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:8082: result: `eval echo '${'$as_ac_var'}'`" >&5 +echo "$as_me:8206: 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 @@ -8089,7 +8213,7 @@ EOF fi done -echo "$as_me:8092: checking for working mmap" >&5 +echo "$as_me:8216: checking for working mmap" >&5 echo $ECHO_N "checking for working mmap... $ECHO_C" >&6 if test "${ac_cv_func_mmap_fixed_mapped+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -8098,7 +8222,7 @@ else ac_cv_func_mmap_fixed_mapped=no else cat >conftest.$ac_ext <<_ACEOF -#line 8101 "configure" +#line 8225 "configure" #include "confdefs.h" $ac_includes_default /* Thanks to Mike Haertel and Jim Avera for this test. @@ -8225,15 +8349,15 @@ main (void) } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:8228: \"$ac_link\"") >&5 +if { (eval echo "$as_me:8352: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:8231: \$? = $ac_status" >&5 + echo "$as_me:8355: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:8233: \"$ac_try\"") >&5 + { (eval echo "$as_me:8357: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:8236: \$? = $ac_status" >&5 + echo "$as_me:8360: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_mmap_fixed_mapped=yes else @@ -8245,7 +8369,7 @@ fi rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext fi fi -echo "$as_me:8248: result: $ac_cv_func_mmap_fixed_mapped" >&5 +echo "$as_me:8372: result: $ac_cv_func_mmap_fixed_mapped" >&5 echo "${ECHO_T}$ac_cv_func_mmap_fixed_mapped" >&6 if test $ac_cv_func_mmap_fixed_mapped = yes; then @@ -8256,13 +8380,13 @@ EOF fi rm -f conftest.mmap -echo "$as_me:8259: checking whether we are using the GNU C Library 2.1 or newer" >&5 +echo "$as_me:8383: checking whether we are using the GNU C Library 2.1 or newer" >&5 echo $ECHO_N "checking whether we are using the GNU C Library 2.1 or newer... $ECHO_C" >&6 if test "${ac_cv_gnu_library_2_1+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 8265 "configure" +#line 8389 "configure" #include "confdefs.h" #include <features.h> @@ -8282,7 +8406,7 @@ fi rm -rf conftest* fi -echo "$as_me:8285: result: $ac_cv_gnu_library_2_1" >&5 +echo "$as_me:8409: result: $ac_cv_gnu_library_2_1" >&5 echo "${ECHO_T}$ac_cv_gnu_library_2_1" >&6 GLIBC21="$ac_cv_gnu_library_2_1" @@ -8295,7 +8419,7 @@ test -z "$ALL_LINGUAS" && ALL_LINGUAS=`test -d $srcdir/po && cd $srcdir/po && ec : ${CONFIG_H:=config.h} if test -z "$PACKAGE" ; then - { { echo "$as_me:8298: error: CF_BUNDLED_INTL used without setting PACKAGE variable" >&5 + { { echo "$as_me:8422: error: CF_BUNDLED_INTL used without setting PACKAGE variable" >&5 echo "$as_me: error: CF_BUNDLED_INTL used without setting PACKAGE variable" >&2;} { (exit 1); exit 1; }; } fi @@ -8312,23 +8436,23 @@ for ac_header in argz.h limits.h locale.h nl_types.h malloc.h stddef.h \ stdlib.h string.h unistd.h sys/param.h do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` -echo "$as_me:8315: checking for $ac_header" >&5 +echo "$as_me:8439: 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 8321 "configure" +#line 8445 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:8325: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:8449: \"$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:8331: \$? = $ac_status" >&5 + echo "$as_me:8455: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -8347,7 +8471,7 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:8350: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:8474: 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 @@ -8362,13 +8486,13 @@ getgid getuid mempcpy munmap putenv setenv setlocale stpcpy strchr strcasecmp \ strdup strtoul tsearch __argz_count __argz_stringify __argz_next do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` -echo "$as_me:8365: checking for $ac_func" >&5 +echo "$as_me:8489: 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 8371 "configure" +#line 8495 "configure" #include "confdefs.h" #define $ac_func autoconf_temporary #include <limits.h> /* least-intrusive standard header which defines gcc2 __stub macros */ @@ -8399,16 +8523,16 @@ main (void) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:8402: \"$ac_link\"") >&5 +if { (eval echo "$as_me:8526: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:8405: \$? = $ac_status" >&5 + echo "$as_me:8529: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:8408: \"$ac_try\"") >&5 + { (eval echo "$as_me:8532: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:8411: \$? = $ac_status" >&5 + echo "$as_me:8535: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else @@ -8418,7 +8542,7 @@ eval "$as_ac_var=no" fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:8421: result: `eval echo '${'$as_ac_var'}'`" >&5 +echo "$as_me:8545: 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 @@ -8469,7 +8593,7 @@ if test -n "$cf_searchpath/include" ; then CPPFLAGS="${CPPFLAGS}-I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 8472 "configure" +#line 8596 "configure" #include "confdefs.h" #include <stdio.h> int @@ -8481,16 +8605,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:8484: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:8608: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:8487: \$? = $ac_status" >&5 + echo "$as_me:8611: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:8490: \"$ac_try\"") >&5 + { (eval echo "$as_me:8614: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:8493: \$? = $ac_status" >&5 + echo "$as_me:8617: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -8507,7 +8631,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}:8510: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:8634: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -8553,7 +8677,7 @@ if test -n "$cf_searchpath/../include" ; then CPPFLAGS="${CPPFLAGS}-I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 8556 "configure" +#line 8680 "configure" #include "confdefs.h" #include <stdio.h> int @@ -8565,16 +8689,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:8568: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:8692: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:8571: \$? = $ac_status" >&5 + echo "$as_me:8695: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:8574: \"$ac_try\"") >&5 + { (eval echo "$as_me:8698: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:8577: \$? = $ac_status" >&5 + echo "$as_me:8701: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -8591,7 +8715,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}:8594: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:8718: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -8609,7 +8733,7 @@ echo "${as_me:-configure}:8594: testing adding $cf_add_incdir to include-path .. fi else -{ { echo "$as_me:8612: error: cannot find libiconv under $withval" >&5 +{ { echo "$as_me:8736: error: cannot find libiconv under $withval" >&5 echo "$as_me: error: cannot find libiconv under $withval" >&2;} { (exit 1); exit 1; }; } fi @@ -8634,7 +8758,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}:8637: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:8761: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -8663,7 +8787,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}:8666: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:8790: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -8672,7 +8796,7 @@ echo "${as_me:-configure}:8666: testing adding $cf_add_libdir to library-path .. fi else -{ { echo "$as_me:8675: error: cannot find libiconv under $withval" >&5 +{ { echo "$as_me:8799: error: cannot find libiconv under $withval" >&5 echo "$as_me: error: cannot find libiconv under $withval" >&2;} { (exit 1); exit 1; }; } fi @@ -8683,7 +8807,7 @@ esac fi; - echo "$as_me:8686: checking for iconv" >&5 + echo "$as_me:8810: 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 @@ -8694,12 +8818,12 @@ else cf_cv_header_path_iconv= cf_cv_library_path_iconv= -echo "${as_me:-configure}:8697: testing Starting FIND_LINKAGE(iconv,) ..." 1>&5 +echo "${as_me:-configure}:8821: testing Starting FIND_LINKAGE(iconv,) ..." 1>&5 cf_save_LIBS="$LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 8702 "configure" +#line 8826 "configure" #include "confdefs.h" #include <stdlib.h> @@ -8718,16 +8842,16 @@ main (void) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:8721: \"$ac_link\"") >&5 +if { (eval echo "$as_me:8845: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:8724: \$? = $ac_status" >&5 + echo "$as_me:8848: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:8727: \"$ac_try\"") >&5 + { (eval echo "$as_me:8851: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:8730: \$? = $ac_status" >&5 + echo "$as_me:8854: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_find_linkage_iconv=yes @@ -8741,7 +8865,7 @@ cat conftest.$ac_ext >&5 LIBS="-liconv $cf_save_LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 8744 "configure" +#line 8868 "configure" #include "confdefs.h" #include <stdlib.h> @@ -8760,16 +8884,16 @@ main (void) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:8763: \"$ac_link\"") >&5 +if { (eval echo "$as_me:8887: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:8766: \$? = $ac_status" >&5 + echo "$as_me:8890: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:8769: \"$ac_try\"") >&5 + { (eval echo "$as_me:8893: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:8772: \$? = $ac_status" >&5 + echo "$as_me:8896: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_find_linkage_iconv=yes @@ -8786,9 +8910,9 @@ cat conftest.$ac_ext >&5 test -n "$verbose" && echo " find linkage for iconv library" 1>&6 -echo "${as_me:-configure}:8789: testing find linkage for iconv library ..." 1>&5 +echo "${as_me:-configure}:8913: testing find linkage for iconv library ..." 1>&5 -echo "${as_me:-configure}:8791: testing Searching for headers in FIND_LINKAGE(iconv,) ..." 1>&5 +echo "${as_me:-configure}:8915: testing Searching for headers in FIND_LINKAGE(iconv,) ..." 1>&5 cf_save_CPPFLAGS="$CPPFLAGS" cf_test_CPPFLAGS="$CPPFLAGS" @@ -8879,7 +9003,7 @@ cf_search="$cf_search $cf_header_path_list" if test -d $cf_cv_header_path_iconv ; then test -n "$verbose" && echo " ... testing $cf_cv_header_path_iconv" 1>&6 -echo "${as_me:-configure}:8882: testing ... testing $cf_cv_header_path_iconv ..." 1>&5 +echo "${as_me:-configure}:9006: testing ... testing $cf_cv_header_path_iconv ..." 1>&5 CPPFLAGS="$cf_save_CPPFLAGS" @@ -8887,7 +9011,7 @@ echo "${as_me:-configure}:8882: testing ... testing $cf_cv_header_path_iconv ... CPPFLAGS="${CPPFLAGS}-I$cf_cv_header_path_iconv" cat >conftest.$ac_ext <<_ACEOF -#line 8890 "configure" +#line 9014 "configure" #include "confdefs.h" #include <stdlib.h> @@ -8906,21 +9030,21 @@ main (void) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:8909: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:9033: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:8912: \$? = $ac_status" >&5 + echo "$as_me:9036: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:8915: \"$ac_try\"") >&5 + { (eval echo "$as_me:9039: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:8918: \$? = $ac_status" >&5 + echo "$as_me:9042: \$? = $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}:8923: testing ... found iconv headers in $cf_cv_header_path_iconv ..." 1>&5 +echo "${as_me:-configure}:9047: testing ... found iconv headers in $cf_cv_header_path_iconv ..." 1>&5 cf_cv_find_linkage_iconv=maybe cf_test_CPPFLAGS="$CPPFLAGS" @@ -8938,7 +9062,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "$cf_cv_find_linkage_iconv" = maybe ; then -echo "${as_me:-configure}:8941: testing Searching for iconv library in FIND_LINKAGE(iconv,) ..." 1>&5 +echo "${as_me:-configure}:9065: testing Searching for iconv library in FIND_LINKAGE(iconv,) ..." 1>&5 cf_save_LIBS="$LIBS" cf_save_LDFLAGS="$LDFLAGS" @@ -9013,13 +9137,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}:9016: testing ... testing $cf_cv_library_path_iconv ..." 1>&5 +echo "${as_me:-configure}:9140: 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 9022 "configure" +#line 9146 "configure" #include "confdefs.h" #include <stdlib.h> @@ -9038,21 +9162,21 @@ main (void) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:9041: \"$ac_link\"") >&5 +if { (eval echo "$as_me:9165: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:9044: \$? = $ac_status" >&5 + echo "$as_me:9168: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:9047: \"$ac_try\"") >&5 + { (eval echo "$as_me:9171: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:9050: \$? = $ac_status" >&5 + echo "$as_me:9174: \$? = $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}:9055: testing ... found iconv library in $cf_cv_library_path_iconv ..." 1>&5 +echo "${as_me:-configure}:9179: testing ... found iconv library in $cf_cv_library_path_iconv ..." 1>&5 cf_cv_find_linkage_iconv=yes cf_cv_library_file_iconv="-liconv" @@ -9092,7 +9216,7 @@ am_cv_func_iconv="no, consider installing GNU libiconv" fi fi -echo "$as_me:9095: result: $am_cv_func_iconv" >&5 +echo "$as_me:9219: result: $am_cv_func_iconv" >&5 echo "${ECHO_T}$am_cv_func_iconv" >&6 if test "$am_cv_func_iconv" = yes; then @@ -9101,14 +9225,14 @@ cat >>confdefs.h <<\EOF #define HAVE_ICONV 1 EOF - echo "$as_me:9104: checking if the declaration of iconv() needs const." >&5 + echo "$as_me:9228: 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 9111 "configure" +#line 9235 "configure" #include "confdefs.h" #include <stdlib.h> @@ -9133,16 +9257,16 @@ main (void) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:9136: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:9260: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:9139: \$? = $ac_status" >&5 + echo "$as_me:9263: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:9142: \"$ac_try\"") >&5 + { (eval echo "$as_me:9266: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:9145: \$? = $ac_status" >&5 + echo "$as_me:9269: \$? = $ac_status" >&5 (exit $ac_status); }; }; then am_cv_proto_iconv_const=no else @@ -9152,7 +9276,7 @@ am_cv_proto_iconv_const=yes fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:9155: result: $am_cv_proto_iconv_const" >&5 +echo "$as_me:9279: 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 @@ -9197,7 +9321,7 @@ if test -n "$cf_cv_header_path_iconv" ; then CPPFLAGS="${CPPFLAGS}-I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 9200 "configure" +#line 9324 "configure" #include "confdefs.h" #include <stdio.h> int @@ -9209,16 +9333,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:9212: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:9336: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:9215: \$? = $ac_status" >&5 + echo "$as_me:9339: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:9218: \"$ac_try\"") >&5 + { (eval echo "$as_me:9342: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:9221: \$? = $ac_status" >&5 + echo "$as_me:9345: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -9235,7 +9359,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}:9238: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:9362: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -9274,7 +9398,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}:9277: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:9401: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -9285,13 +9409,13 @@ fi fi fi -echo "$as_me:9288: checking for nl_langinfo and CODESET" >&5 +echo "$as_me:9412: checking for nl_langinfo and CODESET" >&5 echo $ECHO_N "checking for nl_langinfo and CODESET... $ECHO_C" >&6 if test "${am_cv_langinfo_codeset+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 9294 "configure" +#line 9418 "configure" #include "confdefs.h" #include <langinfo.h> int @@ -9303,16 +9427,16 @@ char* cs = nl_langinfo(CODESET); (void)cs } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:9306: \"$ac_link\"") >&5 +if { (eval echo "$as_me:9430: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:9309: \$? = $ac_status" >&5 + echo "$as_me:9433: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:9312: \"$ac_try\"") >&5 + { (eval echo "$as_me:9436: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:9315: \$? = $ac_status" >&5 + echo "$as_me:9439: \$? = $ac_status" >&5 (exit $ac_status); }; }; then am_cv_langinfo_codeset=yes else @@ -9323,7 +9447,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:9326: result: $am_cv_langinfo_codeset" >&5 +echo "$as_me:9450: result: $am_cv_langinfo_codeset" >&5 echo "${ECHO_T}$am_cv_langinfo_codeset" >&6 if test $am_cv_langinfo_codeset = yes; then @@ -9334,13 +9458,13 @@ EOF fi if test $ac_cv_header_locale_h = yes; then - echo "$as_me:9337: checking for LC_MESSAGES" >&5 + echo "$as_me:9461: checking for LC_MESSAGES" >&5 echo $ECHO_N "checking for LC_MESSAGES... $ECHO_C" >&6 if test "${am_cv_val_LC_MESSAGES+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 9343 "configure" +#line 9467 "configure" #include "confdefs.h" #include <locale.h> int @@ -9352,16 +9476,16 @@ return LC_MESSAGES } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:9355: \"$ac_link\"") >&5 +if { (eval echo "$as_me:9479: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:9358: \$? = $ac_status" >&5 + echo "$as_me:9482: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:9361: \"$ac_try\"") >&5 + { (eval echo "$as_me:9485: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:9364: \$? = $ac_status" >&5 + echo "$as_me:9488: \$? = $ac_status" >&5 (exit $ac_status); }; }; then am_cv_val_LC_MESSAGES=yes else @@ -9371,7 +9495,7 @@ am_cv_val_LC_MESSAGES=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:9374: result: $am_cv_val_LC_MESSAGES" >&5 +echo "$as_me:9498: result: $am_cv_val_LC_MESSAGES" >&5 echo "${ECHO_T}$am_cv_val_LC_MESSAGES" >&6 if test $am_cv_val_LC_MESSAGES = yes; then @@ -9381,7 +9505,7 @@ EOF fi fi - echo "$as_me:9384: checking whether NLS is requested" >&5 + echo "$as_me:9508: checking whether NLS is requested" >&5 echo $ECHO_N "checking whether NLS is requested... $ECHO_C" >&6 # Check whether --enable-nls or --disable-nls was given. @@ -9391,7 +9515,7 @@ if test "${enable_nls+set}" = set; then else USE_NLS=no fi; - echo "$as_me:9394: result: $USE_NLS" >&5 + echo "$as_me:9518: result: $USE_NLS" >&5 echo "${ECHO_T}$USE_NLS" >&6 BUILD_INCLUDED_LIBINTL=no @@ -9405,7 +9529,7 @@ cat >>confdefs.h <<\EOF #define ENABLE_NLS 1 EOF - echo "$as_me:9408: checking whether included gettext is requested" >&5 + echo "$as_me:9532: checking whether included gettext is requested" >&5 echo $ECHO_N "checking whether included gettext is requested... $ECHO_C" >&6 # Check whether --with-included-gettext or --without-included-gettext was given. @@ -9415,7 +9539,7 @@ if test "${with_included_gettext+set}" = set; then else nls_cv_force_use_gnu_gettext=no fi; - echo "$as_me:9418: result: $nls_cv_force_use_gnu_gettext" >&5 + echo "$as_me:9542: result: $nls_cv_force_use_gnu_gettext" >&5 echo "${ECHO_T}$nls_cv_force_use_gnu_gettext" >&6 nls_cv_use_gnu_gettext="$nls_cv_force_use_gnu_gettext" @@ -9428,7 +9552,7 @@ echo "${ECHO_T}$nls_cv_force_use_gnu_gettext" >&6 # Extract the first word of "msgfmt", so it can be a program name with args. set dummy msgfmt; ac_word=$2 -echo "$as_me:9431: checking for $ac_word" >&5 +echo "$as_me:9555: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_path_MSGFMT+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -9455,16 +9579,16 @@ esac fi MSGFMT="$ac_cv_path_MSGFMT" if test "$MSGFMT" != ":"; then - echo "$as_me:9458: result: $MSGFMT" >&5 + echo "$as_me:9582: result: $MSGFMT" >&5 echo "${ECHO_T}$MSGFMT" >&6 else - echo "$as_me:9461: result: no" >&5 + echo "$as_me:9585: result: no" >&5 echo "${ECHO_T}no" >&6 fi # Extract the first word of "gmsgfmt", so it can be a program name with args. set dummy gmsgfmt; ac_word=$2 -echo "$as_me:9467: checking for $ac_word" >&5 +echo "$as_me:9591: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_path_GMSGFMT+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -9481,7 +9605,7 @@ for ac_dir in $ac_dummy; do test -z "$ac_dir" && ac_dir=. if $as_executable_p "$ac_dir/$ac_word"; then ac_cv_path_GMSGFMT="$ac_dir/$ac_word" - echo "$as_me:9484: found $ac_dir/$ac_word" >&5 + echo "$as_me:9608: found $ac_dir/$ac_word" >&5 break fi done @@ -9493,17 +9617,17 @@ fi GMSGFMT=$ac_cv_path_GMSGFMT if test -n "$GMSGFMT"; then - echo "$as_me:9496: result: $GMSGFMT" >&5 + echo "$as_me:9620: result: $GMSGFMT" >&5 echo "${ECHO_T}$GMSGFMT" >&6 else - echo "$as_me:9499: result: no" >&5 + echo "$as_me:9623: result: no" >&5 echo "${ECHO_T}no" >&6 fi # Extract the first word of "xgettext", so it can be a program name with args. set dummy xgettext; ac_word=$2 -echo "$as_me:9506: checking for $ac_word" >&5 +echo "$as_me:9630: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_path_XGETTEXT+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -9530,10 +9654,10 @@ esac fi XGETTEXT="$ac_cv_path_XGETTEXT" if test "$XGETTEXT" != ":"; then - echo "$as_me:9533: result: $XGETTEXT" >&5 + echo "$as_me:9657: result: $XGETTEXT" >&5 echo "${ECHO_T}$XGETTEXT" >&6 else - echo "$as_me:9536: result: no" >&5 + echo "$as_me:9660: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -9664,12 +9788,12 @@ LIBS="$cf_add_libs" cf_cv_header_path_intl= cf_cv_library_path_intl= -echo "${as_me:-configure}:9667: testing Starting FIND_LINKAGE(intl,) ..." 1>&5 +echo "${as_me:-configure}:9791: testing Starting FIND_LINKAGE(intl,) ..." 1>&5 cf_save_LIBS="$LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 9672 "configure" +#line 9796 "configure" #include "confdefs.h" #include <libintl.h> @@ -9691,16 +9815,16 @@ main (void) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:9694: \"$ac_link\"") >&5 +if { (eval echo "$as_me:9818: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:9697: \$? = $ac_status" >&5 + echo "$as_me:9821: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:9700: \"$ac_try\"") >&5 + { (eval echo "$as_me:9824: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:9703: \$? = $ac_status" >&5 + echo "$as_me:9827: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_find_linkage_intl=yes @@ -9714,7 +9838,7 @@ cat conftest.$ac_ext >&5 LIBS="-lintl $cf_save_LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 9717 "configure" +#line 9841 "configure" #include "confdefs.h" #include <libintl.h> @@ -9736,16 +9860,16 @@ main (void) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:9739: \"$ac_link\"") >&5 +if { (eval echo "$as_me:9863: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:9742: \$? = $ac_status" >&5 + echo "$as_me:9866: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:9745: \"$ac_try\"") >&5 + { (eval echo "$as_me:9869: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:9748: \$? = $ac_status" >&5 + echo "$as_me:9872: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_find_linkage_intl=yes @@ -9762,9 +9886,9 @@ cat conftest.$ac_ext >&5 test -n "$verbose" && echo " find linkage for intl library" 1>&6 -echo "${as_me:-configure}:9765: testing find linkage for intl library ..." 1>&5 +echo "${as_me:-configure}:9889: testing find linkage for intl library ..." 1>&5 -echo "${as_me:-configure}:9767: testing Searching for headers in FIND_LINKAGE(intl,) ..." 1>&5 +echo "${as_me:-configure}:9891: testing Searching for headers in FIND_LINKAGE(intl,) ..." 1>&5 cf_save_CPPFLAGS="$CPPFLAGS" cf_test_CPPFLAGS="$CPPFLAGS" @@ -9855,7 +9979,7 @@ cf_search="$cf_search $cf_header_path_list" if test -d $cf_cv_header_path_intl ; then test -n "$verbose" && echo " ... testing $cf_cv_header_path_intl" 1>&6 -echo "${as_me:-configure}:9858: testing ... testing $cf_cv_header_path_intl ..." 1>&5 +echo "${as_me:-configure}:9982: testing ... testing $cf_cv_header_path_intl ..." 1>&5 CPPFLAGS="$cf_save_CPPFLAGS" @@ -9863,7 +9987,7 @@ echo "${as_me:-configure}:9858: testing ... testing $cf_cv_header_path_intl ..." CPPFLAGS="${CPPFLAGS}-I$cf_cv_header_path_intl" cat >conftest.$ac_ext <<_ACEOF -#line 9866 "configure" +#line 9990 "configure" #include "confdefs.h" #include <libintl.h> @@ -9885,21 +10009,21 @@ main (void) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:9888: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:10012: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:9891: \$? = $ac_status" >&5 + echo "$as_me:10015: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:9894: \"$ac_try\"") >&5 + { (eval echo "$as_me:10018: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:9897: \$? = $ac_status" >&5 + echo "$as_me:10021: \$? = $ac_status" >&5 (exit $ac_status); }; }; then test -n "$verbose" && echo " ... found intl headers in $cf_cv_header_path_intl" 1>&6 -echo "${as_me:-configure}:9902: testing ... found intl headers in $cf_cv_header_path_intl ..." 1>&5 +echo "${as_me:-configure}:10026: testing ... found intl headers in $cf_cv_header_path_intl ..." 1>&5 cf_cv_find_linkage_intl=maybe cf_test_CPPFLAGS="$CPPFLAGS" @@ -9917,7 +10041,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "$cf_cv_find_linkage_intl" = maybe ; then -echo "${as_me:-configure}:9920: testing Searching for intl library in FIND_LINKAGE(intl,) ..." 1>&5 +echo "${as_me:-configure}:10044: testing Searching for intl library in FIND_LINKAGE(intl,) ..." 1>&5 cf_save_LIBS="$LIBS" cf_save_LDFLAGS="$LDFLAGS" @@ -9992,13 +10116,13 @@ cf_search="$cf_library_path_list $cf_search" if test -d $cf_cv_library_path_intl ; then test -n "$verbose" && echo " ... testing $cf_cv_library_path_intl" 1>&6 -echo "${as_me:-configure}:9995: testing ... testing $cf_cv_library_path_intl ..." 1>&5 +echo "${as_me:-configure}:10119: testing ... testing $cf_cv_library_path_intl ..." 1>&5 CPPFLAGS="$cf_test_CPPFLAGS" LIBS="-lintl $cf_save_LIBS" LDFLAGS="$cf_save_LDFLAGS -L$cf_cv_library_path_intl" cat >conftest.$ac_ext <<_ACEOF -#line 10001 "configure" +#line 10125 "configure" #include "confdefs.h" #include <libintl.h> @@ -10020,21 +10144,21 @@ main (void) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:10023: \"$ac_link\"") >&5 +if { (eval echo "$as_me:10147: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:10026: \$? = $ac_status" >&5 + echo "$as_me:10150: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:10029: \"$ac_try\"") >&5 + { (eval echo "$as_me:10153: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:10032: \$? = $ac_status" >&5 + echo "$as_me:10156: \$? = $ac_status" >&5 (exit $ac_status); }; }; then test -n "$verbose" && echo " ... found intl library in $cf_cv_library_path_intl" 1>&6 -echo "${as_me:-configure}:10037: testing ... found intl library in $cf_cv_library_path_intl ..." 1>&5 +echo "${as_me:-configure}:10161: testing ... found intl library in $cf_cv_library_path_intl ..." 1>&5 cf_cv_find_linkage_intl=yes cf_cv_library_file_intl="-lintl" @@ -10073,9 +10197,9 @@ else cf_cv_func_gettext=no fi - echo "$as_me:10076: checking for libintl.h and gettext()" >&5 + echo "$as_me:10200: checking for libintl.h and gettext()" >&5 echo $ECHO_N "checking for libintl.h and gettext()... $ECHO_C" >&6 - echo "$as_me:10078: result: $cf_cv_func_gettext" >&5 + echo "$as_me:10202: result: $cf_cv_func_gettext" >&5 echo "${ECHO_T}$cf_cv_func_gettext" >&6 LIBS="$cf_save_LIBS_1" @@ -10120,7 +10244,7 @@ if test -n "$cf_cv_header_path_intl" ; then CPPFLAGS="${CPPFLAGS}-I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 10123 "configure" +#line 10247 "configure" #include "confdefs.h" #include <stdio.h> int @@ -10132,16 +10256,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:10135: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:10259: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:10138: \$? = $ac_status" >&5 + echo "$as_me:10262: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:10141: \"$ac_try\"") >&5 + { (eval echo "$as_me:10265: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:10144: \$? = $ac_status" >&5 + echo "$as_me:10268: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -10158,7 +10282,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}:10161: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:10285: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -10197,7 +10321,7 @@ if test -n "$cf_cv_library_path_intl" ; then if test "$cf_have_libdir" = no ; then test -n "$verbose" && echo " adding $cf_add_libdir to library-path" 1>&6 -echo "${as_me:-configure}:10200: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:10324: testing adding $cf_add_libdir to library-path ..." 1>&5 INTLLIBS="-L$cf_add_libdir $INTLLIBS" fi @@ -10213,13 +10337,13 @@ fi for ac_func in dcgettext do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` -echo "$as_me:10216: checking for $ac_func" >&5 +echo "$as_me:10340: 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 10222 "configure" +#line 10346 "configure" #include "confdefs.h" #define $ac_func autoconf_temporary #include <limits.h> /* least-intrusive standard header which defines gcc2 __stub macros */ @@ -10250,16 +10374,16 @@ main (void) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:10253: \"$ac_link\"") >&5 +if { (eval echo "$as_me:10377: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:10256: \$? = $ac_status" >&5 + echo "$as_me:10380: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:10259: \"$ac_try\"") >&5 + { (eval echo "$as_me:10383: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:10262: \$? = $ac_status" >&5 + echo "$as_me:10386: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else @@ -10269,7 +10393,7 @@ eval "$as_ac_var=no" fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:10272: result: `eval echo '${'$as_ac_var'}'`" >&5 +echo "$as_me:10396: 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 @@ -10284,7 +10408,7 @@ done CATOBJEXT=.gmo fi elif test -z "$MSGFMT" || test -z "$XGETTEXT" ; then - { echo "$as_me:10287: WARNING: disabling NLS feature" >&5 + { echo "$as_me:10411: WARNING: disabling NLS feature" >&5 echo "$as_me: WARNING: disabling NLS feature" >&2;} sed -e /ENABLE_NLS/d confdefs.h >confdefs.tmp mv confdefs.tmp confdefs.h @@ -10315,7 +10439,7 @@ echo "$as_me: WARNING: disabling NLS feature" >&2;} LIBS=`echo " $LIBS " | sed -e 's/ -lintl / /' -e 's/^ //' -e 's/ $//'` elif test "$nls_cv_use_gnu_gettext" = "yes"; then nls_cv_use_gnu_gettext=no - { echo "$as_me:10318: WARNING: no NLS library is packaged with this application" >&5 + { echo "$as_me:10442: WARNING: no NLS library is packaged with this application" >&5 echo "$as_me: WARNING: no NLS library is packaged with this application" >&2;} fi fi @@ -10324,7 +10448,7 @@ echo "$as_me: WARNING: no NLS library is packaged with this application" >&2;} if $GMSGFMT --statistics /dev/null >/dev/null 2>&1; then : ; else - { echo "$as_me:10327: WARNING: found msgfmt program is not GNU msgfmt" >&5 + { echo "$as_me:10451: WARNING: found msgfmt program is not GNU msgfmt" >&5 echo "$as_me: WARNING: found msgfmt program is not GNU msgfmt" >&2;} fi fi @@ -10333,7 +10457,7 @@ echo "$as_me: WARNING: found msgfmt program is not GNU msgfmt" >&2;} if $XGETTEXT --omit-header /dev/null >/dev/null 2>&1; then : ; else - { echo "$as_me:10336: WARNING: found xgettext program is not GNU xgettext" >&5 + { echo "$as_me:10460: WARNING: found xgettext program is not GNU xgettext" >&5 echo "$as_me: WARNING: found xgettext program is not GNU xgettext" >&2;} fi fi @@ -10351,7 +10475,7 @@ echo "$as_me: WARNING: found xgettext program is not GNU xgettext" >&2;} 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:10354: checking for $ac_word" >&5 +echo "$as_me:10478: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_prog_INTLBISON+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -10366,7 +10490,7 @@ for ac_dir in $ac_dummy; do test -z "$ac_dir" && ac_dir=. $as_executable_p "$ac_dir/$ac_word" || continue ac_cv_prog_INTLBISON="$ac_prog" -echo "$as_me:10369: found $ac_dir/$ac_word" >&5 +echo "$as_me:10493: found $ac_dir/$ac_word" >&5 break done @@ -10374,10 +10498,10 @@ fi fi INTLBISON=$ac_cv_prog_INTLBISON if test -n "$INTLBISON"; then - echo "$as_me:10377: result: $INTLBISON" >&5 + echo "$as_me:10501: result: $INTLBISON" >&5 echo "${ECHO_T}$INTLBISON" >&6 else - echo "$as_me:10380: result: no" >&5 + echo "$as_me:10504: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -10387,7 +10511,7 @@ done if test -z "$INTLBISON"; then ac_verc_fail=yes else - echo "$as_me:10390: checking version of bison" >&5 + echo "$as_me:10514: checking version of bison" >&5 echo $ECHO_N "checking version of bison... $ECHO_C" >&6 ac_prog_version=`$INTLBISON --version 2>&1 | sed -n 's/^.*GNU Bison.* \([0-9]*\.[0-9.]*\).*$/\1/p'` case $ac_prog_version in @@ -10396,7 +10520,7 @@ echo $ECHO_N "checking version of bison... $ECHO_C" >&6 ac_prog_version="$ac_prog_version, ok"; ac_verc_fail=no;; (*) ac_prog_version="$ac_prog_version, bad"; ac_verc_fail=yes;; esac - echo "$as_me:10399: result: $ac_prog_version" >&5 + echo "$as_me:10523: result: $ac_prog_version" >&5 echo "${ECHO_T}$ac_prog_version" >&6 fi if test $ac_verc_fail = yes; then @@ -10423,7 +10547,7 @@ echo "${ECHO_T}$ac_prog_version" >&6 if test "x$ALL_LINGUAS" = "x"; then LINGUAS= else - echo "$as_me:10426: checking for catalogs to be installed" >&5 + echo "$as_me:10550: checking for catalogs to be installed" >&5 echo $ECHO_N "checking for catalogs to be installed... $ECHO_C" >&6 NEW_LINGUAS= for presentlang in $ALL_LINGUAS; do @@ -10443,7 +10567,7 @@ echo $ECHO_N "checking for catalogs to be installed... $ECHO_C" >&6 fi done LINGUAS=$NEW_LINGUAS - echo "$as_me:10446: result: $LINGUAS" >&5 + echo "$as_me:10570: result: $LINGUAS" >&5 echo "${ECHO_T}$LINGUAS" >&6 fi @@ -10479,7 +10603,7 @@ cf_makefile=makefile use_our_messages=no if test "$USE_NLS" = yes ; then if test -d $srcdir/po ; then -echo "$as_me:10482: checking if we should use included message-library" >&5 +echo "$as_me:10606: checking if we should use included message-library" >&5 echo $ECHO_N "checking if we should use included message-library... $ECHO_C" >&6 # Check whether --enable-included-msgs or --disable-included-msgs was given. @@ -10490,7 +10614,7 @@ else use_our_messages=yes fi; fi -echo "$as_me:10493: result: $use_our_messages" >&5 +echo "$as_me:10617: result: $use_our_messages" >&5 echo "${ECHO_T}$use_our_messages" >&6 fi @@ -10532,23 +10656,23 @@ else for ac_header in libintl.h do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` -echo "$as_me:10535: checking for $ac_header" >&5 +echo "$as_me:10659: 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 10541 "configure" +#line 10665 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:10545: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:10669: \"$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:10551: \$? = $ac_status" >&5 + echo "$as_me:10675: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -10567,7 +10691,7 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:10570: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:10694: 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 @@ -10656,7 +10780,7 @@ case ".$withval" in withval=`echo $withval | sed -e s%NONE%$cf_path_syntax%` ;; (*) - { { echo "$as_me:10659: error: expected a pathname, not \"$withval\"" >&5 + { { echo "$as_me:10783: error: expected a pathname, not \"$withval\"" >&5 echo "$as_me: error: expected a pathname, not \"$withval\"" >&2;} { (exit 1); exit 1; }; } ;; @@ -10665,7 +10789,7 @@ esac fi eval NLS_DATADIR="$withval" -echo "$as_me:10668: checking if you want full utility pathnames" >&5 +echo "$as_me:10792: checking if you want full utility pathnames" >&5 echo $ECHO_N "checking if you want full utility pathnames... $ECHO_C" >&6 # Check whether --enable-full-paths or --disable-full-paths was given. @@ -10682,14 +10806,14 @@ else with_full_paths=yes fi; -echo "$as_me:10685: result: $with_full_paths" >&5 +echo "$as_me:10809: result: $with_full_paths" >&5 echo "${ECHO_T}$with_full_paths" >&6 test $with_full_paths = no && cat >>confdefs.h <<\EOF #define USE_EXECVP 1 EOF -echo "$as_me:10692: checking for system mailer" >&5 +echo "$as_me:10816: checking for system mailer" >&5 echo $ECHO_N "checking for system mailer... $ECHO_C" >&6 if test "${cf_cv_SYSTEM_MAIL+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -10709,14 +10833,14 @@ else fi -echo "$as_me:10712: result: $cf_cv_SYSTEM_MAIL" >&5 +echo "$as_me:10836: result: $cf_cv_SYSTEM_MAIL" >&5 echo "${ECHO_T}$cf_cv_SYSTEM_MAIL" >&6 cat >>confdefs.h <<EOF #define SYSTEM_MAIL "$cf_cv_SYSTEM_MAIL" EOF -echo "$as_me:10719: checking system mail flags" >&5 +echo "$as_me:10843: checking system mail flags" >&5 echo $ECHO_N "checking system mail flags... $ECHO_C" >&6 if test "${cf_cv_system_mail_flags+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -10732,7 +10856,7 @@ else fi -echo "$as_me:10735: result: $cf_cv_system_mail_flags" >&5 +echo "$as_me:10859: result: $cf_cv_system_mail_flags" >&5 echo "${ECHO_T}$cf_cv_system_mail_flags" >&6 cat >>confdefs.h <<EOF @@ -10745,14 +10869,14 @@ if test $with_full_paths = no ; then fi fi -echo "$as_me:10748: checking if the POSIX test-macros are already defined" >&5 +echo "$as_me:10872: checking if the POSIX test-macros are already defined" >&5 echo $ECHO_N "checking if the POSIX test-macros are already defined... $ECHO_C" >&6 if test "${cf_cv_posix_visible+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 10755 "configure" +#line 10879 "configure" #include "confdefs.h" #include <stdio.h> int @@ -10771,16 +10895,16 @@ main (void) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:10774: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:10898: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:10777: \$? = $ac_status" >&5 + echo "$as_me:10901: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:10780: \"$ac_try\"") >&5 + { (eval echo "$as_me:10904: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:10783: \$? = $ac_status" >&5 + echo "$as_me:10907: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_posix_visible=no else @@ -10791,7 +10915,7 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:10794: result: $cf_cv_posix_visible" >&5 +echo "$as_me:10918: result: $cf_cv_posix_visible" >&5 echo "${ECHO_T}$cf_cv_posix_visible" >&6 if test "$cf_cv_posix_visible" = no; then @@ -10836,14 +10960,14 @@ case $host_os in cf_gnu_xopen_source=$cf_XOPEN_SOURCE -echo "$as_me:10839: checking if this is the GNU C library" >&5 +echo "$as_me:10963: checking if this is the GNU C library" >&5 echo $ECHO_N "checking if this is the GNU C library... $ECHO_C" >&6 if test "${cf_cv_gnu_library+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 10846 "configure" +#line 10970 "configure" #include "confdefs.h" #include <sys/types.h> int @@ -10862,16 +10986,16 @@ main (void) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:10865: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:10989: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:10868: \$? = $ac_status" >&5 + echo "$as_me:10992: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:10871: \"$ac_try\"") >&5 + { (eval echo "$as_me:10995: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:10874: \$? = $ac_status" >&5 + echo "$as_me:10998: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_gnu_library=yes else @@ -10882,7 +11006,7 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:10885: result: $cf_cv_gnu_library" >&5 +echo "$as_me:11009: result: $cf_cv_gnu_library" >&5 echo "${ECHO_T}$cf_cv_gnu_library" >&6 if test x$cf_cv_gnu_library = xyes; then @@ -10890,7 +11014,7 @@ if test x$cf_cv_gnu_library = xyes; then # With glibc 2.19 (13 years after this check was begun), _DEFAULT_SOURCE # was changed to help a little. newlib incorporated the change about 4 # years later. - echo "$as_me:10893: checking if _DEFAULT_SOURCE can be used as a basis" >&5 + echo "$as_me:11017: checking if _DEFAULT_SOURCE can be used as a basis" >&5 echo $ECHO_N "checking if _DEFAULT_SOURCE can be used as a basis... $ECHO_C" >&6 if test "${cf_cv_gnu_library_219+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -10902,7 +11026,7 @@ else CPPFLAGS="${CPPFLAGS}-D_DEFAULT_SOURCE" cat >conftest.$ac_ext <<_ACEOF -#line 10905 "configure" +#line 11029 "configure" #include "confdefs.h" #include <sys/types.h> int @@ -10921,16 +11045,16 @@ main (void) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:10924: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:11048: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:10927: \$? = $ac_status" >&5 + echo "$as_me:11051: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:10930: \"$ac_try\"") >&5 + { (eval echo "$as_me:11054: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:10933: \$? = $ac_status" >&5 + echo "$as_me:11057: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_gnu_library_219=yes else @@ -10942,12 +11066,12 @@ rm -f conftest.$ac_objext conftest.$ac_ext CPPFLAGS="$cf_save" fi -echo "$as_me:10945: result: $cf_cv_gnu_library_219" >&5 +echo "$as_me:11069: result: $cf_cv_gnu_library_219" >&5 echo "${ECHO_T}$cf_cv_gnu_library_219" >&6 if test "x$cf_cv_gnu_library_219" = xyes; then cf_save="$CPPFLAGS" - echo "$as_me:10950: checking if _XOPEN_SOURCE=$cf_gnu_xopen_source works with _DEFAULT_SOURCE" >&5 + echo "$as_me:11074: checking if _XOPEN_SOURCE=$cf_gnu_xopen_source works with _DEFAULT_SOURCE" >&5 echo $ECHO_N "checking if _XOPEN_SOURCE=$cf_gnu_xopen_source works with _DEFAULT_SOURCE... $ECHO_C" >&6 if test "${cf_cv_gnu_dftsrc_219+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -11052,7 +11176,7 @@ if test -n "$cf_new_extra_cppflags" ; then fi cat >conftest.$ac_ext <<_ACEOF -#line 11055 "configure" +#line 11179 "configure" #include "confdefs.h" #include <limits.h> @@ -11072,16 +11196,16 @@ main (void) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:11075: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:11199: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:11078: \$? = $ac_status" >&5 + echo "$as_me:11202: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:11081: \"$ac_try\"") >&5 + { (eval echo "$as_me:11205: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:11084: \$? = $ac_status" >&5 + echo "$as_me:11208: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_gnu_dftsrc_219=yes else @@ -11092,7 +11216,7 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:11095: result: $cf_cv_gnu_dftsrc_219" >&5 +echo "$as_me:11219: result: $cf_cv_gnu_dftsrc_219" >&5 echo "${ECHO_T}$cf_cv_gnu_dftsrc_219" >&6 test "x$cf_cv_gnu_dftsrc_219" = "xyes" || CPPFLAGS="$cf_save" else @@ -11101,14 +11225,14 @@ echo "${ECHO_T}$cf_cv_gnu_dftsrc_219" >&6 if test "x$cf_cv_gnu_dftsrc_219" != xyes; then - echo "$as_me:11104: checking if we must define _GNU_SOURCE" >&5 + echo "$as_me:11228: checking if we must define _GNU_SOURCE" >&5 echo $ECHO_N "checking if we must define _GNU_SOURCE... $ECHO_C" >&6 if test "${cf_cv_gnu_source+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 11111 "configure" +#line 11235 "configure" #include "confdefs.h" #include <sys/types.h> int @@ -11123,16 +11247,16 @@ main (void) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:11126: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:11250: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:11129: \$? = $ac_status" >&5 + echo "$as_me:11253: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:11132: \"$ac_try\"") >&5 + { (eval echo "$as_me:11256: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:11135: \$? = $ac_status" >&5 + echo "$as_me:11259: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_gnu_source=no else @@ -11239,7 +11363,7 @@ if test -n "$cf_new_extra_cppflags" ; then fi cat >conftest.$ac_ext <<_ACEOF -#line 11242 "configure" +#line 11366 "configure" #include "confdefs.h" #include <sys/types.h> int @@ -11254,16 +11378,16 @@ main (void) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:11257: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:11381: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:11260: \$? = $ac_status" >&5 + echo "$as_me:11384: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:11263: \"$ac_try\"") >&5 + { (eval echo "$as_me:11387: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:11266: \$? = $ac_status" >&5 + echo "$as_me:11390: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_gnu_source=no else @@ -11278,12 +11402,12 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:11281: result: $cf_cv_gnu_source" >&5 +echo "$as_me:11405: result: $cf_cv_gnu_source" >&5 echo "${ECHO_T}$cf_cv_gnu_source" >&6 if test "$cf_cv_gnu_source" = yes then - echo "$as_me:11286: checking if we should also define _DEFAULT_SOURCE" >&5 + echo "$as_me:11410: checking if we should also define _DEFAULT_SOURCE" >&5 echo $ECHO_N "checking if we should also define _DEFAULT_SOURCE... $ECHO_C" >&6 if test "${cf_cv_default_source+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -11293,7 +11417,7 @@ else CPPFLAGS="${CPPFLAGS}-D_GNU_SOURCE" cat >conftest.$ac_ext <<_ACEOF -#line 11296 "configure" +#line 11420 "configure" #include "confdefs.h" #include <sys/types.h> int @@ -11308,16 +11432,16 @@ main (void) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:11311: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:11435: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:11314: \$? = $ac_status" >&5 + echo "$as_me:11438: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:11317: \"$ac_try\"") >&5 + { (eval echo "$as_me:11441: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:11320: \$? = $ac_status" >&5 + echo "$as_me:11444: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_default_source=no else @@ -11328,7 +11452,7 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:11331: result: $cf_cv_default_source" >&5 +echo "$as_me:11455: result: $cf_cv_default_source" >&5 echo "${ECHO_T}$cf_cv_default_source" >&6 if test "$cf_cv_default_source" = yes then @@ -11365,16 +11489,16 @@ cf_trim_CPPFLAGS=`echo "$cf_save_CPPFLAGS" | \ sed -e 's/-[UD]'"_POSIX_C_SOURCE"'\(=[^ ]*\)\?[ ]/ /g' \ -e 's/-[UD]'"_POSIX_C_SOURCE"'\(=[^ ]*\)\?$//g'` -echo "$as_me:11368: checking if we should define _POSIX_C_SOURCE" >&5 +echo "$as_me:11492: checking if we should define _POSIX_C_SOURCE" >&5 echo $ECHO_N "checking if we should define _POSIX_C_SOURCE... $ECHO_C" >&6 if test "${cf_cv_posix_c_source+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else -echo "${as_me:-configure}:11374: testing if the symbol is already defined go no further ..." 1>&5 +echo "${as_me:-configure}:11498: testing if the symbol is already defined go no further ..." 1>&5 cat >conftest.$ac_ext <<_ACEOF -#line 11377 "configure" +#line 11501 "configure" #include "confdefs.h" #include <sys/types.h> int @@ -11389,16 +11513,16 @@ make an error } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:11392: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:11516: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:11395: \$? = $ac_status" >&5 + echo "$as_me:11519: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:11398: \"$ac_try\"") >&5 + { (eval echo "$as_me:11522: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:11401: \$? = $ac_status" >&5 + echo "$as_me:11525: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_posix_c_source=no else @@ -11419,7 +11543,7 @@ cf_want_posix_source=no esac if test "$cf_want_posix_source" = yes ; then cat >conftest.$ac_ext <<_ACEOF -#line 11422 "configure" +#line 11546 "configure" #include "confdefs.h" #include <sys/types.h> int @@ -11434,16 +11558,16 @@ make an error } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:11437: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:11561: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:11440: \$? = $ac_status" >&5 + echo "$as_me:11564: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:11443: \"$ac_try\"") >&5 + { (eval echo "$as_me:11567: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:11446: \$? = $ac_status" >&5 + echo "$as_me:11570: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -11454,7 +11578,7 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "${as_me:-configure}:11457: testing ifdef from value $cf_POSIX_C_SOURCE ..." 1>&5 +echo "${as_me:-configure}:11581: testing ifdef from value $cf_POSIX_C_SOURCE ..." 1>&5 CFLAGS="$cf_trim_CFLAGS" CPPFLAGS="$cf_trim_CPPFLAGS" @@ -11462,10 +11586,10 @@ echo "${as_me:-configure}:11457: testing ifdef from value $cf_POSIX_C_SOURCE ... test -n "$CPPFLAGS" && CPPFLAGS="$CPPFLAGS " CPPFLAGS="${CPPFLAGS}$cf_cv_posix_c_source" -echo "${as_me:-configure}:11465: testing if the second compile does not leave our definition intact error ..." 1>&5 +echo "${as_me:-configure}:11589: testing if the second compile does not leave our definition intact error ..." 1>&5 cat >conftest.$ac_ext <<_ACEOF -#line 11468 "configure" +#line 11592 "configure" #include "confdefs.h" #include <sys/types.h> int @@ -11480,16 +11604,16 @@ make an error } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:11483: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:11607: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:11486: \$? = $ac_status" >&5 + echo "$as_me:11610: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:11489: \"$ac_try\"") >&5 + { (eval echo "$as_me:11613: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:11492: \$? = $ac_status" >&5 + echo "$as_me:11616: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -11505,7 +11629,7 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:11508: result: $cf_cv_posix_c_source" >&5 +echo "$as_me:11632: result: $cf_cv_posix_c_source" >&5 echo "${ECHO_T}$cf_cv_posix_c_source" >&6 if test "$cf_cv_posix_c_source" != no ; then @@ -11645,14 +11769,14 @@ fi # cf_cv_posix_visible ;; (*) -echo "$as_me:11648: checking if we should define _XOPEN_SOURCE" >&5 +echo "$as_me:11772: checking if we should define _XOPEN_SOURCE" >&5 echo $ECHO_N "checking if we should define _XOPEN_SOURCE... $ECHO_C" >&6 if test "${cf_cv_xopen_source+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 11655 "configure" +#line 11779 "configure" #include "confdefs.h" #include <stdlib.h> @@ -11671,16 +11795,16 @@ make an error } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:11674: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:11798: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:11677: \$? = $ac_status" >&5 + echo "$as_me:11801: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:11680: \"$ac_try\"") >&5 + { (eval echo "$as_me:11804: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:11683: \$? = $ac_status" >&5 + echo "$as_me:11807: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_xopen_source=no else @@ -11692,7 +11816,7 @@ cf_save="$CPPFLAGS" CPPFLAGS="${CPPFLAGS}-D_XOPEN_SOURCE=$cf_XOPEN_SOURCE" cat >conftest.$ac_ext <<_ACEOF -#line 11695 "configure" +#line 11819 "configure" #include "confdefs.h" #include <stdlib.h> @@ -11711,16 +11835,16 @@ make an error } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:11714: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:11838: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:11717: \$? = $ac_status" >&5 + echo "$as_me:11841: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:11720: \"$ac_try\"") >&5 + { (eval echo "$as_me:11844: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:11723: \$? = $ac_status" >&5 + echo "$as_me:11847: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_xopen_source=no else @@ -11735,7 +11859,7 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:11738: result: $cf_cv_xopen_source" >&5 +echo "$as_me:11862: result: $cf_cv_xopen_source" >&5 echo "${ECHO_T}$cf_cv_xopen_source" >&6 if test "$cf_cv_xopen_source" != no ; then @@ -11865,16 +11989,16 @@ cf_trim_CPPFLAGS=`echo "$cf_save_CPPFLAGS" | \ sed -e 's/-[UD]'"_POSIX_C_SOURCE"'\(=[^ ]*\)\?[ ]/ /g' \ -e 's/-[UD]'"_POSIX_C_SOURCE"'\(=[^ ]*\)\?$//g'` -echo "$as_me:11868: checking if we should define _POSIX_C_SOURCE" >&5 +echo "$as_me:11992: checking if we should define _POSIX_C_SOURCE" >&5 echo $ECHO_N "checking if we should define _POSIX_C_SOURCE... $ECHO_C" >&6 if test "${cf_cv_posix_c_source+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else -echo "${as_me:-configure}:11874: testing if the symbol is already defined go no further ..." 1>&5 +echo "${as_me:-configure}:11998: testing if the symbol is already defined go no further ..." 1>&5 cat >conftest.$ac_ext <<_ACEOF -#line 11877 "configure" +#line 12001 "configure" #include "confdefs.h" #include <sys/types.h> int @@ -11889,16 +12013,16 @@ make an error } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:11892: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:12016: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:11895: \$? = $ac_status" >&5 + echo "$as_me:12019: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:11898: \"$ac_try\"") >&5 + { (eval echo "$as_me:12022: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:11901: \$? = $ac_status" >&5 + echo "$as_me:12025: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_posix_c_source=no else @@ -11919,7 +12043,7 @@ cf_want_posix_source=no esac if test "$cf_want_posix_source" = yes ; then cat >conftest.$ac_ext <<_ACEOF -#line 11922 "configure" +#line 12046 "configure" #include "confdefs.h" #include <sys/types.h> int @@ -11934,16 +12058,16 @@ make an error } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:11937: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:12061: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:11940: \$? = $ac_status" >&5 + echo "$as_me:12064: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:11943: \"$ac_try\"") >&5 + { (eval echo "$as_me:12067: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:11946: \$? = $ac_status" >&5 + echo "$as_me:12070: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -11954,7 +12078,7 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "${as_me:-configure}:11957: testing ifdef from value $cf_POSIX_C_SOURCE ..." 1>&5 +echo "${as_me:-configure}:12081: testing ifdef from value $cf_POSIX_C_SOURCE ..." 1>&5 CFLAGS="$cf_trim_CFLAGS" CPPFLAGS="$cf_trim_CPPFLAGS" @@ -11962,10 +12086,10 @@ echo "${as_me:-configure}:11957: testing ifdef from value $cf_POSIX_C_SOURCE ... test -n "$CPPFLAGS" && CPPFLAGS="$CPPFLAGS " CPPFLAGS="${CPPFLAGS}$cf_cv_posix_c_source" -echo "${as_me:-configure}:11965: testing if the second compile does not leave our definition intact error ..." 1>&5 +echo "${as_me:-configure}:12089: testing if the second compile does not leave our definition intact error ..." 1>&5 cat >conftest.$ac_ext <<_ACEOF -#line 11968 "configure" +#line 12092 "configure" #include "confdefs.h" #include <sys/types.h> int @@ -11980,16 +12104,16 @@ make an error } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:11983: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:12107: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:11986: \$? = $ac_status" >&5 + echo "$as_me:12110: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:11989: \"$ac_try\"") >&5 + { (eval echo "$as_me:12113: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:11992: \$? = $ac_status" >&5 + echo "$as_me:12116: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -12005,7 +12129,7 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:12008: result: $cf_cv_posix_c_source" >&5 +echo "$as_me:12132: result: $cf_cv_posix_c_source" >&5 echo "${ECHO_T}$cf_cv_posix_c_source" >&6 if test "$cf_cv_posix_c_source" != no ; then @@ -12199,7 +12323,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}:12202: testing add to \$CFLAGS $cf_new_cflags ..." 1>&5 +echo "${as_me:-configure}:12326: testing add to \$CFLAGS $cf_new_cflags ..." 1>&5 test -n "$CFLAGS" && CFLAGS="$CFLAGS " CFLAGS="${CFLAGS}$cf_new_cflags" @@ -12209,7 +12333,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}:12212: testing add to \$CPPFLAGS $cf_new_cppflags ..." 1>&5 +echo "${as_me:-configure}:12336: testing add to \$CPPFLAGS $cf_new_cppflags ..." 1>&5 test -n "$CPPFLAGS" && CPPFLAGS="$CPPFLAGS " CPPFLAGS="${CPPFLAGS}$cf_new_cppflags" @@ -12219,7 +12343,7 @@ fi if test -n "$cf_new_extra_cppflags" ; then test -n "$verbose" && echo " add to \$EXTRA_CPPFLAGS $cf_new_extra_cppflags" 1>&6 -echo "${as_me:-configure}:12222: testing add to \$EXTRA_CPPFLAGS $cf_new_extra_cppflags ..." 1>&5 +echo "${as_me:-configure}:12346: testing add to \$EXTRA_CPPFLAGS $cf_new_extra_cppflags ..." 1>&5 test -n "$EXTRA_CPPFLAGS" && EXTRA_CPPFLAGS="$EXTRA_CPPFLAGS " EXTRA_CPPFLAGS="${EXTRA_CPPFLAGS}$cf_new_extra_cppflags" @@ -12229,10 +12353,10 @@ fi fi if test -n "$cf_XOPEN_SOURCE" && test -z "$cf_cv_xopen_source" ; then - echo "$as_me:12232: checking if _XOPEN_SOURCE really is set" >&5 + echo "$as_me:12356: checking if _XOPEN_SOURCE really is set" >&5 echo $ECHO_N "checking if _XOPEN_SOURCE really is set... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF -#line 12235 "configure" +#line 12359 "configure" #include "confdefs.h" #include <stdlib.h> int @@ -12247,16 +12371,16 @@ make an error } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:12250: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:12374: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:12253: \$? = $ac_status" >&5 + echo "$as_me:12377: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:12256: \"$ac_try\"") >&5 + { (eval echo "$as_me:12380: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:12259: \$? = $ac_status" >&5 + echo "$as_me:12383: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_XOPEN_SOURCE_set=yes else @@ -12265,12 +12389,12 @@ cat conftest.$ac_ext >&5 cf_XOPEN_SOURCE_set=no fi rm -f conftest.$ac_objext conftest.$ac_ext - echo "$as_me:12268: result: $cf_XOPEN_SOURCE_set" >&5 + echo "$as_me:12392: result: $cf_XOPEN_SOURCE_set" >&5 echo "${ECHO_T}$cf_XOPEN_SOURCE_set" >&6 if test $cf_XOPEN_SOURCE_set = yes then cat >conftest.$ac_ext <<_ACEOF -#line 12273 "configure" +#line 12397 "configure" #include "confdefs.h" #include <stdlib.h> int @@ -12285,16 +12409,16 @@ make an error } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:12288: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:12412: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:12291: \$? = $ac_status" >&5 + echo "$as_me:12415: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:12294: \"$ac_try\"") >&5 + { (eval echo "$as_me:12418: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:12297: \$? = $ac_status" >&5 + echo "$as_me:12421: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_XOPEN_SOURCE_set_ok=yes else @@ -12305,19 +12429,19 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext if test $cf_XOPEN_SOURCE_set_ok = no then - { echo "$as_me:12308: WARNING: _XOPEN_SOURCE is lower than requested" >&5 + { echo "$as_me:12432: WARNING: _XOPEN_SOURCE is lower than requested" >&5 echo "$as_me: WARNING: _XOPEN_SOURCE is lower than requested" >&2;} fi else -echo "$as_me:12313: checking if we should define _XOPEN_SOURCE" >&5 +echo "$as_me:12437: checking if we should define _XOPEN_SOURCE" >&5 echo $ECHO_N "checking if we should define _XOPEN_SOURCE... $ECHO_C" >&6 if test "${cf_cv_xopen_source+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 12320 "configure" +#line 12444 "configure" #include "confdefs.h" #include <stdlib.h> @@ -12336,16 +12460,16 @@ make an error } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:12339: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:12463: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:12342: \$? = $ac_status" >&5 + echo "$as_me:12466: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:12345: \"$ac_try\"") >&5 + { (eval echo "$as_me:12469: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:12348: \$? = $ac_status" >&5 + echo "$as_me:12472: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_xopen_source=no else @@ -12357,7 +12481,7 @@ cf_save="$CPPFLAGS" CPPFLAGS="${CPPFLAGS}-D_XOPEN_SOURCE=$cf_XOPEN_SOURCE" cat >conftest.$ac_ext <<_ACEOF -#line 12360 "configure" +#line 12484 "configure" #include "confdefs.h" #include <stdlib.h> @@ -12376,16 +12500,16 @@ make an error } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:12379: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:12503: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:12382: \$? = $ac_status" >&5 + echo "$as_me:12506: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:12385: \"$ac_try\"") >&5 + { (eval echo "$as_me:12509: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:12388: \$? = $ac_status" >&5 + echo "$as_me:12512: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_xopen_source=no else @@ -12400,7 +12524,7 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:12403: result: $cf_cv_xopen_source" >&5 +echo "$as_me:12527: result: $cf_cv_xopen_source" >&5 echo "${ECHO_T}$cf_cv_xopen_source" >&6 if test "$cf_cv_xopen_source" != no ; then @@ -12519,14 +12643,14 @@ fi fi fi # cf_cv_posix_visible -echo "$as_me:12522: checking if SIGWINCH is defined" >&5 +echo "$as_me:12646: checking if SIGWINCH is defined" >&5 echo $ECHO_N "checking if SIGWINCH is defined... $ECHO_C" >&6 if test "${cf_cv_define_sigwinch+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 12529 "configure" +#line 12653 "configure" #include "confdefs.h" #include <sys/types.h> @@ -12541,23 +12665,23 @@ int x = SIGWINCH; (void)x } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:12544: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:12668: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:12547: \$? = $ac_status" >&5 + echo "$as_me:12671: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:12550: \"$ac_try\"") >&5 + { (eval echo "$as_me:12674: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:12553: \$? = $ac_status" >&5 + echo "$as_me:12677: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_define_sigwinch=yes else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 cat >conftest.$ac_ext <<_ACEOF -#line 12560 "configure" +#line 12684 "configure" #include "confdefs.h" #undef _XOPEN_SOURCE @@ -12575,16 +12699,16 @@ int x = SIGWINCH; (void)x } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:12578: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:12702: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:12581: \$? = $ac_status" >&5 + echo "$as_me:12705: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:12584: \"$ac_try\"") >&5 + { (eval echo "$as_me:12708: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:12587: \$? = $ac_status" >&5 + echo "$as_me:12711: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_define_sigwinch=maybe else @@ -12598,11 +12722,11 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:12601: result: $cf_cv_define_sigwinch" >&5 +echo "$as_me:12725: result: $cf_cv_define_sigwinch" >&5 echo "${ECHO_T}$cf_cv_define_sigwinch" >&6 if test "$cf_cv_define_sigwinch" = maybe ; then -echo "$as_me:12605: checking for actual SIGWINCH definition" >&5 +echo "$as_me:12729: checking for actual SIGWINCH definition" >&5 echo $ECHO_N "checking for actual SIGWINCH definition... $ECHO_C" >&6 if test "${cf_cv_fixup_sigwinch+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -12613,7 +12737,7 @@ cf_sigwinch=32 while test $cf_sigwinch != 1 do cat >conftest.$ac_ext <<_ACEOF -#line 12616 "configure" +#line 12740 "configure" #include "confdefs.h" #undef _XOPEN_SOURCE @@ -12635,16 +12759,16 @@ int x = SIGWINCH; (void)x } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:12638: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:12762: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:12641: \$? = $ac_status" >&5 + echo "$as_me:12765: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:12644: \"$ac_try\"") >&5 + { (eval echo "$as_me:12768: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:12647: \$? = $ac_status" >&5 + echo "$as_me:12771: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_fixup_sigwinch=$cf_sigwinch break @@ -12658,7 +12782,7 @@ cf_sigwinch=`expr $cf_sigwinch - 1` done fi -echo "$as_me:12661: result: $cf_cv_fixup_sigwinch" >&5 +echo "$as_me:12785: result: $cf_cv_fixup_sigwinch" >&5 echo "${ECHO_T}$cf_cv_fixup_sigwinch" >&6 if test "$cf_cv_fixup_sigwinch" != unknown ; then @@ -12670,7 +12794,7 @@ if test -n "$TRY_CFLAGS" ; then test -n "$verbose" && echo " checking additions to CFLAGS" 1>&6 -echo "${as_me:-configure}:12673: testing checking additions to CFLAGS ..." 1>&5 +echo "${as_me:-configure}:12797: testing checking additions to CFLAGS ..." 1>&5 cf_check_cflags="$CFLAGS" cf_check_cppflags="$CPPFLAGS" @@ -12755,7 +12879,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}:12758: testing add to \$CFLAGS $cf_new_cflags ..." 1>&5 +echo "${as_me:-configure}:12882: testing add to \$CFLAGS $cf_new_cflags ..." 1>&5 test -n "$CFLAGS" && CFLAGS="$CFLAGS " CFLAGS="${CFLAGS}$cf_new_cflags" @@ -12765,7 +12889,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}:12768: testing add to \$CPPFLAGS $cf_new_cppflags ..." 1>&5 +echo "${as_me:-configure}:12892: testing add to \$CPPFLAGS $cf_new_cppflags ..." 1>&5 test -n "$CPPFLAGS" && CPPFLAGS="$CPPFLAGS " CPPFLAGS="${CPPFLAGS}$cf_new_cppflags" @@ -12775,7 +12899,7 @@ fi if test -n "$cf_new_extra_cppflags" ; then test -n "$verbose" && echo " add to \$EXTRA_CPPFLAGS $cf_new_extra_cppflags" 1>&6 -echo "${as_me:-configure}:12778: testing add to \$EXTRA_CPPFLAGS $cf_new_extra_cppflags ..." 1>&5 +echo "${as_me:-configure}:12902: testing add to \$EXTRA_CPPFLAGS $cf_new_extra_cppflags ..." 1>&5 test -n "$EXTRA_CPPFLAGS" && EXTRA_CPPFLAGS="$EXTRA_CPPFLAGS " EXTRA_CPPFLAGS="${EXTRA_CPPFLAGS}$cf_new_extra_cppflags" @@ -12784,7 +12908,7 @@ fi if test "x$cf_check_cflags" != "x$CFLAGS" ; then cat >conftest.$ac_ext <<_ACEOF -#line 12787 "configure" +#line 12911 "configure" #include "confdefs.h" #include <stdio.h> int @@ -12796,16 +12920,16 @@ printf("Hello world"); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:12799: \"$ac_link\"") >&5 +if { (eval echo "$as_me:12923: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:12802: \$? = $ac_status" >&5 + echo "$as_me:12926: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:12805: \"$ac_try\"") >&5 + { (eval echo "$as_me:12929: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:12808: \$? = $ac_status" >&5 + echo "$as_me:12932: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -12813,12 +12937,12 @@ else cat conftest.$ac_ext >&5 test -n "$verbose" && echo " test-compile failed. Undoing change to \$CFLAGS" 1>&6 -echo "${as_me:-configure}:12816: testing test-compile failed. Undoing change to \$CFLAGS ..." 1>&5 +echo "${as_me:-configure}:12940: testing test-compile failed. Undoing change to \$CFLAGS ..." 1>&5 if test "x$cf_check_cppflags" != "x$CPPFLAGS" ; then test -n "$verbose" && echo " but keeping change to \$CPPFLAGS" 1>&6 -echo "${as_me:-configure}:12821: testing but keeping change to \$CPPFLAGS ..." 1>&5 +echo "${as_me:-configure}:12945: testing but keeping change to \$CPPFLAGS ..." 1>&5 fi CFLAGS="$cf_check_flags" @@ -12830,7 +12954,7 @@ fi ### Look for network libraries first, since some functions (such as gethostname) ### are used in a lot of places. -echo "$as_me:12833: checking if you want NSS compatible SSL libraries" >&5 +echo "$as_me:12957: checking if you want NSS compatible SSL libraries" >&5 echo $ECHO_N "checking if you want NSS compatible SSL libraries... $ECHO_C" >&6 if test "${cf_cv_use_libnss_compat+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -12845,10 +12969,10 @@ else fi; fi -echo "$as_me:12848: result: $cf_cv_use_libnss_compat" >&5 +echo "$as_me:12972: result: $cf_cv_use_libnss_compat" >&5 echo "${ECHO_T}$cf_cv_use_libnss_compat" >&6 -echo "$as_me:12851: checking if you want ssl library" >&5 +echo "$as_me:12975: checking if you want ssl library" >&5 echo $ECHO_N "checking if you want ssl library... $ECHO_C" >&6 if test "${cf_cv_use_libssl+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -12863,10 +12987,10 @@ else fi; fi -echo "$as_me:12866: result: $cf_cv_use_libssl" >&5 +echo "$as_me:12990: result: $cf_cv_use_libssl" >&5 echo "${ECHO_T}$cf_cv_use_libssl" >&6 -echo "$as_me:12869: checking if you want gnutls support" >&5 +echo "$as_me:12993: checking if you want gnutls support" >&5 echo $ECHO_N "checking if you want gnutls support... $ECHO_C" >&6 if test "${cf_cv_use_libgnutls+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -12881,11 +13005,11 @@ else fi; fi -echo "$as_me:12884: result: $cf_cv_use_libgnutls" >&5 +echo "$as_me:13008: result: $cf_cv_use_libgnutls" >&5 echo "${ECHO_T}$cf_cv_use_libgnutls" >&6 # this option is mainly for comparing with/without Lynx's wrapper for GNUTLS. -echo "$as_me:12888: checking if you want gnutls-openssl compat" >&5 +echo "$as_me:13012: checking if you want gnutls-openssl compat" >&5 echo $ECHO_N "checking if you want gnutls-openssl compat... $ECHO_C" >&6 if test "${cf_cv_gnutls_compat+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -12900,10 +13024,10 @@ else fi; fi -echo "$as_me:12903: result: $cf_cv_gnutls_compat" >&5 +echo "$as_me:13027: result: $cf_cv_gnutls_compat" >&5 echo "${ECHO_T}$cf_cv_gnutls_compat" >&6 -echo "$as_me:12906: checking if you want socks library" >&5 +echo "$as_me:13030: checking if you want socks library" >&5 echo $ECHO_N "checking if you want socks library... $ECHO_C" >&6 if test "${cf_cv_use_libsocks+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -12918,10 +13042,10 @@ else fi; fi -echo "$as_me:12921: result: $cf_cv_use_libsocks" >&5 +echo "$as_me:13045: result: $cf_cv_use_libsocks" >&5 echo "${ECHO_T}$cf_cv_use_libsocks" >&6 -echo "$as_me:12924: checking if you want socks5 library" >&5 +echo "$as_me:13048: checking if you want socks5 library" >&5 echo $ECHO_N "checking if you want socks5 library... $ECHO_C" >&6 if test "${cf_cv_use_libsocks5+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -12936,7 +13060,7 @@ else fi; fi -echo "$as_me:12939: result: $cf_cv_use_libsocks5" >&5 +echo "$as_me:13063: result: $cf_cv_use_libsocks5" >&5 echo "${ECHO_T}$cf_cv_use_libsocks5" >&6 if test "x$cf_cv_use_libsocks" != xno ; then @@ -12978,7 +13102,7 @@ if test -n "$cf_searchpath/include" ; then CPPFLAGS="${CPPFLAGS}-I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 12981 "configure" +#line 13105 "configure" #include "confdefs.h" #include <stdio.h> int @@ -12990,16 +13114,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:12993: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:13117: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:12996: \$? = $ac_status" >&5 + echo "$as_me:13120: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:12999: \"$ac_try\"") >&5 + { (eval echo "$as_me:13123: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:13002: \$? = $ac_status" >&5 + echo "$as_me:13126: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -13016,7 +13140,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}:13019: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:13143: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -13062,7 +13186,7 @@ if test -n "$cf_searchpath/../include" ; then CPPFLAGS="${CPPFLAGS}-I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 13065 "configure" +#line 13189 "configure" #include "confdefs.h" #include <stdio.h> int @@ -13074,16 +13198,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:13077: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:13201: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:13080: \$? = $ac_status" >&5 + echo "$as_me:13204: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:13083: \"$ac_try\"") >&5 + { (eval echo "$as_me:13207: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:13086: \$? = $ac_status" >&5 + echo "$as_me:13210: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -13100,7 +13224,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}:13103: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:13227: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -13118,7 +13242,7 @@ echo "${as_me:-configure}:13103: testing adding $cf_add_incdir to include-path . fi else -{ { echo "$as_me:13121: error: cannot find socks library under $cf_cv_use_libsocks" >&5 +{ { echo "$as_me:13245: error: cannot find socks library under $cf_cv_use_libsocks" >&5 echo "$as_me: error: cannot find socks library under $cf_cv_use_libsocks" >&2;} { (exit 1); exit 1; }; } fi @@ -13143,7 +13267,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}:13146: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:13270: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -13172,7 +13296,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}:13175: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:13299: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -13181,7 +13305,7 @@ echo "${as_me:-configure}:13175: testing adding $cf_add_libdir to library-path . fi else -{ { echo "$as_me:13184: error: cannot find socks library under $cf_cv_use_libsocks" >&5 +{ { echo "$as_me:13308: error: cannot find socks library under $cf_cv_use_libsocks" >&5 echo "$as_me: error: cannot find socks library under $cf_cv_use_libsocks" >&2;} { (exit 1); exit 1; }; } fi @@ -13195,12 +13319,12 @@ esac cf_cv_header_path_socks= cf_cv_library_path_socks= -echo "${as_me:-configure}:13198: testing Starting FIND_LINKAGE(socks,) ..." 1>&5 +echo "${as_me:-configure}:13322: testing Starting FIND_LINKAGE(socks,) ..." 1>&5 cf_save_LIBS="$LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 13203 "configure" +#line 13327 "configure" #include "confdefs.h" #include <stdio.h> @@ -13216,16 +13340,16 @@ main (void) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:13219: \"$ac_link\"") >&5 +if { (eval echo "$as_me:13343: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:13222: \$? = $ac_status" >&5 + echo "$as_me:13346: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:13225: \"$ac_try\"") >&5 + { (eval echo "$as_me:13349: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:13228: \$? = $ac_status" >&5 + echo "$as_me:13352: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_find_linkage_socks=yes @@ -13239,7 +13363,7 @@ cat conftest.$ac_ext >&5 LIBS="-lsocks $cf_save_LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 13242 "configure" +#line 13366 "configure" #include "confdefs.h" #include <stdio.h> @@ -13255,16 +13379,16 @@ main (void) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:13258: \"$ac_link\"") >&5 +if { (eval echo "$as_me:13382: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:13261: \$? = $ac_status" >&5 + echo "$as_me:13385: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:13264: \"$ac_try\"") >&5 + { (eval echo "$as_me:13388: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:13267: \$? = $ac_status" >&5 + echo "$as_me:13391: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_find_linkage_socks=yes @@ -13281,9 +13405,9 @@ cat conftest.$ac_ext >&5 test -n "$verbose" && echo " find linkage for socks library" 1>&6 -echo "${as_me:-configure}:13284: testing find linkage for socks library ..." 1>&5 +echo "${as_me:-configure}:13408: testing find linkage for socks library ..." 1>&5 -echo "${as_me:-configure}:13286: testing Searching for headers in FIND_LINKAGE(socks,) ..." 1>&5 +echo "${as_me:-configure}:13410: testing Searching for headers in FIND_LINKAGE(socks,) ..." 1>&5 cf_save_CPPFLAGS="$CPPFLAGS" cf_test_CPPFLAGS="$CPPFLAGS" @@ -13374,7 +13498,7 @@ cf_search="$cf_search $cf_header_path_list" if test -d $cf_cv_header_path_socks ; then test -n "$verbose" && echo " ... testing $cf_cv_header_path_socks" 1>&6 -echo "${as_me:-configure}:13377: testing ... testing $cf_cv_header_path_socks ..." 1>&5 +echo "${as_me:-configure}:13501: testing ... testing $cf_cv_header_path_socks ..." 1>&5 CPPFLAGS="$cf_save_CPPFLAGS" @@ -13382,7 +13506,7 @@ echo "${as_me:-configure}:13377: testing ... testing $cf_cv_header_path_socks .. CPPFLAGS="${CPPFLAGS}-I$cf_cv_header_path_socks" cat >conftest.$ac_ext <<_ACEOF -#line 13385 "configure" +#line 13509 "configure" #include "confdefs.h" #include <stdio.h> @@ -13398,21 +13522,21 @@ main (void) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:13401: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:13525: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:13404: \$? = $ac_status" >&5 + echo "$as_me:13528: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:13407: \"$ac_try\"") >&5 + { (eval echo "$as_me:13531: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:13410: \$? = $ac_status" >&5 + echo "$as_me:13534: \$? = $ac_status" >&5 (exit $ac_status); }; }; then test -n "$verbose" && echo " ... found socks headers in $cf_cv_header_path_socks" 1>&6 -echo "${as_me:-configure}:13415: testing ... found socks headers in $cf_cv_header_path_socks ..." 1>&5 +echo "${as_me:-configure}:13539: testing ... found socks headers in $cf_cv_header_path_socks ..." 1>&5 cf_cv_find_linkage_socks=maybe cf_test_CPPFLAGS="$CPPFLAGS" @@ -13430,7 +13554,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "$cf_cv_find_linkage_socks" = maybe ; then -echo "${as_me:-configure}:13433: testing Searching for socks library in FIND_LINKAGE(socks,) ..." 1>&5 +echo "${as_me:-configure}:13557: testing Searching for socks library in FIND_LINKAGE(socks,) ..." 1>&5 cf_save_LIBS="$LIBS" cf_save_LDFLAGS="$LDFLAGS" @@ -13505,13 +13629,13 @@ cf_search="$cf_library_path_list $cf_search" if test -d $cf_cv_library_path_socks ; then test -n "$verbose" && echo " ... testing $cf_cv_library_path_socks" 1>&6 -echo "${as_me:-configure}:13508: testing ... testing $cf_cv_library_path_socks ..." 1>&5 +echo "${as_me:-configure}:13632: testing ... testing $cf_cv_library_path_socks ..." 1>&5 CPPFLAGS="$cf_test_CPPFLAGS" LIBS="-lsocks $cf_save_LIBS" LDFLAGS="$cf_save_LDFLAGS -L$cf_cv_library_path_socks" cat >conftest.$ac_ext <<_ACEOF -#line 13514 "configure" +#line 13638 "configure" #include "confdefs.h" #include <stdio.h> @@ -13527,21 +13651,21 @@ main (void) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:13530: \"$ac_link\"") >&5 +if { (eval echo "$as_me:13654: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:13533: \$? = $ac_status" >&5 + echo "$as_me:13657: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:13536: \"$ac_try\"") >&5 + { (eval echo "$as_me:13660: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:13539: \$? = $ac_status" >&5 + echo "$as_me:13663: \$? = $ac_status" >&5 (exit $ac_status); }; }; then test -n "$verbose" && echo " ... found socks library in $cf_cv_library_path_socks" 1>&6 -echo "${as_me:-configure}:13544: testing ... found socks library in $cf_cv_library_path_socks ..." 1>&5 +echo "${as_me:-configure}:13668: testing ... found socks library in $cf_cv_library_path_socks ..." 1>&5 cf_cv_find_linkage_socks=yes cf_cv_library_file_socks="-lsocks" @@ -13603,7 +13727,7 @@ if test -n "$cf_cv_header_path_socks" ; then CPPFLAGS="${CPPFLAGS}-I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 13606 "configure" +#line 13730 "configure" #include "confdefs.h" #include <stdio.h> int @@ -13615,16 +13739,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:13618: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:13742: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:13621: \$? = $ac_status" >&5 + echo "$as_me:13745: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:13624: \"$ac_try\"") >&5 + { (eval echo "$as_me:13748: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:13627: \$? = $ac_status" >&5 + echo "$as_me:13751: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -13641,7 +13765,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}:13644: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:13768: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -13677,7 +13801,7 @@ if test -n "$cf_cv_library_path_socks" ; then if test "$cf_have_libdir" = no ; then test -n "$verbose" && echo " adding $cf_add_libdir to library-path" 1>&6 -echo "${as_me:-configure}:13680: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:13804: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -13702,7 +13826,7 @@ done LIBS="$cf_add_libs" else -{ echo "$as_me:13705: WARNING: Cannot find socks library" >&5 +{ echo "$as_me:13829: WARNING: Cannot find socks library" >&5 echo "$as_me: WARNING: Cannot find socks library" >&2;} fi @@ -13745,7 +13869,7 @@ cat >>confdefs.h <<\EOF EOF else - { { echo "$as_me:13748: error: cannot link with socks library" >&5 + { { echo "$as_me:13872: error: cannot link with socks library" >&5 echo "$as_me: error: cannot link with socks library" >&2;} { (exit 1); exit 1; }; } fi @@ -13789,7 +13913,7 @@ if test -n "$cf_searchpath/include" ; then CPPFLAGS="${CPPFLAGS}-I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 13792 "configure" +#line 13916 "configure" #include "confdefs.h" #include <stdio.h> int @@ -13801,16 +13925,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:13804: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:13928: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:13807: \$? = $ac_status" >&5 + echo "$as_me:13931: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:13810: \"$ac_try\"") >&5 + { (eval echo "$as_me:13934: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:13813: \$? = $ac_status" >&5 + echo "$as_me:13937: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -13827,7 +13951,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}:13830: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:13954: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -13873,7 +13997,7 @@ if test -n "$cf_searchpath/../include" ; then CPPFLAGS="${CPPFLAGS}-I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 13876 "configure" +#line 14000 "configure" #include "confdefs.h" #include <stdio.h> int @@ -13885,16 +14009,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:13888: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:14012: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:13891: \$? = $ac_status" >&5 + echo "$as_me:14015: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:13894: \"$ac_try\"") >&5 + { (eval echo "$as_me:14018: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:13897: \$? = $ac_status" >&5 + echo "$as_me:14021: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -13911,7 +14035,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}:13914: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:14038: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -13929,7 +14053,7 @@ echo "${as_me:-configure}:13914: testing adding $cf_add_incdir to include-path . fi else -{ { echo "$as_me:13932: error: cannot find socks5 library under $cf_cv_use_libsocks5" >&5 +{ { echo "$as_me:14056: error: cannot find socks5 library under $cf_cv_use_libsocks5" >&5 echo "$as_me: error: cannot find socks5 library under $cf_cv_use_libsocks5" >&2;} { (exit 1); exit 1; }; } fi @@ -13954,7 +14078,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}:13957: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:14081: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -13983,7 +14107,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}:13986: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:14110: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -13992,7 +14116,7 @@ echo "${as_me:-configure}:13986: testing adding $cf_add_libdir to library-path . fi else -{ { echo "$as_me:13995: error: cannot find socks5 library under $cf_cv_use_libsocks5" >&5 +{ { echo "$as_me:14119: error: cannot find socks5 library under $cf_cv_use_libsocks5" >&5 echo "$as_me: error: cannot find socks5 library under $cf_cv_use_libsocks5" >&2;} { (exit 1); exit 1; }; } fi @@ -14025,11 +14149,11 @@ cat >>confdefs.h <<\EOF #define SOCKS 1 EOF -echo "$as_me:14028: checking if the socks library uses socks4 prefix" >&5 +echo "$as_me:14152: checking if the socks library uses socks4 prefix" >&5 echo $ECHO_N "checking if the socks library uses socks4 prefix... $ECHO_C" >&6 cf_use_socks4=error cat >conftest.$ac_ext <<_ACEOF -#line 14032 "configure" +#line 14156 "configure" #include "confdefs.h" #include <socks.h> @@ -14043,16 +14167,16 @@ main (void) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:14046: \"$ac_link\"") >&5 +if { (eval echo "$as_me:14170: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:14049: \$? = $ac_status" >&5 + echo "$as_me:14173: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:14052: \"$ac_try\"") >&5 + { (eval echo "$as_me:14176: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:14055: \$? = $ac_status" >&5 + echo "$as_me:14179: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cat >>confdefs.h <<\EOF @@ -14064,7 +14188,7 @@ else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 cat >conftest.$ac_ext <<_ACEOF -#line 14067 "configure" +#line 14191 "configure" #include "confdefs.h" #include <socks.h> int @@ -14076,29 +14200,29 @@ SOCKSinit((char *)0) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:14079: \"$ac_link\"") >&5 +if { (eval echo "$as_me:14203: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:14082: \$? = $ac_status" >&5 + echo "$as_me:14206: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:14085: \"$ac_try\"") >&5 + { (eval echo "$as_me:14209: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:14088: \$? = $ac_status" >&5 + echo "$as_me:14212: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_use_socks4=no else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 -{ { echo "$as_me:14094: error: Cannot link with socks5 library" >&5 +{ { echo "$as_me:14218: error: Cannot link with socks5 library" >&5 echo "$as_me: error: Cannot link with socks5 library" >&2;} { (exit 1); exit 1; }; } fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext -echo "$as_me:14101: result: $cf_use_socks4" >&5 +echo "$as_me:14225: result: $cf_use_socks4" >&5 echo "${ECHO_T}$cf_use_socks4" >&6 if test "$cf_use_socks4" = "yes" ; then @@ -14153,10 +14277,10 @@ EOF fi -echo "$as_me:14156: checking if socks5p.h is available" >&5 +echo "$as_me:14280: checking if socks5p.h is available" >&5 echo $ECHO_N "checking if socks5p.h is available... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF -#line 14159 "configure" +#line 14283 "configure" #include "confdefs.h" #define INCLUDE_PROTOTYPES @@ -14171,16 +14295,16 @@ main (void) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:14174: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:14298: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:14177: \$? = $ac_status" >&5 + echo "$as_me:14301: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:14180: \"$ac_try\"") >&5 + { (eval echo "$as_me:14304: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:14183: \$? = $ac_status" >&5 + echo "$as_me:14307: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_use_socks5p_h=yes else @@ -14189,7 +14313,7 @@ cat conftest.$ac_ext >&5 cf_use_socks5p_h=no fi rm -f conftest.$ac_objext conftest.$ac_ext -echo "$as_me:14192: result: $cf_use_socks5p_h" >&5 +echo "$as_me:14316: result: $cf_use_socks5p_h" >&5 echo "${ECHO_T}$cf_use_socks5p_h" >&6 test "$cf_use_socks5p_h" = yes && @@ -14201,14 +14325,14 @@ else cf_test_netlibs=no -echo "$as_me:14204: checking for network libraries" >&5 +echo "$as_me:14328: checking for network libraries" >&5 echo $ECHO_N "checking for network libraries... $ECHO_C" >&6 if test "${cf_cv_netlibs+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else -echo "$as_me:14211: result: working..." >&5 +echo "$as_me:14335: result: working..." >&5 echo "${ECHO_T}working..." >&6 cf_cv_netlibs="" @@ -14220,23 +14344,23 @@ case $host_os in for ac_header in windows.h winsock.h winsock2.h do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` -echo "$as_me:14223: checking for $ac_header" >&5 +echo "$as_me:14347: 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 14229 "configure" +#line 14353 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:14233: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:14357: \"$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:14239: \$? = $ac_status" >&5 + echo "$as_me:14363: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -14255,7 +14379,7 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:14258: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:14382: 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 @@ -14290,7 +14414,7 @@ done LIBS="$cf_add_libs" cat >conftest.$ac_ext <<_ACEOF -#line 14293 "configure" +#line 14417 "configure" #include "confdefs.h" #ifdef HAVE_WINDOWS_H @@ -14317,22 +14441,22 @@ main (void) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:14320: \"$ac_link\"") >&5 +if { (eval echo "$as_me:14444: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:14323: \$? = $ac_status" >&5 + echo "$as_me:14447: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:14326: \"$ac_try\"") >&5 + { (eval echo "$as_me:14450: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:14329: \$? = $ac_status" >&5 + echo "$as_me:14453: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_netlibs="$cf_winsock_lib $cf_cv_netlibs" else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 -{ { echo "$as_me:14335: error: Cannot link against winsock library" >&5 +{ { echo "$as_me:14459: error: Cannot link against winsock library" >&5 echo "$as_me: error: Cannot link against winsock library" >&2;} { (exit 1); exit 1; }; } fi @@ -14345,13 +14469,13 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext for ac_func in gethostname do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` -echo "$as_me:14348: checking for $ac_func" >&5 +echo "$as_me:14472: 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 14354 "configure" +#line 14478 "configure" #include "confdefs.h" #define $ac_func autoconf_temporary #include <limits.h> /* least-intrusive standard header which defines gcc2 __stub macros */ @@ -14382,16 +14506,16 @@ main (void) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:14385: \"$ac_link\"") >&5 +if { (eval echo "$as_me:14509: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:14388: \$? = $ac_status" >&5 + echo "$as_me:14512: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:14391: \"$ac_try\"") >&5 + { (eval echo "$as_me:14515: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:14394: \$? = $ac_status" >&5 + echo "$as_me:14518: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else @@ -14401,7 +14525,7 @@ eval "$as_ac_var=no" fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:14404: result: `eval echo '${'$as_ac_var'}'`" >&5 +echo "$as_me:14528: 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 @@ -14410,7 +14534,7 @@ EOF else -echo "$as_me:14413: checking for gethostname in -lnsl" >&5 +echo "$as_me:14537: checking for gethostname in -lnsl" >&5 echo $ECHO_N "checking for gethostname in -lnsl... $ECHO_C" >&6 if test "${ac_cv_lib_nsl_gethostname+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -14418,7 +14542,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lnsl $cf_cv_netlibs $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 14421 "configure" +#line 14545 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -14437,16 +14561,16 @@ gethostname (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:14440: \"$ac_link\"") >&5 +if { (eval echo "$as_me:14564: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:14443: \$? = $ac_status" >&5 + echo "$as_me:14567: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:14446: \"$ac_try\"") >&5 + { (eval echo "$as_me:14570: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:14449: \$? = $ac_status" >&5 + echo "$as_me:14573: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_nsl_gethostname=yes else @@ -14457,7 +14581,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:14460: result: $ac_cv_lib_nsl_gethostname" >&5 +echo "$as_me:14584: result: $ac_cv_lib_nsl_gethostname" >&5 echo "${ECHO_T}$ac_cv_lib_nsl_gethostname" >&6 if test $ac_cv_lib_nsl_gethostname = yes; then @@ -14474,7 +14598,7 @@ else ac_cv_func_gethostname=unknown unset ac_cv_func_gethostname 2>/dev/null -echo "$as_me:14477: checking for gethostname in -lsocket" >&5 +echo "$as_me:14601: checking for gethostname in -lsocket" >&5 echo $ECHO_N "checking for gethostname in -lsocket... $ECHO_C" >&6 if test "${ac_cv_lib_socket_gethostname+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -14482,7 +14606,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lsocket $cf_cv_netlibs $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 14485 "configure" +#line 14609 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -14501,16 +14625,16 @@ gethostname (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:14504: \"$ac_link\"") >&5 +if { (eval echo "$as_me:14628: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:14507: \$? = $ac_status" >&5 + echo "$as_me:14631: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:14510: \"$ac_try\"") >&5 + { (eval echo "$as_me:14634: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:14513: \$? = $ac_status" >&5 + echo "$as_me:14637: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_socket_gethostname=yes else @@ -14521,7 +14645,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:14524: result: $ac_cv_lib_socket_gethostname" >&5 +echo "$as_me:14648: result: $ac_cv_lib_socket_gethostname" >&5 echo "${ECHO_T}$ac_cv_lib_socket_gethostname" >&6 if test $ac_cv_lib_socket_gethostname = yes; then @@ -14545,7 +14669,7 @@ fi fi done - echo "$as_me:14548: checking for main in -linet" >&5 + echo "$as_me:14672: checking for main in -linet" >&5 echo $ECHO_N "checking for main in -linet... $ECHO_C" >&6 if test "${ac_cv_lib_inet_main+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -14553,7 +14677,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-linet $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 14556 "configure" +#line 14680 "configure" #include "confdefs.h" int @@ -14565,16 +14689,16 @@ main (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:14568: \"$ac_link\"") >&5 +if { (eval echo "$as_me:14692: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:14571: \$? = $ac_status" >&5 + echo "$as_me:14695: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:14574: \"$ac_try\"") >&5 + { (eval echo "$as_me:14698: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:14577: \$? = $ac_status" >&5 + echo "$as_me:14701: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_inet_main=yes else @@ -14585,7 +14709,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:14588: result: $ac_cv_lib_inet_main" >&5 +echo "$as_me:14712: result: $ac_cv_lib_inet_main" >&5 echo "${ECHO_T}$ac_cv_lib_inet_main" >&6 if test $ac_cv_lib_inet_main = yes; then cf_cv_netlibs="-linet $cf_cv_netlibs" @@ -14596,13 +14720,13 @@ fi for ac_func in socket do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` -echo "$as_me:14599: checking for $ac_func" >&5 +echo "$as_me:14723: 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 14605 "configure" +#line 14729 "configure" #include "confdefs.h" #define $ac_func autoconf_temporary #include <limits.h> /* least-intrusive standard header which defines gcc2 __stub macros */ @@ -14633,16 +14757,16 @@ main (void) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:14636: \"$ac_link\"") >&5 +if { (eval echo "$as_me:14760: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:14639: \$? = $ac_status" >&5 + echo "$as_me:14763: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:14642: \"$ac_try\"") >&5 + { (eval echo "$as_me:14766: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:14645: \$? = $ac_status" >&5 + echo "$as_me:14769: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else @@ -14652,7 +14776,7 @@ eval "$as_ac_var=no" fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:14655: result: `eval echo '${'$as_ac_var'}'`" >&5 +echo "$as_me:14779: 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 @@ -14661,7 +14785,7 @@ EOF else -echo "$as_me:14664: checking for socket in -lsocket" >&5 +echo "$as_me:14788: checking for socket in -lsocket" >&5 echo $ECHO_N "checking for socket in -lsocket... $ECHO_C" >&6 if test "${ac_cv_lib_socket_socket+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -14669,7 +14793,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lsocket $cf_cv_netlibs $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 14672 "configure" +#line 14796 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -14688,16 +14812,16 @@ socket (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:14691: \"$ac_link\"") >&5 +if { (eval echo "$as_me:14815: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:14694: \$? = $ac_status" >&5 + echo "$as_me:14818: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:14697: \"$ac_try\"") >&5 + { (eval echo "$as_me:14821: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:14700: \$? = $ac_status" >&5 + echo "$as_me:14824: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_socket_socket=yes else @@ -14708,7 +14832,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:14711: result: $ac_cv_lib_socket_socket" >&5 +echo "$as_me:14835: result: $ac_cv_lib_socket_socket" >&5 echo "${ECHO_T}$ac_cv_lib_socket_socket" >&6 if test $ac_cv_lib_socket_socket = yes; then @@ -14725,7 +14849,7 @@ else ac_cv_func_socket=unknown unset ac_cv_func_socket 2>/dev/null -echo "$as_me:14728: checking for socket in -lbsd" >&5 +echo "$as_me:14852: checking for socket in -lbsd" >&5 echo $ECHO_N "checking for socket in -lbsd... $ECHO_C" >&6 if test "${ac_cv_lib_bsd_socket+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -14733,7 +14857,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lbsd $cf_cv_netlibs $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 14736 "configure" +#line 14860 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -14752,16 +14876,16 @@ socket (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:14755: \"$ac_link\"") >&5 +if { (eval echo "$as_me:14879: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:14758: \$? = $ac_status" >&5 + echo "$as_me:14882: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:14761: \"$ac_try\"") >&5 + { (eval echo "$as_me:14885: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:14764: \$? = $ac_status" >&5 + echo "$as_me:14888: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_bsd_socket=yes else @@ -14772,7 +14896,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:14775: result: $ac_cv_lib_bsd_socket" >&5 +echo "$as_me:14899: result: $ac_cv_lib_bsd_socket" >&5 echo "${ECHO_T}$ac_cv_lib_bsd_socket" >&6 if test $ac_cv_lib_bsd_socket = yes; then @@ -14801,13 +14925,13 @@ done for ac_func in gethostbyname do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` -echo "$as_me:14804: checking for $ac_func" >&5 +echo "$as_me:14928: 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 14810 "configure" +#line 14934 "configure" #include "confdefs.h" #define $ac_func autoconf_temporary #include <limits.h> /* least-intrusive standard header which defines gcc2 __stub macros */ @@ -14838,16 +14962,16 @@ main (void) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:14841: \"$ac_link\"") >&5 +if { (eval echo "$as_me:14965: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:14844: \$? = $ac_status" >&5 + echo "$as_me:14968: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:14847: \"$ac_try\"") >&5 + { (eval echo "$as_me:14971: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:14850: \$? = $ac_status" >&5 + echo "$as_me:14974: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else @@ -14857,7 +14981,7 @@ eval "$as_ac_var=no" fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:14860: result: `eval echo '${'$as_ac_var'}'`" >&5 +echo "$as_me:14984: 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 @@ -14866,7 +14990,7 @@ EOF else -echo "$as_me:14869: checking for gethostbyname in -lnsl" >&5 +echo "$as_me:14993: 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 @@ -14874,7 +14998,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lnsl $cf_cv_netlibs $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 14877 "configure" +#line 15001 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -14893,16 +15017,16 @@ gethostbyname (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:14896: \"$ac_link\"") >&5 +if { (eval echo "$as_me:15020: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:14899: \$? = $ac_status" >&5 + echo "$as_me:15023: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:14902: \"$ac_try\"") >&5 + { (eval echo "$as_me:15026: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:14905: \$? = $ac_status" >&5 + echo "$as_me:15029: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_nsl_gethostbyname=yes else @@ -14913,7 +15037,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:14916: result: $ac_cv_lib_nsl_gethostbyname" >&5 +echo "$as_me:15040: 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 @@ -14938,13 +15062,13 @@ done for ac_func in inet_ntoa do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` -echo "$as_me:14941: checking for $ac_func" >&5 +echo "$as_me:15065: 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 14947 "configure" +#line 15071 "configure" #include "confdefs.h" #define $ac_func autoconf_temporary #include <limits.h> /* least-intrusive standard header which defines gcc2 __stub macros */ @@ -14975,16 +15099,16 @@ main (void) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:14978: \"$ac_link\"") >&5 +if { (eval echo "$as_me:15102: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:14981: \$? = $ac_status" >&5 + echo "$as_me:15105: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:14984: \"$ac_try\"") >&5 + { (eval echo "$as_me:15108: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:14987: \$? = $ac_status" >&5 + echo "$as_me:15111: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else @@ -14994,7 +15118,7 @@ eval "$as_ac_var=no" fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:14997: result: `eval echo '${'$as_ac_var'}'`" >&5 +echo "$as_me:15121: 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 @@ -15003,7 +15127,7 @@ EOF else -echo "$as_me:15006: checking for inet_ntoa in -lnsl" >&5 +echo "$as_me:15130: checking for inet_ntoa in -lnsl" >&5 echo $ECHO_N "checking for inet_ntoa in -lnsl... $ECHO_C" >&6 if test "${ac_cv_lib_nsl_inet_ntoa+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -15011,7 +15135,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lnsl $cf_cv_netlibs $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 15014 "configure" +#line 15138 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -15030,16 +15154,16 @@ inet_ntoa (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:15033: \"$ac_link\"") >&5 +if { (eval echo "$as_me:15157: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:15036: \$? = $ac_status" >&5 + echo "$as_me:15160: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:15039: \"$ac_try\"") >&5 + { (eval echo "$as_me:15163: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:15042: \$? = $ac_status" >&5 + echo "$as_me:15166: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_nsl_inet_ntoa=yes else @@ -15050,7 +15174,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:15053: result: $ac_cv_lib_nsl_inet_ntoa" >&5 +echo "$as_me:15177: result: $ac_cv_lib_nsl_inet_ntoa" >&5 echo "${ECHO_T}$ac_cv_lib_nsl_inet_ntoa" >&6 if test $ac_cv_lib_nsl_inet_ntoa = yes; then @@ -15075,13 +15199,13 @@ done for ac_func in gethostbyname do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` -echo "$as_me:15078: checking for $ac_func" >&5 +echo "$as_me:15202: 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 15084 "configure" +#line 15208 "configure" #include "confdefs.h" #define $ac_func autoconf_temporary #include <limits.h> /* least-intrusive standard header which defines gcc2 __stub macros */ @@ -15112,16 +15236,16 @@ main (void) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:15115: \"$ac_link\"") >&5 +if { (eval echo "$as_me:15239: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:15118: \$? = $ac_status" >&5 + echo "$as_me:15242: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:15121: \"$ac_try\"") >&5 + { (eval echo "$as_me:15245: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:15124: \$? = $ac_status" >&5 + echo "$as_me:15248: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else @@ -15131,7 +15255,7 @@ eval "$as_ac_var=no" fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:15134: result: `eval echo '${'$as_ac_var'}'`" >&5 +echo "$as_me:15258: 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 @@ -15140,7 +15264,7 @@ EOF else -echo "$as_me:15143: checking for gethostbyname in -lnetwork" >&5 +echo "$as_me:15267: checking for gethostbyname in -lnetwork" >&5 echo $ECHO_N "checking for gethostbyname in -lnetwork... $ECHO_C" >&6 if test "${ac_cv_lib_network_gethostbyname+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -15148,7 +15272,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lnetwork $cf_cv_netlibs $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 15151 "configure" +#line 15275 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -15167,16 +15291,16 @@ gethostbyname (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:15170: \"$ac_link\"") >&5 +if { (eval echo "$as_me:15294: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:15173: \$? = $ac_status" >&5 + echo "$as_me:15297: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:15176: \"$ac_try\"") >&5 + { (eval echo "$as_me:15300: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:15179: \$? = $ac_status" >&5 + echo "$as_me:15303: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_network_gethostbyname=yes else @@ -15187,7 +15311,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:15190: result: $ac_cv_lib_network_gethostbyname" >&5 +echo "$as_me:15314: result: $ac_cv_lib_network_gethostbyname" >&5 echo "${ECHO_T}$ac_cv_lib_network_gethostbyname" >&6 if test $ac_cv_lib_network_gethostbyname = yes; then @@ -15212,13 +15336,13 @@ done for ac_func in strcasecmp do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` -echo "$as_me:15215: checking for $ac_func" >&5 +echo "$as_me:15339: 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 15221 "configure" +#line 15345 "configure" #include "confdefs.h" #define $ac_func autoconf_temporary #include <limits.h> /* least-intrusive standard header which defines gcc2 __stub macros */ @@ -15249,16 +15373,16 @@ main (void) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:15252: \"$ac_link\"") >&5 +if { (eval echo "$as_me:15376: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:15255: \$? = $ac_status" >&5 + echo "$as_me:15379: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:15258: \"$ac_try\"") >&5 + { (eval echo "$as_me:15382: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:15261: \$? = $ac_status" >&5 + echo "$as_me:15385: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else @@ -15268,7 +15392,7 @@ eval "$as_ac_var=no" fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:15271: result: `eval echo '${'$as_ac_var'}'`" >&5 +echo "$as_me:15395: 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 @@ -15277,7 +15401,7 @@ EOF else -echo "$as_me:15280: checking for strcasecmp in -lresolv" >&5 +echo "$as_me:15404: checking for strcasecmp in -lresolv" >&5 echo $ECHO_N "checking for strcasecmp in -lresolv... $ECHO_C" >&6 if test "${ac_cv_lib_resolv_strcasecmp+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -15285,7 +15409,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lresolv $cf_cv_netlibs $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 15288 "configure" +#line 15412 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -15304,16 +15428,16 @@ strcasecmp (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:15307: \"$ac_link\"") >&5 +if { (eval echo "$as_me:15431: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:15310: \$? = $ac_status" >&5 + echo "$as_me:15434: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:15313: \"$ac_try\"") >&5 + { (eval echo "$as_me:15437: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:15316: \$? = $ac_status" >&5 + echo "$as_me:15440: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_resolv_strcasecmp=yes else @@ -15324,7 +15448,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:15327: result: $ac_cv_lib_resolv_strcasecmp" >&5 +echo "$as_me:15451: result: $ac_cv_lib_resolv_strcasecmp" >&5 echo "${ECHO_T}$ac_cv_lib_resolv_strcasecmp" >&6 if test $ac_cv_lib_resolv_strcasecmp = yes; then @@ -15381,14 +15505,14 @@ test $cf_test_netlibs = no && echo "$cf_cv_netlibs" >&6 fi -echo "$as_me:15384: checking for inet_aton function" >&5 +echo "$as_me:15508: checking for inet_aton function" >&5 echo $ECHO_N "checking for inet_aton function... $ECHO_C" >&6 if test "${cf_cv_have_inet_aton+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 15391 "configure" +#line 15515 "configure" #include "confdefs.h" #if defined(__MINGW32__) @@ -15423,16 +15547,16 @@ inet_aton(0, (struct in_addr *)0) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:15426: \"$ac_link\"") >&5 +if { (eval echo "$as_me:15550: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:15429: \$? = $ac_status" >&5 + echo "$as_me:15553: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:15432: \"$ac_try\"") >&5 + { (eval echo "$as_me:15556: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:15435: \$? = $ac_status" >&5 + echo "$as_me:15559: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_have_inet_aton=yes else @@ -15442,7 +15566,7 @@ cf_cv_have_inet_aton=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:15445: result: $cf_cv_have_inet_aton" >&5 +echo "$as_me:15569: result: $cf_cv_have_inet_aton" >&5 echo "${ECHO_T}$cf_cv_have_inet_aton" >&6 if test "$cf_cv_have_inet_aton" = yes ; then @@ -15451,14 +15575,14 @@ cat >>confdefs.h <<\EOF EOF else - echo "$as_me:15454: checking for inet_addr function" >&5 + echo "$as_me:15578: checking for inet_addr function" >&5 echo $ECHO_N "checking for inet_addr function... $ECHO_C" >&6 if test "${cf_cv_have_inet_addr+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 15461 "configure" +#line 15585 "configure" #include "confdefs.h" #if defined(__MINGW32__) @@ -15493,16 +15617,16 @@ inet_addr(0) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:15496: \"$ac_link\"") >&5 +if { (eval echo "$as_me:15620: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:15499: \$? = $ac_status" >&5 + echo "$as_me:15623: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:15502: \"$ac_try\"") >&5 + { (eval echo "$as_me:15626: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:15505: \$? = $ac_status" >&5 + echo "$as_me:15629: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_have_inet_addr=yes else @@ -15512,10 +15636,10 @@ cf_cv_have_inet_addr=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:15515: result: $cf_cv_have_inet_addr" >&5 +echo "$as_me:15639: result: $cf_cv_have_inet_addr" >&5 echo "${ECHO_T}$cf_cv_have_inet_addr" >&6 if test "$cf_cv_have_inet_addr" = no ; then - echo "$as_me:15518: checking for library with inet_addr" >&5 + echo "$as_me:15642: checking for library with inet_addr" >&5 echo $ECHO_N "checking for library with inet_addr... $ECHO_C" >&6 if test "${cf_cv_lib_inet_addr+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -15526,7 +15650,7 @@ else do LIBS="$cf_save_LIBS $cf_inetlib" cat >conftest.$ac_ext <<_ACEOF -#line 15529 "configure" +#line 15653 "configure" #include "confdefs.h" #include <sys/types.h> #include <sys/socket.h> @@ -15542,16 +15666,16 @@ inet_addr(0) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:15545: \"$ac_link\"") >&5 +if { (eval echo "$as_me:15669: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:15548: \$? = $ac_status" >&5 + echo "$as_me:15672: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:15551: \"$ac_try\"") >&5 + { (eval echo "$as_me:15675: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:15554: \$? = $ac_status" >&5 + echo "$as_me:15678: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_lib_inet_addr=$cf_inetlib else @@ -15565,7 +15689,7 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext done fi -echo "$as_me:15568: result: $cf_cv_lib_inet_addr" >&5 +echo "$as_me:15692: result: $cf_cv_lib_inet_addr" >&5 echo "${ECHO_T}$cf_cv_lib_inet_addr" >&6 if test "$cf_cv_lib_inet_addr" != no ; then @@ -15586,13 +15710,13 @@ done LIBS="$cf_add_libs" else - { echo "$as_me:15589: WARNING: Unable to find library for inet_addr function" >&5 + { echo "$as_me:15713: WARNING: Unable to find library for inet_addr function" >&5 echo "$as_me: WARNING: Unable to find library for inet_addr function" >&2;} fi fi fi -echo "$as_me:15595: checking if you want to use pkg-config" >&5 +echo "$as_me:15719: checking if you want to use pkg-config" >&5 echo $ECHO_N "checking if you want to use pkg-config... $ECHO_C" >&6 # Check whether --with-pkg-config or --without-pkg-config was given. @@ -15602,7 +15726,7 @@ if test "${with_pkg_config+set}" = set; then else cf_pkg_config=yes fi; -echo "$as_me:15605: result: $cf_pkg_config" >&5 +echo "$as_me:15729: result: $cf_pkg_config" >&5 echo "${ECHO_T}$cf_pkg_config" >&6 case $cf_pkg_config in @@ -15614,7 +15738,7 @@ case $cf_pkg_config in if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}pkg-config", so it can be a program name with args. set dummy ${ac_tool_prefix}pkg-config; ac_word=$2 -echo "$as_me:15617: checking for $ac_word" >&5 +echo "$as_me:15741: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_path_PKG_CONFIG+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -15631,7 +15755,7 @@ for ac_dir in $ac_dummy; do test -z "$ac_dir" && ac_dir=. if $as_executable_p "$ac_dir/$ac_word"; then ac_cv_path_PKG_CONFIG="$ac_dir/$ac_word" - echo "$as_me:15634: found $ac_dir/$ac_word" >&5 + echo "$as_me:15758: found $ac_dir/$ac_word" >&5 break fi done @@ -15642,10 +15766,10 @@ fi PKG_CONFIG=$ac_cv_path_PKG_CONFIG if test -n "$PKG_CONFIG"; then - echo "$as_me:15645: result: $PKG_CONFIG" >&5 + echo "$as_me:15769: result: $PKG_CONFIG" >&5 echo "${ECHO_T}$PKG_CONFIG" >&6 else - echo "$as_me:15648: result: no" >&5 + echo "$as_me:15772: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -15654,7 +15778,7 @@ if test -z "$ac_cv_path_PKG_CONFIG"; then ac_pt_PKG_CONFIG=$PKG_CONFIG # Extract the first word of "pkg-config", so it can be a program name with args. set dummy pkg-config; ac_word=$2 -echo "$as_me:15657: checking for $ac_word" >&5 +echo "$as_me:15781: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_path_ac_pt_PKG_CONFIG+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -15671,7 +15795,7 @@ for ac_dir in $ac_dummy; do test -z "$ac_dir" && ac_dir=. if $as_executable_p "$ac_dir/$ac_word"; then ac_cv_path_ac_pt_PKG_CONFIG="$ac_dir/$ac_word" - echo "$as_me:15674: found $ac_dir/$ac_word" >&5 + echo "$as_me:15798: found $ac_dir/$ac_word" >&5 break fi done @@ -15683,10 +15807,10 @@ fi ac_pt_PKG_CONFIG=$ac_cv_path_ac_pt_PKG_CONFIG if test -n "$ac_pt_PKG_CONFIG"; then - echo "$as_me:15686: result: $ac_pt_PKG_CONFIG" >&5 + echo "$as_me:15810: result: $ac_pt_PKG_CONFIG" >&5 echo "${ECHO_T}$ac_pt_PKG_CONFIG" >&6 else - echo "$as_me:15689: result: no" >&5 + echo "$as_me:15813: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -15729,14 +15853,14 @@ case ".$PKG_CONFIG" in PKG_CONFIG=`echo $PKG_CONFIG | sed -e s%NONE%$cf_path_syntax%` ;; (*) - { { echo "$as_me:15732: error: expected a pathname, not \"$PKG_CONFIG\"" >&5 + { { echo "$as_me:15856: error: expected a pathname, not \"$PKG_CONFIG\"" >&5 echo "$as_me: error: expected a pathname, not \"$PKG_CONFIG\"" >&2;} { (exit 1); exit 1; }; } ;; esac elif test "x$cf_pkg_config" != xno ; then - { echo "$as_me:15739: WARNING: pkg-config is not installed" >&5 + { echo "$as_me:15863: WARNING: pkg-config is not installed" >&5 echo "$as_me: WARNING: pkg-config is not installed" >&2;} fi @@ -15784,7 +15908,7 @@ if test -n "$cf_searchpath/include" ; then CPPFLAGS="${CPPFLAGS}-I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 15787 "configure" +#line 15911 "configure" #include "confdefs.h" #include <stdio.h> int @@ -15796,16 +15920,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:15799: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:15923: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:15802: \$? = $ac_status" >&5 + echo "$as_me:15926: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:15805: \"$ac_try\"") >&5 + { (eval echo "$as_me:15929: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:15808: \$? = $ac_status" >&5 + echo "$as_me:15932: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -15822,7 +15946,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}:15825: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:15949: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -15868,7 +15992,7 @@ if test -n "$cf_searchpath/../include" ; then CPPFLAGS="${CPPFLAGS}-I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 15871 "configure" +#line 15995 "configure" #include "confdefs.h" #include <stdio.h> int @@ -15880,16 +16004,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:15883: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:16007: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:15886: \$? = $ac_status" >&5 + echo "$as_me:16010: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:15889: \"$ac_try\"") >&5 + { (eval echo "$as_me:16013: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:15892: \$? = $ac_status" >&5 + echo "$as_me:16016: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -15906,7 +16030,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}:15909: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:16033: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -15924,7 +16048,7 @@ echo "${as_me:-configure}:15909: testing adding $cf_add_incdir to include-path . fi else -{ { echo "$as_me:15927: error: cannot find ssl library under $cf_cv_use_libssl" >&5 +{ { echo "$as_me:16051: error: cannot find ssl library under $cf_cv_use_libssl" >&5 echo "$as_me: error: cannot find ssl library under $cf_cv_use_libssl" >&2;} { (exit 1); exit 1; }; } fi @@ -15949,7 +16073,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}:15952: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:16076: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -15978,7 +16102,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}:15981: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:16105: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -15987,7 +16111,7 @@ echo "${as_me:-configure}:15981: testing adding $cf_add_libdir to library-path . fi else -{ { echo "$as_me:15990: error: cannot find ssl library under $cf_cv_use_libssl" >&5 +{ { echo "$as_me:16114: error: cannot find ssl library under $cf_cv_use_libssl" >&5 echo "$as_me: error: cannot find ssl library under $cf_cv_use_libssl" >&2;} { (exit 1); exit 1; }; } fi @@ -16004,15 +16128,15 @@ esac cf_cv_pkg_ssl= for cf_try_package in openssl libssl do - echo "$as_me:16007: checking pkg-config for $cf_try_package" >&5 + echo "$as_me:16131: checking pkg-config for $cf_try_package" >&5 echo $ECHO_N "checking pkg-config for $cf_try_package... $ECHO_C" >&6 if "$PKG_CONFIG" --exists $cf_try_package ; then cf_cv_pkg_ssl=$cf_try_package - echo "$as_me:16011: result: yes" >&5 + echo "$as_me:16135: result: yes" >&5 echo "${ECHO_T}yes" >&6 break else - echo "$as_me:16015: result: no" >&5 + echo "$as_me:16139: result: no" >&5 echo "${ECHO_T}no" >&6 fi done @@ -16156,7 +16280,7 @@ fi esac test -n "$verbose" && echo " adding $cf_libs_ssl to LIBS" 1>&6 -echo "${as_me:-configure}:16159: testing adding $cf_libs_ssl to LIBS ..." 1>&5 +echo "${as_me:-configure}:16283: testing adding $cf_libs_ssl to LIBS ..." 1>&5 cf_add_libs="$LIBS" # reverse order @@ -16192,7 +16316,7 @@ LIBS="$cf_add_libs" (*-ldl) ;; (*) - echo "$as_me:16195: checking for dlsym in -ldl" >&5 + echo "$as_me:16319: checking for dlsym in -ldl" >&5 echo $ECHO_N "checking for dlsym in -ldl... $ECHO_C" >&6 if test "${ac_cv_lib_dl_dlsym+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -16200,7 +16324,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-ldl $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 16203 "configure" +#line 16327 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -16219,16 +16343,16 @@ dlsym (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:16222: \"$ac_link\"") >&5 +if { (eval echo "$as_me:16346: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:16225: \$? = $ac_status" >&5 + echo "$as_me:16349: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:16228: \"$ac_try\"") >&5 + { (eval echo "$as_me:16352: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:16231: \$? = $ac_status" >&5 + echo "$as_me:16355: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_dl_dlsym=yes else @@ -16239,7 +16363,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:16242: result: $ac_cv_lib_dl_dlsym" >&5 +echo "$as_me:16366: result: $ac_cv_lib_dl_dlsym" >&5 echo "${ECHO_T}$ac_cv_lib_dl_dlsym" >&6 if test $ac_cv_lib_dl_dlsym = yes; then cf_extra_ssl_libs="$cf_extra_ssl_libs -ldl" @@ -16255,12 +16379,12 @@ fi cf_cv_header_path_ssl= cf_cv_library_path_ssl= -echo "${as_me:-configure}:16258: testing Starting FIND_LINKAGE(ssl,openssl) ..." 1>&5 +echo "${as_me:-configure}:16382: testing Starting FIND_LINKAGE(ssl,openssl) ..." 1>&5 cf_save_LIBS="$LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 16263 "configure" +#line 16387 "configure" #include "confdefs.h" #include <stdio.h> @@ -16289,16 +16413,16 @@ main (void) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:16292: \"$ac_link\"") >&5 +if { (eval echo "$as_me:16416: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:16295: \$? = $ac_status" >&5 + echo "$as_me:16419: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:16298: \"$ac_try\"") >&5 + { (eval echo "$as_me:16422: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:16301: \$? = $ac_status" >&5 + echo "$as_me:16425: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_find_linkage_ssl=yes @@ -16312,7 +16436,7 @@ cat conftest.$ac_ext >&5 LIBS="-lssl $cf_extra_ssl_libs $cf_save_LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 16315 "configure" +#line 16439 "configure" #include "confdefs.h" #include <stdio.h> @@ -16341,16 +16465,16 @@ main (void) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:16344: \"$ac_link\"") >&5 +if { (eval echo "$as_me:16468: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:16347: \$? = $ac_status" >&5 + echo "$as_me:16471: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:16350: \"$ac_try\"") >&5 + { (eval echo "$as_me:16474: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:16353: \$? = $ac_status" >&5 + echo "$as_me:16477: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_find_linkage_ssl=yes @@ -16367,9 +16491,9 @@ cat conftest.$ac_ext >&5 test -n "$verbose" && echo " find linkage for ssl library" 1>&6 -echo "${as_me:-configure}:16370: testing find linkage for ssl library ..." 1>&5 +echo "${as_me:-configure}:16494: testing find linkage for ssl library ..." 1>&5 -echo "${as_me:-configure}:16372: testing Searching for headers in FIND_LINKAGE(ssl,openssl) ..." 1>&5 +echo "${as_me:-configure}:16496: testing Searching for headers in FIND_LINKAGE(ssl,openssl) ..." 1>&5 cf_save_CPPFLAGS="$CPPFLAGS" cf_test_CPPFLAGS="$CPPFLAGS" @@ -16460,7 +16584,7 @@ cf_search="$cf_search $cf_header_path_list" if test -d $cf_cv_header_path_ssl ; then test -n "$verbose" && echo " ... testing $cf_cv_header_path_ssl" 1>&6 -echo "${as_me:-configure}:16463: testing ... testing $cf_cv_header_path_ssl ..." 1>&5 +echo "${as_me:-configure}:16587: testing ... testing $cf_cv_header_path_ssl ..." 1>&5 CPPFLAGS="$cf_save_CPPFLAGS" @@ -16468,7 +16592,7 @@ echo "${as_me:-configure}:16463: testing ... testing $cf_cv_header_path_ssl ..." CPPFLAGS="${CPPFLAGS}-I$cf_cv_header_path_ssl" cat >conftest.$ac_ext <<_ACEOF -#line 16471 "configure" +#line 16595 "configure" #include "confdefs.h" #include <stdio.h> @@ -16497,21 +16621,21 @@ main (void) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:16500: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:16624: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:16503: \$? = $ac_status" >&5 + echo "$as_me:16627: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:16506: \"$ac_try\"") >&5 + { (eval echo "$as_me:16630: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:16509: \$? = $ac_status" >&5 + echo "$as_me:16633: \$? = $ac_status" >&5 (exit $ac_status); }; }; then test -n "$verbose" && echo " ... found ssl headers in $cf_cv_header_path_ssl" 1>&6 -echo "${as_me:-configure}:16514: testing ... found ssl headers in $cf_cv_header_path_ssl ..." 1>&5 +echo "${as_me:-configure}:16638: testing ... found ssl headers in $cf_cv_header_path_ssl ..." 1>&5 cf_cv_find_linkage_ssl=maybe cf_test_CPPFLAGS="$CPPFLAGS" @@ -16529,7 +16653,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "$cf_cv_find_linkage_ssl" = maybe ; then -echo "${as_me:-configure}:16532: testing Searching for ssl library in FIND_LINKAGE(ssl,openssl) ..." 1>&5 +echo "${as_me:-configure}:16656: testing Searching for ssl library in FIND_LINKAGE(ssl,openssl) ..." 1>&5 cf_save_LIBS="$LIBS" cf_save_LDFLAGS="$LDFLAGS" @@ -16537,7 +16661,7 @@ echo "${as_me:-configure}:16532: testing Searching for ssl library in FIND_LINKA CPPFLAGS="$cf_test_CPPFLAGS" LIBS="-lssl $cf_extra_ssl_libs $cf_save_LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 16540 "configure" +#line 16664 "configure" #include "confdefs.h" #include <stdio.h> @@ -16566,21 +16690,21 @@ main (void) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:16569: \"$ac_link\"") >&5 +if { (eval echo "$as_me:16693: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:16572: \$? = $ac_status" >&5 + echo "$as_me:16696: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:16575: \"$ac_try\"") >&5 + { (eval echo "$as_me:16699: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:16578: \$? = $ac_status" >&5 + echo "$as_me:16702: \$? = $ac_status" >&5 (exit $ac_status); }; }; then test -n "$verbose" && echo " ... found ssl library in system" 1>&6 -echo "${as_me:-configure}:16583: testing ... found ssl library in system ..." 1>&5 +echo "${as_me:-configure}:16707: testing ... found ssl library in system ..." 1>&5 cf_cv_find_linkage_ssl=yes else @@ -16661,13 +16785,13 @@ cf_search="$cf_library_path_list $cf_search" if test -d $cf_cv_library_path_ssl ; then test -n "$verbose" && echo " ... testing $cf_cv_library_path_ssl" 1>&6 -echo "${as_me:-configure}:16664: testing ... testing $cf_cv_library_path_ssl ..." 1>&5 +echo "${as_me:-configure}:16788: testing ... testing $cf_cv_library_path_ssl ..." 1>&5 CPPFLAGS="$cf_test_CPPFLAGS" LIBS="-lssl $cf_extra_ssl_libs $cf_save_LIBS" LDFLAGS="$cf_save_LDFLAGS -L$cf_cv_library_path_ssl" cat >conftest.$ac_ext <<_ACEOF -#line 16670 "configure" +#line 16794 "configure" #include "confdefs.h" #include <stdio.h> @@ -16696,21 +16820,21 @@ main (void) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:16699: \"$ac_link\"") >&5 +if { (eval echo "$as_me:16823: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:16702: \$? = $ac_status" >&5 + echo "$as_me:16826: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:16705: \"$ac_try\"") >&5 + { (eval echo "$as_me:16829: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:16708: \$? = $ac_status" >&5 + echo "$as_me:16832: \$? = $ac_status" >&5 (exit $ac_status); }; }; then test -n "$verbose" && echo " ... found ssl library in $cf_cv_library_path_ssl" 1>&6 -echo "${as_me:-configure}:16713: testing ... found ssl library in $cf_cv_library_path_ssl ..." 1>&5 +echo "${as_me:-configure}:16837: testing ... found ssl library in $cf_cv_library_path_ssl ..." 1>&5 cf_cv_find_linkage_ssl=yes cf_cv_library_file_ssl="-lssl" @@ -16772,7 +16896,7 @@ if test -n "$cf_cv_library_path_ssl" ; then if test "$cf_have_libdir" = no ; then test -n "$verbose" && echo " adding $cf_add_libdir to library-path" 1>&6 -echo "${as_me:-configure}:16775: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:16899: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -16831,7 +16955,7 @@ if test -n "$cf_cv_header_path_ssl" ; then CPPFLAGS="${CPPFLAGS}-I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 16834 "configure" +#line 16958 "configure" #include "confdefs.h" #include <stdio.h> int @@ -16843,16 +16967,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:16846: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:16970: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:16849: \$? = $ac_status" >&5 + echo "$as_me:16973: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:16852: \"$ac_try\"") >&5 + { (eval echo "$as_me:16976: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:16855: \$? = $ac_status" >&5 + echo "$as_me:16979: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -16869,7 +16993,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}:16872: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:16996: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -16902,7 +17026,7 @@ EOF if test -n "$cf_cv_header_path_ssl" ; then test -n "$verbose" && echo " checking ssl header-path $cf_cv_header_path_ssl" 1>&6 -echo "${as_me:-configure}:16905: testing checking ssl header-path $cf_cv_header_path_ssl ..." 1>&5 +echo "${as_me:-configure}:17029: testing checking ssl header-path $cf_cv_header_path_ssl ..." 1>&5 case $cf_cv_header_path_ssl in (*/openssl) @@ -16915,10 +17039,10 @@ EOF esac fi -echo "$as_me:16918: checking for X509 support" >&5 +echo "$as_me:17042: checking for X509 support" >&5 echo $ECHO_N "checking for X509 support... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF -#line 16921 "configure" +#line 17045 "configure" #include "confdefs.h" #include <stdio.h> @@ -16947,16 +17071,16 @@ X509_verify_cert_error_string(X509_STORE_CTX_get_error(NULL)) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:16950: \"$ac_link\"") >&5 +if { (eval echo "$as_me:17074: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:16953: \$? = $ac_status" >&5 + echo "$as_me:17077: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:16956: \"$ac_try\"") >&5 + { (eval echo "$as_me:17080: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:16959: \$? = $ac_status" >&5 + echo "$as_me:17083: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_x509_support=yes else @@ -16965,7 +17089,7 @@ cat conftest.$ac_ext >&5 cf_x509_support=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext -echo "$as_me:16968: result: $cf_x509_support" >&5 +echo "$as_me:17092: result: $cf_x509_support" >&5 echo "${ECHO_T}$cf_x509_support" >&6 if test "$cf_x509_support" = yes ; then @@ -17020,7 +17144,7 @@ if test -n "$cf_searchpath/include" ; then CPPFLAGS="${CPPFLAGS}-I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 17023 "configure" +#line 17147 "configure" #include "confdefs.h" #include <stdio.h> int @@ -17032,16 +17156,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:17035: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:17159: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:17038: \$? = $ac_status" >&5 + echo "$as_me:17162: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:17041: \"$ac_try\"") >&5 + { (eval echo "$as_me:17165: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:17044: \$? = $ac_status" >&5 + echo "$as_me:17168: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -17058,7 +17182,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}:17061: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:17185: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -17104,7 +17228,7 @@ if test -n "$cf_searchpath/../include" ; then CPPFLAGS="${CPPFLAGS}-I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 17107 "configure" +#line 17231 "configure" #include "confdefs.h" #include <stdio.h> int @@ -17116,16 +17240,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:17119: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:17243: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:17122: \$? = $ac_status" >&5 + echo "$as_me:17246: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:17125: \"$ac_try\"") >&5 + { (eval echo "$as_me:17249: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:17128: \$? = $ac_status" >&5 + echo "$as_me:17252: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -17142,7 +17266,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}:17145: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:17269: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -17160,7 +17284,7 @@ echo "${as_me:-configure}:17145: testing adding $cf_add_incdir to include-path . fi else -{ { echo "$as_me:17163: error: cannot find ssl library under $cf_cv_use_libgnutls" >&5 +{ { echo "$as_me:17287: error: cannot find ssl library under $cf_cv_use_libgnutls" >&5 echo "$as_me: error: cannot find ssl library under $cf_cv_use_libgnutls" >&2;} { (exit 1); exit 1; }; } fi @@ -17185,7 +17309,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}:17188: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:17312: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -17214,7 +17338,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}:17217: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:17341: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -17223,7 +17347,7 @@ echo "${as_me:-configure}:17217: testing adding $cf_add_libdir to library-path . fi else -{ { echo "$as_me:17226: error: cannot find ssl library under $cf_cv_use_libgnutls" >&5 +{ { echo "$as_me:17350: error: cannot find ssl library under $cf_cv_use_libgnutls" >&5 echo "$as_me: error: cannot find ssl library under $cf_cv_use_libgnutls" >&2;} { (exit 1); exit 1; }; } fi @@ -17241,12 +17365,12 @@ esac (yes) # if no explicit directory given, try pkg-config test -n "$verbose" && echo " checking pkg-config for $cf_pkg_gnutls" 1>&6 -echo "${as_me:-configure}:17244: testing checking pkg-config for $cf_pkg_gnutls ..." 1>&5 +echo "${as_me:-configure}:17368: testing checking pkg-config for $cf_pkg_gnutls ..." 1>&5 if "$PKG_CONFIG" --exists $cf_pkg_gnutls ; then test -n "$verbose" && echo " ... found $cf_pkg_gnutls in pkg-config" 1>&6 -echo "${as_me:-configure}:17249: testing ... found $cf_pkg_gnutls in pkg-config ..." 1>&5 +echo "${as_me:-configure}:17373: testing ... found $cf_pkg_gnutls in pkg-config ..." 1>&5 cf_cv_have_gnutls=yes cf_cv_pkg_config_ssl=yes @@ -17378,7 +17502,7 @@ fi esac test -n "$verbose" && echo " adding $cf_libs_ssl to LIBS" 1>&6 -echo "${as_me:-configure}:17381: testing adding $cf_libs_ssl to LIBS ..." 1>&5 +echo "${as_me:-configure}:17505: testing adding $cf_libs_ssl to LIBS ..." 1>&5 cf_add_libs="$LIBS" # reverse order @@ -17400,7 +17524,7 @@ LIBS="$cf_add_libs" else test -n "$verbose" && echo " ... did not find $cf_pkg_gnutls in pkg-config" 1>&6 -echo "${as_me:-configure}:17403: testing ... did not find $cf_pkg_gnutls in pkg-config ..." 1>&5 +echo "${as_me:-configure}:17527: testing ... did not find $cf_pkg_gnutls in pkg-config ..." 1>&5 cf_pkg_gnutls=none fi @@ -17420,12 +17544,12 @@ EOF cf_cv_header_path_gnutls= cf_cv_library_path_gnutls= -echo "${as_me:-configure}:17423: testing Starting FIND_LINKAGE(gnutls,) ..." 1>&5 +echo "${as_me:-configure}:17547: testing Starting FIND_LINKAGE(gnutls,) ..." 1>&5 cf_save_LIBS="$LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 17428 "configure" +#line 17552 "configure" #include "confdefs.h" #include <stdio.h> @@ -17454,16 +17578,16 @@ main (void) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:17457: \"$ac_link\"") >&5 +if { (eval echo "$as_me:17581: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:17460: \$? = $ac_status" >&5 + echo "$as_me:17584: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:17463: \"$ac_try\"") >&5 + { (eval echo "$as_me:17587: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:17466: \$? = $ac_status" >&5 + echo "$as_me:17590: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_find_linkage_gnutls=yes @@ -17477,7 +17601,7 @@ cat conftest.$ac_ext >&5 LIBS="-lgnutls $cf_save_LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 17480 "configure" +#line 17604 "configure" #include "confdefs.h" #include <stdio.h> @@ -17506,16 +17630,16 @@ main (void) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:17509: \"$ac_link\"") >&5 +if { (eval echo "$as_me:17633: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:17512: \$? = $ac_status" >&5 + echo "$as_me:17636: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:17515: \"$ac_try\"") >&5 + { (eval echo "$as_me:17639: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:17518: \$? = $ac_status" >&5 + echo "$as_me:17642: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_find_linkage_gnutls=yes @@ -17532,9 +17656,9 @@ cat conftest.$ac_ext >&5 test -n "$verbose" && echo " find linkage for gnutls library" 1>&6 -echo "${as_me:-configure}:17535: testing find linkage for gnutls library ..." 1>&5 +echo "${as_me:-configure}:17659: testing find linkage for gnutls library ..." 1>&5 -echo "${as_me:-configure}:17537: testing Searching for headers in FIND_LINKAGE(gnutls,) ..." 1>&5 +echo "${as_me:-configure}:17661: testing Searching for headers in FIND_LINKAGE(gnutls,) ..." 1>&5 cf_save_CPPFLAGS="$CPPFLAGS" cf_test_CPPFLAGS="$CPPFLAGS" @@ -17625,7 +17749,7 @@ cf_search="$cf_search $cf_header_path_list" if test -d $cf_cv_header_path_gnutls ; then test -n "$verbose" && echo " ... testing $cf_cv_header_path_gnutls" 1>&6 -echo "${as_me:-configure}:17628: testing ... testing $cf_cv_header_path_gnutls ..." 1>&5 +echo "${as_me:-configure}:17752: testing ... testing $cf_cv_header_path_gnutls ..." 1>&5 CPPFLAGS="$cf_save_CPPFLAGS" @@ -17633,7 +17757,7 @@ echo "${as_me:-configure}:17628: testing ... testing $cf_cv_header_path_gnutls . CPPFLAGS="${CPPFLAGS}-I$cf_cv_header_path_gnutls" cat >conftest.$ac_ext <<_ACEOF -#line 17636 "configure" +#line 17760 "configure" #include "confdefs.h" #include <stdio.h> @@ -17662,21 +17786,21 @@ main (void) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:17665: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:17789: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:17668: \$? = $ac_status" >&5 + echo "$as_me:17792: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:17671: \"$ac_try\"") >&5 + { (eval echo "$as_me:17795: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:17674: \$? = $ac_status" >&5 + echo "$as_me:17798: \$? = $ac_status" >&5 (exit $ac_status); }; }; then test -n "$verbose" && echo " ... found gnutls headers in $cf_cv_header_path_gnutls" 1>&6 -echo "${as_me:-configure}:17679: testing ... found gnutls headers in $cf_cv_header_path_gnutls ..." 1>&5 +echo "${as_me:-configure}:17803: testing ... found gnutls headers in $cf_cv_header_path_gnutls ..." 1>&5 cf_cv_find_linkage_gnutls=maybe cf_test_CPPFLAGS="$CPPFLAGS" @@ -17694,7 +17818,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "$cf_cv_find_linkage_gnutls" = maybe ; then -echo "${as_me:-configure}:17697: testing Searching for gnutls library in FIND_LINKAGE(gnutls,) ..." 1>&5 +echo "${as_me:-configure}:17821: testing Searching for gnutls library in FIND_LINKAGE(gnutls,) ..." 1>&5 cf_save_LIBS="$LIBS" cf_save_LDFLAGS="$LDFLAGS" @@ -17769,13 +17893,13 @@ cf_search="$cf_library_path_list $cf_search" if test -d $cf_cv_library_path_gnutls ; then test -n "$verbose" && echo " ... testing $cf_cv_library_path_gnutls" 1>&6 -echo "${as_me:-configure}:17772: testing ... testing $cf_cv_library_path_gnutls ..." 1>&5 +echo "${as_me:-configure}:17896: testing ... testing $cf_cv_library_path_gnutls ..." 1>&5 CPPFLAGS="$cf_test_CPPFLAGS" LIBS="-lgnutls $cf_save_LIBS" LDFLAGS="$cf_save_LDFLAGS -L$cf_cv_library_path_gnutls" cat >conftest.$ac_ext <<_ACEOF -#line 17778 "configure" +#line 17902 "configure" #include "confdefs.h" #include <stdio.h> @@ -17804,21 +17928,21 @@ main (void) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:17807: \"$ac_link\"") >&5 +if { (eval echo "$as_me:17931: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:17810: \$? = $ac_status" >&5 + echo "$as_me:17934: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:17813: \"$ac_try\"") >&5 + { (eval echo "$as_me:17937: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:17816: \$? = $ac_status" >&5 + echo "$as_me:17940: \$? = $ac_status" >&5 (exit $ac_status); }; }; then test -n "$verbose" && echo " ... found gnutls library in $cf_cv_library_path_gnutls" 1>&6 -echo "${as_me:-configure}:17821: testing ... found gnutls library in $cf_cv_library_path_gnutls ..." 1>&5 +echo "${as_me:-configure}:17945: testing ... found gnutls library in $cf_cv_library_path_gnutls ..." 1>&5 cf_cv_find_linkage_gnutls=yes cf_cv_library_file_gnutls="-lgnutls" @@ -17898,7 +18022,7 @@ if test -n "$cf_cv_header_path_gnutls" ; then CPPFLAGS="${CPPFLAGS}-I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 17901 "configure" +#line 18025 "configure" #include "confdefs.h" #include <stdio.h> int @@ -17910,16 +18034,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:17913: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:18037: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:17916: \$? = $ac_status" >&5 + echo "$as_me:18040: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:17919: \"$ac_try\"") >&5 + { (eval echo "$as_me:18043: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:17922: \$? = $ac_status" >&5 + echo "$as_me:18046: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -17936,7 +18060,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}:17939: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:18063: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -17977,7 +18101,7 @@ if test -n "$cf_cv_library_path_gnutls" ; then if test "$cf_have_libdir" = no ; then test -n "$verbose" && echo " adding $cf_add_libdir to library-path" 1>&6 -echo "${as_me:-configure}:17980: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:18104: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -18006,13 +18130,13 @@ LIBS="$cf_add_libs" for ac_func in gnutls_protocol_set_priority do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` -echo "$as_me:18009: checking for $ac_func" >&5 +echo "$as_me:18133: 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 18015 "configure" +#line 18139 "configure" #include "confdefs.h" #define $ac_func autoconf_temporary #include <limits.h> /* least-intrusive standard header which defines gcc2 __stub macros */ @@ -18043,16 +18167,16 @@ main (void) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:18046: \"$ac_link\"") >&5 +if { (eval echo "$as_me:18170: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:18049: \$? = $ac_status" >&5 + echo "$as_me:18173: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:18052: \"$ac_try\"") >&5 + { (eval echo "$as_me:18176: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:18055: \$? = $ac_status" >&5 + echo "$as_me:18179: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else @@ -18062,7 +18186,7 @@ eval "$as_ac_var=no" fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:18065: result: `eval echo '${'$as_ac_var'}'`" >&5 +echo "$as_me:18189: 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 @@ -18072,13 +18196,13 @@ EOF fi done - echo "$as_me:18075: checking for gnutls_rnd" >&5 + echo "$as_me:18199: checking for gnutls_rnd" >&5 echo $ECHO_N "checking for gnutls_rnd... $ECHO_C" >&6 if test "${ac_cv_func_gnutls_rnd+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 18081 "configure" +#line 18205 "configure" #include "confdefs.h" #define gnutls_rnd autoconf_temporary #include <limits.h> /* least-intrusive standard header which defines gcc2 __stub macros */ @@ -18109,16 +18233,16 @@ main (void) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:18112: \"$ac_link\"") >&5 +if { (eval echo "$as_me:18236: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:18115: \$? = $ac_status" >&5 + echo "$as_me:18239: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:18118: \"$ac_try\"") >&5 + { (eval echo "$as_me:18242: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:18121: \$? = $ac_status" >&5 + echo "$as_me:18245: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_gnutls_rnd=yes else @@ -18128,7 +18252,7 @@ ac_cv_func_gnutls_rnd=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:18131: result: $ac_cv_func_gnutls_rnd" >&5 +echo "$as_me:18255: result: $ac_cv_func_gnutls_rnd" >&5 echo "${ECHO_T}$ac_cv_func_gnutls_rnd" >&6 if test $ac_cv_func_gnutls_rnd = yes; then @@ -18158,10 +18282,10 @@ fi EXTRA_OBJS="$EXTRA_OBJS tidy_tls\$o" -echo "$as_me:18161: checking for X509 support" >&5 +echo "$as_me:18285: checking for X509 support" >&5 echo $ECHO_N "checking for X509 support... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF -#line 18164 "configure" +#line 18288 "configure" #include "confdefs.h" #include <stdio.h> @@ -18190,16 +18314,16 @@ X509_verify_cert_error_string(X509_STORE_CTX_get_error(NULL)) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:18193: \"$ac_link\"") >&5 +if { (eval echo "$as_me:18317: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:18196: \$? = $ac_status" >&5 + echo "$as_me:18320: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:18199: \"$ac_try\"") >&5 + { (eval echo "$as_me:18323: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:18202: \$? = $ac_status" >&5 + echo "$as_me:18326: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_x509_support=yes else @@ -18208,7 +18332,7 @@ cat conftest.$ac_ext >&5 cf_x509_support=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext -echo "$as_me:18211: result: $cf_x509_support" >&5 +echo "$as_me:18335: result: $cf_x509_support" >&5 echo "${ECHO_T}$cf_x509_support" >&6 if test "$cf_x509_support" = yes ; then @@ -18262,7 +18386,7 @@ if test -n "$cf_searchpath/include" ; then CPPFLAGS="${CPPFLAGS}-I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 18265 "configure" +#line 18389 "configure" #include "confdefs.h" #include <stdio.h> int @@ -18274,16 +18398,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:18277: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:18401: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:18280: \$? = $ac_status" >&5 + echo "$as_me:18404: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:18283: \"$ac_try\"") >&5 + { (eval echo "$as_me:18407: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:18286: \$? = $ac_status" >&5 + echo "$as_me:18410: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -18300,7 +18424,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}:18303: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:18427: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -18346,7 +18470,7 @@ if test -n "$cf_searchpath/../include" ; then CPPFLAGS="${CPPFLAGS}-I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 18349 "configure" +#line 18473 "configure" #include "confdefs.h" #include <stdio.h> int @@ -18358,16 +18482,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:18361: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:18485: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:18364: \$? = $ac_status" >&5 + echo "$as_me:18488: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:18367: \"$ac_try\"") >&5 + { (eval echo "$as_me:18491: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:18370: \$? = $ac_status" >&5 + echo "$as_me:18494: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -18384,7 +18508,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}:18387: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:18511: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -18402,7 +18526,7 @@ echo "${as_me:-configure}:18387: testing adding $cf_add_incdir to include-path . fi else -{ { echo "$as_me:18405: error: cannot find ssl library under $cf_cv_use_libgnutls" >&5 +{ { echo "$as_me:18529: error: cannot find ssl library under $cf_cv_use_libgnutls" >&5 echo "$as_me: error: cannot find ssl library under $cf_cv_use_libgnutls" >&2;} { (exit 1); exit 1; }; } fi @@ -18427,7 +18551,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}:18430: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:18554: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -18456,7 +18580,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}:18459: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:18583: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -18465,7 +18589,7 @@ echo "${as_me:-configure}:18459: testing adding $cf_add_libdir to library-path . fi else -{ { echo "$as_me:18468: error: cannot find ssl library under $cf_cv_use_libgnutls" >&5 +{ { echo "$as_me:18592: error: cannot find ssl library under $cf_cv_use_libgnutls" >&5 echo "$as_me: error: cannot find ssl library under $cf_cv_use_libgnutls" >&2;} { (exit 1); exit 1; }; } fi @@ -18483,12 +18607,12 @@ esac (yes) # if no explicit directory given, try pkg-config test -n "$verbose" && echo " checking pkg-config for $cf_pkg_gnutls" 1>&6 -echo "${as_me:-configure}:18486: testing checking pkg-config for $cf_pkg_gnutls ..." 1>&5 +echo "${as_me:-configure}:18610: testing checking pkg-config for $cf_pkg_gnutls ..." 1>&5 if "$PKG_CONFIG" --exists $cf_pkg_gnutls ; then test -n "$verbose" && echo " ... found $cf_pkg_gnutls in pkg-config" 1>&6 -echo "${as_me:-configure}:18491: testing ... found $cf_pkg_gnutls in pkg-config ..." 1>&5 +echo "${as_me:-configure}:18615: testing ... found $cf_pkg_gnutls in pkg-config ..." 1>&5 cf_cv_have_gnutls=yes cf_cv_pkg_config_ssl=yes @@ -18620,7 +18744,7 @@ fi esac test -n "$verbose" && echo " adding $cf_libs_ssl to LIBS" 1>&6 -echo "${as_me:-configure}:18623: testing adding $cf_libs_ssl to LIBS ..." 1>&5 +echo "${as_me:-configure}:18747: testing adding $cf_libs_ssl to LIBS ..." 1>&5 cf_add_libs="$LIBS" # reverse order @@ -18642,7 +18766,7 @@ LIBS="$cf_add_libs" else test -n "$verbose" && echo " ... did not find $cf_pkg_gnutls in pkg-config" 1>&6 -echo "${as_me:-configure}:18645: testing ... did not find $cf_pkg_gnutls in pkg-config ..." 1>&5 +echo "${as_me:-configure}:18769: testing ... did not find $cf_pkg_gnutls in pkg-config ..." 1>&5 cf_pkg_gnutls=none fi @@ -18662,12 +18786,12 @@ EOF cf_cv_header_path_gnutls= cf_cv_library_path_gnutls= -echo "${as_me:-configure}:18665: testing Starting FIND_LINKAGE(gnutls,) ..." 1>&5 +echo "${as_me:-configure}:18789: testing Starting FIND_LINKAGE(gnutls,) ..." 1>&5 cf_save_LIBS="$LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 18670 "configure" +#line 18794 "configure" #include "confdefs.h" #include <stdio.h> @@ -18696,16 +18820,16 @@ main (void) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:18699: \"$ac_link\"") >&5 +if { (eval echo "$as_me:18823: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:18702: \$? = $ac_status" >&5 + echo "$as_me:18826: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:18705: \"$ac_try\"") >&5 + { (eval echo "$as_me:18829: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:18708: \$? = $ac_status" >&5 + echo "$as_me:18832: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_find_linkage_gnutls=yes @@ -18719,7 +18843,7 @@ cat conftest.$ac_ext >&5 LIBS="-lgnutls -lgnutls-openssl $cf_save_LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 18722 "configure" +#line 18846 "configure" #include "confdefs.h" #include <stdio.h> @@ -18748,16 +18872,16 @@ main (void) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:18751: \"$ac_link\"") >&5 +if { (eval echo "$as_me:18875: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:18754: \$? = $ac_status" >&5 + echo "$as_me:18878: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:18757: \"$ac_try\"") >&5 + { (eval echo "$as_me:18881: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:18760: \$? = $ac_status" >&5 + echo "$as_me:18884: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_find_linkage_gnutls=yes @@ -18774,9 +18898,9 @@ cat conftest.$ac_ext >&5 test -n "$verbose" && echo " find linkage for gnutls library" 1>&6 -echo "${as_me:-configure}:18777: testing find linkage for gnutls library ..." 1>&5 +echo "${as_me:-configure}:18901: testing find linkage for gnutls library ..." 1>&5 -echo "${as_me:-configure}:18779: testing Searching for headers in FIND_LINKAGE(gnutls,) ..." 1>&5 +echo "${as_me:-configure}:18903: testing Searching for headers in FIND_LINKAGE(gnutls,) ..." 1>&5 cf_save_CPPFLAGS="$CPPFLAGS" cf_test_CPPFLAGS="$CPPFLAGS" @@ -18867,7 +18991,7 @@ cf_search="$cf_search $cf_header_path_list" if test -d $cf_cv_header_path_gnutls ; then test -n "$verbose" && echo " ... testing $cf_cv_header_path_gnutls" 1>&6 -echo "${as_me:-configure}:18870: testing ... testing $cf_cv_header_path_gnutls ..." 1>&5 +echo "${as_me:-configure}:18994: testing ... testing $cf_cv_header_path_gnutls ..." 1>&5 CPPFLAGS="$cf_save_CPPFLAGS" @@ -18875,7 +18999,7 @@ echo "${as_me:-configure}:18870: testing ... testing $cf_cv_header_path_gnutls . CPPFLAGS="${CPPFLAGS}-I$cf_cv_header_path_gnutls" cat >conftest.$ac_ext <<_ACEOF -#line 18878 "configure" +#line 19002 "configure" #include "confdefs.h" #include <stdio.h> @@ -18904,21 +19028,21 @@ main (void) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:18907: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:19031: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:18910: \$? = $ac_status" >&5 + echo "$as_me:19034: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:18913: \"$ac_try\"") >&5 + { (eval echo "$as_me:19037: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:18916: \$? = $ac_status" >&5 + echo "$as_me:19040: \$? = $ac_status" >&5 (exit $ac_status); }; }; then test -n "$verbose" && echo " ... found gnutls headers in $cf_cv_header_path_gnutls" 1>&6 -echo "${as_me:-configure}:18921: testing ... found gnutls headers in $cf_cv_header_path_gnutls ..." 1>&5 +echo "${as_me:-configure}:19045: testing ... found gnutls headers in $cf_cv_header_path_gnutls ..." 1>&5 cf_cv_find_linkage_gnutls=maybe cf_test_CPPFLAGS="$CPPFLAGS" @@ -18936,7 +19060,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "$cf_cv_find_linkage_gnutls" = maybe ; then -echo "${as_me:-configure}:18939: testing Searching for gnutls library in FIND_LINKAGE(gnutls,) ..." 1>&5 +echo "${as_me:-configure}:19063: testing Searching for gnutls library in FIND_LINKAGE(gnutls,) ..." 1>&5 cf_save_LIBS="$LIBS" cf_save_LDFLAGS="$LDFLAGS" @@ -19011,13 +19135,13 @@ cf_search="$cf_library_path_list $cf_search" if test -d $cf_cv_library_path_gnutls ; then test -n "$verbose" && echo " ... testing $cf_cv_library_path_gnutls" 1>&6 -echo "${as_me:-configure}:19014: testing ... testing $cf_cv_library_path_gnutls ..." 1>&5 +echo "${as_me:-configure}:19138: testing ... testing $cf_cv_library_path_gnutls ..." 1>&5 CPPFLAGS="$cf_test_CPPFLAGS" LIBS="-lgnutls -lgnutls-openssl $cf_save_LIBS" LDFLAGS="$cf_save_LDFLAGS -L$cf_cv_library_path_gnutls" cat >conftest.$ac_ext <<_ACEOF -#line 19020 "configure" +#line 19144 "configure" #include "confdefs.h" #include <stdio.h> @@ -19046,21 +19170,21 @@ main (void) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:19049: \"$ac_link\"") >&5 +if { (eval echo "$as_me:19173: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:19052: \$? = $ac_status" >&5 + echo "$as_me:19176: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:19055: \"$ac_try\"") >&5 + { (eval echo "$as_me:19179: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:19058: \$? = $ac_status" >&5 + echo "$as_me:19182: \$? = $ac_status" >&5 (exit $ac_status); }; }; then test -n "$verbose" && echo " ... found gnutls library in $cf_cv_library_path_gnutls" 1>&6 -echo "${as_me:-configure}:19063: testing ... found gnutls library in $cf_cv_library_path_gnutls ..." 1>&5 +echo "${as_me:-configure}:19187: testing ... found gnutls library in $cf_cv_library_path_gnutls ..." 1>&5 cf_cv_find_linkage_gnutls=yes cf_cv_library_file_gnutls="-lgnutls" @@ -19140,7 +19264,7 @@ if test -n "$cf_cv_header_path_gnutls" ; then CPPFLAGS="${CPPFLAGS}-I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 19143 "configure" +#line 19267 "configure" #include "confdefs.h" #include <stdio.h> int @@ -19152,16 +19276,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:19155: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:19279: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:19158: \$? = $ac_status" >&5 + echo "$as_me:19282: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:19161: \"$ac_try\"") >&5 + { (eval echo "$as_me:19285: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:19164: \$? = $ac_status" >&5 + echo "$as_me:19288: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -19178,7 +19302,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}:19181: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:19305: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -19219,7 +19343,7 @@ if test -n "$cf_cv_library_path_gnutls" ; then if test "$cf_have_libdir" = no ; then test -n "$verbose" && echo " adding $cf_add_libdir to library-path" 1>&6 -echo "${as_me:-configure}:19222: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:19346: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -19248,13 +19372,13 @@ LIBS="$cf_add_libs" for ac_func in gnutls_protocol_set_priority do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` -echo "$as_me:19251: checking for $ac_func" >&5 +echo "$as_me:19375: 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 19257 "configure" +#line 19381 "configure" #include "confdefs.h" #define $ac_func autoconf_temporary #include <limits.h> /* least-intrusive standard header which defines gcc2 __stub macros */ @@ -19285,16 +19409,16 @@ main (void) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:19288: \"$ac_link\"") >&5 +if { (eval echo "$as_me:19412: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:19291: \$? = $ac_status" >&5 + echo "$as_me:19415: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:19294: \"$ac_try\"") >&5 + { (eval echo "$as_me:19418: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:19297: \$? = $ac_status" >&5 + echo "$as_me:19421: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else @@ -19304,7 +19428,7 @@ eval "$as_ac_var=no" fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:19307: result: `eval echo '${'$as_ac_var'}'`" >&5 +echo "$as_me:19431: 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 @@ -19314,13 +19438,13 @@ EOF fi done - echo "$as_me:19317: checking for gnutls_rnd" >&5 + echo "$as_me:19441: checking for gnutls_rnd" >&5 echo $ECHO_N "checking for gnutls_rnd... $ECHO_C" >&6 if test "${ac_cv_func_gnutls_rnd+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 19323 "configure" +#line 19447 "configure" #include "confdefs.h" #define gnutls_rnd autoconf_temporary #include <limits.h> /* least-intrusive standard header which defines gcc2 __stub macros */ @@ -19351,16 +19475,16 @@ main (void) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:19354: \"$ac_link\"") >&5 +if { (eval echo "$as_me:19478: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:19357: \$? = $ac_status" >&5 + echo "$as_me:19481: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:19360: \"$ac_try\"") >&5 + { (eval echo "$as_me:19484: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:19363: \$? = $ac_status" >&5 + echo "$as_me:19487: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_gnutls_rnd=yes else @@ -19370,7 +19494,7 @@ ac_cv_func_gnutls_rnd=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:19373: result: $ac_cv_func_gnutls_rnd" >&5 +echo "$as_me:19497: result: $ac_cv_func_gnutls_rnd" >&5 echo "${ECHO_T}$ac_cv_func_gnutls_rnd" >&6 if test $ac_cv_func_gnutls_rnd = yes; then @@ -19399,7 +19523,7 @@ LIBS="$cf_add_libs" fi if test "$cf_pkg_gnutls" = none ; then - echo "$as_me:19402: checking for SSL_connect in -lgnutls-openssl" >&5 + echo "$as_me:19526: checking for SSL_connect in -lgnutls-openssl" >&5 echo $ECHO_N "checking for SSL_connect in -lgnutls-openssl... $ECHO_C" >&6 if test "${ac_cv_lib_gnutls_openssl_SSL_connect+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -19407,7 +19531,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lgnutls-openssl $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 19410 "configure" +#line 19534 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -19426,16 +19550,16 @@ SSL_connect (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:19429: \"$ac_link\"") >&5 +if { (eval echo "$as_me:19553: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:19432: \$? = $ac_status" >&5 + echo "$as_me:19556: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:19435: \"$ac_try\"") >&5 + { (eval echo "$as_me:19559: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:19438: \$? = $ac_status" >&5 + echo "$as_me:19562: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_gnutls_openssl_SSL_connect=yes else @@ -19446,7 +19570,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:19449: result: $ac_cv_lib_gnutls_openssl_SSL_connect" >&5 +echo "$as_me:19573: result: $ac_cv_lib_gnutls_openssl_SSL_connect" >&5 echo "${ECHO_T}$ac_cv_lib_gnutls_openssl_SSL_connect" >&6 if test $ac_cv_lib_gnutls_openssl_SSL_connect = yes; then @@ -19467,7 +19591,7 @@ done LIBS="$cf_add_libs" else - echo "$as_me:19470: checking for SSL_connect in -lgnutls-extra" >&5 + echo "$as_me:19594: checking for SSL_connect in -lgnutls-extra" >&5 echo $ECHO_N "checking for SSL_connect in -lgnutls-extra... $ECHO_C" >&6 if test "${ac_cv_lib_gnutls_extra_SSL_connect+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -19475,7 +19599,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lgnutls-extra $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 19478 "configure" +#line 19602 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -19494,16 +19618,16 @@ SSL_connect (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:19497: \"$ac_link\"") >&5 +if { (eval echo "$as_me:19621: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:19500: \$? = $ac_status" >&5 + echo "$as_me:19624: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:19503: \"$ac_try\"") >&5 + { (eval echo "$as_me:19627: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:19506: \$? = $ac_status" >&5 + echo "$as_me:19630: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_gnutls_extra_SSL_connect=yes else @@ -19514,7 +19638,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:19517: result: $ac_cv_lib_gnutls_extra_SSL_connect" >&5 +echo "$as_me:19641: result: $ac_cv_lib_gnutls_extra_SSL_connect" >&5 echo "${ECHO_T}$ac_cv_lib_gnutls_extra_SSL_connect" >&6 if test $ac_cv_lib_gnutls_extra_SSL_connect = yes; then @@ -19535,7 +19659,7 @@ done LIBS="$cf_add_libs" else - { { echo "$as_me:19538: error: cannot find gnutls openssl functions" >&5 + { { echo "$as_me:19662: error: cannot find gnutls openssl functions" >&5 echo "$as_me: error: cannot find gnutls openssl functions" >&2;} { (exit 1); exit 1; }; } fi @@ -19544,10 +19668,10 @@ fi fi -echo "$as_me:19547: checking for X509 support" >&5 +echo "$as_me:19671: checking for X509 support" >&5 echo $ECHO_N "checking for X509 support... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF -#line 19550 "configure" +#line 19674 "configure" #include "confdefs.h" #include <stdio.h> @@ -19576,16 +19700,16 @@ X509_verify_cert_error_string(X509_STORE_CTX_get_error(NULL)) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:19579: \"$ac_link\"") >&5 +if { (eval echo "$as_me:19703: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:19582: \$? = $ac_status" >&5 + echo "$as_me:19706: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:19585: \"$ac_try\"") >&5 + { (eval echo "$as_me:19709: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:19588: \$? = $ac_status" >&5 + echo "$as_me:19712: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_x509_support=yes else @@ -19594,7 +19718,7 @@ cat conftest.$ac_ext >&5 cf_x509_support=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext -echo "$as_me:19597: result: $cf_x509_support" >&5 +echo "$as_me:19721: result: $cf_x509_support" >&5 echo "${ECHO_T}$cf_x509_support" >&6 if test "$cf_x509_support" = yes ; then @@ -19626,7 +19750,7 @@ case "$cf_cv_use_libnss_compat" in ;; (yes) -echo "$as_me:19629: checking for SSL_get_version in -lnss_compat_ossl" >&5 +echo "$as_me:19753: checking for SSL_get_version in -lnss_compat_ossl" >&5 echo $ECHO_N "checking for SSL_get_version in -lnss_compat_ossl... $ECHO_C" >&6 if test "${ac_cv_lib_nss_compat_ossl_SSL_get_version+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -19634,7 +19758,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lnss_compat_ossl -lnss_compat_ossl $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 19637 "configure" +#line 19761 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -19653,16 +19777,16 @@ SSL_get_version (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:19656: \"$ac_link\"") >&5 +if { (eval echo "$as_me:19780: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:19659: \$? = $ac_status" >&5 + echo "$as_me:19783: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:19662: \"$ac_try\"") >&5 + { (eval echo "$as_me:19786: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:19665: \$? = $ac_status" >&5 + echo "$as_me:19789: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_nss_compat_ossl_SSL_get_version=yes else @@ -19673,7 +19797,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:19676: result: $ac_cv_lib_nss_compat_ossl_SSL_get_version" >&5 +echo "$as_me:19800: result: $ac_cv_lib_nss_compat_ossl_SSL_get_version" >&5 echo "${ECHO_T}$ac_cv_lib_nss_compat_ossl_SSL_get_version" >&6 if test $ac_cv_lib_nss_compat_ossl_SSL_get_version = yes; then cat >>confdefs.h <<EOF @@ -19688,11 +19812,11 @@ else if test -d $cf_ssl_root ; then test -n "$verbose" && echo " assume it is in $cf_ssl_root" 1>&6 -echo "${as_me:-configure}:19691: testing assume it is in $cf_ssl_root ..." 1>&5 +echo "${as_me:-configure}:19815: testing assume it is in $cf_ssl_root ..." 1>&5 cf_ssl_library="-L$cf_ssl_root/lib $cf_ssl_library" else - { { echo "$as_me:19695: error: cannot find NSS compliant libraries" >&5 + { { echo "$as_me:19819: error: cannot find NSS compliant libraries" >&5 echo "$as_me: error: cannot find NSS compliant libraries" >&2;} { (exit 1); exit 1; }; } fi @@ -19707,13 +19831,13 @@ fi elif test -d $cf_cv_use_libnss_compat/../include ; then cf_ssl_root=$cf_cv_use_libnss_compat/.. else - { { echo "$as_me:19710: error: cannot find NSS compliant library under $cf_cv_use_libnss_compat" >&5 + { { echo "$as_me:19834: error: cannot find NSS compliant library under $cf_cv_use_libnss_compat" >&5 echo "$as_me: error: cannot find NSS compliant library under $cf_cv_use_libnss_compat" >&2;} { (exit 1); exit 1; }; } fi cf_ssl_library="-L$cf_ssl_root/lib $cf_ssl_library" else - { echo "$as_me:19716: WARNING: expected a directory: $cf_cv_use_libnss_compat" >&5 + { echo "$as_me:19840: WARNING: expected a directory: $cf_cv_use_libnss_compat" >&5 echo "$as_me: WARNING: expected a directory: $cf_cv_use_libnss_compat" >&2;} fi ;; @@ -19842,10 +19966,10 @@ if test -n "$cf_new_extra_cppflags" ; then fi if test "$cf_ssl_subincs" = yes ; then -echo "$as_me:19845: checking for NSS compliant include directory" >&5 +echo "$as_me:19969: checking for NSS compliant include directory" >&5 echo $ECHO_N "checking for NSS compliant include directory... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF -#line 19848 "configure" +#line 19972 "configure" #include "confdefs.h" #include <stdio.h> @@ -19859,16 +19983,16 @@ SSL_shutdown((SSL *)0) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:19862: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:19986: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:19865: \$? = $ac_status" >&5 + echo "$as_me:19989: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:19868: \"$ac_try\"") >&5 + { (eval echo "$as_me:19992: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:19871: \$? = $ac_status" >&5 + echo "$as_me:19995: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_ssl_incl=yes else @@ -19877,7 +20001,7 @@ cat conftest.$ac_ext >&5 cf_ssl_incl=no fi rm -f conftest.$ac_objext conftest.$ac_ext -echo "$as_me:19880: result: $cf_ssl_incl" >&5 +echo "$as_me:20004: result: $cf_ssl_incl" >&5 echo "${ECHO_T}$cf_ssl_incl" >&6 test "$cf_ssl_incl" = yes && cat >>confdefs.h <<\EOF @@ -19886,10 +20010,10 @@ EOF fi -echo "$as_me:19889: checking if we can link to NSS compliant library" >&5 +echo "$as_me:20013: checking if we can link to NSS compliant library" >&5 echo $ECHO_N "checking if we can link to NSS compliant library... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF -#line 19892 "configure" +#line 20016 "configure" #include "confdefs.h" #include <stdio.h> @@ -19908,16 +20032,16 @@ SSL_shutdown((SSL *)0) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:19911: \"$ac_link\"") >&5 +if { (eval echo "$as_me:20035: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:19914: \$? = $ac_status" >&5 + echo "$as_me:20038: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:19917: \"$ac_try\"") >&5 + { (eval echo "$as_me:20041: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:19920: \$? = $ac_status" >&5 + echo "$as_me:20044: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_ssl_library=yes else @@ -19926,7 +20050,7 @@ cat conftest.$ac_ext >&5 cf_ssl_library=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext -echo "$as_me:19929: result: $cf_ssl_library" >&5 +echo "$as_me:20053: result: $cf_ssl_library" >&5 echo "${ECHO_T}$cf_ssl_library" >&6 if test "$cf_ssl_library" = yes ; then @@ -19939,7 +20063,7 @@ cat >>confdefs.h <<\EOF EOF else - { { echo "$as_me:19942: error: Cannot link with NSS compliant libraries" >&5 + { { echo "$as_me:20066: error: Cannot link with NSS compliant libraries" >&5 echo "$as_me: error: Cannot link with NSS compliant libraries" >&2;} { (exit 1); exit 1; }; } fi @@ -19947,7 +20071,7 @@ fi fi ### check for ipv6 support -echo "$as_me:19950: checking whether to enable ipv6" >&5 +echo "$as_me:20074: checking whether to enable ipv6" >&5 echo $ECHO_N "checking whether to enable ipv6... $ECHO_C" >&6 # Check whether --enable-ipv6 or --disable-ipv6 was given. @@ -19964,11 +20088,11 @@ EOF else enableval=no fi; -echo "$as_me:19967: result: $enableval" >&5 +echo "$as_me:20091: result: $enableval" >&5 echo "${ECHO_T}$enableval" >&6 if test "$enableval" = "yes"; then -echo "$as_me:19971: checking ipv6 stack type" >&5 +echo "$as_me:20095: checking ipv6 stack type" >&5 echo $ECHO_N "checking ipv6 stack type... $ECHO_C" >&6 if test "${cf_cv_ipv6type+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -19989,7 +20113,7 @@ do ;; (inria) cat >conftest.$ac_ext <<_ACEOF -#line 19992 "configure" +#line 20116 "configure" #include "confdefs.h" #include <netinet/in.h> @@ -20006,7 +20130,7 @@ rm -rf conftest* ;; (kame) cat >conftest.$ac_ext <<_ACEOF -#line 20009 "configure" +#line 20133 "configure" #include "confdefs.h" #include <netinet/in.h> @@ -20023,7 +20147,7 @@ rm -rf conftest* ;; (linux-glibc) cat >conftest.$ac_ext <<_ACEOF -#line 20026 "configure" +#line 20150 "configure" #include "confdefs.h" #include <features.h> @@ -20049,7 +20173,7 @@ rm -rf conftest* ;; (toshiba) cat >conftest.$ac_ext <<_ACEOF -#line 20052 "configure" +#line 20176 "configure" #include "confdefs.h" #include <sys/param.h> @@ -20066,7 +20190,7 @@ rm -rf conftest* ;; (v6d) cat >conftest.$ac_ext <<_ACEOF -#line 20069 "configure" +#line 20193 "configure" #include "confdefs.h" #include </usr/local/v6/include/sys/v6config.h> @@ -20083,7 +20207,7 @@ rm -rf conftest* ;; (zeta) cat >conftest.$ac_ext <<_ACEOF -#line 20086 "configure" +#line 20210 "configure" #include "confdefs.h" #include <sys/param.h> @@ -20105,13 +20229,13 @@ rm -rf conftest* done fi -echo "$as_me:20108: result: $cf_cv_ipv6type" >&5 +echo "$as_me:20232: result: $cf_cv_ipv6type" >&5 echo "${ECHO_T}$cf_cv_ipv6type" >&6 cf_ipv6lib=none cf_ipv6dir=none -echo "$as_me:20114: checking for IPv6 library if required" >&5 +echo "$as_me:20238: checking for IPv6 library if required" >&5 echo $ECHO_N "checking for IPv6 library if required... $ECHO_C" >&6 case $cf_cv_ipv6type in (solaris) @@ -20141,13 +20265,13 @@ case $cf_cv_ipv6type in cf_ipv6dir=v6 ;; esac -echo "$as_me:20144: result: $cf_ipv6lib" >&5 +echo "$as_me:20268: result: $cf_ipv6lib" >&5 echo "${ECHO_T}$cf_ipv6lib" >&6 if test "$cf_ipv6lib" != "none"; then cat >conftest.$ac_ext <<_ACEOF -#line 20150 "configure" +#line 20274 "configure" #include "confdefs.h" #include <sys/types.h> @@ -20163,16 +20287,16 @@ getaddrinfo(0, 0, 0, 0) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:20166: \"$ac_link\"") >&5 +if { (eval echo "$as_me:20290: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:20169: \$? = $ac_status" >&5 + echo "$as_me:20293: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:20172: \"$ac_try\"") >&5 + { (eval echo "$as_me:20296: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:20175: \$? = $ac_status" >&5 + echo "$as_me:20299: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -20293,7 +20417,7 @@ if test -n "$cf_incdir" ; then CPPFLAGS="${CPPFLAGS}-I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 20296 "configure" +#line 20420 "configure" #include "confdefs.h" #include <stdio.h> int @@ -20305,16 +20429,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:20308: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:20432: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:20311: \$? = $ac_status" >&5 + echo "$as_me:20435: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:20314: \"$ac_try\"") >&5 + { (eval echo "$as_me:20438: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:20317: \$? = $ac_status" >&5 + echo "$as_me:20441: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -20331,7 +20455,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}:20334: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:20458: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -20359,13 +20483,13 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext eval 'cf_cv_have_lib_'$cf_ipv6lib'=no' cf_libdir="" - echo "$as_me:20362: checking for getaddrinfo" >&5 + echo "$as_me:20486: checking for getaddrinfo" >&5 echo $ECHO_N "checking for getaddrinfo... $ECHO_C" >&6 if test "${ac_cv_func_getaddrinfo+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 20368 "configure" +#line 20492 "configure" #include "confdefs.h" #define getaddrinfo autoconf_temporary #include <limits.h> /* least-intrusive standard header which defines gcc2 __stub macros */ @@ -20396,16 +20520,16 @@ main (void) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:20399: \"$ac_link\"") >&5 +if { (eval echo "$as_me:20523: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:20402: \$? = $ac_status" >&5 + echo "$as_me:20526: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:20405: \"$ac_try\"") >&5 + { (eval echo "$as_me:20529: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:20408: \$? = $ac_status" >&5 + echo "$as_me:20532: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_getaddrinfo=yes else @@ -20415,18 +20539,18 @@ ac_cv_func_getaddrinfo=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:20418: result: $ac_cv_func_getaddrinfo" >&5 +echo "$as_me:20542: result: $ac_cv_func_getaddrinfo" >&5 echo "${ECHO_T}$ac_cv_func_getaddrinfo" >&6 if test $ac_cv_func_getaddrinfo = yes; then eval 'cf_cv_have_lib_'$cf_ipv6lib'=yes' else cf_save_LIBS="$LIBS" - echo "$as_me:20425: checking for getaddrinfo in -l$cf_ipv6lib" >&5 + echo "$as_me:20549: checking for getaddrinfo in -l$cf_ipv6lib" >&5 echo $ECHO_N "checking for getaddrinfo in -l$cf_ipv6lib... $ECHO_C" >&6 LIBS="-l$cf_ipv6lib $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 20429 "configure" +#line 20553 "configure" #include "confdefs.h" #include <sys/types.h> @@ -20442,25 +20566,25 @@ getaddrinfo(0, 0, 0, 0) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:20445: \"$ac_link\"") >&5 +if { (eval echo "$as_me:20569: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:20448: \$? = $ac_status" >&5 + echo "$as_me:20572: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:20451: \"$ac_try\"") >&5 + { (eval echo "$as_me:20575: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:20454: \$? = $ac_status" >&5 + echo "$as_me:20578: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:20456: result: yes" >&5 + echo "$as_me:20580: result: yes" >&5 echo "${ECHO_T}yes" >&6 eval 'cf_cv_have_lib_'$cf_ipv6lib'=yes' else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 -echo "$as_me:20463: result: no" >&5 +echo "$as_me:20587: result: no" >&5 echo "${ECHO_T}no" >&6 cf_search= @@ -20528,11 +20652,11 @@ cf_search="$cf_library_path_list $cf_search" for cf_libdir in $cf_search do - echo "$as_me:20531: checking for -l$cf_ipv6lib in $cf_libdir" >&5 + echo "$as_me:20655: checking for -l$cf_ipv6lib in $cf_libdir" >&5 echo $ECHO_N "checking for -l$cf_ipv6lib in $cf_libdir... $ECHO_C" >&6 LIBS="-L$cf_libdir -l$cf_ipv6lib $cf_save_LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 20535 "configure" +#line 20659 "configure" #include "confdefs.h" #include <sys/types.h> @@ -20548,25 +20672,25 @@ getaddrinfo(0, 0, 0, 0) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:20551: \"$ac_link\"") >&5 +if { (eval echo "$as_me:20675: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:20554: \$? = $ac_status" >&5 + echo "$as_me:20678: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:20557: \"$ac_try\"") >&5 + { (eval echo "$as_me:20681: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:20560: \$? = $ac_status" >&5 + echo "$as_me:20684: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:20562: result: yes" >&5 + echo "$as_me:20686: result: yes" >&5 echo "${ECHO_T}yes" >&6 eval 'cf_cv_have_lib_'$cf_ipv6lib'=yes' break else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 -echo "$as_me:20569: result: no" >&5 +echo "$as_me:20693: result: no" >&5 echo "${ECHO_T}no" >&6 LIBS="$cf_save_LIBS" fi @@ -20581,7 +20705,7 @@ fi eval 'cf_found_library=$cf_cv_have_lib_'$cf_ipv6lib if test $cf_found_library = no ; then - { { echo "$as_me:20584: error: No $cf_ipv6lib library found, cannot continue. You must fetch lib$cf_ipv6lib.a + { { echo "$as_me:20708: error: No $cf_ipv6lib library found, cannot continue. You must fetch lib$cf_ipv6lib.a from an appropriate IPv6 kit and compile beforehand." >&5 echo "$as_me: error: No $cf_ipv6lib library found, cannot continue. You must fetch lib$cf_ipv6lib.a from an appropriate IPv6 kit and compile beforehand." >&2;} @@ -20589,7 +20713,7 @@ from an appropriate IPv6 kit and compile beforehand." >&2;} fi fi -echo "$as_me:20592: checking working getaddrinfo" >&5 +echo "$as_me:20716: checking working getaddrinfo" >&5 echo $ECHO_N "checking working getaddrinfo... $ECHO_C" >&6 if test "${cf_cv_getaddrinfo+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -20599,7 +20723,7 @@ if test "$cross_compiling" = yes; then cf_cv_getaddrinfo=unknown else cat >conftest.$ac_ext <<_ACEOF -#line 20602 "configure" +#line 20726 "configure" #include "confdefs.h" #include <sys/types.h> @@ -20679,15 +20803,15 @@ int main(void) _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:20682: \"$ac_link\"") >&5 +if { (eval echo "$as_me:20806: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:20685: \$? = $ac_status" >&5 + echo "$as_me:20809: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:20687: \"$ac_try\"") >&5 + { (eval echo "$as_me:20811: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:20690: \$? = $ac_status" >&5 + echo "$as_me:20814: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_getaddrinfo=yes else @@ -20700,7 +20824,7 @@ rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext fi fi -echo "$as_me:20703: result: $cf_cv_getaddrinfo" >&5 +echo "$as_me:20827: result: $cf_cv_getaddrinfo" >&5 echo "${ECHO_T}$cf_cv_getaddrinfo" >&6 if test "$cf_cv_getaddrinfo" = yes ; then @@ -20716,12 +20840,12 @@ fi if test "$cf_cv_getaddrinfo" != "yes"; then if test "$cf_cv_ipv6type" != "linux"; then - { echo "$as_me:20719: WARNING: You must get working getaddrinfo() function, + { echo "$as_me:20843: WARNING: You must get working getaddrinfo() function, or you can specify \"--disable-ipv6\"" >&5 echo "$as_me: WARNING: You must get working getaddrinfo() function, or you can specify \"--disable-ipv6\"" >&2;} else - { echo "$as_me:20724: WARNING: The getaddrinfo() implementation on your system seems be buggy. + { echo "$as_me:20848: WARNING: The getaddrinfo() implementation on your system seems be buggy. You should upgrade your system library to the newest version of GNU C library (aka glibc)." >&5 echo "$as_me: WARNING: The getaddrinfo() implementation on your system seems be buggy. @@ -20732,7 +20856,7 @@ fi fi -echo "$as_me:20735: checking for screen type" >&5 +echo "$as_me:20859: checking for screen type" >&5 echo $ECHO_N "checking for screen type... $ECHO_C" >&6 if test "${cf_cv_screen+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -20746,7 +20870,7 @@ case $withval in (curses|ncurses*|pdcurses|slang) cf_cv_screen=$withval ;; -(*) { { echo "$as_me:20749: error: Unexpected value $withval" >&5 +(*) { { echo "$as_me:20873: error: Unexpected value $withval" >&5 echo "$as_me: error: Unexpected value $withval" >&2;} { (exit 1); exit 1; }; } ;; @@ -20755,13 +20879,13 @@ else cf_cv_screen=curses fi; fi -echo "$as_me:20758: result: $cf_cv_screen" >&5 +echo "$as_me:20882: result: $cf_cv_screen" >&5 echo "${ECHO_T}$cf_cv_screen" >&6 case $cf_cv_screen in (curses|ncurses*) -echo "$as_me:20764: checking for specific curses-directory" >&5 +echo "$as_me:20888: checking for specific curses-directory" >&5 echo $ECHO_N "checking for specific curses-directory... $ECHO_C" >&6 # Check whether --with-curses-dir or --without-curses-dir was given. @@ -20771,7 +20895,7 @@ if test "${with_curses_dir+set}" = set; then else cf_cv_curses_dir=no fi; -echo "$as_me:20774: result: $cf_cv_curses_dir" >&5 +echo "$as_me:20898: result: $cf_cv_curses_dir" >&5 echo "${ECHO_T}$cf_cv_curses_dir" >&6 if ( test -n "$cf_cv_curses_dir" && test "$cf_cv_curses_dir" != "no" ) @@ -20802,7 +20926,7 @@ case ".$withval" in withval=`echo $withval | sed -e s%NONE%$cf_path_syntax%` ;; (*) - { { echo "$as_me:20805: error: expected a pathname, not \"$withval\"" >&5 + { { echo "$as_me:20929: error: expected a pathname, not \"$withval\"" >&5 echo "$as_me: error: expected a pathname, not \"$withval\"" >&2;} { (exit 1); exit 1; }; } ;; @@ -20838,7 +20962,7 @@ if test -n "$cf_cv_curses_dir/include" ; then CPPFLAGS="${CPPFLAGS}-I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 20841 "configure" +#line 20965 "configure" #include "confdefs.h" #include <stdio.h> int @@ -20850,16 +20974,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:20853: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:20977: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:20856: \$? = $ac_status" >&5 + echo "$as_me:20980: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:20859: \"$ac_try\"") >&5 + { (eval echo "$as_me:20983: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:20862: \$? = $ac_status" >&5 + echo "$as_me:20986: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -20876,7 +21000,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}:20879: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:21003: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -20912,7 +21036,7 @@ if test -n "$cf_cv_curses_dir/lib" ; then if test "$cf_have_libdir" = no ; then test -n "$verbose" && echo " adding $cf_add_libdir to library-path" 1>&6 -echo "${as_me:-configure}:20915: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:21039: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -20931,7 +21055,7 @@ dft_color_style=yes case $cf_cv_screen in (curses) -echo "$as_me:20934: checking for extra include directories" >&5 +echo "$as_me:21058: checking for extra include directories" >&5 echo $ECHO_N "checking for extra include directories... $ECHO_C" >&6 if test "${cf_cv_curses_incdir+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -20957,7 +21081,7 @@ case $host_os in esac fi -echo "$as_me:20960: result: $cf_cv_curses_incdir" >&5 +echo "$as_me:21084: result: $cf_cv_curses_incdir" >&5 echo "${ECHO_T}$cf_cv_curses_incdir" >&6 if test "$cf_cv_curses_incdir" != no then @@ -20967,7 +21091,7 @@ then fi -echo "$as_me:20970: checking if we have identified curses headers" >&5 +echo "$as_me:21094: 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 @@ -20979,7 +21103,7 @@ for cf_header in \ curses.h ncurses/ncurses.h ncurses/curses.h do cat >conftest.$ac_ext <<_ACEOF -#line 20982 "configure" +#line 21106 "configure" #include "confdefs.h" #include <${cf_header}> int @@ -20991,16 +21115,16 @@ initscr(); tgoto("?", 0,0) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:20994: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:21118: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:20997: \$? = $ac_status" >&5 + echo "$as_me:21121: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:21000: \"$ac_try\"") >&5 + { (eval echo "$as_me:21124: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:21003: \$? = $ac_status" >&5 + echo "$as_me:21127: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_ncurses_header=$cf_header; break else @@ -21011,11 +21135,11 @@ rm -f conftest.$ac_objext conftest.$ac_ext done fi -echo "$as_me:21014: result: $cf_cv_ncurses_header" >&5 +echo "$as_me:21138: 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:21018: error: No curses header-files found" >&5 + { { echo "$as_me:21142: error: No curses header-files found" >&5 echo "$as_me: error: No curses header-files found" >&2;} { (exit 1); exit 1; }; } fi @@ -21025,23 +21149,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:21028: checking for $ac_header" >&5 +echo "$as_me:21152: 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 21034 "configure" +#line 21158 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:21038: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:21162: \"$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:21044: \$? = $ac_status" >&5 + echo "$as_me:21168: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -21060,7 +21184,7 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:21063: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:21187: 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 @@ -21070,7 +21194,7 @@ EOF fi done -echo "$as_me:21073: checking for terminfo header" >&5 +echo "$as_me:21197: 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 @@ -21088,7 +21212,7 @@ esac for cf_test in $cf_term_header "ncurses/term.h" "ncursesw/term.h" do cat >conftest.$ac_ext <<_ACEOF -#line 21091 "configure" +#line 21215 "configure" #include "confdefs.h" #include <stdio.h> #include <${cf_cv_ncurses_header:-curses.h}> @@ -21103,16 +21227,16 @@ int x = auto_left_margin; (void)x } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:21106: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:21230: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:21109: \$? = $ac_status" >&5 + echo "$as_me:21233: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:21112: \"$ac_try\"") >&5 + { (eval echo "$as_me:21236: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:21115: \$? = $ac_status" >&5 + echo "$as_me:21239: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_term_header="$cf_test" @@ -21128,7 +21252,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext done fi -echo "$as_me:21131: result: $cf_cv_term_header" >&5 +echo "$as_me:21255: result: $cf_cv_term_header" >&5 echo "${ECHO_T}$cf_cv_term_header" >&6 # Set definitions to allow ifdef'ing to accommodate subdirectories @@ -21160,7 +21284,7 @@ EOF ;; esac -echo "$as_me:21163: checking for ncurses version" >&5 +echo "$as_me:21287: 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 @@ -21186,10 +21310,10 @@ Autoconf "old" #endif EOF cf_try="$ac_cpp conftest.$ac_ext 2>&5 | grep '^Autoconf ' >conftest.out" - { (eval echo "$as_me:21189: \"$cf_try\"") >&5 + { (eval echo "$as_me:21313: \"$cf_try\"") >&5 (eval $cf_try) 2>&5 ac_status=$? - echo "$as_me:21192: \$? = $ac_status" >&5 + echo "$as_me:21316: \$? = $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%".*%%'` @@ -21199,7 +21323,7 @@ EOF else cat >conftest.$ac_ext <<_ACEOF -#line 21202 "configure" +#line 21326 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> @@ -21224,15 +21348,15 @@ int main(void) } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:21227: \"$ac_link\"") >&5 +if { (eval echo "$as_me:21351: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:21230: \$? = $ac_status" >&5 + echo "$as_me:21354: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:21232: \"$ac_try\"") >&5 + { (eval echo "$as_me:21356: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:21235: \$? = $ac_status" >&5 + echo "$as_me:21359: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_ncurses_version=`cat $cf_tempfile` @@ -21246,17 +21370,17 @@ fi rm -f $cf_tempfile fi -echo "$as_me:21249: result: $cf_cv_ncurses_version" >&5 +echo "$as_me:21373: result: $cf_cv_ncurses_version" >&5 echo "${ECHO_T}$cf_cv_ncurses_version" >&6 test "$cf_cv_ncurses_version" = no || cat >>confdefs.h <<\EOF #define NCURSES 1 EOF -echo "$as_me:21256: checking if we have identified curses libraries" >&5 +echo "$as_me:21380: checking if we have identified curses libraries" >&5 echo $ECHO_N "checking if we have identified curses libraries... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF -#line 21259 "configure" +#line 21383 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> int @@ -21268,16 +21392,16 @@ initscr(); tgoto("?", 0,0) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:21271: \"$ac_link\"") >&5 +if { (eval echo "$as_me:21395: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:21274: \$? = $ac_status" >&5 + echo "$as_me:21398: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:21277: \"$ac_try\"") >&5 + { (eval echo "$as_me:21401: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:21280: \$? = $ac_status" >&5 + echo "$as_me:21404: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_result=yes else @@ -21286,13 +21410,13 @@ cat conftest.$ac_ext >&5 cf_result=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext -echo "$as_me:21289: result: $cf_result" >&5 +echo "$as_me:21413: result: $cf_result" >&5 echo "${ECHO_T}$cf_result" >&6 if test "$cf_result" = no ; then case $host_os in (freebsd*) - echo "$as_me:21295: checking for tgoto in -lmytinfo" >&5 + echo "$as_me:21419: 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 @@ -21300,7 +21424,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lmytinfo $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 21303 "configure" +#line 21427 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -21319,16 +21443,16 @@ tgoto (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:21322: \"$ac_link\"") >&5 +if { (eval echo "$as_me:21446: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:21325: \$? = $ac_status" >&5 + echo "$as_me:21449: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:21328: \"$ac_try\"") >&5 + { (eval echo "$as_me:21452: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:21331: \$? = $ac_status" >&5 + echo "$as_me:21455: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_mytinfo_tgoto=yes else @@ -21339,7 +21463,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:21342: result: $ac_cv_lib_mytinfo_tgoto" >&5 +echo "$as_me:21466: 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 @@ -21369,7 +21493,7 @@ fi # term.h) for cur_colr if test "x$cf_cv_screen" = "xcurses_colr" then - echo "$as_me:21372: checking for initscr in -lcur_colr" >&5 + echo "$as_me:21496: checking for initscr in -lcur_colr" >&5 echo $ECHO_N "checking for initscr in -lcur_colr... $ECHO_C" >&6 if test "${ac_cv_lib_cur_colr_initscr+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -21377,7 +21501,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lcur_colr $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 21380 "configure" +#line 21504 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -21396,16 +21520,16 @@ initscr (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:21399: \"$ac_link\"") >&5 +if { (eval echo "$as_me:21523: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:21402: \$? = $ac_status" >&5 + echo "$as_me:21526: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:21405: \"$ac_try\"") >&5 + { (eval echo "$as_me:21529: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:21408: \$? = $ac_status" >&5 + echo "$as_me:21532: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_cur_colr_initscr=yes else @@ -21416,7 +21540,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:21419: result: $ac_cv_lib_cur_colr_initscr" >&5 +echo "$as_me:21543: result: $ac_cv_lib_cur_colr_initscr" >&5 echo "${ECHO_T}$ac_cv_lib_cur_colr_initscr" >&6 if test $ac_cv_lib_cur_colr_initscr = yes; then @@ -21440,7 +21564,7 @@ LIBS="$cf_add_libs" else - echo "$as_me:21443: checking for initscr in -lHcurses" >&5 + echo "$as_me:21567: checking for initscr in -lHcurses" >&5 echo $ECHO_N "checking for initscr in -lHcurses... $ECHO_C" >&6 if test "${ac_cv_lib_Hcurses_initscr+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -21448,7 +21572,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lHcurses $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 21451 "configure" +#line 21575 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -21467,16 +21591,16 @@ initscr (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:21470: \"$ac_link\"") >&5 +if { (eval echo "$as_me:21594: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:21473: \$? = $ac_status" >&5 + echo "$as_me:21597: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:21476: \"$ac_try\"") >&5 + { (eval echo "$as_me:21600: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:21479: \$? = $ac_status" >&5 + echo "$as_me:21603: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_Hcurses_initscr=yes else @@ -21487,7 +21611,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:21490: result: $ac_cv_lib_Hcurses_initscr" >&5 +echo "$as_me:21614: result: $ac_cv_lib_Hcurses_initscr" >&5 echo "${ECHO_T}$ac_cv_lib_Hcurses_initscr" >&6 if test $ac_cv_lib_Hcurses_initscr = yes; then @@ -21545,7 +21669,7 @@ if test -n "/lib64" ; then if test "$cf_have_libdir" = no ; then test -n "$verbose" && echo " adding $cf_add_libdir to library-path" 1>&6 -echo "${as_me:-configure}:21548: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:21672: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -21574,7 +21698,7 @@ if test -n "/lib" ; then if test "$cf_have_libdir" = no ; then test -n "$verbose" && echo " adding $cf_add_libdir to library-path" 1>&6 -echo "${as_me:-configure}:21577: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:21701: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -21605,7 +21729,7 @@ if test -n "/lib" ; then if test "$cf_have_libdir" = no ; then test -n "$verbose" && echo " adding $cf_add_libdir to library-path" 1>&6 -echo "${as_me:-configure}:21608: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:21732: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -21640,7 +21764,7 @@ if test -n "/usr/5lib" ; then if test "$cf_have_libdir" = no ; then test -n "$verbose" && echo " adding $cf_add_libdir to library-path" 1>&6 -echo "${as_me:-configure}:21643: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:21767: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -21684,13 +21808,13 @@ if test ".$ac_cv_func_initscr" != .yes ; then # because it may be needed to link the test-case for initscr. if test "x$cf_term_lib" = x then - echo "$as_me:21687: checking for tgoto" >&5 + echo "$as_me:21811: checking for tgoto" >&5 echo $ECHO_N "checking for tgoto... $ECHO_C" >&6 if test "${ac_cv_func_tgoto+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 21693 "configure" +#line 21817 "configure" #include "confdefs.h" #define tgoto autoconf_temporary #include <limits.h> /* least-intrusive standard header which defines gcc2 __stub macros */ @@ -21721,16 +21845,16 @@ main (void) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:21724: \"$ac_link\"") >&5 +if { (eval echo "$as_me:21848: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:21727: \$? = $ac_status" >&5 + echo "$as_me:21851: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:21730: \"$ac_try\"") >&5 + { (eval echo "$as_me:21854: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:21733: \$? = $ac_status" >&5 + echo "$as_me:21857: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_tgoto=yes else @@ -21740,7 +21864,7 @@ ac_cv_func_tgoto=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:21743: result: $ac_cv_func_tgoto" >&5 +echo "$as_me:21867: result: $ac_cv_func_tgoto" >&5 echo "${ECHO_T}$ac_cv_func_tgoto" >&6 if test $ac_cv_func_tgoto = yes; then cf_term_lib=predefined @@ -21749,7 +21873,7 @@ else for cf_term_lib in $cf_check_list otermcap termcap tinfo termlib unknown do as_ac_Lib=`echo "ac_cv_lib_$cf_term_lib''_tgoto" | $as_tr_sh` -echo "$as_me:21752: checking for tgoto in -l$cf_term_lib" >&5 +echo "$as_me:21876: checking for tgoto in -l$cf_term_lib" >&5 echo $ECHO_N "checking for tgoto in -l$cf_term_lib... $ECHO_C" >&6 if eval "test \"\${$as_ac_Lib+set}\" = set"; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -21757,7 +21881,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-l$cf_term_lib $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 21760 "configure" +#line 21884 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -21776,16 +21900,16 @@ tgoto (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:21779: \"$ac_link\"") >&5 +if { (eval echo "$as_me:21903: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:21782: \$? = $ac_status" >&5 + echo "$as_me:21906: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:21785: \"$ac_try\"") >&5 + { (eval echo "$as_me:21909: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:21788: \$? = $ac_status" >&5 + echo "$as_me:21912: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_Lib=yes" else @@ -21796,7 +21920,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:21799: result: `eval echo '${'$as_ac_Lib'}'`" >&5 +echo "$as_me:21923: 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 @@ -21819,10 +21943,10 @@ fi do LIBS="-l$cf_curs_lib $cf_save_LIBS" if test "$cf_term_lib" = unknown || test "$cf_term_lib" = "$cf_curs_lib" ; then - echo "$as_me:21822: checking if we can link with $cf_curs_lib library" >&5 + echo "$as_me:21946: 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 21825 "configure" +#line 21949 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> int @@ -21834,16 +21958,16 @@ initscr() } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:21837: \"$ac_link\"") >&5 +if { (eval echo "$as_me:21961: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:21840: \$? = $ac_status" >&5 + echo "$as_me:21964: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:21843: \"$ac_try\"") >&5 + { (eval echo "$as_me:21967: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:21846: \$? = $ac_status" >&5 + echo "$as_me:21970: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_result=yes else @@ -21852,16 +21976,16 @@ cat conftest.$ac_ext >&5 cf_result=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext - echo "$as_me:21855: result: $cf_result" >&5 + echo "$as_me:21979: result: $cf_result" >&5 echo "${ECHO_T}$cf_result" >&6 test $cf_result = yes && break elif test "$cf_curs_lib" = "$cf_term_lib" ; then cf_result=no elif test "$cf_term_lib" != predefined ; then - echo "$as_me:21861: checking if we need both $cf_curs_lib and $cf_term_lib libraries" >&5 + echo "$as_me:21985: 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 21864 "configure" +#line 21988 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> int @@ -21873,16 +21997,16 @@ initscr(); tgoto((char *)0, 0, 0); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:21876: \"$ac_link\"") >&5 +if { (eval echo "$as_me:22000: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:21879: \$? = $ac_status" >&5 + echo "$as_me:22003: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:21882: \"$ac_try\"") >&5 + { (eval echo "$as_me:22006: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:21885: \$? = $ac_status" >&5 + echo "$as_me:22009: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_result=no else @@ -21891,7 +22015,7 @@ cat conftest.$ac_ext >&5 LIBS="-l$cf_curs_lib -l$cf_term_lib $cf_save_LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 21894 "configure" +#line 22018 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> int @@ -21903,16 +22027,16 @@ initscr() } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:21906: \"$ac_link\"") >&5 +if { (eval echo "$as_me:22030: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:21909: \$? = $ac_status" >&5 + echo "$as_me:22033: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:21912: \"$ac_try\"") >&5 + { (eval echo "$as_me:22036: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:21915: \$? = $ac_status" >&5 + echo "$as_me:22039: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_result=yes else @@ -21924,19 +22048,19 @@ 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:21927: result: $cf_result" >&5 + echo "$as_me:22051: result: $cf_result" >&5 echo "${ECHO_T}$cf_result" >&6 test $cf_result != error && break fi done fi - test $cf_curs_lib = unknown && { { echo "$as_me:21933: error: no curses library found" >&5 + test $cf_curs_lib = unknown && { { echo "$as_me:22057: error: no curses library found" >&5 echo "$as_me: error: no curses library found" >&2;} { (exit 1); exit 1; }; } fi fi -echo "$as_me:21939: checking for curses performance tradeoff" >&5 +echo "$as_me:22063: 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 @@ -21944,7 +22068,7 @@ else cf_cv_curs_performance=no cat >conftest.$ac_ext <<_ACEOF -#line 21947 "configure" +#line 22071 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> @@ -21963,20 +22087,20 @@ main (void) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:21966: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:22090: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:21969: \$? = $ac_status" >&5 + echo "$as_me:22093: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:21972: \"$ac_try\"") >&5 + { (eval echo "$as_me:22096: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:21975: \$? = $ac_status" >&5 + echo "$as_me:22099: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cat >conftest.$ac_ext <<_ACEOF -#line 21979 "configure" +#line 22103 "configure" #include "confdefs.h" #define CURS_PERFORMANCE @@ -21996,16 +22120,16 @@ main (void) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:21999: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:22123: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:22002: \$? = $ac_status" >&5 + echo "$as_me:22126: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:22005: \"$ac_try\"") >&5 + { (eval echo "$as_me:22129: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:22008: \$? = $ac_status" >&5 + echo "$as_me:22132: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_curs_performance=yes else @@ -22020,21 +22144,21 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:22023: result: $cf_cv_curs_performance" >&5 +echo "$as_me:22147: 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:22030: checking for curses touchline function" >&5 +echo "$as_me:22154: 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 22037 "configure" +#line 22161 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> @@ -22047,23 +22171,23 @@ touchline(stdscr, 1,2,3); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:22050: \"$ac_link\"") >&5 +if { (eval echo "$as_me:22174: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:22053: \$? = $ac_status" >&5 + echo "$as_me:22177: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:22056: \"$ac_try\"") >&5 + { (eval echo "$as_me:22180: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:22059: \$? = $ac_status" >&5 + echo "$as_me:22183: \$? = $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 22066 "configure" +#line 22190 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> @@ -22076,16 +22200,16 @@ touchline(stdscr, 1,2); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:22079: \"$ac_link\"") >&5 +if { (eval echo "$as_me:22203: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:22082: \$? = $ac_status" >&5 + echo "$as_me:22206: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:22085: \"$ac_try\"") >&5 + { (eval echo "$as_me:22209: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:22088: \$? = $ac_status" >&5 + echo "$as_me:22212: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_curs_touchline=sysv else @@ -22097,7 +22221,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:22100: result: $cf_cv_curs_touchline" >&5 +echo "$as_me:22224: result: $cf_cv_curs_touchline" >&5 echo "${ECHO_T}$cf_cv_curs_touchline" >&6 case "$cf_cv_curs_touchline" in (bsd) @@ -22119,7 +22243,7 @@ esac ;; (ncursesw*) -echo "$as_me:22122: checking for multibyte character support" >&5 +echo "$as_me:22246: 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 @@ -22127,7 +22251,7 @@ else cf_save_LIBS="$LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 22130 "configure" +#line 22254 "configure" #include "confdefs.h" #include <stdlib.h> @@ -22140,16 +22264,16 @@ putwc(0,0); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:22143: \"$ac_link\"") >&5 +if { (eval echo "$as_me:22267: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:22146: \$? = $ac_status" >&5 + echo "$as_me:22270: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:22149: \"$ac_try\"") >&5 + { (eval echo "$as_me:22273: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:22152: \$? = $ac_status" >&5 + echo "$as_me:22276: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_utf8_lib=yes else @@ -22161,12 +22285,12 @@ cat conftest.$ac_ext >&5 cf_cv_header_path_utf8= cf_cv_library_path_utf8= -echo "${as_me:-configure}:22164: testing Starting FIND_LINKAGE(utf8,) ..." 1>&5 +echo "${as_me:-configure}:22288: testing Starting FIND_LINKAGE(utf8,) ..." 1>&5 cf_save_LIBS="$LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 22169 "configure" +#line 22293 "configure" #include "confdefs.h" #include <libutf8.h> @@ -22179,16 +22303,16 @@ putwc(0,0); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:22182: \"$ac_link\"") >&5 +if { (eval echo "$as_me:22306: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:22185: \$? = $ac_status" >&5 + echo "$as_me:22309: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:22188: \"$ac_try\"") >&5 + { (eval echo "$as_me:22312: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:22191: \$? = $ac_status" >&5 + echo "$as_me:22315: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_find_linkage_utf8=yes @@ -22202,7 +22326,7 @@ cat conftest.$ac_ext >&5 LIBS="-lutf8 $cf_save_LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 22205 "configure" +#line 22329 "configure" #include "confdefs.h" #include <libutf8.h> @@ -22215,16 +22339,16 @@ putwc(0,0); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:22218: \"$ac_link\"") >&5 +if { (eval echo "$as_me:22342: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:22221: \$? = $ac_status" >&5 + echo "$as_me:22345: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:22224: \"$ac_try\"") >&5 + { (eval echo "$as_me:22348: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:22227: \$? = $ac_status" >&5 + echo "$as_me:22351: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_find_linkage_utf8=yes @@ -22241,9 +22365,9 @@ cat conftest.$ac_ext >&5 test -n "$verbose" && echo " find linkage for utf8 library" 1>&6 -echo "${as_me:-configure}:22244: testing find linkage for utf8 library ..." 1>&5 +echo "${as_me:-configure}:22368: testing find linkage for utf8 library ..." 1>&5 -echo "${as_me:-configure}:22246: testing Searching for headers in FIND_LINKAGE(utf8,) ..." 1>&5 +echo "${as_me:-configure}:22370: testing Searching for headers in FIND_LINKAGE(utf8,) ..." 1>&5 cf_save_CPPFLAGS="$CPPFLAGS" cf_test_CPPFLAGS="$CPPFLAGS" @@ -22334,7 +22458,7 @@ 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}:22337: testing ... testing $cf_cv_header_path_utf8 ..." 1>&5 +echo "${as_me:-configure}:22461: testing ... testing $cf_cv_header_path_utf8 ..." 1>&5 CPPFLAGS="$cf_save_CPPFLAGS" @@ -22342,7 +22466,7 @@ echo "${as_me:-configure}:22337: testing ... testing $cf_cv_header_path_utf8 ... CPPFLAGS="${CPPFLAGS}-I$cf_cv_header_path_utf8" cat >conftest.$ac_ext <<_ACEOF -#line 22345 "configure" +#line 22469 "configure" #include "confdefs.h" #include <libutf8.h> @@ -22355,21 +22479,21 @@ putwc(0,0); } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:22358: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:22482: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:22361: \$? = $ac_status" >&5 + echo "$as_me:22485: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:22364: \"$ac_try\"") >&5 + { (eval echo "$as_me:22488: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:22367: \$? = $ac_status" >&5 + echo "$as_me:22491: \$? = $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}:22372: testing ... found utf8 headers in $cf_cv_header_path_utf8 ..." 1>&5 +echo "${as_me:-configure}:22496: testing ... found utf8 headers in $cf_cv_header_path_utf8 ..." 1>&5 cf_cv_find_linkage_utf8=maybe cf_test_CPPFLAGS="$CPPFLAGS" @@ -22387,7 +22511,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "$cf_cv_find_linkage_utf8" = maybe ; then -echo "${as_me:-configure}:22390: testing Searching for utf8 library in FIND_LINKAGE(utf8,) ..." 1>&5 +echo "${as_me:-configure}:22514: testing Searching for utf8 library in FIND_LINKAGE(utf8,) ..." 1>&5 cf_save_LIBS="$LIBS" cf_save_LDFLAGS="$LDFLAGS" @@ -22462,13 +22586,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}:22465: testing ... testing $cf_cv_library_path_utf8 ..." 1>&5 +echo "${as_me:-configure}:22589: 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 22471 "configure" +#line 22595 "configure" #include "confdefs.h" #include <libutf8.h> @@ -22481,21 +22605,21 @@ putwc(0,0); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:22484: \"$ac_link\"") >&5 +if { (eval echo "$as_me:22608: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:22487: \$? = $ac_status" >&5 + echo "$as_me:22611: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:22490: \"$ac_try\"") >&5 + { (eval echo "$as_me:22614: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:22493: \$? = $ac_status" >&5 + echo "$as_me:22617: \$? = $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}:22498: testing ... found utf8 library in $cf_cv_library_path_utf8 ..." 1>&5 +echo "${as_me:-configure}:22622: testing ... found utf8 library in $cf_cv_library_path_utf8 ..." 1>&5 cf_cv_find_linkage_utf8=yes cf_cv_library_file_utf8="-lutf8" @@ -22537,7 +22661,7 @@ fi fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:22540: result: $cf_cv_utf8_lib" >&5 +echo "$as_me:22664: 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 @@ -22575,7 +22699,7 @@ if test -n "$cf_cv_header_path_utf8" ; then CPPFLAGS="${CPPFLAGS}-I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 22578 "configure" +#line 22702 "configure" #include "confdefs.h" #include <stdio.h> int @@ -22587,16 +22711,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:22590: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:22714: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:22593: \$? = $ac_status" >&5 + echo "$as_me:22717: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:22596: \"$ac_try\"") >&5 + { (eval echo "$as_me:22720: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:22599: \$? = $ac_status" >&5 + echo "$as_me:22723: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -22613,7 +22737,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}:22616: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:22740: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -22649,7 +22773,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}:22652: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:22776: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -22679,13 +22803,13 @@ cf_ncuconfig_root=$cf_cv_screen cf_have_ncuconfig=no if test "x${PKG_CONFIG:=none}" != xnone; then - echo "$as_me:22682: checking pkg-config for $cf_ncuconfig_root" >&5 + echo "$as_me:22806: checking pkg-config for $cf_ncuconfig_root" >&5 echo $ECHO_N "checking pkg-config for $cf_ncuconfig_root... $ECHO_C" >&6 if "$PKG_CONFIG" --exists $cf_ncuconfig_root ; then - echo "$as_me:22685: result: yes" >&5 + echo "$as_me:22809: result: yes" >&5 echo "${ECHO_T}yes" >&6 - echo "$as_me:22688: checking if the $cf_ncuconfig_root package files work" >&5 + echo "$as_me:22812: checking if the $cf_ncuconfig_root package files work" >&5 echo $ECHO_N "checking if the $cf_ncuconfig_root package files work... $ECHO_C" >&6 cf_have_ncuconfig=unknown @@ -22818,7 +22942,7 @@ done LIBS="$cf_add_libs" cat >conftest.$ac_ext <<_ACEOF -#line 22821 "configure" +#line 22945 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> int @@ -22830,37 +22954,37 @@ initscr(); mousemask(0,0); tgoto((char *)0, 0, 0); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:22833: \"$ac_link\"") >&5 +if { (eval echo "$as_me:22957: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:22836: \$? = $ac_status" >&5 + echo "$as_me:22960: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:22839: \"$ac_try\"") >&5 + { (eval echo "$as_me:22963: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:22842: \$? = $ac_status" >&5 + echo "$as_me:22966: \$? = $ac_status" >&5 (exit $ac_status); }; }; then if test "$cross_compiling" = yes; then cf_test_ncuconfig=maybe else cat >conftest.$ac_ext <<_ACEOF -#line 22848 "configure" +#line 22972 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> int main(void) { char *xx = curses_version(); return (xx == 0); } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:22855: \"$ac_link\"") >&5 +if { (eval echo "$as_me:22979: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:22858: \$? = $ac_status" >&5 + echo "$as_me:22982: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:22860: \"$ac_try\"") >&5 + { (eval echo "$as_me:22984: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:22863: \$? = $ac_status" >&5 + echo "$as_me:22987: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_test_ncuconfig=yes else @@ -23006,7 +23130,7 @@ done LIBS="$cf_add_libs" cat >conftest.$ac_ext <<_ACEOF -#line 23009 "configure" +#line 23133 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> int @@ -23018,37 +23142,37 @@ initscr(); mousemask(0,0); tgoto((char *)0, 0, 0); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:23021: \"$ac_link\"") >&5 +if { (eval echo "$as_me:23145: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:23024: \$? = $ac_status" >&5 + echo "$as_me:23148: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:23027: \"$ac_try\"") >&5 + { (eval echo "$as_me:23151: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23030: \$? = $ac_status" >&5 + echo "$as_me:23154: \$? = $ac_status" >&5 (exit $ac_status); }; }; then if test "$cross_compiling" = yes; then cf_have_ncuconfig=maybe else cat >conftest.$ac_ext <<_ACEOF -#line 23036 "configure" +#line 23160 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> int main(void) { char *xx = curses_version(); return (xx == 0); } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:23043: \"$ac_link\"") >&5 +if { (eval echo "$as_me:23167: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:23046: \$? = $ac_status" >&5 + echo "$as_me:23170: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:23048: \"$ac_try\"") >&5 + { (eval echo "$as_me:23172: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23051: \$? = $ac_status" >&5 + echo "$as_me:23175: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_have_ncuconfig=yes else @@ -23065,7 +23189,7 @@ cat conftest.$ac_ext >&5 cf_have_ncuconfig=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext - echo "$as_me:23068: result: $cf_have_ncuconfig" >&5 + echo "$as_me:23192: result: $cf_have_ncuconfig" >&5 echo "${ECHO_T}$cf_have_ncuconfig" >&6 test "$cf_have_ncuconfig" = maybe && cf_have_ncuconfig=yes if test "$cf_have_ncuconfig" != "yes" @@ -23081,7 +23205,7 @@ EOF NCURSES_CONFIG_PKG=$cf_ncuconfig_root -echo "$as_me:23084: checking for terminfo header" >&5 +echo "$as_me:23208: 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 @@ -23099,7 +23223,7 @@ esac for cf_test in $cf_term_header "ncurses/term.h" "ncursesw/term.h" do cat >conftest.$ac_ext <<_ACEOF -#line 23102 "configure" +#line 23226 "configure" #include "confdefs.h" #include <stdio.h> #include <${cf_cv_ncurses_header:-curses.h}> @@ -23114,16 +23238,16 @@ int x = auto_left_margin; (void)x } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:23117: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:23241: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:23120: \$? = $ac_status" >&5 + echo "$as_me:23244: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:23123: \"$ac_try\"") >&5 + { (eval echo "$as_me:23247: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23126: \$? = $ac_status" >&5 + echo "$as_me:23250: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_term_header="$cf_test" @@ -23139,7 +23263,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext done fi -echo "$as_me:23142: result: $cf_cv_term_header" >&5 +echo "$as_me:23266: result: $cf_cv_term_header" >&5 echo "${ECHO_T}$cf_cv_term_header" >&6 # Set definitions to allow ifdef'ing to accommodate subdirectories @@ -23174,7 +23298,7 @@ esac fi else - echo "$as_me:23177: result: no" >&5 + echo "$as_me:23301: result: no" >&5 echo "${ECHO_T}no" >&6 NCURSES_CONFIG_PKG=none fi @@ -23190,7 +23314,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:23193: checking for $ac_word" >&5 +echo "$as_me:23317: 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 @@ -23205,7 +23329,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:23208: found $ac_dir/$ac_word" >&5 +echo "$as_me:23332: found $ac_dir/$ac_word" >&5 break done @@ -23213,10 +23337,10 @@ fi fi NCURSES_CONFIG=$ac_cv_prog_NCURSES_CONFIG if test -n "$NCURSES_CONFIG"; then - echo "$as_me:23216: result: $NCURSES_CONFIG" >&5 + echo "$as_me:23340: result: $NCURSES_CONFIG" >&5 echo "${ECHO_T}$NCURSES_CONFIG" >&6 else - echo "$as_me:23219: result: no" >&5 + echo "$as_me:23343: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -23229,7 +23353,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:23232: checking for $ac_word" >&5 +echo "$as_me:23356: 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 @@ -23244,7 +23368,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:23247: found $ac_dir/$ac_word" >&5 +echo "$as_me:23371: found $ac_dir/$ac_word" >&5 break done @@ -23252,10 +23376,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:23255: result: $ac_ct_NCURSES_CONFIG" >&5 + echo "$as_me:23379: result: $ac_ct_NCURSES_CONFIG" >&5 echo "${ECHO_T}$ac_ct_NCURSES_CONFIG" >&6 else - echo "$as_me:23258: result: no" >&5 + echo "$as_me:23382: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -23384,7 +23508,7 @@ LIBS="$cf_add_libs" # even with config script, some packages use no-override for curses.h -echo "$as_me:23387: checking if we have identified curses headers" >&5 +echo "$as_me:23511: 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 @@ -23396,7 +23520,7 @@ for cf_header in \ curses.h $cf_cv_screen/curses.h do cat >conftest.$ac_ext <<_ACEOF -#line 23399 "configure" +#line 23523 "configure" #include "confdefs.h" #include <${cf_header}> int @@ -23408,16 +23532,16 @@ initscr(); tgoto("?", 0,0) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:23411: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:23535: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:23414: \$? = $ac_status" >&5 + echo "$as_me:23538: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:23417: \"$ac_try\"") >&5 + { (eval echo "$as_me:23541: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23420: \$? = $ac_status" >&5 + echo "$as_me:23544: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_ncurses_header=$cf_header; break else @@ -23428,11 +23552,11 @@ rm -f conftest.$ac_objext conftest.$ac_ext done fi -echo "$as_me:23431: result: $cf_cv_ncurses_header" >&5 +echo "$as_me:23555: 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:23435: error: No curses header-files found" >&5 + { { echo "$as_me:23559: error: No curses header-files found" >&5 echo "$as_me: error: No curses header-files found" >&2;} { (exit 1); exit 1; }; } fi @@ -23442,23 +23566,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:23445: checking for $ac_header" >&5 +echo "$as_me:23569: 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 23451 "configure" +#line 23575 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:23455: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:23579: \"$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:23461: \$? = $ac_status" >&5 + echo "$as_me:23585: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -23477,7 +23601,7 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:23480: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:23604: 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 @@ -23533,7 +23657,7 @@ if test -n "$cf_cv_curses_dir/include/$cf_ncuhdr_root" ; then CPPFLAGS="${CPPFLAGS}-I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 23536 "configure" +#line 23660 "configure" #include "confdefs.h" #include <stdio.h> int @@ -23545,16 +23669,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:23548: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:23672: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:23551: \$? = $ac_status" >&5 + echo "$as_me:23675: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:23554: \"$ac_try\"") >&5 + { (eval echo "$as_me:23678: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23557: \$? = $ac_status" >&5 + echo "$as_me:23681: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -23571,7 +23695,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}:23574: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:23698: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -23590,7 +23714,7 @@ fi } -echo "$as_me:23593: checking for $cf_ncuhdr_root header in include-path" >&5 +echo "$as_me:23717: 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 @@ -23602,7 +23726,7 @@ else do cat >conftest.$ac_ext <<_ACEOF -#line 23605 "configure" +#line 23729 "configure" #include "confdefs.h" #include <$cf_header> @@ -23626,16 +23750,16 @@ printf("old\n"); } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:23629: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:23753: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:23632: \$? = $ac_status" >&5 + echo "$as_me:23756: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:23635: \"$ac_try\"") >&5 + { (eval echo "$as_me:23759: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23638: \$? = $ac_status" >&5 + echo "$as_me:23762: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_ncurses_h=$cf_header @@ -23650,14 +23774,14 @@ rm -f conftest.$ac_objext conftest.$ac_ext done fi -echo "$as_me:23653: result: $cf_cv_ncurses_h" >&5 +echo "$as_me:23777: 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:23660: checking for $cf_ncuhdr_root include-path" >&5 +echo "$as_me:23784: 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 @@ -23778,7 +23902,7 @@ if test -n "$cf_incdir" ; then CPPFLAGS="${CPPFLAGS}-I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 23781 "configure" +#line 23905 "configure" #include "confdefs.h" #include <stdio.h> int @@ -23790,16 +23914,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:23793: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:23917: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:23796: \$? = $ac_status" >&5 + echo "$as_me:23920: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:23799: \"$ac_try\"") >&5 + { (eval echo "$as_me:23923: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23802: \$? = $ac_status" >&5 + echo "$as_me:23926: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -23816,7 +23940,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}:23819: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:23943: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -23839,7 +23963,7 @@ fi do cat >conftest.$ac_ext <<_ACEOF -#line 23842 "configure" +#line 23966 "configure" #include "confdefs.h" #include <$cf_header> @@ -23863,16 +23987,16 @@ printf("old\n"); } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:23866: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:23990: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:23869: \$? = $ac_status" >&5 + echo "$as_me:23993: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:23872: \"$ac_try\"") >&5 + { (eval echo "$as_me:23996: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23875: \$? = $ac_status" >&5 + echo "$as_me:23999: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_ncurses_h2=$cf_header @@ -23893,12 +24017,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:23896: error: not found" >&5 + test "$cf_cv_ncurses_h2" = no && { { echo "$as_me:24020: error: not found" >&5 echo "$as_me: error: not found" >&2;} { (exit 1); exit 1; }; } fi -echo "$as_me:23901: result: $cf_cv_ncurses_h2" >&5 +echo "$as_me:24025: 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%/[^/]*$%%'` @@ -23934,7 +24058,7 @@ if test -n "$cf_1st_incdir" ; then CPPFLAGS="${CPPFLAGS}-I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 23937 "configure" +#line 24061 "configure" #include "confdefs.h" #include <stdio.h> int @@ -23946,16 +24070,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:23949: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:24073: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:23952: \$? = $ac_status" >&5 + echo "$as_me:24076: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:23955: \"$ac_try\"") >&5 + { (eval echo "$as_me:24079: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23958: \$? = $ac_status" >&5 + echo "$as_me:24082: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -23972,7 +24096,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}:23975: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:24099: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -24020,7 +24144,7 @@ EOF ;; esac -echo "$as_me:24023: checking for terminfo header" >&5 +echo "$as_me:24147: 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 @@ -24038,7 +24162,7 @@ esac for cf_test in $cf_term_header "ncurses/term.h" "ncursesw/term.h" do cat >conftest.$ac_ext <<_ACEOF -#line 24041 "configure" +#line 24165 "configure" #include "confdefs.h" #include <stdio.h> #include <${cf_cv_ncurses_header:-curses.h}> @@ -24053,16 +24177,16 @@ int x = auto_left_margin; (void)x } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:24056: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:24180: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:24059: \$? = $ac_status" >&5 + echo "$as_me:24183: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:24062: \"$ac_try\"") >&5 + { (eval echo "$as_me:24186: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:24065: \$? = $ac_status" >&5 + echo "$as_me:24189: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_term_header="$cf_test" @@ -24078,7 +24202,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext done fi -echo "$as_me:24081: result: $cf_cv_term_header" >&5 +echo "$as_me:24205: result: $cf_cv_term_header" >&5 echo "${ECHO_T}$cf_cv_term_header" >&6 # Set definitions to allow ifdef'ing to accommodate subdirectories @@ -24116,7 +24240,7 @@ cat >>confdefs.h <<\EOF #define NCURSES 1 EOF -echo "$as_me:24119: checking for ncurses version" >&5 +echo "$as_me:24243: 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 @@ -24142,10 +24266,10 @@ Autoconf "old" #endif EOF cf_try="$ac_cpp conftest.$ac_ext 2>&5 | grep '^Autoconf ' >conftest.out" - { (eval echo "$as_me:24145: \"$cf_try\"") >&5 + { (eval echo "$as_me:24269: \"$cf_try\"") >&5 (eval $cf_try) 2>&5 ac_status=$? - echo "$as_me:24148: \$? = $ac_status" >&5 + echo "$as_me:24272: \$? = $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%".*%%'` @@ -24155,7 +24279,7 @@ EOF else cat >conftest.$ac_ext <<_ACEOF -#line 24158 "configure" +#line 24282 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> @@ -24180,15 +24304,15 @@ int main(void) } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:24183: \"$ac_link\"") >&5 +if { (eval echo "$as_me:24307: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:24186: \$? = $ac_status" >&5 + echo "$as_me:24310: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:24188: \"$ac_try\"") >&5 + { (eval echo "$as_me:24312: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:24191: \$? = $ac_status" >&5 + echo "$as_me:24315: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_ncurses_version=`cat $cf_tempfile` @@ -24202,7 +24326,7 @@ fi rm -f $cf_tempfile fi -echo "$as_me:24205: result: $cf_cv_ncurses_version" >&5 +echo "$as_me:24329: result: $cf_cv_ncurses_version" >&5 echo "${ECHO_T}$cf_cv_ncurses_version" >&6 test "$cf_cv_ncurses_version" = no || cat >>confdefs.h <<\EOF @@ -24215,7 +24339,7 @@ cf_nculib_root=$cf_cv_screen # to link gpm. cf_ncurses_LIBS="" cf_ncurses_SAVE="$LIBS" -echo "$as_me:24218: checking for Gpm_Open in -lgpm" >&5 +echo "$as_me:24342: 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 @@ -24223,7 +24347,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lgpm $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 24226 "configure" +#line 24350 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -24242,16 +24366,16 @@ Gpm_Open (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:24245: \"$ac_link\"") >&5 +if { (eval echo "$as_me:24369: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:24248: \$? = $ac_status" >&5 + echo "$as_me:24372: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:24251: \"$ac_try\"") >&5 + { (eval echo "$as_me:24375: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:24254: \$? = $ac_status" >&5 + echo "$as_me:24378: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_gpm_Gpm_Open=yes else @@ -24262,10 +24386,10 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:24265: result: $ac_cv_lib_gpm_Gpm_Open" >&5 +echo "$as_me:24389: 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:24268: checking for initscr in -lgpm" >&5 + echo "$as_me:24392: 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 @@ -24273,7 +24397,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lgpm $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 24276 "configure" +#line 24400 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -24292,16 +24416,16 @@ initscr (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:24295: \"$ac_link\"") >&5 +if { (eval echo "$as_me:24419: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:24298: \$? = $ac_status" >&5 + echo "$as_me:24422: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:24301: \"$ac_try\"") >&5 + { (eval echo "$as_me:24425: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:24304: \$? = $ac_status" >&5 + echo "$as_me:24428: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_gpm_initscr=yes else @@ -24312,7 +24436,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:24315: result: $ac_cv_lib_gpm_initscr" >&5 +echo "$as_me:24439: 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" @@ -24327,7 +24451,7 @@ case $host_os in # This is only necessary if you are linking against an obsolete # version of ncurses (but it should do no harm, since it's static). if test "$cf_nculib_root" = ncurses ; then - echo "$as_me:24330: checking for tgoto in -lmytinfo" >&5 + echo "$as_me:24454: 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 @@ -24335,7 +24459,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lmytinfo $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 24338 "configure" +#line 24462 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -24354,16 +24478,16 @@ tgoto (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:24357: \"$ac_link\"") >&5 +if { (eval echo "$as_me:24481: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:24360: \$? = $ac_status" >&5 + echo "$as_me:24484: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:24363: \"$ac_try\"") >&5 + { (eval echo "$as_me:24487: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:24366: \$? = $ac_status" >&5 + echo "$as_me:24490: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_mytinfo_tgoto=yes else @@ -24374,7 +24498,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:24377: result: $ac_cv_lib_mytinfo_tgoto" >&5 +echo "$as_me:24501: 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" @@ -24423,13 +24547,13 @@ else eval 'cf_cv_have_lib_'$cf_nculib_root'=no' cf_libdir="" - echo "$as_me:24426: checking for initscr" >&5 + echo "$as_me:24550: 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 24432 "configure" +#line 24556 "configure" #include "confdefs.h" #define initscr autoconf_temporary #include <limits.h> /* least-intrusive standard header which defines gcc2 __stub macros */ @@ -24460,16 +24584,16 @@ main (void) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:24463: \"$ac_link\"") >&5 +if { (eval echo "$as_me:24587: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:24466: \$? = $ac_status" >&5 + echo "$as_me:24590: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:24469: \"$ac_try\"") >&5 + { (eval echo "$as_me:24593: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:24472: \$? = $ac_status" >&5 + echo "$as_me:24596: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_initscr=yes else @@ -24479,18 +24603,18 @@ ac_cv_func_initscr=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:24482: result: $ac_cv_func_initscr" >&5 +echo "$as_me:24606: 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:24489: checking for initscr in -l$cf_nculib_root" >&5 + echo "$as_me:24613: 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 24493 "configure" +#line 24617 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> int @@ -24502,25 +24626,25 @@ initscr() } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:24505: \"$ac_link\"") >&5 +if { (eval echo "$as_me:24629: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:24508: \$? = $ac_status" >&5 + echo "$as_me:24632: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:24511: \"$ac_try\"") >&5 + { (eval echo "$as_me:24635: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:24514: \$? = $ac_status" >&5 + echo "$as_me:24638: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:24516: result: yes" >&5 + echo "$as_me:24640: 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:24523: result: no" >&5 +echo "$as_me:24647: result: no" >&5 echo "${ECHO_T}no" >&6 cf_search= @@ -24588,11 +24712,11 @@ cf_search="$cf_library_path_list $cf_search" for cf_libdir in $cf_search do - echo "$as_me:24591: checking for -l$cf_nculib_root in $cf_libdir" >&5 + echo "$as_me:24715: 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 24595 "configure" +#line 24719 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> int @@ -24604,25 +24728,25 @@ initscr() } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:24607: \"$ac_link\"") >&5 +if { (eval echo "$as_me:24731: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:24610: \$? = $ac_status" >&5 + echo "$as_me:24734: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:24613: \"$ac_try\"") >&5 + { (eval echo "$as_me:24737: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:24616: \$? = $ac_status" >&5 + echo "$as_me:24740: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:24618: result: yes" >&5 + echo "$as_me:24742: 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:24625: result: no" >&5 +echo "$as_me:24749: result: no" >&5 echo "${ECHO_T}no" >&6 LIBS="$cf_save_LIBS" fi @@ -24637,7 +24761,7 @@ fi eval 'cf_found_library=$cf_cv_have_lib_'$cf_nculib_root if test $cf_found_library = no ; then - { { echo "$as_me:24640: error: Cannot link $cf_nculib_root library" >&5 + { { echo "$as_me:24764: error: Cannot link $cf_nculib_root library" >&5 echo "$as_me: error: Cannot link $cf_nculib_root library" >&2;} { (exit 1); exit 1; }; } fi @@ -24645,7 +24769,7 @@ fi fi if test -n "$cf_ncurses_LIBS" ; then - echo "$as_me:24648: checking if we can link $cf_nculib_root without $cf_ncurses_LIBS" >&5 + echo "$as_me:24772: 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 @@ -24655,7 +24779,7 @@ echo $ECHO_N "checking if we can link $cf_nculib_root without $cf_ncurses_LIBS.. fi done cat >conftest.$ac_ext <<_ACEOF -#line 24658 "configure" +#line 24782 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> int @@ -24667,23 +24791,23 @@ initscr(); mousemask(0,0); tgoto((char *)0, 0, 0); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:24670: \"$ac_link\"") >&5 +if { (eval echo "$as_me:24794: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:24673: \$? = $ac_status" >&5 + echo "$as_me:24797: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:24676: \"$ac_try\"") >&5 + { (eval echo "$as_me:24800: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:24679: \$? = $ac_status" >&5 + echo "$as_me:24803: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:24681: result: yes" >&5 + echo "$as_me:24805: result: yes" >&5 echo "${ECHO_T}yes" >&6 else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 -echo "$as_me:24686: result: no" >&5 +echo "$as_me:24810: result: no" >&5 echo "${ECHO_T}no" >&6 LIBS="$cf_ncurses_SAVE" fi @@ -24709,13 +24833,13 @@ cf_ncuconfig_root=$cf_cv_screen cf_have_ncuconfig=no if test "x${PKG_CONFIG:=none}" != xnone; then - echo "$as_me:24712: checking pkg-config for $cf_ncuconfig_root" >&5 + echo "$as_me:24836: checking pkg-config for $cf_ncuconfig_root" >&5 echo $ECHO_N "checking pkg-config for $cf_ncuconfig_root... $ECHO_C" >&6 if "$PKG_CONFIG" --exists $cf_ncuconfig_root ; then - echo "$as_me:24715: result: yes" >&5 + echo "$as_me:24839: result: yes" >&5 echo "${ECHO_T}yes" >&6 - echo "$as_me:24718: checking if the $cf_ncuconfig_root package files work" >&5 + echo "$as_me:24842: checking if the $cf_ncuconfig_root package files work" >&5 echo $ECHO_N "checking if the $cf_ncuconfig_root package files work... $ECHO_C" >&6 cf_have_ncuconfig=unknown @@ -24848,7 +24972,7 @@ done LIBS="$cf_add_libs" cat >conftest.$ac_ext <<_ACEOF -#line 24851 "configure" +#line 24975 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> int @@ -24860,37 +24984,37 @@ initscr(); mousemask(0,0); tgoto((char *)0, 0, 0); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:24863: \"$ac_link\"") >&5 +if { (eval echo "$as_me:24987: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:24866: \$? = $ac_status" >&5 + echo "$as_me:24990: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:24869: \"$ac_try\"") >&5 + { (eval echo "$as_me:24993: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:24872: \$? = $ac_status" >&5 + echo "$as_me:24996: \$? = $ac_status" >&5 (exit $ac_status); }; }; then if test "$cross_compiling" = yes; then cf_test_ncuconfig=maybe else cat >conftest.$ac_ext <<_ACEOF -#line 24878 "configure" +#line 25002 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> int main(void) { char *xx = curses_version(); return (xx == 0); } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:24885: \"$ac_link\"") >&5 +if { (eval echo "$as_me:25009: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:24888: \$? = $ac_status" >&5 + echo "$as_me:25012: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:24890: \"$ac_try\"") >&5 + { (eval echo "$as_me:25014: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:24893: \$? = $ac_status" >&5 + echo "$as_me:25017: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_test_ncuconfig=yes else @@ -25036,7 +25160,7 @@ done LIBS="$cf_add_libs" cat >conftest.$ac_ext <<_ACEOF -#line 25039 "configure" +#line 25163 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> int @@ -25048,37 +25172,37 @@ initscr(); mousemask(0,0); tgoto((char *)0, 0, 0); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:25051: \"$ac_link\"") >&5 +if { (eval echo "$as_me:25175: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:25054: \$? = $ac_status" >&5 + echo "$as_me:25178: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:25057: \"$ac_try\"") >&5 + { (eval echo "$as_me:25181: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25060: \$? = $ac_status" >&5 + echo "$as_me:25184: \$? = $ac_status" >&5 (exit $ac_status); }; }; then if test "$cross_compiling" = yes; then cf_have_ncuconfig=maybe else cat >conftest.$ac_ext <<_ACEOF -#line 25066 "configure" +#line 25190 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> int main(void) { char *xx = curses_version(); return (xx == 0); } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:25073: \"$ac_link\"") >&5 +if { (eval echo "$as_me:25197: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:25076: \$? = $ac_status" >&5 + echo "$as_me:25200: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:25078: \"$ac_try\"") >&5 + { (eval echo "$as_me:25202: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25081: \$? = $ac_status" >&5 + echo "$as_me:25205: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_have_ncuconfig=yes else @@ -25095,7 +25219,7 @@ cat conftest.$ac_ext >&5 cf_have_ncuconfig=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext - echo "$as_me:25098: result: $cf_have_ncuconfig" >&5 + echo "$as_me:25222: result: $cf_have_ncuconfig" >&5 echo "${ECHO_T}$cf_have_ncuconfig" >&6 test "$cf_have_ncuconfig" = maybe && cf_have_ncuconfig=yes if test "$cf_have_ncuconfig" != "yes" @@ -25111,7 +25235,7 @@ EOF NCURSES_CONFIG_PKG=$cf_ncuconfig_root -echo "$as_me:25114: checking for terminfo header" >&5 +echo "$as_me:25238: 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 @@ -25129,7 +25253,7 @@ esac for cf_test in $cf_term_header "ncurses/term.h" "ncursesw/term.h" do cat >conftest.$ac_ext <<_ACEOF -#line 25132 "configure" +#line 25256 "configure" #include "confdefs.h" #include <stdio.h> #include <${cf_cv_ncurses_header:-curses.h}> @@ -25144,16 +25268,16 @@ int x = auto_left_margin; (void)x } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:25147: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:25271: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:25150: \$? = $ac_status" >&5 + echo "$as_me:25274: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:25153: \"$ac_try\"") >&5 + { (eval echo "$as_me:25277: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25156: \$? = $ac_status" >&5 + echo "$as_me:25280: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_term_header="$cf_test" @@ -25169,7 +25293,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext done fi -echo "$as_me:25172: result: $cf_cv_term_header" >&5 +echo "$as_me:25296: result: $cf_cv_term_header" >&5 echo "${ECHO_T}$cf_cv_term_header" >&6 # Set definitions to allow ifdef'ing to accommodate subdirectories @@ -25204,7 +25328,7 @@ esac fi else - echo "$as_me:25207: result: no" >&5 + echo "$as_me:25331: result: no" >&5 echo "${ECHO_T}no" >&6 NCURSES_CONFIG_PKG=none fi @@ -25220,7 +25344,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:25223: checking for $ac_word" >&5 +echo "$as_me:25347: 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 @@ -25235,7 +25359,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:25238: found $ac_dir/$ac_word" >&5 +echo "$as_me:25362: found $ac_dir/$ac_word" >&5 break done @@ -25243,10 +25367,10 @@ fi fi NCURSES_CONFIG=$ac_cv_prog_NCURSES_CONFIG if test -n "$NCURSES_CONFIG"; then - echo "$as_me:25246: result: $NCURSES_CONFIG" >&5 + echo "$as_me:25370: result: $NCURSES_CONFIG" >&5 echo "${ECHO_T}$NCURSES_CONFIG" >&6 else - echo "$as_me:25249: result: no" >&5 + echo "$as_me:25373: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -25259,7 +25383,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:25262: checking for $ac_word" >&5 +echo "$as_me:25386: 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 @@ -25274,7 +25398,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:25277: found $ac_dir/$ac_word" >&5 +echo "$as_me:25401: found $ac_dir/$ac_word" >&5 break done @@ -25282,10 +25406,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:25285: result: $ac_ct_NCURSES_CONFIG" >&5 + echo "$as_me:25409: result: $ac_ct_NCURSES_CONFIG" >&5 echo "${ECHO_T}$ac_ct_NCURSES_CONFIG" >&6 else - echo "$as_me:25288: result: no" >&5 + echo "$as_me:25412: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -25414,7 +25538,7 @@ LIBS="$cf_add_libs" # even with config script, some packages use no-override for curses.h -echo "$as_me:25417: checking if we have identified curses headers" >&5 +echo "$as_me:25541: 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 @@ -25426,7 +25550,7 @@ for cf_header in \ curses.h $cf_cv_screen/curses.h do cat >conftest.$ac_ext <<_ACEOF -#line 25429 "configure" +#line 25553 "configure" #include "confdefs.h" #include <${cf_header}> int @@ -25438,16 +25562,16 @@ initscr(); tgoto("?", 0,0) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:25441: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:25565: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:25444: \$? = $ac_status" >&5 + echo "$as_me:25568: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:25447: \"$ac_try\"") >&5 + { (eval echo "$as_me:25571: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25450: \$? = $ac_status" >&5 + echo "$as_me:25574: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_ncurses_header=$cf_header; break else @@ -25458,11 +25582,11 @@ rm -f conftest.$ac_objext conftest.$ac_ext done fi -echo "$as_me:25461: result: $cf_cv_ncurses_header" >&5 +echo "$as_me:25585: 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:25465: error: No curses header-files found" >&5 + { { echo "$as_me:25589: error: No curses header-files found" >&5 echo "$as_me: error: No curses header-files found" >&2;} { (exit 1); exit 1; }; } fi @@ -25472,23 +25596,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:25475: checking for $ac_header" >&5 +echo "$as_me:25599: 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 25481 "configure" +#line 25605 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:25485: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:25609: \"$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:25491: \$? = $ac_status" >&5 + echo "$as_me:25615: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -25507,7 +25631,7 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:25510: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:25634: 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 @@ -25563,7 +25687,7 @@ if test -n "$cf_cv_curses_dir/include/$cf_ncuhdr_root" ; then CPPFLAGS="${CPPFLAGS}-I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 25566 "configure" +#line 25690 "configure" #include "confdefs.h" #include <stdio.h> int @@ -25575,16 +25699,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:25578: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:25702: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:25581: \$? = $ac_status" >&5 + echo "$as_me:25705: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:25584: \"$ac_try\"") >&5 + { (eval echo "$as_me:25708: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25587: \$? = $ac_status" >&5 + echo "$as_me:25711: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -25601,7 +25725,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}:25604: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:25728: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -25620,7 +25744,7 @@ fi } -echo "$as_me:25623: checking for $cf_ncuhdr_root header in include-path" >&5 +echo "$as_me:25747: 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 @@ -25632,7 +25756,7 @@ else do cat >conftest.$ac_ext <<_ACEOF -#line 25635 "configure" +#line 25759 "configure" #include "confdefs.h" #include <$cf_header> @@ -25656,16 +25780,16 @@ printf("old\n"); } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:25659: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:25783: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:25662: \$? = $ac_status" >&5 + echo "$as_me:25786: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:25665: \"$ac_try\"") >&5 + { (eval echo "$as_me:25789: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25668: \$? = $ac_status" >&5 + echo "$as_me:25792: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_ncurses_h=$cf_header @@ -25680,14 +25804,14 @@ rm -f conftest.$ac_objext conftest.$ac_ext done fi -echo "$as_me:25683: result: $cf_cv_ncurses_h" >&5 +echo "$as_me:25807: 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:25690: checking for $cf_ncuhdr_root include-path" >&5 +echo "$as_me:25814: 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 @@ -25808,7 +25932,7 @@ if test -n "$cf_incdir" ; then CPPFLAGS="${CPPFLAGS}-I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 25811 "configure" +#line 25935 "configure" #include "confdefs.h" #include <stdio.h> int @@ -25820,16 +25944,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:25823: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:25947: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:25826: \$? = $ac_status" >&5 + echo "$as_me:25950: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:25829: \"$ac_try\"") >&5 + { (eval echo "$as_me:25953: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25832: \$? = $ac_status" >&5 + echo "$as_me:25956: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -25846,7 +25970,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}:25849: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:25973: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -25869,7 +25993,7 @@ fi do cat >conftest.$ac_ext <<_ACEOF -#line 25872 "configure" +#line 25996 "configure" #include "confdefs.h" #include <$cf_header> @@ -25893,16 +26017,16 @@ printf("old\n"); } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:25896: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:26020: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:25899: \$? = $ac_status" >&5 + echo "$as_me:26023: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:25902: \"$ac_try\"") >&5 + { (eval echo "$as_me:26026: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25905: \$? = $ac_status" >&5 + echo "$as_me:26029: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_ncurses_h2=$cf_header @@ -25923,12 +26047,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:25926: error: not found" >&5 + test "$cf_cv_ncurses_h2" = no && { { echo "$as_me:26050: error: not found" >&5 echo "$as_me: error: not found" >&2;} { (exit 1); exit 1; }; } fi -echo "$as_me:25931: result: $cf_cv_ncurses_h2" >&5 +echo "$as_me:26055: 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%/[^/]*$%%'` @@ -25964,7 +26088,7 @@ if test -n "$cf_1st_incdir" ; then CPPFLAGS="${CPPFLAGS}-I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 25967 "configure" +#line 26091 "configure" #include "confdefs.h" #include <stdio.h> int @@ -25976,16 +26100,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:25979: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:26103: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:25982: \$? = $ac_status" >&5 + echo "$as_me:26106: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:25985: \"$ac_try\"") >&5 + { (eval echo "$as_me:26109: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25988: \$? = $ac_status" >&5 + echo "$as_me:26112: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -26002,7 +26126,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}:26005: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:26129: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -26050,7 +26174,7 @@ EOF ;; esac -echo "$as_me:26053: checking for terminfo header" >&5 +echo "$as_me:26177: 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 @@ -26068,7 +26192,7 @@ esac for cf_test in $cf_term_header "ncurses/term.h" "ncursesw/term.h" do cat >conftest.$ac_ext <<_ACEOF -#line 26071 "configure" +#line 26195 "configure" #include "confdefs.h" #include <stdio.h> #include <${cf_cv_ncurses_header:-curses.h}> @@ -26083,16 +26207,16 @@ int x = auto_left_margin; (void)x } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:26086: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:26210: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:26089: \$? = $ac_status" >&5 + echo "$as_me:26213: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:26092: \"$ac_try\"") >&5 + { (eval echo "$as_me:26216: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:26095: \$? = $ac_status" >&5 + echo "$as_me:26219: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_term_header="$cf_test" @@ -26108,7 +26232,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext done fi -echo "$as_me:26111: result: $cf_cv_term_header" >&5 +echo "$as_me:26235: result: $cf_cv_term_header" >&5 echo "${ECHO_T}$cf_cv_term_header" >&6 # Set definitions to allow ifdef'ing to accommodate subdirectories @@ -26146,7 +26270,7 @@ cat >>confdefs.h <<\EOF #define NCURSES 1 EOF -echo "$as_me:26149: checking for ncurses version" >&5 +echo "$as_me:26273: 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 @@ -26172,10 +26296,10 @@ Autoconf "old" #endif EOF cf_try="$ac_cpp conftest.$ac_ext 2>&5 | grep '^Autoconf ' >conftest.out" - { (eval echo "$as_me:26175: \"$cf_try\"") >&5 + { (eval echo "$as_me:26299: \"$cf_try\"") >&5 (eval $cf_try) 2>&5 ac_status=$? - echo "$as_me:26178: \$? = $ac_status" >&5 + echo "$as_me:26302: \$? = $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%".*%%'` @@ -26185,7 +26309,7 @@ EOF else cat >conftest.$ac_ext <<_ACEOF -#line 26188 "configure" +#line 26312 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> @@ -26210,15 +26334,15 @@ int main(void) } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:26213: \"$ac_link\"") >&5 +if { (eval echo "$as_me:26337: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:26216: \$? = $ac_status" >&5 + echo "$as_me:26340: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:26218: \"$ac_try\"") >&5 + { (eval echo "$as_me:26342: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:26221: \$? = $ac_status" >&5 + echo "$as_me:26345: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_ncurses_version=`cat $cf_tempfile` @@ -26232,7 +26356,7 @@ fi rm -f $cf_tempfile fi -echo "$as_me:26235: result: $cf_cv_ncurses_version" >&5 +echo "$as_me:26359: result: $cf_cv_ncurses_version" >&5 echo "${ECHO_T}$cf_cv_ncurses_version" >&6 test "$cf_cv_ncurses_version" = no || cat >>confdefs.h <<\EOF @@ -26245,7 +26369,7 @@ cf_nculib_root=$cf_cv_screen # to link gpm. cf_ncurses_LIBS="" cf_ncurses_SAVE="$LIBS" -echo "$as_me:26248: checking for Gpm_Open in -lgpm" >&5 +echo "$as_me:26372: 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 @@ -26253,7 +26377,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lgpm $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 26256 "configure" +#line 26380 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -26272,16 +26396,16 @@ Gpm_Open (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:26275: \"$ac_link\"") >&5 +if { (eval echo "$as_me:26399: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:26278: \$? = $ac_status" >&5 + echo "$as_me:26402: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:26281: \"$ac_try\"") >&5 + { (eval echo "$as_me:26405: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:26284: \$? = $ac_status" >&5 + echo "$as_me:26408: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_gpm_Gpm_Open=yes else @@ -26292,10 +26416,10 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:26295: result: $ac_cv_lib_gpm_Gpm_Open" >&5 +echo "$as_me:26419: 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:26298: checking for initscr in -lgpm" >&5 + echo "$as_me:26422: 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 @@ -26303,7 +26427,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lgpm $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 26306 "configure" +#line 26430 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -26322,16 +26446,16 @@ initscr (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:26325: \"$ac_link\"") >&5 +if { (eval echo "$as_me:26449: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:26328: \$? = $ac_status" >&5 + echo "$as_me:26452: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:26331: \"$ac_try\"") >&5 + { (eval echo "$as_me:26455: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:26334: \$? = $ac_status" >&5 + echo "$as_me:26458: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_gpm_initscr=yes else @@ -26342,7 +26466,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:26345: result: $ac_cv_lib_gpm_initscr" >&5 +echo "$as_me:26469: 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" @@ -26357,7 +26481,7 @@ case $host_os in # This is only necessary if you are linking against an obsolete # version of ncurses (but it should do no harm, since it's static). if test "$cf_nculib_root" = ncurses ; then - echo "$as_me:26360: checking for tgoto in -lmytinfo" >&5 + echo "$as_me:26484: 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 @@ -26365,7 +26489,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lmytinfo $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 26368 "configure" +#line 26492 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -26384,16 +26508,16 @@ tgoto (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:26387: \"$ac_link\"") >&5 +if { (eval echo "$as_me:26511: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:26390: \$? = $ac_status" >&5 + echo "$as_me:26514: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:26393: \"$ac_try\"") >&5 + { (eval echo "$as_me:26517: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:26396: \$? = $ac_status" >&5 + echo "$as_me:26520: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_mytinfo_tgoto=yes else @@ -26404,7 +26528,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:26407: result: $ac_cv_lib_mytinfo_tgoto" >&5 +echo "$as_me:26531: 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" @@ -26453,13 +26577,13 @@ else eval 'cf_cv_have_lib_'$cf_nculib_root'=no' cf_libdir="" - echo "$as_me:26456: checking for initscr" >&5 + echo "$as_me:26580: 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 26462 "configure" +#line 26586 "configure" #include "confdefs.h" #define initscr autoconf_temporary #include <limits.h> /* least-intrusive standard header which defines gcc2 __stub macros */ @@ -26490,16 +26614,16 @@ main (void) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:26493: \"$ac_link\"") >&5 +if { (eval echo "$as_me:26617: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:26496: \$? = $ac_status" >&5 + echo "$as_me:26620: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:26499: \"$ac_try\"") >&5 + { (eval echo "$as_me:26623: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:26502: \$? = $ac_status" >&5 + echo "$as_me:26626: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_initscr=yes else @@ -26509,18 +26633,18 @@ ac_cv_func_initscr=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:26512: result: $ac_cv_func_initscr" >&5 +echo "$as_me:26636: 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:26519: checking for initscr in -l$cf_nculib_root" >&5 + echo "$as_me:26643: 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 26523 "configure" +#line 26647 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> int @@ -26532,25 +26656,25 @@ initscr() } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:26535: \"$ac_link\"") >&5 +if { (eval echo "$as_me:26659: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:26538: \$? = $ac_status" >&5 + echo "$as_me:26662: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:26541: \"$ac_try\"") >&5 + { (eval echo "$as_me:26665: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:26544: \$? = $ac_status" >&5 + echo "$as_me:26668: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:26546: result: yes" >&5 + echo "$as_me:26670: 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:26553: result: no" >&5 +echo "$as_me:26677: result: no" >&5 echo "${ECHO_T}no" >&6 cf_search= @@ -26618,11 +26742,11 @@ cf_search="$cf_library_path_list $cf_search" for cf_libdir in $cf_search do - echo "$as_me:26621: checking for -l$cf_nculib_root in $cf_libdir" >&5 + echo "$as_me:26745: 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 26625 "configure" +#line 26749 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> int @@ -26634,25 +26758,25 @@ initscr() } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:26637: \"$ac_link\"") >&5 +if { (eval echo "$as_me:26761: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:26640: \$? = $ac_status" >&5 + echo "$as_me:26764: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:26643: \"$ac_try\"") >&5 + { (eval echo "$as_me:26767: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:26646: \$? = $ac_status" >&5 + echo "$as_me:26770: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:26648: result: yes" >&5 + echo "$as_me:26772: 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:26655: result: no" >&5 +echo "$as_me:26779: result: no" >&5 echo "${ECHO_T}no" >&6 LIBS="$cf_save_LIBS" fi @@ -26667,7 +26791,7 @@ fi eval 'cf_found_library=$cf_cv_have_lib_'$cf_nculib_root if test $cf_found_library = no ; then - { { echo "$as_me:26670: error: Cannot link $cf_nculib_root library" >&5 + { { echo "$as_me:26794: error: Cannot link $cf_nculib_root library" >&5 echo "$as_me: error: Cannot link $cf_nculib_root library" >&2;} { (exit 1); exit 1; }; } fi @@ -26675,7 +26799,7 @@ fi fi if test -n "$cf_ncurses_LIBS" ; then - echo "$as_me:26678: checking if we can link $cf_nculib_root without $cf_ncurses_LIBS" >&5 + echo "$as_me:26802: 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 @@ -26685,7 +26809,7 @@ echo $ECHO_N "checking if we can link $cf_nculib_root without $cf_ncurses_LIBS.. fi done cat >conftest.$ac_ext <<_ACEOF -#line 26688 "configure" +#line 26812 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> int @@ -26697,23 +26821,23 @@ initscr(); mousemask(0,0); tgoto((char *)0, 0, 0); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:26700: \"$ac_link\"") >&5 +if { (eval echo "$as_me:26824: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:26703: \$? = $ac_status" >&5 + echo "$as_me:26827: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:26706: \"$ac_try\"") >&5 + { (eval echo "$as_me:26830: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:26709: \$? = $ac_status" >&5 + echo "$as_me:26833: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:26711: result: yes" >&5 + echo "$as_me:26835: result: yes" >&5 echo "${ECHO_T}yes" >&6 else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 -echo "$as_me:26716: result: no" >&5 +echo "$as_me:26840: result: no" >&5 echo "${ECHO_T}no" >&6 LIBS="$cf_ncurses_SAVE" fi @@ -26745,7 +26869,7 @@ fi ;; (slang) -echo "$as_me:26748: checking for slang header file" >&5 +echo "$as_me:26872: 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 @@ -26753,7 +26877,7 @@ else cf_cv_slang_header=no cat >conftest.$ac_ext <<_ACEOF -#line 26756 "configure" +#line 26880 "configure" #include "confdefs.h" #include <slang.h> int @@ -26765,16 +26889,16 @@ printf("%s\n", SLANG_VERSION) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:26768: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:26892: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:26771: \$? = $ac_status" >&5 + echo "$as_me:26895: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:26774: \"$ac_try\"") >&5 + { (eval echo "$as_me:26898: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:26777: \$? = $ac_status" >&5 + echo "$as_me:26901: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_slang_header=predefined else @@ -26879,7 +27003,7 @@ cf_search="$cf_search $cf_header_path_list" fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:26882: result: $cf_cv_slang_header" >&5 +echo "$as_me:27006: result: $cf_cv_slang_header" >&5 echo "${ECHO_T}$cf_cv_slang_header" >&6 if test "x$cf_cv_slang_header" != xno @@ -26923,7 +27047,7 @@ if test -n "$cf_incdir" ; then CPPFLAGS="${CPPFLAGS}-I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 26926 "configure" +#line 27050 "configure" #include "confdefs.h" #include <stdio.h> int @@ -26935,16 +27059,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:26938: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:27062: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:26941: \$? = $ac_status" >&5 + echo "$as_me:27065: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:26944: \"$ac_try\"") >&5 + { (eval echo "$as_me:27068: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:26947: \$? = $ac_status" >&5 + echo "$as_me:27071: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -26961,7 +27085,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}:26964: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:27088: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -26993,7 +27117,7 @@ else cf_cv_termlib=none cat >conftest.$ac_ext <<_ACEOF -#line 26996 "configure" +#line 27120 "configure" #include "confdefs.h" int @@ -27005,19 +27129,19 @@ char *x=(char*)tgoto("",0,0) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:27008: \"$ac_link\"") >&5 +if { (eval echo "$as_me:27132: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:27011: \$? = $ac_status" >&5 + echo "$as_me:27135: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:27014: \"$ac_try\"") >&5 + { (eval echo "$as_me:27138: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27017: \$? = $ac_status" >&5 + echo "$as_me:27141: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cat >conftest.$ac_ext <<_ACEOF -#line 27020 "configure" +#line 27144 "configure" #include "confdefs.h" int @@ -27029,16 +27153,16 @@ int x=tigetstr("") } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:27032: \"$ac_link\"") >&5 +if { (eval echo "$as_me:27156: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:27035: \$? = $ac_status" >&5 + echo "$as_me:27159: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:27038: \"$ac_try\"") >&5 + { (eval echo "$as_me:27162: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27041: \$? = $ac_status" >&5 + echo "$as_me:27165: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_termlib=terminfo else @@ -27049,7 +27173,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}:27052: testing using functions in predefined $cf_cv_termlib LIBS ..." 1>&5 +echo "${as_me:-configure}:27176: testing using functions in predefined $cf_cv_termlib LIBS ..." 1>&5 else echo "$as_me: failed program was:" >&5 @@ -27064,10 +27188,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:27067: checking for $cf_func in -l$cf_lib" >&5 + echo "$as_me:27191: 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 27070 "configure" +#line 27194 "configure" #include "confdefs.h" int @@ -27079,16 +27203,16 @@ int x=$cf_func("") } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:27082: \"$ac_link\"") >&5 +if { (eval echo "$as_me:27206: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:27085: \$? = $ac_status" >&5 + echo "$as_me:27209: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:27088: \"$ac_try\"") >&5 + { (eval echo "$as_me:27212: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27091: \$? = $ac_status" >&5 + echo "$as_me:27215: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_result=yes else @@ -27097,7 +27221,7 @@ cat conftest.$ac_ext >&5 cf_result=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext - echo "$as_me:27100: result: $cf_result" >&5 + echo "$as_me:27224: result: $cf_result" >&5 echo "${ECHO_T}$cf_result" >&6 if test "$cf_result" = yes ; then if test "$cf_func" = tigetstr ; then @@ -27114,7 +27238,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:27117: checking for initscr in -lcurses" >&5 + echo "$as_me:27241: 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 @@ -27122,7 +27246,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lcurses $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 27125 "configure" +#line 27249 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -27141,16 +27265,16 @@ initscr (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:27144: \"$ac_link\"") >&5 +if { (eval echo "$as_me:27268: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:27147: \$? = $ac_status" >&5 + echo "$as_me:27271: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:27150: \"$ac_try\"") >&5 + { (eval echo "$as_me:27274: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27153: \$? = $ac_status" >&5 + echo "$as_me:27277: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_curses_initscr=yes else @@ -27161,7 +27285,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:27164: result: $ac_cv_lib_curses_initscr" >&5 +echo "$as_me:27288: 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 @@ -27183,7 +27307,7 @@ LIBS="$cf_add_libs" fi - echo "$as_me:27186: checking for tgoto in -ltermcap" >&5 + echo "$as_me:27310: 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 @@ -27191,7 +27315,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-ltermcap $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 27194 "configure" +#line 27318 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -27210,16 +27334,16 @@ tgoto (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:27213: \"$ac_link\"") >&5 +if { (eval echo "$as_me:27337: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:27216: \$? = $ac_status" >&5 + echo "$as_me:27340: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:27219: \"$ac_try\"") >&5 + { (eval echo "$as_me:27343: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27222: \$? = $ac_status" >&5 + echo "$as_me:27346: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_termcap_tgoto=yes else @@ -27230,7 +27354,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:27233: result: $ac_cv_lib_termcap_tgoto" >&5 +echo "$as_me:27357: 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 @@ -27257,20 +27381,20 @@ fi fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext if test "$cf_cv_termlib" = none; then - { echo "$as_me:27260: WARNING: Cannot find -ltermlib, -lcurses, or -ltermcap" >&5 + { echo "$as_me:27384: 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:27267: checking for acos" >&5 +echo "$as_me:27391: 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 27273 "configure" +#line 27397 "configure" #include "confdefs.h" #define acos autoconf_temporary #include <limits.h> /* least-intrusive standard header which defines gcc2 __stub macros */ @@ -27301,16 +27425,16 @@ main (void) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:27304: \"$ac_link\"") >&5 +if { (eval echo "$as_me:27428: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:27307: \$? = $ac_status" >&5 + echo "$as_me:27431: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:27310: \"$ac_try\"") >&5 + { (eval echo "$as_me:27434: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27313: \$? = $ac_status" >&5 + echo "$as_me:27437: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_acos=yes else @@ -27320,13 +27444,13 @@ ac_cv_func_acos=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:27323: result: $ac_cv_func_acos" >&5 +echo "$as_me:27447: 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:27329: checking for acos in -lm" >&5 +echo "$as_me:27453: 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 @@ -27334,7 +27458,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lm $LIBS $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 27337 "configure" +#line 27461 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -27353,16 +27477,16 @@ acos (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:27356: \"$ac_link\"") >&5 +if { (eval echo "$as_me:27480: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:27359: \$? = $ac_status" >&5 + echo "$as_me:27483: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:27362: \"$ac_try\"") >&5 + { (eval echo "$as_me:27486: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27365: \$? = $ac_status" >&5 + echo "$as_me:27489: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_m_acos=yes else @@ -27373,7 +27497,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:27376: result: $ac_cv_lib_m_acos" >&5 +echo "$as_me:27500: 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 @@ -27399,13 +27523,13 @@ case $host_os in eval 'cf_cv_have_lib_'video'=no' cf_libdir="" - echo "$as_me:27402: checking for v_init" >&5 + echo "$as_me:27526: 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 27408 "configure" +#line 27532 "configure" #include "confdefs.h" #define v_init autoconf_temporary #include <limits.h> /* least-intrusive standard header which defines gcc2 __stub macros */ @@ -27436,16 +27560,16 @@ main (void) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:27439: \"$ac_link\"") >&5 +if { (eval echo "$as_me:27563: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:27442: \$? = $ac_status" >&5 + echo "$as_me:27566: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:27445: \"$ac_try\"") >&5 + { (eval echo "$as_me:27569: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27448: \$? = $ac_status" >&5 + echo "$as_me:27572: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_v_init=yes else @@ -27455,18 +27579,18 @@ ac_cv_func_v_init=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:27458: result: $ac_cv_func_v_init" >&5 +echo "$as_me:27582: 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:27465: checking for v_init in -lvideo" >&5 + echo "$as_me:27589: 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 27469 "configure" +#line 27593 "configure" #include "confdefs.h" #include <sys/video.h> int @@ -27478,25 +27602,25 @@ v_init() } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:27481: \"$ac_link\"") >&5 +if { (eval echo "$as_me:27605: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:27484: \$? = $ac_status" >&5 + echo "$as_me:27608: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:27487: \"$ac_try\"") >&5 + { (eval echo "$as_me:27611: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27490: \$? = $ac_status" >&5 + echo "$as_me:27614: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:27492: result: yes" >&5 + echo "$as_me:27616: 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:27499: result: no" >&5 +echo "$as_me:27623: result: no" >&5 echo "${ECHO_T}no" >&6 cf_search= @@ -27564,11 +27688,11 @@ cf_search="$cf_library_path_list $cf_search" for cf_libdir in $cf_search do - echo "$as_me:27567: checking for -lvideo in $cf_libdir" >&5 + echo "$as_me:27691: 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 27571 "configure" +#line 27695 "configure" #include "confdefs.h" #include <sys/video.h> int @@ -27580,25 +27704,25 @@ v_init() } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:27583: \"$ac_link\"") >&5 +if { (eval echo "$as_me:27707: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:27586: \$? = $ac_status" >&5 + echo "$as_me:27710: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:27589: \"$ac_try\"") >&5 + { (eval echo "$as_me:27713: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27592: \$? = $ac_status" >&5 + echo "$as_me:27716: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:27594: result: yes" >&5 + echo "$as_me:27718: 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:27601: result: no" >&5 +echo "$as_me:27725: result: no" >&5 echo "${ECHO_T}no" >&6 LIBS="$cf_save_LIBS" fi @@ -27613,7 +27737,7 @@ fi eval 'cf_found_library=$cf_cv_have_lib_'video if test $cf_found_library = no ; then - { { echo "$as_me:27616: error: Cannot link video library" >&5 + { { echo "$as_me:27740: error: Cannot link video library" >&5 echo "$as_me: error: Cannot link video library" >&2;} { (exit 1); exit 1; }; } fi @@ -27623,13 +27747,13 @@ esac eval 'cf_cv_have_lib_'slang'=no' cf_libdir="" - echo "$as_me:27626: checking for SLtt_get_screen_size" >&5 + echo "$as_me:27750: 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 27632 "configure" +#line 27756 "configure" #include "confdefs.h" #define SLtt_get_screen_size autoconf_temporary #include <limits.h> /* least-intrusive standard header which defines gcc2 __stub macros */ @@ -27660,16 +27784,16 @@ main (void) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:27663: \"$ac_link\"") >&5 +if { (eval echo "$as_me:27787: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:27666: \$? = $ac_status" >&5 + echo "$as_me:27790: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:27669: \"$ac_try\"") >&5 + { (eval echo "$as_me:27793: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27672: \$? = $ac_status" >&5 + echo "$as_me:27796: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_SLtt_get_screen_size=yes else @@ -27679,18 +27803,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:27682: result: $ac_cv_func_SLtt_get_screen_size" >&5 +echo "$as_me:27806: 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:27689: checking for SLtt_get_screen_size in -lslang" >&5 + echo "$as_me:27813: 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 27693 "configure" +#line 27817 "configure" #include "confdefs.h" #include <slang.h> int @@ -27702,25 +27826,25 @@ SLtt_get_screen_size() } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:27705: \"$ac_link\"") >&5 +if { (eval echo "$as_me:27829: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:27708: \$? = $ac_status" >&5 + echo "$as_me:27832: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:27711: \"$ac_try\"") >&5 + { (eval echo "$as_me:27835: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27714: \$? = $ac_status" >&5 + echo "$as_me:27838: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:27716: result: yes" >&5 + echo "$as_me:27840: 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:27723: result: no" >&5 +echo "$as_me:27847: result: no" >&5 echo "${ECHO_T}no" >&6 cf_search= @@ -27788,11 +27912,11 @@ cf_search="$cf_library_path_list $cf_search" for cf_libdir in $cf_search do - echo "$as_me:27791: checking for -lslang in $cf_libdir" >&5 + echo "$as_me:27915: 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 27795 "configure" +#line 27919 "configure" #include "confdefs.h" #include <slang.h> int @@ -27804,25 +27928,25 @@ SLtt_get_screen_size() } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:27807: \"$ac_link\"") >&5 +if { (eval echo "$as_me:27931: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:27810: \$? = $ac_status" >&5 + echo "$as_me:27934: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:27813: \"$ac_try\"") >&5 + { (eval echo "$as_me:27937: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27816: \$? = $ac_status" >&5 + echo "$as_me:27940: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:27818: result: yes" >&5 + echo "$as_me:27942: 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:27825: result: no" >&5 +echo "$as_me:27949: result: no" >&5 echo "${ECHO_T}no" >&6 LIBS="$cf_save_LIBS" fi @@ -27837,13 +27961,13 @@ fi eval 'cf_found_library=$cf_cv_have_lib_'slang if test $cf_found_library = no ; then - { { echo "$as_me:27840: error: Cannot link slang library" >&5 + { { echo "$as_me:27964: 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:27846: checking if we can link slang without termcap" >&5 +echo "$as_me:27970: 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%^.%%'` @@ -27852,7 +27976,7 @@ else fi LIBS=`echo ".$cf_slang_LIBS3" | sed -e "s%$cf_exclude%%" -e 's%^.%%'` cat >conftest.$ac_ext <<_ACEOF -#line 27855 "configure" +#line 27979 "configure" #include "confdefs.h" #include <slang.h> int @@ -27864,16 +27988,16 @@ SLtt_get_screen_size() } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:27867: \"$ac_link\"") >&5 +if { (eval echo "$as_me:27991: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:27870: \$? = $ac_status" >&5 + echo "$as_me:27994: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:27873: \"$ac_try\"") >&5 + { (eval echo "$as_me:27997: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27876: \$? = $ac_status" >&5 + echo "$as_me:28000: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_result=yes else @@ -27882,13 +28006,13 @@ cat conftest.$ac_ext >&5 cf_result=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext -echo "$as_me:27885: result: $cf_result" >&5 +echo "$as_me:28009: result: $cf_result" >&5 echo "${ECHO_T}$cf_result" >&6 test $cf_result = no && LIBS="$cf_slang_LIBS3" else -echo "$as_me:27891: checking for slang2 header file" >&5 +echo "$as_me:28015: 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 @@ -27896,7 +28020,7 @@ else cf_cv_slang2_header=no cat >conftest.$ac_ext <<_ACEOF -#line 27899 "configure" +#line 28023 "configure" #include "confdefs.h" #include <slang.h> int @@ -27908,16 +28032,16 @@ printf("%s\n", SLANG_VERSION) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:27911: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:28035: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:27914: \$? = $ac_status" >&5 + echo "$as_me:28038: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:27917: \"$ac_try\"") >&5 + { (eval echo "$as_me:28041: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27920: \$? = $ac_status" >&5 + echo "$as_me:28044: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_slang2_header=predefined else @@ -28022,7 +28146,7 @@ cf_search="$cf_search $cf_header_path_list" fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:28025: result: $cf_cv_slang2_header" >&5 +echo "$as_me:28149: result: $cf_cv_slang2_header" >&5 echo "${ECHO_T}$cf_cv_slang2_header" >&6 if test "x$cf_cv_slang2_header" != xno @@ -28066,7 +28190,7 @@ if test -n "$cf_incdir" ; then CPPFLAGS="${CPPFLAGS}-I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 28069 "configure" +#line 28193 "configure" #include "confdefs.h" #include <stdio.h> int @@ -28078,16 +28202,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:28081: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:28205: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:28084: \$? = $ac_status" >&5 + echo "$as_me:28208: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:28087: \"$ac_try\"") >&5 + { (eval echo "$as_me:28211: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28090: \$? = $ac_status" >&5 + echo "$as_me:28214: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -28104,7 +28228,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}:28107: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:28231: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -28136,7 +28260,7 @@ else cf_cv_termlib=none cat >conftest.$ac_ext <<_ACEOF -#line 28139 "configure" +#line 28263 "configure" #include "confdefs.h" int @@ -28148,19 +28272,19 @@ char *x=(char*)tgoto("",0,0) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:28151: \"$ac_link\"") >&5 +if { (eval echo "$as_me:28275: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:28154: \$? = $ac_status" >&5 + echo "$as_me:28278: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:28157: \"$ac_try\"") >&5 + { (eval echo "$as_me:28281: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28160: \$? = $ac_status" >&5 + echo "$as_me:28284: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cat >conftest.$ac_ext <<_ACEOF -#line 28163 "configure" +#line 28287 "configure" #include "confdefs.h" int @@ -28172,16 +28296,16 @@ int x=tigetstr("") } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:28175: \"$ac_link\"") >&5 +if { (eval echo "$as_me:28299: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:28178: \$? = $ac_status" >&5 + echo "$as_me:28302: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:28181: \"$ac_try\"") >&5 + { (eval echo "$as_me:28305: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28184: \$? = $ac_status" >&5 + echo "$as_me:28308: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_termlib=terminfo else @@ -28192,7 +28316,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}:28195: testing using functions in predefined $cf_cv_termlib LIBS ..." 1>&5 +echo "${as_me:-configure}:28319: testing using functions in predefined $cf_cv_termlib LIBS ..." 1>&5 else echo "$as_me: failed program was:" >&5 @@ -28207,10 +28331,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:28210: checking for $cf_func in -l$cf_lib" >&5 + echo "$as_me:28334: 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 28213 "configure" +#line 28337 "configure" #include "confdefs.h" int @@ -28222,16 +28346,16 @@ int x=$cf_func("") } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:28225: \"$ac_link\"") >&5 +if { (eval echo "$as_me:28349: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:28228: \$? = $ac_status" >&5 + echo "$as_me:28352: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:28231: \"$ac_try\"") >&5 + { (eval echo "$as_me:28355: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28234: \$? = $ac_status" >&5 + echo "$as_me:28358: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_result=yes else @@ -28240,7 +28364,7 @@ cat conftest.$ac_ext >&5 cf_result=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext - echo "$as_me:28243: result: $cf_result" >&5 + echo "$as_me:28367: result: $cf_result" >&5 echo "${ECHO_T}$cf_result" >&6 if test "$cf_result" = yes ; then if test "$cf_func" = tigetstr ; then @@ -28257,7 +28381,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:28260: checking for initscr in -lcurses" >&5 + echo "$as_me:28384: 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 @@ -28265,7 +28389,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lcurses $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 28268 "configure" +#line 28392 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -28284,16 +28408,16 @@ initscr (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:28287: \"$ac_link\"") >&5 +if { (eval echo "$as_me:28411: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:28290: \$? = $ac_status" >&5 + echo "$as_me:28414: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:28293: \"$ac_try\"") >&5 + { (eval echo "$as_me:28417: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28296: \$? = $ac_status" >&5 + echo "$as_me:28420: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_curses_initscr=yes else @@ -28304,7 +28428,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:28307: result: $ac_cv_lib_curses_initscr" >&5 +echo "$as_me:28431: 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 @@ -28326,7 +28450,7 @@ LIBS="$cf_add_libs" fi - echo "$as_me:28329: checking for tgoto in -ltermcap" >&5 + echo "$as_me:28453: 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 @@ -28334,7 +28458,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-ltermcap $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 28337 "configure" +#line 28461 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -28353,16 +28477,16 @@ tgoto (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:28356: \"$ac_link\"") >&5 +if { (eval echo "$as_me:28480: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:28359: \$? = $ac_status" >&5 + echo "$as_me:28483: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:28362: \"$ac_try\"") >&5 + { (eval echo "$as_me:28486: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28365: \$? = $ac_status" >&5 + echo "$as_me:28489: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_termcap_tgoto=yes else @@ -28373,7 +28497,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:28376: result: $ac_cv_lib_termcap_tgoto" >&5 +echo "$as_me:28500: 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 @@ -28400,20 +28524,20 @@ fi fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext if test "$cf_cv_termlib" = none; then - { echo "$as_me:28403: WARNING: Cannot find -ltermlib, -lcurses, or -ltermcap" >&5 + { echo "$as_me:28527: 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:28410: checking for acos" >&5 +echo "$as_me:28534: 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 28416 "configure" +#line 28540 "configure" #include "confdefs.h" #define acos autoconf_temporary #include <limits.h> /* least-intrusive standard header which defines gcc2 __stub macros */ @@ -28444,16 +28568,16 @@ main (void) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:28447: \"$ac_link\"") >&5 +if { (eval echo "$as_me:28571: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:28450: \$? = $ac_status" >&5 + echo "$as_me:28574: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:28453: \"$ac_try\"") >&5 + { (eval echo "$as_me:28577: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28456: \$? = $ac_status" >&5 + echo "$as_me:28580: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_acos=yes else @@ -28463,13 +28587,13 @@ ac_cv_func_acos=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:28466: result: $ac_cv_func_acos" >&5 +echo "$as_me:28590: 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:28472: checking for acos in -lm" >&5 +echo "$as_me:28596: 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 @@ -28477,7 +28601,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lm $LIBS $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 28480 "configure" +#line 28604 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -28496,16 +28620,16 @@ acos (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:28499: \"$ac_link\"") >&5 +if { (eval echo "$as_me:28623: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:28502: \$? = $ac_status" >&5 + echo "$as_me:28626: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:28505: \"$ac_try\"") >&5 + { (eval echo "$as_me:28629: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28508: \$? = $ac_status" >&5 + echo "$as_me:28632: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_m_acos=yes else @@ -28516,7 +28640,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:28519: result: $ac_cv_lib_m_acos" >&5 +echo "$as_me:28643: 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 @@ -28542,13 +28666,13 @@ case $host_os in eval 'cf_cv_have_lib_'video'=no' cf_libdir="" - echo "$as_me:28545: checking for v_init" >&5 + echo "$as_me:28669: 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 28551 "configure" +#line 28675 "configure" #include "confdefs.h" #define v_init autoconf_temporary #include <limits.h> /* least-intrusive standard header which defines gcc2 __stub macros */ @@ -28579,16 +28703,16 @@ main (void) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:28582: \"$ac_link\"") >&5 +if { (eval echo "$as_me:28706: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:28585: \$? = $ac_status" >&5 + echo "$as_me:28709: \$? = $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:28712: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28591: \$? = $ac_status" >&5 + echo "$as_me:28715: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_v_init=yes else @@ -28598,18 +28722,18 @@ ac_cv_func_v_init=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:28601: result: $ac_cv_func_v_init" >&5 +echo "$as_me:28725: 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:28608: checking for v_init in -lvideo" >&5 + echo "$as_me:28732: 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 28612 "configure" +#line 28736 "configure" #include "confdefs.h" #include <sys/video.h> int @@ -28621,25 +28745,25 @@ v_init() } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:28624: \"$ac_link\"") >&5 +if { (eval echo "$as_me:28748: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:28627: \$? = $ac_status" >&5 + echo "$as_me:28751: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:28630: \"$ac_try\"") >&5 + { (eval echo "$as_me:28754: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28633: \$? = $ac_status" >&5 + echo "$as_me:28757: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:28635: result: yes" >&5 + echo "$as_me:28759: 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:28642: result: no" >&5 +echo "$as_me:28766: result: no" >&5 echo "${ECHO_T}no" >&6 cf_search= @@ -28707,11 +28831,11 @@ cf_search="$cf_library_path_list $cf_search" for cf_libdir in $cf_search do - echo "$as_me:28710: checking for -lvideo in $cf_libdir" >&5 + echo "$as_me:28834: 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 28714 "configure" +#line 28838 "configure" #include "confdefs.h" #include <sys/video.h> int @@ -28723,25 +28847,25 @@ v_init() } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:28726: \"$ac_link\"") >&5 +if { (eval echo "$as_me:28850: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:28729: \$? = $ac_status" >&5 + echo "$as_me:28853: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:28732: \"$ac_try\"") >&5 + { (eval echo "$as_me:28856: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28735: \$? = $ac_status" >&5 + echo "$as_me:28859: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:28737: result: yes" >&5 + echo "$as_me:28861: 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:28744: result: no" >&5 +echo "$as_me:28868: result: no" >&5 echo "${ECHO_T}no" >&6 LIBS="$cf_save_LIBS" fi @@ -28756,7 +28880,7 @@ fi eval 'cf_found_library=$cf_cv_have_lib_'video if test $cf_found_library = no ; then - { { echo "$as_me:28759: error: Cannot link video library" >&5 + { { echo "$as_me:28883: error: Cannot link video library" >&5 echo "$as_me: error: Cannot link video library" >&2;} { (exit 1); exit 1; }; } fi @@ -28766,13 +28890,13 @@ esac eval 'cf_cv_have_lib_'slang2'=no' cf_libdir="" - echo "$as_me:28769: checking for SLtt_get_screen_size" >&5 + echo "$as_me:28893: 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 28775 "configure" +#line 28899 "configure" #include "confdefs.h" #define SLtt_get_screen_size autoconf_temporary #include <limits.h> /* least-intrusive standard header which defines gcc2 __stub macros */ @@ -28803,16 +28927,16 @@ main (void) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:28806: \"$ac_link\"") >&5 +if { (eval echo "$as_me:28930: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:28809: \$? = $ac_status" >&5 + echo "$as_me:28933: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:28812: \"$ac_try\"") >&5 + { (eval echo "$as_me:28936: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28815: \$? = $ac_status" >&5 + echo "$as_me:28939: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_SLtt_get_screen_size=yes else @@ -28822,18 +28946,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:28825: result: $ac_cv_func_SLtt_get_screen_size" >&5 +echo "$as_me:28949: 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:28832: checking for SLtt_get_screen_size in -lslang2" >&5 + echo "$as_me:28956: 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 28836 "configure" +#line 28960 "configure" #include "confdefs.h" #include <slang.h> int @@ -28845,25 +28969,25 @@ SLtt_get_screen_size() } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:28848: \"$ac_link\"") >&5 +if { (eval echo "$as_me:28972: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:28851: \$? = $ac_status" >&5 + echo "$as_me:28975: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:28854: \"$ac_try\"") >&5 + { (eval echo "$as_me:28978: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28857: \$? = $ac_status" >&5 + echo "$as_me:28981: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:28859: result: yes" >&5 + echo "$as_me:28983: 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:28866: result: no" >&5 +echo "$as_me:28990: result: no" >&5 echo "${ECHO_T}no" >&6 cf_search= @@ -28931,11 +29055,11 @@ cf_search="$cf_library_path_list $cf_search" for cf_libdir in $cf_search do - echo "$as_me:28934: checking for -lslang2 in $cf_libdir" >&5 + echo "$as_me:29058: 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 28938 "configure" +#line 29062 "configure" #include "confdefs.h" #include <slang.h> int @@ -28947,25 +29071,25 @@ SLtt_get_screen_size() } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:28950: \"$ac_link\"") >&5 +if { (eval echo "$as_me:29074: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:28953: \$? = $ac_status" >&5 + echo "$as_me:29077: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:28956: \"$ac_try\"") >&5 + { (eval echo "$as_me:29080: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28959: \$? = $ac_status" >&5 + echo "$as_me:29083: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:28961: result: yes" >&5 + echo "$as_me:29085: 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:28968: result: no" >&5 +echo "$as_me:29092: result: no" >&5 echo "${ECHO_T}no" >&6 LIBS="$cf_save_LIBS" fi @@ -28980,13 +29104,13 @@ fi eval 'cf_found_library=$cf_cv_have_lib_'slang2 if test $cf_found_library = no ; then - { { echo "$as_me:28983: error: Cannot link slang2 library" >&5 + { { echo "$as_me:29107: 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:28989: checking if we can link slang2 without termcap" >&5 +echo "$as_me:29113: 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%^.%%'` @@ -28995,7 +29119,7 @@ else fi LIBS=`echo ".$cf_slang_LIBS3" | sed -e "s%$cf_exclude%%" -e 's%^.%%'` cat >conftest.$ac_ext <<_ACEOF -#line 28998 "configure" +#line 29122 "configure" #include "confdefs.h" #include <slang.h> int @@ -29007,16 +29131,16 @@ SLtt_get_screen_size() } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:29010: \"$ac_link\"") >&5 +if { (eval echo "$as_me:29134: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:29013: \$? = $ac_status" >&5 + echo "$as_me:29137: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:29016: \"$ac_try\"") >&5 + { (eval echo "$as_me:29140: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:29019: \$? = $ac_status" >&5 + echo "$as_me:29143: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_result=yes else @@ -29025,12 +29149,12 @@ cat conftest.$ac_ext >&5 cf_result=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext -echo "$as_me:29028: result: $cf_result" >&5 +echo "$as_me:29152: result: $cf_result" >&5 echo "${ECHO_T}$cf_result" >&6 test $cf_result = no && LIBS="$cf_slang_LIBS3" else - { { echo "$as_me:29033: error: cannot find slang headers" >&5 + { { echo "$as_me:29157: error: cannot find slang headers" >&5 echo "$as_me: error: cannot find slang headers" >&2;} { (exit 1); exit 1; }; } fi @@ -29038,14 +29162,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:29041: checking if we must define UTF8" >&5 +echo "$as_me:29165: 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 29048 "configure" +#line 29172 "configure" #include "confdefs.h" #include <slang.h> int @@ -29057,16 +29181,16 @@ SLtt_get_screen_size() } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:29060: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:29184: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:29063: \$? = $ac_status" >&5 + echo "$as_me:29187: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:29066: \"$ac_try\"") >&5 + { (eval echo "$as_me:29190: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:29069: \$? = $ac_status" >&5 + echo "$as_me:29193: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_slang_utf8=no else @@ -29074,7 +29198,7 @@ else cat conftest.$ac_ext >&5 cat >conftest.$ac_ext <<_ACEOF -#line 29077 "configure" +#line 29201 "configure" #include "confdefs.h" #define UTF8 @@ -29088,16 +29212,16 @@ SLtt_get_screen_size() } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:29091: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:29215: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:29094: \$? = $ac_status" >&5 + echo "$as_me:29218: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:29097: \"$ac_try\"") >&5 + { (eval echo "$as_me:29221: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:29100: \$? = $ac_status" >&5 + echo "$as_me:29224: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_slang_utf8=yes else @@ -29110,7 +29234,7 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:29113: result: $cf_cv_slang_utf8" >&5 +echo "$as_me:29237: result: $cf_cv_slang_utf8" >&5 echo "${ECHO_T}$cf_cv_slang_utf8" >&6 if test "$cf_cv_slang_utf8" = yes ; then @@ -29121,14 +29245,14 @@ EOF fi -echo "$as_me:29124: checking if we must tell slang this is UNIX" >&5 +echo "$as_me:29248: 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 29131 "configure" +#line 29255 "configure" #include "confdefs.h" #include <slang.h> int @@ -29147,16 +29271,16 @@ SLang_TT_Baud_Rate = 1 } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:29150: \"$ac_link\"") >&5 +if { (eval echo "$as_me:29274: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:29153: \$? = $ac_status" >&5 + echo "$as_me:29277: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:29156: \"$ac_try\"") >&5 + { (eval echo "$as_me:29280: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:29159: \$? = $ac_status" >&5 + echo "$as_me:29283: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_slang_unix=yes else @@ -29167,20 +29291,20 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:29170: result: $cf_cv_slang_unix" >&5 +echo "$as_me:29294: 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:29177: checking for SLsmg_Color_Type" >&5 + echo "$as_me:29301: 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 29183 "configure" +#line 29307 "configure" #include "confdefs.h" #include <slang.h> @@ -29196,16 +29320,16 @@ if (sizeof (SLsmg_Color_Type)) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:29199: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:29323: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:29202: \$? = $ac_status" >&5 + echo "$as_me:29326: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:29205: \"$ac_try\"") >&5 + { (eval echo "$as_me:29329: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:29208: \$? = $ac_status" >&5 + echo "$as_me:29332: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_type_SLsmg_Color_Type=yes else @@ -29215,7 +29339,7 @@ ac_cv_type_SLsmg_Color_Type=no fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:29218: result: $ac_cv_type_SLsmg_Color_Type" >&5 +echo "$as_me:29342: 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 @@ -29231,13 +29355,13 @@ EOF fi - echo "$as_me:29234: checking for SLtt_Char_Type" >&5 + echo "$as_me:29358: 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 29240 "configure" +#line 29364 "configure" #include "confdefs.h" #include <slang.h> @@ -29253,16 +29377,16 @@ if (sizeof (SLtt_Char_Type)) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:29256: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:29380: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:29259: \$? = $ac_status" >&5 + echo "$as_me:29383: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:29262: \"$ac_try\"") >&5 + { (eval echo "$as_me:29386: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:29265: \$? = $ac_status" >&5 + echo "$as_me:29389: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_type_SLtt_Char_Type=yes else @@ -29272,7 +29396,7 @@ ac_cv_type_SLtt_Char_Type=no fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:29275: result: $ac_cv_type_SLtt_Char_Type" >&5 +echo "$as_me:29399: 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 @@ -29295,7 +29419,7 @@ esac LD_RPATH_OPT= if test "x$cf_cv_enable_rpath" != xno then - echo "$as_me:29298: checking for an rpath option" >&5 + echo "$as_me:29422: checking for an rpath option" >&5 echo $ECHO_N "checking for an rpath option... $ECHO_C" >&6 case $cf_cv_system_name in (irix*) @@ -29326,12 +29450,12 @@ echo $ECHO_N "checking for an rpath option... $ECHO_C" >&6 (*) ;; esac - echo "$as_me:29329: result: $LD_RPATH_OPT" >&5 + echo "$as_me:29453: result: $LD_RPATH_OPT" >&5 echo "${ECHO_T}$LD_RPATH_OPT" >&6 case "x$LD_RPATH_OPT" in (x-R*) - echo "$as_me:29334: checking if we need a space after rpath option" >&5 + echo "$as_me:29458: 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" @@ -29352,7 +29476,7 @@ done LIBS="$cf_add_libs" cat >conftest.$ac_ext <<_ACEOF -#line 29355 "configure" +#line 29479 "configure" #include "confdefs.h" int @@ -29364,16 +29488,16 @@ main (void) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:29367: \"$ac_link\"") >&5 +if { (eval echo "$as_me:29491: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:29370: \$? = $ac_status" >&5 + echo "$as_me:29494: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:29373: \"$ac_try\"") >&5 + { (eval echo "$as_me:29497: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:29376: \$? = $ac_status" >&5 + echo "$as_me:29500: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_rpath_space=no else @@ -29383,7 +29507,7 @@ cf_rpath_space=yes fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS="$cf_save_LIBS" - echo "$as_me:29386: result: $cf_rpath_space" >&5 + echo "$as_me:29510: result: $cf_rpath_space" >&5 echo "${ECHO_T}$cf_rpath_space" >&6 test "$cf_rpath_space" = yes && LD_RPATH_OPT="$LD_RPATH_OPT " ;; @@ -29394,13 +29518,13 @@ if test -z "$LD_RPATH_OPT" then test -n "$verbose" && echo " will not attempt to use rpath" 1>&6 -echo "${as_me:-configure}:29397: testing will not attempt to use rpath ..." 1>&5 +echo "${as_me:-configure}:29521: testing will not attempt to use rpath ..." 1>&5 elif test "x${enable_rpath_hack:-yes}" = "xno" then test -n "$verbose" && echo " "rpath is disabled" 1>&6 -echo "${as_me:-configure}:29403: testing "rpath is disabled ..." 1>&5 +echo "${as_me:-configure}:29527: testing "rpath is disabled ..." 1>&5 elif test -z "${LD_RUN_PATH}${LD_LIBRARY_PATH}" then @@ -29411,7 +29535,7 @@ if test "$cross_compiling" = yes; then cf_check_run=unknown else cat >conftest.$ac_ext <<_ACEOF -#line 29414 "configure" +#line 29538 "configure" #include "confdefs.h" #include <stdio.h> int main(void) { @@ -29420,15 +29544,15 @@ int main(void) { } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:29423: \"$ac_link\"") >&5 +if { (eval echo "$as_me:29547: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:29426: \$? = $ac_status" >&5 + echo "$as_me:29550: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:29428: \"$ac_try\"") >&5 + { (eval echo "$as_me:29552: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:29431: \$? = $ac_status" >&5 + echo "$as_me:29555: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_check_run=yes else @@ -29444,7 +29568,7 @@ fi then test -n "$verbose" && echo " linkage is broken" 1>&6 -echo "${as_me:-configure}:29447: testing linkage is broken ..." 1>&5 +echo "${as_me:-configure}:29571: testing linkage is broken ..." 1>&5 cf_result= for cf_item in $LIBS @@ -29476,7 +29600,7 @@ if test "$cross_compiling" = yes; then cf_check_run=unknown else cat >conftest.$ac_ext <<_ACEOF -#line 29479 "configure" +#line 29603 "configure" #include "confdefs.h" #include <stdio.h> int main(void) { @@ -29485,15 +29609,15 @@ int main(void) { } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:29488: \"$ac_link\"") >&5 +if { (eval echo "$as_me:29612: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:29491: \$? = $ac_status" >&5 + echo "$as_me:29615: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:29493: \"$ac_try\"") >&5 + { (eval echo "$as_me:29617: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:29496: \$? = $ac_status" >&5 + echo "$as_me:29620: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_check_run=yes else @@ -29509,12 +29633,12 @@ fi then test -n "$verbose" && echo " use rpath for $cf_save_LIBS" 1>&6 -echo "${as_me:-configure}:29512: testing use rpath for $cf_save_LIBS ..." 1>&5 +echo "${as_me:-configure}:29636: testing use rpath for $cf_save_LIBS ..." 1>&5 LIBS="$cf_result" test -n "$verbose" && echo " result is now $LIBS" 1>&6 -echo "${as_me:-configure}:29517: testing result is now $LIBS ..." 1>&5 +echo "${as_me:-configure}:29641: testing result is now $LIBS ..." 1>&5 else LIBS="$cf_save_LIBS" @@ -29525,20 +29649,20 @@ echo "${as_me:-configure}:29517: testing result is now $LIBS ..." 1>&5 (*) test -n "$verbose" && echo " will not attempt to use rpath" 1>&6 -echo "${as_me:-configure}:29528: testing will not attempt to use rpath ..." 1>&5 +echo "${as_me:-configure}:29652: testing will not attempt to use rpath ..." 1>&5 ;; esac fi -echo "$as_me:29534: checking for chtype typedef" >&5 +echo "$as_me:29658: 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 29541 "configure" +#line 29665 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> int @@ -29550,16 +29674,16 @@ chtype foo; (void)foo } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:29553: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:29677: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:29556: \$? = $ac_status" >&5 + echo "$as_me:29680: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:29559: \"$ac_try\"") >&5 + { (eval echo "$as_me:29683: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:29562: \$? = $ac_status" >&5 + echo "$as_me:29686: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_chtype_decl=yes else @@ -29569,7 +29693,7 @@ cf_cv_chtype_decl=no fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:29572: result: $cf_cv_chtype_decl" >&5 +echo "$as_me:29696: result: $cf_cv_chtype_decl" >&5 echo "${ECHO_T}$cf_cv_chtype_decl" >&6 if test $cf_cv_chtype_decl = yes ; then @@ -29577,14 +29701,14 @@ cat >>confdefs.h <<\EOF #define HAVE_TYPE_CHTYPE 1 EOF - echo "$as_me:29580: checking if chtype is scalar or struct" >&5 + echo "$as_me:29704: 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 29587 "configure" +#line 29711 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> int @@ -29596,16 +29720,16 @@ static chtype foo; long x = foo; (void)x } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:29599: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:29723: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:29602: \$? = $ac_status" >&5 + echo "$as_me:29726: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:29605: \"$ac_try\"") >&5 + { (eval echo "$as_me:29729: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:29608: \$? = $ac_status" >&5 + echo "$as_me:29732: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_chtype_type=scalar else @@ -29615,7 +29739,7 @@ cf_cv_chtype_type=struct fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:29618: result: $cf_cv_chtype_type" >&5 +echo "$as_me:29742: result: $cf_cv_chtype_type" >&5 echo "${ECHO_T}$cf_cv_chtype_type" >&6 if test $cf_cv_chtype_type = scalar ; then @@ -29626,7 +29750,7 @@ EOF fi fi -echo "$as_me:29629: checking if you want the wide-curses features" >&5 +echo "$as_me:29753: 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. @@ -29643,10 +29767,10 @@ else use_wide_curses=$cf_wide_curses fi; -echo "$as_me:29646: result: $use_wide_curses" >&5 +echo "$as_me:29770: result: $use_wide_curses" >&5 echo "${ECHO_T}$use_wide_curses" >&6 -echo "$as_me:29649: checking if color-style code should be used" >&5 +echo "$as_me:29773: 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. @@ -29666,7 +29790,7 @@ fi; case $use_color_style in (no) - echo "$as_me:29669: result: no" >&5 + echo "$as_me:29793: result: no" >&5 echo "${ECHO_T}no" >&6 INSTALL_LSS= ;; @@ -29676,10 +29800,10 @@ cat >>confdefs.h <<\EOF #define USE_COLOR_STYLE 1 EOF - echo "$as_me:29679: result: yes" >&5 + echo "$as_me:29803: result: yes" >&5 echo "${ECHO_T}yes" >&6 - echo "$as_me:29682: checking for location of style-sheet file" >&5 + echo "$as_me:29806: 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. @@ -29715,7 +29839,7 @@ case ".$withval" in withval=`echo $withval | sed -e s%NONE%$cf_path_syntax%` ;; (*) - { { echo "$as_me:29718: error: expected a pathname, not \"$withval\"" >&5 + { { echo "$as_me:29842: error: expected a pathname, not \"$withval\"" >&5 echo "$as_me: error: expected a pathname, not \"$withval\"" >&2;} { (exit 1); exit 1; }; } ;; @@ -29724,7 +29848,7 @@ esac fi eval LYNX_LSS_FILE="$withval" - echo "$as_me:29727: result: $LYNX_LSS_FILE" >&5 + echo "$as_me:29851: result: $LYNX_LSS_FILE" >&5 echo "${ECHO_T}$LYNX_LSS_FILE" >&6 test "$LYNX_LSS_FILE" = no && LYNX_LSS_FILE= @@ -29737,7 +29861,7 @@ EOF ;; esac -echo "$as_me:29740: checking for the default configuration-file" >&5 +echo "$as_me:29864: 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. @@ -29773,7 +29897,7 @@ case ".$withval" in withval=`echo $withval | sed -e s%NONE%$cf_path_syntax%` ;; (*) - { { echo "$as_me:29776: error: expected a pathname, not \"$withval\"" >&5 + { { echo "$as_me:29900: error: expected a pathname, not \"$withval\"" >&5 echo "$as_me: error: expected a pathname, not \"$withval\"" >&2;} { (exit 1); exit 1; }; } ;; @@ -29782,7 +29906,7 @@ esac fi eval LYNX_CFG_FILE="$withval" -echo "$as_me:29785: result: $LYNX_CFG_FILE" >&5 +echo "$as_me:29909: result: $LYNX_CFG_FILE" >&5 echo "${ECHO_T}$LYNX_CFG_FILE" >&6 test "$LYNX_CFG_FILE" = no && LYNX_CFG_FILE= @@ -29791,7 +29915,7 @@ cat >>confdefs.h <<EOF #define LYNX_CFG_FILE "$LYNX_CFG_FILE" EOF -echo "$as_me:29794: checking for the default configuration-path" >&5 +echo "$as_me:29918: checking for the default configuration-path" >&5 echo $ECHO_N "checking for the default configuration-path... $ECHO_C" >&6 # Check whether --with-cfg-path or --without-cfg-path was given. @@ -29827,7 +29951,7 @@ case ".$withval" in withval=`echo $withval | sed -e s%NONE%$cf_path_syntax%` ;; (*) - { { echo "$as_me:29830: error: expected a pathname, not \"$withval\"" >&5 + { { echo "$as_me:29954: error: expected a pathname, not \"$withval\"" >&5 echo "$as_me: error: expected a pathname, not \"$withval\"" >&2;} { (exit 1); exit 1; }; } ;; @@ -29836,7 +29960,7 @@ esac fi eval LYNX_CFG_PATH="$withval" -echo "$as_me:29839: result: $LYNX_CFG_PATH" >&5 +echo "$as_me:29963: result: $LYNX_CFG_PATH" >&5 echo "${ECHO_T}$LYNX_CFG_PATH" >&6 test -z "$LYNX_CFG_PATH" && `echo "$LYNX_CFG_FILE" | sed -e 's%/[^/]*$%%'` @@ -29846,7 +29970,7 @@ cat >>confdefs.h <<EOF #define LYNX_CFG_PATH "$LYNX_CFG_PATH" EOF -echo "$as_me:29849: checking if htmlized lynx.cfg should be built" >&5 +echo "$as_me:29973: 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. @@ -29863,7 +29987,7 @@ else use_htmlized_cfg=no fi; -echo "$as_me:29866: result: $use_htmlized_cfg" >&5 +echo "$as_me:29990: result: $use_htmlized_cfg" >&5 echo "${ECHO_T}$use_htmlized_cfg" >&6 LYNXCFG_MAKE='' @@ -29871,7 +29995,7 @@ if test $use_htmlized_cfg = no ; then LYNXCFG_MAKE='#' fi -echo "$as_me:29874: checking if local doc directory should be linked to help page" >&5 +echo "$as_me:29998: 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. @@ -29888,7 +30012,7 @@ else use_local_docs=no fi; -echo "$as_me:29891: result: $use_local_docs" >&5 +echo "$as_me:30015: result: $use_local_docs" >&5 echo "${ECHO_T}$use_local_docs" >&6 LYNXDOC_MAKE='' @@ -29896,7 +30020,7 @@ if test $use_local_docs = no ; then LYNXDOC_MAKE='#' fi -echo "$as_me:29899: checking for MIME library directory" >&5 +echo "$as_me:30023: 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. @@ -29932,7 +30056,7 @@ case ".$withval" in withval=`echo $withval | sed -e s%NONE%$cf_path_syntax%` ;; (*) - { { echo "$as_me:29935: error: expected a pathname, not \"$withval\"" >&5 + { { echo "$as_me:30059: error: expected a pathname, not \"$withval\"" >&5 echo "$as_me: error: expected a pathname, not \"$withval\"" >&2;} { (exit 1); exit 1; }; } ;; @@ -29941,7 +30065,7 @@ esac fi eval MIME_LIBDIR="$withval" -echo "$as_me:29944: result: $MIME_LIBDIR" >&5 +echo "$as_me:30068: result: $MIME_LIBDIR" >&5 echo "${ECHO_T}$MIME_LIBDIR" >&6 MIME_LIBDIR=`echo "$MIME_LIBDIR" | sed -e 's,/$,,' -e 's,$,/,'` @@ -29949,7 +30073,7 @@ cat >>confdefs.h <<EOF #define MIME_LIBDIR "$MIME_LIBDIR" EOF -echo "$as_me:29952: checking if locale-charset selection logic should be used" >&5 +echo "$as_me:30076: 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. @@ -29966,7 +30090,7 @@ else use_locale_charset=yes fi; -echo "$as_me:29969: result: $use_locale_charset" >&5 +echo "$as_me:30093: result: $use_locale_charset" >&5 echo "${ECHO_T}$use_locale_charset" >&6 test $use_locale_charset != no && cat >>confdefs.h <<\EOF @@ -29975,7 +30099,7 @@ EOF CHARSET_DEFS= -echo "$as_me:29978: checking if you want only a few charsets" >&5 +echo "$as_me:30102: 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. @@ -29987,7 +30111,7 @@ else fi; if test -n "$cf_charsets" ; then - echo "$as_me:29990: result: yes" >&5 + echo "$as_me:30114: result: yes" >&5 echo "${ECHO_T}yes" >&6 cat >>confdefs.h <<\EOF @@ -30001,7 +30125,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}:30004: testing using minimal list of charsets: $cf_min_charsets ..." 1>&5 +echo "${as_me:-configure}:30128: 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'` @@ -30028,28 +30152,28 @@ echo "${as_me:-configure}:30004: testing using minimal list of charsets: $cf_min then test -n "$verbose" && echo " found $cf_charset" 1>&6 -echo "${as_me:-configure}:30031: testing found $cf_charset ..." 1>&5 +echo "${as_me:-configure}:30155: 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}:30037: testing not found $cf_charset ..." 1>&5 +echo "${as_me:-configure}:30161: testing not found $cf_charset ..." 1>&5 fi done else - echo "$as_me:30042: result: no" >&5 + echo "$as_me:30166: result: no" >&5 echo "${ECHO_T}no" >&6 fi -echo "$as_me:30046: checking for ANSI C header files" >&5 +echo "$as_me:30170: 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 30052 "configure" +#line 30176 "configure" #include "confdefs.h" #include <stdlib.h> #include <stdarg.h> @@ -30057,13 +30181,13 @@ else #include <float.h> _ACEOF -if { (eval echo "$as_me:30060: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:30184: \"$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:30066: \$? = $ac_status" >&5 + echo "$as_me:30190: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -30085,7 +30209,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 30088 "configure" +#line 30212 "configure" #include "confdefs.h" #include <string.h> @@ -30103,7 +30227,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 30106 "configure" +#line 30230 "configure" #include "confdefs.h" #include <stdlib.h> @@ -30124,7 +30248,7 @@ if test $ac_cv_header_stdc = yes; then : else cat >conftest.$ac_ext <<_ACEOF -#line 30127 "configure" +#line 30251 "configure" #include "confdefs.h" #include <ctype.h> #if ((' ' & 0x0FF) == 0x020) @@ -30150,15 +30274,15 @@ main (void) } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:30153: \"$ac_link\"") >&5 +if { (eval echo "$as_me:30277: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:30156: \$? = $ac_status" >&5 + echo "$as_me:30280: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:30158: \"$ac_try\"") >&5 + { (eval echo "$as_me:30282: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:30161: \$? = $ac_status" >&5 + echo "$as_me:30285: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -30171,7 +30295,7 @@ rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext fi fi fi -echo "$as_me:30174: result: $ac_cv_header_stdc" >&5 +echo "$as_me:30298: result: $ac_cv_header_stdc" >&5 echo "${ECHO_T}$ac_cv_header_stdc" >&6 if test $ac_cv_header_stdc = yes; then @@ -30181,13 +30305,13 @@ EOF fi -echo "$as_me:30184: checking whether time.h and sys/time.h may both be included" >&5 +echo "$as_me:30308: 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 30190 "configure" +#line 30314 "configure" #include "confdefs.h" #include <sys/types.h> #include <sys/time.h> @@ -30203,16 +30327,16 @@ return 0; } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:30206: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:30330: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:30209: \$? = $ac_status" >&5 + echo "$as_me:30333: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:30212: \"$ac_try\"") >&5 + { (eval echo "$as_me:30336: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:30215: \$? = $ac_status" >&5 + echo "$as_me:30339: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_header_time=yes else @@ -30222,7 +30346,7 @@ ac_cv_header_time=no fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:30225: result: $ac_cv_header_time" >&5 +echo "$as_me:30349: result: $ac_cv_header_time" >&5 echo "${ECHO_T}$ac_cv_header_time" >&6 if test $ac_cv_header_time = yes; then @@ -30235,13 +30359,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:30238: checking for $ac_hdr that defines DIR" >&5 +echo "$as_me:30362: 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 30244 "configure" +#line 30368 "configure" #include "confdefs.h" #include <sys/types.h> #include <$ac_hdr> @@ -30256,16 +30380,16 @@ return 0; } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:30259: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:30383: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:30262: \$? = $ac_status" >&5 + echo "$as_me:30386: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:30265: \"$ac_try\"") >&5 + { (eval echo "$as_me:30389: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:30268: \$? = $ac_status" >&5 + echo "$as_me:30392: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_Header=yes" else @@ -30275,7 +30399,7 @@ eval "$as_ac_Header=no" fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:30278: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:30402: 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 @@ -30288,7 +30412,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:30291: checking for opendir in -ldir" >&5 + echo "$as_me:30415: 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 @@ -30296,7 +30420,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-ldir $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 30299 "configure" +#line 30423 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -30315,16 +30439,16 @@ opendir (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:30318: \"$ac_link\"") >&5 +if { (eval echo "$as_me:30442: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:30321: \$? = $ac_status" >&5 + echo "$as_me:30445: \$? = $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:30448: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:30327: \$? = $ac_status" >&5 + echo "$as_me:30451: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_dir_opendir=yes else @@ -30335,14 +30459,14 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:30338: result: $ac_cv_lib_dir_opendir" >&5 +echo "$as_me:30462: 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:30345: checking for opendir in -lx" >&5 + echo "$as_me:30469: 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 @@ -30350,7 +30474,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lx $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 30353 "configure" +#line 30477 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -30369,16 +30493,16 @@ opendir (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:30372: \"$ac_link\"") >&5 +if { (eval echo "$as_me:30496: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:30375: \$? = $ac_status" >&5 + echo "$as_me:30499: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:30378: \"$ac_try\"") >&5 + { (eval echo "$as_me:30502: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:30381: \$? = $ac_status" >&5 + echo "$as_me:30505: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_x_opendir=yes else @@ -30389,7 +30513,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:30392: result: $ac_cv_lib_x_opendir" >&5 +echo "$as_me:30516: 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" @@ -30418,23 +30542,23 @@ for ac_header in \ do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` -echo "$as_me:30421: checking for $ac_header" >&5 +echo "$as_me:30545: 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 30427 "configure" +#line 30551 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:30431: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:30555: \"$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:30437: \$? = $ac_status" >&5 + echo "$as_me:30561: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -30453,7 +30577,7 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:30456: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:30580: 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 @@ -30463,14 +30587,14 @@ EOF fi done -echo "$as_me:30466: checking termio.h and termios.h" >&5 +echo "$as_me:30590: 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 30473 "configure" +#line 30597 "configure" #include "confdefs.h" #if HAVE_TERMIO_H @@ -30488,16 +30612,16 @@ putchar (0x0a) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:30491: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:30615: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:30494: \$? = $ac_status" >&5 + echo "$as_me:30618: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:30497: \"$ac_try\"") >&5 + { (eval echo "$as_me:30621: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:30500: \$? = $ac_status" >&5 + echo "$as_me:30624: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_termio_and_termios=yes else @@ -30508,21 +30632,21 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:30511: result: $cf_cv_termio_and_termios" >&5 +echo "$as_me:30635: 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:30518: checking for sigaction and structs" >&5 +echo "$as_me:30642: 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 30525 "configure" +#line 30649 "configure" #include "confdefs.h" #include <sys/types.h> @@ -30542,16 +30666,16 @@ struct sigaction act; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:30545: \"$ac_link\"") >&5 +if { (eval echo "$as_me:30669: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:30548: \$? = $ac_status" >&5 + echo "$as_me:30672: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:30551: \"$ac_try\"") >&5 + { (eval echo "$as_me:30675: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:30554: \$? = $ac_status" >&5 + echo "$as_me:30678: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_func_sigaction=yes else @@ -30562,7 +30686,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:30565: result: $cf_cv_func_sigaction" >&5 +echo "$as_me:30689: result: $cf_cv_func_sigaction" >&5 echo "${ECHO_T}$cf_cv_func_sigaction" >&6 test "$cf_cv_func_sigaction" = yes && cat >>confdefs.h <<\EOF @@ -30572,23 +30696,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:30575: checking for $ac_header" >&5 +echo "$as_me:30699: 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 30581 "configure" +#line 30705 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:30585: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:30709: \"$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:30591: \$? = $ac_status" >&5 + echo "$as_me:30715: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -30607,7 +30731,7 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:30610: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:30734: 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 @@ -30628,23 +30752,23 @@ else for ac_header in wait.h do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` -echo "$as_me:30631: checking for $ac_header" >&5 +echo "$as_me:30755: 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 30637 "configure" +#line 30761 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:30641: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:30765: \"$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:30647: \$? = $ac_status" >&5 + echo "$as_me:30771: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -30663,7 +30787,7 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:30666: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:30790: 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 @@ -30676,23 +30800,23 @@ done for ac_header in waitstatus.h do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` -echo "$as_me:30679: checking for $ac_header" >&5 +echo "$as_me:30803: 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 30685 "configure" +#line 30809 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:30689: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:30813: \"$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:30695: \$? = $ac_status" >&5 + echo "$as_me:30819: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -30711,7 +30835,7 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:30714: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:30838: 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 @@ -30733,14 +30857,14 @@ cf_wait_headers="$cf_wait_headers fi fi -echo "$as_me:30736: checking for union wait" >&5 +echo "$as_me:30860: 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 30743 "configure" +#line 30867 "configure" #include "confdefs.h" $cf_wait_headers int @@ -30759,16 +30883,16 @@ int x; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:30762: \"$ac_link\"") >&5 +if { (eval echo "$as_me:30886: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:30765: \$? = $ac_status" >&5 + echo "$as_me:30889: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:30768: \"$ac_try\"") >&5 + { (eval echo "$as_me:30892: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:30771: \$? = $ac_status" >&5 + echo "$as_me:30895: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_type_unionwait=no echo compiles ok w/o union wait 1>&5 @@ -30778,7 +30902,7 @@ else cat conftest.$ac_ext >&5 cat >conftest.$ac_ext <<_ACEOF -#line 30781 "configure" +#line 30905 "configure" #include "confdefs.h" $cf_wait_headers int @@ -30805,16 +30929,16 @@ union wait x; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:30808: \"$ac_link\"") >&5 +if { (eval echo "$as_me:30932: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:30811: \$? = $ac_status" >&5 + echo "$as_me:30935: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:30814: \"$ac_try\"") >&5 + { (eval echo "$as_me:30938: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:30817: \$? = $ac_status" >&5 + echo "$as_me:30941: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_type_unionwait=yes echo compiles ok with union wait and possibly macros too 1>&5 @@ -30829,7 +30953,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:30832: result: $cf_cv_type_unionwait" >&5 +echo "$as_me:30956: result: $cf_cv_type_unionwait" >&5 echo "${ECHO_T}$cf_cv_type_unionwait" >&6 test $cf_cv_type_unionwait = yes && cat >>confdefs.h <<\EOF @@ -30838,14 +30962,14 @@ EOF if test $cf_cv_type_unionwait = yes; then - echo "$as_me:30841: checking if union wait can be used as wait-arg" >&5 + echo "$as_me:30965: 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 30848 "configure" +#line 30972 "configure" #include "confdefs.h" $cf_wait_headers int @@ -30857,16 +30981,16 @@ union wait x; wait(&x) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:30860: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:30984: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:30863: \$? = $ac_status" >&5 + echo "$as_me:30987: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:30866: \"$ac_try\"") >&5 + { (eval echo "$as_me:30990: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:30869: \$? = $ac_status" >&5 + echo "$as_me:30993: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_arg_union_wait=yes else @@ -30878,21 +31002,21 @@ rm -f conftest.$ac_objext conftest.$ac_ext fi - echo "$as_me:30881: result: $cf_cv_arg_union_wait" >&5 + echo "$as_me:31005: 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:30888: checking if union wait can be used as waitpid-arg" >&5 + echo "$as_me:31012: 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 30895 "configure" +#line 31019 "configure" #include "confdefs.h" $cf_wait_headers int @@ -30904,16 +31028,16 @@ union wait x; waitpid(0, &x, 0) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:30907: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:31031: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:30910: \$? = $ac_status" >&5 + echo "$as_me:31034: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:30913: \"$ac_try\"") >&5 + { (eval echo "$as_me:31037: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:30916: \$? = $ac_status" >&5 + echo "$as_me:31040: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_arg_union_waitpid=yes else @@ -30925,7 +31049,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext fi - echo "$as_me:30928: result: $cf_cv_arg_union_waitpid" >&5 + echo "$as_me:31052: 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 @@ -30934,13 +31058,13 @@ EOF fi -echo "$as_me:30937: checking for uid_t in sys/types.h" >&5 +echo "$as_me:31061: 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 30943 "configure" +#line 31067 "configure" #include "confdefs.h" #include <sys/types.h> @@ -30954,7 +31078,7 @@ fi rm -rf conftest* fi -echo "$as_me:30957: result: $ac_cv_type_uid_t" >&5 +echo "$as_me:31081: 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 @@ -30968,7 +31092,7 @@ EOF fi -echo "$as_me:30971: checking type of array argument to getgroups" >&5 +echo "$as_me:31095: 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 @@ -30977,7 +31101,7 @@ else ac_cv_type_getgroups=cross else cat >conftest.$ac_ext <<_ACEOF -#line 30980 "configure" +#line 31104 "configure" #include "confdefs.h" /* Thanks to Mike Rendell for this test. */ #include <sys/types.h> @@ -31003,15 +31127,15 @@ main (void) } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:31006: \"$ac_link\"") >&5 +if { (eval echo "$as_me:31130: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:31009: \$? = $ac_status" >&5 + echo "$as_me:31133: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:31011: \"$ac_try\"") >&5 + { (eval echo "$as_me:31135: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:31014: \$? = $ac_status" >&5 + echo "$as_me:31138: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_type_getgroups=gid_t else @@ -31024,7 +31148,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 31027 "configure" +#line 31151 "configure" #include "confdefs.h" #include <unistd.h> @@ -31039,20 +31163,20 @@ rm -rf conftest* fi fi -echo "$as_me:31042: result: $ac_cv_type_getgroups" >&5 +echo "$as_me:31166: 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:31049: checking for off_t" >&5 +echo "$as_me:31173: 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 31055 "configure" +#line 31179 "configure" #include "confdefs.h" $ac_includes_default int @@ -31067,16 +31191,16 @@ if (sizeof (off_t)) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:31070: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:31194: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:31073: \$? = $ac_status" >&5 + echo "$as_me:31197: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:31076: \"$ac_try\"") >&5 + { (eval echo "$as_me:31200: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:31079: \$? = $ac_status" >&5 + echo "$as_me:31203: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_type_off_t=yes else @@ -31086,7 +31210,7 @@ ac_cv_type_off_t=no fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:31089: result: $ac_cv_type_off_t" >&5 +echo "$as_me:31213: 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 : @@ -31098,13 +31222,13 @@ EOF fi -echo "$as_me:31101: checking for pid_t" >&5 +echo "$as_me:31225: 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 31107 "configure" +#line 31231 "configure" #include "confdefs.h" $ac_includes_default int @@ -31119,16 +31243,16 @@ if (sizeof (pid_t)) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:31122: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:31246: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:31125: \$? = $ac_status" >&5 + echo "$as_me:31249: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:31128: \"$ac_try\"") >&5 + { (eval echo "$as_me:31252: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:31131: \$? = $ac_status" >&5 + echo "$as_me:31255: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_type_pid_t=yes else @@ -31138,7 +31262,7 @@ ac_cv_type_pid_t=no fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:31141: result: $ac_cv_type_pid_t" >&5 +echo "$as_me:31265: 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 : @@ -31150,13 +31274,13 @@ EOF fi -echo "$as_me:31153: checking for uid_t in sys/types.h" >&5 +echo "$as_me:31277: 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 31159 "configure" +#line 31283 "configure" #include "confdefs.h" #include <sys/types.h> @@ -31170,7 +31294,7 @@ fi rm -rf conftest* fi -echo "$as_me:31173: result: $ac_cv_type_uid_t" >&5 +echo "$as_me:31297: 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 @@ -31184,13 +31308,13 @@ EOF fi -echo "$as_me:31187: checking for mode_t" >&5 +echo "$as_me:31311: 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 31193 "configure" +#line 31317 "configure" #include "confdefs.h" $ac_includes_default int @@ -31205,16 +31329,16 @@ if (sizeof (mode_t)) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:31208: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:31332: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:31211: \$? = $ac_status" >&5 + echo "$as_me:31335: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:31214: \"$ac_try\"") >&5 + { (eval echo "$as_me:31338: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:31217: \$? = $ac_status" >&5 + echo "$as_me:31341: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_type_mode_t=yes else @@ -31224,7 +31348,7 @@ ac_cv_type_mode_t=no fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:31227: result: $ac_cv_type_mode_t" >&5 +echo "$as_me:31351: 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 : @@ -31236,13 +31360,13 @@ EOF fi - echo "$as_me:31239: checking for ssize_t" >&5 + echo "$as_me:31363: 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 31245 "configure" +#line 31369 "configure" #include "confdefs.h" $ac_includes_default int @@ -31257,16 +31381,16 @@ if (sizeof (ssize_t)) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:31260: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:31384: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:31263: \$? = $ac_status" >&5 + echo "$as_me:31387: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:31266: \"$ac_try\"") >&5 + { (eval echo "$as_me:31390: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:31269: \$? = $ac_status" >&5 + echo "$as_me:31393: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_type_ssize_t=yes else @@ -31276,7 +31400,7 @@ ac_cv_type_ssize_t=no fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:31279: result: $ac_cv_type_ssize_t" >&5 +echo "$as_me:31403: 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 @@ -31292,13 +31416,13 @@ EOF fi - echo "$as_me:31295: checking for socklen_t" >&5 + echo "$as_me:31419: 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 31301 "configure" +#line 31425 "configure" #include "confdefs.h" #include <sys/types.h> @@ -31316,16 +31440,16 @@ if (sizeof (socklen_t)) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:31319: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:31443: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:31322: \$? = $ac_status" >&5 + echo "$as_me:31446: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:31325: \"$ac_try\"") >&5 + { (eval echo "$as_me:31449: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:31328: \$? = $ac_status" >&5 + echo "$as_me:31452: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_type_socklen_t=yes else @@ -31335,7 +31459,7 @@ ac_cv_type_socklen_t=no fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:31338: result: $ac_cv_type_socklen_t" >&5 +echo "$as_me:31462: 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 @@ -31351,7 +31475,7 @@ EOF fi -echo "$as_me:31354: checking for long long type" >&5 +echo "$as_me:31478: 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 @@ -31382,7 +31506,7 @@ _CFEOF rm -f conftest* fi -echo "$as_me:31385: result: $cf_cv_type_long_long" >&5 +echo "$as_me:31509: 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 @@ -31393,14 +31517,14 @@ EOF fi -echo "$as_me:31396: checking for tm.tm_gmtoff" >&5 +echo "$as_me:31520: 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 31403 "configure" +#line 31527 "configure" #include "confdefs.h" #ifdef TIME_WITH_SYS_TIME @@ -31425,16 +31549,16 @@ main (void) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:31428: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:31552: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:31431: \$? = $ac_status" >&5 + echo "$as_me:31555: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:31434: \"$ac_try\"") >&5 + { (eval echo "$as_me:31558: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:31437: \$? = $ac_status" >&5 + echo "$as_me:31561: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_tm_gmtoff=yes else @@ -31445,20 +31569,20 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:31448: result: $cf_cv_tm_gmtoff" >&5 +echo "$as_me:31572: 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:31455: checking for int" >&5 +echo "$as_me:31579: 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 31461 "configure" +#line 31585 "configure" #include "confdefs.h" $ac_includes_default int @@ -31473,16 +31597,16 @@ if (sizeof (int)) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:31476: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:31600: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:31479: \$? = $ac_status" >&5 + echo "$as_me:31603: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:31482: \"$ac_try\"") >&5 + { (eval echo "$as_me:31606: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:31485: \$? = $ac_status" >&5 + echo "$as_me:31609: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_type_int=yes else @@ -31492,10 +31616,10 @@ ac_cv_type_int=no fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:31495: result: $ac_cv_type_int" >&5 +echo "$as_me:31619: result: $ac_cv_type_int" >&5 echo "${ECHO_T}$ac_cv_type_int" >&6 -echo "$as_me:31498: checking size of int" >&5 +echo "$as_me:31622: 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 @@ -31504,7 +31628,7 @@ else if test "$cross_compiling" = yes; then # Depending upon the size, compute the lo and hi bounds. cat >conftest.$ac_ext <<_ACEOF -#line 31507 "configure" +#line 31631 "configure" #include "confdefs.h" $ac_includes_default int @@ -31516,21 +31640,21 @@ int _array_ [1 - 2 * !((sizeof (int)) >= 0)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:31519: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:31643: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:31522: \$? = $ac_status" >&5 + echo "$as_me:31646: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:31525: \"$ac_try\"") >&5 + { (eval echo "$as_me:31649: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:31528: \$? = $ac_status" >&5 + echo "$as_me:31652: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_lo=0 ac_mid=0 while :; do cat >conftest.$ac_ext <<_ACEOF -#line 31533 "configure" +#line 31657 "configure" #include "confdefs.h" $ac_includes_default int @@ -31542,16 +31666,16 @@ int _array_ [1 - 2 * !((sizeof (int)) <= $ac_mid)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:31545: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:31669: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:31548: \$? = $ac_status" >&5 + echo "$as_me:31672: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:31551: \"$ac_try\"") >&5 + { (eval echo "$as_me:31675: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:31554: \$? = $ac_status" >&5 + echo "$as_me:31678: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_hi=$ac_mid; break else @@ -31567,7 +31691,7 @@ cat conftest.$ac_ext >&5 ac_hi=-1 ac_mid=-1 while :; do cat >conftest.$ac_ext <<_ACEOF -#line 31570 "configure" +#line 31694 "configure" #include "confdefs.h" $ac_includes_default int @@ -31579,16 +31703,16 @@ int _array_ [1 - 2 * !((sizeof (int)) >= $ac_mid)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:31582: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:31706: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:31585: \$? = $ac_status" >&5 + echo "$as_me:31709: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:31588: \"$ac_try\"") >&5 + { (eval echo "$as_me:31712: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:31591: \$? = $ac_status" >&5 + echo "$as_me:31715: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_lo=$ac_mid; break else @@ -31604,7 +31728,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 31607 "configure" +#line 31731 "configure" #include "confdefs.h" $ac_includes_default int @@ -31616,16 +31740,16 @@ int _array_ [1 - 2 * !((sizeof (int)) <= $ac_mid)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:31619: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:31743: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:31622: \$? = $ac_status" >&5 + echo "$as_me:31746: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:31625: \"$ac_try\"") >&5 + { (eval echo "$as_me:31749: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:31628: \$? = $ac_status" >&5 + echo "$as_me:31752: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_hi=$ac_mid else @@ -31638,12 +31762,12 @@ done ac_cv_sizeof_int=$ac_lo else if test "$cross_compiling" = yes; then - { { echo "$as_me:31641: error: cannot run test program while cross compiling" >&5 + { { echo "$as_me:31765: 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 31646 "configure" +#line 31770 "configure" #include "confdefs.h" $ac_includes_default int @@ -31659,15 +31783,15 @@ fclose (f); } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:31662: \"$ac_link\"") >&5 +if { (eval echo "$as_me:31786: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:31665: \$? = $ac_status" >&5 + echo "$as_me:31789: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:31667: \"$ac_try\"") >&5 + { (eval echo "$as_me:31791: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:31670: \$? = $ac_status" >&5 + echo "$as_me:31794: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_sizeof_int=`cat conftest.val` else @@ -31683,7 +31807,7 @@ else ac_cv_sizeof_int=0 fi fi -echo "$as_me:31686: result: $ac_cv_sizeof_int" >&5 +echo "$as_me:31810: 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 @@ -31692,11 +31816,11 @@ EOF if test "${ac_cv_type_int+set}" = set; then cf_cv_sizeof="$ac_cv_sizeof_int" if test "${ac_cv_sizeof_int+set}" != set; then - { echo "$as_me:31695: WARNING: using 4 for sizeof int" >&5 + { echo "$as_me:31819: 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:31699: WARNING: sizeof int not found, using 4" >&5 + { echo "$as_me:31823: 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 @@ -31710,13 +31834,13 @@ cf_cv_type=`echo "sizeof_int" | sed y%abcdefghijklmnopqrstuvwxyz./-%ABCDEFGHIJKL fi fi -echo "$as_me:31713: checking for long" >&5 +echo "$as_me:31837: 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 31719 "configure" +#line 31843 "configure" #include "confdefs.h" $ac_includes_default int @@ -31731,16 +31855,16 @@ if (sizeof (long)) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:31734: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:31858: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:31737: \$? = $ac_status" >&5 + echo "$as_me:31861: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:31740: \"$ac_try\"") >&5 + { (eval echo "$as_me:31864: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:31743: \$? = $ac_status" >&5 + echo "$as_me:31867: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_type_long=yes else @@ -31750,10 +31874,10 @@ ac_cv_type_long=no fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:31753: result: $ac_cv_type_long" >&5 +echo "$as_me:31877: result: $ac_cv_type_long" >&5 echo "${ECHO_T}$ac_cv_type_long" >&6 -echo "$as_me:31756: checking size of long" >&5 +echo "$as_me:31880: 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 @@ -31762,7 +31886,7 @@ else if test "$cross_compiling" = yes; then # Depending upon the size, compute the lo and hi bounds. cat >conftest.$ac_ext <<_ACEOF -#line 31765 "configure" +#line 31889 "configure" #include "confdefs.h" $ac_includes_default int @@ -31774,21 +31898,21 @@ int _array_ [1 - 2 * !((sizeof (long)) >= 0)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:31777: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:31901: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:31780: \$? = $ac_status" >&5 + echo "$as_me:31904: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:31783: \"$ac_try\"") >&5 + { (eval echo "$as_me:31907: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:31786: \$? = $ac_status" >&5 + echo "$as_me:31910: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_lo=0 ac_mid=0 while :; do cat >conftest.$ac_ext <<_ACEOF -#line 31791 "configure" +#line 31915 "configure" #include "confdefs.h" $ac_includes_default int @@ -31800,16 +31924,16 @@ int _array_ [1 - 2 * !((sizeof (long)) <= $ac_mid)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:31803: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:31927: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:31806: \$? = $ac_status" >&5 + echo "$as_me:31930: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:31809: \"$ac_try\"") >&5 + { (eval echo "$as_me:31933: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:31812: \$? = $ac_status" >&5 + echo "$as_me:31936: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_hi=$ac_mid; break else @@ -31825,7 +31949,7 @@ cat conftest.$ac_ext >&5 ac_hi=-1 ac_mid=-1 while :; do cat >conftest.$ac_ext <<_ACEOF -#line 31828 "configure" +#line 31952 "configure" #include "confdefs.h" $ac_includes_default int @@ -31837,16 +31961,16 @@ int _array_ [1 - 2 * !((sizeof (long)) >= $ac_mid)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:31840: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:31964: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:31843: \$? = $ac_status" >&5 + echo "$as_me:31967: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:31846: \"$ac_try\"") >&5 + { (eval echo "$as_me:31970: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:31849: \$? = $ac_status" >&5 + echo "$as_me:31973: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_lo=$ac_mid; break else @@ -31862,7 +31986,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 31865 "configure" +#line 31989 "configure" #include "confdefs.h" $ac_includes_default int @@ -31874,16 +31998,16 @@ int _array_ [1 - 2 * !((sizeof (long)) <= $ac_mid)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:31877: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:32001: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:31880: \$? = $ac_status" >&5 + echo "$as_me:32004: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:31883: \"$ac_try\"") >&5 + { (eval echo "$as_me:32007: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:31886: \$? = $ac_status" >&5 + echo "$as_me:32010: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_hi=$ac_mid else @@ -31896,12 +32020,12 @@ done ac_cv_sizeof_long=$ac_lo else if test "$cross_compiling" = yes; then - { { echo "$as_me:31899: error: cannot run test program while cross compiling" >&5 + { { echo "$as_me:32023: 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 31904 "configure" +#line 32028 "configure" #include "confdefs.h" $ac_includes_default int @@ -31917,15 +32041,15 @@ fclose (f); } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:31920: \"$ac_link\"") >&5 +if { (eval echo "$as_me:32044: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:31923: \$? = $ac_status" >&5 + echo "$as_me:32047: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:31925: \"$ac_try\"") >&5 + { (eval echo "$as_me:32049: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:31928: \$? = $ac_status" >&5 + echo "$as_me:32052: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_sizeof_long=`cat conftest.val` else @@ -31941,7 +32065,7 @@ else ac_cv_sizeof_long=0 fi fi -echo "$as_me:31944: result: $ac_cv_sizeof_long" >&5 +echo "$as_me:32068: 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 @@ -31950,11 +32074,11 @@ EOF if test "${ac_cv_type_long+set}" = set; then cf_cv_sizeof="$ac_cv_sizeof_long" if test "${ac_cv_sizeof_long+set}" != set; then - { echo "$as_me:31953: WARNING: using 4 for sizeof long" >&5 + { echo "$as_me:32077: 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:31957: WARNING: sizeof long not found, using 4" >&5 + { echo "$as_me:32081: 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 @@ -31968,13 +32092,13 @@ cf_cv_type=`echo "sizeof_long" | sed y%abcdefghijklmnopqrstuvwxyz./-%ABCDEFGHIJK fi fi -echo "$as_me:31971: checking for off_t" >&5 +echo "$as_me:32095: 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 31977 "configure" +#line 32101 "configure" #include "confdefs.h" $ac_includes_default int @@ -31989,16 +32113,16 @@ if (sizeof (off_t)) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:31992: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:32116: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:31995: \$? = $ac_status" >&5 + echo "$as_me:32119: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:31998: \"$ac_try\"") >&5 + { (eval echo "$as_me:32122: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:32001: \$? = $ac_status" >&5 + echo "$as_me:32125: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_type_off_t=yes else @@ -32008,10 +32132,10 @@ ac_cv_type_off_t=no fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:32011: result: $ac_cv_type_off_t" >&5 +echo "$as_me:32135: result: $ac_cv_type_off_t" >&5 echo "${ECHO_T}$ac_cv_type_off_t" >&6 -echo "$as_me:32014: checking size of off_t" >&5 +echo "$as_me:32138: 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 @@ -32020,7 +32144,7 @@ else if test "$cross_compiling" = yes; then # Depending upon the size, compute the lo and hi bounds. cat >conftest.$ac_ext <<_ACEOF -#line 32023 "configure" +#line 32147 "configure" #include "confdefs.h" $ac_includes_default int @@ -32032,21 +32156,21 @@ int _array_ [1 - 2 * !((sizeof (off_t)) >= 0)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:32035: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:32159: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:32038: \$? = $ac_status" >&5 + echo "$as_me:32162: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:32041: \"$ac_try\"") >&5 + { (eval echo "$as_me:32165: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:32044: \$? = $ac_status" >&5 + echo "$as_me:32168: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_lo=0 ac_mid=0 while :; do cat >conftest.$ac_ext <<_ACEOF -#line 32049 "configure" +#line 32173 "configure" #include "confdefs.h" $ac_includes_default int @@ -32058,16 +32182,16 @@ int _array_ [1 - 2 * !((sizeof (off_t)) <= $ac_mid)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:32061: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:32185: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:32064: \$? = $ac_status" >&5 + echo "$as_me:32188: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:32067: \"$ac_try\"") >&5 + { (eval echo "$as_me:32191: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:32070: \$? = $ac_status" >&5 + echo "$as_me:32194: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_hi=$ac_mid; break else @@ -32083,7 +32207,7 @@ cat conftest.$ac_ext >&5 ac_hi=-1 ac_mid=-1 while :; do cat >conftest.$ac_ext <<_ACEOF -#line 32086 "configure" +#line 32210 "configure" #include "confdefs.h" $ac_includes_default int @@ -32095,16 +32219,16 @@ int _array_ [1 - 2 * !((sizeof (off_t)) >= $ac_mid)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:32098: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:32222: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:32101: \$? = $ac_status" >&5 + echo "$as_me:32225: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:32104: \"$ac_try\"") >&5 + { (eval echo "$as_me:32228: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:32107: \$? = $ac_status" >&5 + echo "$as_me:32231: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_lo=$ac_mid; break else @@ -32120,7 +32244,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 32123 "configure" +#line 32247 "configure" #include "confdefs.h" $ac_includes_default int @@ -32132,16 +32256,16 @@ int _array_ [1 - 2 * !((sizeof (off_t)) <= $ac_mid)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:32135: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:32259: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:32138: \$? = $ac_status" >&5 + echo "$as_me:32262: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:32141: \"$ac_try\"") >&5 + { (eval echo "$as_me:32265: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:32144: \$? = $ac_status" >&5 + echo "$as_me:32268: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_hi=$ac_mid else @@ -32154,12 +32278,12 @@ done ac_cv_sizeof_off_t=$ac_lo else if test "$cross_compiling" = yes; then - { { echo "$as_me:32157: error: cannot run test program while cross compiling" >&5 + { { echo "$as_me:32281: 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 32162 "configure" +#line 32286 "configure" #include "confdefs.h" $ac_includes_default int @@ -32175,15 +32299,15 @@ fclose (f); } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:32178: \"$ac_link\"") >&5 +if { (eval echo "$as_me:32302: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:32181: \$? = $ac_status" >&5 + echo "$as_me:32305: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:32183: \"$ac_try\"") >&5 + { (eval echo "$as_me:32307: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:32186: \$? = $ac_status" >&5 + echo "$as_me:32310: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_sizeof_off_t=`cat conftest.val` else @@ -32199,7 +32323,7 @@ else ac_cv_sizeof_off_t=0 fi fi -echo "$as_me:32202: result: $ac_cv_sizeof_off_t" >&5 +echo "$as_me:32326: 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 @@ -32208,11 +32332,11 @@ EOF if test "${ac_cv_type_off_t+set}" = set; then cf_cv_sizeof="$ac_cv_sizeof_off_t" if test "${ac_cv_sizeof_off_t+set}" != set; then - { echo "$as_me:32211: WARNING: using 4 for sizeof off_t" >&5 + { echo "$as_me:32335: 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:32215: WARNING: sizeof off_t not found, using 4" >&5 + { echo "$as_me:32339: 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 @@ -32226,13 +32350,13 @@ cf_cv_type=`echo "sizeof_off_t" | sed y%abcdefghijklmnopqrstuvwxyz./-%ABCDEFGHIJ fi fi -echo "$as_me:32229: checking for size_t" >&5 +echo "$as_me:32353: checking for size_t" >&5 echo $ECHO_N "checking for size_t... $ECHO_C" >&6 if test "${ac_cv_type_size_t+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 32235 "configure" +#line 32359 "configure" #include "confdefs.h" $ac_includes_default int @@ -32247,16 +32371,16 @@ if (sizeof (size_t)) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:32250: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:32374: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:32253: \$? = $ac_status" >&5 + echo "$as_me:32377: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:32256: \"$ac_try\"") >&5 + { (eval echo "$as_me:32380: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:32259: \$? = $ac_status" >&5 + echo "$as_me:32383: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_type_size_t=yes else @@ -32266,10 +32390,10 @@ ac_cv_type_size_t=no fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:32269: result: $ac_cv_type_size_t" >&5 +echo "$as_me:32393: result: $ac_cv_type_size_t" >&5 echo "${ECHO_T}$ac_cv_type_size_t" >&6 -echo "$as_me:32272: checking size of size_t" >&5 +echo "$as_me:32396: checking size of size_t" >&5 echo $ECHO_N "checking size of size_t... $ECHO_C" >&6 if test "${ac_cv_sizeof_size_t+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -32278,7 +32402,7 @@ else if test "$cross_compiling" = yes; then # Depending upon the size, compute the lo and hi bounds. cat >conftest.$ac_ext <<_ACEOF -#line 32281 "configure" +#line 32405 "configure" #include "confdefs.h" $ac_includes_default int @@ -32290,21 +32414,21 @@ int _array_ [1 - 2 * !((sizeof (size_t)) >= 0)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:32293: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:32417: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:32296: \$? = $ac_status" >&5 + echo "$as_me:32420: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:32299: \"$ac_try\"") >&5 + { (eval echo "$as_me:32423: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:32302: \$? = $ac_status" >&5 + echo "$as_me:32426: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_lo=0 ac_mid=0 while :; do cat >conftest.$ac_ext <<_ACEOF -#line 32307 "configure" +#line 32431 "configure" #include "confdefs.h" $ac_includes_default int @@ -32316,16 +32440,16 @@ int _array_ [1 - 2 * !((sizeof (size_t)) <= $ac_mid)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:32319: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:32443: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:32322: \$? = $ac_status" >&5 + echo "$as_me:32446: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:32325: \"$ac_try\"") >&5 + { (eval echo "$as_me:32449: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:32328: \$? = $ac_status" >&5 + echo "$as_me:32452: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_hi=$ac_mid; break else @@ -32341,7 +32465,7 @@ cat conftest.$ac_ext >&5 ac_hi=-1 ac_mid=-1 while :; do cat >conftest.$ac_ext <<_ACEOF -#line 32344 "configure" +#line 32468 "configure" #include "confdefs.h" $ac_includes_default int @@ -32353,16 +32477,16 @@ int _array_ [1 - 2 * !((sizeof (size_t)) >= $ac_mid)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:32356: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:32480: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:32359: \$? = $ac_status" >&5 + echo "$as_me:32483: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:32362: \"$ac_try\"") >&5 + { (eval echo "$as_me:32486: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:32365: \$? = $ac_status" >&5 + echo "$as_me:32489: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_lo=$ac_mid; break else @@ -32378,7 +32502,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 32381 "configure" +#line 32505 "configure" #include "confdefs.h" $ac_includes_default int @@ -32390,16 +32514,16 @@ int _array_ [1 - 2 * !((sizeof (size_t)) <= $ac_mid)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:32393: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:32517: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:32396: \$? = $ac_status" >&5 + echo "$as_me:32520: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:32399: \"$ac_try\"") >&5 + { (eval echo "$as_me:32523: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:32402: \$? = $ac_status" >&5 + echo "$as_me:32526: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_hi=$ac_mid else @@ -32412,12 +32536,12 @@ done ac_cv_sizeof_size_t=$ac_lo else if test "$cross_compiling" = yes; then - { { echo "$as_me:32415: error: cannot run test program while cross compiling" >&5 + { { echo "$as_me:32539: 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 32420 "configure" +#line 32544 "configure" #include "confdefs.h" $ac_includes_default int @@ -32433,15 +32557,15 @@ fclose (f); } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:32436: \"$ac_link\"") >&5 +if { (eval echo "$as_me:32560: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:32439: \$? = $ac_status" >&5 + echo "$as_me:32563: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:32441: \"$ac_try\"") >&5 + { (eval echo "$as_me:32565: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:32444: \$? = $ac_status" >&5 + echo "$as_me:32568: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_sizeof_size_t=`cat conftest.val` else @@ -32457,7 +32581,7 @@ else ac_cv_sizeof_size_t=0 fi fi -echo "$as_me:32460: result: $ac_cv_sizeof_size_t" >&5 +echo "$as_me:32584: result: $ac_cv_sizeof_size_t" >&5 echo "${ECHO_T}$ac_cv_sizeof_size_t" >&6 cat >>confdefs.h <<EOF #define SIZEOF_SIZE_T $ac_cv_sizeof_size_t @@ -32466,11 +32590,11 @@ EOF if test "${ac_cv_type_size_t+set}" = set; then cf_cv_sizeof="$ac_cv_sizeof_size_t" if test "${ac_cv_sizeof_size_t+set}" != set; then - { echo "$as_me:32469: WARNING: using 4 for sizeof size_t" >&5 + { echo "$as_me:32593: WARNING: using 4 for sizeof size_t" >&5 echo "$as_me: WARNING: using 4 for sizeof size_t" >&2;} ac_cv_sizeof_size_t=4 elif test "x${ac_cv_sizeof_size_t}" = x0; then - { echo "$as_me:32473: WARNING: sizeof size_t not found, using 4" >&5 + { echo "$as_me:32597: WARNING: sizeof size_t not found, using 4" >&5 echo "$as_me: WARNING: sizeof size_t not found, using 4" >&2;} ac_cv_sizeof_size_t=4 fi @@ -32484,13 +32608,13 @@ cf_cv_type=`echo "sizeof_size_t" | sed y%abcdefghijklmnopqrstuvwxyz./-%ABCDEFGHI fi fi -echo "$as_me:32487: checking for time_t" >&5 +echo "$as_me:32611: 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 32493 "configure" +#line 32617 "configure" #include "confdefs.h" $ac_includes_default int @@ -32505,16 +32629,16 @@ if (sizeof (time_t)) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:32508: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:32632: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:32511: \$? = $ac_status" >&5 + echo "$as_me:32635: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:32514: \"$ac_try\"") >&5 + { (eval echo "$as_me:32638: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:32517: \$? = $ac_status" >&5 + echo "$as_me:32641: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_type_time_t=yes else @@ -32524,10 +32648,10 @@ ac_cv_type_time_t=no fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:32527: result: $ac_cv_type_time_t" >&5 +echo "$as_me:32651: result: $ac_cv_type_time_t" >&5 echo "${ECHO_T}$ac_cv_type_time_t" >&6 -echo "$as_me:32530: checking size of time_t" >&5 +echo "$as_me:32654: 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 @@ -32536,7 +32660,7 @@ else if test "$cross_compiling" = yes; then # Depending upon the size, compute the lo and hi bounds. cat >conftest.$ac_ext <<_ACEOF -#line 32539 "configure" +#line 32663 "configure" #include "confdefs.h" $ac_includes_default int @@ -32548,21 +32672,21 @@ int _array_ [1 - 2 * !((sizeof (time_t)) >= 0)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:32551: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:32675: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:32554: \$? = $ac_status" >&5 + echo "$as_me:32678: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:32557: \"$ac_try\"") >&5 + { (eval echo "$as_me:32681: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:32560: \$? = $ac_status" >&5 + echo "$as_me:32684: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_lo=0 ac_mid=0 while :; do cat >conftest.$ac_ext <<_ACEOF -#line 32565 "configure" +#line 32689 "configure" #include "confdefs.h" $ac_includes_default int @@ -32574,16 +32698,16 @@ int _array_ [1 - 2 * !((sizeof (time_t)) <= $ac_mid)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:32577: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:32701: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:32580: \$? = $ac_status" >&5 + echo "$as_me:32704: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:32583: \"$ac_try\"") >&5 + { (eval echo "$as_me:32707: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:32586: \$? = $ac_status" >&5 + echo "$as_me:32710: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_hi=$ac_mid; break else @@ -32599,7 +32723,7 @@ cat conftest.$ac_ext >&5 ac_hi=-1 ac_mid=-1 while :; do cat >conftest.$ac_ext <<_ACEOF -#line 32602 "configure" +#line 32726 "configure" #include "confdefs.h" $ac_includes_default int @@ -32611,16 +32735,16 @@ int _array_ [1 - 2 * !((sizeof (time_t)) >= $ac_mid)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:32614: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:32738: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:32617: \$? = $ac_status" >&5 + echo "$as_me:32741: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:32620: \"$ac_try\"") >&5 + { (eval echo "$as_me:32744: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:32623: \$? = $ac_status" >&5 + echo "$as_me:32747: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_lo=$ac_mid; break else @@ -32636,7 +32760,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 32639 "configure" +#line 32763 "configure" #include "confdefs.h" $ac_includes_default int @@ -32648,16 +32772,16 @@ int _array_ [1 - 2 * !((sizeof (time_t)) <= $ac_mid)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:32651: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:32775: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:32654: \$? = $ac_status" >&5 + echo "$as_me:32778: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:32657: \"$ac_try\"") >&5 + { (eval echo "$as_me:32781: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:32660: \$? = $ac_status" >&5 + echo "$as_me:32784: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_hi=$ac_mid else @@ -32670,12 +32794,12 @@ done ac_cv_sizeof_time_t=$ac_lo else if test "$cross_compiling" = yes; then - { { echo "$as_me:32673: error: cannot run test program while cross compiling" >&5 + { { echo "$as_me:32797: 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 32678 "configure" +#line 32802 "configure" #include "confdefs.h" $ac_includes_default int @@ -32691,15 +32815,15 @@ fclose (f); } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:32694: \"$ac_link\"") >&5 +if { (eval echo "$as_me:32818: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:32697: \$? = $ac_status" >&5 + echo "$as_me:32821: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:32699: \"$ac_try\"") >&5 + { (eval echo "$as_me:32823: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:32702: \$? = $ac_status" >&5 + echo "$as_me:32826: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_sizeof_time_t=`cat conftest.val` else @@ -32715,7 +32839,7 @@ else ac_cv_sizeof_time_t=0 fi fi -echo "$as_me:32718: result: $ac_cv_sizeof_time_t" >&5 +echo "$as_me:32842: 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 @@ -32724,11 +32848,11 @@ EOF if test "${ac_cv_type_time_t+set}" = set; then cf_cv_sizeof="$ac_cv_sizeof_time_t" if test "${ac_cv_sizeof_time_t+set}" != set; then - { echo "$as_me:32727: WARNING: using 4 for sizeof time_t" >&5 + { echo "$as_me:32851: 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:32731: WARNING: sizeof time_t not found, using 4" >&5 + { echo "$as_me:32855: 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 @@ -32742,13 +32866,13 @@ cf_cv_type=`echo "sizeof_time_t" | sed y%abcdefghijklmnopqrstuvwxyz./-%ABCDEFGHI fi fi -echo "$as_me:32745: checking for intptr_t" >&5 +echo "$as_me:32869: 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 32751 "configure" +#line 32875 "configure" #include "confdefs.h" $ac_includes_default int @@ -32763,16 +32887,16 @@ if (sizeof (intptr_t)) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:32766: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:32890: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:32769: \$? = $ac_status" >&5 + echo "$as_me:32893: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:32772: \"$ac_try\"") >&5 + { (eval echo "$as_me:32896: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:32775: \$? = $ac_status" >&5 + echo "$as_me:32899: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_type_intptr_t=yes else @@ -32782,7 +32906,7 @@ ac_cv_type_intptr_t=no fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:32785: result: $ac_cv_type_intptr_t" >&5 +echo "$as_me:32909: 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 : @@ -32796,13 +32920,13 @@ fi # The Ultrix 4.2 mips builtin alloca declared by alloca.h only works # for constant arguments. Useless! -echo "$as_me:32799: checking for working alloca.h" >&5 +echo "$as_me:32923: 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 32805 "configure" +#line 32929 "configure" #include "confdefs.h" #include <alloca.h> int @@ -32814,16 +32938,16 @@ char *p = (char *) alloca (2 * sizeof (int)); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:32817: \"$ac_link\"") >&5 +if { (eval echo "$as_me:32941: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:32820: \$? = $ac_status" >&5 + echo "$as_me:32944: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:32823: \"$ac_try\"") >&5 + { (eval echo "$as_me:32947: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:32826: \$? = $ac_status" >&5 + echo "$as_me:32950: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_working_alloca_h=yes else @@ -32833,7 +32957,7 @@ ac_cv_working_alloca_h=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:32836: result: $ac_cv_working_alloca_h" >&5 +echo "$as_me:32960: 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 @@ -32843,13 +32967,13 @@ EOF fi -echo "$as_me:32846: checking for alloca" >&5 +echo "$as_me:32970: 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 32852 "configure" +#line 32976 "configure" #include "confdefs.h" #ifdef __GNUC__ # define alloca __builtin_alloca @@ -32881,16 +33005,16 @@ char *p = (char *) alloca (1); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:32884: \"$ac_link\"") >&5 +if { (eval echo "$as_me:33008: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:32887: \$? = $ac_status" >&5 + echo "$as_me:33011: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:32890: \"$ac_try\"") >&5 + { (eval echo "$as_me:33014: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:32893: \$? = $ac_status" >&5 + echo "$as_me:33017: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_alloca_works=yes else @@ -32900,7 +33024,7 @@ ac_cv_func_alloca_works=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:32903: result: $ac_cv_func_alloca_works" >&5 +echo "$as_me:33027: 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 @@ -32921,13 +33045,13 @@ cat >>confdefs.h <<\EOF #define C_ALLOCA 1 EOF -echo "$as_me:32924: checking whether \`alloca.c' needs Cray hooks" >&5 +echo "$as_me:33048: 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 32930 "configure" +#line 33054 "configure" #include "confdefs.h" #if defined(CRAY) && ! defined(CRAY2) webecray @@ -32945,18 +33069,18 @@ fi rm -rf conftest* fi -echo "$as_me:32948: result: $ac_cv_os_cray" >&5 +echo "$as_me:33072: 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:32953: checking for $ac_func" >&5 +echo "$as_me:33077: 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 32959 "configure" +#line 33083 "configure" #include "confdefs.h" #define $ac_func autoconf_temporary #include <limits.h> /* least-intrusive standard header which defines gcc2 __stub macros */ @@ -32987,16 +33111,16 @@ main (void) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:32990: \"$ac_link\"") >&5 +if { (eval echo "$as_me:33114: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:32993: \$? = $ac_status" >&5 + echo "$as_me:33117: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:32996: \"$ac_try\"") >&5 + { (eval echo "$as_me:33120: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:32999: \$? = $ac_status" >&5 + echo "$as_me:33123: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else @@ -33006,7 +33130,7 @@ eval "$as_ac_var=no" fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:33009: result: `eval echo '${'$as_ac_var'}'`" >&5 +echo "$as_me:33133: 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 @@ -33020,7 +33144,7 @@ fi done fi -echo "$as_me:33023: checking stack direction for C alloca" >&5 +echo "$as_me:33147: 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 @@ -33029,7 +33153,7 @@ else ac_cv_c_stack_direction=0 else cat >conftest.$ac_ext <<_ACEOF -#line 33032 "configure" +#line 33156 "configure" #include "confdefs.h" int find_stack_direction (void) @@ -33052,15 +33176,15 @@ main (void) } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:33055: \"$ac_link\"") >&5 +if { (eval echo "$as_me:33179: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:33058: \$? = $ac_status" >&5 + echo "$as_me:33182: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:33060: \"$ac_try\"") >&5 + { (eval echo "$as_me:33184: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:33063: \$? = $ac_status" >&5 + echo "$as_me:33187: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_c_stack_direction=1 else @@ -33072,7 +33196,7 @@ fi rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext fi fi -echo "$as_me:33075: result: $ac_cv_c_stack_direction" >&5 +echo "$as_me:33199: result: $ac_cv_c_stack_direction" >&5 echo "${ECHO_T}$ac_cv_c_stack_direction" >&6 cat >>confdefs.h <<EOF @@ -33084,23 +33208,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:33087: checking for $ac_header" >&5 +echo "$as_me:33211: 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 33093 "configure" +#line 33217 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:33097: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:33221: \"$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:33103: \$? = $ac_status" >&5 + echo "$as_me:33227: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -33119,7 +33243,7 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:33122: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:33246: 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 @@ -33132,13 +33256,13 @@ done for ac_func in fork vfork do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` -echo "$as_me:33135: checking for $ac_func" >&5 +echo "$as_me:33259: 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 33141 "configure" +#line 33265 "configure" #include "confdefs.h" #define $ac_func autoconf_temporary #include <limits.h> /* least-intrusive standard header which defines gcc2 __stub macros */ @@ -33169,16 +33293,16 @@ main (void) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:33172: \"$ac_link\"") >&5 +if { (eval echo "$as_me:33296: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:33175: \$? = $ac_status" >&5 + echo "$as_me:33299: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:33178: \"$ac_try\"") >&5 + { (eval echo "$as_me:33302: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:33181: \$? = $ac_status" >&5 + echo "$as_me:33305: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else @@ -33188,7 +33312,7 @@ eval "$as_ac_var=no" fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:33191: result: `eval echo '${'$as_ac_var'}'`" >&5 +echo "$as_me:33315: 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 @@ -33200,7 +33324,7 @@ done ac_cv_func_fork_works=$ac_cv_func_fork if test "x$ac_cv_func_fork" = xyes; then - echo "$as_me:33203: checking for working fork" >&5 + echo "$as_me:33327: 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 @@ -33223,15 +33347,15 @@ else } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:33226: \"$ac_link\"") >&5 +if { (eval echo "$as_me:33350: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:33229: \$? = $ac_status" >&5 + echo "$as_me:33353: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:33231: \"$ac_try\"") >&5 + { (eval echo "$as_me:33355: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:33234: \$? = $ac_status" >&5 + echo "$as_me:33358: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_fork_works=yes else @@ -33243,7 +33367,7 @@ fi rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext fi fi -echo "$as_me:33246: result: $ac_cv_func_fork_works" >&5 +echo "$as_me:33370: result: $ac_cv_func_fork_works" >&5 echo "${ECHO_T}$ac_cv_func_fork_works" >&6 fi @@ -33257,12 +33381,12 @@ if test "x$ac_cv_func_fork_works" = xcross; then ac_cv_func_fork_works=yes ;; esac - { echo "$as_me:33260: WARNING: CROSS: Result $ac_cv_func_fork_works guessed due to cross-compiling." >&5 + { echo "$as_me:33384: 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:33265: checking for working vfork" >&5 + echo "$as_me:33389: 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 @@ -33271,7 +33395,7 @@ else ac_cv_func_vfork_works=cross else cat >conftest.$ac_ext <<_ACEOF -#line 33274 "configure" +#line 33398 "configure" #include "confdefs.h" /* Thanks to Paul Eggert for this test. */ #include <stdio.h> @@ -33368,15 +33492,15 @@ main (void) } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:33371: \"$ac_link\"") >&5 +if { (eval echo "$as_me:33495: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:33374: \$? = $ac_status" >&5 + echo "$as_me:33498: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:33376: \"$ac_try\"") >&5 + { (eval echo "$as_me:33500: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:33379: \$? = $ac_status" >&5 + echo "$as_me:33503: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_vfork_works=yes else @@ -33388,13 +33512,13 @@ fi rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext fi fi -echo "$as_me:33391: result: $ac_cv_func_vfork_works" >&5 +echo "$as_me:33515: 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:33397: WARNING: CROSS: Result $ac_cv_func_vfork_works guessed due to cross-compiling." >&5 + { echo "$as_me:33521: 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 @@ -33419,14 +33543,14 @@ EOF fi -echo "$as_me:33422: checking if we should use fcntl or ioctl" >&5 +echo "$as_me:33546: 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 33429 "configure" +#line 33553 "configure" #include "confdefs.h" #include <sys/types.h> @@ -33443,16 +33567,16 @@ main (void) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:33446: \"$ac_link\"") >&5 +if { (eval echo "$as_me:33570: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:33449: \$? = $ac_status" >&5 + echo "$as_me:33573: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:33452: \"$ac_try\"") >&5 + { (eval echo "$as_me:33576: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:33455: \$? = $ac_status" >&5 + echo "$as_me:33579: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_fionbio=ioctl else @@ -33460,7 +33584,7 @@ else cat conftest.$ac_ext >&5 cat >conftest.$ac_ext <<_ACEOF -#line 33463 "configure" +#line 33587 "configure" #include "confdefs.h" #include <sys/types.h> @@ -33482,16 +33606,16 @@ main (void) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:33485: \"$ac_link\"") >&5 +if { (eval echo "$as_me:33609: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:33488: \$? = $ac_status" >&5 + echo "$as_me:33612: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:33491: \"$ac_try\"") >&5 + { (eval echo "$as_me:33615: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:33494: \$? = $ac_status" >&5 + echo "$as_me:33618: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_fionbio=fcntl else @@ -33504,21 +33628,21 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:33507: result: $cf_cv_fionbio" >&5 +echo "$as_me:33631: 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:33514: checking for broken/missing definition of remove" >&5 +echo "$as_me:33638: 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 33521 "configure" +#line 33645 "configure" #include "confdefs.h" #include <stdio.h> int @@ -33530,23 +33654,23 @@ remove("dummy") } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:33533: \"$ac_link\"") >&5 +if { (eval echo "$as_me:33657: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:33536: \$? = $ac_status" >&5 + echo "$as_me:33660: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:33539: \"$ac_try\"") >&5 + { (eval echo "$as_me:33663: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:33542: \$? = $ac_status" >&5 + echo "$as_me:33666: \$? = $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 33549 "configure" +#line 33673 "configure" #include "confdefs.h" #include <stdio.h> int __unlink(name) { return unlink(name); } @@ -33559,16 +33683,16 @@ remove("dummy") } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:33562: \"$ac_link\"") >&5 +if { (eval echo "$as_me:33686: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:33565: \$? = $ac_status" >&5 + echo "$as_me:33689: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:33568: \"$ac_try\"") >&5 + { (eval echo "$as_me:33692: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:33571: \$? = $ac_status" >&5 + echo "$as_me:33695: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_baddef_remove=yes else @@ -33583,21 +33707,21 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:33586: result: $cf_cv_baddef_remove" >&5 +echo "$as_me:33710: 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:33593: checking for lstat" >&5 +echo "$as_me:33717: 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 33600 "configure" +#line 33724 "configure" #include "confdefs.h" #include <sys/types.h> @@ -33611,16 +33735,16 @@ lstat(".", (struct stat *)0) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:33614: \"$ac_link\"") >&5 +if { (eval echo "$as_me:33738: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:33617: \$? = $ac_status" >&5 + echo "$as_me:33741: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:33620: \"$ac_try\"") >&5 + { (eval echo "$as_me:33744: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:33623: \$? = $ac_status" >&5 + echo "$as_me:33747: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_lstat=yes else @@ -33632,7 +33756,7 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:33635: result: $ac_cv_func_lstat " >&5 +echo "$as_me:33759: result: $ac_cv_func_lstat " >&5 echo "${ECHO_T}$ac_cv_func_lstat " >&6 if test $ac_cv_func_lstat = yes; then @@ -33642,13 +33766,13 @@ EOF fi -echo "$as_me:33645: checking for vasprintf" >&5 +echo "$as_me:33769: checking for vasprintf" >&5 echo $ECHO_N "checking for vasprintf... $ECHO_C" >&6 if test "${ac_cv_func_vasprintf+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 33651 "configure" +#line 33775 "configure" #include "confdefs.h" #define vasprintf autoconf_temporary #include <limits.h> /* least-intrusive standard header which defines gcc2 __stub macros */ @@ -33679,16 +33803,16 @@ main (void) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:33682: \"$ac_link\"") >&5 +if { (eval echo "$as_me:33806: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:33685: \$? = $ac_status" >&5 + echo "$as_me:33809: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:33688: \"$ac_try\"") >&5 + { (eval echo "$as_me:33812: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:33691: \$? = $ac_status" >&5 + echo "$as_me:33815: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_vasprintf=yes else @@ -33698,7 +33822,7 @@ ac_cv_func_vasprintf=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:33701: result: $ac_cv_func_vasprintf" >&5 +echo "$as_me:33825: result: $ac_cv_func_vasprintf" >&5 echo "${ECHO_T}$ac_cv_func_vasprintf" >&6 if test $ac_cv_func_vasprintf = yes; then @@ -33706,10 +33830,10 @@ cat >>confdefs.h <<\EOF #define HAVE_VASPRINTF 1 EOF - echo "$as_me:33709: checking if vasprintf requires workaround" >&5 + echo "$as_me:33833: checking if vasprintf requires workaround" >&5 echo $ECHO_N "checking if vasprintf requires workaround... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF -#line 33712 "configure" +#line 33836 "configure" #include "confdefs.h" #include <stdio.h> @@ -33725,19 +33849,19 @@ main (void) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:33728: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:33852: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:33731: \$? = $ac_status" >&5 + echo "$as_me:33855: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:33734: \"$ac_try\"") >&5 + { (eval echo "$as_me:33858: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:33737: \$? = $ac_status" >&5 + echo "$as_me:33861: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:33740: result: no" >&5 + echo "$as_me:33864: result: no" >&5 echo "${ECHO_T}no" >&6 else @@ -33745,7 +33869,7 @@ else cat conftest.$ac_ext >&5 cat >conftest.$ac_ext <<_ACEOF -#line 33748 "configure" +#line 33872 "configure" #include "confdefs.h" #ifndef _GNU_SOURCE @@ -33764,19 +33888,19 @@ main (void) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:33767: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:33891: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:33770: \$? = $ac_status" >&5 + echo "$as_me:33894: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:33773: \"$ac_try\"") >&5 + { (eval echo "$as_me:33897: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:33776: \$? = $ac_status" >&5 + echo "$as_me:33900: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:33779: result: yes" >&5 + echo "$as_me:33903: result: yes" >&5 echo "${ECHO_T}yes" >&6 test -n "$CPPFLAGS" && CPPFLAGS="$CPPFLAGS " @@ -33786,7 +33910,7 @@ else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 - echo "$as_me:33789: result: unknown" >&5 + echo "$as_me:33913: result: unknown" >&5 echo "${ECHO_T}unknown" >&6 fi @@ -33821,13 +33945,13 @@ for ac_func in \ do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` -echo "$as_me:33824: checking for $ac_func" >&5 +echo "$as_me:33948: 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 33830 "configure" +#line 33954 "configure" #include "confdefs.h" #define $ac_func autoconf_temporary #include <limits.h> /* least-intrusive standard header which defines gcc2 __stub macros */ @@ -33858,16 +33982,16 @@ main (void) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:33861: \"$ac_link\"") >&5 +if { (eval echo "$as_me:33985: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:33864: \$? = $ac_status" >&5 + echo "$as_me:33988: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:33867: \"$ac_try\"") >&5 + { (eval echo "$as_me:33991: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:33870: \$? = $ac_status" >&5 + echo "$as_me:33994: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else @@ -33877,7 +34001,7 @@ eval "$as_ac_var=no" fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:33880: result: `eval echo '${'$as_ac_var'}'`" >&5 +echo "$as_me:34004: 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 @@ -33894,13 +34018,13 @@ for ac_func in \ do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` -echo "$as_me:33897: checking for $ac_func" >&5 +echo "$as_me:34021: 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 33903 "configure" +#line 34027 "configure" #include "confdefs.h" #define $ac_func autoconf_temporary #include <limits.h> /* least-intrusive standard header which defines gcc2 __stub macros */ @@ -33931,16 +34055,16 @@ main (void) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:33934: \"$ac_link\"") >&5 +if { (eval echo "$as_me:34058: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:33937: \$? = $ac_status" >&5 + echo "$as_me:34061: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:33940: \"$ac_try\"") >&5 + { (eval echo "$as_me:34064: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:33943: \$? = $ac_status" >&5 + echo "$as_me:34067: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else @@ -33950,7 +34074,7 @@ eval "$as_ac_var=no" fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:33953: result: `eval echo '${'$as_ac_var'}'`" >&5 +echo "$as_me:34077: 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 @@ -33962,7 +34086,7 @@ else fi done -echo "$as_me:33965: checking for random-integer functions" >&5 +echo "$as_me:34089: 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 @@ -33982,7 +34106,7 @@ do esac cat >conftest.$ac_ext <<_ACEOF -#line 33985 "configure" +#line 34109 "configure" #include "confdefs.h" #ifdef HAVE_STDLIB_H @@ -34001,16 +34125,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:34004: \"$ac_link\"") >&5 +if { (eval echo "$as_me:34128: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:34007: \$? = $ac_status" >&5 + echo "$as_me:34131: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:34010: \"$ac_try\"") >&5 + { (eval echo "$as_me:34134: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:34013: \$? = $ac_status" >&5 + echo "$as_me:34137: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_srand_func=$cf_func break @@ -34022,10 +34146,10 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext done fi -echo "$as_me:34025: result: $cf_cv_srand_func" >&5 +echo "$as_me:34149: 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:34028: checking for range of random-integers" >&5 + echo "$as_me:34152: 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 @@ -34046,7 +34170,7 @@ else ;; esac cat >conftest.$ac_ext <<_ACEOF -#line 34049 "configure" +#line 34173 "configure" #include "confdefs.h" #ifdef HAVE_STDLIB_H @@ -34059,22 +34183,22 @@ else int main (void) { -long x = $cf_cv_rand_max +long x = $cf_cv_rand_max; (void)x ; return 0; } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:34068: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:34192: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:34071: \$? = $ac_status" >&5 + echo "$as_me:34195: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:34074: \"$ac_try\"") >&5 + { (eval echo "$as_me:34198: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:34077: \$? = $ac_status" >&5 + echo "$as_me:34201: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -34085,65 +34209,65 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:34088: result: $cf_cv_rand_max" >&5 +echo "$as_me:34212: result: $cf_cv_rand_max" >&5 echo "${ECHO_T}$cf_cv_rand_max" >&6 case $cf_cv_srand_func in (*/arc4random) - echo "$as_me:34093: checking if <bsd/stdlib.h> should be included" >&5 + echo "$as_me:34217: 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 34096 "configure" +#line 34220 "configure" #include "confdefs.h" #include <bsd/stdlib.h> int main (void) { void *arc4random(int); - void *x = arc4random(1) + void *x = arc4random(1); (void)x ; return 0; } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:34109: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:34233: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:34112: \$? = $ac_status" >&5 + echo "$as_me:34236: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:34115: \"$ac_try\"") >&5 + { (eval echo "$as_me:34239: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:34118: \$? = $ac_status" >&5 + echo "$as_me:34242: \$? = $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 34125 "configure" +#line 34249 "configure" #include "confdefs.h" #include <bsd/stdlib.h> int main (void) { -unsigned x = arc4random() +unsigned x = arc4random(); (void)x ; return 0; } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:34137: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:34261: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:34140: \$? = $ac_status" >&5 + echo "$as_me:34264: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:34143: \"$ac_try\"") >&5 + { (eval echo "$as_me:34267: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:34146: \$? = $ac_status" >&5 + echo "$as_me:34270: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_bsd_stdlib_h=yes else @@ -34154,7 +34278,7 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi rm -f conftest.$ac_objext conftest.$ac_ext - echo "$as_me:34157: result: $cf_bsd_stdlib_h" >&5 + echo "$as_me:34281: result: $cf_bsd_stdlib_h" >&5 echo "${ECHO_T}$cf_bsd_stdlib_h" >&6 if test "$cf_bsd_stdlib_h" = yes then @@ -34164,60 +34288,60 @@ cat >>confdefs.h <<\EOF EOF else - echo "$as_me:34167: checking if <bsd/random.h> should be included" >&5 + echo "$as_me:34291: 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 34170 "configure" +#line 34294 "configure" #include "confdefs.h" #include <bsd/random.h> int main (void) { void *arc4random(int); - void *x = arc4random(1) + void *x = arc4random(1); (void)x ; return 0; } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:34183: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:34307: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:34186: \$? = $ac_status" >&5 + echo "$as_me:34310: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:34189: \"$ac_try\"") >&5 + { (eval echo "$as_me:34313: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:34192: \$? = $ac_status" >&5 + echo "$as_me:34316: \$? = $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 34199 "configure" +#line 34323 "configure" #include "confdefs.h" #include <bsd/random.h> int main (void) { -unsigned x = arc4random() +unsigned x = arc4random(); (void)x ; return 0; } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:34211: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:34335: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:34214: \$? = $ac_status" >&5 + echo "$as_me:34338: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:34217: \"$ac_try\"") >&5 + { (eval echo "$as_me:34341: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:34220: \$? = $ac_status" >&5 + echo "$as_me:34344: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_bsd_random_h=yes else @@ -34228,7 +34352,7 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi rm -f conftest.$ac_objext conftest.$ac_ext - echo "$as_me:34231: result: $cf_bsd_random_h" >&5 + echo "$as_me:34355: result: $cf_bsd_random_h" >&5 echo "${ECHO_T}$cf_bsd_random_h" >&6 if test "$cf_bsd_random_h" = yes then @@ -34238,7 +34362,7 @@ cat >>confdefs.h <<\EOF EOF else - { echo "$as_me:34241: WARNING: no header file found for arc4random" >&5 + { echo "$as_me:34365: WARNING: no header file found for arc4random" >&5 echo "$as_me: WARNING: no header file found for arc4random" >&2;} fi fi @@ -34273,13 +34397,13 @@ fi for ac_func in sleep do -echo "$as_me:34276: checking for $ac_func declaration" >&5 +echo "$as_me:34400: 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 34282 "configure" +#line 34406 "configure" #include "confdefs.h" #ifdef HAVE_STDLIB_H @@ -34300,20 +34424,20 @@ extern int $ac_func(); } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:34303: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:34427: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:34306: \$? = $ac_status" >&5 + echo "$as_me:34430: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:34309: \"$ac_try\"") >&5 + { (eval echo "$as_me:34433: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:34312: \$? = $ac_status" >&5 + echo "$as_me:34436: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cat >conftest.$ac_ext <<_ACEOF -#line 34316 "configure" +#line 34440 "configure" #include "confdefs.h" #ifdef HAVE_STDLIB_H @@ -34334,16 +34458,16 @@ int (*p)() = $ac_func; } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:34337: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:34461: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:34340: \$? = $ac_status" >&5 + echo "$as_me:34464: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:34343: \"$ac_try\"") >&5 + { (eval echo "$as_me:34467: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:34346: \$? = $ac_status" >&5 + echo "$as_me:34470: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "ac_cv_func_decl_$ac_func=yes" @@ -34364,11 +34488,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:34367: result: yes" >&5 + echo "$as_me:34491: result: yes" >&5 echo "${ECHO_T}yes" >&6 : else - echo "$as_me:34371: result: no" >&5 + echo "$as_me:34495: result: no" >&5 echo "${ECHO_T}no" >&6 ac_tr_func=`echo "DECL_$ac_func" | sed y%abcdefghijklmnopqrstuvwxyz./-%ABCDEFGHIJKLMNOPQRSTUVWXYZ___%` @@ -34383,13 +34507,13 @@ done for ac_func in strstr do -echo "$as_me:34386: checking for $ac_func declaration" >&5 +echo "$as_me:34510: 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 34392 "configure" +#line 34516 "configure" #include "confdefs.h" #include <string.h> int @@ -34403,20 +34527,20 @@ extern int $ac_func(); } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:34406: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:34530: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:34409: \$? = $ac_status" >&5 + echo "$as_me:34533: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:34412: \"$ac_try\"") >&5 + { (eval echo "$as_me:34536: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:34415: \$? = $ac_status" >&5 + echo "$as_me:34539: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cat >conftest.$ac_ext <<_ACEOF -#line 34419 "configure" +#line 34543 "configure" #include "confdefs.h" #include <string.h> int @@ -34430,16 +34554,16 @@ int (*p)() = $ac_func; } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:34433: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:34557: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:34436: \$? = $ac_status" >&5 + echo "$as_me:34560: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:34439: \"$ac_try\"") >&5 + { (eval echo "$as_me:34563: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:34442: \$? = $ac_status" >&5 + echo "$as_me:34566: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "ac_cv_func_decl_$ac_func=yes" @@ -34460,11 +34584,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:34463: result: yes" >&5 + echo "$as_me:34587: result: yes" >&5 echo "${ECHO_T}yes" >&6 : else - echo "$as_me:34467: result: no" >&5 + echo "$as_me:34591: result: no" >&5 echo "${ECHO_T}no" >&6 ac_tr_func=`echo "DECL_$ac_func" | sed y%abcdefghijklmnopqrstuvwxyz./-%ABCDEFGHIJKLMNOPQRSTUVWXYZ___%` @@ -34479,13 +34603,13 @@ done for ac_func in getgrgid getgrnam do -echo "$as_me:34482: checking for $ac_func declaration" >&5 +echo "$as_me:34606: 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 34488 "configure" +#line 34612 "configure" #include "confdefs.h" #include <stdio.h> @@ -34501,20 +34625,20 @@ extern int $ac_func(); } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:34504: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:34628: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:34507: \$? = $ac_status" >&5 + echo "$as_me:34631: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:34510: \"$ac_try\"") >&5 + { (eval echo "$as_me:34634: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:34513: \$? = $ac_status" >&5 + echo "$as_me:34637: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cat >conftest.$ac_ext <<_ACEOF -#line 34517 "configure" +#line 34641 "configure" #include "confdefs.h" #include <stdio.h> @@ -34530,16 +34654,16 @@ int (*p)() = $ac_func; } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:34533: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:34657: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:34536: \$? = $ac_status" >&5 + echo "$as_me:34660: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:34539: \"$ac_try\"") >&5 + { (eval echo "$as_me:34663: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:34542: \$? = $ac_status" >&5 + echo "$as_me:34666: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "ac_cv_func_decl_$ac_func=yes" @@ -34560,11 +34684,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:34563: result: yes" >&5 + echo "$as_me:34687: result: yes" >&5 echo "${ECHO_T}yes" >&6 : else - echo "$as_me:34567: result: no" >&5 + echo "$as_me:34691: result: no" >&5 echo "${ECHO_T}no" >&6 ac_tr_func=`echo "DECL_$ac_func" | sed y%abcdefghijklmnopqrstuvwxyz./-%ABCDEFGHIJKLMNOPQRSTUVWXYZ___%` @@ -34576,14 +34700,14 @@ EOF fi done -echo "$as_me:34579: checking if TRUE/FALSE are defined" >&5 +echo "$as_me:34703: 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 34586 "configure" +#line 34710 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> @@ -34597,16 +34721,16 @@ int x = TRUE, y = FALSE } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:34600: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:34724: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:34603: \$? = $ac_status" >&5 + echo "$as_me:34727: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:34606: \"$ac_try\"") >&5 + { (eval echo "$as_me:34730: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:34609: \$? = $ac_status" >&5 + echo "$as_me:34733: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_bool_defs=yes else @@ -34617,7 +34741,7 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:34620: result: $cf_cv_bool_defs" >&5 +echo "$as_me:34744: result: $cf_cv_bool_defs" >&5 echo "${ECHO_T}$cf_cv_bool_defs" >&6 if test "$cf_cv_bool_defs" = no ; then @@ -34631,14 +34755,14 @@ EOF fi -echo "$as_me:34634: checking if external errno is declared" >&5 +echo "$as_me:34758: 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 34641 "configure" +#line 34765 "configure" #include "confdefs.h" #ifdef HAVE_STDLIB_H @@ -34656,16 +34780,16 @@ int x = (int) errno; (void)x } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:34659: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:34783: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:34662: \$? = $ac_status" >&5 + echo "$as_me:34786: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:34665: \"$ac_try\"") >&5 + { (eval echo "$as_me:34789: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:34668: \$? = $ac_status" >&5 + echo "$as_me:34792: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_dcl_errno=yes else @@ -34676,7 +34800,7 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:34679: result: $cf_cv_dcl_errno" >&5 +echo "$as_me:34803: result: $cf_cv_dcl_errno" >&5 echo "${ECHO_T}$cf_cv_dcl_errno" >&6 if test "$cf_cv_dcl_errno" = no ; then @@ -34691,14 +34815,14 @@ fi # It's possible (for near-UNIX clones) that the data doesn't exist -echo "$as_me:34694: checking if external errno exists" >&5 +echo "$as_me:34818: 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 34701 "configure" +#line 34825 "configure" #include "confdefs.h" #undef errno @@ -34713,16 +34837,16 @@ errno = 2 } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:34716: \"$ac_link\"") >&5 +if { (eval echo "$as_me:34840: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:34719: \$? = $ac_status" >&5 + echo "$as_me:34843: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:34722: \"$ac_try\"") >&5 + { (eval echo "$as_me:34846: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:34725: \$? = $ac_status" >&5 + echo "$as_me:34849: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_have_errno=yes else @@ -34733,7 +34857,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:34736: result: $cf_cv_have_errno" >&5 +echo "$as_me:34860: result: $cf_cv_have_errno" >&5 echo "${ECHO_T}$cf_cv_have_errno" >&6 if test "$cf_cv_have_errno" = yes ; then @@ -34746,7 +34870,7 @@ EOF fi -echo "$as_me:34749: checking if we can set errno" >&5 +echo "$as_me:34873: 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 @@ -34754,7 +34878,7 @@ else if test "$cross_compiling" = yes; then cat >conftest.$ac_ext <<_ACEOF -#line 34757 "configure" +#line 34881 "configure" #include "confdefs.h" #include <errno.h> int @@ -34766,16 +34890,16 @@ errno = 255 } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:34769: \"$ac_link\"") >&5 +if { (eval echo "$as_me:34893: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:34772: \$? = $ac_status" >&5 + echo "$as_me:34896: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:34775: \"$ac_try\"") >&5 + { (eval echo "$as_me:34899: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:34778: \$? = $ac_status" >&5 + echo "$as_me:34902: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_set_errno=maybe else @@ -34786,7 +34910,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext else cat >conftest.$ac_ext <<_ACEOF -#line 34789 "configure" +#line 34913 "configure" #include "confdefs.h" #include <errno.h> @@ -34797,15 +34921,15 @@ int main(void) } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:34800: \"$ac_link\"") >&5 +if { (eval echo "$as_me:34924: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:34803: \$? = $ac_status" >&5 + echo "$as_me:34927: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:34805: \"$ac_try\"") >&5 + { (eval echo "$as_me:34929: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:34808: \$? = $ac_status" >&5 + echo "$as_me:34932: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_set_errno=yes else @@ -34818,21 +34942,21 @@ rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext fi fi -echo "$as_me:34821: result: $cf_cv_set_errno" >&5 +echo "$as_me:34945: 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:34828: checking for setlocale()" >&5 +echo "$as_me:34952: 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 34835 "configure" +#line 34959 "configure" #include "confdefs.h" #include <locale.h> int @@ -34844,16 +34968,16 @@ setlocale(LC_ALL, "") } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:34847: \"$ac_link\"") >&5 +if { (eval echo "$as_me:34971: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:34850: \$? = $ac_status" >&5 + echo "$as_me:34974: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:34853: \"$ac_try\"") >&5 + { (eval echo "$as_me:34977: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:34856: \$? = $ac_status" >&5 + echo "$as_me:34980: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_locale=yes else @@ -34865,7 +34989,7 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:34868: result: $cf_cv_locale" >&5 +echo "$as_me:34992: result: $cf_cv_locale" >&5 echo "${ECHO_T}$cf_cv_locale" >&6 test $cf_cv_locale = yes && { cat >>confdefs.h <<\EOF @@ -34873,14 +34997,14 @@ cat >>confdefs.h <<\EOF EOF } -echo "$as_me:34876: checking if NGROUPS is defined" >&5 +echo "$as_me:35000: 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 34883 "configure" +#line 35007 "configure" #include "confdefs.h" #if HAVE_SYS_PARAM_H @@ -34899,23 +35023,23 @@ int x = NGROUPS } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:34902: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:35026: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:34905: \$? = $ac_status" >&5 + echo "$as_me:35029: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:34908: \"$ac_try\"") >&5 + { (eval echo "$as_me:35032: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:34911: \$? = $ac_status" >&5 + echo "$as_me:35035: \$? = $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 34918 "configure" +#line 35042 "configure" #include "confdefs.h" #if HAVE_SYS_PARAM_H @@ -34934,16 +35058,16 @@ int x = NGROUPS_MAX } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:34937: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:35061: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:34940: \$? = $ac_status" >&5 + echo "$as_me:35064: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:34943: \"$ac_try\"") >&5 + { (eval echo "$as_me:35067: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:34946: \$? = $ac_status" >&5 + echo "$as_me:35070: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_ngroups=NGROUPS_MAX else @@ -34955,7 +35079,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext fi rm -f conftest.$ac_objext conftest.$ac_ext -echo "$as_me:34958: result: $cf_cv_ngroups" >&5 +echo "$as_me:35082: result: $cf_cv_ngroups" >&5 echo "${ECHO_T}$cf_cv_ngroups" >&6 fi @@ -34973,14 +35097,14 @@ EOF fi -echo "$as_me:34976: checking if external sys_nerr is declared" >&5 +echo "$as_me:35100: 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 34983 "configure" +#line 35107 "configure" #include "confdefs.h" #ifdef HAVE_STDLIB_H @@ -34998,16 +35122,16 @@ int x = (int) sys_nerr; (void)x } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:35001: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:35125: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:35004: \$? = $ac_status" >&5 + echo "$as_me:35128: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:35007: \"$ac_try\"") >&5 + { (eval echo "$as_me:35131: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:35010: \$? = $ac_status" >&5 + echo "$as_me:35134: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_dcl_sys_nerr=yes else @@ -35018,7 +35142,7 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:35021: result: $cf_cv_dcl_sys_nerr" >&5 +echo "$as_me:35145: 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 @@ -35033,14 +35157,14 @@ fi # It's possible (for near-UNIX clones) that the data doesn't exist -echo "$as_me:35036: checking if external sys_nerr exists" >&5 +echo "$as_me:35160: 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 35043 "configure" +#line 35167 "configure" #include "confdefs.h" #undef sys_nerr @@ -35055,16 +35179,16 @@ sys_nerr = 2 } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:35058: \"$ac_link\"") >&5 +if { (eval echo "$as_me:35182: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:35061: \$? = $ac_status" >&5 + echo "$as_me:35185: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:35064: \"$ac_try\"") >&5 + { (eval echo "$as_me:35188: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:35067: \$? = $ac_status" >&5 + echo "$as_me:35191: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_have_sys_nerr=yes else @@ -35075,7 +35199,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:35078: result: $cf_cv_have_sys_nerr" >&5 +echo "$as_me:35202: 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 @@ -35088,14 +35212,14 @@ EOF fi -echo "$as_me:35091: checking if external sys_errlist is declared" >&5 +echo "$as_me:35215: 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 35098 "configure" +#line 35222 "configure" #include "confdefs.h" #ifdef HAVE_STDLIB_H @@ -35113,16 +35237,16 @@ int x = (int) sys_errlist; (void)x } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:35116: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:35240: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:35119: \$? = $ac_status" >&5 + echo "$as_me:35243: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:35122: \"$ac_try\"") >&5 + { (eval echo "$as_me:35246: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:35125: \$? = $ac_status" >&5 + echo "$as_me:35249: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_dcl_sys_errlist=yes else @@ -35133,7 +35257,7 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:35136: result: $cf_cv_dcl_sys_errlist" >&5 +echo "$as_me:35260: 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 @@ -35148,14 +35272,14 @@ fi # It's possible (for near-UNIX clones) that the data doesn't exist -echo "$as_me:35151: checking if external sys_errlist exists" >&5 +echo "$as_me:35275: 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 35158 "configure" +#line 35282 "configure" #include "confdefs.h" #undef sys_errlist @@ -35170,16 +35294,16 @@ sys_errlist = 2 } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:35173: \"$ac_link\"") >&5 +if { (eval echo "$as_me:35297: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:35176: \$? = $ac_status" >&5 + echo "$as_me:35300: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:35179: \"$ac_try\"") >&5 + { (eval echo "$as_me:35303: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:35182: \$? = $ac_status" >&5 + echo "$as_me:35306: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_have_sys_errlist=yes else @@ -35190,7 +35314,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:35193: result: $cf_cv_have_sys_errlist" >&5 +echo "$as_me:35317: 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 @@ -35206,23 +35330,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:35209: checking for $ac_header" >&5 +echo "$as_me:35333: 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 35215 "configure" +#line 35339 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:35219: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:35343: \"$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:35225: \$? = $ac_status" >&5 + echo "$as_me:35349: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -35241,7 +35365,7 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:35244: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:35368: 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 @@ -35251,14 +35375,14 @@ EOF fi done -echo "$as_me:35254: checking for lastlog path" >&5 +echo "$as_me:35378: 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 35261 "configure" +#line 35385 "configure" #include "confdefs.h" #include <sys/types.h> @@ -35278,16 +35402,16 @@ char *path = _PATH_LASTLOG; (void)path } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:35281: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:35405: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:35284: \$? = $ac_status" >&5 + echo "$as_me:35408: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:35287: \"$ac_try\"") >&5 + { (eval echo "$as_me:35411: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:35290: \$? = $ac_status" >&5 + echo "$as_me:35414: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_path_lastlog="_PATH_LASTLOG" else @@ -35302,14 +35426,14 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:35305: result: $cf_cv_path_lastlog" >&5 +echo "$as_me:35429: 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:35312: checking for utmp implementation" >&5 +echo "$as_me:35436: 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 @@ -35326,7 +35450,7 @@ cf_utmp_includes=" #endif " cat >conftest.$ac_ext <<_ACEOF -#line 35329 "configure" +#line 35453 "configure" #include "confdefs.h" $cf_utmp_includes int @@ -35342,16 +35466,16 @@ struct $cf_header x; } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:35345: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:35469: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:35348: \$? = $ac_status" >&5 + echo "$as_me:35472: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:35351: \"$ac_try\"") >&5 + { (eval echo "$as_me:35475: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:35354: \$? = $ac_status" >&5 + echo "$as_me:35478: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_have_utmp=$cf_header break @@ -35360,7 +35484,7 @@ else cat conftest.$ac_ext >&5 cat >conftest.$ac_ext <<_ACEOF -#line 35363 "configure" +#line 35487 "configure" #include "confdefs.h" $cf_utmp_includes int @@ -35376,16 +35500,16 @@ struct $cf_header x; } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:35379: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:35503: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:35382: \$? = $ac_status" >&5 + echo "$as_me:35506: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:35385: \"$ac_try\"") >&5 + { (eval echo "$as_me:35509: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:35388: \$? = $ac_status" >&5 + echo "$as_me:35512: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_have_utmp=$cf_header break @@ -35400,7 +35524,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext done fi -echo "$as_me:35403: result: $cf_cv_have_utmp" >&5 +echo "$as_me:35527: result: $cf_cv_have_utmp" >&5 echo "${ECHO_T}$cf_cv_have_utmp" >&6 if test $cf_cv_have_utmp != no ; then @@ -35415,14 +35539,14 @@ cat >>confdefs.h <<\EOF EOF if test $cf_cv_have_utmp != no ; then -echo "$as_me:35418: checking if ${cf_cv_have_utmp}.ut_host is declared" >&5 +echo "$as_me:35542: 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 35425 "configure" +#line 35549 "configure" #include "confdefs.h" #include <sys/types.h> @@ -35439,16 +35563,16 @@ struct $cf_cv_have_utmp x; } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:35442: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:35566: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:35445: \$? = $ac_status" >&5 + echo "$as_me:35569: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:35448: \"$ac_try\"") >&5 + { (eval echo "$as_me:35572: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:35451: \$? = $ac_status" >&5 + echo "$as_me:35575: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_have_utmp_ut_host=yes else @@ -35460,7 +35584,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:35463: result: $cf_cv_have_utmp_ut_host" >&5 +echo "$as_me:35587: 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 @@ -35470,14 +35594,14 @@ EOF fi if test $cf_cv_have_utmp != no ; then -echo "$as_me:35473: checking if ${cf_cv_have_utmp}.ut_syslen is declared" >&5 +echo "$as_me:35597: 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 35480 "configure" +#line 35604 "configure" #include "confdefs.h" #include <sys/types.h> @@ -35494,16 +35618,16 @@ struct $cf_cv_have_utmp x; } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:35497: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:35621: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:35500: \$? = $ac_status" >&5 + echo "$as_me:35624: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:35503: \"$ac_try\"") >&5 + { (eval echo "$as_me:35627: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:35506: \$? = $ac_status" >&5 + echo "$as_me:35630: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_have_utmp_ut_syslen=yes else @@ -35515,7 +35639,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:35518: result: $cf_cv_have_utmp_ut_syslen" >&5 +echo "$as_me:35642: 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 @@ -35525,7 +35649,7 @@ EOF fi if test $cf_cv_have_utmp != no ; then -echo "$as_me:35528: checking if ${cf_cv_have_utmp}.ut_name is declared" >&5 +echo "$as_me:35652: 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 @@ -35542,7 +35666,7 @@ cf_utmp_includes=" " for cf_header in ut_name ut_user ; do cat >conftest.$ac_ext <<_ACEOF -#line 35545 "configure" +#line 35669 "configure" #include "confdefs.h" $cf_utmp_includes int @@ -35558,16 +35682,16 @@ struct $cf_cv_have_utmp x; } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:35561: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:35685: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:35564: \$? = $ac_status" >&5 + echo "$as_me:35688: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:35567: \"$ac_try\"") >&5 + { (eval echo "$as_me:35691: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:35570: \$? = $ac_status" >&5 + echo "$as_me:35694: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_have_utmp_ut_name=$cf_header break @@ -35579,12 +35703,12 @@ rm -f conftest.$ac_objext conftest.$ac_ext done fi -echo "$as_me:35582: result: $cf_cv_have_utmp_ut_name" >&5 +echo "$as_me:35706: result: $cf_cv_have_utmp_ut_name" >&5 echo "${ECHO_T}$cf_cv_have_utmp_ut_name" >&6 case $cf_cv_have_utmp_ut_name in (no) - { { echo "$as_me:35587: error: Cannot find declaration for ut.ut_name" >&5 + { { echo "$as_me:35711: 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; }; } ;; @@ -35599,7 +35723,7 @@ esac fi if test $cf_cv_have_utmp != no ; then -echo "$as_me:35602: checking for exit-status in $cf_cv_have_utmp" >&5 +echo "$as_me:35726: 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 @@ -35612,7 +35736,7 @@ for cf_result in \ ut_exit.ut_exit do cat >conftest.$ac_ext <<_ACEOF -#line 35615 "configure" +#line 35739 "configure" #include "confdefs.h" #include <sys/types.h> @@ -35629,16 +35753,16 @@ struct $cf_cv_have_utmp x; } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:35632: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:35756: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:35635: \$? = $ac_status" >&5 + echo "$as_me:35759: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:35638: \"$ac_try\"") >&5 + { (eval echo "$as_me:35762: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:35641: \$? = $ac_status" >&5 + echo "$as_me:35765: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_have_utmp_ut_xstatus=$cf_result break @@ -35651,7 +35775,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext done fi -echo "$as_me:35654: result: $cf_cv_have_utmp_ut_xstatus" >&5 +echo "$as_me:35778: 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 @@ -35667,14 +35791,14 @@ fi fi if test $cf_cv_have_utmp != no ; then -echo "$as_me:35670: checking if ${cf_cv_have_utmp}.ut_xtime is declared" >&5 +echo "$as_me:35794: 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 35677 "configure" +#line 35801 "configure" #include "confdefs.h" #include <sys/types.h> @@ -35691,23 +35815,23 @@ struct $cf_cv_have_utmp x; } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:35694: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:35818: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:35697: \$? = $ac_status" >&5 + echo "$as_me:35821: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:35700: \"$ac_try\"") >&5 + { (eval echo "$as_me:35824: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:35703: \$? = $ac_status" >&5 + echo "$as_me:35827: \$? = $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 35710 "configure" +#line 35834 "configure" #include "confdefs.h" #include <sys/types.h> @@ -35724,16 +35848,16 @@ struct $cf_cv_have_utmp x; } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:35727: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:35851: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:35730: \$? = $ac_status" >&5 + echo "$as_me:35854: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:35733: \"$ac_try\"") >&5 + { (eval echo "$as_me:35857: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:35736: \$? = $ac_status" >&5 + echo "$as_me:35860: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_have_utmp_ut_xtime=define else @@ -35747,7 +35871,7 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:35750: result: $cf_cv_have_utmp_ut_xtime" >&5 +echo "$as_me:35874: 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 @@ -35766,14 +35890,14 @@ fi fi if test $cf_cv_have_utmp != no ; then -echo "$as_me:35769: checking if ${cf_cv_have_utmp}.ut_session is declared" >&5 +echo "$as_me:35893: 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 35776 "configure" +#line 35900 "configure" #include "confdefs.h" #include <sys/types.h> @@ -35790,16 +35914,16 @@ struct $cf_cv_have_utmp x; } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:35793: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:35917: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:35796: \$? = $ac_status" >&5 + echo "$as_me:35920: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:35799: \"$ac_try\"") >&5 + { (eval echo "$as_me:35923: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:35802: \$? = $ac_status" >&5 + echo "$as_me:35926: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_have_utmp_ut_session=yes else @@ -35810,7 +35934,7 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:35813: result: $cf_cv_have_utmp_ut_session" >&5 +echo "$as_me:35937: 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 @@ -35821,7 +35945,7 @@ EOF fi fi -echo "$as_me:35824: checking if $cf_cv_have_utmp is SYSV flavor" >&5 +echo "$as_me:35948: 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 @@ -35829,7 +35953,7 @@ else test "$cf_cv_have_utmp" = "utmp" && cf_prefix="ut" || cf_prefix="utx" cat >conftest.$ac_ext <<_ACEOF -#line 35832 "configure" +#line 35956 "configure" #include "confdefs.h" #include <sys/types.h> @@ -35848,16 +35972,16 @@ struct $cf_cv_have_utmp x; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:35851: \"$ac_link\"") >&5 +if { (eval echo "$as_me:35975: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:35854: \$? = $ac_status" >&5 + echo "$as_me:35978: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:35857: \"$ac_try\"") >&5 + { (eval echo "$as_me:35981: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:35860: \$? = $ac_status" >&5 + echo "$as_me:35984: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_sysv_utmp=yes else @@ -35868,7 +35992,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:35871: result: $cf_cv_sysv_utmp" >&5 +echo "$as_me:35995: result: $cf_cv_sysv_utmp" >&5 echo "${ECHO_T}$cf_cv_sysv_utmp" >&6 test $cf_cv_sysv_utmp = yes && cat >>confdefs.h <<\EOF @@ -35877,14 +36001,14 @@ EOF fi -echo "$as_me:35880: checking if external h_errno exists" >&5 +echo "$as_me:36004: 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 35887 "configure" +#line 36011 "configure" #include "confdefs.h" #undef h_errno @@ -35899,16 +36023,16 @@ h_errno = 2 } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:35902: \"$ac_link\"") >&5 +if { (eval echo "$as_me:36026: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:35905: \$? = $ac_status" >&5 + echo "$as_me:36029: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:35908: \"$ac_try\"") >&5 + { (eval echo "$as_me:36032: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:35911: \$? = $ac_status" >&5 + echo "$as_me:36035: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_have_h_errno=yes else @@ -35919,7 +36043,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:35922: result: $cf_cv_have_h_errno" >&5 +echo "$as_me:36046: 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 @@ -35932,7 +36056,7 @@ EOF fi -echo "$as_me:35935: checking if bibp: URLs should be supported" >&5 +echo "$as_me:36059: 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. @@ -35949,14 +36073,14 @@ else use_bibp_urls=yes fi; -echo "$as_me:35952: result: $use_bibp_urls" >&5 +echo "$as_me:36076: 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:35959: checking if configuration info should be browsable" >&5 +echo "$as_me:36083: 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. @@ -35973,14 +36097,14 @@ else use_config_info=yes fi; -echo "$as_me:35976: result: $use_config_info" >&5 +echo "$as_me:36100: 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:35983: checking if new-style forms-based options screen should be used" >&5 +echo "$as_me:36107: 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. @@ -35997,14 +36121,14 @@ else use_forms_options=yes fi; -echo "$as_me:36000: result: $use_forms_options" >&5 +echo "$as_me:36124: 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:36007: checking if old-style options menu should be used" >&5 +echo "$as_me:36131: 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. @@ -36021,14 +36145,14 @@ else use_menu_options=yes fi; -echo "$as_me:36024: result: $use_menu_options" >&5 +echo "$as_me:36148: 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:36031: checking if sessions code should be used" >&5 +echo "$as_me:36155: 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. @@ -36045,7 +36169,7 @@ else use_sessions=yes fi; -echo "$as_me:36048: result: $use_sessions" >&5 +echo "$as_me:36172: result: $use_sessions" >&5 echo "${ECHO_T}$use_sessions" >&6 if test $use_sessions != no ; then @@ -36056,7 +36180,7 @@ EOF EXTRA_OBJS="$EXTRA_OBJS LYSession\$o" fi -echo "$as_me:36059: checking if session-caching code should be used" >&5 +echo "$as_me:36183: 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. @@ -36073,7 +36197,7 @@ else use_session_cache=yes fi; -echo "$as_me:36076: result: $use_session_cache" >&5 +echo "$as_me:36200: result: $use_session_cache" >&5 echo "${ECHO_T}$use_session_cache" >&6 if test $use_session_cache != no ; then @@ -36083,7 +36207,7 @@ EOF fi -echo "$as_me:36086: checking if address-list page should be used" >&5 +echo "$as_me:36210: 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. @@ -36100,14 +36224,14 @@ else use_addrlist_page=yes fi; -echo "$as_me:36103: result: $use_addrlist_page" >&5 +echo "$as_me:36227: 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:36110: checking if experimental CJK logic should be used" >&5 +echo "$as_me:36234: 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. @@ -36124,14 +36248,14 @@ else use_cjk=no fi; -echo "$as_me:36127: result: $use_cjk" >&5 +echo "$as_me:36251: 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:36134: checking if experimental Japanese UTF-8 logic should be used" >&5 +echo "$as_me:36258: 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. @@ -36148,7 +36272,7 @@ else use_ja_utf8=no fi; -echo "$as_me:36151: result: $use_ja_utf8" >&5 +echo "$as_me:36275: result: $use_ja_utf8" >&5 echo "${ECHO_T}$use_ja_utf8" >&6 if test $use_ja_utf8 != no ; then @@ -36197,7 +36321,7 @@ if test -n "$cf_searchpath/include" ; then CPPFLAGS="${CPPFLAGS}-I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 36200 "configure" +#line 36324 "configure" #include "confdefs.h" #include <stdio.h> int @@ -36209,16 +36333,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:36212: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:36336: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:36215: \$? = $ac_status" >&5 + echo "$as_me:36339: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:36218: \"$ac_try\"") >&5 + { (eval echo "$as_me:36342: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:36221: \$? = $ac_status" >&5 + echo "$as_me:36345: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -36235,7 +36359,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}:36238: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:36362: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -36281,7 +36405,7 @@ if test -n "$cf_searchpath/../include" ; then CPPFLAGS="${CPPFLAGS}-I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 36284 "configure" +#line 36408 "configure" #include "confdefs.h" #include <stdio.h> int @@ -36293,16 +36417,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:36296: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:36420: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:36299: \$? = $ac_status" >&5 + echo "$as_me:36423: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:36302: \"$ac_try\"") >&5 + { (eval echo "$as_me:36426: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:36305: \$? = $ac_status" >&5 + echo "$as_me:36429: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -36319,7 +36443,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}:36322: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:36446: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -36337,7 +36461,7 @@ echo "${as_me:-configure}:36322: testing adding $cf_add_incdir to include-path . fi else -{ { echo "$as_me:36340: error: cannot find libiconv under $withval" >&5 +{ { echo "$as_me:36464: error: cannot find libiconv under $withval" >&5 echo "$as_me: error: cannot find libiconv under $withval" >&2;} { (exit 1); exit 1; }; } fi @@ -36362,7 +36486,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}:36365: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:36489: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -36391,7 +36515,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}:36394: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:36518: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -36400,7 +36524,7 @@ echo "${as_me:-configure}:36394: testing adding $cf_add_libdir to library-path . fi else -{ { echo "$as_me:36403: error: cannot find libiconv under $withval" >&5 +{ { echo "$as_me:36527: error: cannot find libiconv under $withval" >&5 echo "$as_me: error: cannot find libiconv under $withval" >&2;} { (exit 1); exit 1; }; } fi @@ -36411,7 +36535,7 @@ esac fi; - echo "$as_me:36414: checking for iconv" >&5 + echo "$as_me:36538: 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 @@ -36422,12 +36546,12 @@ else cf_cv_header_path_iconv= cf_cv_library_path_iconv= -echo "${as_me:-configure}:36425: testing Starting FIND_LINKAGE(iconv,) ..." 1>&5 +echo "${as_me:-configure}:36549: testing Starting FIND_LINKAGE(iconv,) ..." 1>&5 cf_save_LIBS="$LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 36430 "configure" +#line 36554 "configure" #include "confdefs.h" #include <stdlib.h> @@ -36446,16 +36570,16 @@ main (void) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:36449: \"$ac_link\"") >&5 +if { (eval echo "$as_me:36573: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:36452: \$? = $ac_status" >&5 + echo "$as_me:36576: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:36455: \"$ac_try\"") >&5 + { (eval echo "$as_me:36579: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:36458: \$? = $ac_status" >&5 + echo "$as_me:36582: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_find_linkage_iconv=yes @@ -36469,7 +36593,7 @@ cat conftest.$ac_ext >&5 LIBS="-liconv $cf_save_LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 36472 "configure" +#line 36596 "configure" #include "confdefs.h" #include <stdlib.h> @@ -36488,16 +36612,16 @@ main (void) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:36491: \"$ac_link\"") >&5 +if { (eval echo "$as_me:36615: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:36494: \$? = $ac_status" >&5 + echo "$as_me:36618: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:36497: \"$ac_try\"") >&5 + { (eval echo "$as_me:36621: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:36500: \$? = $ac_status" >&5 + echo "$as_me:36624: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_find_linkage_iconv=yes @@ -36514,9 +36638,9 @@ cat conftest.$ac_ext >&5 test -n "$verbose" && echo " find linkage for iconv library" 1>&6 -echo "${as_me:-configure}:36517: testing find linkage for iconv library ..." 1>&5 +echo "${as_me:-configure}:36641: testing find linkage for iconv library ..." 1>&5 -echo "${as_me:-configure}:36519: testing Searching for headers in FIND_LINKAGE(iconv,) ..." 1>&5 +echo "${as_me:-configure}:36643: testing Searching for headers in FIND_LINKAGE(iconv,) ..." 1>&5 cf_save_CPPFLAGS="$CPPFLAGS" cf_test_CPPFLAGS="$CPPFLAGS" @@ -36607,7 +36731,7 @@ cf_search="$cf_search $cf_header_path_list" if test -d $cf_cv_header_path_iconv ; then test -n "$verbose" && echo " ... testing $cf_cv_header_path_iconv" 1>&6 -echo "${as_me:-configure}:36610: testing ... testing $cf_cv_header_path_iconv ..." 1>&5 +echo "${as_me:-configure}:36734: testing ... testing $cf_cv_header_path_iconv ..." 1>&5 CPPFLAGS="$cf_save_CPPFLAGS" @@ -36615,7 +36739,7 @@ echo "${as_me:-configure}:36610: testing ... testing $cf_cv_header_path_iconv .. CPPFLAGS="${CPPFLAGS}-I$cf_cv_header_path_iconv" cat >conftest.$ac_ext <<_ACEOF -#line 36618 "configure" +#line 36742 "configure" #include "confdefs.h" #include <stdlib.h> @@ -36634,21 +36758,21 @@ main (void) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:36637: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:36761: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:36640: \$? = $ac_status" >&5 + echo "$as_me:36764: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:36643: \"$ac_try\"") >&5 + { (eval echo "$as_me:36767: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:36646: \$? = $ac_status" >&5 + echo "$as_me:36770: \$? = $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}:36651: testing ... found iconv headers in $cf_cv_header_path_iconv ..." 1>&5 +echo "${as_me:-configure}:36775: testing ... found iconv headers in $cf_cv_header_path_iconv ..." 1>&5 cf_cv_find_linkage_iconv=maybe cf_test_CPPFLAGS="$CPPFLAGS" @@ -36666,7 +36790,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "$cf_cv_find_linkage_iconv" = maybe ; then -echo "${as_me:-configure}:36669: testing Searching for iconv library in FIND_LINKAGE(iconv,) ..." 1>&5 +echo "${as_me:-configure}:36793: testing Searching for iconv library in FIND_LINKAGE(iconv,) ..." 1>&5 cf_save_LIBS="$LIBS" cf_save_LDFLAGS="$LDFLAGS" @@ -36741,13 +36865,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}:36744: testing ... testing $cf_cv_library_path_iconv ..." 1>&5 +echo "${as_me:-configure}:36868: 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 36750 "configure" +#line 36874 "configure" #include "confdefs.h" #include <stdlib.h> @@ -36766,21 +36890,21 @@ main (void) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:36769: \"$ac_link\"") >&5 +if { (eval echo "$as_me:36893: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:36772: \$? = $ac_status" >&5 + echo "$as_me:36896: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:36775: \"$ac_try\"") >&5 + { (eval echo "$as_me:36899: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:36778: \$? = $ac_status" >&5 + echo "$as_me:36902: \$? = $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}:36783: testing ... found iconv library in $cf_cv_library_path_iconv ..." 1>&5 +echo "${as_me:-configure}:36907: testing ... found iconv library in $cf_cv_library_path_iconv ..." 1>&5 cf_cv_find_linkage_iconv=yes cf_cv_library_file_iconv="-liconv" @@ -36820,7 +36944,7 @@ am_cv_func_iconv="no, consider installing GNU libiconv" fi fi -echo "$as_me:36823: result: $am_cv_func_iconv" >&5 +echo "$as_me:36947: result: $am_cv_func_iconv" >&5 echo "${ECHO_T}$am_cv_func_iconv" >&6 if test "$am_cv_func_iconv" = yes; then @@ -36829,14 +36953,14 @@ cat >>confdefs.h <<\EOF #define HAVE_ICONV 1 EOF - echo "$as_me:36832: checking if the declaration of iconv() needs const." >&5 + echo "$as_me:36956: 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 36839 "configure" +#line 36963 "configure" #include "confdefs.h" #include <stdlib.h> @@ -36861,16 +36985,16 @@ main (void) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:36864: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:36988: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:36867: \$? = $ac_status" >&5 + echo "$as_me:36991: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:36870: \"$ac_try\"") >&5 + { (eval echo "$as_me:36994: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:36873: \$? = $ac_status" >&5 + echo "$as_me:36997: \$? = $ac_status" >&5 (exit $ac_status); }; }; then am_cv_proto_iconv_const=no else @@ -36880,7 +37004,7 @@ am_cv_proto_iconv_const=yes fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:36883: result: $am_cv_proto_iconv_const" >&5 +echo "$as_me:37007: 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 @@ -36925,7 +37049,7 @@ if test -n "$cf_cv_header_path_iconv" ; then CPPFLAGS="${CPPFLAGS}-I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 36928 "configure" +#line 37052 "configure" #include "confdefs.h" #include <stdio.h> int @@ -36937,16 +37061,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:36940: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:37064: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:36943: \$? = $ac_status" >&5 + echo "$as_me:37067: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:36946: \"$ac_try\"") >&5 + { (eval echo "$as_me:37070: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:36949: \$? = $ac_status" >&5 + echo "$as_me:37073: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -36963,7 +37087,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}:36966: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:37090: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -37002,7 +37126,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}:37005: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:37129: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -37018,7 +37142,7 @@ fi fi fi -echo "$as_me:37021: checking if experimental wcwidth/UTF-8 logic should be used" >&5 +echo "$as_me:37145: checking if experimental wcwidth/UTF-8 logic should be used" >&5 echo $ECHO_N "checking if experimental wcwidth/UTF-8 logic should be used... $ECHO_C" >&6 # Check whether --enable-wcwidth-support or --disable-wcwidth-support was given. @@ -37035,7 +37159,7 @@ else use_wcwidth=no fi; -echo "$as_me:37038: result: $use_wcwidth" >&5 +echo "$as_me:37162: result: $use_wcwidth" >&5 echo "${ECHO_T}$use_wcwidth" >&6 test $use_wcwidth != no && cat >>confdefs.h <<\EOF @@ -37050,7 +37174,7 @@ case $cf_cv_screen in esac if test "$use_dft_colors" != no ; then -echo "$as_me:37053: checking if you want to use default-colors" >&5 +echo "$as_me:37177: 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. @@ -37067,7 +37191,7 @@ else use_dft_colors=no fi; -echo "$as_me:37070: result: $use_dft_colors" >&5 +echo "$as_me:37194: result: $use_dft_colors" >&5 echo "${ECHO_T}$use_dft_colors" >&6 test $use_dft_colors = "yes" && cat >>confdefs.h <<\EOF @@ -37076,7 +37200,7 @@ EOF fi -echo "$as_me:37079: checking if experimental keyboard-layout logic should be used" >&5 +echo "$as_me:37203: 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. @@ -37093,14 +37217,14 @@ else use_kbd_layout=no fi; -echo "$as_me:37096: result: $use_kbd_layout" >&5 +echo "$as_me:37220: 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:37103: checking if experimental nested-table logic should be used" >&5 +echo "$as_me:37227: 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. @@ -37117,14 +37241,14 @@ else use_nested_tables=no fi; -echo "$as_me:37120: result: $use_nested_tables" >&5 +echo "$as_me:37244: 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:37127: checking if alternative line-edit bindings should be used" >&5 +echo "$as_me:37251: 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. @@ -37141,14 +37265,14 @@ else use_alt_bindings=yes fi; -echo "$as_me:37144: result: $use_alt_bindings" >&5 +echo "$as_me:37268: 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:37151: checking if ascii case-conversion should be used" >&5 +echo "$as_me:37275: 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. @@ -37165,14 +37289,14 @@ else use_ascii_ctypes=yes fi; -echo "$as_me:37168: result: $use_ascii_ctypes" >&5 +echo "$as_me:37292: 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:37175: checking if you want to use extended HTML DTD logic" >&5 +echo "$as_me:37299: 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. @@ -37189,14 +37313,14 @@ else use_ext_htmldtd=yes fi; -echo "$as_me:37192: result: $use_ext_htmldtd" >&5 +echo "$as_me:37316: 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:37199: checking if file-upload logic should be used" >&5 +echo "$as_me:37323: 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. @@ -37213,14 +37337,14 @@ else use_file_upload=yes fi; -echo "$as_me:37216: result: $use_file_upload" >&5 +echo "$as_me:37340: 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:37223: checking if IDNA support should be used" >&5 +echo "$as_me:37347: 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. @@ -37237,7 +37361,7 @@ else use_idna=yes fi; -echo "$as_me:37240: result: $use_idna" >&5 +echo "$as_me:37364: result: $use_idna" >&5 echo "${ECHO_T}$use_idna" >&6 if test "$use_idna" = yes ; then @@ -37279,7 +37403,7 @@ if test -n "$cf_searchpath/include" ; then CPPFLAGS="${CPPFLAGS}-I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 37282 "configure" +#line 37406 "configure" #include "confdefs.h" #include <stdio.h> int @@ -37291,16 +37415,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:37294: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:37418: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:37297: \$? = $ac_status" >&5 + echo "$as_me:37421: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:37300: \"$ac_try\"") >&5 + { (eval echo "$as_me:37424: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:37303: \$? = $ac_status" >&5 + echo "$as_me:37427: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -37317,7 +37441,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}:37320: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:37444: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -37363,7 +37487,7 @@ if test -n "$cf_searchpath/../include" ; then CPPFLAGS="${CPPFLAGS}-I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 37366 "configure" +#line 37490 "configure" #include "confdefs.h" #include <stdio.h> int @@ -37375,16 +37499,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:37378: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:37502: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:37381: \$? = $ac_status" >&5 + echo "$as_me:37505: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:37384: \"$ac_try\"") >&5 + { (eval echo "$as_me:37508: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:37387: \$? = $ac_status" >&5 + echo "$as_me:37511: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -37401,7 +37525,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}:37404: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:37528: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -37419,7 +37543,7 @@ echo "${as_me:-configure}:37404: testing adding $cf_add_incdir to include-path . fi else -{ { echo "$as_me:37422: error: cannot find under $use_idna" >&5 +{ { echo "$as_me:37546: error: cannot find under $use_idna" >&5 echo "$as_me: error: cannot find under $use_idna" >&2;} { (exit 1); exit 1; }; } fi @@ -37444,7 +37568,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}:37447: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:37571: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -37473,7 +37597,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}:37476: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:37600: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -37482,7 +37606,7 @@ echo "${as_me:-configure}:37476: testing adding $cf_add_libdir to library-path . fi else -{ { echo "$as_me:37485: error: cannot find under $use_idna" >&5 +{ { echo "$as_me:37609: error: cannot find under $use_idna" >&5 echo "$as_me: error: cannot find under $use_idna" >&2;} { (exit 1); exit 1; }; } fi @@ -37496,12 +37620,12 @@ esac cf_cv_header_path_idn= cf_cv_library_path_idn= -echo "${as_me:-configure}:37499: testing Starting FIND_LINKAGE(idn,) ..." 1>&5 +echo "${as_me:-configure}:37623: testing Starting FIND_LINKAGE(idn,) ..." 1>&5 cf_save_LIBS="$LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 37504 "configure" +#line 37628 "configure" #include "confdefs.h" #include <stdio.h> @@ -37519,16 +37643,16 @@ main (void) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:37522: \"$ac_link\"") >&5 +if { (eval echo "$as_me:37646: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:37525: \$? = $ac_status" >&5 + echo "$as_me:37649: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:37528: \"$ac_try\"") >&5 + { (eval echo "$as_me:37652: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:37531: \$? = $ac_status" >&5 + echo "$as_me:37655: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_find_linkage_idn=yes @@ -37542,7 +37666,7 @@ cat conftest.$ac_ext >&5 LIBS="-lidn $LIBICONV $cf_save_LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 37545 "configure" +#line 37669 "configure" #include "confdefs.h" #include <stdio.h> @@ -37560,16 +37684,16 @@ main (void) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:37563: \"$ac_link\"") >&5 +if { (eval echo "$as_me:37687: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:37566: \$? = $ac_status" >&5 + echo "$as_me:37690: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:37569: \"$ac_try\"") >&5 + { (eval echo "$as_me:37693: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:37572: \$? = $ac_status" >&5 + echo "$as_me:37696: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_find_linkage_idn=yes @@ -37586,9 +37710,9 @@ cat conftest.$ac_ext >&5 test -n "$verbose" && echo " find linkage for idn library" 1>&6 -echo "${as_me:-configure}:37589: testing find linkage for idn library ..." 1>&5 +echo "${as_me:-configure}:37713: testing find linkage for idn library ..." 1>&5 -echo "${as_me:-configure}:37591: testing Searching for headers in FIND_LINKAGE(idn,) ..." 1>&5 +echo "${as_me:-configure}:37715: testing Searching for headers in FIND_LINKAGE(idn,) ..." 1>&5 cf_save_CPPFLAGS="$CPPFLAGS" cf_test_CPPFLAGS="$CPPFLAGS" @@ -37679,7 +37803,7 @@ cf_search="$cf_search $cf_header_path_list" if test -d $cf_cv_header_path_idn ; then test -n "$verbose" && echo " ... testing $cf_cv_header_path_idn" 1>&6 -echo "${as_me:-configure}:37682: testing ... testing $cf_cv_header_path_idn ..." 1>&5 +echo "${as_me:-configure}:37806: testing ... testing $cf_cv_header_path_idn ..." 1>&5 CPPFLAGS="$cf_save_CPPFLAGS" @@ -37687,7 +37811,7 @@ echo "${as_me:-configure}:37682: testing ... testing $cf_cv_header_path_idn ..." CPPFLAGS="${CPPFLAGS}-I$cf_cv_header_path_idn" cat >conftest.$ac_ext <<_ACEOF -#line 37690 "configure" +#line 37814 "configure" #include "confdefs.h" #include <stdio.h> @@ -37705,21 +37829,21 @@ main (void) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:37708: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:37832: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:37711: \$? = $ac_status" >&5 + echo "$as_me:37835: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:37714: \"$ac_try\"") >&5 + { (eval echo "$as_me:37838: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:37717: \$? = $ac_status" >&5 + echo "$as_me:37841: \$? = $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}:37722: testing ... found idn headers in $cf_cv_header_path_idn ..." 1>&5 +echo "${as_me:-configure}:37846: testing ... found idn headers in $cf_cv_header_path_idn ..." 1>&5 cf_cv_find_linkage_idn=maybe cf_test_CPPFLAGS="$CPPFLAGS" @@ -37737,7 +37861,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "$cf_cv_find_linkage_idn" = maybe ; then -echo "${as_me:-configure}:37740: testing Searching for idn library in FIND_LINKAGE(idn,) ..." 1>&5 +echo "${as_me:-configure}:37864: testing Searching for idn library in FIND_LINKAGE(idn,) ..." 1>&5 cf_save_LIBS="$LIBS" cf_save_LDFLAGS="$LDFLAGS" @@ -37812,13 +37936,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}:37815: testing ... testing $cf_cv_library_path_idn ..." 1>&5 +echo "${as_me:-configure}:37939: 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 37821 "configure" +#line 37945 "configure" #include "confdefs.h" #include <stdio.h> @@ -37836,21 +37960,21 @@ main (void) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:37839: \"$ac_link\"") >&5 +if { (eval echo "$as_me:37963: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:37842: \$? = $ac_status" >&5 + echo "$as_me:37966: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:37845: \"$ac_try\"") >&5 + { (eval echo "$as_me:37969: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:37848: \$? = $ac_status" >&5 + echo "$as_me:37972: \$? = $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}:37853: testing ... found idn library in $cf_cv_library_path_idn ..." 1>&5 +echo "${as_me:-configure}:37977: testing ... found idn library in $cf_cv_library_path_idn ..." 1>&5 cf_cv_find_linkage_idn=yes cf_cv_library_file_idn="-lidn" @@ -37912,7 +38036,7 @@ if test -n "$cf_cv_header_path_idn" ; then CPPFLAGS="${CPPFLAGS}-I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 37915 "configure" +#line 38039 "configure" #include "confdefs.h" #include <stdio.h> int @@ -37924,16 +38048,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:37927: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:38051: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:37930: \$? = $ac_status" >&5 + echo "$as_me:38054: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:37933: \"$ac_try\"") >&5 + { (eval echo "$as_me:38057: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:37936: \$? = $ac_status" >&5 + echo "$as_me:38060: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -37950,7 +38074,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}:37953: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:38077: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -37986,7 +38110,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}:37989: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:38113: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -38011,7 +38135,7 @@ done LIBS="$cf_add_libs" else -{ echo "$as_me:38014: WARNING: Cannot find idn library" >&5 +{ echo "$as_me:38138: WARNING: Cannot find idn library" >&5 echo "$as_me: WARNING: Cannot find idn library" >&2;} fi @@ -38025,7 +38149,7 @@ fi fi -echo "$as_me:38028: checking if element-justification logic should be used" >&5 +echo "$as_me:38152: 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. @@ -38042,14 +38166,14 @@ else use_justify_elts=yes fi; -echo "$as_me:38045: result: $use_justify_elts" >&5 +echo "$as_me:38169: 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:38052: checking if partial-display should be used" >&5 +echo "$as_me:38176: 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. @@ -38066,14 +38190,14 @@ else use_partial_display=yes fi; -echo "$as_me:38069: result: $use_partial_display" >&5 +echo "$as_me:38193: 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:38076: checking if persistent-cookie logic should be used" >&5 +echo "$as_me:38200: 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. @@ -38090,14 +38214,14 @@ else use_filed_cookies=yes fi; -echo "$as_me:38093: result: $use_filed_cookies" >&5 +echo "$as_me:38217: 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:38100: checking if html source should be colorized" >&5 +echo "$as_me:38224: 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. @@ -38114,14 +38238,14 @@ else use_prettysrc=yes fi; -echo "$as_me:38117: result: $use_prettysrc" >&5 +echo "$as_me:38241: 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:38124: checking if progress-bar code should be used" >&5 +echo "$as_me:38248: 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. @@ -38138,14 +38262,14 @@ else use_progressbar=yes fi; -echo "$as_me:38141: result: $use_progressbar" >&5 +echo "$as_me:38265: 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:38148: checking if read-progress message should show ETA" >&5 +echo "$as_me:38272: 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. @@ -38162,14 +38286,14 @@ else use_read_eta=yes fi; -echo "$as_me:38165: result: $use_read_eta" >&5 +echo "$as_me:38289: 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:38172: checking if source caching should be used" >&5 +echo "$as_me:38296: 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. @@ -38186,14 +38310,14 @@ else use_source_cache=yes fi; -echo "$as_me:38189: result: $use_source_cache" >&5 +echo "$as_me:38313: 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:38196: checking if scrollbar code should be used" >&5 +echo "$as_me:38320: 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. @@ -38210,10 +38334,10 @@ else use_scrollbar=yes fi; -echo "$as_me:38213: result: $use_scrollbar" >&5 +echo "$as_me:38337: result: $use_scrollbar" >&5 echo "${ECHO_T}$use_scrollbar" >&6 -echo "$as_me:38216: checking if charset-selection logic should be used" >&5 +echo "$as_me:38340: 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. @@ -38230,14 +38354,14 @@ else use_charset_choice=no fi; -echo "$as_me:38233: result: $use_charset_choice" >&5 +echo "$as_me:38357: 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:38240: checking if you want to use external commands" >&5 +echo "$as_me:38364: 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. @@ -38254,7 +38378,7 @@ else use_externs=no fi; -echo "$as_me:38257: result: $use_externs" >&5 +echo "$as_me:38381: result: $use_externs" >&5 echo "${ECHO_T}$use_externs" >&6 if test $use_externs != "no" ; then @@ -38265,7 +38389,7 @@ EOF EXTRA_OBJS="$EXTRA_OBJS LYExtern\$o" fi -echo "$as_me:38268: checking if you want to use setfont support" >&5 +echo "$as_me:38392: 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. @@ -38282,7 +38406,7 @@ else use_setfont=no fi; -echo "$as_me:38285: result: $use_setfont" >&5 +echo "$as_me:38409: result: $use_setfont" >&5 echo "${ECHO_T}$use_setfont" >&6 if test $use_setfont = yes ; then case $host_os in @@ -38293,7 +38417,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:38296: checking for $ac_word" >&5 +echo "$as_me:38420: 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 @@ -38310,7 +38434,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:38313: found $ac_dir/$ac_word" >&5 + echo "$as_me:38437: found $ac_dir/$ac_word" >&5 break fi done @@ -38321,10 +38445,10 @@ fi SETFONT=$ac_cv_path_SETFONT if test -n "$SETFONT"; then - echo "$as_me:38324: result: $SETFONT" >&5 + echo "$as_me:38448: result: $SETFONT" >&5 echo "${ECHO_T}$SETFONT" >&6 else - echo "$as_me:38327: result: no" >&5 + echo "$as_me:38451: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -38383,7 +38507,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me:-configure}:38386: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me:-configure}:38510: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define SETFONT_PATH "$cf_path_prog" @@ -38401,19 +38525,19 @@ fi SETFONT=built-in test -n "$verbose" && echo " Assume $host_os has font-switching" 1>&6 -echo "${as_me:-configure}:38404: testing Assume $host_os has font-switching ..." 1>&5 +echo "${as_me:-configure}:38528: 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}:38411: testing Assume $host_os has no font-switching ..." 1>&5 +echo "${as_me:-configure}:38535: testing Assume $host_os has no font-switching ..." 1>&5 ;; esac if test -z "$SETFONT" ; then - { echo "$as_me:38416: WARNING: Cannot find a font-setting program" >&5 + { echo "$as_me:38540: WARNING: Cannot find a font-setting program" >&5 echo "$as_me: WARNING: Cannot find a font-setting program" >&2;} elif test "$SETFONT" != unknown ; then @@ -38424,7 +38548,7 @@ EOF fi fi -echo "$as_me:38427: checking if you want cgi-link support" >&5 +echo "$as_me:38551: 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. @@ -38441,10 +38565,10 @@ EOF else enableval=no fi; -echo "$as_me:38444: result: $enableval" >&5 +echo "$as_me:38568: result: $enableval" >&5 echo "${ECHO_T}$enableval" >&6 -echo "$as_me:38447: checking if you want change-exec support" >&5 +echo "$as_me:38571: 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. @@ -38461,14 +38585,14 @@ else use_change_exec=no fi; -echo "$as_me:38464: result: $use_change_exec" >&5 +echo "$as_me:38588: 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:38471: checking if you want exec-links support" >&5 +echo "$as_me:38595: 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. @@ -38485,14 +38609,14 @@ else use_exec_links=$enableval fi; -echo "$as_me:38488: result: $use_exec_links" >&5 +echo "$as_me:38612: 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:38495: checking if you want exec-scripts support" >&5 +echo "$as_me:38619: 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. @@ -38509,14 +38633,14 @@ else use_exec_scripts=$enableval fi; -echo "$as_me:38512: result: $use_exec_scripts" >&5 +echo "$as_me:38636: 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:38519: checking if you want internal-links feature" >&5 +echo "$as_me:38643: 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. @@ -38533,14 +38657,14 @@ else use_internal_links=no fi; -echo "$as_me:38536: result: $use_internal_links" >&5 +echo "$as_me:38660: 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:38543: checking if you want to fork NSL requests" >&5 +echo "$as_me:38667: 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. @@ -38557,7 +38681,7 @@ else use_nsl_fork=no fi; -echo "$as_me:38560: result: $use_nsl_fork" >&5 +echo "$as_me:38684: result: $use_nsl_fork" >&5 echo "${ECHO_T}$use_nsl_fork" >&6 if test $use_nsl_fork = yes ; then case $host_os in @@ -38578,7 +38702,7 @@ EOF esac fi -echo "$as_me:38581: checking if you want to log URL requests via syslog" >&5 +echo "$as_me:38705: 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. @@ -38595,14 +38719,14 @@ else use_syslog=no fi; -echo "$as_me:38598: result: $use_syslog" >&5 +echo "$as_me:38722: 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:38605: checking if you want to underline links" >&5 +echo "$as_me:38729: 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. @@ -38619,7 +38743,7 @@ else use_underline=no fi; -echo "$as_me:38622: result: $use_underline" >&5 +echo "$as_me:38746: result: $use_underline" >&5 echo "${ECHO_T}$use_underline" >&6 test $use_underline = yes && cat >>confdefs.h <<\EOF @@ -38631,7 +38755,7 @@ cat >>confdefs.h <<\EOF #define UNDERLINE_LINKS 0 EOF -echo "$as_me:38634: checking if help files should be gzip'ed" >&5 +echo "$as_me:38758: 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. @@ -38648,10 +38772,10 @@ else use_gzip_help=no fi; -echo "$as_me:38651: result: $use_gzip_help" >&5 +echo "$as_me:38775: result: $use_gzip_help" >&5 echo "${ECHO_T}$use_gzip_help" >&6 -echo "$as_me:38654: checking if you want to use libbz2 for decompression of some bzip2 files" >&5 +echo "$as_me:38778: 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. @@ -38661,7 +38785,7 @@ if test "${with_bzlib+set}" = set; then else use_bzlib=no fi; -echo "$as_me:38664: result: $use_bzlib" >&5 +echo "$as_me:38788: result: $use_bzlib" >&5 echo "${ECHO_T}$use_bzlib" >&6 if test ".$use_bzlib" != ".no" ; then @@ -38703,7 +38827,7 @@ if test -n "$cf_searchpath/include" ; then CPPFLAGS="${CPPFLAGS}-I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 38706 "configure" +#line 38830 "configure" #include "confdefs.h" #include <stdio.h> int @@ -38715,16 +38839,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:38718: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:38842: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:38721: \$? = $ac_status" >&5 + echo "$as_me:38845: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:38724: \"$ac_try\"") >&5 + { (eval echo "$as_me:38848: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:38727: \$? = $ac_status" >&5 + echo "$as_me:38851: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -38741,7 +38865,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}:38744: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:38868: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -38787,7 +38911,7 @@ if test -n "$cf_searchpath/../include" ; then CPPFLAGS="${CPPFLAGS}-I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 38790 "configure" +#line 38914 "configure" #include "confdefs.h" #include <stdio.h> int @@ -38799,16 +38923,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:38802: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:38926: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:38805: \$? = $ac_status" >&5 + echo "$as_me:38929: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:38808: \"$ac_try\"") >&5 + { (eval echo "$as_me:38932: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:38811: \$? = $ac_status" >&5 + echo "$as_me:38935: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -38825,7 +38949,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}:38828: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:38952: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -38843,7 +38967,7 @@ echo "${as_me:-configure}:38828: testing adding $cf_add_incdir to include-path . fi else -{ { echo "$as_me:38846: error: cannot find under $use_bzlib" >&5 +{ { echo "$as_me:38970: error: cannot find under $use_bzlib" >&5 echo "$as_me: error: cannot find under $use_bzlib" >&2;} { (exit 1); exit 1; }; } fi @@ -38868,7 +38992,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}:38871: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:38995: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -38897,7 +39021,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}:38900: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:39024: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -38906,7 +39030,7 @@ echo "${as_me:-configure}:38900: testing adding $cf_add_libdir to library-path . fi else -{ { echo "$as_me:38909: error: cannot find under $use_bzlib" >&5 +{ { echo "$as_me:39033: error: cannot find under $use_bzlib" >&5 echo "$as_me: error: cannot find under $use_bzlib" >&2;} { (exit 1); exit 1; }; } fi @@ -38920,12 +39044,12 @@ esac cf_cv_header_path_bz2= cf_cv_library_path_bz2= -echo "${as_me:-configure}:38923: testing Starting FIND_LINKAGE(bz2,bzlib) ..." 1>&5 +echo "${as_me:-configure}:39047: testing Starting FIND_LINKAGE(bz2,bzlib) ..." 1>&5 cf_save_LIBS="$LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 38928 "configure" +#line 39052 "configure" #include "confdefs.h" #include <stdio.h> @@ -38942,16 +39066,16 @@ main (void) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:38945: \"$ac_link\"") >&5 +if { (eval echo "$as_me:39069: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:38948: \$? = $ac_status" >&5 + echo "$as_me:39072: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:38951: \"$ac_try\"") >&5 + { (eval echo "$as_me:39075: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:38954: \$? = $ac_status" >&5 + echo "$as_me:39078: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_find_linkage_bz2=yes @@ -38965,7 +39089,7 @@ cat conftest.$ac_ext >&5 LIBS="-lbz2 $cf_save_LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 38968 "configure" +#line 39092 "configure" #include "confdefs.h" #include <stdio.h> @@ -38982,16 +39106,16 @@ main (void) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:38985: \"$ac_link\"") >&5 +if { (eval echo "$as_me:39109: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:38988: \$? = $ac_status" >&5 + echo "$as_me:39112: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:38991: \"$ac_try\"") >&5 + { (eval echo "$as_me:39115: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:38994: \$? = $ac_status" >&5 + echo "$as_me:39118: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_find_linkage_bz2=yes @@ -39008,9 +39132,9 @@ cat conftest.$ac_ext >&5 test -n "$verbose" && echo " find linkage for bz2 library" 1>&6 -echo "${as_me:-configure}:39011: testing find linkage for bz2 library ..." 1>&5 +echo "${as_me:-configure}:39135: testing find linkage for bz2 library ..." 1>&5 -echo "${as_me:-configure}:39013: testing Searching for headers in FIND_LINKAGE(bz2,bzlib) ..." 1>&5 +echo "${as_me:-configure}:39137: testing Searching for headers in FIND_LINKAGE(bz2,bzlib) ..." 1>&5 cf_save_CPPFLAGS="$CPPFLAGS" cf_test_CPPFLAGS="$CPPFLAGS" @@ -39101,7 +39225,7 @@ cf_search="$cf_search $cf_header_path_list" if test -d $cf_cv_header_path_bz2 ; then test -n "$verbose" && echo " ... testing $cf_cv_header_path_bz2" 1>&6 -echo "${as_me:-configure}:39104: testing ... testing $cf_cv_header_path_bz2 ..." 1>&5 +echo "${as_me:-configure}:39228: testing ... testing $cf_cv_header_path_bz2 ..." 1>&5 CPPFLAGS="$cf_save_CPPFLAGS" @@ -39109,7 +39233,7 @@ echo "${as_me:-configure}:39104: testing ... testing $cf_cv_header_path_bz2 ..." CPPFLAGS="${CPPFLAGS}-I$cf_cv_header_path_bz2" cat >conftest.$ac_ext <<_ACEOF -#line 39112 "configure" +#line 39236 "configure" #include "confdefs.h" #include <stdio.h> @@ -39126,21 +39250,21 @@ main (void) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:39129: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:39253: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:39132: \$? = $ac_status" >&5 + echo "$as_me:39256: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:39135: \"$ac_try\"") >&5 + { (eval echo "$as_me:39259: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:39138: \$? = $ac_status" >&5 + echo "$as_me:39262: \$? = $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}:39143: testing ... found bz2 headers in $cf_cv_header_path_bz2 ..." 1>&5 +echo "${as_me:-configure}:39267: testing ... found bz2 headers in $cf_cv_header_path_bz2 ..." 1>&5 cf_cv_find_linkage_bz2=maybe cf_test_CPPFLAGS="$CPPFLAGS" @@ -39158,7 +39282,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "$cf_cv_find_linkage_bz2" = maybe ; then -echo "${as_me:-configure}:39161: testing Searching for bz2 library in FIND_LINKAGE(bz2,bzlib) ..." 1>&5 +echo "${as_me:-configure}:39285: testing Searching for bz2 library in FIND_LINKAGE(bz2,bzlib) ..." 1>&5 cf_save_LIBS="$LIBS" cf_save_LDFLAGS="$LDFLAGS" @@ -39166,7 +39290,7 @@ echo "${as_me:-configure}:39161: testing Searching for bz2 library in FIND_LINKA CPPFLAGS="$cf_test_CPPFLAGS" LIBS="-lbz2 $cf_save_LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 39169 "configure" +#line 39293 "configure" #include "confdefs.h" #include <stdio.h> @@ -39183,21 +39307,21 @@ main (void) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:39186: \"$ac_link\"") >&5 +if { (eval echo "$as_me:39310: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:39189: \$? = $ac_status" >&5 + echo "$as_me:39313: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:39192: \"$ac_try\"") >&5 + { (eval echo "$as_me:39316: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:39195: \$? = $ac_status" >&5 + echo "$as_me:39319: \$? = $ac_status" >&5 (exit $ac_status); }; }; then test -n "$verbose" && echo " ... found bz2 library in system" 1>&6 -echo "${as_me:-configure}:39200: testing ... found bz2 library in system ..." 1>&5 +echo "${as_me:-configure}:39324: testing ... found bz2 library in system ..." 1>&5 cf_cv_find_linkage_bz2=yes else @@ -39278,13 +39402,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}:39281: testing ... testing $cf_cv_library_path_bz2 ..." 1>&5 +echo "${as_me:-configure}:39405: 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 39287 "configure" +#line 39411 "configure" #include "confdefs.h" #include <stdio.h> @@ -39301,21 +39425,21 @@ main (void) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:39304: \"$ac_link\"") >&5 +if { (eval echo "$as_me:39428: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:39307: \$? = $ac_status" >&5 + echo "$as_me:39431: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:39310: \"$ac_try\"") >&5 + { (eval echo "$as_me:39434: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:39313: \$? = $ac_status" >&5 + echo "$as_me:39437: \$? = $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}:39318: testing ... found bz2 library in $cf_cv_library_path_bz2 ..." 1>&5 +echo "${as_me:-configure}:39442: testing ... found bz2 library in $cf_cv_library_path_bz2 ..." 1>&5 cf_cv_find_linkage_bz2=yes cf_cv_library_file_bz2="-lbz2" @@ -39377,7 +39501,7 @@ if test -n "$cf_cv_header_path_bz2" ; then CPPFLAGS="${CPPFLAGS}-I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 39380 "configure" +#line 39504 "configure" #include "confdefs.h" #include <stdio.h> int @@ -39389,16 +39513,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:39392: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:39516: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:39395: \$? = $ac_status" >&5 + echo "$as_me:39519: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:39398: \"$ac_try\"") >&5 + { (eval echo "$as_me:39522: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:39401: \$? = $ac_status" >&5 + echo "$as_me:39525: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -39415,7 +39539,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}:39418: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:39542: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -39451,7 +39575,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}:39454: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:39578: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -39476,7 +39600,7 @@ done LIBS="$cf_add_libs" else -{ echo "$as_me:39479: WARNING: Cannot find bz2 library" >&5 +{ echo "$as_me:39603: WARNING: Cannot find bz2 library" >&5 echo "$as_me: WARNING: Cannot find bz2 library" >&2;} fi @@ -39487,7 +39611,7 @@ EOF fi -echo "$as_me:39490: checking if you want to use zlib for decompression of some gzip files" >&5 +echo "$as_me:39614: 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. @@ -39497,7 +39621,7 @@ if test "${with_zlib+set}" = set; then else use_zlib=no fi; -echo "$as_me:39500: result: $use_zlib" >&5 +echo "$as_me:39624: result: $use_zlib" >&5 echo "${ECHO_T}$use_zlib" >&6 if test ".$use_zlib" != ".no" ; then @@ -39539,7 +39663,7 @@ if test -n "$cf_searchpath/include" ; then CPPFLAGS="${CPPFLAGS}-I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 39542 "configure" +#line 39666 "configure" #include "confdefs.h" #include <stdio.h> int @@ -39551,16 +39675,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:39554: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:39678: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:39557: \$? = $ac_status" >&5 + echo "$as_me:39681: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:39560: \"$ac_try\"") >&5 + { (eval echo "$as_me:39684: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:39563: \$? = $ac_status" >&5 + echo "$as_me:39687: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -39577,7 +39701,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}:39580: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:39704: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -39623,7 +39747,7 @@ if test -n "$cf_searchpath/../include" ; then CPPFLAGS="${CPPFLAGS}-I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 39626 "configure" +#line 39750 "configure" #include "confdefs.h" #include <stdio.h> int @@ -39635,16 +39759,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:39638: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:39762: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:39641: \$? = $ac_status" >&5 + echo "$as_me:39765: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:39644: \"$ac_try\"") >&5 + { (eval echo "$as_me:39768: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:39647: \$? = $ac_status" >&5 + echo "$as_me:39771: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -39661,7 +39785,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}:39664: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:39788: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -39679,7 +39803,7 @@ echo "${as_me:-configure}:39664: testing adding $cf_add_incdir to include-path . fi else -{ { echo "$as_me:39682: error: cannot find under $use_zlib" >&5 +{ { echo "$as_me:39806: error: cannot find under $use_zlib" >&5 echo "$as_me: error: cannot find under $use_zlib" >&2;} { (exit 1); exit 1; }; } fi @@ -39704,7 +39828,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}:39707: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:39831: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -39733,7 +39857,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}:39736: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:39860: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -39742,7 +39866,7 @@ echo "${as_me:-configure}:39736: testing adding $cf_add_libdir to library-path . fi else -{ { echo "$as_me:39745: error: cannot find under $use_zlib" >&5 +{ { echo "$as_me:39869: error: cannot find under $use_zlib" >&5 echo "$as_me: error: cannot find under $use_zlib" >&2;} { (exit 1); exit 1; }; } fi @@ -39756,12 +39880,12 @@ esac cf_cv_header_path_z= cf_cv_library_path_z= -echo "${as_me:-configure}:39759: testing Starting FIND_LINKAGE(z,zlib) ..." 1>&5 +echo "${as_me:-configure}:39883: testing Starting FIND_LINKAGE(z,zlib) ..." 1>&5 cf_save_LIBS="$LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 39764 "configure" +#line 39888 "configure" #include "confdefs.h" #include <zlib.h> @@ -39777,16 +39901,16 @@ main (void) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:39780: \"$ac_link\"") >&5 +if { (eval echo "$as_me:39904: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:39783: \$? = $ac_status" >&5 + echo "$as_me:39907: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:39786: \"$ac_try\"") >&5 + { (eval echo "$as_me:39910: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:39789: \$? = $ac_status" >&5 + echo "$as_me:39913: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_find_linkage_z=yes @@ -39800,7 +39924,7 @@ cat conftest.$ac_ext >&5 LIBS="-lz $cf_save_LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 39803 "configure" +#line 39927 "configure" #include "confdefs.h" #include <zlib.h> @@ -39816,16 +39940,16 @@ main (void) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:39819: \"$ac_link\"") >&5 +if { (eval echo "$as_me:39943: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:39822: \$? = $ac_status" >&5 + echo "$as_me:39946: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:39825: \"$ac_try\"") >&5 + { (eval echo "$as_me:39949: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:39828: \$? = $ac_status" >&5 + echo "$as_me:39952: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_find_linkage_z=yes @@ -39842,9 +39966,9 @@ cat conftest.$ac_ext >&5 test -n "$verbose" && echo " find linkage for z library" 1>&6 -echo "${as_me:-configure}:39845: testing find linkage for z library ..." 1>&5 +echo "${as_me:-configure}:39969: testing find linkage for z library ..." 1>&5 -echo "${as_me:-configure}:39847: testing Searching for headers in FIND_LINKAGE(z,zlib) ..." 1>&5 +echo "${as_me:-configure}:39971: testing Searching for headers in FIND_LINKAGE(z,zlib) ..." 1>&5 cf_save_CPPFLAGS="$CPPFLAGS" cf_test_CPPFLAGS="$CPPFLAGS" @@ -39935,7 +40059,7 @@ cf_search="$cf_search $cf_header_path_list" if test -d $cf_cv_header_path_z ; then test -n "$verbose" && echo " ... testing $cf_cv_header_path_z" 1>&6 -echo "${as_me:-configure}:39938: testing ... testing $cf_cv_header_path_z ..." 1>&5 +echo "${as_me:-configure}:40062: testing ... testing $cf_cv_header_path_z ..." 1>&5 CPPFLAGS="$cf_save_CPPFLAGS" @@ -39943,7 +40067,7 @@ echo "${as_me:-configure}:39938: testing ... testing $cf_cv_header_path_z ..." 1 CPPFLAGS="${CPPFLAGS}-I$cf_cv_header_path_z" cat >conftest.$ac_ext <<_ACEOF -#line 39946 "configure" +#line 40070 "configure" #include "confdefs.h" #include <zlib.h> @@ -39959,21 +40083,21 @@ main (void) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:39962: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:40086: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:39965: \$? = $ac_status" >&5 + echo "$as_me:40089: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:39968: \"$ac_try\"") >&5 + { (eval echo "$as_me:40092: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:39971: \$? = $ac_status" >&5 + echo "$as_me:40095: \$? = $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}:39976: testing ... found z headers in $cf_cv_header_path_z ..." 1>&5 +echo "${as_me:-configure}:40100: testing ... found z headers in $cf_cv_header_path_z ..." 1>&5 cf_cv_find_linkage_z=maybe cf_test_CPPFLAGS="$CPPFLAGS" @@ -39991,7 +40115,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "$cf_cv_find_linkage_z" = maybe ; then -echo "${as_me:-configure}:39994: testing Searching for z library in FIND_LINKAGE(z,zlib) ..." 1>&5 +echo "${as_me:-configure}:40118: testing Searching for z library in FIND_LINKAGE(z,zlib) ..." 1>&5 cf_save_LIBS="$LIBS" cf_save_LDFLAGS="$LDFLAGS" @@ -39999,7 +40123,7 @@ echo "${as_me:-configure}:39994: testing Searching for z library in FIND_LINKAGE CPPFLAGS="$cf_test_CPPFLAGS" LIBS="-lz $cf_save_LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 40002 "configure" +#line 40126 "configure" #include "confdefs.h" #include <zlib.h> @@ -40015,21 +40139,21 @@ main (void) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:40018: \"$ac_link\"") >&5 +if { (eval echo "$as_me:40142: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:40021: \$? = $ac_status" >&5 + echo "$as_me:40145: \$? = $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:40148: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:40027: \$? = $ac_status" >&5 + echo "$as_me:40151: \$? = $ac_status" >&5 (exit $ac_status); }; }; then test -n "$verbose" && echo " ... found z library in system" 1>&6 -echo "${as_me:-configure}:40032: testing ... found z library in system ..." 1>&5 +echo "${as_me:-configure}:40156: testing ... found z library in system ..." 1>&5 cf_cv_find_linkage_z=yes else @@ -40110,13 +40234,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}:40113: testing ... testing $cf_cv_library_path_z ..." 1>&5 +echo "${as_me:-configure}:40237: 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 40119 "configure" +#line 40243 "configure" #include "confdefs.h" #include <zlib.h> @@ -40132,21 +40256,21 @@ main (void) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:40135: \"$ac_link\"") >&5 +if { (eval echo "$as_me:40259: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:40138: \$? = $ac_status" >&5 + echo "$as_me:40262: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:40141: \"$ac_try\"") >&5 + { (eval echo "$as_me:40265: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:40144: \$? = $ac_status" >&5 + echo "$as_me:40268: \$? = $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}:40149: testing ... found z library in $cf_cv_library_path_z ..." 1>&5 +echo "${as_me:-configure}:40273: testing ... found z library in $cf_cv_library_path_z ..." 1>&5 cf_cv_find_linkage_z=yes cf_cv_library_file_z="-lz" @@ -40208,7 +40332,7 @@ if test -n "$cf_cv_header_path_z" ; then CPPFLAGS="${CPPFLAGS}-I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 40211 "configure" +#line 40335 "configure" #include "confdefs.h" #include <stdio.h> int @@ -40220,16 +40344,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:40223: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:40347: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:40226: \$? = $ac_status" >&5 + echo "$as_me:40350: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:40229: \"$ac_try\"") >&5 + { (eval echo "$as_me:40353: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:40232: \$? = $ac_status" >&5 + echo "$as_me:40356: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -40246,7 +40370,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}:40249: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:40373: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -40282,7 +40406,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}:40285: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:40409: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -40307,7 +40431,7 @@ done LIBS="$cf_add_libs" else -{ echo "$as_me:40310: WARNING: Cannot find z library" >&5 +{ echo "$as_me:40434: WARNING: Cannot find z library" >&5 echo "$as_me: WARNING: Cannot find z library" >&2;} fi @@ -40316,13 +40440,13 @@ for ac_func in \ do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` -echo "$as_me:40319: checking for $ac_func" >&5 +echo "$as_me:40443: 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 40325 "configure" +#line 40449 "configure" #include "confdefs.h" #define $ac_func autoconf_temporary #include <limits.h> /* least-intrusive standard header which defines gcc2 __stub macros */ @@ -40353,16 +40477,16 @@ main (void) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:40356: \"$ac_link\"") >&5 +if { (eval echo "$as_me:40480: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:40359: \$? = $ac_status" >&5 + echo "$as_me:40483: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:40362: \"$ac_try\"") >&5 + { (eval echo "$as_me:40486: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:40365: \$? = $ac_status" >&5 + echo "$as_me:40489: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else @@ -40372,7 +40496,7 @@ eval "$as_ac_var=no" fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:40375: result: `eval echo '${'$as_ac_var'}'`" >&5 +echo "$as_me:40499: 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 @@ -40389,7 +40513,7 @@ EOF fi -echo "$as_me:40392: checking if you want to exclude FINGER code" >&5 +echo "$as_me:40516: 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. @@ -40406,14 +40530,14 @@ else use_finger=no fi; -echo "$as_me:40409: result: $use_finger" >&5 +echo "$as_me:40533: 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:40416: checking if you want to exclude GOPHER code" >&5 +echo "$as_me:40540: 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. @@ -40430,14 +40554,14 @@ else use_gopher=no fi; -echo "$as_me:40433: result: $use_gopher" >&5 +echo "$as_me:40557: 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:40440: checking if you want to exclude NEWS code" >&5 +echo "$as_me:40564: 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. @@ -40454,14 +40578,14 @@ else use_news=no fi; -echo "$as_me:40457: result: $use_news" >&5 +echo "$as_me:40581: 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:40464: checking if you want to exclude FTP code" >&5 +echo "$as_me:40588: 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. @@ -40478,14 +40602,14 @@ else use_ftp=no fi; -echo "$as_me:40481: result: $use_ftp" >&5 +echo "$as_me:40605: 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:40488: checking if you want to include WAIS code" >&5 +echo "$as_me:40612: 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. @@ -40502,13 +40626,13 @@ else use_wais=no fi; -echo "$as_me:40505: result: $use_wais" >&5 +echo "$as_me:40629: result: $use_wais" >&5 echo "${ECHO_T}$use_wais" >&6 MAKE_WAIS="#" if test $use_wais != "no" then - echo "$as_me:40511: checking for fs_free in -lwais" >&5 + echo "$as_me:40635: 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 @@ -40516,7 +40640,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lwais $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 40519 "configure" +#line 40643 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -40535,16 +40659,16 @@ fs_free (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:40538: \"$ac_link\"") >&5 +if { (eval echo "$as_me:40662: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:40541: \$? = $ac_status" >&5 + echo "$as_me:40665: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:40544: \"$ac_try\"") >&5 + { (eval echo "$as_me:40668: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:40547: \$? = $ac_status" >&5 + echo "$as_me:40671: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_wais_fs_free=yes else @@ -40555,18 +40679,18 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:40558: result: $ac_cv_lib_wais_fs_free" >&5 +echo "$as_me:40682: 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:40562: checking if -lm needed for math functions" >&5 +echo "$as_me:40686: 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 40569 "configure" +#line 40693 "configure" #include "confdefs.h" #include <stdio.h> @@ -40582,16 +40706,16 @@ double x = rand(); printf("result = %g\n", sin(x)) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:40585: \"$ac_link\"") >&5 +if { (eval echo "$as_me:40709: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:40588: \$? = $ac_status" >&5 + echo "$as_me:40712: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:40591: \"$ac_try\"") >&5 + { (eval echo "$as_me:40715: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:40594: \$? = $ac_status" >&5 + echo "$as_me:40718: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_need_libm=no else @@ -40601,7 +40725,7 @@ cf_cv_need_libm=yes fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:40604: result: $cf_cv_need_libm" >&5 +echo "$as_me:40728: result: $cf_cv_need_libm" >&5 echo "${ECHO_T}$cf_cv_need_libm" >&6 if test "$cf_cv_need_libm" = yes then @@ -40643,23 +40767,23 @@ LIBS="$cf_add_libs" for ac_header in wais.h do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` -echo "$as_me:40646: checking for $ac_header" >&5 +echo "$as_me:40770: 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 40652 "configure" +#line 40776 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:40656: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:40780: \"$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:40662: \$? = $ac_status" >&5 + echo "$as_me:40786: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -40678,7 +40802,7 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:40681: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:40805: 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 @@ -40691,7 +40815,7 @@ done MAKE_WAIS= else - { echo "$as_me:40694: WARNING: could not find WAIS library" >&5 + { echo "$as_me:40818: WARNING: could not find WAIS library" >&5 echo "$as_me: WARNING: could not find WAIS library" >&2;} fi @@ -40699,7 +40823,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:40702: checking if directory-editor code should be used" >&5 +echo "$as_me:40826: 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. @@ -40716,7 +40840,7 @@ else use_dired=yes fi; -echo "$as_me:40719: result: $use_dired" >&5 +echo "$as_me:40843: result: $use_dired" >&5 echo "${ECHO_T}$use_dired" >&6 if test ".$use_dired" != ".no" ; then @@ -40726,7 +40850,7 @@ cat >>confdefs.h <<\EOF #define DIRED_SUPPORT 1 EOF - echo "$as_me:40729: checking if you wish to allow extracting from archives via DirEd" >&5 + echo "$as_me:40853: 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. @@ -40743,10 +40867,10 @@ EOF else enableval=yes fi; - echo "$as_me:40746: result: $enableval" >&5 + echo "$as_me:40870: result: $enableval" >&5 echo "${ECHO_T}$enableval" >&6 - echo "$as_me:40749: checking if DirEd mode should override keys" >&5 + echo "$as_me:40873: 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. @@ -40770,10 +40894,10 @@ cat >>confdefs.h <<\EOF EOF fi; - echo "$as_me:40773: result: $enableval" >&5 + echo "$as_me:40897: result: $enableval" >&5 echo "${ECHO_T}$enableval" >&6 - echo "$as_me:40776: checking if you wish to allow permissions commands via DirEd" >&5 + echo "$as_me:40900: 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. @@ -40797,10 +40921,10 @@ cat >>confdefs.h <<\EOF EOF fi; - echo "$as_me:40800: result: $enableval" >&5 + echo "$as_me:40924: result: $enableval" >&5 echo "${ECHO_T}$enableval" >&6 - echo "$as_me:40803: checking if you wish to allow executable-permission commands via DirEd" >&5 + echo "$as_me:40927: 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. @@ -40817,10 +40941,10 @@ EOF else enableval=yes fi; - echo "$as_me:40820: result: $enableval" >&5 + echo "$as_me:40944: result: $enableval" >&5 echo "${ECHO_T}$enableval" >&6 - echo "$as_me:40823: checking if you wish to allow \"tar\" commands from DirEd" >&5 + echo "$as_me:40947: 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. @@ -40844,10 +40968,10 @@ cat >>confdefs.h <<\EOF EOF fi; - echo "$as_me:40847: result: $enableval" >&5 + echo "$as_me:40971: result: $enableval" >&5 echo "${ECHO_T}$enableval" >&6 - echo "$as_me:40850: checking if you wish to allow \"uudecode\" commands from DirEd" >&5 + echo "$as_me:40974: 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. @@ -40871,10 +40995,10 @@ cat >>confdefs.h <<\EOF EOF fi; - echo "$as_me:40874: result: $enableval" >&5 + echo "$as_me:40998: result: $enableval" >&5 echo "${ECHO_T}$enableval" >&6 - echo "$as_me:40877: checking if you wish to allow \"zip\" and \"unzip\" commands from DirEd" >&5 + echo "$as_me:41001: 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. @@ -40898,10 +41022,10 @@ cat >>confdefs.h <<\EOF EOF fi; - echo "$as_me:40901: result: $enableval" >&5 + echo "$as_me:41025: result: $enableval" >&5 echo "${ECHO_T}$enableval" >&6 - echo "$as_me:40904: checking if you wish to allow \"gzip\" and \"gunzip\" commands from DirEd" >&5 + echo "$as_me:41028: 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. @@ -40925,11 +41049,11 @@ cat >>confdefs.h <<\EOF EOF fi; - echo "$as_me:40928: result: $enableval" >&5 + echo "$as_me:41052: result: $enableval" >&5 echo "${ECHO_T}$enableval" >&6 fi -echo "$as_me:40932: checking if you want long-directory listings" >&5 +echo "$as_me:41056: 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. @@ -40953,10 +41077,10 @@ cat >>confdefs.h <<\EOF EOF fi; -echo "$as_me:40956: result: $enableval" >&5 +echo "$as_me:41080: result: $enableval" >&5 echo "${ECHO_T}$enableval" >&6 -echo "$as_me:40959: checking if parent-directory references are permitted" >&5 +echo "$as_me:41083: 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. @@ -40973,7 +41097,7 @@ EOF else enableval=yes fi; -echo "$as_me:40976: result: $enableval" >&5 +echo "$as_me:41100: result: $enableval" >&5 echo "${ECHO_T}$enableval" >&6 test -z "$TELNET" && TELNET=telnet @@ -40981,7 +41105,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:40984: checking for $ac_word" >&5 +echo "$as_me:41108: 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 @@ -40998,7 +41122,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:41001: found $ac_dir/$ac_word" >&5 + echo "$as_me:41125: found $ac_dir/$ac_word" >&5 break fi done @@ -41009,10 +41133,10 @@ fi TELNET=$ac_cv_path_TELNET if test -n "$TELNET"; then - echo "$as_me:41012: result: $TELNET" >&5 + echo "$as_me:41136: result: $TELNET" >&5 echo "${ECHO_T}$TELNET" >&6 else - echo "$as_me:41015: result: no" >&5 + echo "$as_me:41139: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -41071,7 +41195,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me:-configure}:41074: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me:-configure}:41198: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define TELNET_PATH "$cf_path_prog" @@ -41089,7 +41213,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:41092: checking for $ac_word" >&5 +echo "$as_me:41216: 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 @@ -41106,7 +41230,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:41109: found $ac_dir/$ac_word" >&5 + echo "$as_me:41233: found $ac_dir/$ac_word" >&5 break fi done @@ -41117,10 +41241,10 @@ fi TN3270=$ac_cv_path_TN3270 if test -n "$TN3270"; then - echo "$as_me:41120: result: $TN3270" >&5 + echo "$as_me:41244: result: $TN3270" >&5 echo "${ECHO_T}$TN3270" >&6 else - echo "$as_me:41123: result: no" >&5 + echo "$as_me:41247: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -41179,7 +41303,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me:-configure}:41182: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me:-configure}:41306: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define TN3270_PATH "$cf_path_prog" @@ -41197,7 +41321,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:41200: checking for $ac_word" >&5 +echo "$as_me:41324: 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 @@ -41214,7 +41338,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:41217: found $ac_dir/$ac_word" >&5 + echo "$as_me:41341: found $ac_dir/$ac_word" >&5 break fi done @@ -41225,10 +41349,10 @@ fi RLOGIN=$ac_cv_path_RLOGIN if test -n "$RLOGIN"; then - echo "$as_me:41228: result: $RLOGIN" >&5 + echo "$as_me:41352: result: $RLOGIN" >&5 echo "${ECHO_T}$RLOGIN" >&6 else - echo "$as_me:41231: result: no" >&5 + echo "$as_me:41355: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -41287,7 +41411,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me:-configure}:41290: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me:-configure}:41414: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define RLOGIN_PATH "$cf_path_prog" @@ -41305,7 +41429,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:41308: checking for $ac_word" >&5 +echo "$as_me:41432: 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 @@ -41322,7 +41446,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:41325: found $ac_dir/$ac_word" >&5 + echo "$as_me:41449: found $ac_dir/$ac_word" >&5 break fi done @@ -41333,10 +41457,10 @@ fi MV=$ac_cv_path_MV if test -n "$MV"; then - echo "$as_me:41336: result: $MV" >&5 + echo "$as_me:41460: result: $MV" >&5 echo "${ECHO_T}$MV" >&6 else - echo "$as_me:41339: result: no" >&5 + echo "$as_me:41463: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -41395,7 +41519,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me:-configure}:41398: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me:-configure}:41522: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define MV_PATH "$cf_path_prog" @@ -41413,7 +41537,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:41416: checking for $ac_word" >&5 +echo "$as_me:41540: 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 @@ -41430,7 +41554,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:41433: found $ac_dir/$ac_word" >&5 + echo "$as_me:41557: found $ac_dir/$ac_word" >&5 break fi done @@ -41441,10 +41565,10 @@ fi GZIP=$ac_cv_path_GZIP if test -n "$GZIP"; then - echo "$as_me:41444: result: $GZIP" >&5 + echo "$as_me:41568: result: $GZIP" >&5 echo "${ECHO_T}$GZIP" >&6 else - echo "$as_me:41447: result: no" >&5 + echo "$as_me:41571: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -41503,7 +41627,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me:-configure}:41506: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me:-configure}:41630: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define GZIP_PATH "$cf_path_prog" @@ -41521,7 +41645,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:41524: checking for $ac_word" >&5 +echo "$as_me:41648: 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 @@ -41538,7 +41662,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:41541: found $ac_dir/$ac_word" >&5 + echo "$as_me:41665: found $ac_dir/$ac_word" >&5 break fi done @@ -41549,10 +41673,10 @@ fi UNCOMPRESS=$ac_cv_path_UNCOMPRESS if test -n "$UNCOMPRESS"; then - echo "$as_me:41552: result: $UNCOMPRESS" >&5 + echo "$as_me:41676: result: $UNCOMPRESS" >&5 echo "${ECHO_T}$UNCOMPRESS" >&6 else - echo "$as_me:41555: result: no" >&5 + echo "$as_me:41679: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -41611,7 +41735,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me:-configure}:41614: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me:-configure}:41738: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define UNCOMPRESS_PATH "$cf_path_prog" @@ -41629,7 +41753,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:41632: checking for $ac_word" >&5 +echo "$as_me:41756: 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 @@ -41646,7 +41770,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:41649: found $ac_dir/$ac_word" >&5 + echo "$as_me:41773: found $ac_dir/$ac_word" >&5 break fi done @@ -41657,10 +41781,10 @@ fi UNZIP=$ac_cv_path_UNZIP if test -n "$UNZIP"; then - echo "$as_me:41660: result: $UNZIP" >&5 + echo "$as_me:41784: result: $UNZIP" >&5 echo "${ECHO_T}$UNZIP" >&6 else - echo "$as_me:41663: result: no" >&5 + echo "$as_me:41787: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -41719,7 +41843,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me:-configure}:41722: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me:-configure}:41846: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define UNZIP_PATH "$cf_path_prog" @@ -41737,7 +41861,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:41740: checking for $ac_word" >&5 +echo "$as_me:41864: 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 @@ -41754,7 +41878,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:41757: found $ac_dir/$ac_word" >&5 + echo "$as_me:41881: found $ac_dir/$ac_word" >&5 break fi done @@ -41765,10 +41889,10 @@ fi BZIP2=$ac_cv_path_BZIP2 if test -n "$BZIP2"; then - echo "$as_me:41768: result: $BZIP2" >&5 + echo "$as_me:41892: result: $BZIP2" >&5 echo "${ECHO_T}$BZIP2" >&6 else - echo "$as_me:41771: result: no" >&5 + echo "$as_me:41895: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -41827,7 +41951,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me:-configure}:41830: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me:-configure}:41954: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define BZIP2_PATH "$cf_path_prog" @@ -41845,7 +41969,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:41848: checking for $ac_word" >&5 +echo "$as_me:41972: 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 @@ -41862,7 +41986,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:41865: found $ac_dir/$ac_word" >&5 + echo "$as_me:41989: found $ac_dir/$ac_word" >&5 break fi done @@ -41873,10 +41997,10 @@ fi TAR=$ac_cv_path_TAR if test -n "$TAR"; then - echo "$as_me:41876: result: $TAR" >&5 + echo "$as_me:42000: result: $TAR" >&5 echo "${ECHO_T}$TAR" >&6 else - echo "$as_me:41879: result: no" >&5 + echo "$as_me:42003: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -41935,7 +42059,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me:-configure}:41938: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me:-configure}:42062: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define TAR_PATH "$cf_path_prog" @@ -41993,7 +42117,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:41996: checking for $ac_word" >&5 +echo "$as_me:42120: 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 @@ -42010,7 +42134,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:42013: found $ac_dir/$ac_word" >&5 + echo "$as_me:42137: found $ac_dir/$ac_word" >&5 break fi done @@ -42021,10 +42145,10 @@ fi COMPRESS=$ac_cv_path_COMPRESS if test -n "$COMPRESS"; then - echo "$as_me:42024: result: $COMPRESS" >&5 + echo "$as_me:42148: result: $COMPRESS" >&5 echo "${ECHO_T}$COMPRESS" >&6 else - echo "$as_me:42027: result: no" >&5 + echo "$as_me:42151: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -42083,7 +42207,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me:-configure}:42086: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me:-configure}:42210: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define COMPRESS_PATH "$cf_path_prog" @@ -42101,7 +42225,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:42104: checking for $ac_word" >&5 +echo "$as_me:42228: 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 @@ -42118,7 +42242,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:42121: found $ac_dir/$ac_word" >&5 + echo "$as_me:42245: found $ac_dir/$ac_word" >&5 break fi done @@ -42129,10 +42253,10 @@ fi RM=$ac_cv_path_RM if test -n "$RM"; then - echo "$as_me:42132: result: $RM" >&5 + echo "$as_me:42256: result: $RM" >&5 echo "${ECHO_T}$RM" >&6 else - echo "$as_me:42135: result: no" >&5 + echo "$as_me:42259: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -42191,7 +42315,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me:-configure}:42194: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me:-configure}:42318: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define RM_PATH "$cf_path_prog" @@ -42209,7 +42333,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:42212: checking for $ac_word" >&5 +echo "$as_me:42336: 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 @@ -42226,7 +42350,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:42229: found $ac_dir/$ac_word" >&5 + echo "$as_me:42353: found $ac_dir/$ac_word" >&5 break fi done @@ -42237,10 +42361,10 @@ fi UUDECODE=$ac_cv_path_UUDECODE if test -n "$UUDECODE"; then - echo "$as_me:42240: result: $UUDECODE" >&5 + echo "$as_me:42364: result: $UUDECODE" >&5 echo "${ECHO_T}$UUDECODE" >&6 else - echo "$as_me:42243: result: no" >&5 + echo "$as_me:42367: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -42299,7 +42423,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me:-configure}:42302: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me:-configure}:42426: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define UUDECODE_PATH "$cf_path_prog" @@ -42317,7 +42441,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:42320: checking for $ac_word" >&5 +echo "$as_me:42444: 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 @@ -42334,7 +42458,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:42337: found $ac_dir/$ac_word" >&5 + echo "$as_me:42461: found $ac_dir/$ac_word" >&5 break fi done @@ -42345,10 +42469,10 @@ fi ZCAT=$ac_cv_path_ZCAT if test -n "$ZCAT"; then - echo "$as_me:42348: result: $ZCAT" >&5 + echo "$as_me:42472: result: $ZCAT" >&5 echo "${ECHO_T}$ZCAT" >&6 else - echo "$as_me:42351: result: no" >&5 + echo "$as_me:42475: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -42407,7 +42531,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me:-configure}:42410: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me:-configure}:42534: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define ZCAT_PATH "$cf_path_prog" @@ -42425,7 +42549,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:42428: checking for $ac_word" >&5 +echo "$as_me:42552: 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 @@ -42442,7 +42566,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:42445: found $ac_dir/$ac_word" >&5 + echo "$as_me:42569: found $ac_dir/$ac_word" >&5 break fi done @@ -42453,10 +42577,10 @@ fi ZIP=$ac_cv_path_ZIP if test -n "$ZIP"; then - echo "$as_me:42456: result: $ZIP" >&5 + echo "$as_me:42580: result: $ZIP" >&5 echo "${ECHO_T}$ZIP" >&6 else - echo "$as_me:42459: result: no" >&5 + echo "$as_me:42583: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -42515,7 +42639,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me:-configure}:42518: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me:-configure}:42642: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define ZIP_PATH "$cf_path_prog" @@ -42543,7 +42667,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:42546: checking for $ac_word" >&5 +echo "$as_me:42670: 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 @@ -42560,7 +42684,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:42563: found $ac_dir/$ac_word" >&5 + echo "$as_me:42687: found $ac_dir/$ac_word" >&5 break fi done @@ -42571,10 +42695,10 @@ fi INSTALL=$ac_cv_path_INSTALL if test -n "$INSTALL"; then - echo "$as_me:42574: result: $INSTALL" >&5 + echo "$as_me:42698: result: $INSTALL" >&5 echo "${ECHO_T}$INSTALL" >&6 else - echo "$as_me:42577: result: no" >&5 + echo "$as_me:42701: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -42633,7 +42757,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me:-configure}:42636: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me:-configure}:42760: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define INSTALL_PATH "$cf_path_prog" @@ -42663,7 +42787,7 @@ if test $cf_cv_screen = pdcurses ; then case $host_os in (mingw*) -echo "$as_me:42666: checking for initscr in -lpdcurses" >&5 +echo "$as_me:42790: checking for initscr in -lpdcurses" >&5 echo $ECHO_N "checking for initscr in -lpdcurses... $ECHO_C" >&6 if test "${ac_cv_lib_pdcurses_initscr+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -42671,7 +42795,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lpdcurses $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 42674 "configure" +#line 42798 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -42690,16 +42814,16 @@ initscr (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:42693: \"$ac_link\"") >&5 +if { (eval echo "$as_me:42817: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:42696: \$? = $ac_status" >&5 + echo "$as_me:42820: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:42699: \"$ac_try\"") >&5 + { (eval echo "$as_me:42823: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:42702: \$? = $ac_status" >&5 + echo "$as_me:42826: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_pdcurses_initscr=yes else @@ -42710,7 +42834,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:42713: result: $ac_cv_lib_pdcurses_initscr" >&5 +echo "$as_me:42837: result: $ac_cv_lib_pdcurses_initscr" >&5 echo "${ECHO_T}$ac_cv_lib_pdcurses_initscr" >&6 if test $ac_cv_lib_pdcurses_initscr = yes; then @@ -42732,13 +42856,13 @@ LIBS="$cf_add_libs" cf_cv_term_header=no cf_cv_unctrl_header=no - echo "$as_me:42735: checking for winwstr" >&5 + echo "$as_me:42859: checking for winwstr" >&5 echo $ECHO_N "checking for winwstr... $ECHO_C" >&6 if test "${ac_cv_func_winwstr+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 42741 "configure" +#line 42865 "configure" #include "confdefs.h" #define winwstr autoconf_temporary #include <limits.h> /* least-intrusive standard header which defines gcc2 __stub macros */ @@ -42769,16 +42893,16 @@ main (void) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:42772: \"$ac_link\"") >&5 +if { (eval echo "$as_me:42896: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:42775: \$? = $ac_status" >&5 + echo "$as_me:42899: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:42778: \"$ac_try\"") >&5 + { (eval echo "$as_me:42902: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:42781: \$? = $ac_status" >&5 + echo "$as_me:42905: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_winwstr=yes else @@ -42788,7 +42912,7 @@ ac_cv_func_winwstr=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:42791: result: $ac_cv_func_winwstr" >&5 +echo "$as_me:42915: result: $ac_cv_func_winwstr" >&5 echo "${ECHO_T}$ac_cv_func_winwstr" >&6 if test $ac_cv_func_winwstr = yes; then @@ -42798,13 +42922,13 @@ EOF fi - echo "$as_me:42801: checking for pdcurses_dll_iname" >&5 + echo "$as_me:42925: checking for pdcurses_dll_iname" >&5 echo $ECHO_N "checking for pdcurses_dll_iname... $ECHO_C" >&6 if test "${ac_cv_func_pdcurses_dll_iname+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 42807 "configure" +#line 42931 "configure" #include "confdefs.h" #define pdcurses_dll_iname autoconf_temporary #include <limits.h> /* least-intrusive standard header which defines gcc2 __stub macros */ @@ -42835,16 +42959,16 @@ main (void) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:42838: \"$ac_link\"") >&5 +if { (eval echo "$as_me:42962: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:42841: \$? = $ac_status" >&5 + echo "$as_me:42965: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:42844: \"$ac_try\"") >&5 + { (eval echo "$as_me:42968: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:42847: \$? = $ac_status" >&5 + echo "$as_me:42971: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_pdcurses_dll_iname=yes else @@ -42854,7 +42978,7 @@ ac_cv_func_pdcurses_dll_iname=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:42857: result: $ac_cv_func_pdcurses_dll_iname" >&5 +echo "$as_me:42981: result: $ac_cv_func_pdcurses_dll_iname" >&5 echo "${ECHO_T}$ac_cv_func_pdcurses_dll_iname" >&6 if test $ac_cv_func_pdcurses_dll_iname = yes; then @@ -42871,7 +42995,7 @@ fi cf_x_athena=${cf_x_athena:-Xaw} -echo "$as_me:42874: checking if you want to link with Xaw 3d library" >&5 +echo "$as_me:42998: 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= @@ -42882,14 +43006,14 @@ if test "${with_Xaw3d+set}" = set; then fi; if test "$withval" = yes ; then cf_x_athena=Xaw3d - echo "$as_me:42885: result: yes" >&5 + echo "$as_me:43009: result: yes" >&5 echo "${ECHO_T}yes" >&6 else - echo "$as_me:42888: result: no" >&5 + echo "$as_me:43012: result: no" >&5 echo "${ECHO_T}no" >&6 fi -echo "$as_me:42892: checking if you want to link with Xaw 3d xft library" >&5 +echo "$as_me:43016: checking if you want to link with Xaw 3d xft library" >&5 echo $ECHO_N "checking if you want to link with Xaw 3d xft library... $ECHO_C" >&6 withval= @@ -42900,14 +43024,14 @@ if test "${with_Xaw3dxft+set}" = set; then fi; if test "$withval" = yes ; then cf_x_athena=Xaw3dxft - echo "$as_me:42903: result: yes" >&5 + echo "$as_me:43027: result: yes" >&5 echo "${ECHO_T}yes" >&6 else - echo "$as_me:42906: result: no" >&5 + echo "$as_me:43030: result: no" >&5 echo "${ECHO_T}no" >&6 fi -echo "$as_me:42910: checking if you want to link with neXT Athena library" >&5 +echo "$as_me:43034: 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= @@ -42918,14 +43042,14 @@ if test "${with_neXtaw+set}" = set; then fi; if test "$withval" = yes ; then cf_x_athena=neXtaw - echo "$as_me:42921: result: yes" >&5 + echo "$as_me:43045: result: yes" >&5 echo "${ECHO_T}yes" >&6 else - echo "$as_me:42924: result: no" >&5 + echo "$as_me:43048: result: no" >&5 echo "${ECHO_T}no" >&6 fi -echo "$as_me:42928: checking if you want to link with Athena-Plus library" >&5 +echo "$as_me:43052: 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= @@ -42936,10 +43060,10 @@ if test "${with_XawPlus+set}" = set; then fi; if test "$withval" = yes ; then cf_x_athena=XawPlus - echo "$as_me:42939: result: yes" >&5 + echo "$as_me:43063: result: yes" >&5 echo "${ECHO_T}yes" >&6 else - echo "$as_me:42942: result: no" >&5 + echo "$as_me:43066: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -42959,17 +43083,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}:42962: testing found package $cf_athena_pkg ..." 1>&5 +echo "${as_me:-configure}:43086: 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}:42968: testing package $cf_athena_pkg CFLAGS: $cf_pkgconfig_incs ..." 1>&5 +echo "${as_me:-configure}:43092: 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}:42972: testing package $cf_athena_pkg LIBS: $cf_pkgconfig_libs ..." 1>&5 +echo "${as_me:-configure}:43096: testing package $cf_athena_pkg LIBS: $cf_pkgconfig_libs ..." 1>&5 cf_fix_cppflags=no cf_new_cflags= @@ -43100,20 +43224,20 @@ EOF LIBS=`echo "$LIBS " | sed -e 's/ / /g' -e 's%-l'"$cf_trim_lib"' %%' -e 's/ $//'` test -n "$verbose" && echo " ..trimmed $LIBS" 1>&6 -echo "${as_me:-configure}:43103: testing ..trimmed $LIBS ..." 1>&5 +echo "${as_me:-configure}:43227: testing ..trimmed $LIBS ..." 1>&5 ;; esac done -echo "$as_me:43109: checking for usable $cf_x_athena/Xmu package" >&5 +echo "$as_me:43233: 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 43116 "configure" +#line 43240 "configure" #include "confdefs.h" #include <X11/Xmu/CharSet.h> @@ -43130,16 +43254,16 @@ int check = XmuCompareISOLatin1("big", "small"); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:43133: \"$ac_link\"") >&5 +if { (eval echo "$as_me:43257: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:43136: \$? = $ac_status" >&5 + echo "$as_me:43260: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:43139: \"$ac_try\"") >&5 + { (eval echo "$as_me:43263: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:43142: \$? = $ac_status" >&5 + echo "$as_me:43266: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_xaw_compat=yes else @@ -43149,7 +43273,7 @@ cf_cv_xaw_compat=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:43152: result: $cf_cv_xaw_compat" >&5 +echo "$as_me:43276: result: $cf_cv_xaw_compat" >&5 echo "${ECHO_T}$cf_cv_xaw_compat" >&6 if test "$cf_cv_xaw_compat" = no @@ -43161,7 +43285,7 @@ echo "${ECHO_T}$cf_cv_xaw_compat" >&6 (*) test -n "$verbose" && echo " work around broken package" 1>&6 -echo "${as_me:-configure}:43164: testing work around broken package ..." 1>&5 +echo "${as_me:-configure}:43288: testing work around broken package ..." 1>&5 cf_save_xmu="$LIBS" cf_first_lib=`echo "$cf_save_xmu" | sed -e 's/^ *//' -e 's/ .*//'` @@ -43169,17 +43293,17 @@ echo "${as_me:-configure}:43164: testing work around broken package ..." 1>&5 if test "$PKG_CONFIG" != none && "$PKG_CONFIG" --exists xmu; then test -n "$verbose" && echo " found package xmu" 1>&6 -echo "${as_me:-configure}:43172: testing found package xmu ..." 1>&5 +echo "${as_me:-configure}:43296: 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}:43178: testing package xmu CFLAGS: $cf_pkgconfig_incs ..." 1>&5 +echo "${as_me:-configure}:43302: 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}:43182: testing package xmu LIBS: $cf_pkgconfig_libs ..." 1>&5 +echo "${as_me:-configure}:43306: testing package xmu LIBS: $cf_pkgconfig_libs ..." 1>&5 cf_fix_cppflags=no cf_new_cflags= @@ -43299,12 +43423,12 @@ LIBS="$cf_add_libs" test -n "$verbose" && echo " ...before $LIBS" 1>&6 -echo "${as_me:-configure}:43302: testing ...before $LIBS ..." 1>&5 +echo "${as_me:-configure}:43426: 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}:43307: testing ...after $LIBS ..." 1>&5 +echo "${as_me:-configure}:43431: testing ...after $LIBS ..." 1>&5 else cf_pkgconfig_incs= @@ -43312,12 +43436,12 @@ else test -n "$verbose" && echo " ...before $LIBS" 1>&6 -echo "${as_me:-configure}:43315: testing ...before $LIBS ..." 1>&5 +echo "${as_me:-configure}:43439: testing ...before $LIBS ..." 1>&5 LIBS=`echo "$LIBS" | sed -e "s/[ ][ ]*/ /g" -e "s%$cf_first_lib %$cf_first_lib -lXmu %" -e 's% % %g'` test -n "$verbose" && echo " ...after $LIBS" 1>&6 -echo "${as_me:-configure}:43320: testing ...after $LIBS ..." 1>&5 +echo "${as_me:-configure}:43444: testing ...after $LIBS ..." 1>&5 fi @@ -43328,7 +43452,7 @@ fi LIBS=`echo "$LIBS " | sed -e 's/ / /g' -e 's%-l'"$cf_trim_lib"' %%' -e 's/ $//'` test -n "$verbose" && echo " ..trimmed $LIBS" 1>&6 -echo "${as_me:-configure}:43331: testing ..trimmed $LIBS ..." 1>&5 +echo "${as_me:-configure}:43455: testing ..trimmed $LIBS ..." 1>&5 ;; esac @@ -43353,17 +43477,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}:43356: testing found package Xext ..." 1>&5 +echo "${as_me:-configure}:43480: 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}:43362: testing package Xext CFLAGS: $cf_pkgconfig_incs ..." 1>&5 +echo "${as_me:-configure}:43486: 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}:43366: testing package Xext LIBS: $cf_pkgconfig_libs ..." 1>&5 +echo "${as_me:-configure}:43490: testing package Xext LIBS: $cf_pkgconfig_libs ..." 1>&5 cf_fix_cppflags=no cf_new_cflags= @@ -43484,7 +43608,7 @@ else cf_pkgconfig_incs= cf_pkgconfig_libs= - echo "$as_me:43487: checking for XextCreateExtension in -lXext" >&5 + echo "$as_me:43611: 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 @@ -43492,7 +43616,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lXext $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 43495 "configure" +#line 43619 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -43511,16 +43635,16 @@ XextCreateExtension (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:43514: \"$ac_link\"") >&5 +if { (eval echo "$as_me:43638: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:43517: \$? = $ac_status" >&5 + echo "$as_me:43641: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:43520: \"$ac_try\"") >&5 + { (eval echo "$as_me:43644: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:43523: \$? = $ac_status" >&5 + echo "$as_me:43647: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_Xext_XextCreateExtension=yes else @@ -43531,7 +43655,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:43534: result: $ac_cv_lib_Xext_XextCreateExtension" >&5 +echo "$as_me:43658: 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 @@ -43567,17 +43691,17 @@ then if test "$PKG_CONFIG" != none && "$PKG_CONFIG" --exists x11; then test -n "$verbose" && echo " found package x11" 1>&6 -echo "${as_me:-configure}:43570: testing found package x11 ..." 1>&5 +echo "${as_me:-configure}:43694: 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}:43576: testing package x11 CFLAGS: $cf_pkgconfig_incs ..." 1>&5 +echo "${as_me:-configure}:43700: 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}:43580: testing package x11 LIBS: $cf_pkgconfig_libs ..." 1>&5 +echo "${as_me:-configure}:43704: testing package x11 LIBS: $cf_pkgconfig_libs ..." 1>&5 cf_fix_cppflags=no cf_new_cflags= @@ -43697,24 +43821,24 @@ LIBS="$cf_add_libs" else cf_pkgconfig_incs= cf_pkgconfig_libs= - { echo "$as_me:43700: WARNING: unable to find X11 library" >&5 + { echo "$as_me:43824: WARNING: unable to find X11 library" >&5 echo "$as_me: WARNING: unable to find X11 library" >&2;} fi if test "$PKG_CONFIG" != none && "$PKG_CONFIG" --exists ice; then test -n "$verbose" && echo " found package ice" 1>&6 -echo "${as_me:-configure}:43707: testing found package ice ..." 1>&5 +echo "${as_me:-configure}:43831: 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}:43713: testing package ice CFLAGS: $cf_pkgconfig_incs ..." 1>&5 +echo "${as_me:-configure}:43837: 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}:43717: testing package ice LIBS: $cf_pkgconfig_libs ..." 1>&5 +echo "${as_me:-configure}:43841: testing package ice LIBS: $cf_pkgconfig_libs ..." 1>&5 cf_fix_cppflags=no cf_new_cflags= @@ -43834,24 +43958,24 @@ LIBS="$cf_add_libs" else cf_pkgconfig_incs= cf_pkgconfig_libs= - { echo "$as_me:43837: WARNING: unable to find ICE library" >&5 + { echo "$as_me:43961: WARNING: unable to find ICE library" >&5 echo "$as_me: WARNING: unable to find ICE library" >&2;} fi if test "$PKG_CONFIG" != none && "$PKG_CONFIG" --exists sm; then test -n "$verbose" && echo " found package sm" 1>&6 -echo "${as_me:-configure}:43844: testing found package sm ..." 1>&5 +echo "${as_me:-configure}:43968: 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}:43850: testing package sm CFLAGS: $cf_pkgconfig_incs ..." 1>&5 +echo "${as_me:-configure}:43974: 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}:43854: testing package sm LIBS: $cf_pkgconfig_libs ..." 1>&5 +echo "${as_me:-configure}:43978: testing package sm LIBS: $cf_pkgconfig_libs ..." 1>&5 cf_fix_cppflags=no cf_new_cflags= @@ -43971,24 +44095,24 @@ LIBS="$cf_add_libs" else cf_pkgconfig_incs= cf_pkgconfig_libs= - { echo "$as_me:43974: WARNING: unable to find SM library" >&5 + { echo "$as_me:44098: WARNING: unable to find SM library" >&5 echo "$as_me: WARNING: unable to find SM library" >&2;} fi if test "$PKG_CONFIG" != none && "$PKG_CONFIG" --exists xt; then test -n "$verbose" && echo " found package xt" 1>&6 -echo "${as_me:-configure}:43981: testing found package xt ..." 1>&5 +echo "${as_me:-configure}:44105: 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}:43987: testing package xt CFLAGS: $cf_pkgconfig_incs ..." 1>&5 +echo "${as_me:-configure}:44111: 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}:43991: testing package xt LIBS: $cf_pkgconfig_libs ..." 1>&5 +echo "${as_me:-configure}:44115: testing package xt LIBS: $cf_pkgconfig_libs ..." 1>&5 cf_fix_cppflags=no cf_new_cflags= @@ -44108,7 +44232,7 @@ LIBS="$cf_add_libs" else cf_pkgconfig_incs= cf_pkgconfig_libs= - { echo "$as_me:44111: WARNING: unable to find Xt library" >&5 + { echo "$as_me:44235: WARNING: unable to find Xt library" >&5 echo "$as_me: WARNING: unable to find Xt library" >&2;} fi @@ -44121,17 +44245,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}:44124: testing found package xt ..." 1>&5 +echo "${as_me:-configure}:44248: 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}:44130: testing package xt CFLAGS: $cf_pkgconfig_incs ..." 1>&5 +echo "${as_me:-configure}:44254: 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}:44134: testing package xt LIBS: $cf_pkgconfig_libs ..." 1>&5 +echo "${as_me:-configure}:44258: testing package xt LIBS: $cf_pkgconfig_libs ..." 1>&5 cf_fix_cppflags=no cf_new_cflags= @@ -44252,14 +44376,14 @@ LIBS="$cf_add_libs" ;; (*) # we have an "xt" package, but it may omit Xt's dependency on X11 -echo "$as_me:44255: checking for usable X dependency" >&5 +echo "$as_me:44379: 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 44262 "configure" +#line 44386 "configure" #include "confdefs.h" #include <X11/Xlib.h> @@ -44278,16 +44402,16 @@ main (void) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:44281: \"$ac_link\"") >&5 +if { (eval echo "$as_me:44405: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:44284: \$? = $ac_status" >&5 + echo "$as_me:44408: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:44287: \"$ac_try\"") >&5 + { (eval echo "$as_me:44411: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:44290: \$? = $ac_status" >&5 + echo "$as_me:44414: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_xt_x11_compat=yes else @@ -44297,30 +44421,30 @@ cf_cv_xt_x11_compat=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:44300: result: $cf_cv_xt_x11_compat" >&5 +echo "$as_me:44424: 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}:44306: testing work around broken X11 dependency ..." 1>&5 +echo "${as_me:-configure}:44430: 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}:44313: testing found package x11 ..." 1>&5 +echo "${as_me:-configure}:44437: 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}:44319: testing package x11 CFLAGS: $cf_pkgconfig_incs ..." 1>&5 +echo "${as_me:-configure}:44443: 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}:44323: testing package x11 LIBS: $cf_pkgconfig_libs ..." 1>&5 +echo "${as_me:-configure}:44447: testing package x11 LIBS: $cf_pkgconfig_libs ..." 1>&5 cf_fix_cppflags=no cf_new_cflags= @@ -44443,12 +44567,12 @@ else test -n "$verbose" && echo " ...before $LIBS" 1>&6 -echo "${as_me:-configure}:44446: testing ...before $LIBS ..." 1>&5 +echo "${as_me:-configure}:44570: testing ...before $LIBS ..." 1>&5 LIBS=`echo "$LIBS" | sed -e "s/[ ][ ]*/ /g" -e "s%-lXt %-lXt -lX11 %" -e 's% % %g'` test -n "$verbose" && echo " ...after $LIBS" 1>&6 -echo "${as_me:-configure}:44451: testing ...after $LIBS ..." 1>&5 +echo "${as_me:-configure}:44575: testing ...after $LIBS ..." 1>&5 fi @@ -44456,14 +44580,14 @@ fi ;; esac -echo "$as_me:44459: checking for usable X Toolkit package" >&5 +echo "$as_me:44583: 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 44466 "configure" +#line 44590 "configure" #include "confdefs.h" #include <X11/Shell.h> @@ -44478,16 +44602,16 @@ int num = IceConnectionNumber(0); (void) num } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:44481: \"$ac_link\"") >&5 +if { (eval echo "$as_me:44605: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:44484: \$? = $ac_status" >&5 + echo "$as_me:44608: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:44487: \"$ac_try\"") >&5 + { (eval echo "$as_me:44611: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:44490: \$? = $ac_status" >&5 + echo "$as_me:44614: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_xt_ice_compat=yes else @@ -44497,7 +44621,7 @@ cf_cv_xt_ice_compat=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:44500: result: $cf_cv_xt_ice_compat" >&5 +echo "$as_me:44624: result: $cf_cv_xt_ice_compat" >&5 echo "${ECHO_T}$cf_cv_xt_ice_compat" >&6 if test "$cf_cv_xt_ice_compat" = no @@ -44511,22 +44635,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}:44514: testing work around broken ICE dependency ..." 1>&5 +echo "${as_me:-configure}:44638: 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}:44519: testing found package ice ..." 1>&5 +echo "${as_me:-configure}:44643: 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}:44525: testing package ice CFLAGS: $cf_pkgconfig_incs ..." 1>&5 +echo "${as_me:-configure}:44649: 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}:44529: testing package ice LIBS: $cf_pkgconfig_libs ..." 1>&5 +echo "${as_me:-configure}:44653: testing package ice LIBS: $cf_pkgconfig_libs ..." 1>&5 cf_fix_cppflags=no cf_new_cflags= @@ -44645,17 +44769,17 @@ LIBS="$cf_add_libs" if test "$PKG_CONFIG" != none && "$PKG_CONFIG" --exists sm; then test -n "$verbose" && echo " found package sm" 1>&6 -echo "${as_me:-configure}:44648: testing found package sm ..." 1>&5 +echo "${as_me:-configure}:44772: 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}:44654: testing package sm CFLAGS: $cf_pkgconfig_incs ..." 1>&5 +echo "${as_me:-configure}:44778: 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}:44658: testing package sm LIBS: $cf_pkgconfig_libs ..." 1>&5 +echo "${as_me:-configure}:44782: testing package sm LIBS: $cf_pkgconfig_libs ..." 1>&5 cf_fix_cppflags=no cf_new_cflags= @@ -44784,12 +44908,12 @@ else test -n "$verbose" && echo " ...before $LIBS" 1>&6 -echo "${as_me:-configure}:44787: testing ...before $LIBS ..." 1>&5 +echo "${as_me:-configure}:44911: testing ...before $LIBS ..." 1>&5 LIBS=`echo "$LIBS" | sed -e "s/[ ][ ]*/ /g" -e "s%-lXt %-lXt $X_PRE_LIBS %" -e 's% % %g'` test -n "$verbose" && echo " ...after $LIBS" 1>&6 -echo "${as_me:-configure}:44792: testing ...after $LIBS ..." 1>&5 +echo "${as_me:-configure}:44916: testing ...after $LIBS ..." 1>&5 fi @@ -44809,7 +44933,7 @@ else test -n "$verbose" && echo " checking additions to CFLAGS" 1>&6 -echo "${as_me:-configure}:44812: testing checking additions to CFLAGS ..." 1>&5 +echo "${as_me:-configure}:44936: testing checking additions to CFLAGS ..." 1>&5 cf_check_cflags="$CFLAGS" cf_check_cppflags="$CPPFLAGS" @@ -44894,7 +45018,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}:44897: testing add to \$CFLAGS $cf_new_cflags ..." 1>&5 +echo "${as_me:-configure}:45021: testing add to \$CFLAGS $cf_new_cflags ..." 1>&5 test -n "$CFLAGS" && CFLAGS="$CFLAGS " CFLAGS="${CFLAGS}$cf_new_cflags" @@ -44904,7 +45028,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}:44907: testing add to \$CPPFLAGS $cf_new_cppflags ..." 1>&5 +echo "${as_me:-configure}:45031: testing add to \$CPPFLAGS $cf_new_cppflags ..." 1>&5 test -n "$CPPFLAGS" && CPPFLAGS="$CPPFLAGS " CPPFLAGS="${CPPFLAGS}$cf_new_cppflags" @@ -44914,7 +45038,7 @@ fi if test -n "$cf_new_extra_cppflags" ; then test -n "$verbose" && echo " add to \$EXTRA_CPPFLAGS $cf_new_extra_cppflags" 1>&6 -echo "${as_me:-configure}:44917: testing add to \$EXTRA_CPPFLAGS $cf_new_extra_cppflags ..." 1>&5 +echo "${as_me:-configure}:45041: testing add to \$EXTRA_CPPFLAGS $cf_new_extra_cppflags ..." 1>&5 test -n "$EXTRA_CPPFLAGS" && EXTRA_CPPFLAGS="$EXTRA_CPPFLAGS " EXTRA_CPPFLAGS="${EXTRA_CPPFLAGS}$cf_new_extra_cppflags" @@ -44923,7 +45047,7 @@ fi if test "x$cf_check_cflags" != "x$CFLAGS" ; then cat >conftest.$ac_ext <<_ACEOF -#line 44926 "configure" +#line 45050 "configure" #include "confdefs.h" #include <stdio.h> int @@ -44935,16 +45059,16 @@ printf("Hello world"); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:44938: \"$ac_link\"") >&5 +if { (eval echo "$as_me:45062: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:44941: \$? = $ac_status" >&5 + echo "$as_me:45065: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:44944: \"$ac_try\"") >&5 + { (eval echo "$as_me:45068: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:44947: \$? = $ac_status" >&5 + echo "$as_me:45071: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -44952,12 +45076,12 @@ else cat conftest.$ac_ext >&5 test -n "$verbose" && echo " test-compile failed. Undoing change to \$CFLAGS" 1>&6 -echo "${as_me:-configure}:44955: testing test-compile failed. Undoing change to \$CFLAGS ..." 1>&5 +echo "${as_me:-configure}:45079: testing test-compile failed. Undoing change to \$CFLAGS ..." 1>&5 if test "x$cf_check_cppflags" != "x$CPPFLAGS" ; then test -n "$verbose" && echo " but keeping change to \$CPPFLAGS" 1>&6 -echo "${as_me:-configure}:44960: testing but keeping change to \$CPPFLAGS ..." 1>&5 +echo "${as_me:-configure}:45084: testing but keeping change to \$CPPFLAGS ..." 1>&5 fi CFLAGS="$cf_check_flags" @@ -44965,13 +45089,13 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi - echo "$as_me:44968: checking for XOpenDisplay" >&5 + echo "$as_me:45092: 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 44974 "configure" +#line 45098 "configure" #include "confdefs.h" #define XOpenDisplay autoconf_temporary #include <limits.h> /* least-intrusive standard header which defines gcc2 __stub macros */ @@ -45002,16 +45126,16 @@ main (void) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:45005: \"$ac_link\"") >&5 +if { (eval echo "$as_me:45129: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:45008: \$? = $ac_status" >&5 + echo "$as_me:45132: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:45011: \"$ac_try\"") >&5 + { (eval echo "$as_me:45135: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:45014: \$? = $ac_status" >&5 + echo "$as_me:45138: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_XOpenDisplay=yes else @@ -45021,13 +45145,13 @@ ac_cv_func_XOpenDisplay=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:45024: result: $ac_cv_func_XOpenDisplay" >&5 +echo "$as_me:45148: 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:45030: checking for XOpenDisplay in -lX11" >&5 + echo "$as_me:45154: 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 @@ -45035,7 +45159,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lX11 $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 45038 "configure" +#line 45162 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -45054,16 +45178,16 @@ XOpenDisplay (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:45057: \"$ac_link\"") >&5 +if { (eval echo "$as_me:45181: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:45060: \$? = $ac_status" >&5 + echo "$as_me:45184: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:45063: \"$ac_try\"") >&5 + { (eval echo "$as_me:45187: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:45066: \$? = $ac_status" >&5 + echo "$as_me:45190: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_X11_XOpenDisplay=yes else @@ -45074,7 +45198,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:45077: result: $ac_cv_lib_X11_XOpenDisplay" >&5 +echo "$as_me:45201: 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 @@ -45098,13 +45222,13 @@ fi fi - echo "$as_me:45101: checking for XtAppInitialize" >&5 + echo "$as_me:45225: 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 45107 "configure" +#line 45231 "configure" #include "confdefs.h" #define XtAppInitialize autoconf_temporary #include <limits.h> /* least-intrusive standard header which defines gcc2 __stub macros */ @@ -45135,16 +45259,16 @@ main (void) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:45138: \"$ac_link\"") >&5 +if { (eval echo "$as_me:45262: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:45141: \$? = $ac_status" >&5 + echo "$as_me:45265: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:45144: \"$ac_try\"") >&5 + { (eval echo "$as_me:45268: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:45147: \$? = $ac_status" >&5 + echo "$as_me:45271: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_XtAppInitialize=yes else @@ -45154,13 +45278,13 @@ ac_cv_func_XtAppInitialize=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:45157: result: $ac_cv_func_XtAppInitialize" >&5 +echo "$as_me:45281: 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:45163: checking for XtAppInitialize in -lXt" >&5 + echo "$as_me:45287: 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 @@ -45168,7 +45292,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lXt $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 45171 "configure" +#line 45295 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -45187,16 +45311,16 @@ XtAppInitialize (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:45190: \"$ac_link\"") >&5 +if { (eval echo "$as_me:45314: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:45193: \$? = $ac_status" >&5 + echo "$as_me:45317: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:45196: \"$ac_try\"") >&5 + { (eval echo "$as_me:45320: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:45199: \$? = $ac_status" >&5 + echo "$as_me:45323: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_Xt_XtAppInitialize=yes else @@ -45207,7 +45331,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:45210: result: $ac_cv_lib_Xt_XtAppInitialize" >&5 +echo "$as_me:45334: 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 @@ -45224,7 +45348,7 @@ fi fi if test $cf_have_X_LIBS = no ; then - { echo "$as_me:45227: WARNING: Unable to successfully link X Toolkit library (-lXt) with + { echo "$as_me:45351: 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 @@ -45265,14 +45389,14 @@ done test -n "$CPPFLAGS" && CPPFLAGS="$CPPFLAGS " CPPFLAGS="${CPPFLAGS}-I$cf_path/include" - echo "$as_me:45268: checking for $cf_test in $cf_path" >&5 + echo "$as_me:45392: 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:45271: checking for $cf_test" >&5 + echo "$as_me:45395: checking for $cf_test" >&5 echo $ECHO_N "checking for $cf_test... $ECHO_C" >&6 fi cat >conftest.$ac_ext <<_ACEOF -#line 45275 "configure" +#line 45399 "configure" #include "confdefs.h" #include <X11/Intrinsic.h> @@ -45286,16 +45410,16 @@ main (void) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:45289: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:45413: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:45292: \$? = $ac_status" >&5 + echo "$as_me:45416: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:45295: \"$ac_try\"") >&5 + { (eval echo "$as_me:45419: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:45298: \$? = $ac_status" >&5 + echo "$as_me:45422: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_result=yes else @@ -45304,7 +45428,7 @@ cat conftest.$ac_ext >&5 cf_result=no fi rm -f conftest.$ac_objext conftest.$ac_ext - echo "$as_me:45307: result: $cf_result" >&5 + echo "$as_me:45431: result: $cf_result" >&5 echo "${ECHO_T}$cf_result" >&6 LIBS="$cf_save_LIBS_CF_X_ATHENA_CPPFLAGS" @@ -45320,7 +45444,7 @@ CPPFLAGS="$cf_save_CPPFLAGS_CF_X_ATHENA_CPPFLAGS" done if test -z "$cf_x_athena_inc" ; then - { echo "$as_me:45323: WARNING: Unable to find Athena header files" >&5 + { echo "$as_me:45447: WARNING: Unable to find Athena header files" >&5 echo "$as_me: WARNING: Unable to find Athena header files" >&2;} elif test "$cf_x_athena_inc" != default ; then @@ -45385,10 +45509,10 @@ for cf_add_1lib in $cf_add_0lib; do done LIBS="$cf_add_libs" - echo "$as_me:45388: checking for $cf_test in $cf_libs" >&5 + echo "$as_me:45512: checking for $cf_test in $cf_libs" >&5 echo $ECHO_N "checking for $cf_test in $cf_libs... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF -#line 45391 "configure" +#line 45515 "configure" #include "confdefs.h" #include <X11/Intrinsic.h> @@ -45404,16 +45528,16 @@ $cf_test((XtAppContext) 0) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:45407: \"$ac_link\"") >&5 +if { (eval echo "$as_me:45531: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:45410: \$? = $ac_status" >&5 + echo "$as_me:45534: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:45413: \"$ac_try\"") >&5 + { (eval echo "$as_me:45537: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:45416: \$? = $ac_status" >&5 + echo "$as_me:45540: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_result=yes else @@ -45422,7 +45546,7 @@ cat conftest.$ac_ext >&5 cf_result=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext - echo "$as_me:45425: result: $cf_result" >&5 + echo "$as_me:45549: result: $cf_result" >&5 echo "${ECHO_T}$cf_result" >&6 LIBS="$cf_save_LIBS_CF_X_ATHENA_LIBS" @@ -45439,7 +45563,7 @@ CPPFLAGS="$cf_save_CPPFLAGS_CF_X_ATHENA_LIBS" done if test -z "$cf_x_athena_lib" ; then - { { echo "$as_me:45442: error: Unable to successfully link Athena library (-l$cf_x_athena_root) with test program" >&5 + { { echo "$as_me:45566: 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 @@ -45473,7 +45597,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:45476: checking for $ac_word" >&5 +echo "$as_me:45600: 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 @@ -45488,7 +45612,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:45491: found $ac_dir/$ac_word" >&5 +echo "$as_me:45615: found $ac_dir/$ac_word" >&5 break done @@ -45496,10 +45620,10 @@ fi fi XCURSES_CONFIG=$ac_cv_prog_XCURSES_CONFIG if test -n "$XCURSES_CONFIG"; then - echo "$as_me:45499: result: $XCURSES_CONFIG" >&5 + echo "$as_me:45623: result: $XCURSES_CONFIG" >&5 echo "${ECHO_T}$XCURSES_CONFIG" >&6 else - echo "$as_me:45502: result: no" >&5 + echo "$as_me:45626: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -45512,7 +45636,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:45515: checking for $ac_word" >&5 +echo "$as_me:45639: 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 @@ -45527,7 +45651,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:45530: found $ac_dir/$ac_word" >&5 +echo "$as_me:45654: found $ac_dir/$ac_word" >&5 break done @@ -45535,10 +45659,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:45538: result: $ac_ct_XCURSES_CONFIG" >&5 + echo "$as_me:45662: result: $ac_ct_XCURSES_CONFIG" >&5 echo "${ECHO_T}$ac_ct_XCURSES_CONFIG" >&6 else - echo "$as_me:45541: result: no" >&5 + echo "$as_me:45665: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -45673,7 +45797,7 @@ LDFLAGS="$LDFLAGS $X_LIBS" test -n "$verbose" && echo " checking additions to CFLAGS" 1>&6 -echo "${as_me:-configure}:45676: testing checking additions to CFLAGS ..." 1>&5 +echo "${as_me:-configure}:45800: testing checking additions to CFLAGS ..." 1>&5 cf_check_cflags="$CFLAGS" cf_check_cppflags="$CPPFLAGS" @@ -45758,7 +45882,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}:45761: testing add to \$CFLAGS $cf_new_cflags ..." 1>&5 +echo "${as_me:-configure}:45885: testing add to \$CFLAGS $cf_new_cflags ..." 1>&5 test -n "$CFLAGS" && CFLAGS="$CFLAGS " CFLAGS="${CFLAGS}$cf_new_cflags" @@ -45768,7 +45892,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}:45771: testing add to \$CPPFLAGS $cf_new_cppflags ..." 1>&5 +echo "${as_me:-configure}:45895: testing add to \$CPPFLAGS $cf_new_cppflags ..." 1>&5 test -n "$CPPFLAGS" && CPPFLAGS="$CPPFLAGS " CPPFLAGS="${CPPFLAGS}$cf_new_cppflags" @@ -45778,7 +45902,7 @@ fi if test -n "$cf_new_extra_cppflags" ; then test -n "$verbose" && echo " add to \$EXTRA_CPPFLAGS $cf_new_extra_cppflags" 1>&6 -echo "${as_me:-configure}:45781: testing add to \$EXTRA_CPPFLAGS $cf_new_extra_cppflags ..." 1>&5 +echo "${as_me:-configure}:45905: testing add to \$EXTRA_CPPFLAGS $cf_new_extra_cppflags ..." 1>&5 test -n "$EXTRA_CPPFLAGS" && EXTRA_CPPFLAGS="$EXTRA_CPPFLAGS " EXTRA_CPPFLAGS="${EXTRA_CPPFLAGS}$cf_new_extra_cppflags" @@ -45787,7 +45911,7 @@ fi if test "x$cf_check_cflags" != "x$CFLAGS" ; then cat >conftest.$ac_ext <<_ACEOF -#line 45790 "configure" +#line 45914 "configure" #include "confdefs.h" #include <stdio.h> int @@ -45799,16 +45923,16 @@ printf("Hello world"); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:45802: \"$ac_link\"") >&5 +if { (eval echo "$as_me:45926: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:45805: \$? = $ac_status" >&5 + echo "$as_me:45929: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:45808: \"$ac_try\"") >&5 + { (eval echo "$as_me:45932: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:45811: \$? = $ac_status" >&5 + echo "$as_me:45935: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -45816,12 +45940,12 @@ else cat conftest.$ac_ext >&5 test -n "$verbose" && echo " test-compile failed. Undoing change to \$CFLAGS" 1>&6 -echo "${as_me:-configure}:45819: testing test-compile failed. Undoing change to \$CFLAGS ..." 1>&5 +echo "${as_me:-configure}:45943: testing test-compile failed. Undoing change to \$CFLAGS ..." 1>&5 if test "x$cf_check_cppflags" != "x$CPPFLAGS" ; then test -n "$verbose" && echo " but keeping change to \$CPPFLAGS" 1>&6 -echo "${as_me:-configure}:45824: testing but keeping change to \$CPPFLAGS ..." 1>&5 +echo "${as_me:-configure}:45948: testing but keeping change to \$CPPFLAGS ..." 1>&5 fi CFLAGS="$cf_check_flags" @@ -45829,7 +45953,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:45832: checking for XOpenDisplay in -lX11" >&5 +echo "$as_me:45956: 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 @@ -45837,7 +45961,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lX11 $X_PRE_LIBS $LIBS $X_EXTRA_LIBS $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 45840 "configure" +#line 45964 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -45856,16 +45980,16 @@ XOpenDisplay (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:45859: \"$ac_link\"") >&5 +if { (eval echo "$as_me:45983: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:45862: \$? = $ac_status" >&5 + echo "$as_me:45986: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:45865: \"$ac_try\"") >&5 + { (eval echo "$as_me:45989: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:45868: \$? = $ac_status" >&5 + echo "$as_me:45992: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_X11_XOpenDisplay=yes else @@ -45876,7 +46000,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:45879: result: $ac_cv_lib_X11_XOpenDisplay" >&5 +echo "$as_me:46003: 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 @@ -45898,7 +46022,7 @@ LIBS="$cf_add_libs" fi -echo "$as_me:45901: checking for XCurses library" >&5 +echo "$as_me:46025: 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 @@ -45921,7 +46045,7 @@ done LIBS="$cf_add_libs" cat >conftest.$ac_ext <<_ACEOF -#line 45924 "configure" +#line 46048 "configure" #include "confdefs.h" #include <xcurses.h> @@ -45936,16 +46060,16 @@ XCursesExit(); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:45939: \"$ac_link\"") >&5 +if { (eval echo "$as_me:46063: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:45942: \$? = $ac_status" >&5 + echo "$as_me:46066: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:45945: \"$ac_try\"") >&5 + { (eval echo "$as_me:46069: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:45948: \$? = $ac_status" >&5 + echo "$as_me:46072: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_lib_XCurses=yes else @@ -45956,7 +46080,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:45959: result: $cf_cv_lib_XCurses" >&5 +echo "$as_me:46083: result: $cf_cv_lib_XCurses" >&5 echo "${ECHO_T}$cf_cv_lib_XCurses" >&6 fi @@ -45971,23 +46095,23 @@ cat >>confdefs.h <<\EOF #define XCURSES 1 EOF - echo "$as_me:45974: checking for xcurses.h" >&5 + echo "$as_me:46098: 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 45980 "configure" +#line 46104 "configure" #include "confdefs.h" #include <xcurses.h> _ACEOF -if { (eval echo "$as_me:45984: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:46108: \"$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:45990: \$? = $ac_status" >&5 + echo "$as_me:46114: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -46006,7 +46130,7 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:46009: result: $ac_cv_header_xcurses_h" >&5 +echo "$as_me:46133: 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 @@ -46017,7 +46141,7 @@ EOF fi else - { { echo "$as_me:46020: error: Cannot link with XCurses" >&5 + { { echo "$as_me:46144: error: Cannot link with XCurses" >&5 echo "$as_me: error: Cannot link with XCurses" >&2;} { (exit 1); exit 1; }; } fi @@ -46026,7 +46150,7 @@ fi esac else -echo "$as_me:46029: checking if we can include termio.h with curses" >&5 +echo "$as_me:46153: 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 @@ -46036,7 +46160,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 46039 "configure" +#line 46163 "configure" #include "confdefs.h" #include <LYCurses.h> @@ -46050,16 +46174,16 @@ putchar(0x0a) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:46053: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:46177: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:46056: \$? = $ac_status" >&5 + echo "$as_me:46180: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:46059: \"$ac_try\"") >&5 + { (eval echo "$as_me:46183: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:46062: \$? = $ac_status" >&5 + echo "$as_me:46186: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_termio_and_curses=yes else @@ -46072,7 +46196,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext rm -f lynx_cfg.h fi -echo "$as_me:46075: result: $cf_cv_termio_and_curses" >&5 +echo "$as_me:46199: result: $cf_cv_termio_and_curses" >&5 echo "${ECHO_T}$cf_cv_termio_and_curses" >&6 test $cf_cv_termio_and_curses = yes && @@ -46089,23 +46213,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:46092: checking for $ac_header" >&5 +echo "$as_me:46216: 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 46098 "configure" +#line 46222 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:46102: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:46226: \"$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:46108: \$? = $ac_status" >&5 + echo "$as_me:46232: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -46124,7 +46248,7 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:46127: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:46251: 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 @@ -46136,7 +46260,7 @@ done fi -echo "$as_me:46139: checking if curses supports alternate-character set" >&5 +echo "$as_me:46263: 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 @@ -46145,7 +46269,7 @@ else for mapname in acs_map _acs_map do cat >conftest.$ac_ext <<_ACEOF -#line 46148 "configure" +#line 46272 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> @@ -46159,16 +46283,16 @@ chtype x = $mapname['l']; $mapname['m'] = 0 } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:46162: \"$ac_link\"") >&5 +if { (eval echo "$as_me:46286: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:46165: \$? = $ac_status" >&5 + echo "$as_me:46289: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:46168: \"$ac_try\"") >&5 + { (eval echo "$as_me:46292: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:46171: \$? = $ac_status" >&5 + echo "$as_me:46295: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_alt_char_set=$mapname break @@ -46182,21 +46306,21 @@ done fi -echo "$as_me:46185: result: $cf_cv_alt_char_set" >&5 +echo "$as_me:46309: 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:46192: checking if curses supports fancy attributes" >&5 +echo "$as_me:46316: 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 46199 "configure" +#line 46323 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> @@ -46214,16 +46338,16 @@ attrset(A_UNDERLINE|A_BOLD|A_REVERSE); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:46217: \"$ac_link\"") >&5 +if { (eval echo "$as_me:46341: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:46220: \$? = $ac_status" >&5 + echo "$as_me:46344: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:46223: \"$ac_try\"") >&5 + { (eval echo "$as_me:46347: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:46226: \$? = $ac_status" >&5 + echo "$as_me:46350: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_fancy_curses=yes else @@ -46235,14 +46359,14 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:46238: result: $cf_cv_fancy_curses" >&5 +echo "$as_me:46362: 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:46245: checking for function curses_version" >&5 +echo "$as_me:46369: 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 @@ -46252,7 +46376,7 @@ if test "$cross_compiling" = yes; then cf_cv_func_curses_version=unknown else cat >conftest.$ac_ext <<_ACEOF -#line 46255 "configure" +#line 46379 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> @@ -46265,15 +46389,15 @@ int main(void) _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:46268: \"$ac_link\"") >&5 +if { (eval echo "$as_me:46392: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:46271: \$? = $ac_status" >&5 + echo "$as_me:46395: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:46273: \"$ac_try\"") >&5 + { (eval echo "$as_me:46397: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:46276: \$? = $ac_status" >&5 + echo "$as_me:46400: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_func_curses_version=yes @@ -46288,7 +46412,7 @@ rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext fi rm -f core fi -echo "$as_me:46291: result: $cf_cv_func_curses_version" >&5 +echo "$as_me:46415: 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 @@ -46296,14 +46420,14 @@ cat >>confdefs.h <<\EOF EOF if test "$cf_cv_ncurses_version" != no ; then -echo "$as_me:46299: checking for obsolete/broken version of ncurses" >&5 +echo "$as_me:46423: 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 46306 "configure" +#line 46430 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> @@ -46322,16 +46446,16 @@ main (void) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:46325: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:46449: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:46328: \$? = $ac_status" >&5 + echo "$as_me:46452: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:46331: \"$ac_try\"") >&5 + { (eval echo "$as_me:46455: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:46334: \$? = $ac_status" >&5 + echo "$as_me:46458: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_ncurses_broken=no else @@ -46343,10 +46467,10 @@ rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:46346: result: $cf_cv_ncurses_broken" >&5 +echo "$as_me:46470: 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:46349: WARNING: hmm... you should get an up-to-date version of ncurses" >&5 + { echo "$as_me:46473: 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 @@ -46356,14 +46480,14 @@ EOF fi fi -echo "$as_me:46359: checking if curses supports color attributes" >&5 +echo "$as_me:46483: 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 46366 "configure" +#line 46490 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> @@ -46383,16 +46507,16 @@ chtype x = COLOR_BLUE; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:46386: \"$ac_link\"") >&5 +if { (eval echo "$as_me:46510: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:46389: \$? = $ac_status" >&5 + echo "$as_me:46513: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:46392: \"$ac_try\"") >&5 + { (eval echo "$as_me:46516: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:46395: \$? = $ac_status" >&5 + echo "$as_me:46519: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_color_curses=yes else @@ -46404,7 +46528,7 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:46407: result: $cf_cv_color_curses" >&5 +echo "$as_me:46531: result: $cf_cv_color_curses" >&5 echo "${ECHO_T}$cf_cv_color_curses" >&6 if test $cf_cv_color_curses = yes ; then @@ -46428,23 +46552,23 @@ sys/termio.h \ do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` -echo "$as_me:46431: checking for $ac_header" >&5 +echo "$as_me:46555: 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 46437 "configure" +#line 46561 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:46441: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:46565: \"$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:46447: \$? = $ac_status" >&5 + echo "$as_me:46571: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -46463,7 +46587,7 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:46466: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:46590: 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 @@ -46480,10 +46604,10 @@ if test "$ac_cv_header_termios_h" = yes ; then (*) termios_bad=maybe ;; esac if test "$termios_bad" = maybe ; then - echo "$as_me:46483: checking whether termios.h needs _POSIX_SOURCE" >&5 + echo "$as_me:46607: 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 46486 "configure" +#line 46610 "configure" #include "confdefs.h" #include <termios.h> int @@ -46495,16 +46619,16 @@ struct termios foo; int x = foo.c_iflag = 1; (void)x } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:46498: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:46622: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:46501: \$? = $ac_status" >&5 + echo "$as_me:46625: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:46504: \"$ac_try\"") >&5 + { (eval echo "$as_me:46628: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:46507: \$? = $ac_status" >&5 + echo "$as_me:46631: \$? = $ac_status" >&5 (exit $ac_status); }; }; then termios_bad=no else @@ -46512,7 +46636,7 @@ else cat conftest.$ac_ext >&5 cat >conftest.$ac_ext <<_ACEOF -#line 46515 "configure" +#line 46639 "configure" #include "confdefs.h" #define _POSIX_SOURCE @@ -46526,16 +46650,16 @@ struct termios foo; int x = foo.c_iflag = 2; (void)x } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:46529: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:46653: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:46532: \$? = $ac_status" >&5 + echo "$as_me:46656: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:46535: \"$ac_try\"") >&5 + { (eval echo "$as_me:46659: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:46538: \$? = $ac_status" >&5 + echo "$as_me:46662: \$? = $ac_status" >&5 (exit $ac_status); }; }; then termios_bad=unknown else @@ -46551,12 +46675,12 @@ rm -f conftest.$ac_objext conftest.$ac_ext fi rm -f conftest.$ac_objext conftest.$ac_ext - echo "$as_me:46554: result: $termios_bad" >&5 + echo "$as_me:46678: result: $termios_bad" >&5 echo "${ECHO_T}$termios_bad" >&6 fi fi -echo "$as_me:46559: checking declaration of size-change" >&5 +echo "$as_me:46683: 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 @@ -46577,7 +46701,7 @@ do fi cat >conftest.$ac_ext <<_ACEOF -#line 46580 "configure" +#line 46704 "configure" #include "confdefs.h" #include <sys/types.h> #ifdef HAVE_TERMIOS_H @@ -46627,16 +46751,16 @@ main (void) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:46630: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:46754: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:46633: \$? = $ac_status" >&5 + echo "$as_me:46757: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:46636: \"$ac_try\"") >&5 + { (eval echo "$as_me:46760: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:46639: \$? = $ac_status" >&5 + echo "$as_me:46763: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_sizechange=yes else @@ -46655,7 +46779,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext done fi -echo "$as_me:46658: result: $cf_cv_sizechange" >&5 +echo "$as_me:46782: result: $cf_cv_sizechange" >&5 echo "${ECHO_T}$cf_cv_sizechange" >&6 if test "$cf_cv_sizechange" != no ; then @@ -46673,14 +46797,14 @@ EOF esac fi -echo "$as_me:46676: checking if ttytype is declared in curses library" >&5 +echo "$as_me:46800: 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 46683 "configure" +#line 46807 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> int @@ -46692,16 +46816,16 @@ char *x = &ttytype[1]; *x = 1 } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:46695: \"$ac_link\"") >&5 +if { (eval echo "$as_me:46819: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:46698: \$? = $ac_status" >&5 + echo "$as_me:46822: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:46701: \"$ac_try\"") >&5 + { (eval echo "$as_me:46825: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:46704: \$? = $ac_status" >&5 + echo "$as_me:46828: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_have_ttytype=yes else @@ -46713,7 +46837,7 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:46716: result: $cf_cv_have_ttytype" >&5 +echo "$as_me:46840: result: $cf_cv_have_ttytype" >&5 echo "${ECHO_T}$cf_cv_have_ttytype" >&6 test $cf_cv_have_ttytype = yes && cat >>confdefs.h <<\EOF @@ -46722,14 +46846,14 @@ EOF if test "$use_wide_curses" = yes ; then -echo "$as_me:46725: checking if curses supports wide characters" >&5 +echo "$as_me:46849: 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 46732 "configure" +#line 46856 "configure" #include "confdefs.h" #include <stdlib.h> @@ -46748,16 +46872,16 @@ main (void) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:46751: \"$ac_link\"") >&5 +if { (eval echo "$as_me:46875: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:46754: \$? = $ac_status" >&5 + echo "$as_me:46878: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:46757: \"$ac_try\"") >&5 + { (eval echo "$as_me:46881: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:46760: \$? = $ac_status" >&5 + echo "$as_me:46884: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_widec_curses=yes else @@ -46768,7 +46892,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:46771: result: $cf_cv_widec_curses" >&5 +echo "$as_me:46895: result: $cf_cv_widec_curses" >&5 echo "${ECHO_T}$cf_cv_widec_curses" >&6 if test "$cf_cv_widec_curses" = yes ; then @@ -46778,14 +46902,14 @@ cat >>confdefs.h <<\EOF EOF # This is needed on Tru64 5.0 to declare mbstate_t - echo "$as_me:46781: checking if we must include wchar.h to declare mbstate_t" >&5 + echo "$as_me:46905: 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 46788 "configure" +#line 46912 "configure" #include "confdefs.h" #include <stdlib.h> @@ -46799,23 +46923,23 @@ mbstate_t state; (void)state } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:46802: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:46926: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:46805: \$? = $ac_status" >&5 + echo "$as_me:46929: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:46808: \"$ac_try\"") >&5 + { (eval echo "$as_me:46932: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:46811: \$? = $ac_status" >&5 + echo "$as_me:46935: \$? = $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 46818 "configure" +#line 46942 "configure" #include "confdefs.h" #include <stdlib.h> @@ -46830,16 +46954,16 @@ mbstate_t state; (void)state } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:46833: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:46957: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:46836: \$? = $ac_status" >&5 + echo "$as_me:46960: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:46839: \"$ac_try\"") >&5 + { (eval echo "$as_me:46963: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:46842: \$? = $ac_status" >&5 + echo "$as_me:46966: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_widec_mbstate=yes else @@ -46851,7 +46975,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:46854: result: $cf_cv_widec_mbstate" >&5 +echo "$as_me:46978: result: $cf_cv_widec_mbstate" >&5 echo "${ECHO_T}$cf_cv_widec_mbstate" >&6 if test "$cf_cv_widec_mbstate" = yes ; then @@ -46874,7 +46998,7 @@ fi fi -echo "$as_me:46877: checking definition to turn on extended curses functions" >&5 +echo "$as_me:47001: checking definition to turn on extended curses functions" >&5 echo $ECHO_N "checking definition to turn on extended curses functions... $ECHO_C" >&6 if test "${cf_cv_need_xopen_extension+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -46882,7 +47006,7 @@ else cf_cv_need_xopen_extension=unknown cat >conftest.$ac_ext <<_ACEOF -#line 46885 "configure" +#line 47009 "configure" #include "confdefs.h" #include <stdlib.h> @@ -46915,16 +47039,16 @@ main (void) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:46918: \"$ac_link\"") >&5 +if { (eval echo "$as_me:47042: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:46921: \$? = $ac_status" >&5 + echo "$as_me:47045: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:46924: \"$ac_try\"") >&5 + { (eval echo "$as_me:47048: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:46927: \$? = $ac_status" >&5 + echo "$as_me:47051: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_need_xopen_extension=none else @@ -46934,7 +47058,7 @@ cat conftest.$ac_ext >&5 for cf_try_xopen_extension in _XOPEN_SOURCE_EXTENDED NCURSES_WIDECHAR do cat >conftest.$ac_ext <<_ACEOF -#line 46937 "configure" +#line 47061 "configure" #include "confdefs.h" #define $cf_try_xopen_extension 1 @@ -46963,16 +47087,16 @@ main (void) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:46966: \"$ac_link\"") >&5 +if { (eval echo "$as_me:47090: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:46969: \$? = $ac_status" >&5 + echo "$as_me:47093: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:46972: \"$ac_try\"") >&5 + { (eval echo "$as_me:47096: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:46975: \$? = $ac_status" >&5 + echo "$as_me:47099: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_need_xopen_extension=$cf_try_xopen_extension; break else @@ -46986,7 +47110,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:46989: result: $cf_cv_need_xopen_extension" >&5 +echo "$as_me:47113: result: $cf_cv_need_xopen_extension" >&5 echo "${ECHO_T}$cf_cv_need_xopen_extension" >&6 case $cf_cv_need_xopen_extension in @@ -46998,7 +47122,7 @@ case $cf_cv_need_xopen_extension in ;; esac -echo "$as_me:47001: checking for term.h" >&5 +echo "$as_me:47125: 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 @@ -47019,7 +47143,7 @@ esac for cf_header in $cf_header_list do cat >conftest.$ac_ext <<_ACEOF -#line 47022 "configure" +#line 47146 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> @@ -47033,16 +47157,16 @@ WINDOW *x; (void)x } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:47036: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:47160: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:47039: \$? = $ac_status" >&5 + echo "$as_me:47163: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:47042: \"$ac_try\"") >&5 + { (eval echo "$as_me:47166: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:47045: \$? = $ac_status" >&5 + echo "$as_me:47169: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_term_header=$cf_header break @@ -47061,7 +47185,7 @@ case $cf_cv_term_header in for cf_header in ncurses/term.h ncursesw/term.h do cat >conftest.$ac_ext <<_ACEOF -#line 47064 "configure" +#line 47188 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> @@ -47079,16 +47203,16 @@ WINDOW *x; (void)x } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:47082: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:47206: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:47085: \$? = $ac_status" >&5 + echo "$as_me:47209: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:47088: \"$ac_try\"") >&5 + { (eval echo "$as_me:47212: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:47091: \$? = $ac_status" >&5 + echo "$as_me:47215: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_term_header=$cf_header break @@ -47103,7 +47227,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext esac fi -echo "$as_me:47106: result: $cf_cv_term_header" >&5 +echo "$as_me:47230: result: $cf_cv_term_header" >&5 echo "${ECHO_T}$cf_cv_term_header" >&6 case $cf_cv_term_header in @@ -47130,7 +47254,7 @@ EOF ;; esac -echo "$as_me:47133: checking for unctrl.h" >&5 +echo "$as_me:47257: 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 @@ -47151,7 +47275,7 @@ esac for cf_header in $cf_header_list do cat >conftest.$ac_ext <<_ACEOF -#line 47154 "configure" +#line 47278 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> @@ -47165,16 +47289,16 @@ WINDOW *x; (void)x } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:47168: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:47292: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:47171: \$? = $ac_status" >&5 + echo "$as_me:47295: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:47174: \"$ac_try\"") >&5 + { (eval echo "$as_me:47298: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:47177: \$? = $ac_status" >&5 + echo "$as_me:47301: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_unctrl_header=$cf_header break @@ -47187,12 +47311,12 @@ rm -f conftest.$ac_objext conftest.$ac_ext done fi -echo "$as_me:47190: result: $cf_cv_unctrl_header" >&5 +echo "$as_me:47314: result: $cf_cv_unctrl_header" >&5 echo "${ECHO_T}$cf_cv_unctrl_header" >&6 case $cf_cv_unctrl_header in (no) - { echo "$as_me:47195: WARNING: unctrl.h header not found" >&5 + { echo "$as_me:47319: WARNING: unctrl.h header not found" >&5 echo "$as_me: WARNING: unctrl.h header not found" >&2;} ;; esac @@ -47248,10 +47372,10 @@ do cf_tr_func=`echo "$cf_func" | sed y%abcdefghijklmnopqrstuvwxyz./-%ABCDEFGHIJKLMNOPQRSTUVWXYZ___%` - echo "$as_me:47251: checking for ${cf_func}" >&5 + echo "$as_me:47375: checking for ${cf_func}" >&5 echo $ECHO_N "checking for ${cf_func}... $ECHO_C" >&6 -echo "${as_me:-configure}:47254: testing ${cf_func} ..." 1>&5 +echo "${as_me:-configure}:47378: testing ${cf_func} ..." 1>&5 if eval "test \"\${cf_cv_func_$cf_func+set}\" = set"; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -47260,7 +47384,7 @@ else eval cf_result='$ac_cv_func_'$cf_func if test ".$cf_result" != ".no"; then cat >conftest.$ac_ext <<_ACEOF -#line 47263 "configure" +#line 47387 "configure" #include "confdefs.h" #ifdef HAVE_XCURSES @@ -47293,16 +47417,16 @@ if (foo + 1234L > 5678L) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:47296: \"$ac_link\"") >&5 +if { (eval echo "$as_me:47420: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:47299: \$? = $ac_status" >&5 + echo "$as_me:47423: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:47302: \"$ac_try\"") >&5 + { (eval echo "$as_me:47426: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:47305: \$? = $ac_status" >&5 + echo "$as_me:47429: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_result=yes else @@ -47318,7 +47442,7 @@ fi # use the computed/retrieved cache-value: eval 'cf_result=$cf_cv_func_'$cf_func - echo "$as_me:47321: result: $cf_result" >&5 + echo "$as_me:47445: result: $cf_result" >&5 echo "${ECHO_T}$cf_result" >&6 if test $cf_result != no; then cat >>confdefs.h <<EOF @@ -47335,13 +47459,13 @@ for ac_func in \ do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` -echo "$as_me:47338: checking for $ac_func" >&5 +echo "$as_me:47462: 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 47344 "configure" +#line 47468 "configure" #include "confdefs.h" #define $ac_func autoconf_temporary #include <limits.h> /* least-intrusive standard header which defines gcc2 __stub macros */ @@ -47372,16 +47496,16 @@ main (void) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:47375: \"$ac_link\"") >&5 +if { (eval echo "$as_me:47499: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:47378: \$? = $ac_status" >&5 + echo "$as_me:47502: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:47381: \"$ac_try\"") >&5 + { (eval echo "$as_me:47505: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:47384: \$? = $ac_status" >&5 + echo "$as_me:47508: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else @@ -47391,7 +47515,7 @@ eval "$as_ac_var=no" fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:47394: result: `eval echo '${'$as_ac_var'}'`" >&5 +echo "$as_me:47518: 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 @@ -47405,12 +47529,12 @@ fi if test $use_color_style != no ; then if test .$cf_cv_color_curses != .yes ; then - { { echo "$as_me:47408: error: Configuration does not support color-styles" >&5 + { { echo "$as_me:47532: 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:47413: error: Configuration does not support color-styles" >&5 + { { echo "$as_me:47537: error: Configuration does not support color-styles" >&5 echo "$as_me: error: Configuration does not support color-styles" >&2;} { (exit 1); exit 1; }; } fi @@ -47418,7 +47542,7 @@ fi if test $use_scrollbar != no ; then if test .$cf_cv_fancy_curses != .yes ; then - { echo "$as_me:47421: WARNING: Configuration does not support ACS_xxx definitions" >&5 + { echo "$as_me:47545: WARNING: Configuration does not support ACS_xxx definitions" >&5 echo "$as_me: WARNING: Configuration does not support ACS_xxx definitions" >&2;} else @@ -47431,7 +47555,7 @@ fi # use rpath for libraries in unusual places -echo "$as_me:47434: checking if rpath-hack should be disabled" >&5 +echo "$as_me:47558: 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. @@ -47448,21 +47572,21 @@ else cf_disable_rpath_hack=no fi; -echo "$as_me:47451: result: $cf_disable_rpath_hack" >&5 +echo "$as_me:47575: 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:47455: checking for updated LDFLAGS" >&5 +echo "$as_me:47579: 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:47458: result: maybe" >&5 + echo "$as_me:47582: 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:47465: checking for $ac_word" >&5 +echo "$as_me:47589: 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 @@ -47477,7 +47601,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:47480: found $ac_dir/$ac_word" >&5 +echo "$as_me:47604: found $ac_dir/$ac_word" >&5 break done @@ -47485,10 +47609,10 @@ fi fi cf_ldd_prog=$ac_cv_prog_cf_ldd_prog if test -n "$cf_ldd_prog"; then - echo "$as_me:47488: result: $cf_ldd_prog" >&5 + echo "$as_me:47612: result: $cf_ldd_prog" >&5 echo "${ECHO_T}$cf_ldd_prog" >&6 else - echo "$as_me:47491: result: no" >&5 + echo "$as_me:47615: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -47502,7 +47626,7 @@ test -n "$cf_ldd_prog" || cf_ldd_prog="no" cf_rpath_oops= cat >conftest.$ac_ext <<_ACEOF -#line 47505 "configure" +#line 47629 "configure" #include "confdefs.h" #include <stdio.h> int @@ -47514,16 +47638,16 @@ printf("Hello"); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:47517: \"$ac_link\"") >&5 +if { (eval echo "$as_me:47641: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:47520: \$? = $ac_status" >&5 + echo "$as_me:47644: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:47523: \"$ac_try\"") >&5 + { (eval echo "$as_me:47647: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:47526: \$? = $ac_status" >&5 + echo "$as_me:47650: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_rpath_oops=`$cf_ldd_prog conftest$ac_exeext | fgrep ' not found' | sed -e 's% =>.*$%%' |sort | uniq` cf_rpath_list=`$cf_ldd_prog conftest$ac_exeext | fgrep / | sed -e 's%^.*[ ]/%/%' -e 's%/[^/][^/]*$%%' |sort | uniq` @@ -47551,7 +47675,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}:47554: testing ...adding -L$cf_rpath_dir/lib to LDFLAGS for $cf_rpath_src ..." 1>&5 +echo "${as_me:-configure}:47678: testing ...adding -L$cf_rpath_dir/lib to LDFLAGS for $cf_rpath_src ..." 1>&5 LDFLAGS="$LDFLAGS -L$cf_rpath_dir/lib" break @@ -47563,11 +47687,11 @@ echo "${as_me:-configure}:47554: testing ...adding -L$cf_rpath_dir/lib to LDFLAG test -n "$verbose" && echo " ...checking EXTRA_LDFLAGS $EXTRA_LDFLAGS" 1>&6 -echo "${as_me:-configure}:47566: testing ...checking EXTRA_LDFLAGS $EXTRA_LDFLAGS ..." 1>&5 +echo "${as_me:-configure}:47690: testing ...checking EXTRA_LDFLAGS $EXTRA_LDFLAGS ..." 1>&5 test -n "$verbose" && echo " ...checking LDFLAGS $LDFLAGS" 1>&6 -echo "${as_me:-configure}:47570: testing ...checking LDFLAGS $LDFLAGS ..." 1>&5 +echo "${as_me:-configure}:47694: testing ...checking LDFLAGS $LDFLAGS ..." 1>&5 cf_rpath_dst= for cf_rpath_src in $LDFLAGS @@ -47604,7 +47728,7 @@ do then test -n "$verbose" && echo " ...Filter $cf_rpath_src ->$cf_rpath_tmp" 1>&6 -echo "${as_me:-configure}:47607: testing ...Filter $cf_rpath_src ->$cf_rpath_tmp ..." 1>&5 +echo "${as_me:-configure}:47731: testing ...Filter $cf_rpath_src ->$cf_rpath_tmp ..." 1>&5 EXTRA_LDFLAGS="$cf_rpath_tmp $EXTRA_LDFLAGS" fi @@ -47617,11 +47741,11 @@ LDFLAGS=$cf_rpath_dst test -n "$verbose" && echo " ...checked LDFLAGS $LDFLAGS" 1>&6 -echo "${as_me:-configure}:47620: testing ...checked LDFLAGS $LDFLAGS ..." 1>&5 +echo "${as_me:-configure}:47744: testing ...checked LDFLAGS $LDFLAGS ..." 1>&5 test -n "$verbose" && echo " ...checking LIBS $LIBS" 1>&6 -echo "${as_me:-configure}:47624: testing ...checking LIBS $LIBS ..." 1>&5 +echo "${as_me:-configure}:47748: testing ...checking LIBS $LIBS ..." 1>&5 cf_rpath_dst= for cf_rpath_src in $LIBS @@ -47658,7 +47782,7 @@ do then test -n "$verbose" && echo " ...Filter $cf_rpath_src ->$cf_rpath_tmp" 1>&6 -echo "${as_me:-configure}:47661: testing ...Filter $cf_rpath_src ->$cf_rpath_tmp ..." 1>&5 +echo "${as_me:-configure}:47785: testing ...Filter $cf_rpath_src ->$cf_rpath_tmp ..." 1>&5 EXTRA_LDFLAGS="$cf_rpath_tmp $EXTRA_LDFLAGS" fi @@ -47671,14 +47795,14 @@ LIBS=$cf_rpath_dst test -n "$verbose" && echo " ...checked LIBS $LIBS" 1>&6 -echo "${as_me:-configure}:47674: testing ...checked LIBS $LIBS ..." 1>&5 +echo "${as_me:-configure}:47798: testing ...checked LIBS $LIBS ..." 1>&5 test -n "$verbose" && echo " ...checked EXTRA_LDFLAGS $EXTRA_LDFLAGS" 1>&6 -echo "${as_me:-configure}:47678: testing ...checked EXTRA_LDFLAGS $EXTRA_LDFLAGS ..." 1>&5 +echo "${as_me:-configure}:47802: testing ...checked EXTRA_LDFLAGS $EXTRA_LDFLAGS ..." 1>&5 else - echo "$as_me:47681: result: no" >&5 + echo "$as_me:47805: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -47687,7 +47811,6 @@ fi ### Finally, build config.h and the makefiles test -z "$CONFIG_SHELL" && CONFIG_SHELL=/bin/sh -CFLAGS="$CFLAGS $EXTRA_CFLAGS" srcdir="$srcdir" SRCDIR_CLEAN="#" if test -n "$srcdir" ; then @@ -47785,7 +47908,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:47788: creating $CONFIG_STATUS" >&5 +{ echo "$as_me:47911: creating $CONFIG_STATUS" >&5 echo "$as_me: creating $CONFIG_STATUS" >&6;} cat >$CONFIG_STATUS <<_ACEOF #! $SHELL @@ -47798,6 +47921,8 @@ debug=false SHELL=\${CONFIG_SHELL-$SHELL} ac_cs_invocation="\$0 \$@" +CLICOLOR_FORCE= GREP_OPTIONS= +unset CLICOLOR_FORCE GREP_OPTIONS _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF @@ -47917,7 +48042,7 @@ EOF cat >>$CONFIG_STATUS <<EOF ac_cs_version="\\ config.status -configured by $0, generated by GNU Autoconf 2.52.20200111, +configured by $0, generated by GNU Autoconf 2.52.20200802, with options \\"`echo "$ac_configure_args" | sed 's/[\\""\`\$]/\\\\&/g'`\\" Copyright 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001 @@ -47961,7 +48086,7 @@ cat >>$CONFIG_STATUS <<\EOF echo "$ac_cs_version"; exit 0 ;; --he | --h) # Conflict between --help and --header - { { echo "$as_me:47964: error: ambiguous option: $1 + { { echo "$as_me:48089: 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;} @@ -47980,7 +48105,7 @@ Try \`$0 --help' for more information." >&2;} ac_need_defaults=false;; # This is an error. - -*) { { echo "$as_me:47983: error: unrecognized option: $1 + -*) { { echo "$as_me:48108: 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;} @@ -47999,7 +48124,7 @@ cat >&5 << _ACEOF ## Running config.status. ## ## ----------------------- ## -This file was extended by $as_me 2.52.20200111, executed with +This file was extended by $as_me 2.52.20200802, executed with CONFIG_FILES = $CONFIG_FILES CONFIG_HEADERS = $CONFIG_HEADERS CONFIG_LINKS = $CONFIG_LINKS @@ -48033,7 +48158,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:48036: error: invalid argument: $ac_config_target" >&5 + *) { { echo "$as_me:48161: error: invalid argument: $ac_config_target" >&5 echo "$as_me: error: invalid argument: $ac_config_target" >&2;} { (exit 1); exit 1; }; };; esac @@ -48387,7 +48512,7 @@ done; } esac if test x"$ac_file" != x-; then - { echo "$as_me:48390: creating $ac_file" >&5 + { echo "$as_me:48515: creating $ac_file" >&5 echo "$as_me: creating $ac_file" >&6;} rm -f "$ac_file" fi @@ -48405,7 +48530,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:48408: error: cannot find input file: $f" >&5 + test -f "$f" || { { echo "$as_me:48533: error: cannot find input file: $f" >&5 echo "$as_me: error: cannot find input file: $f" >&2;} { (exit 1); exit 1; }; } echo $f;; @@ -48418,7 +48543,7 @@ echo "$as_me: error: cannot find input file: $f" >&2;} echo $srcdir/$f else # /dev/null tree - { { echo "$as_me:48421: error: cannot find input file: $f" >&5 + { { echo "$as_me:48546: error: cannot find input file: $f" >&5 echo "$as_me: error: cannot find input file: $f" >&2;} { (exit 1); exit 1; }; } fi;; @@ -48434,7 +48559,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:48437: WARNING: datarootdir was used implicitly but not set: + { echo "$as_me:48562: 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;} @@ -48443,7 +48568,7 @@ $ac_seen" >&2;} fi ac_seen=`grep '${datarootdir}' $ac_item` if test -n "$ac_seen"; then - { echo "$as_me:48446: WARNING: datarootdir was used explicitly but not set: + { echo "$as_me:48571: 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;} @@ -48480,7 +48605,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:48483: WARNING: Variable $ac_name is used but was not set: + { echo "$as_me:48608: 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;} @@ -48491,7 +48616,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:48494: WARNING: Some variables may not be substituted: + { echo "$as_me:48619: WARNING: Some variables may not be substituted: $ac_seen" >&5 echo "$as_me: WARNING: Some variables may not be substituted: $ac_seen" >&2;} @@ -48540,7 +48665,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:48543: creating $ac_file" >&5 + test x"$ac_file" != x- && { echo "$as_me:48668: creating $ac_file" >&5 echo "$as_me: creating $ac_file" >&6;} # First look for the input files in the build tree, otherwise in the @@ -48551,7 +48676,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:48554: error: cannot find input file: $f" >&5 + test -f "$f" || { { echo "$as_me:48679: error: cannot find input file: $f" >&5 echo "$as_me: error: cannot find input file: $f" >&2;} { (exit 1); exit 1; }; } echo $f;; @@ -48564,7 +48689,7 @@ echo "$as_me: error: cannot find input file: $f" >&2;} echo $srcdir/$f else # /dev/null tree - { { echo "$as_me:48567: error: cannot find input file: $f" >&5 + { { echo "$as_me:48692: error: cannot find input file: $f" >&5 echo "$as_me: error: cannot find input file: $f" >&2;} { (exit 1); exit 1; }; } fi;; @@ -48682,7 +48807,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:48685: $ac_file is unchanged" >&5 + { echo "$as_me:48810: $ac_file is unchanged" >&5 echo "$as_me: $ac_file is unchanged" >&6;} else ac_dir=`$as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ diff --git a/configure.in b/configure.in index 5bfc1af0..09fc61af 100644 --- a/configure.in +++ b/configure.in @@ -1,4 +1,4 @@ -dnl $LynxId: configure.in,v 1.316 2020/03/01 13:47:14 tom Exp $ +dnl $LynxId: configure.in,v 1.317 2020/08/28 19:05:45 tom Exp $ dnl dnl Process this file with autoconf to produce a configure script. dnl @@ -190,25 +190,7 @@ CF_ARG_ENABLE(vertrace, AC_MSG_RESULT($with_vertrace) test $with_vertrace = yes && AC_DEFINE(LY_TRACELINE,__LINE__,[Define to __LINE__ if you want verbose trace code]) -if test -n "$GCC" -then -AC_MSG_CHECKING(if you want to turn on gcc warnings) -CF_ARG_ENABLE(warnings, - [ --enable-warnings GCC compiler warnings], - [with_warnings=yes], - [with_warnings=no]) -AC_MSG_RESULT($with_warnings) -if test "$with_warnings" = "yes" -then - if test "x$with_x" = "xyes" - then - AC_PATH_XTRA - fi - CF_GCC_ATTRIBUTES - CF_GCC_WARNINGS -fi -fi - +CF_ENABLE_WARNINGS CF_WITH_DBMALLOC CF_WITH_DMALLOC @@ -1567,7 +1549,6 @@ CF_DISABLE_RPATH_HACK test -z "$CONFIG_SHELL" && CONFIG_SHELL=/bin/sh AC_SUBST(CONFIG_SHELL) -CFLAGS="$CFLAGS $EXTRA_CFLAGS" srcdir="$srcdir" SRCDIR_CLEAN="#" if test -n "$srcdir" ; then diff --git a/makefile.in b/makefile.in index 7f3115c2..6158d7c6 100644 --- a/makefile.in +++ b/makefile.in @@ -1,4 +1,4 @@ -# $LynxId: makefile.in,v 1.181 2020/03/01 13:47:14 tom Exp $ +# $LynxId: makefile.in,v 1.182 2020/08/28 18:43:41 tom Exp $ ##makefile for lynx SHELL = @CONFIG_SHELL@ @@ -14,7 +14,7 @@ builddir = . VPATH = $(srcdir) CC = @CC@ -CFLAGS = @CFLAGS@ +CFLAGS = @CFLAGS@ @EXTRA_CFLAGS@ DEFS = @DEFS@ CPPFLAGS = @CPPFLAGS@ LINT = @LINT@ diff --git a/src/chrtrans/makefile.in b/src/chrtrans/makefile.in index 3e2dcfa4..938d36d1 100644 --- a/src/chrtrans/makefile.in +++ b/src/chrtrans/makefile.in @@ -1,4 +1,4 @@ -# $LynxId: makefile.in,v 1.43 2018/05/08 00:45:34 tom Exp $ +# $LynxId: makefile.in,v 1.44 2020/08/28 18:45:03 tom Exp $ # # Makefile for the makeuctb and unicode tables. # @@ -18,8 +18,7 @@ top_builddir = ../.. CC = @CC@ CPP = @CPP@ -CFLAGS = @CFLAGS@ -EXTRA_CPPFLAGS = @EXTRA_CPPFLAGS@ +CFLAGS = @CFLAGS@ @EXTRA_CPPFLAGS@ CPPFLAGS = @CPPFLAGS@ WWWINC = WWW/Library/Implementation diff --git a/src/makefile.in b/src/makefile.in index a5287fb1..d81003ba 100644 --- a/src/makefile.in +++ b/src/makefile.in @@ -1,4 +1,4 @@ -# $LynxId: makefile.in,v 1.75 2017/07/02 18:15:25 tom Exp $ +# $LynxId: makefile.in,v 1.76 2020/08/28 18:45:56 tom Exp $ # template-makefile for Lynx src directory SHELL = @CONFIG_SHELL@ @@ -20,10 +20,9 @@ localedir = @NLS_DATADIR@/locale # Symbols which the configure script can set in each makefile: CC = @CC@ CPP = @CPP@ -CFLAGS = @CFLAGS@ +CFLAGS = @CFLAGS@ @EXTRA_CPPFLAGS@ DEFS = @DEFS@ CHARSET_DEFS = @CHARSET_DEFS@ -EXTRA_CPPFLAGS = @EXTRA_CPPFLAGS@ CPPFLAGS = @CPPFLAGS@ x = @EXEEXT@ @@ -66,8 +65,8 @@ CPP_OPTS = $(DEFS) $(CHARSET_DEFS) \ -I$(top_srcdir) \ -I$(top_srcdir)/src \ -I$(top_srcdir)/$(WWWINC) \ - $(INTLDIR_CPPFLAGS) $(SITE_DEFS) $(EXTRA_CPPFLAGS) $(CPPFLAGS) -CC_OPTS = $(CPP_OPTS) $(CFLAGS) + $(INTLDIR_CPPFLAGS) $(SITE_DEFS) $(CPPFLAGS) +CC_OPTS = $(CFLAGS) $(CPP_OPTS) LINT = @LINT@ LINTOPTS = |