From 220f87b9ad8469e8e324d41ed00c9ec39f0fc940 Mon Sep 17 00:00:00 2001 From: "Thomas E. Dickey" Date: Sun, 3 Mar 2024 00:21:22 +0000 Subject: [PATCH] ncurses 6.4 - patch 20240302 + add configure check for MB_LEN_MAX, to provide warning as needed. + improve formatting/style of manpages (patches by Branden Robinson). + fix regression in tput which disallowed hex/octal parameters (report by Werner Fink, cf: 20230408) + update config.guess, config.sub --- NEWS | 9 +- VERSION | 2 +- aclocal.m4 | 29 +- config.guess | 7 +- config.sub | 27 +- configure | 1450 ++++++++++++++++-------------- configure.in | 7 +- dist.mk | 4 +- doc/html/man/captoinfo.1m.html | 10 +- doc/html/man/curs_attr.3x.html | 8 +- doc/html/man/curs_trace.3x.html | 46 +- doc/html/man/ncurses.3x.html | 2 +- doc/html/man/terminfo.5.html | 24 +- include/Caps | 22 +- include/Caps.aix4 | 22 +- include/Caps.hpux11 | 22 +- include/Caps.keys | 22 +- include/Caps.osf1r5 | 22 +- include/Caps.uwin | 18 +- include/ncurses_defs | 5 +- man/captoinfo.1m | 9 +- man/curs_attr.3x | 6 +- man/curs_trace.3x | 60 +- man/man_db.renames.in | 5 +- man/terminfo.tail | 4 +- ncurses/term.priv.h | 4 +- ncurses/tinfo/lib_setup.c | 6 +- ncurses/tinfo/make_hash.c | 6 +- package/debian-mingw/changelog | 4 +- package/debian-mingw64/changelog | 4 +- package/debian/changelog | 4 +- package/mingw-ncurses.nsi | 4 +- package/mingw-ncurses.spec | 2 +- package/ncurses.spec | 2 +- package/ncursest.spec | 2 +- progs/tic.c | 6 +- progs/tput.c | 6 +- 37 files changed, 1072 insertions(+), 820 deletions(-) diff --git a/NEWS b/NEWS index c902a5fc..75b4bf1f 100644 --- a/NEWS +++ b/NEWS @@ -26,7 +26,7 @@ -- sale, use or other dealings in this Software without prior written -- -- authorization. -- ------------------------------------------------------------------------------- --- $Id: NEWS,v 1.4086 2024/02/24 20:06:19 tom Exp $ +-- $Id: NEWS,v 1.4089 2024/03/02 20:47:38 tom Exp $ ------------------------------------------------------------------------------- This is a log of changes that ncurses has gone through since Zeyd started @@ -46,6 +46,13 @@ See the AUTHORS file for the corresponding full names. Changes through 1.9.9e did not credit all contributions; it is not possible to add this information. +20240302 + + add configure check for MB_LEN_MAX, to provide warning as needed. + + improve formatting/style of manpages (patches by Branden Robinson). + + fix regression in tput which disallowed hex/octal parameters (report + by Werner Fink, cf: 20230408) + + update config.guess, config.sub + 20240224 + improve man/curs_mouse.3x style (Brandon Robinson, Sven Joachim). + provide for CCHARW_MAX greater than 1 diff --git a/VERSION b/VERSION index b2f8a521..6269f3b7 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -5:0:10 6.4 20240224 +5:0:10 6.4 20240302 diff --git a/aclocal.m4 b/aclocal.m4 index b2b9c3f8..96d04519 100644 --- a/aclocal.m4 +++ b/aclocal.m4 @@ -1,5 +1,5 @@ dnl*************************************************************************** -dnl Copyright 2018-2022,2023 Thomas E. Dickey * +dnl Copyright 2018-2023,2024 Thomas E. Dickey * dnl Copyright 1998-2017,2018 Free Software Foundation, Inc. * dnl * dnl Permission is hereby granted, free of charge, to any person obtaining a * @@ -29,7 +29,7 @@ dnl*************************************************************************** dnl dnl Author: Thomas E. Dickey 1995-on dnl -dnl $Id: aclocal.m4,v 1.1062 2023/12/04 00:39:37 tom Exp $ +dnl $Id: aclocal.m4,v 1.1063 2024/03/02 20:46:07 tom Exp $ dnl Macros used in NCURSES auto-configuration script. dnl dnl These macros are maintained separately from NCURSES. The copyright on @@ -5938,6 +5938,31 @@ AC_ARG_WITH(manpage-tbl, AC_MSG_RESULT($MANPAGE_TBL) ])dnl dnl --------------------------------------------------------------------------- +dnl CF_MB_LEN_MAX version: 1 updated: 2024/03/02 15:45:10 +dnl ------------- +dnl Check if defines a usable MB_LEN_MAX. That may be because it is +dnl not defined, or it may be a bogus value. +AC_DEFUN([CF_MB_LEN_MAX],[ +AC_CACHE_CHECK(if MB_LEN_MAX is usable,cf_cv_mb_len_max,[ +AC_TRY_COMPILE([ +$ac_includes_default +#include ], +[ +#if defined(MB_LEN_MAX) && MB_LEN_MAX >= 6 + ${cf_cv_main_return:-return}(0); +#else +#error MB_LEN_MAX is not usable +#endif +], [cf_cv_mb_len_max=yes], + [cf_cv_mb_len_max=no])]) +if test "$cf_cv_mb_len_max" = yes +then + AC_DEFINE(HAVE_CONSISTENT_MB_LEN_MAX,1,[Define to 1 if MB_LEN_MAX is usable]) +else + AC_MSG_WARN(MB_LEN_MAX is missing/inconsistent in system headers) +fi +])dnl +dnl --------------------------------------------------------------------------- dnl CF_MAN_PAGES version: 58 updated: 2023/07/28 20:13:29 dnl ------------ dnl Try to determine if the man-pages on the system are compressed, and if diff --git a/config.guess b/config.guess index cdfc4392..f47d666d 100755 --- a/config.guess +++ b/config.guess @@ -4,7 +4,7 @@ # shellcheck disable=SC2006,SC2268 # see below for rationale -timestamp='2023-08-22' +timestamp='2023-10-19' # 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 @@ -165,6 +165,8 @@ Linux|GNU|GNU/*) LIBC=dietlibc #elif defined(__GLIBC__) LIBC=gnu + #elif defined(__LLVM_LIBC__) + LIBC=llvm #else #include /* First heuristic to detect musl libc. */ @@ -1593,6 +1595,9 @@ EOF *:Unleashed:*:*) GUESS=$UNAME_MACHINE-unknown-unleashed$UNAME_RELEASE ;; + *:Ironclad:*:*) + GUESS=$UNAME_MACHINE-unknown-ironclad + ;; esac # Do we have a guess based on uname results? diff --git a/config.sub b/config.sub index 51394d32..e4c4e09b 100755 --- a/config.sub +++ b/config.sub @@ -4,7 +4,7 @@ # shellcheck disable=SC2006,SC2268 # see below for rationale -timestamp='2023-09-15' +timestamp='2023-12-02' # 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 @@ -1222,6 +1222,7 @@ case $cpu-$vendor in | moxie \ | mt \ | msp430 \ + | nanomips* \ | nds32 | nds32le | nds32be \ | nfp \ | nios | nios2 | nios2eb | nios2el \ @@ -1253,6 +1254,7 @@ case $cpu-$vendor in | ubicom32 \ | v70 | v850 | v850e | v850e1 | v850es | v850e2 | v850e2v3 \ | vax \ + | vc4 \ | visium \ | w65 \ | wasm32 | wasm64 \ @@ -1597,7 +1599,7 @@ case $cpu-$vendor in os= obj=elf ;; - mips*-*) + mips*-*|nanomips*-*) os= obj=elf ;; @@ -1721,7 +1723,7 @@ fi case $os in # Sometimes we do "kernel-libc", so those need to count as OSes. - musl* | newlib* | relibc* | uclibc*) + llvm* | musl* | newlib* | relibc* | uclibc*) ;; # Likewise for "kernel-abi" eabi* | gnueabi*) @@ -1766,12 +1768,19 @@ case $os in | onefs* | tirtos* | phoenix* | fuchsia* | redox* | bme* \ | midnightbsd* | amdhsa* | unleashed* | emscripten* | wasi* \ | nsk* | powerunix* | genode* | zvmoe* | qnx* | emx* | zephyr* \ - | fiwix* | mlibc* | cos* | mbr* ) + | fiwix* | mlibc* | cos* | mbr* | ironclad* ) ;; # 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. ;; + # This refers to builds using the UEFI calling convention + # (which depends on the architecture) and PE file format. + # Note that this is both a different calling convention and + # different file format than that of GNU-EFI + # (x86_64-w64-mingw32). + uefi) + ;; none) ;; kernel* | msvc* ) @@ -1818,16 +1827,18 @@ 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-$obj in - linux-gnu*- | linux-dietlibc*- | linux-android*- | linux-newlib*- \ - | linux-musl*- | linux-relibc*- | linux-uclibc*- | linux-mlibc*- ) + linux-gnu*- | linux-android*- | linux-dietlibc*- | linux-llvm*- \ + | linux-mlibc*- | linux-musl*- | linux-newlib*- \ + | linux-relibc*- | linux-uclibc*- ) ;; uclinux-uclibc*- ) ;; managarm-mlibc*- | managarm-kernel*- ) ;; - windows*-gnu*- | windows*-msvc*-) + windows*-msvc*-) ;; - -dietlibc*- | -newlib*- | -musl*- | -relibc*- | -uclibc*- | -mlibc*- ) + -dietlibc*- | -llvm*- | -mlibc*- | -musl*- | -newlib*- | -relibc*- \ + | -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 diff --git a/configure b/configure index 814eb2fc..c1632086 100755 --- a/configure +++ b/configure @@ -1,5 +1,5 @@ #! /bin/sh -# From configure.in Revision: 1.774 . +# From configure.in Revision: 1.775 . # Guess values for system-dependent variables and create Makefiles. # Generated by Autoconf 2.52.20231210. # @@ -21808,12 +21808,10 @@ getuid \ issetugid \ localeconv \ poll \ -putenv \ remove \ select \ setbuf \ setbuffer \ -setenv \ setfsuid \ setvbuf \ sigaction \ @@ -21829,13 +21827,13 @@ vsnprintf \ do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` -echo "$as_me:21832: checking for $ac_func" >&5 +echo "$as_me:21830: 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 21838 "configure" +#line 21836 "configure" #include "confdefs.h" #define $ac_func autoconf_temporary #include /* least-intrusive standard header which defines gcc2 __stub macros */ @@ -21866,16 +21864,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:21869: \"$ac_link\"") >&5 +if { (eval echo "$as_me:21867: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:21872: \$? = $ac_status" >&5 + echo "$as_me:21870: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:21875: \"$ac_try\"") >&5 + { (eval echo "$as_me:21873: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:21878: \$? = $ac_status" >&5 + echo "$as_me:21876: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then eval "$as_ac_var=yes" else @@ -21885,7 +21883,7 @@ eval "$as_ac_var=no" fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:21888: result: `eval echo '${'"$as_ac_var"'}'`" >&5 +echo "$as_me:21886: 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 <&5 +echo "$as_me:21896: checking if _PATH_TTYS is defined in ttyent.h" >&5 echo $ECHO_N "checking if _PATH_TTYS is defined in ttyent.h... $ECHO_C" >&6 if test "${cf_cv_PATH_TTYS+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >"conftest.$ac_ext" <<_ACEOF -#line 21905 "configure" +#line 21903 "configure" #include "confdefs.h" #include @@ -21917,16 +21915,16 @@ FILE *fp = fopen(_PATH_TTYS, "r"); (void)fp } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:21920: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:21918: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:21923: \$? = $ac_status" >&5 + echo "$as_me:21921: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:21926: \"$ac_try\"") >&5 + { (eval echo "$as_me:21924: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:21929: \$? = $ac_status" >&5 + echo "$as_me:21927: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_PATH_TTYS=yes else @@ -21936,7 +21934,7 @@ cf_cv_PATH_TTYS=no fi rm -f "conftest.$ac_objext" "conftest.$ac_ext" fi -echo "$as_me:21939: result: $cf_cv_PATH_TTYS" >&5 +echo "$as_me:21937: result: $cf_cv_PATH_TTYS" >&5 echo "${ECHO_T}$cf_cv_PATH_TTYS" >&6 if test $cf_cv_PATH_TTYS = no @@ -21958,7 +21956,7 @@ fi if test $cf_cv_PATH_TTYS != no then - echo "$as_me:21961: checking if _PATH_TTYS file exists" >&5 + echo "$as_me:21959: checking if _PATH_TTYS file exists" >&5 echo $ECHO_N "checking if _PATH_TTYS file exists... $ECHO_C" >&6 if test "${cf_cv_have_PATH_TTYS+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -21968,7 +21966,7 @@ else cf_cv_have_PATH_TTYS=unknown else cat >"conftest.$ac_ext" <<_ACEOF -#line 21971 "configure" +#line 21969 "configure" #include "confdefs.h" $ac_includes_default @@ -21981,15 +21979,15 @@ int main(void) { } _ACEOF rm -f "conftest$ac_exeext" -if { (eval echo "$as_me:21984: \"$ac_link\"") >&5 +if { (eval echo "$as_me:21982: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:21987: \$? = $ac_status" >&5 + echo "$as_me:21985: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='"./conftest$ac_exeext"' - { (eval echo "$as_me:21989: \"$ac_try\"") >&5 + { (eval echo "$as_me:21987: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:21992: \$? = $ac_status" >&5 + echo "$as_me:21990: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_have_PATH_TTYS=yes else @@ -22001,7 +21999,7 @@ fi rm -f core ./core.* ./*.core "conftest$ac_exeext" "conftest.$ac_objext" "conftest.$ac_ext" fi fi -echo "$as_me:22004: result: $cf_cv_have_PATH_TTYS" >&5 +echo "$as_me:22002: result: $cf_cv_have_PATH_TTYS" >&5 echo "${ECHO_T}$cf_cv_have_PATH_TTYS" >&6 test "$cf_cv_have_PATH_TTYS" = no && cf_cv_PATH_TTYS=no fi @@ -22013,14 +22011,14 @@ cat >>confdefs.h <<\EOF #define HAVE_PATH_TTYS 1 EOF - echo "$as_me:22016: checking for getttynam" >&5 + echo "$as_me:22014: checking for getttynam" >&5 echo $ECHO_N "checking for getttynam... $ECHO_C" >&6 if test "${cf_cv_func_getttynam+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >"conftest.$ac_ext" <<_ACEOF -#line 22023 "configure" +#line 22021 "configure" #include "confdefs.h" #include int @@ -22032,16 +22030,16 @@ struct ttyent *fp = getttynam("/dev/tty"); (void)fp } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:22035: \"$ac_link\"") >&5 +if { (eval echo "$as_me:22033: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:22038: \$? = $ac_status" >&5 + echo "$as_me:22036: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:22041: \"$ac_try\"") >&5 + { (eval echo "$as_me:22039: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:22044: \$? = $ac_status" >&5 + echo "$as_me:22042: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_func_getttynam=yes else @@ -22051,7 +22049,7 @@ cf_cv_func_getttynam=no fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:22054: result: $cf_cv_func_getttynam" >&5 +echo "$as_me:22052: result: $cf_cv_func_getttynam" >&5 echo "${ECHO_T}$cf_cv_func_getttynam" >&6 test "$cf_cv_func_getttynam" = yes && cat >>confdefs.h <<\EOF #define HAVE_GETTTYNAM 1 @@ -22061,7 +22059,7 @@ fi if test "x$ac_cv_func_getopt" = xno && \ test "x$cf_with_progs$cf_with_tests" != xnono; then - { { echo "$as_me:22064: error: getopt is required for building programs" >&5 + { { echo "$as_me:22062: error: getopt is required for building programs" >&5 echo "$as_me: error: getopt is required for building programs" >&2;} { (exit 1); exit 1; }; } fi @@ -22070,7 +22068,7 @@ if test "x$with_safe_sprintf" = xyes then if test "x$ac_cv_func_vsnprintf" = xyes then - { echo "$as_me:22073: WARNING: will use vsnprintf instead of safe-sprintf option" >&5 + { echo "$as_me:22071: WARNING: will use vsnprintf instead of safe-sprintf option" >&5 echo "$as_me: WARNING: will use vsnprintf instead of safe-sprintf option" >&2;} else @@ -22083,14 +22081,14 @@ fi if test "x$with_getcap" = "xyes" ; then -echo "$as_me:22086: checking for terminal-capability database functions" >&5 +echo "$as_me:22084: checking for terminal-capability database functions" >&5 echo $ECHO_N "checking for terminal-capability database functions... $ECHO_C" >&6 if test "${cf_cv_cgetent+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >"conftest.$ac_ext" <<_ACEOF -#line 22093 "configure" +#line 22091 "configure" #include "confdefs.h" $ac_includes_default @@ -22110,16 +22108,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:22113: \"$ac_link\"") >&5 +if { (eval echo "$as_me:22111: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:22116: \$? = $ac_status" >&5 + echo "$as_me:22114: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:22119: \"$ac_try\"") >&5 + { (eval echo "$as_me:22117: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:22122: \$? = $ac_status" >&5 + echo "$as_me:22120: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_cgetent=yes else @@ -22130,7 +22128,7 @@ fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:22133: result: $cf_cv_cgetent" >&5 +echo "$as_me:22131: result: $cf_cv_cgetent" >&5 echo "${ECHO_T}$cf_cv_cgetent" >&6 if test "$cf_cv_cgetent" = yes @@ -22140,14 +22138,14 @@ cat >>confdefs.h <<\EOF #define HAVE_BSD_CGETENT 1 EOF -echo "$as_me:22143: checking if cgetent uses const parameter" >&5 +echo "$as_me:22141: checking if cgetent uses const parameter" >&5 echo $ECHO_N "checking if cgetent uses const parameter... $ECHO_C" >&6 if test "${cf_cv_cgetent_const+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >"conftest.$ac_ext" <<_ACEOF -#line 22150 "configure" +#line 22148 "configure" #include "confdefs.h" #pragma GCC diagnostic error "-Wincompatible-pointer-types-discards-qualifiers" @@ -22170,16 +22168,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:22173: \"$ac_link\"") >&5 +if { (eval echo "$as_me:22171: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:22176: \$? = $ac_status" >&5 + echo "$as_me:22174: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:22179: \"$ac_try\"") >&5 + { (eval echo "$as_me:22177: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:22182: \$? = $ac_status" >&5 + echo "$as_me:22180: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_cgetent_const=yes else @@ -22190,7 +22188,7 @@ fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:22193: result: $cf_cv_cgetent_const" >&5 +echo "$as_me:22191: result: $cf_cv_cgetent_const" >&5 echo "${ECHO_T}$cf_cv_cgetent_const" >&6 if test "$cf_cv_cgetent_const" = yes then @@ -22204,14 +22202,14 @@ fi fi -echo "$as_me:22207: checking for isascii" >&5 +echo "$as_me:22205: checking for isascii" >&5 echo $ECHO_N "checking for isascii... $ECHO_C" >&6 if test "${cf_cv_have_isascii+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >"conftest.$ac_ext" <<_ACEOF -#line 22214 "configure" +#line 22212 "configure" #include "confdefs.h" #include int @@ -22223,16 +22221,16 @@ int x = isascii(' '); (void)x } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:22226: \"$ac_link\"") >&5 +if { (eval echo "$as_me:22224: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:22229: \$? = $ac_status" >&5 + echo "$as_me:22227: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:22232: \"$ac_try\"") >&5 + { (eval echo "$as_me:22230: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:22235: \$? = $ac_status" >&5 + echo "$as_me:22233: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_have_isascii=yes else @@ -22243,7 +22241,7 @@ fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:22246: result: $cf_cv_have_isascii" >&5 +echo "$as_me:22244: result: $cf_cv_have_isascii" >&5 echo "${ECHO_T}$cf_cv_have_isascii" >&6 test "$cf_cv_have_isascii" = yes && cat >>confdefs.h <<\EOF @@ -22251,10 +22249,10 @@ cat >>confdefs.h <<\EOF EOF if test "$ac_cv_func_sigaction" = yes; then -echo "$as_me:22254: checking whether sigaction needs _POSIX_SOURCE" >&5 +echo "$as_me:22252: checking whether sigaction needs _POSIX_SOURCE" >&5 echo $ECHO_N "checking whether sigaction needs _POSIX_SOURCE... $ECHO_C" >&6 cat >"conftest.$ac_ext" <<_ACEOF -#line 22257 "configure" +#line 22255 "configure" #include "confdefs.h" #include @@ -22268,16 +22266,16 @@ struct sigaction act; (void)act } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:22271: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:22269: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:22274: \$? = $ac_status" >&5 + echo "$as_me:22272: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:22277: \"$ac_try\"") >&5 + { (eval echo "$as_me:22275: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:22280: \$? = $ac_status" >&5 + echo "$as_me:22278: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then sigact_bad=no else @@ -22285,7 +22283,7 @@ else cat "conftest.$ac_ext" >&5 cat >"conftest.$ac_ext" <<_ACEOF -#line 22288 "configure" +#line 22286 "configure" #include "confdefs.h" #define _POSIX_SOURCE @@ -22300,16 +22298,16 @@ struct sigaction act; (void)act } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:22303: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:22301: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:22306: \$? = $ac_status" >&5 + echo "$as_me:22304: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:22309: \"$ac_try\"") >&5 + { (eval echo "$as_me:22307: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:22312: \$? = $ac_status" >&5 + echo "$as_me:22310: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then sigact_bad=yes @@ -22325,11 +22323,11 @@ fi rm -f "conftest.$ac_objext" "conftest.$ac_ext" fi rm -f "conftest.$ac_objext" "conftest.$ac_ext" -echo "$as_me:22328: result: $sigact_bad" >&5 +echo "$as_me:22326: result: $sigact_bad" >&5 echo "${ECHO_T}$sigact_bad" >&6 fi -echo "$as_me:22332: checking if nanosleep really works" >&5 +echo "$as_me:22330: checking if nanosleep really works" >&5 echo $ECHO_N "checking if nanosleep really works... $ECHO_C" >&6 if test "${cf_cv_func_nanosleep+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -22339,7 +22337,7 @@ if test "$cross_compiling" = yes; then cf_cv_func_nanosleep=unknown else cat >"conftest.$ac_ext" <<_ACEOF -#line 22342 "configure" +#line 22340 "configure" #include "confdefs.h" $ac_includes_default @@ -22365,15 +22363,15 @@ int main(void) { _ACEOF rm -f "conftest$ac_exeext" -if { (eval echo "$as_me:22368: \"$ac_link\"") >&5 +if { (eval echo "$as_me:22366: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:22371: \$? = $ac_status" >&5 + echo "$as_me:22369: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='"./conftest$ac_exeext"' - { (eval echo "$as_me:22373: \"$ac_try\"") >&5 + { (eval echo "$as_me:22371: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:22376: \$? = $ac_status" >&5 + echo "$as_me:22374: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_func_nanosleep=yes else @@ -22385,7 +22383,7 @@ fi rm -f core ./core.* ./*.core "conftest$ac_exeext" "conftest.$ac_objext" "conftest.$ac_ext" fi fi -echo "$as_me:22388: result: $cf_cv_func_nanosleep" >&5 +echo "$as_me:22386: result: $cf_cv_func_nanosleep" >&5 echo "${ECHO_T}$cf_cv_func_nanosleep" >&6 test "$cf_cv_func_nanosleep" = "yes" && @@ -22402,23 +22400,23 @@ sys/termio.h \ do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` -echo "$as_me:22405: checking for $ac_header" >&5 +echo "$as_me:22403: 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 22411 "configure" +#line 22409 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:22415: \"$ac_cpp "conftest.$ac_ext"\"") >&5 +if { (eval echo "$as_me:22413: \"$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:22421: \$? = $ac_status" >&5 + echo "$as_me:22419: \$? = $ac_status" >&5 (exit "$ac_status"); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -22437,7 +22435,7 @@ else fi rm -f conftest.err "conftest.$ac_ext" fi -echo "$as_me:22440: result: `eval echo '${'"$as_ac_Header"'}'`" >&5 +echo "$as_me:22438: 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 <&5 + echo "$as_me:22455: 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 22460 "configure" +#line 22458 "configure" #include "confdefs.h" #include int @@ -22469,16 +22467,16 @@ struct termios foo; int x = (int)(foo.c_iflag = 1); (void)x } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:22472: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:22470: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:22475: \$? = $ac_status" >&5 + echo "$as_me:22473: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:22478: \"$ac_try\"") >&5 + { (eval echo "$as_me:22476: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:22481: \$? = $ac_status" >&5 + echo "$as_me:22479: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then termios_bad=no else @@ -22486,7 +22484,7 @@ else cat "conftest.$ac_ext" >&5 cat >"conftest.$ac_ext" <<_ACEOF -#line 22489 "configure" +#line 22487 "configure" #include "confdefs.h" #define _POSIX_SOURCE @@ -22500,16 +22498,16 @@ struct termios foo; int x = (int)(foo.c_iflag = 2); (void)x } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:22503: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:22501: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:22506: \$? = $ac_status" >&5 + echo "$as_me:22504: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:22509: \"$ac_try\"") >&5 + { (eval echo "$as_me:22507: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:22512: \$? = $ac_status" >&5 + echo "$as_me:22510: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then termios_bad=unknown else @@ -22525,19 +22523,19 @@ rm -f "conftest.$ac_objext" "conftest.$ac_ext" fi rm -f "conftest.$ac_objext" "conftest.$ac_ext" - echo "$as_me:22528: result: $termios_bad" >&5 + echo "$as_me:22526: result: $termios_bad" >&5 echo "${ECHO_T}$termios_bad" >&6 fi fi -echo "$as_me:22533: checking for tcgetattr" >&5 +echo "$as_me:22531: checking for tcgetattr" >&5 echo $ECHO_N "checking for tcgetattr... $ECHO_C" >&6 if test "${cf_cv_have_tcgetattr+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >"conftest.$ac_ext" <<_ACEOF -#line 22540 "configure" +#line 22538 "configure" #include "confdefs.h" #include @@ -22565,16 +22563,16 @@ tcgetattr(1, &foo); } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:22568: \"$ac_link\"") >&5 +if { (eval echo "$as_me:22566: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:22571: \$? = $ac_status" >&5 + echo "$as_me:22569: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:22574: \"$ac_try\"") >&5 + { (eval echo "$as_me:22572: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:22577: \$? = $ac_status" >&5 + echo "$as_me:22575: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_have_tcgetattr=yes else @@ -22584,21 +22582,21 @@ cf_cv_have_tcgetattr=no fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:22587: result: $cf_cv_have_tcgetattr" >&5 +echo "$as_me:22585: result: $cf_cv_have_tcgetattr" >&5 echo "${ECHO_T}$cf_cv_have_tcgetattr" >&6 test "$cf_cv_have_tcgetattr" = yes && cat >>confdefs.h <<\EOF #define HAVE_TCGETATTR 1 EOF -echo "$as_me:22594: checking for vsscanf function or workaround" >&5 +echo "$as_me:22592: checking for vsscanf function or workaround" >&5 echo $ECHO_N "checking for vsscanf function or workaround... $ECHO_C" >&6 if test "${cf_cv_func_vsscanf+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >"conftest.$ac_ext" <<_ACEOF -#line 22601 "configure" +#line 22599 "configure" #include "confdefs.h" #include @@ -22624,16 +22622,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:22627: \"$ac_link\"") >&5 +if { (eval echo "$as_me:22625: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:22630: \$? = $ac_status" >&5 + echo "$as_me:22628: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:22633: \"$ac_try\"") >&5 + { (eval echo "$as_me:22631: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:22636: \$? = $ac_status" >&5 + echo "$as_me:22634: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_func_vsscanf=vsscanf else @@ -22641,7 +22639,7 @@ else cat "conftest.$ac_ext" >&5 cat >"conftest.$ac_ext" <<_ACEOF -#line 22644 "configure" +#line 22642 "configure" #include "confdefs.h" #include @@ -22663,16 +22661,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:22666: \"$ac_link\"") >&5 +if { (eval echo "$as_me:22664: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:22669: \$? = $ac_status" >&5 + echo "$as_me:22667: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:22672: \"$ac_try\"") >&5 + { (eval echo "$as_me:22670: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:22675: \$? = $ac_status" >&5 + echo "$as_me:22673: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_func_vsscanf=vfscanf else @@ -22680,7 +22678,7 @@ else cat "conftest.$ac_ext" >&5 cat >"conftest.$ac_ext" <<_ACEOF -#line 22683 "configure" +#line 22681 "configure" #include "confdefs.h" #include @@ -22702,16 +22700,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:22705: \"$ac_link\"") >&5 +if { (eval echo "$as_me:22703: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:22708: \$? = $ac_status" >&5 + echo "$as_me:22706: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:22711: \"$ac_try\"") >&5 + { (eval echo "$as_me:22709: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:22714: \$? = $ac_status" >&5 + echo "$as_me:22712: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_func_vsscanf=_doscan else @@ -22726,7 +22724,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:22729: result: $cf_cv_func_vsscanf" >&5 +echo "$as_me:22727: result: $cf_cv_func_vsscanf" >&5 echo "${ECHO_T}$cf_cv_func_vsscanf" >&6 case "$cf_cv_func_vsscanf" in @@ -22752,23 +22750,23 @@ unistd.h \ do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` -echo "$as_me:22755: checking for $ac_header" >&5 +echo "$as_me:22753: 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 22761 "configure" +#line 22759 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:22765: \"$ac_cpp "conftest.$ac_ext"\"") >&5 +if { (eval echo "$as_me:22763: \"$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:22771: \$? = $ac_status" >&5 + echo "$as_me:22769: \$? = $ac_status" >&5 (exit "$ac_status"); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -22787,7 +22785,7 @@ else fi rm -f conftest.err "conftest.$ac_ext" fi -echo "$as_me:22790: result: `eval echo '${'"$as_ac_Header"'}'`" >&5 +echo "$as_me:22788: 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 <&5 +echo "$as_me:22798: checking for working mkstemp" >&5 echo $ECHO_N "checking for working mkstemp... $ECHO_C" >&6 if test "${cf_cv_func_mkstemp+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -22808,7 +22806,7 @@ if test "$cross_compiling" = yes; then cf_cv_func_mkstemp=maybe else cat >"conftest.$ac_ext" <<_ACEOF -#line 22811 "configure" +#line 22809 "configure" #include "confdefs.h" $ac_includes_default @@ -22843,15 +22841,15 @@ int main(void) _ACEOF rm -f "conftest$ac_exeext" -if { (eval echo "$as_me:22846: \"$ac_link\"") >&5 +if { (eval echo "$as_me:22844: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:22849: \$? = $ac_status" >&5 + echo "$as_me:22847: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='"./conftest$ac_exeext"' - { (eval echo "$as_me:22851: \"$ac_try\"") >&5 + { (eval echo "$as_me:22849: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:22854: \$? = $ac_status" >&5 + echo "$as_me:22852: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_func_mkstemp=yes @@ -22866,16 +22864,16 @@ rm -f core ./core.* ./*.core "conftest$ac_exeext" "conftest.$ac_objext" "conftes fi fi -echo "$as_me:22869: result: $cf_cv_func_mkstemp" >&5 +echo "$as_me:22867: result: $cf_cv_func_mkstemp" >&5 echo "${ECHO_T}$cf_cv_func_mkstemp" >&6 if test "x$cf_cv_func_mkstemp" = xmaybe ; then - echo "$as_me:22872: checking for mkstemp" >&5 + echo "$as_me:22870: checking for mkstemp" >&5 echo $ECHO_N "checking for mkstemp... $ECHO_C" >&6 if test "${ac_cv_func_mkstemp+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >"conftest.$ac_ext" <<_ACEOF -#line 22878 "configure" +#line 22876 "configure" #include "confdefs.h" #define mkstemp autoconf_temporary #include /* least-intrusive standard header which defines gcc2 __stub macros */ @@ -22906,16 +22904,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:22909: \"$ac_link\"") >&5 +if { (eval echo "$as_me:22907: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:22912: \$? = $ac_status" >&5 + echo "$as_me:22910: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:22915: \"$ac_try\"") >&5 + { (eval echo "$as_me:22913: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:22918: \$? = $ac_status" >&5 + echo "$as_me:22916: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_func_mkstemp=yes else @@ -22925,7 +22923,7 @@ ac_cv_func_mkstemp=no fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:22928: result: $ac_cv_func_mkstemp" >&5 +echo "$as_me:22926: result: $ac_cv_func_mkstemp" >&5 echo "${ECHO_T}$ac_cv_func_mkstemp" >&6 fi @@ -22946,21 +22944,21 @@ else fi if test "x$cross_compiling" = xyes ; then - { echo "$as_me:22949: WARNING: cross compiling: assume setvbuf params not reversed" >&5 + { echo "$as_me:22947: WARNING: cross compiling: assume setvbuf params not reversed" >&5 echo "$as_me: WARNING: cross compiling: assume setvbuf params not reversed" >&2;} else - echo "$as_me:22952: checking whether setvbuf arguments are reversed" >&5 + echo "$as_me:22950: checking whether setvbuf arguments are reversed" >&5 echo $ECHO_N "checking whether setvbuf arguments are reversed... $ECHO_C" >&6 if test "${ac_cv_func_setvbuf_reversed+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test "$cross_compiling" = yes; then - { { echo "$as_me:22958: error: cannot run test program while cross compiling" >&5 + { { echo "$as_me:22956: 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 22963 "configure" +#line 22961 "configure" #include "confdefs.h" #include /* If setvbuf has the reversed format, exit 0. */ @@ -22977,15 +22975,15 @@ main (void) } _ACEOF rm -f "conftest$ac_exeext" -if { (eval echo "$as_me:22980: \"$ac_link\"") >&5 +if { (eval echo "$as_me:22978: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:22983: \$? = $ac_status" >&5 + echo "$as_me:22981: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='"./conftest$ac_exeext"' - { (eval echo "$as_me:22985: \"$ac_try\"") >&5 + { (eval echo "$as_me:22983: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:22988: \$? = $ac_status" >&5 + echo "$as_me:22986: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_func_setvbuf_reversed=yes else @@ -22998,7 +22996,7 @@ rm -f core ./core.* ./*.core "conftest$ac_exeext" "conftest.$ac_objext" "conftes fi rm -f core ./core.* ./*.core fi -echo "$as_me:23001: result: $ac_cv_func_setvbuf_reversed" >&5 +echo "$as_me:22999: result: $ac_cv_func_setvbuf_reversed" >&5 echo "${ECHO_T}$ac_cv_func_setvbuf_reversed" >&6 if test $ac_cv_func_setvbuf_reversed = yes; then @@ -23009,13 +23007,13 @@ EOF fi fi -echo "$as_me:23012: checking for intptr_t" >&5 +echo "$as_me:23010: 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 23018 "configure" +#line 23016 "configure" #include "confdefs.h" $ac_includes_default int @@ -23030,16 +23028,16 @@ if (sizeof (intptr_t)) } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:23033: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:23031: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:23036: \$? = $ac_status" >&5 + echo "$as_me:23034: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:23039: \"$ac_try\"") >&5 + { (eval echo "$as_me:23037: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23042: \$? = $ac_status" >&5 + echo "$as_me:23040: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_type_intptr_t=yes else @@ -23049,7 +23047,7 @@ ac_cv_type_intptr_t=no fi rm -f "conftest.$ac_objext" "conftest.$ac_ext" fi -echo "$as_me:23052: result: $ac_cv_type_intptr_t" >&5 +echo "$as_me:23050: 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 : @@ -23061,13 +23059,13 @@ EOF fi -echo "$as_me:23064: checking for ssize_t" >&5 +echo "$as_me:23062: 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 23070 "configure" +#line 23068 "configure" #include "confdefs.h" $ac_includes_default int @@ -23082,16 +23080,16 @@ if (sizeof (ssize_t)) } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:23085: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:23083: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:23088: \$? = $ac_status" >&5 + echo "$as_me:23086: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:23091: \"$ac_try\"") >&5 + { (eval echo "$as_me:23089: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23094: \$? = $ac_status" >&5 + echo "$as_me:23092: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_type_ssize_t=yes else @@ -23101,7 +23099,7 @@ ac_cv_type_ssize_t=no fi rm -f "conftest.$ac_objext" "conftest.$ac_ext" fi -echo "$as_me:23104: result: $ac_cv_type_ssize_t" >&5 +echo "$as_me:23102: 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 : @@ -23113,14 +23111,14 @@ EOF fi -echo "$as_me:23116: checking for type sigaction_t" >&5 +echo "$as_me:23114: checking for type sigaction_t" >&5 echo $ECHO_N "checking for type sigaction_t... $ECHO_C" >&6 if test "${cf_cv_type_sigaction+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >"conftest.$ac_ext" <<_ACEOF -#line 23123 "configure" +#line 23121 "configure" #include "confdefs.h" #include @@ -23133,16 +23131,16 @@ sigaction_t x; (void)x } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:23136: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:23134: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:23139: \$? = $ac_status" >&5 + echo "$as_me:23137: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:23142: \"$ac_try\"") >&5 + { (eval echo "$as_me:23140: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23145: \$? = $ac_status" >&5 + echo "$as_me:23143: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_type_sigaction=yes else @@ -23153,14 +23151,14 @@ fi rm -f "conftest.$ac_objext" "conftest.$ac_ext" fi -echo "$as_me:23156: result: $cf_cv_type_sigaction" >&5 +echo "$as_me:23154: result: $cf_cv_type_sigaction" >&5 echo "${ECHO_T}$cf_cv_type_sigaction" >&6 test "$cf_cv_type_sigaction" = yes && cat >>confdefs.h <<\EOF #define HAVE_TYPE_SIGACTION 1 EOF -echo "$as_me:23163: checking declaration of size-change" >&5 +echo "$as_me:23161: 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 @@ -23181,7 +23179,7 @@ do fi cat >"conftest.$ac_ext" <<_ACEOF -#line 23184 "configure" +#line 23182 "configure" #include "confdefs.h" #include #ifdef HAVE_TERMIOS_H @@ -23231,16 +23229,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:23234: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:23232: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:23237: \$? = $ac_status" >&5 + echo "$as_me:23235: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:23240: \"$ac_try\"") >&5 + { (eval echo "$as_me:23238: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23243: \$? = $ac_status" >&5 + echo "$as_me:23241: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_sizechange=yes else @@ -23259,7 +23257,7 @@ rm -f "conftest.$ac_objext" "conftest.$ac_ext" done fi -echo "$as_me:23262: result: $cf_cv_sizechange" >&5 +echo "$as_me:23260: result: $cf_cv_sizechange" >&5 echo "${ECHO_T}$cf_cv_sizechange" >&6 if test "$cf_cv_sizechange" != no ; then @@ -23277,13 +23275,13 @@ EOF esac fi -echo "$as_me:23280: checking for memmove" >&5 +echo "$as_me:23278: checking for memmove" >&5 echo $ECHO_N "checking for memmove... $ECHO_C" >&6 if test "${ac_cv_func_memmove+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >"conftest.$ac_ext" <<_ACEOF -#line 23286 "configure" +#line 23284 "configure" #include "confdefs.h" #define memmove autoconf_temporary #include /* least-intrusive standard header which defines gcc2 __stub macros */ @@ -23314,16 +23312,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:23317: \"$ac_link\"") >&5 +if { (eval echo "$as_me:23315: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:23320: \$? = $ac_status" >&5 + echo "$as_me:23318: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:23323: \"$ac_try\"") >&5 + { (eval echo "$as_me:23321: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23326: \$? = $ac_status" >&5 + echo "$as_me:23324: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_func_memmove=yes else @@ -23333,19 +23331,19 @@ ac_cv_func_memmove=no fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:23336: result: $ac_cv_func_memmove" >&5 +echo "$as_me:23334: result: $ac_cv_func_memmove" >&5 echo "${ECHO_T}$ac_cv_func_memmove" >&6 if test "$ac_cv_func_memmove" = yes; then : else -echo "$as_me:23342: checking for bcopy" >&5 +echo "$as_me:23340: checking for bcopy" >&5 echo $ECHO_N "checking for bcopy... $ECHO_C" >&6 if test "${ac_cv_func_bcopy+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >"conftest.$ac_ext" <<_ACEOF -#line 23348 "configure" +#line 23346 "configure" #include "confdefs.h" #define bcopy autoconf_temporary #include /* least-intrusive standard header which defines gcc2 __stub macros */ @@ -23376,16 +23374,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:23379: \"$ac_link\"") >&5 +if { (eval echo "$as_me:23377: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:23382: \$? = $ac_status" >&5 + echo "$as_me:23380: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:23385: \"$ac_try\"") >&5 + { (eval echo "$as_me:23383: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23388: \$? = $ac_status" >&5 + echo "$as_me:23386: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_func_bcopy=yes else @@ -23395,11 +23393,11 @@ ac_cv_func_bcopy=no fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:23398: result: $ac_cv_func_bcopy" >&5 +echo "$as_me:23396: result: $ac_cv_func_bcopy" >&5 echo "${ECHO_T}$ac_cv_func_bcopy" >&6 if test "$ac_cv_func_bcopy" = yes; then - echo "$as_me:23402: checking if bcopy does overlapping moves" >&5 + echo "$as_me:23400: checking if bcopy does overlapping moves" >&5 echo $ECHO_N "checking if bcopy does overlapping moves... $ECHO_C" >&6 if test "${cf_cv_good_bcopy+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -23409,7 +23407,7 @@ else cf_cv_good_bcopy=unknown else cat >"conftest.$ac_ext" <<_ACEOF -#line 23412 "configure" +#line 23410 "configure" #include "confdefs.h" $ac_includes_default @@ -23425,15 +23423,15 @@ int main(void) { _ACEOF rm -f "conftest$ac_exeext" -if { (eval echo "$as_me:23428: \"$ac_link\"") >&5 +if { (eval echo "$as_me:23426: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:23431: \$? = $ac_status" >&5 + echo "$as_me:23429: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='"./conftest$ac_exeext"' - { (eval echo "$as_me:23433: \"$ac_try\"") >&5 + { (eval echo "$as_me:23431: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23436: \$? = $ac_status" >&5 + echo "$as_me:23434: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_good_bcopy=yes else @@ -23446,7 +23444,7 @@ rm -f core ./core.* ./*.core "conftest$ac_exeext" "conftest.$ac_objext" "conftes fi fi -echo "$as_me:23449: result: $cf_cv_good_bcopy" >&5 +echo "$as_me:23447: result: $cf_cv_good_bcopy" >&5 echo "${ECHO_T}$cf_cv_good_bcopy" >&6 else @@ -23473,13 +23471,13 @@ tty >/dev/null 2>&1 || { for ac_func in posix_openpt do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` -echo "$as_me:23476: checking for $ac_func" >&5 +echo "$as_me:23474: 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 23482 "configure" +#line 23480 "configure" #include "confdefs.h" #define $ac_func autoconf_temporary #include /* least-intrusive standard header which defines gcc2 __stub macros */ @@ -23510,16 +23508,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:23513: \"$ac_link\"") >&5 +if { (eval echo "$as_me:23511: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:23516: \$? = $ac_status" >&5 + echo "$as_me:23514: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:23519: \"$ac_try\"") >&5 + { (eval echo "$as_me:23517: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23522: \$? = $ac_status" >&5 + echo "$as_me:23520: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then eval "$as_ac_var=yes" else @@ -23529,7 +23527,7 @@ eval "$as_ac_var=no" fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:23532: result: `eval echo '${'"$as_ac_var"'}'`" >&5 +echo "$as_me:23530: 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 <&5 +echo "$as_me:23540: checking if poll really works" >&5 echo $ECHO_N "checking if poll really works... $ECHO_C" >&6 if test "${cf_cv_working_poll+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -23549,7 +23547,7 @@ if test "$cross_compiling" = yes; then cf_cv_working_poll=unknown else cat >"conftest.$ac_ext" <<_ACEOF -#line 23552 "configure" +#line 23550 "configure" #include "confdefs.h" $ac_includes_default @@ -23602,15 +23600,15 @@ int main(void) { } _ACEOF rm -f "conftest$ac_exeext" -if { (eval echo "$as_me:23605: \"$ac_link\"") >&5 +if { (eval echo "$as_me:23603: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:23608: \$? = $ac_status" >&5 + echo "$as_me:23606: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='"./conftest$ac_exeext"' - { (eval echo "$as_me:23610: \"$ac_try\"") >&5 + { (eval echo "$as_me:23608: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23613: \$? = $ac_status" >&5 + echo "$as_me:23611: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_working_poll=yes else @@ -23622,21 +23620,81 @@ fi rm -f core ./core.* ./*.core "conftest$ac_exeext" "conftest.$ac_objext" "conftest.$ac_ext" fi fi -echo "$as_me:23625: result: $cf_cv_working_poll" >&5 +echo "$as_me:23623: result: $cf_cv_working_poll" >&5 echo "${ECHO_T}$cf_cv_working_poll" >&6 test "$cf_cv_working_poll" = "yes" && cat >>confdefs.h <<\EOF #define HAVE_WORKING_POLL 1 EOF -echo "$as_me:23632: checking for va_copy" >&5 +echo "$as_me:23630: checking if MB_LEN_MAX is usable" >&5 +echo $ECHO_N "checking if MB_LEN_MAX is usable... $ECHO_C" >&6 +if test "${cf_cv_mb_len_max+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + +cat >"conftest.$ac_ext" <<_ACEOF +#line 23637 "configure" +#include "confdefs.h" + +$ac_includes_default +#include +int +main (void) +{ + +#if defined(MB_LEN_MAX) && MB_LEN_MAX >= 6 + ${cf_cv_main_return:-return}(0); +#else +#error MB_LEN_MAX is not usable +#endif + + ; + return 0; +} +_ACEOF +rm -f "conftest.$ac_objext" +if { (eval echo "$as_me:23657: \"$ac_compile\"") >&5 + (eval $ac_compile) 2>&5 + ac_status=$? + echo "$as_me:23660: \$? = $ac_status" >&5 + (exit "$ac_status"); } && + { ac_try='test -s "conftest.$ac_objext"' + { (eval echo "$as_me:23663: \"$ac_try\"") >&5 + (eval $ac_try) 2>&5 + ac_status=$? + echo "$as_me:23666: \$? = $ac_status" >&5 + (exit "$ac_status"); }; }; then + cf_cv_mb_len_max=yes +else + echo "$as_me: failed program was:" >&5 +cat "conftest.$ac_ext" >&5 +cf_cv_mb_len_max=no +fi +rm -f "conftest.$ac_objext" "conftest.$ac_ext" +fi +echo "$as_me:23676: result: $cf_cv_mb_len_max" >&5 +echo "${ECHO_T}$cf_cv_mb_len_max" >&6 +if test "$cf_cv_mb_len_max" = yes +then + +cat >>confdefs.h <<\EOF +#define HAVE_CONSISTENT_MB_LEN_MAX 1 +EOF + +else + { echo "$as_me:23686: WARNING: MB_LEN_MAX is missing/inconsistent in system headers" >&5 +echo "$as_me: WARNING: MB_LEN_MAX is missing/inconsistent in system headers" >&2;} +fi + +echo "$as_me:23690: checking for va_copy" >&5 echo $ECHO_N "checking for va_copy... $ECHO_C" >&6 if test "${cf_cv_have_va_copy+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >"conftest.$ac_ext" <<_ACEOF -#line 23639 "configure" +#line 23697 "configure" #include "confdefs.h" #include @@ -23653,16 +23711,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:23656: \"$ac_link\"") >&5 +if { (eval echo "$as_me:23714: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:23659: \$? = $ac_status" >&5 + echo "$as_me:23717: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:23662: \"$ac_try\"") >&5 + { (eval echo "$as_me:23720: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23665: \$? = $ac_status" >&5 + echo "$as_me:23723: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_have_va_copy=yes else @@ -23672,7 +23730,7 @@ cf_cv_have_va_copy=no fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:23675: result: $cf_cv_have_va_copy" >&5 +echo "$as_me:23733: result: $cf_cv_have_va_copy" >&5 echo "${ECHO_T}$cf_cv_have_va_copy" >&6 if test "$cf_cv_have_va_copy" = yes; @@ -23684,14 +23742,14 @@ EOF else # !cf_cv_have_va_copy -echo "$as_me:23687: checking for __va_copy" >&5 +echo "$as_me:23745: checking for __va_copy" >&5 echo $ECHO_N "checking for __va_copy... $ECHO_C" >&6 if test "${cf_cv_have___va_copy+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >"conftest.$ac_ext" <<_ACEOF -#line 23694 "configure" +#line 23752 "configure" #include "confdefs.h" #include @@ -23708,16 +23766,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:23711: \"$ac_link\"") >&5 +if { (eval echo "$as_me:23769: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:23714: \$? = $ac_status" >&5 + echo "$as_me:23772: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:23717: \"$ac_try\"") >&5 + { (eval echo "$as_me:23775: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23720: \$? = $ac_status" >&5 + echo "$as_me:23778: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_have___va_copy=yes else @@ -23727,7 +23785,7 @@ cf_cv_have___va_copy=no fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:23730: result: $cf_cv_have___va_copy" >&5 +echo "$as_me:23788: result: $cf_cv_have___va_copy" >&5 echo "${ECHO_T}$cf_cv_have___va_copy" >&6 if test "$cf_cv_have___va_copy" = yes @@ -23739,14 +23797,14 @@ EOF else # !cf_cv_have___va_copy -echo "$as_me:23742: checking for __builtin_va_copy" >&5 +echo "$as_me:23800: checking for __builtin_va_copy" >&5 echo $ECHO_N "checking for __builtin_va_copy... $ECHO_C" >&6 if test "${cf_cv_have___builtin_va_copy+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >"conftest.$ac_ext" <<_ACEOF -#line 23749 "configure" +#line 23807 "configure" #include "confdefs.h" #include @@ -23763,16 +23821,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:23766: \"$ac_link\"") >&5 +if { (eval echo "$as_me:23824: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:23769: \$? = $ac_status" >&5 + echo "$as_me:23827: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:23772: \"$ac_try\"") >&5 + { (eval echo "$as_me:23830: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23775: \$? = $ac_status" >&5 + echo "$as_me:23833: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_have___builtin_va_copy=yes else @@ -23782,7 +23840,7 @@ cf_cv_have___builtin_va_copy=no fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:23785: result: $cf_cv_have___builtin_va_copy" >&5 +echo "$as_me:23843: result: $cf_cv_have___builtin_va_copy" >&5 echo "${ECHO_T}$cf_cv_have___builtin_va_copy" >&6 test "$cf_cv_have___builtin_va_copy" = yes && @@ -23800,14 +23858,14 @@ case "${cf_cv_have_va_copy}${cf_cv_have___va_copy}${cf_cv_have___builtin_va_copy ;; (*) - echo "$as_me:23803: checking if we can simply copy va_list" >&5 + echo "$as_me:23861: checking if we can simply copy va_list" >&5 echo $ECHO_N "checking if we can simply copy va_list... $ECHO_C" >&6 if test "${cf_cv_pointer_va_list+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >"conftest.$ac_ext" <<_ACEOF -#line 23810 "configure" +#line 23868 "configure" #include "confdefs.h" #include @@ -23824,16 +23882,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:23827: \"$ac_link\"") >&5 +if { (eval echo "$as_me:23885: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:23830: \$? = $ac_status" >&5 + echo "$as_me:23888: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:23833: \"$ac_try\"") >&5 + { (eval echo "$as_me:23891: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23836: \$? = $ac_status" >&5 + echo "$as_me:23894: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_pointer_va_list=yes else @@ -23843,19 +23901,19 @@ cf_cv_pointer_va_list=no fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:23846: result: $cf_cv_pointer_va_list" >&5 +echo "$as_me:23904: result: $cf_cv_pointer_va_list" >&5 echo "${ECHO_T}$cf_cv_pointer_va_list" >&6 if test "$cf_cv_pointer_va_list" = no then - echo "$as_me:23851: checking if we can copy va_list indirectly" >&5 + echo "$as_me:23909: checking if we can copy va_list indirectly" >&5 echo $ECHO_N "checking if we can copy va_list indirectly... $ECHO_C" >&6 if test "${cf_cv_array_va_list+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >"conftest.$ac_ext" <<_ACEOF -#line 23858 "configure" +#line 23916 "configure" #include "confdefs.h" #include @@ -23872,16 +23930,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:23875: \"$ac_link\"") >&5 +if { (eval echo "$as_me:23933: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:23878: \$? = $ac_status" >&5 + echo "$as_me:23936: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:23881: \"$ac_try\"") >&5 + { (eval echo "$as_me:23939: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23884: \$? = $ac_status" >&5 + echo "$as_me:23942: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_array_va_list=yes else @@ -23891,7 +23949,7 @@ cf_cv_array_va_list=no fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:23894: result: $cf_cv_array_va_list" >&5 +echo "$as_me:23952: result: $cf_cv_array_va_list" >&5 echo "${ECHO_T}$cf_cv_array_va_list" >&6 test "$cf_cv_array_va_list" = yes && cat >>confdefs.h <<\EOF @@ -23902,13 +23960,13 @@ EOF ;; esac -echo "$as_me:23905: checking for pid_t" >&5 +echo "$as_me:23963: 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 23911 "configure" +#line 23969 "configure" #include "confdefs.h" $ac_includes_default int @@ -23923,16 +23981,16 @@ if (sizeof (pid_t)) } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:23926: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:23984: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:23929: \$? = $ac_status" >&5 + echo "$as_me:23987: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:23932: \"$ac_try\"") >&5 + { (eval echo "$as_me:23990: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23935: \$? = $ac_status" >&5 + echo "$as_me:23993: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_type_pid_t=yes else @@ -23942,7 +24000,7 @@ ac_cv_type_pid_t=no fi rm -f "conftest.$ac_objext" "conftest.$ac_ext" fi -echo "$as_me:23945: result: $ac_cv_type_pid_t" >&5 +echo "$as_me:24003: 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 : @@ -23957,23 +24015,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:23960: checking for $ac_header" >&5 +echo "$as_me:24018: 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 23966 "configure" +#line 24024 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:23970: \"$ac_cpp "conftest.$ac_ext"\"") >&5 +if { (eval echo "$as_me:24028: \"$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:23976: \$? = $ac_status" >&5 + echo "$as_me:24034: \$? = $ac_status" >&5 (exit "$ac_status"); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -23992,7 +24050,7 @@ else fi rm -f conftest.err "conftest.$ac_ext" fi -echo "$as_me:23995: result: `eval echo '${'"$as_ac_Header"'}'`" >&5 +echo "$as_me:24053: 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 <&5 +echo "$as_me:24066: 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 24014 "configure" +#line 24072 "configure" #include "confdefs.h" #define $ac_func autoconf_temporary #include /* least-intrusive standard header which defines gcc2 __stub macros */ @@ -24042,16 +24100,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:24045: \"$ac_link\"") >&5 +if { (eval echo "$as_me:24103: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:24048: \$? = $ac_status" >&5 + echo "$as_me:24106: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:24051: \"$ac_try\"") >&5 + { (eval echo "$as_me:24109: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:24054: \$? = $ac_status" >&5 + echo "$as_me:24112: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then eval "$as_ac_var=yes" else @@ -24061,7 +24119,7 @@ eval "$as_ac_var=no" fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:24064: result: `eval echo '${'"$as_ac_var"'}'`" >&5 +echo "$as_me:24122: 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 <&5 + echo "$as_me:24134: 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 @@ -24096,15 +24154,15 @@ else } _ACEOF rm -f "conftest$ac_exeext" -if { (eval echo "$as_me:24099: \"$ac_link\"") >&5 +if { (eval echo "$as_me:24157: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:24102: \$? = $ac_status" >&5 + echo "$as_me:24160: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='"./conftest$ac_exeext"' - { (eval echo "$as_me:24104: \"$ac_try\"") >&5 + { (eval echo "$as_me:24162: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:24107: \$? = $ac_status" >&5 + echo "$as_me:24165: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_func_fork_works=yes else @@ -24116,7 +24174,7 @@ fi rm -f core ./core.* ./*.core "conftest$ac_exeext" "conftest.$ac_objext" "conftest.$ac_ext" fi fi -echo "$as_me:24119: result: $ac_cv_func_fork_works" >&5 +echo "$as_me:24177: result: $ac_cv_func_fork_works" >&5 echo "${ECHO_T}$ac_cv_func_fork_works" >&6 fi @@ -24130,12 +24188,12 @@ if test "x$ac_cv_func_fork_works" = xcross; then ac_cv_func_fork_works=yes ;; esac - { echo "$as_me:24133: WARNING: CROSS: Result $ac_cv_func_fork_works guessed due to cross-compiling." >&5 + { echo "$as_me:24191: 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:24138: checking for working vfork" >&5 + echo "$as_me:24196: 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 @@ -24144,7 +24202,7 @@ else ac_cv_func_vfork_works=cross else cat >"conftest.$ac_ext" <<_ACEOF -#line 24147 "configure" +#line 24205 "configure" #include "confdefs.h" /* Thanks to Paul Eggert for this test. */ #include @@ -24237,15 +24295,15 @@ main (void) } _ACEOF rm -f "conftest$ac_exeext" -if { (eval echo "$as_me:24240: \"$ac_link\"") >&5 +if { (eval echo "$as_me:24298: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:24243: \$? = $ac_status" >&5 + echo "$as_me:24301: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='"./conftest$ac_exeext"' - { (eval echo "$as_me:24245: \"$ac_try\"") >&5 + { (eval echo "$as_me:24303: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:24248: \$? = $ac_status" >&5 + echo "$as_me:24306: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_func_vfork_works=yes else @@ -24257,13 +24315,13 @@ fi rm -f core ./core.* ./*.core "conftest$ac_exeext" "conftest.$ac_objext" "conftest.$ac_ext" fi fi -echo "$as_me:24260: result: $ac_cv_func_vfork_works" >&5 +echo "$as_me:24318: 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:24266: WARNING: CROSS: Result $ac_cv_func_vfork_works guessed due to cross-compiling." >&5 + { echo "$as_me:24324: 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 @@ -24288,7 +24346,7 @@ EOF fi -echo "$as_me:24291: checking if fopen accepts explicit binary mode" >&5 +echo "$as_me:24349: checking if fopen accepts explicit binary mode" >&5 echo $ECHO_N "checking if fopen accepts explicit binary mode... $ECHO_C" >&6 if test "${cf_cv_fopen_bin_r+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -24298,7 +24356,7 @@ else cf_cv_fopen_bin_r=unknown else cat >"conftest.$ac_ext" <<_ACEOF -#line 24301 "configure" +#line 24359 "configure" #include "confdefs.h" $ac_includes_default @@ -24333,15 +24391,15 @@ int main(void) _ACEOF rm -f "conftest$ac_exeext" -if { (eval echo "$as_me:24336: \"$ac_link\"") >&5 +if { (eval echo "$as_me:24394: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:24339: \$? = $ac_status" >&5 + echo "$as_me:24397: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='"./conftest$ac_exeext"' - { (eval echo "$as_me:24341: \"$ac_try\"") >&5 + { (eval echo "$as_me:24399: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:24344: \$? = $ac_status" >&5 + echo "$as_me:24402: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_fopen_bin_r=yes else @@ -24354,7 +24412,7 @@ rm -f core ./core.* ./*.core "conftest$ac_exeext" "conftest.$ac_objext" "conftes fi fi -echo "$as_me:24357: result: $cf_cv_fopen_bin_r" >&5 +echo "$as_me:24415: result: $cf_cv_fopen_bin_r" >&5 echo "${ECHO_T}$cf_cv_fopen_bin_r" >&6 test "x$cf_cv_fopen_bin_r" != xno && cat >>confdefs.h <<\EOF @@ -24363,7 +24421,7 @@ EOF # special check for test/ditto.c -echo "$as_me:24366: checking for openpty in -lutil" >&5 +echo "$as_me:24424: checking for openpty in -lutil" >&5 echo $ECHO_N "checking for openpty in -lutil... $ECHO_C" >&6 if test "${ac_cv_lib_util_openpty+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -24371,7 +24429,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lutil $LIBS" cat >"conftest.$ac_ext" <<_ACEOF -#line 24374 "configure" +#line 24432 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -24390,16 +24448,16 @@ openpty (); } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:24393: \"$ac_link\"") >&5 +if { (eval echo "$as_me:24451: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:24396: \$? = $ac_status" >&5 + echo "$as_me:24454: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:24399: \"$ac_try\"") >&5 + { (eval echo "$as_me:24457: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:24402: \$? = $ac_status" >&5 + echo "$as_me:24460: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_lib_util_openpty=yes else @@ -24410,7 +24468,7 @@ fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:24413: result: $ac_cv_lib_util_openpty" >&5 +echo "$as_me:24471: result: $ac_cv_lib_util_openpty" >&5 echo "${ECHO_T}$ac_cv_lib_util_openpty" >&6 if test "$ac_cv_lib_util_openpty" = yes; then cf_cv_lib_util=yes @@ -24418,7 +24476,7 @@ else cf_cv_lib_util=no fi -echo "$as_me:24421: checking for openpty header" >&5 +echo "$as_me:24479: checking for openpty header" >&5 echo $ECHO_N "checking for openpty header... $ECHO_C" >&6 if test "${cf_cv_func_openpty+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -24445,7 +24503,7 @@ LIBS="$cf_add_libs" for cf_header in pty.h libutil.h util.h do cat >"conftest.$ac_ext" <<_ACEOF -#line 24448 "configure" +#line 24506 "configure" #include "confdefs.h" #include <$cf_header> @@ -24463,16 +24521,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:24466: \"$ac_link\"") >&5 +if { (eval echo "$as_me:24524: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:24469: \$? = $ac_status" >&5 + echo "$as_me:24527: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:24472: \"$ac_try\"") >&5 + { (eval echo "$as_me:24530: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:24475: \$? = $ac_status" >&5 + echo "$as_me:24533: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_func_openpty=$cf_header @@ -24490,7 +24548,7 @@ rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" LIBS="$cf_save_LIBS" fi -echo "$as_me:24493: result: $cf_cv_func_openpty" >&5 +echo "$as_me:24551: result: $cf_cv_func_openpty" >&5 echo "${ECHO_T}$cf_cv_func_openpty" >&6 if test "$cf_cv_func_openpty" != no ; then @@ -24563,7 +24621,7 @@ if test -n "$with_hashed_db/include" ; then CPPFLAGS="${CPPFLAGS}-I$cf_add_incdir" cat >"conftest.$ac_ext" <<_ACEOF -#line 24566 "configure" +#line 24624 "configure" #include "confdefs.h" #include int @@ -24575,16 +24633,16 @@ printf("Hello") } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:24578: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:24636: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:24581: \$? = $ac_status" >&5 + echo "$as_me:24639: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:24584: \"$ac_try\"") >&5 + { (eval echo "$as_me:24642: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:24587: \$? = $ac_status" >&5 + echo "$as_me:24645: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then : else @@ -24601,7 +24659,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}:24604: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:24662: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -24637,7 +24695,7 @@ if test -n "$with_hashed_db/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}:24640: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:24698: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -24648,7 +24706,7 @@ fi else case "$with_hashed_db" in (./*|../*|/*) - { echo "$as_me:24651: WARNING: no such directory $with_hashed_db" >&5 + { echo "$as_me:24709: WARNING: no such directory $with_hashed_db" >&5 echo "$as_me: WARNING: no such directory $with_hashed_db" >&2;} ;; (*) @@ -24720,7 +24778,7 @@ if test -n "$cf_item" ; then CPPFLAGS="${CPPFLAGS}-I$cf_add_incdir" cat >"conftest.$ac_ext" <<_ACEOF -#line 24723 "configure" +#line 24781 "configure" #include "confdefs.h" #include int @@ -24732,16 +24790,16 @@ printf("Hello") } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:24735: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:24793: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:24738: \$? = $ac_status" >&5 + echo "$as_me:24796: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:24741: \"$ac_try\"") >&5 + { (eval echo "$as_me:24799: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:24744: \$? = $ac_status" >&5 + echo "$as_me:24802: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then : else @@ -24758,7 +24816,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}:24761: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:24819: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -24838,7 +24896,7 @@ if test -n "$cf_item" ; 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}:24841: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:24899: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -24855,23 +24913,23 @@ fi fi esac -echo "$as_me:24858: checking for db.h" >&5 +echo "$as_me:24916: checking for db.h" >&5 echo $ECHO_N "checking for db.h... $ECHO_C" >&6 if test "${ac_cv_header_db_h+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >"conftest.$ac_ext" <<_ACEOF -#line 24864 "configure" +#line 24922 "configure" #include "confdefs.h" #include _ACEOF -if { (eval echo "$as_me:24868: \"$ac_cpp "conftest.$ac_ext"\"") >&5 +if { (eval echo "$as_me:24926: \"$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:24874: \$? = $ac_status" >&5 + echo "$as_me:24932: \$? = $ac_status" >&5 (exit "$ac_status"); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -24890,11 +24948,11 @@ else fi rm -f conftest.err "conftest.$ac_ext" fi -echo "$as_me:24893: result: $ac_cv_header_db_h" >&5 +echo "$as_me:24951: result: $ac_cv_header_db_h" >&5 echo "${ECHO_T}$ac_cv_header_db_h" >&6 if test "$ac_cv_header_db_h" = yes; then -echo "$as_me:24897: checking for version of db" >&5 +echo "$as_me:24955: checking for version of db" >&5 echo $ECHO_N "checking for version of db... $ECHO_C" >&6 if test "${cf_cv_hashed_db_version+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -24905,10 +24963,10 @@ cf_cv_hashed_db_version=unknown for cf_db_version in 1 2 3 4 5 6 do -echo "${as_me:-configure}:24908: testing checking for db version $cf_db_version ..." 1>&5 +echo "${as_me:-configure}:24966: testing checking for db version $cf_db_version ..." 1>&5 cat >"conftest.$ac_ext" <<_ACEOF -#line 24911 "configure" +#line 24969 "configure" #include "confdefs.h" $ac_includes_default @@ -24938,16 +24996,16 @@ DBT *foo = 0 } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:24941: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:24999: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:24944: \$? = $ac_status" >&5 + echo "$as_me:25002: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:24947: \"$ac_try\"") >&5 + { (eval echo "$as_me:25005: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:24950: \$? = $ac_status" >&5 + echo "$as_me:25008: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_hashed_db_version=$cf_db_version @@ -24961,16 +25019,16 @@ rm -f "conftest.$ac_objext" "conftest.$ac_ext" done fi -echo "$as_me:24964: result: $cf_cv_hashed_db_version" >&5 +echo "$as_me:25022: result: $cf_cv_hashed_db_version" >&5 echo "${ECHO_T}$cf_cv_hashed_db_version" >&6 if test "$cf_cv_hashed_db_version" = unknown ; then - { { echo "$as_me:24968: error: Cannot determine version of db" >&5 + { { echo "$as_me:25026: error: Cannot determine version of db" >&5 echo "$as_me: error: Cannot determine version of db" >&2;} { (exit 1); exit 1; }; } else -echo "$as_me:24973: checking for db libraries" >&5 +echo "$as_me:25031: checking for db libraries" >&5 echo $ECHO_N "checking for db libraries... $ECHO_C" >&6 if test "${cf_cv_hashed_db_libs+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -25000,10 +25058,10 @@ LIBS="$cf_add_libs" fi -echo "${as_me:-configure}:25003: testing checking for library $cf_db_libs ..." 1>&5 +echo "${as_me:-configure}:25061: testing checking for library $cf_db_libs ..." 1>&5 cat >"conftest.$ac_ext" <<_ACEOF -#line 25006 "configure" +#line 25064 "configure" #include "confdefs.h" $ac_includes_default @@ -25058,16 +25116,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:25061: \"$ac_link\"") >&5 +if { (eval echo "$as_me:25119: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:25064: \$? = $ac_status" >&5 + echo "$as_me:25122: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:25067: \"$ac_try\"") >&5 + { (eval echo "$as_me:25125: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25070: \$? = $ac_status" >&5 + echo "$as_me:25128: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then if test -n "$cf_db_libs" ; then @@ -25087,11 +25145,11 @@ rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" done fi -echo "$as_me:25090: result: $cf_cv_hashed_db_libs" >&5 +echo "$as_me:25148: result: $cf_cv_hashed_db_libs" >&5 echo "${ECHO_T}$cf_cv_hashed_db_libs" >&6 if test "$cf_cv_hashed_db_libs" = unknown ; then - { { echo "$as_me:25094: error: Cannot determine library for db" >&5 + { { echo "$as_me:25152: error: Cannot determine library for db" >&5 echo "$as_me: error: Cannot determine library for db" >&2;} { (exit 1); exit 1; }; } elif test "$cf_cv_hashed_db_libs" != default ; then @@ -25117,7 +25175,7 @@ fi else - { { echo "$as_me:25120: error: Cannot find db.h" >&5 + { { echo "$as_me:25178: error: Cannot find db.h" >&5 echo "$as_me: error: Cannot find db.h" >&2;} { (exit 1); exit 1; }; } @@ -25132,7 +25190,7 @@ fi # Just in case, check if the C compiler has a bool type. -echo "$as_me:25135: checking if we should include stdbool.h" >&5 +echo "$as_me:25193: checking if we should include stdbool.h" >&5 echo $ECHO_N "checking if we should include stdbool.h... $ECHO_C" >&6 if test "${cf_cv_header_stdbool_h+set}" = set; then @@ -25140,7 +25198,7 @@ if test "${cf_cv_header_stdbool_h+set}" = set; then else cat >"conftest.$ac_ext" <<_ACEOF -#line 25143 "configure" +#line 25201 "configure" #include "confdefs.h" int @@ -25152,23 +25210,23 @@ bool foo = false; (void)foo } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:25155: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:25213: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:25158: \$? = $ac_status" >&5 + echo "$as_me:25216: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:25161: \"$ac_try\"") >&5 + { (eval echo "$as_me:25219: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25164: \$? = $ac_status" >&5 + echo "$as_me:25222: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_header_stdbool_h=0 else echo "$as_me: failed program was:" >&5 cat "conftest.$ac_ext" >&5 cat >"conftest.$ac_ext" <<_ACEOF -#line 25171 "configure" +#line 25229 "configure" #include "confdefs.h" #ifndef __BEOS__ @@ -25184,16 +25242,16 @@ bool foo = false; (void)foo } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:25187: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:25245: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:25190: \$? = $ac_status" >&5 + echo "$as_me:25248: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:25193: \"$ac_try\"") >&5 + { (eval echo "$as_me:25251: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25196: \$? = $ac_status" >&5 + echo "$as_me:25254: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_header_stdbool_h=1 else @@ -25207,13 +25265,13 @@ rm -f "conftest.$ac_objext" "conftest.$ac_ext" fi if test "$cf_cv_header_stdbool_h" = 1 -then echo "$as_me:25210: result: yes" >&5 +then echo "$as_me:25268: result: yes" >&5 echo "${ECHO_T}yes" >&6 -else echo "$as_me:25212: result: no" >&5 +else echo "$as_me:25270: result: no" >&5 echo "${ECHO_T}no" >&6 fi -echo "$as_me:25216: checking for builtin bool type" >&5 +echo "$as_me:25274: checking for builtin bool type" >&5 echo $ECHO_N "checking for builtin bool type... $ECHO_C" >&6 if test "${cf_cv_cc_bool_type+set}" = set; then @@ -25221,7 +25279,7 @@ if test "${cf_cv_cc_bool_type+set}" = set; then else cat >"conftest.$ac_ext" <<_ACEOF -#line 25224 "configure" +#line 25282 "configure" #include "confdefs.h" #include @@ -25236,16 +25294,16 @@ bool x = false; (void)x } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:25239: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:25297: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:25242: \$? = $ac_status" >&5 + echo "$as_me:25300: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:25245: \"$ac_try\"") >&5 + { (eval echo "$as_me:25303: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25248: \$? = $ac_status" >&5 + echo "$as_me:25306: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_cc_bool_type=1 else @@ -25258,9 +25316,9 @@ rm -f "conftest.$ac_objext" "conftest.$ac_ext" fi if test "$cf_cv_cc_bool_type" = 1 -then echo "$as_me:25261: result: yes" >&5 +then echo "$as_me:25319: result: yes" >&5 echo "${ECHO_T}yes" >&6 -else echo "$as_me:25263: result: no" >&5 +else echo "$as_me:25321: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -25277,10 +25335,10 @@ if test -n "$GXX" ; then cf_save="$LIBS" LIBS="$LIBS $CXXLIBS" - echo "$as_me:25280: checking if we already have C++ library" >&5 + echo "$as_me:25338: checking if we already have C++ library" >&5 echo $ECHO_N "checking if we already have C++ library... $ECHO_C" >&6 cat >"conftest.$ac_ext" <<_ACEOF -#line 25283 "configure" +#line 25341 "configure" #include "confdefs.h" #include @@ -25294,16 +25352,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:25297: \"$ac_link\"") >&5 +if { (eval echo "$as_me:25355: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:25300: \$? = $ac_status" >&5 + echo "$as_me:25358: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:25303: \"$ac_try\"") >&5 + { (eval echo "$as_me:25361: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25306: \$? = $ac_status" >&5 + echo "$as_me:25364: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_have_libstdcpp=yes else @@ -25312,7 +25370,7 @@ cat "conftest.$ac_ext" >&5 cf_have_libstdcpp=no fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" - echo "$as_me:25315: result: $cf_have_libstdcpp" >&5 + echo "$as_me:25373: result: $cf_have_libstdcpp" >&5 echo "${ECHO_T}$cf_have_libstdcpp" >&6 LIBS="$cf_save" @@ -25331,7 +25389,7 @@ echo "${ECHO_T}$cf_have_libstdcpp" >&6 ;; esac - echo "$as_me:25334: checking for library $cf_stdcpp_libname" >&5 + echo "$as_me:25392: checking for library $cf_stdcpp_libname" >&5 echo $ECHO_N "checking for library $cf_stdcpp_libname... $ECHO_C" >&6 if test "${cf_cv_libstdcpp+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -25357,7 +25415,7 @@ done LIBS="$cf_add_libs" cat >"conftest.$ac_ext" <<_ACEOF -#line 25360 "configure" +#line 25418 "configure" #include "confdefs.h" #include @@ -25371,16 +25429,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:25374: \"$ac_link\"") >&5 +if { (eval echo "$as_me:25432: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:25377: \$? = $ac_status" >&5 + echo "$as_me:25435: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:25380: \"$ac_try\"") >&5 + { (eval echo "$as_me:25438: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25383: \$? = $ac_status" >&5 + echo "$as_me:25441: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_libstdcpp=yes else @@ -25392,7 +25450,7 @@ rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" LIBS="$cf_save" fi -echo "$as_me:25395: result: $cf_cv_libstdcpp" >&5 +echo "$as_me:25453: result: $cf_cv_libstdcpp" >&5 echo "${ECHO_T}$cf_cv_libstdcpp" >&6 test "$cf_cv_libstdcpp" = yes && { cf_add_libs="$CXXLIBS" @@ -25414,7 +25472,7 @@ CXXLIBS="$cf_add_libs" fi fi - echo "$as_me:25417: checking whether $CXX understands -c and -o together" >&5 + echo "$as_me:25475: checking whether $CXX understands -c and -o together" >&5 echo $ECHO_N "checking whether $CXX understands -c and -o together... $ECHO_C" >&6 if test "${cf_cv_prog_CXX_c_o+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -25429,15 +25487,15 @@ CF_EOF # We do the test twice because some compilers refuse to overwrite an # existing .o file with -o, though they will create one. ac_try='$CXX $CXXFLAGS $CPPFLAGS -c conftest.$ac_ext -o conftest2.$ac_objext >&5' -if { (eval echo "$as_me:25432: \"$ac_try\"") >&5 +if { (eval echo "$as_me:25490: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25435: \$? = $ac_status" >&5 + echo "$as_me:25493: \$? = $ac_status" >&5 (exit "$ac_status"); } && - test -f conftest2.$ac_objext && { (eval echo "$as_me:25437: \"$ac_try\"") >&5 + test -f conftest2.$ac_objext && { (eval echo "$as_me:25495: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25440: \$? = $ac_status" >&5 + echo "$as_me:25498: \$? = $ac_status" >&5 (exit "$ac_status"); }; then eval cf_cv_prog_CXX_c_o=yes @@ -25448,10 +25506,10 @@ rm -rf ./conftest* fi if test "$cf_cv_prog_CXX_c_o" = yes; then - echo "$as_me:25451: result: yes" >&5 + echo "$as_me:25509: result: yes" >&5 echo "${ECHO_T}yes" >&6 else - echo "$as_me:25454: result: no" >&5 + echo "$as_me:25512: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -25471,7 +25529,7 @@ case "$cf_cv_system_name" in ;; esac if test "$GXX" = yes; then - echo "$as_me:25474: checking for lib$cf_gpp_libname" >&5 + echo "$as_me:25532: checking for lib$cf_gpp_libname" >&5 echo $ECHO_N "checking for lib$cf_gpp_libname... $ECHO_C" >&6 cf_save="$LIBS" @@ -25492,7 +25550,7 @@ done LIBS="$cf_add_libs" cat >"conftest.$ac_ext" <<_ACEOF -#line 25495 "configure" +#line 25553 "configure" #include "confdefs.h" #include <$cf_gpp_libname/builtin.h> @@ -25506,16 +25564,16 @@ two_arg_error_handler_t foo2 = lib_error_handler } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:25509: \"$ac_link\"") >&5 +if { (eval echo "$as_me:25567: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:25512: \$? = $ac_status" >&5 + echo "$as_me:25570: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:25515: \"$ac_try\"") >&5 + { (eval echo "$as_me:25573: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25518: \$? = $ac_status" >&5 + echo "$as_me:25576: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cxx_library=yes @@ -25552,7 +25610,7 @@ else echo "$as_me: failed program was:" >&5 cat "conftest.$ac_ext" >&5 cat >"conftest.$ac_ext" <<_ACEOF -#line 25555 "configure" +#line 25613 "configure" #include "confdefs.h" #include @@ -25566,16 +25624,16 @@ two_arg_error_handler_t foo2 = lib_error_handler } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:25569: \"$ac_link\"") >&5 +if { (eval echo "$as_me:25627: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:25572: \$? = $ac_status" >&5 + echo "$as_me:25630: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:25575: \"$ac_try\"") >&5 + { (eval echo "$as_me:25633: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25578: \$? = $ac_status" >&5 + echo "$as_me:25636: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cxx_library=yes @@ -25608,7 +25666,7 @@ rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" LIBS="$cf_save" - echo "$as_me:25611: result: $cf_cxx_library" >&5 + echo "$as_me:25669: result: $cf_cxx_library" >&5 echo "${ECHO_T}$cf_cxx_library" >&6 fi @@ -25624,7 +25682,7 @@ ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS "conftest.$ac_ext" >&5' ac_link='$CXX -o "conftest$ac_exeext" $CXXFLAGS $CPPFLAGS $LDFLAGS "conftest.$ac_ext" $LIBS >&5' ac_compiler_gnu=$ac_cv_cxx_compiler_gnu ac_main_return="return" -echo "$as_me:25627: checking how to run the C++ preprocessor" >&5 +echo "$as_me:25685: checking how to run the C++ preprocessor" >&5 echo $ECHO_N "checking how to run the C++ preprocessor... $ECHO_C" >&6 if test -z "$CXXCPP"; then if test "${ac_cv_prog_CXXCPP+set}" = set; then @@ -25641,18 +25699,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 25644 "configure" +#line 25702 "configure" #include "confdefs.h" #include Syntax error _ACEOF -if { (eval echo "$as_me:25649: \"$ac_cpp "conftest.$ac_ext"\"") >&5 +if { (eval echo "$as_me:25707: \"$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:25655: \$? = $ac_status" >&5 + echo "$as_me:25713: \$? = $ac_status" >&5 (exit "$ac_status"); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_cxx_preproc_warn_flag @@ -25675,17 +25733,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 25678 "configure" +#line 25736 "configure" #include "confdefs.h" #include _ACEOF -if { (eval echo "$as_me:25682: \"$ac_cpp "conftest.$ac_ext"\"") >&5 +if { (eval echo "$as_me:25740: \"$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:25688: \$? = $ac_status" >&5 + echo "$as_me:25746: \$? = $ac_status" >&5 (exit "$ac_status"); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_cxx_preproc_warn_flag @@ -25722,7 +25780,7 @@ fi else ac_cv_prog_CXXCPP=$CXXCPP fi -echo "$as_me:25725: result: $CXXCPP" >&5 +echo "$as_me:25783: result: $CXXCPP" >&5 echo "${ECHO_T}$CXXCPP" >&6 ac_preproc_ok=false for ac_cxx_preproc_warn_flag in '' yes @@ -25732,18 +25790,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 25735 "configure" +#line 25793 "configure" #include "confdefs.h" #include Syntax error _ACEOF -if { (eval echo "$as_me:25740: \"$ac_cpp "conftest.$ac_ext"\"") >&5 +if { (eval echo "$as_me:25798: \"$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:25746: \$? = $ac_status" >&5 + echo "$as_me:25804: \$? = $ac_status" >&5 (exit "$ac_status"); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_cxx_preproc_warn_flag @@ -25766,17 +25824,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 25769 "configure" +#line 25827 "configure" #include "confdefs.h" #include _ACEOF -if { (eval echo "$as_me:25773: \"$ac_cpp "conftest.$ac_ext"\"") >&5 +if { (eval echo "$as_me:25831: \"$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:25779: \$? = $ac_status" >&5 + echo "$as_me:25837: \$? = $ac_status" >&5 (exit "$ac_status"); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_cxx_preproc_warn_flag @@ -25804,7 +25862,7 @@ rm -f conftest.err "conftest.$ac_ext" if $ac_preproc_ok; then : else - { { echo "$as_me:25807: error: C++ preprocessor \"$CXXCPP\" fails sanity check" >&5 + { { echo "$as_me:25865: error: C++ preprocessor \"$CXXCPP\" fails sanity check" >&5 echo "$as_me: error: C++ preprocessor \"$CXXCPP\" fails sanity check" >&2;} { (exit 1); exit 1; }; } fi @@ -25819,23 +25877,23 @@ ac_main_return="return" for ac_header in typeinfo do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` -echo "$as_me:25822: checking for $ac_header" >&5 +echo "$as_me:25880: 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 25828 "configure" +#line 25886 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:25832: \"$ac_cpp "conftest.$ac_ext"\"") >&5 +if { (eval echo "$as_me:25890: \"$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:25838: \$? = $ac_status" >&5 + echo "$as_me:25896: \$? = $ac_status" >&5 (exit "$ac_status"); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_cxx_preproc_warn_flag @@ -25854,7 +25912,7 @@ else fi rm -f conftest.err "conftest.$ac_ext" fi -echo "$as_me:25857: result: `eval echo '${'"$as_ac_Header"'}'`" >&5 +echo "$as_me:25915: 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 <&5 +echo "$as_me:25928: 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 25876 "configure" +#line 25934 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:25880: \"$ac_cpp "conftest.$ac_ext"\"") >&5 +if { (eval echo "$as_me:25938: \"$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:25886: \$? = $ac_status" >&5 + echo "$as_me:25944: \$? = $ac_status" >&5 (exit "$ac_status"); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_cxx_preproc_warn_flag @@ -25902,7 +25960,7 @@ else fi rm -f conftest.err "conftest.$ac_ext" fi -echo "$as_me:25905: result: `eval echo '${'"$as_ac_Header"'}'`" >&5 +echo "$as_me:25963: 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 <&5 + echo "$as_me:25974: checking if iostream uses std-namespace" >&5 echo $ECHO_N "checking if iostream uses std-namespace... $ECHO_C" >&6 cat >"conftest.$ac_ext" <<_ACEOF -#line 25919 "configure" +#line 25977 "configure" #include "confdefs.h" #include @@ -25933,16 +25991,16 @@ cerr << "testing" << endl; } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:25936: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:25994: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:25939: \$? = $ac_status" >&5 + echo "$as_me:25997: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:25942: \"$ac_try\"") >&5 + { (eval echo "$as_me:26000: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25945: \$? = $ac_status" >&5 + echo "$as_me:26003: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_iostream_namespace=yes else @@ -25951,7 +26009,7 @@ cat "conftest.$ac_ext" >&5 cf_iostream_namespace=no fi rm -f "conftest.$ac_objext" "conftest.$ac_ext" - echo "$as_me:25954: result: $cf_iostream_namespace" >&5 + echo "$as_me:26012: result: $cf_iostream_namespace" >&5 echo "${ECHO_T}$cf_iostream_namespace" >&6 if test "$cf_iostream_namespace" = yes ; then @@ -25962,7 +26020,7 @@ EOF fi fi -echo "$as_me:25965: checking if we should include stdbool.h" >&5 +echo "$as_me:26023: checking if we should include stdbool.h" >&5 echo $ECHO_N "checking if we should include stdbool.h... $ECHO_C" >&6 if test "${cf_cv_header_stdbool_h+set}" = set; then @@ -25970,7 +26028,7 @@ if test "${cf_cv_header_stdbool_h+set}" = set; then else cat >"conftest.$ac_ext" <<_ACEOF -#line 25973 "configure" +#line 26031 "configure" #include "confdefs.h" int @@ -25982,23 +26040,23 @@ bool foo = false; (void)foo } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:25985: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:26043: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:25988: \$? = $ac_status" >&5 + echo "$as_me:26046: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:25991: \"$ac_try\"") >&5 + { (eval echo "$as_me:26049: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25994: \$? = $ac_status" >&5 + echo "$as_me:26052: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_header_stdbool_h=0 else echo "$as_me: failed program was:" >&5 cat "conftest.$ac_ext" >&5 cat >"conftest.$ac_ext" <<_ACEOF -#line 26001 "configure" +#line 26059 "configure" #include "confdefs.h" #ifndef __BEOS__ @@ -26014,16 +26072,16 @@ bool foo = false; (void)foo } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:26017: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:26075: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:26020: \$? = $ac_status" >&5 + echo "$as_me:26078: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:26023: \"$ac_try\"") >&5 + { (eval echo "$as_me:26081: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:26026: \$? = $ac_status" >&5 + echo "$as_me:26084: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_header_stdbool_h=1 else @@ -26037,13 +26095,13 @@ rm -f "conftest.$ac_objext" "conftest.$ac_ext" fi if test "$cf_cv_header_stdbool_h" = 1 -then echo "$as_me:26040: result: yes" >&5 +then echo "$as_me:26098: result: yes" >&5 echo "${ECHO_T}yes" >&6 -else echo "$as_me:26042: result: no" >&5 +else echo "$as_me:26100: result: no" >&5 echo "${ECHO_T}no" >&6 fi -echo "$as_me:26046: checking for builtin bool type" >&5 +echo "$as_me:26104: checking for builtin bool type" >&5 echo $ECHO_N "checking for builtin bool type... $ECHO_C" >&6 if test "${cf_cv_builtin_bool+set}" = set; then @@ -26051,7 +26109,7 @@ if test "${cf_cv_builtin_bool+set}" = set; then else cat >"conftest.$ac_ext" <<_ACEOF -#line 26054 "configure" +#line 26112 "configure" #include "confdefs.h" #include @@ -26066,16 +26124,16 @@ bool x = false; (void)x } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:26069: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:26127: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:26072: \$? = $ac_status" >&5 + echo "$as_me:26130: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:26075: \"$ac_try\"") >&5 + { (eval echo "$as_me:26133: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:26078: \$? = $ac_status" >&5 + echo "$as_me:26136: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_builtin_bool=1 else @@ -26088,19 +26146,19 @@ rm -f "conftest.$ac_objext" "conftest.$ac_ext" fi if test "$cf_cv_builtin_bool" = 1 -then echo "$as_me:26091: result: yes" >&5 +then echo "$as_me:26149: result: yes" >&5 echo "${ECHO_T}yes" >&6 -else echo "$as_me:26093: result: no" >&5 +else echo "$as_me:26151: result: no" >&5 echo "${ECHO_T}no" >&6 fi -echo "$as_me:26097: checking for bool" >&5 +echo "$as_me:26155: checking for bool" >&5 echo $ECHO_N "checking for bool... $ECHO_C" >&6 if test "${ac_cv_type_bool+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >"conftest.$ac_ext" <<_ACEOF -#line 26103 "configure" +#line 26161 "configure" #include "confdefs.h" $ac_includes_default @@ -26135,16 +26193,16 @@ if (sizeof (bool)) } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:26138: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:26196: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:26141: \$? = $ac_status" >&5 + echo "$as_me:26199: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:26144: \"$ac_try\"") >&5 + { (eval echo "$as_me:26202: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:26147: \$? = $ac_status" >&5 + echo "$as_me:26205: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_type_bool=yes else @@ -26154,10 +26212,10 @@ ac_cv_type_bool=no fi rm -f "conftest.$ac_objext" "conftest.$ac_ext" fi -echo "$as_me:26157: result: $ac_cv_type_bool" >&5 +echo "$as_me:26215: result: $ac_cv_type_bool" >&5 echo "${ECHO_T}$ac_cv_type_bool" >&6 -echo "$as_me:26160: checking size of bool" >&5 +echo "$as_me:26218: checking size of bool" >&5 echo $ECHO_N "checking size of bool... $ECHO_C" >&6 if test "${ac_cv_sizeof_bool+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -26166,7 +26224,7 @@ else if test "$cross_compiling" = yes; then # Depending upon the size, compute the lo and hi bounds. cat >"conftest.$ac_ext" <<_ACEOF -#line 26169 "configure" +#line 26227 "configure" #include "confdefs.h" $ac_includes_default @@ -26198,21 +26256,21 @@ int _array_ [1 - 2 * !((sizeof (bool)) >= 0)] } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:26201: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:26259: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:26204: \$? = $ac_status" >&5 + echo "$as_me:26262: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:26207: \"$ac_try\"") >&5 + { (eval echo "$as_me:26265: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:26210: \$? = $ac_status" >&5 + echo "$as_me:26268: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_lo=0 ac_mid=0 while :; do cat >"conftest.$ac_ext" <<_ACEOF -#line 26215 "configure" +#line 26273 "configure" #include "confdefs.h" $ac_includes_default @@ -26244,16 +26302,16 @@ int _array_ [1 - 2 * !((sizeof (bool)) <= $ac_mid)] } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:26247: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:26305: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:26250: \$? = $ac_status" >&5 + echo "$as_me:26308: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:26253: \"$ac_try\"") >&5 + { (eval echo "$as_me:26311: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:26256: \$? = $ac_status" >&5 + echo "$as_me:26314: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_hi=$ac_mid; break else @@ -26269,7 +26327,7 @@ cat "conftest.$ac_ext" >&5 ac_hi=-1 ac_mid=-1 while :; do cat >"conftest.$ac_ext" <<_ACEOF -#line 26272 "configure" +#line 26330 "configure" #include "confdefs.h" $ac_includes_default @@ -26301,16 +26359,16 @@ int _array_ [1 - 2 * !((sizeof (bool)) >= $ac_mid)] } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:26304: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:26362: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:26307: \$? = $ac_status" >&5 + echo "$as_me:26365: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:26310: \"$ac_try\"") >&5 + { (eval echo "$as_me:26368: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:26313: \$? = $ac_status" >&5 + echo "$as_me:26371: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_lo=$ac_mid; break else @@ -26326,7 +26384,7 @@ rm -f "conftest.$ac_objext" "conftest.$ac_ext" while test "x$ac_lo" != "x$ac_hi"; do ac_mid=`expr '(' "$ac_hi" - "$ac_lo" ')' / 2 + "$ac_lo"` cat >"conftest.$ac_ext" <<_ACEOF -#line 26329 "configure" +#line 26387 "configure" #include "confdefs.h" $ac_includes_default @@ -26358,16 +26416,16 @@ int _array_ [1 - 2 * !((sizeof (bool)) <= $ac_mid)] } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:26361: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:26419: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:26364: \$? = $ac_status" >&5 + echo "$as_me:26422: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:26367: \"$ac_try\"") >&5 + { (eval echo "$as_me:26425: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:26370: \$? = $ac_status" >&5 + echo "$as_me:26428: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_hi=$ac_mid else @@ -26380,12 +26438,12 @@ done ac_cv_sizeof_bool=$ac_lo else if test "$cross_compiling" = yes; then - { { echo "$as_me:26383: error: cannot run test program while cross compiling" >&5 + { { echo "$as_me:26441: 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 26388 "configure" +#line 26446 "configure" #include "confdefs.h" $ac_includes_default @@ -26421,15 +26479,15 @@ fclose (f); } _ACEOF rm -f "conftest$ac_exeext" -if { (eval echo "$as_me:26424: \"$ac_link\"") >&5 +if { (eval echo "$as_me:26482: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:26427: \$? = $ac_status" >&5 + echo "$as_me:26485: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='"./conftest$ac_exeext"' - { (eval echo "$as_me:26429: \"$ac_try\"") >&5 + { (eval echo "$as_me:26487: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:26432: \$? = $ac_status" >&5 + echo "$as_me:26490: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_sizeof_bool=`cat conftest.val` else @@ -26445,13 +26503,13 @@ else ac_cv_sizeof_bool=0 fi fi -echo "$as_me:26448: result: $ac_cv_sizeof_bool" >&5 +echo "$as_me:26506: result: $ac_cv_sizeof_bool" >&5 echo "${ECHO_T}$ac_cv_sizeof_bool" >&6 cat >>confdefs.h <&5 +echo "$as_me:26512: checking for type of bool" >&5 echo $ECHO_N "checking for type of bool... $ECHO_C" >&6 if test "${cf_cv_type_of_bool+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -26470,7 +26528,7 @@ else else cat >"conftest.$ac_ext" <<_ACEOF -#line 26473 "configure" +#line 26531 "configure" #include "confdefs.h" $ac_includes_default @@ -26511,15 +26569,15 @@ int main(void) _ACEOF rm -f "conftest$ac_exeext" -if { (eval echo "$as_me:26514: \"$ac_link\"") >&5 +if { (eval echo "$as_me:26572: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:26517: \$? = $ac_status" >&5 + echo "$as_me:26575: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='"./conftest$ac_exeext"' - { (eval echo "$as_me:26519: \"$ac_try\"") >&5 + { (eval echo "$as_me:26577: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:26522: \$? = $ac_status" >&5 + echo "$as_me:26580: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_type_of_bool=`cat cf_test.out` if test -z "$cf_cv_type_of_bool"; then @@ -26536,19 +26594,19 @@ fi rm -f cf_test.out fi -echo "$as_me:26539: result: $cf_cv_type_of_bool" >&5 +echo "$as_me:26597: result: $cf_cv_type_of_bool" >&5 echo "${ECHO_T}$cf_cv_type_of_bool" >&6 if test "$cf_cv_type_of_bool" = unknown ; then case .$NCURSES_BOOL in (.auto|.) NCURSES_BOOL=unsigned;; esac - { echo "$as_me:26546: WARNING: Assuming $NCURSES_BOOL for type of bool" >&5 + { echo "$as_me:26604: WARNING: Assuming $NCURSES_BOOL for type of bool" >&5 echo "$as_me: WARNING: Assuming $NCURSES_BOOL for type of bool" >&2;} cf_cv_type_of_bool=$NCURSES_BOOL fi -echo "$as_me:26551: checking for special defines needed for etip.h" >&5 +echo "$as_me:26609: checking for special defines needed for etip.h" >&5 echo $ECHO_N "checking for special defines needed for etip.h... $ECHO_C" >&6 cf_save_CXXFLAGS="$CXXFLAGS" cf_result="none" @@ -26566,7 +26624,7 @@ do test -n "$cf_math" && CXXFLAGS="$CXXFLAGS -DETIP_NEEDS_${cf_math}" test -n "$cf_excp" && CXXFLAGS="$CXXFLAGS -DETIP_NEEDS_${cf_excp}" cat >"conftest.$ac_ext" <<_ACEOF -#line 26569 "configure" +#line 26627 "configure" #include "confdefs.h" #include @@ -26580,16 +26638,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:26583: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:26641: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:26586: \$? = $ac_status" >&5 + echo "$as_me:26644: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:26589: \"$ac_try\"") >&5 + { (eval echo "$as_me:26647: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:26592: \$? = $ac_status" >&5 + echo "$as_me:26650: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then test -n "$cf_math" && cat >>confdefs.h <&5 +echo "$as_me:26671: result: ${cf_result:-(none)}" >&5 echo "${ECHO_T}${cf_result:-(none)}" >&6 CXXFLAGS="$cf_save_CXXFLAGS" if test -n "$CXX"; then -echo "$as_me:26618: checking if $CXX accepts override keyword" >&5 +echo "$as_me:26676: checking if $CXX accepts override keyword" >&5 echo $ECHO_N "checking if $CXX accepts override keyword... $ECHO_C" >&6 if test "${cf_cv_cpp_override+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -26632,7 +26690,7 @@ ac_main_return="return" cf_cv_cpp_override=unknown else cat >"conftest.$ac_ext" <<_ACEOF -#line 26635 "configure" +#line 26693 "configure" #include "confdefs.h" class base @@ -26651,15 +26709,15 @@ int main(void) { } _ACEOF rm -f "conftest$ac_exeext" -if { (eval echo "$as_me:26654: \"$ac_link\"") >&5 +if { (eval echo "$as_me:26712: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:26657: \$? = $ac_status" >&5 + echo "$as_me:26715: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='"./conftest$ac_exeext"' - { (eval echo "$as_me:26659: \"$ac_try\"") >&5 + { (eval echo "$as_me:26717: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:26662: \$? = $ac_status" >&5 + echo "$as_me:26720: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_cpp_override=yes else @@ -26678,7 +26736,7 @@ ac_compiler_gnu=$ac_cv_cxx_compiler_gnu ac_main_return="return" fi -echo "$as_me:26681: result: $cf_cv_cpp_override" >&5 +echo "$as_me:26739: result: $cf_cv_cpp_override" >&5 echo "${ECHO_T}$cf_cv_cpp_override" >&6 fi test "$cf_cv_cpp_override" = yes && @@ -26687,7 +26745,7 @@ cat >>confdefs.h <<\EOF EOF if test -n "$CXX"; then -echo "$as_me:26690: checking if $CXX accepts parameter initialization" >&5 +echo "$as_me:26748: checking if $CXX accepts parameter initialization" >&5 echo $ECHO_N "checking if $CXX accepts parameter initialization... $ECHO_C" >&6 if test "${cf_cv_cpp_param_init+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -26704,7 +26762,7 @@ ac_main_return="return" cf_cv_cpp_param_init=unknown else cat >"conftest.$ac_ext" <<_ACEOF -#line 26707 "configure" +#line 26765 "configure" #include "confdefs.h" class TEST { @@ -26723,15 +26781,15 @@ int main(void) { } _ACEOF rm -f "conftest$ac_exeext" -if { (eval echo "$as_me:26726: \"$ac_link\"") >&5 +if { (eval echo "$as_me:26784: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:26729: \$? = $ac_status" >&5 + echo "$as_me:26787: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='"./conftest$ac_exeext"' - { (eval echo "$as_me:26731: \"$ac_try\"") >&5 + { (eval echo "$as_me:26789: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:26734: \$? = $ac_status" >&5 + echo "$as_me:26792: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_cpp_param_init=yes else @@ -26750,7 +26808,7 @@ ac_compiler_gnu=$ac_cv_cxx_compiler_gnu ac_main_return="return" fi -echo "$as_me:26753: result: $cf_cv_cpp_param_init" >&5 +echo "$as_me:26811: result: $cf_cv_cpp_param_init" >&5 echo "${ECHO_T}$cf_cv_cpp_param_init" >&6 fi test "$cf_cv_cpp_param_init" = yes && @@ -26760,7 +26818,7 @@ EOF if test -n "$CXX"; then -echo "$as_me:26763: checking if $CXX accepts static_cast" >&5 +echo "$as_me:26821: checking if $CXX accepts static_cast" >&5 echo $ECHO_N "checking if $CXX accepts static_cast... $ECHO_C" >&6 if test "${cf_cv_cpp_static_cast+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -26774,7 +26832,7 @@ ac_compiler_gnu=$ac_cv_cxx_compiler_gnu ac_main_return="return" cat >"conftest.$ac_ext" <<_ACEOF -#line 26777 "configure" +#line 26835 "configure" #include "confdefs.h" class NCursesPanel @@ -26818,16 +26876,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:26821: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:26879: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:26824: \$? = $ac_status" >&5 + echo "$as_me:26882: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:26827: \"$ac_try\"") >&5 + { (eval echo "$as_me:26885: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:26830: \$? = $ac_status" >&5 + echo "$as_me:26888: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_cpp_static_cast=yes else @@ -26845,7 +26903,7 @@ ac_compiler_gnu=$ac_cv_cxx_compiler_gnu ac_main_return="return" fi -echo "$as_me:26848: result: $cf_cv_cpp_static_cast" >&5 +echo "$as_me:26906: result: $cf_cv_cpp_static_cast" >&5 echo "${ECHO_T}$cf_cv_cpp_static_cast" >&6 fi @@ -26894,13 +26952,13 @@ else else if test "$cf_cv_header_stdbool_h" = 1 ; then -echo "$as_me:26897: checking for bool" >&5 +echo "$as_me:26955: checking for bool" >&5 echo $ECHO_N "checking for bool... $ECHO_C" >&6 if test "${ac_cv_type_bool+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >"conftest.$ac_ext" <<_ACEOF -#line 26903 "configure" +#line 26961 "configure" #include "confdefs.h" $ac_includes_default @@ -26935,16 +26993,16 @@ if (sizeof (bool)) } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:26938: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:26996: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:26941: \$? = $ac_status" >&5 + echo "$as_me:26999: \$? = $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:27002: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:26947: \$? = $ac_status" >&5 + echo "$as_me:27005: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_type_bool=yes else @@ -26954,10 +27012,10 @@ ac_cv_type_bool=no fi rm -f "conftest.$ac_objext" "conftest.$ac_ext" fi -echo "$as_me:26957: result: $ac_cv_type_bool" >&5 +echo "$as_me:27015: result: $ac_cv_type_bool" >&5 echo "${ECHO_T}$ac_cv_type_bool" >&6 -echo "$as_me:26960: checking size of bool" >&5 +echo "$as_me:27018: checking size of bool" >&5 echo $ECHO_N "checking size of bool... $ECHO_C" >&6 if test "${ac_cv_sizeof_bool+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -26966,7 +27024,7 @@ else if test "$cross_compiling" = yes; then # Depending upon the size, compute the lo and hi bounds. cat >"conftest.$ac_ext" <<_ACEOF -#line 26969 "configure" +#line 27027 "configure" #include "confdefs.h" $ac_includes_default @@ -26998,21 +27056,21 @@ int _array_ [1 - 2 * !((sizeof (bool)) >= 0)] } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:27001: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:27059: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:27004: \$? = $ac_status" >&5 + echo "$as_me:27062: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:27007: \"$ac_try\"") >&5 + { (eval echo "$as_me:27065: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27010: \$? = $ac_status" >&5 + echo "$as_me:27068: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_lo=0 ac_mid=0 while :; do cat >"conftest.$ac_ext" <<_ACEOF -#line 27015 "configure" +#line 27073 "configure" #include "confdefs.h" $ac_includes_default @@ -27044,16 +27102,16 @@ int _array_ [1 - 2 * !((sizeof (bool)) <= $ac_mid)] } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:27047: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:27105: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:27050: \$? = $ac_status" >&5 + echo "$as_me:27108: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:27053: \"$ac_try\"") >&5 + { (eval echo "$as_me:27111: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27056: \$? = $ac_status" >&5 + echo "$as_me:27114: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_hi=$ac_mid; break else @@ -27069,7 +27127,7 @@ cat "conftest.$ac_ext" >&5 ac_hi=-1 ac_mid=-1 while :; do cat >"conftest.$ac_ext" <<_ACEOF -#line 27072 "configure" +#line 27130 "configure" #include "confdefs.h" $ac_includes_default @@ -27101,16 +27159,16 @@ int _array_ [1 - 2 * !((sizeof (bool)) >= $ac_mid)] } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:27104: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:27162: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:27107: \$? = $ac_status" >&5 + echo "$as_me:27165: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:27110: \"$ac_try\"") >&5 + { (eval echo "$as_me:27168: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27113: \$? = $ac_status" >&5 + echo "$as_me:27171: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_lo=$ac_mid; break else @@ -27126,7 +27184,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 27129 "configure" +#line 27187 "configure" #include "confdefs.h" $ac_includes_default @@ -27158,16 +27216,16 @@ int _array_ [1 - 2 * !((sizeof (bool)) <= $ac_mid)] } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:27161: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:27219: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:27164: \$? = $ac_status" >&5 + echo "$as_me:27222: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:27167: \"$ac_try\"") >&5 + { (eval echo "$as_me:27225: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27170: \$? = $ac_status" >&5 + echo "$as_me:27228: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_hi=$ac_mid else @@ -27180,12 +27238,12 @@ done ac_cv_sizeof_bool=$ac_lo else if test "$cross_compiling" = yes; then - { { echo "$as_me:27183: error: cannot run test program while cross compiling" >&5 + { { echo "$as_me:27241: error: cannot run test program while cross compiling" >&5 echo "$as_me: error: cannot run test program while cross compiling" >&2;} { (exit 1); exit 1; }; } else cat >"conftest.$ac_ext" <<_ACEOF -#line 27188 "configure" +#line 27246 "configure" #include "confdefs.h" $ac_includes_default @@ -27221,15 +27279,15 @@ fclose (f); } _ACEOF rm -f "conftest$ac_exeext" -if { (eval echo "$as_me:27224: \"$ac_link\"") >&5 +if { (eval echo "$as_me:27282: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:27227: \$? = $ac_status" >&5 + echo "$as_me:27285: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='"./conftest$ac_exeext"' - { (eval echo "$as_me:27229: \"$ac_try\"") >&5 + { (eval echo "$as_me:27287: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27232: \$? = $ac_status" >&5 + echo "$as_me:27290: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_sizeof_bool=`cat conftest.val` else @@ -27245,13 +27303,13 @@ else ac_cv_sizeof_bool=0 fi fi -echo "$as_me:27248: result: $ac_cv_sizeof_bool" >&5 +echo "$as_me:27306: result: $ac_cv_sizeof_bool" >&5 echo "${ECHO_T}$ac_cv_sizeof_bool" >&6 cat >>confdefs.h <&5 +echo "$as_me:27312: checking for type of bool" >&5 echo $ECHO_N "checking for type of bool... $ECHO_C" >&6 if test "${cf_cv_type_of_bool+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -27270,7 +27328,7 @@ else else cat >"conftest.$ac_ext" <<_ACEOF -#line 27273 "configure" +#line 27331 "configure" #include "confdefs.h" $ac_includes_default @@ -27311,15 +27369,15 @@ int main(void) _ACEOF rm -f "conftest$ac_exeext" -if { (eval echo "$as_me:27314: \"$ac_link\"") >&5 +if { (eval echo "$as_me:27372: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:27317: \$? = $ac_status" >&5 + echo "$as_me:27375: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='"./conftest$ac_exeext"' - { (eval echo "$as_me:27319: \"$ac_try\"") >&5 + { (eval echo "$as_me:27377: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27322: \$? = $ac_status" >&5 + echo "$as_me:27380: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_type_of_bool=`cat cf_test.out` if test -z "$cf_cv_type_of_bool"; then @@ -27336,26 +27394,26 @@ fi rm -f cf_test.out fi -echo "$as_me:27339: result: $cf_cv_type_of_bool" >&5 +echo "$as_me:27397: result: $cf_cv_type_of_bool" >&5 echo "${ECHO_T}$cf_cv_type_of_bool" >&6 if test "$cf_cv_type_of_bool" = unknown ; then case .$NCURSES_BOOL in (.auto|.) NCURSES_BOOL=unsigned;; esac - { echo "$as_me:27346: WARNING: Assuming $NCURSES_BOOL for type of bool" >&5 + { echo "$as_me:27404: WARNING: Assuming $NCURSES_BOOL for type of bool" >&5 echo "$as_me: WARNING: Assuming $NCURSES_BOOL for type of bool" >&2;} cf_cv_type_of_bool=$NCURSES_BOOL fi else - echo "$as_me:27352: checking for fallback type of bool" >&5 + echo "$as_me:27410: checking for fallback type of bool" >&5 echo $ECHO_N "checking for fallback type of bool... $ECHO_C" >&6 case "$host_cpu" in (i?86) cf_cv_type_of_bool=char ;; (*) cf_cv_type_of_bool=int ;; esac - echo "$as_me:27358: result: $cf_cv_type_of_bool" >&5 + echo "$as_me:27416: result: $cf_cv_type_of_bool" >&5 echo "${ECHO_T}$cf_cv_type_of_bool" >&6 fi fi @@ -27384,7 +27442,7 @@ if test -f "${srcdir}/Ada95/Makefile.in" ; then if test "$cf_with_ada" != "no" ; then if test "$with_libtool" != "no"; then - { echo "$as_me:27387: WARNING: libtool does not support Ada - disabling feature" >&5 + { echo "$as_me:27445: WARNING: libtool does not support Ada - disabling feature" >&5 echo "$as_me: WARNING: libtool does not support Ada - disabling feature" >&2;} cf_with_ada=no fi @@ -27401,7 +27459,7 @@ cf_upper_prog_gnat=`echo "${cf_prog_gnat}" | sed y%abcdefghijklmnopqrstuvwxyz./- unset cf_TEMP_gnat # Extract the first word of "$cf_prog_gnat", so it can be a program name with args. set dummy $cf_prog_gnat; ac_word=$2 -echo "$as_me:27404: checking for $ac_word" >&5 +echo "$as_me:27462: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_path_cf_TEMP_gnat+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -27418,7 +27476,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_cf_TEMP_gnat="$ac_dir/$ac_word" - echo "$as_me:27421: found $ac_dir/$ac_word" >&5 + echo "$as_me:27479: found $ac_dir/$ac_word" >&5 break fi done @@ -27430,10 +27488,10 @@ fi cf_TEMP_gnat=$ac_cv_path_cf_TEMP_gnat if test -n "$cf_TEMP_gnat"; then - echo "$as_me:27433: result: $cf_TEMP_gnat" >&5 + echo "$as_me:27491: result: $cf_TEMP_gnat" >&5 echo "${ECHO_T}$cf_TEMP_gnat" >&6 else - echo "$as_me:27436: result: no" >&5 + echo "$as_me:27494: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -27443,7 +27501,7 @@ fi unset cf_cv_gnat_version unset cf_TEMP_gnat -echo "$as_me:27446: checking for $cf_prog_gnat version" >&5 +echo "$as_me:27504: checking for $cf_prog_gnat version" >&5 echo $ECHO_N "checking for $cf_prog_gnat version... $ECHO_C" >&6 if test "${cf_cv_gnat_version+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -27454,7 +27512,7 @@ cf_cv_gnat_version=`$cf_prog_gnat --version 2>&1 | \ sed -e '2,$d' -e 's/[^0-9 \.]//g' -e 's/^[ ]*//' -e 's/ .*//'` fi -echo "$as_me:27457: result: $cf_cv_gnat_version" >&5 +echo "$as_me:27515: result: $cf_cv_gnat_version" >&5 echo "${ECHO_T}$cf_cv_gnat_version" >&6 test -z "$cf_cv_gnat_version" && cf_cv_gnat_version=no eval cf_TEMP_gnat=$cf_cv_gnat_version; unset cf_cv_gnat_version @@ -27483,7 +27541,7 @@ else cd conftest.src for cf_gprconfig in Ada C do - echo "$as_me:27486: checking for gprconfig name for $cf_gprconfig" >&5 + echo "$as_me:27544: checking for gprconfig name for $cf_gprconfig" >&5 echo $ECHO_N "checking for gprconfig name for $cf_gprconfig... $ECHO_C" >&6 if test "$cf_gprconfig" = C then @@ -27502,10 +27560,10 @@ echo $ECHO_N "checking for gprconfig name for $cf_gprconfig... $ECHO_C" >&6 if test -n "$cf_gprconfig_value" then eval "cf_ada_config_$cf_gprconfig=$cf_gprconfig_value" - echo "$as_me:27505: result: $cf_gprconfig_value" >&5 + echo "$as_me:27563: result: $cf_gprconfig_value" >&5 echo "${ECHO_T}$cf_gprconfig_value" >&6 else - echo "$as_me:27508: result: missing" >&5 + echo "$as_me:27566: result: missing" >&5 echo "${ECHO_T}missing" >&6 cf_ada_config="#" break @@ -27518,7 +27576,7 @@ echo "${ECHO_T}missing" >&6 if test "x$cf_ada_config" != "x#" then -echo "$as_me:27521: checking for gnat version" >&5 +echo "$as_me:27579: checking for gnat version" >&5 echo $ECHO_N "checking for gnat version... $ECHO_C" >&6 if test "${cf_cv_gnat_version+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -27529,7 +27587,7 @@ cf_cv_gnat_version=`${cf_ada_make:-gnatmake} --version 2>&1 | \ sed -e '2,$d' -e 's/[^0-9 \.]//g' -e 's/^[ ]*//' -e 's/ .*//'` fi -echo "$as_me:27532: result: $cf_cv_gnat_version" >&5 +echo "$as_me:27590: result: $cf_cv_gnat_version" >&5 echo "${ECHO_T}$cf_cv_gnat_version" >&6 test -z "$cf_cv_gnat_version" && cf_cv_gnat_version=no @@ -27538,7 +27596,7 @@ case "$cf_cv_gnat_version" in cf_cv_prog_gnat_correct=yes ;; (*) - { echo "$as_me:27541: WARNING: Unsupported GNAT version $cf_cv_gnat_version. We require 3.11 or better. Disabling Ada95 binding." >&5 + { echo "$as_me:27599: WARNING: Unsupported GNAT version $cf_cv_gnat_version. We require 3.11 or better. Disabling Ada95 binding." >&5 echo "$as_me: WARNING: Unsupported GNAT version $cf_cv_gnat_version. We require 3.11 or better. Disabling Ada95 binding." >&2;} cf_cv_prog_gnat_correct=no ;; @@ -27546,7 +27604,7 @@ esac # Extract the first word of "m4", so it can be a program name with args. set dummy m4; ac_word=$2 -echo "$as_me:27549: checking for $ac_word" >&5 +echo "$as_me:27607: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_prog_M4_exists+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -27561,7 +27619,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_M4_exists="yes" -echo "$as_me:27564: found $ac_dir/$ac_word" >&5 +echo "$as_me:27622: found $ac_dir/$ac_word" >&5 break done @@ -27570,20 +27628,20 @@ fi fi M4_exists=$ac_cv_prog_M4_exists if test -n "$M4_exists"; then - echo "$as_me:27573: result: $M4_exists" >&5 + echo "$as_me:27631: result: $M4_exists" >&5 echo "${ECHO_T}$M4_exists" >&6 else - echo "$as_me:27576: result: no" >&5 + echo "$as_me:27634: result: no" >&5 echo "${ECHO_T}no" >&6 fi if test "$ac_cv_prog_M4_exists" = no; then cf_cv_prog_gnat_correct=no - { echo "$as_me:27582: WARNING: Ada95 binding required program m4 not found. Ada95 binding disabled" >&5 + { echo "$as_me:27640: WARNING: Ada95 binding required program m4 not found. Ada95 binding disabled" >&5 echo "$as_me: WARNING: Ada95 binding required program m4 not found. Ada95 binding disabled" >&2;} fi if test "$cf_cv_prog_gnat_correct" = yes; then - echo "$as_me:27586: checking if GNAT works" >&5 + echo "$as_me:27644: checking if GNAT works" >&5 echo $ECHO_N "checking if GNAT works... $ECHO_C" >&6 rm -rf ./conftest* ./*~conftest* @@ -27611,7 +27669,7 @@ else fi rm -rf ./conftest* ./*~conftest* - echo "$as_me:27614: result: $cf_cv_prog_gnat_correct" >&5 + echo "$as_me:27672: result: $cf_cv_prog_gnat_correct" >&5 echo "${ECHO_T}$cf_cv_prog_gnat_correct" >&6 fi else @@ -27623,7 +27681,7 @@ fi ADAFLAGS="$ADAFLAGS -gnatpn" - echo "$as_me:27626: checking optimization options for ADAFLAGS" >&5 + echo "$as_me:27684: checking optimization options for ADAFLAGS" >&5 echo $ECHO_N "checking optimization options for ADAFLAGS... $ECHO_C" >&6 case "$CFLAGS" in (*-g*) @@ -27640,10 +27698,10 @@ echo $ECHO_N "checking optimization options for ADAFLAGS... $ECHO_C" >&6 ;; esac - echo "$as_me:27643: result: $ADAFLAGS" >&5 + echo "$as_me:27701: result: $ADAFLAGS" >&5 echo "${ECHO_T}$ADAFLAGS" >&6 -echo "$as_me:27646: checking if GNATPREP supports -T option" >&5 +echo "$as_me:27704: checking if GNATPREP supports -T option" >&5 echo $ECHO_N "checking if GNATPREP supports -T option... $ECHO_C" >&6 if test "${cf_cv_gnatprep_opt_t+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -27653,11 +27711,11 @@ cf_cv_gnatprep_opt_t=no gnatprep -T 2>/dev/null >/dev/null && cf_cv_gnatprep_opt_t=yes fi -echo "$as_me:27656: result: $cf_cv_gnatprep_opt_t" >&5 +echo "$as_me:27714: result: $cf_cv_gnatprep_opt_t" >&5 echo "${ECHO_T}$cf_cv_gnatprep_opt_t" >&6 test "$cf_cv_gnatprep_opt_t" = yes && GNATPREP_OPTS="-T $GNATPREP_OPTS" -echo "$as_me:27660: checking if GNAT supports generics" >&5 +echo "$as_me:27718: checking if GNAT supports generics" >&5 echo $ECHO_N "checking if GNAT supports generics... $ECHO_C" >&6 case "$cf_cv_gnat_version" in (3.1[1-9]*|3.[2-9]*|[4-9].*|[1-9][0-9].[0-9]*|20[0-9][0-9]) @@ -27667,7 +27725,7 @@ case "$cf_cv_gnat_version" in cf_gnat_generics=no ;; esac -echo "$as_me:27670: result: $cf_gnat_generics" >&5 +echo "$as_me:27728: result: $cf_gnat_generics" >&5 echo "${ECHO_T}$cf_gnat_generics" >&6 if test "$cf_gnat_generics" = yes @@ -27679,7 +27737,7 @@ else cf_generic_objects= fi -echo "$as_me:27682: checking if GNAT supports SIGINT" >&5 +echo "$as_me:27740: checking if GNAT supports SIGINT" >&5 echo $ECHO_N "checking if GNAT supports SIGINT... $ECHO_C" >&6 if test "${cf_cv_gnat_sigint+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -27727,7 +27785,7 @@ fi rm -rf ./conftest* ./*~conftest* fi -echo "$as_me:27730: result: $cf_cv_gnat_sigint" >&5 +echo "$as_me:27788: result: $cf_cv_gnat_sigint" >&5 echo "${ECHO_T}$cf_cv_gnat_sigint" >&6 if test "$cf_cv_gnat_sigint" = yes ; then @@ -27740,7 +27798,7 @@ cf_gnat_libraries=no cf_gnat_projects=no if test "$enable_gnat_projects" != no ; then -echo "$as_me:27743: checking if GNAT supports project files" >&5 +echo "$as_me:27801: checking if GNAT supports project files" >&5 echo $ECHO_N "checking if GNAT supports project files... $ECHO_C" >&6 case "$cf_cv_gnat_version" in (3.[0-9]*) @@ -27803,15 +27861,15 @@ CF_EOF esac ;; esac -echo "$as_me:27806: result: $cf_gnat_projects" >&5 +echo "$as_me:27864: result: $cf_gnat_projects" >&5 echo "${ECHO_T}$cf_gnat_projects" >&6 fi # enable_gnat_projects if test "$cf_gnat_projects" = yes then - echo "$as_me:27812: checking if GNAT supports libraries" >&5 + echo "$as_me:27870: checking if GNAT supports libraries" >&5 echo $ECHO_N "checking if GNAT supports libraries... $ECHO_C" >&6 - echo "$as_me:27814: result: $cf_gnat_libraries" >&5 + echo "$as_me:27872: result: $cf_gnat_libraries" >&5 echo "${ECHO_T}$cf_gnat_libraries" >&6 fi @@ -27831,7 +27889,7 @@ then then USE_GNAT_MAKE_GPR="" else - { echo "$as_me:27834: WARNING: use old makefile rules since tools are missing" >&5 + { echo "$as_me:27892: WARNING: use old makefile rules since tools are missing" >&5 echo "$as_me: WARNING: use old makefile rules since tools are missing" >&2;} fi fi @@ -27843,7 +27901,7 @@ else USE_GNAT_LIBRARIES="#" fi -echo "$as_me:27846: checking for Ada95 compiler" >&5 +echo "$as_me:27904: checking for Ada95 compiler" >&5 echo $ECHO_N "checking for Ada95 compiler... $ECHO_C" >&6 # Check whether --with-ada-compiler or --without-ada-compiler was given. @@ -27854,12 +27912,12 @@ else cf_ada_compiler=gnatmake fi; -echo "$as_me:27857: result: $cf_ada_compiler" >&5 +echo "$as_me:27915: result: $cf_ada_compiler" >&5 echo "${ECHO_T}$cf_ada_compiler" >&6 cf_ada_package=terminal_interface -echo "$as_me:27862: checking for Ada95 include directory" >&5 +echo "$as_me:27920: checking for Ada95 include directory" >&5 echo $ECHO_N "checking for Ada95 include directory... $ECHO_C" >&6 # Check whether --with-ada-include or --without-ada-include was given. @@ -27895,7 +27953,7 @@ case ".$withval" in withval=`echo "$withval" | sed -e s%NONE%$cf_path_syntax%` ;; (*) - { { echo "$as_me:27898: error: expected a pathname, not \"$withval\"" >&5 + { { echo "$as_me:27956: error: expected a pathname, not \"$withval\"" >&5 echo "$as_me: error: expected a pathname, not \"$withval\"" >&2;} { (exit 1); exit 1; }; } ;; @@ -27904,10 +27962,10 @@ esac fi eval ADA_INCLUDE="$withval" -echo "$as_me:27907: result: $ADA_INCLUDE" >&5 +echo "$as_me:27965: result: $ADA_INCLUDE" >&5 echo "${ECHO_T}$ADA_INCLUDE" >&6 -echo "$as_me:27910: checking for Ada95 object directory" >&5 +echo "$as_me:27968: checking for Ada95 object directory" >&5 echo $ECHO_N "checking for Ada95 object directory... $ECHO_C" >&6 # Check whether --with-ada-objects or --without-ada-objects was given. @@ -27943,7 +28001,7 @@ case ".$withval" in withval=`echo "$withval" | sed -e s%NONE%$cf_path_syntax%` ;; (*) - { { echo "$as_me:27946: error: expected a pathname, not \"$withval\"" >&5 + { { echo "$as_me:28004: error: expected a pathname, not \"$withval\"" >&5 echo "$as_me: error: expected a pathname, not \"$withval\"" >&2;} { (exit 1); exit 1; }; } ;; @@ -27952,10 +28010,10 @@ esac fi eval ADA_OBJECTS="$withval" -echo "$as_me:27955: result: $ADA_OBJECTS" >&5 +echo "$as_me:28013: result: $ADA_OBJECTS" >&5 echo "${ECHO_T}$ADA_OBJECTS" >&6 -echo "$as_me:27958: checking whether to build an Ada95 shared library" >&5 +echo "$as_me:28016: checking whether to build an Ada95 shared library" >&5 echo $ECHO_N "checking whether to build an Ada95 shared library... $ECHO_C" >&6 # Check whether --with-ada-sharedlib or --without-ada-sharedlib was given. @@ -27976,11 +28034,11 @@ then fi fi -echo "$as_me:27979: result: $with_ada_sharedlib" >&5 +echo "$as_me:28037: result: $with_ada_sharedlib" >&5 echo "${ECHO_T}$with_ada_sharedlib" >&6 if test "x$cf_ada_sharedlib_warn" != xno then - { echo "$as_me:27983: WARNING: disabling Ada95 shared library since GNAT projects are not supported" >&5 + { echo "$as_me:28041: WARNING: disabling Ada95 shared library since GNAT projects are not supported" >&5 echo "$as_me: WARNING: disabling Ada95 shared library since GNAT projects are not supported" >&2;} fi @@ -27998,7 +28056,7 @@ fi # allow the Ada binding to be renamed -echo "$as_me:28001: checking for Ada95 curses library name" >&5 +echo "$as_me:28059: checking for Ada95 curses library name" >&5 echo $ECHO_N "checking for Ada95 curses library name... $ECHO_C" >&6 # Check whether --with-ada-libname or --without-ada-libname was given. @@ -28014,7 +28072,7 @@ case "x$ADA_LIBNAME" in ;; esac -echo "$as_me:28017: result: $ADA_LIBNAME" >&5 +echo "$as_me:28075: result: $ADA_LIBNAME" >&5 echo "${ECHO_T}$ADA_LIBNAME" >&6 fi @@ -28025,13 +28083,13 @@ fi # do this "late" to avoid conflict with header-checks if test "x$with_widec" = xyes ; then - echo "$as_me:28028: checking for wchar_t" >&5 + echo "$as_me:28086: checking for wchar_t" >&5 echo $ECHO_N "checking for wchar_t... $ECHO_C" >&6 if test "${ac_cv_type_wchar_t+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >"conftest.$ac_ext" <<_ACEOF -#line 28034 "configure" +#line 28092 "configure" #include "confdefs.h" $ac_includes_default int @@ -28046,16 +28104,16 @@ if (sizeof (wchar_t)) } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:28049: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:28107: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:28052: \$? = $ac_status" >&5 + echo "$as_me:28110: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:28055: \"$ac_try\"") >&5 + { (eval echo "$as_me:28113: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28058: \$? = $ac_status" >&5 + echo "$as_me:28116: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_type_wchar_t=yes else @@ -28065,10 +28123,10 @@ ac_cv_type_wchar_t=no fi rm -f "conftest.$ac_objext" "conftest.$ac_ext" fi -echo "$as_me:28068: result: $ac_cv_type_wchar_t" >&5 +echo "$as_me:28126: result: $ac_cv_type_wchar_t" >&5 echo "${ECHO_T}$ac_cv_type_wchar_t" >&6 -echo "$as_me:28071: checking size of wchar_t" >&5 +echo "$as_me:28129: checking size of wchar_t" >&5 echo $ECHO_N "checking size of wchar_t... $ECHO_C" >&6 if test "${ac_cv_sizeof_wchar_t+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -28077,7 +28135,7 @@ else if test "$cross_compiling" = yes; then # Depending upon the size, compute the lo and hi bounds. cat >"conftest.$ac_ext" <<_ACEOF -#line 28080 "configure" +#line 28138 "configure" #include "confdefs.h" $ac_includes_default int @@ -28089,21 +28147,21 @@ int _array_ [1 - 2 * !((sizeof (wchar_t)) >= 0)] } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:28092: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:28150: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:28095: \$? = $ac_status" >&5 + echo "$as_me:28153: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:28098: \"$ac_try\"") >&5 + { (eval echo "$as_me:28156: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28101: \$? = $ac_status" >&5 + echo "$as_me:28159: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_lo=0 ac_mid=0 while :; do cat >"conftest.$ac_ext" <<_ACEOF -#line 28106 "configure" +#line 28164 "configure" #include "confdefs.h" $ac_includes_default int @@ -28115,16 +28173,16 @@ int _array_ [1 - 2 * !((sizeof (wchar_t)) <= $ac_mid)] } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:28118: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:28176: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:28121: \$? = $ac_status" >&5 + echo "$as_me:28179: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:28124: \"$ac_try\"") >&5 + { (eval echo "$as_me:28182: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28127: \$? = $ac_status" >&5 + echo "$as_me:28185: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_hi=$ac_mid; break else @@ -28140,7 +28198,7 @@ cat "conftest.$ac_ext" >&5 ac_hi=-1 ac_mid=-1 while :; do cat >"conftest.$ac_ext" <<_ACEOF -#line 28143 "configure" +#line 28201 "configure" #include "confdefs.h" $ac_includes_default int @@ -28152,16 +28210,16 @@ int _array_ [1 - 2 * !((sizeof (wchar_t)) >= $ac_mid)] } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:28155: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:28213: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:28158: \$? = $ac_status" >&5 + echo "$as_me:28216: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:28161: \"$ac_try\"") >&5 + { (eval echo "$as_me:28219: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28164: \$? = $ac_status" >&5 + echo "$as_me:28222: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_lo=$ac_mid; break else @@ -28177,7 +28235,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 28180 "configure" +#line 28238 "configure" #include "confdefs.h" $ac_includes_default int @@ -28189,16 +28247,16 @@ int _array_ [1 - 2 * !((sizeof (wchar_t)) <= $ac_mid)] } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:28192: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:28250: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:28195: \$? = $ac_status" >&5 + echo "$as_me:28253: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:28198: \"$ac_try\"") >&5 + { (eval echo "$as_me:28256: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28201: \$? = $ac_status" >&5 + echo "$as_me:28259: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_hi=$ac_mid else @@ -28211,12 +28269,12 @@ done ac_cv_sizeof_wchar_t=$ac_lo else if test "$cross_compiling" = yes; then - { { echo "$as_me:28214: error: cannot run test program while cross compiling" >&5 + { { echo "$as_me:28272: 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 28219 "configure" +#line 28277 "configure" #include "confdefs.h" $ac_includes_default int @@ -28232,15 +28290,15 @@ fclose (f); } _ACEOF rm -f "conftest$ac_exeext" -if { (eval echo "$as_me:28235: \"$ac_link\"") >&5 +if { (eval echo "$as_me:28293: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:28238: \$? = $ac_status" >&5 + echo "$as_me:28296: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='"./conftest$ac_exeext"' - { (eval echo "$as_me:28240: \"$ac_try\"") >&5 + { (eval echo "$as_me:28298: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28243: \$? = $ac_status" >&5 + echo "$as_me:28301: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_sizeof_wchar_t=`cat conftest.val` else @@ -28256,7 +28314,7 @@ else ac_cv_sizeof_wchar_t=0 fi fi -echo "$as_me:28259: result: $ac_cv_sizeof_wchar_t" >&5 +echo "$as_me:28317: result: $ac_cv_sizeof_wchar_t" >&5 echo "${ECHO_T}$ac_cv_sizeof_wchar_t" >&6 cat >>confdefs.h <&6 -echo "${as_me:-configure}:28272: testing test failed (assume 2) ..." 1>&5 +echo "${as_me:-configure}:28330: testing test failed (assume 2) ..." 1>&5 sed /SIZEOF_WCHAR_T/d confdefs.h >confdefs.tmp mv confdefs.tmp confdefs.h @@ -28287,7 +28345,7 @@ fi ### chooses to split module lists into libraries. ### ### (see CF_LIB_RULES). -echo "$as_me:28290: checking for library subsets" >&5 +echo "$as_me:28348: checking for library subsets" >&5 echo $ECHO_N "checking for library subsets... $ECHO_C" >&6 LIB_SUBSETS= @@ -28341,7 +28399,7 @@ fi test "x$with_widec" = xyes && LIB_SUBSETS="${LIB_SUBSETS}+widechar" test "x$with_ext_funcs" = xyes && LIB_SUBSETS="${LIB_SUBSETS}+ext_funcs" -echo "$as_me:28344: result: $LIB_SUBSETS" >&5 +echo "$as_me:28402: result: $LIB_SUBSETS" >&5 echo "${ECHO_T}$LIB_SUBSETS" >&6 ### Construct the list of include-directories to be generated @@ -28372,7 +28430,7 @@ elif test "$includedir" != "/usr/include"; then fi ### Build up pieces for makefile rules -echo "$as_me:28375: checking default library suffix" >&5 +echo "$as_me:28433: checking default library suffix" >&5 echo $ECHO_N "checking default library suffix... $ECHO_C" >&6 case $DFT_LWR_MODEL in @@ -28383,10 +28441,10 @@ echo $ECHO_N "checking default library suffix... $ECHO_C" >&6 (shared) DFT_ARG_SUFFIX='' ;; esac test -n "$LIB_SUFFIX" && DFT_ARG_SUFFIX="${LIB_SUFFIX}${DFT_ARG_SUFFIX}" -echo "$as_me:28386: result: $DFT_ARG_SUFFIX" >&5 +echo "$as_me:28444: result: $DFT_ARG_SUFFIX" >&5 echo "${ECHO_T}$DFT_ARG_SUFFIX" >&6 -echo "$as_me:28389: checking default library-dependency suffix" >&5 +echo "$as_me:28447: checking default library-dependency suffix" >&5 echo $ECHO_N "checking default library-dependency suffix... $ECHO_C" >&6 case X$DFT_LWR_MODEL in @@ -28469,10 +28527,10 @@ echo $ECHO_N "checking default library-dependency suffix... $ECHO_C" >&6 DFT_LIB_SUFFIX="${LIB_SUFFIX}${EXTRA_SUFFIX}${DFT_LIB_SUFFIX}" DFT_DEP_SUFFIX="${LIB_SUFFIX}${EXTRA_SUFFIX}${DFT_DEP_SUFFIX}" fi -echo "$as_me:28472: result: $DFT_DEP_SUFFIX" >&5 +echo "$as_me:28530: result: $DFT_DEP_SUFFIX" >&5 echo "${ECHO_T}$DFT_DEP_SUFFIX" >&6 -echo "$as_me:28475: checking default object directory" >&5 +echo "$as_me:28533: checking default object directory" >&5 echo $ECHO_N "checking default object directory... $ECHO_C" >&6 case $DFT_LWR_MODEL in @@ -28488,11 +28546,11 @@ echo $ECHO_N "checking default object directory... $ECHO_C" >&6 DFT_OBJ_SUBDIR='obj_s' ;; esac esac -echo "$as_me:28491: result: $DFT_OBJ_SUBDIR" >&5 +echo "$as_me:28549: result: $DFT_OBJ_SUBDIR" >&5 echo "${ECHO_T}$DFT_OBJ_SUBDIR" >&6 if test "x$cf_with_cxx" = xyes ; then -echo "$as_me:28495: checking c++ library-dependency suffix" >&5 +echo "$as_me:28553: checking c++ library-dependency suffix" >&5 echo $ECHO_N "checking c++ library-dependency suffix... $ECHO_C" >&6 if test "$with_libtool" != "no"; then # libtool thinks it can make c++ shared libraries (perhaps only g++) @@ -28585,7 +28643,7 @@ else fi fi -echo "$as_me:28588: result: $CXX_LIB_SUFFIX" >&5 +echo "$as_me:28646: result: $CXX_LIB_SUFFIX" >&5 echo "${ECHO_T}$CXX_LIB_SUFFIX" >&6 fi @@ -28761,19 +28819,19 @@ fi if test -n "$LDFLAGS_STATIC" && test -n "$LDFLAGS_SHARED" then - echo "$as_me:28764: checking if linker supports switching between static/dynamic" >&5 + echo "$as_me:28822: checking if linker supports switching between static/dynamic" >&5 echo $ECHO_N "checking if linker supports switching between static/dynamic... $ECHO_C" >&6 rm -f libconftest.a cat >conftest.$ac_ext < int cf_ldflags_static(FILE *fp) { return fflush(fp); } EOF - if { (eval echo "$as_me:28773: \"$ac_compile\"") >&5 + if { (eval echo "$as_me:28831: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:28776: \$? = $ac_status" >&5 + echo "$as_me:28834: \$? = $ac_status" >&5 (exit "$ac_status"); } ; then ( $AR $ARFLAGS libconftest.a conftest.o ) 2>&5 1>/dev/null ( eval $RANLIB libconftest.a ) 2>&5 >/dev/null @@ -28784,10 +28842,10 @@ EOF LIBS="$LDFLAGS_STATIC -L`pwd` -lconftest $LDFLAGS_DYNAMIC $LIBS" cat >"conftest.$ac_ext" <<_ACEOF -#line 28787 "configure" +#line 28845 "configure" #include "confdefs.h" -#line 28790 "configure" +#line 28848 "configure" #include int cf_ldflags_static(FILE *fp); @@ -28802,16 +28860,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:28805: \"$ac_link\"") >&5 +if { (eval echo "$as_me:28863: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:28808: \$? = $ac_status" >&5 + echo "$as_me:28866: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:28811: \"$ac_try\"") >&5 + { (eval echo "$as_me:28869: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28814: \$? = $ac_status" >&5 + echo "$as_me:28872: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then # some linkers simply ignore the -dynamic @@ -28834,7 +28892,7 @@ rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" rm -f libconftest.* LIBS="$cf_save_LIBS" - echo "$as_me:28837: result: $cf_ldflags_static" >&5 + echo "$as_me:28895: result: $cf_ldflags_static" >&5 echo "${ECHO_T}$cf_ldflags_static" >&6 if test "$cf_ldflags_static" != yes @@ -28850,7 +28908,7 @@ fi ;; esac -echo "$as_me:28853: checking where we will install curses.h" >&5 +echo "$as_me:28911: checking where we will install curses.h" >&5 echo $ECHO_N "checking where we will install curses.h... $ECHO_C" >&6 includesubdir= @@ -28860,7 +28918,7 @@ if test "$with_overwrite" = no && \ then includesubdir="/ncurses${USE_LIB_SUFFIX}" fi -echo "$as_me:28863: result: ${includedir}${includesubdir}" >&5 +echo "$as_me:28921: result: ${includedir}${includesubdir}" >&5 echo "${ECHO_T}${includedir}${includesubdir}" >&6 ### Resolve a conflict between normal and wide-curses by forcing applications @@ -28868,7 +28926,7 @@ echo "${ECHO_T}${includedir}${includesubdir}" >&6 if test "$with_overwrite" != no ; then if test "$NCURSES_LIBUTF8" = 1 ; then NCURSES_LIBUTF8='defined(HAVE_LIBUTF8_H)' - { echo "$as_me:28871: WARNING: Wide-character applications must define HAVE_LIBUTF8_H to include curses.h" >&5 + { echo "$as_me:28929: WARNING: Wide-character applications must define HAVE_LIBUTF8_H to include curses.h" >&5 echo "$as_me: WARNING: Wide-character applications must define HAVE_LIBUTF8_H to include curses.h" >&2;} fi fi @@ -28893,7 +28951,7 @@ EOF # pkgsrc uses these -echo "$as_me:28896: checking for desired basename for form library" >&5 +echo "$as_me:28954: checking for desired basename for form library" >&5 echo $ECHO_N "checking for desired basename for form library... $ECHO_C" >&6 # Check whether --with-form-libname or --without-form-libname was given. @@ -28913,10 +28971,10 @@ case "x$FORM_NAME" in ;; esac -echo "$as_me:28916: result: $FORM_NAME" >&5 +echo "$as_me:28974: result: $FORM_NAME" >&5 echo "${ECHO_T}$FORM_NAME" >&6 -echo "$as_me:28919: checking for desired basename for menu library" >&5 +echo "$as_me:28977: checking for desired basename for menu library" >&5 echo $ECHO_N "checking for desired basename for menu library... $ECHO_C" >&6 # Check whether --with-menu-libname or --without-menu-libname was given. @@ -28936,10 +28994,10 @@ case "x$MENU_NAME" in ;; esac -echo "$as_me:28939: result: $MENU_NAME" >&5 +echo "$as_me:28997: result: $MENU_NAME" >&5 echo "${ECHO_T}$MENU_NAME" >&6 -echo "$as_me:28942: checking for desired basename for panel library" >&5 +echo "$as_me:29000: checking for desired basename for panel library" >&5 echo $ECHO_N "checking for desired basename for panel library... $ECHO_C" >&6 # Check whether --with-panel-libname or --without-panel-libname was given. @@ -28959,10 +29017,10 @@ case "x$PANEL_NAME" in ;; esac -echo "$as_me:28962: result: $PANEL_NAME" >&5 +echo "$as_me:29020: result: $PANEL_NAME" >&5 echo "${ECHO_T}$PANEL_NAME" >&6 -echo "$as_me:28965: checking for desired basename for cxx library" >&5 +echo "$as_me:29023: checking for desired basename for cxx library" >&5 echo $ECHO_N "checking for desired basename for cxx library... $ECHO_C" >&6 # Check whether --with-cxx-libname or --without-cxx-libname was given. @@ -28982,13 +29040,13 @@ case "x$CXX_NAME" in ;; esac -echo "$as_me:28985: result: $CXX_NAME" >&5 +echo "$as_me:29043: result: $CXX_NAME" >&5 echo "${ECHO_T}$CXX_NAME" >&6 ### Construct the list of subdirectories for which we'll customize makefiles ### with the appropriate compile-rules. -echo "$as_me:28991: checking for src modules" >&5 +echo "$as_me:29049: checking for src modules" >&5 echo $ECHO_N "checking for src modules... $ECHO_C" >&6 # dependencies and linker-arguments for test-programs @@ -29047,7 +29105,7 @@ eval TEST_ROOT="\$${cf_map_lib_basename}_NAME" fi fi done -echo "$as_me:29050: result: $cf_cv_src_modules" >&5 +echo "$as_me:29108: result: $cf_cv_src_modules" >&5 echo "${ECHO_T}$cf_cv_src_modules" >&6 TEST_ARGS="-L${LIB_DIR} $TEST_ARGS" @@ -29208,7 +29266,7 @@ case "$cf_cv_system_name" in (*-D_XOPEN_SOURCE_EXTENDED*) test -n "$verbose" && echo " moving _XOPEN_SOURCE_EXTENDED to work around g++ problem" 1>&6 -echo "${as_me:-configure}:29211: testing moving _XOPEN_SOURCE_EXTENDED to work around g++ problem ..." 1>&5 +echo "${as_me:-configure}:29269: testing moving _XOPEN_SOURCE_EXTENDED to work around g++ problem ..." 1>&5 CFLAGS="$CFLAGS -D_XOPEN_SOURCE_EXTENDED" CPPFLAGS=`echo "x$CPPFLAGS" | sed -e 's/^.//' -e 's/-D_XOPEN_SOURCE_EXTENDED//'` @@ -29219,7 +29277,7 @@ esac # Help to automatically enable the extended curses features when using either # the *-config or the ".pc" files by adding defines. -echo "$as_me:29222: checking for defines to add to ncurses${USE_CFG_SUFFIX}${cf_config_suffix}-config script" >&5 +echo "$as_me:29280: checking for defines to add to ncurses${USE_CFG_SUFFIX}${cf_config_suffix}-config script" >&5 echo $ECHO_N "checking for defines to add to ncurses${USE_CFG_SUFFIX}${cf_config_suffix}-config script... $ECHO_C" >&6 PKG_CFLAGS= for cf_loop1 in $CPPFLAGS_after_XOPEN @@ -29235,7 +29293,7 @@ do done test "$cf_found" = no && PKG_CFLAGS="$PKG_CFLAGS $cf_loop1" done -echo "$as_me:29238: result: $PKG_CFLAGS" >&5 +echo "$as_me:29296: result: $PKG_CFLAGS" >&5 echo "${ECHO_T}$PKG_CFLAGS" >&6 # AC_CHECK_SIZEOF demands a literal parameter, no variables. So we do this. @@ -29296,7 +29354,7 @@ then cf_filter_syms=$cf_dft_filter_syms test -n "$verbose" && echo " will map symbols to ABI=$cf_cv_abi_default" 1>&6 -echo "${as_me:-configure}:29299: testing will map symbols to ABI=$cf_cv_abi_default ..." 1>&5 +echo "${as_me:-configure}:29357: testing will map symbols to ABI=$cf_cv_abi_default ..." 1>&5 fi @@ -29323,7 +29381,7 @@ fi # This is used for the *-config script and *.pc data files. -echo "$as_me:29326: checking for linker search path" >&5 +echo "$as_me:29384: checking for linker search path" >&5 echo $ECHO_N "checking for linker search path... $ECHO_C" >&6 if test "${cf_cv_ld_searchpath+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -29371,7 +29429,7 @@ then cf_pathlist="$cf_pathlist /lib /usr/lib" ;; (*) - { echo "$as_me:29374: WARNING: problem with Solaris architecture" >&5 + { echo "$as_me:29432: WARNING: problem with Solaris architecture" >&5 echo "$as_me: WARNING: problem with Solaris architecture" >&2;} ;; esac @@ -29412,7 +29470,7 @@ done test -z "$cf_cv_ld_searchpath" && cf_cv_ld_searchpath=/usr/lib fi -echo "$as_me:29415: result: $cf_cv_ld_searchpath" >&5 +echo "$as_me:29473: result: $cf_cv_ld_searchpath" >&5 echo "${ECHO_T}$cf_cv_ld_searchpath" >&6 LD_SEARCHPATH=`echo "$cf_cv_ld_searchpath"|sed -e 's/ /|/g'` @@ -29498,7 +29556,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:29501: creating $CONFIG_STATUS" >&5 +{ echo "$as_me:29559: creating $CONFIG_STATUS" >&5 echo "$as_me: creating $CONFIG_STATUS" >&6;} cat >"$CONFIG_STATUS" <<_ACEOF #! $SHELL @@ -29679,7 +29737,7 @@ cat >>"$CONFIG_STATUS" <<\EOF echo "$ac_cs_version"; exit 0 ;; --he | --h) # Conflict between --help and --header - { { echo "$as_me:29682: error: ambiguous option: $1 + { { echo "$as_me:29740: 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;} @@ -29698,7 +29756,7 @@ Try \`$0 --help' for more information." >&2;} ac_need_defaults=false;; # This is an error. - -*) { { echo "$as_me:29701: error: unrecognized option: $1 + -*) { { echo "$as_me:29759: 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;} @@ -29828,7 +29886,7 @@ do "Makefile" ) CONFIG_FILES="$CONFIG_FILES Makefile" ;; "default" ) CONFIG_COMMANDS="$CONFIG_COMMANDS default" ;; "include/ncurses_cfg.h" ) CONFIG_HEADERS="$CONFIG_HEADERS include/ncurses_cfg.h:include/ncurses_cfg.hin" ;; - *) { { echo "$as_me:29831: error: invalid argument: $ac_config_target" >&5 + *) { { echo "$as_me:29889: error: invalid argument: $ac_config_target" >&5 echo "$as_me: error: invalid argument: $ac_config_target" >&2;} { (exit 1); exit 1; }; };; esac @@ -30348,7 +30406,7 @@ done; } esac if test x"$ac_file" != x-; then - { echo "$as_me:30351: creating $ac_file" >&5 + { echo "$as_me:30409: creating $ac_file" >&5 echo "$as_me: creating $ac_file" >&6;} rm -f "$ac_file" fi @@ -30366,7 +30424,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:30369: error: cannot find input file: $f" >&5 + test -f "$f" || { { echo "$as_me:30427: error: cannot find input file: $f" >&5 echo "$as_me: error: cannot find input file: $f" >&2;} { (exit 1); exit 1; }; } echo "$f";; @@ -30379,7 +30437,7 @@ echo "$as_me: error: cannot find input file: $f" >&2;} echo "$srcdir/$f" else # /dev/null tree - { { echo "$as_me:30382: error: cannot find input file: $f" >&5 + { { echo "$as_me:30440: error: cannot find input file: $f" >&5 echo "$as_me: error: cannot find input file: $f" >&2;} { (exit 1); exit 1; }; } fi;; @@ -30395,7 +30453,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:30398: WARNING: datarootdir was used implicitly but not set: + { echo "$as_me:30456: 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;} @@ -30404,7 +30462,7 @@ $ac_seen" >&2;} fi ac_seen=`grep '${datarootdir}' "$ac_item"` if test -n "$ac_seen"; then - { echo "$as_me:30407: WARNING: datarootdir was used explicitly but not set: + { echo "$as_me:30465: 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;} @@ -30449,7 +30507,7 @@ cat >>"$CONFIG_STATUS" <<\EOF 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:30452: WARNING: Variable $ac_name is used but was not set: + { echo "$as_me:30510: 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;} @@ -30460,7 +30518,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:30463: WARNING: Some variables may not be substituted: + { echo "$as_me:30521: WARNING: Some variables may not be substituted: $ac_seen" >&5 echo "$as_me: WARNING: Some variables may not be substituted: $ac_seen" >&2;} @@ -30509,7 +30567,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:30512: creating $ac_file" >&5 + test x"$ac_file" != x- && { echo "$as_me:30570: creating $ac_file" >&5 echo "$as_me: creating $ac_file" >&6;} # First look for the input files in the build tree, otherwise in the @@ -30520,7 +30578,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:30523: error: cannot find input file: $f" >&5 + test -f "$f" || { { echo "$as_me:30581: error: cannot find input file: $f" >&5 echo "$as_me: error: cannot find input file: $f" >&2;} { (exit 1); exit 1; }; } echo $f;; @@ -30533,7 +30591,7 @@ echo "$as_me: error: cannot find input file: $f" >&2;} echo "$srcdir/$f" else # /dev/null tree - { { echo "$as_me:30536: error: cannot find input file: $f" >&5 + { { echo "$as_me:30594: error: cannot find input file: $f" >&5 echo "$as_me: error: cannot find input file: $f" >&2;} { (exit 1); exit 1; }; } fi;; @@ -30591,7 +30649,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:30594: $ac_file is unchanged" >&5 + { echo "$as_me:30652: $ac_file is unchanged" >&5 echo "$as_me: $ac_file is unchanged" >&6;} else ac_dir=`$as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ @@ -30978,7 +31036,7 @@ cf_ITEM=`echo "$cf_item" | sed y%abcdefghijklmnopqrstuvwxyz./-%ABCDEFGHIJKLMNOPQ (cygdll|msysdll|mingw|msvcdll) test "x$with_shared_cxx" = xno && test -n "$verbose" && echo " overriding CXX_MODEL to SHARED" 1>&6 -echo "${as_me:-configure}:30981: testing overriding CXX_MODEL to SHARED ..." 1>&5 +echo "${as_me:-configure}:31039: testing overriding CXX_MODEL to SHARED ..." 1>&5 with_shared_cxx=yes ;; diff --git a/configure.in b/configure.in index 023df69d..1d70ea0f 100644 --- a/configure.in +++ b/configure.in @@ -29,7 +29,7 @@ dnl*************************************************************************** dnl dnl Author: Thomas E. Dickey 1995-on dnl -dnl $Id: configure.in,v 1.774 2024/01/19 11:22:46 tom Exp $ +dnl $Id: configure.in,v 1.775 2024/03/02 20:22:33 tom Exp $ dnl Process this file with autoconf to produce a configure script. dnl dnl For additional information, see @@ -38,7 +38,7 @@ dnl https://invisible-island.net/autoconf/my-autoconf.html dnl dnl --------------------------------------------------------------------------- AC_PREREQ(2.52.20210101) -AC_REVISION($Revision: 1.774 $) +AC_REVISION($Revision: 1.775 $) AC_INIT(ncurses/base/lib_initscr.c) AC_CONFIG_HEADER(include/ncurses_cfg.h:include/ncurses_cfg.hin) @@ -1831,12 +1831,10 @@ getuid \ issetugid \ localeconv \ poll \ -putenv \ remove \ select \ setbuf \ setbuffer \ -setenv \ setfsuid \ setvbuf \ sigaction \ @@ -1894,6 +1892,7 @@ CF_TYPE_SIGACTION CF_SIZECHANGE CF_FUNC_MEMMOVE CF_FUNC_POLL +CF_MB_LEN_MAX CF_VA_COPY AC_FUNC_VFORK CF_FOPEN_BIN_R diff --git a/dist.mk b/dist.mk index 7c125119..8cd1e5e8 100644 --- a/dist.mk +++ b/dist.mk @@ -26,7 +26,7 @@ # use or other dealings in this Software without prior written # # authorization. # ############################################################################## -# $Id: dist.mk,v 1.1599 2024/02/24 11:49:33 tom Exp $ +# $Id: dist.mk,v 1.1600 2024/03/02 11:13:41 tom Exp $ # Makefile for creating ncurses distributions. # # This only needs to be used directly as a makefile by developers, but @@ -38,7 +38,7 @@ SHELL = /bin/sh # These define the major/minor/patch versions of ncurses. NCURSES_MAJOR = 6 NCURSES_MINOR = 4 -NCURSES_PATCH = 20240224 +NCURSES_PATCH = 20240302 # We don't append the patch to the version, since this only applies to releases VERSION = $(NCURSES_MAJOR).$(NCURSES_MINOR) diff --git a/doc/html/man/captoinfo.1m.html b/doc/html/man/captoinfo.1m.html index fea882a2..7b12b0ee 100644 --- a/doc/html/man/captoinfo.1m.html +++ b/doc/html/man/captoinfo.1m.html @@ -1,7 +1,7 @@ -captoinfo 1m 2023-12-23 ncurses 6.4 User commands +captoinfo 1m 2024-03-02 ncurses 6.4 User commands -

captoinfo 1m 2023-12-23 ncurses 6.4 User commands

+

captoinfo 1m 2024-03-02 ncurses 6.4 User commands

 captoinfo(1m)                    User commands                   captoinfo(1m)
 
@@ -194,7 +194,7 @@
 
 
 
-ncurses 6.4                       2023-12-23                     captoinfo(1m)
+ncurses 6.4                       2024-03-02                     captoinfo(1m)