# ncurses 6.5 - patch 20250215 - Thomas E. Dickey # # ------------------------------------------------------------------------------ # # Ncurses 6.5 is at # https://invisible-island.net/archives/ncurses/ # https://invisible-mirror.net/archives/ncurses/ # https://ftp.gnu.org/gnu/ncurses/ # # Patches for ncurses 6.5 can be found at # https://invisible-island.net/archives/ncurses/6.5 # https://invisible-mirror.net/archives/ncurses/6.5 # # ------------------------------------------------------------------------------ # https://invisible-island.net/archives/ncurses/6.5/ncurses-6.5-20250215.patch.gz # patch by Thomas E. Dickey # created Sun Feb 16 01:13:59 UTC 2025 # ------------------------------------------------------------------------------ # NEWS | 12 # VERSION | 2 # aclocal.m4 | 12 # configure | 3904 +++++++++++++-------------- # dist.mk | 4 # doc/html/man/curs_attr.3x.html | 12 # doc/html/man/curs_bkgrnd.3x.html | 8 # doc/html/man/curs_get_wch.3x.html | 47 # doc/html/man/curs_get_wstr.3x.html | 10 # doc/html/man/curs_getch.3x.html | 12 # doc/html/man/curs_inch.3x.html | 10 # doc/html/man/curs_inchstr.3x.html | 12 # doc/html/man/curs_kernel.3x.html | 12 # doc/html/man/curs_legacy.3x.html | 10 # doc/html/man/curs_mouse.3x.html | 8 # doc/html/man/curs_opaque.3x.html | 12 # doc/html/man/curs_print.3x.html | 10 # doc/html/man/curs_terminfo.3x.html | 10 # doc/html/man/curs_threads.3x.html | 12 # doc/html/man/curs_util.3x.html | 10 # doc/html/man/form_field_validation.3x.html | 10 # doc/html/man/infocmp.1m.html | 10 # doc/html/man/ncurses.3x.html | 2 # doc/html/man/tabs.1.html | 10 # doc/html/man/terminfo.5.html | 2 # doc/html/man/toe.1m.html | 12 # doc/html/man/tput.1.html | 10 # include/Caps.uwin | 6 # man/curs_attr.3x | 9 # man/curs_bkgrnd.3x | 15 # man/curs_get_wch.3x | 6 # man/curs_get_wstr.3x | 6 # man/curs_getch.3x | 6 # man/curs_inch.3x | 5 # man/curs_inchstr.3x | 6 # man/curs_kernel.3x | 6 # man/curs_legacy.3x | 17 # man/curs_mouse.3x | 6 # man/curs_opaque.3x | 6 # man/curs_print.3x | 16 # man/curs_terminfo.3x | 6 # man/curs_threads.3x | 8 # man/curs_util.3x | 24 # man/form_field_validation.3x | 6 # man/infocmp.1m | 6 # man/tabs.1 | 6 # man/toe.1m | 8 # man/tput.1 | 6 # misc/magic | 9 # misc/terminfo.src | 19 # ncurses/base/lib_chgat.c | 7 # ncurses/base/lib_mouse.c | 4 # ncurses/base/lib_set_term.c | 10 # ncurses/tinfo/captoinfo.c | 54 # ncurses/tinfo/lib_tparm.c | 6 # ncurses/tinfo/lib_win32con.c | 6 # ncurses/trace/varargs.c | 30 # ncurses/tty/hardscroll.c | 4 # ncurses/tty/lib_tstp.c | 8 # 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 # test/newdemo.c | 4 # test/tclock.c | 4 # test/test_tparm.c | 6 # 69 files changed, 2271 insertions(+), 2287 deletions(-) # ------------------------------------------------------------------------------ Index: NEWS Prereq: 1.4242 --- ncurses-6.5-20250208+/NEWS 2025-02-08 23:54:37.000000000 +0000 +++ ncurses-6.5-20250215/NEWS 2025-02-16 00:19:24.000000000 +0000 @@ -26,7 +26,7 @@ -- sale, use or other dealings in this Software without prior written -- -- authorization. -- ------------------------------------------------------------------------------- --- $Id: NEWS,v 1.4242 2025/02/08 23:54:37 tom Exp $ +-- $Id: NEWS,v 1.4245 2025/02/16 00:19:24 tom Exp $ ------------------------------------------------------------------------------- This is a log of changes that ncurses has gone through since Zeyd started @@ -46,6 +46,14 @@ Changes through 1.9.9e did not credit all contributions; it is not possible to add this information. +20250215 + + add gzip option for suppressing filename/timestamp information to an + overlooked case (cf: 20240330). + + correct spelling errors found with codespell. + + fix some typos in manpages (report by Sven Joachim) + + amend change to lib_set_term.c to work with thread configuration + (report by Rajeev Pillai, cf: 20250208). + 20250208 + change etip.h.in to include either/both of and , needed for another old BSD. @@ -106,7 +114,7 @@ 20241221 + modify ncurses/tinfo/MKfallback.sh to work with MacOS sed, which lacks BSD-style \< and \> - + trim padding from sgr expresion used in trim_sgr0, to avoid copying + + trim padding from sgr expression used in trim_sgr0, to avoid copying the padding into the resulting sgr0 (report by Rajeev Pillai). + strict compiler-warning fixes for upcoming gcc15 Index: VERSION --- ncurses-6.5-20250208+/VERSION 2025-02-08 11:01:51.000000000 +0000 +++ ncurses-6.5-20250215/VERSION 2025-02-15 12:35:22.000000000 +0000 @@ -1 +1 @@ -5:0:10 6.5 20250208 +5:0:10 6.5 20250215 Index: aclocal.m4 Prereq: 1.1101 --- ncurses-6.5-20250208+/aclocal.m4 2025-02-02 00:10:44.000000000 +0000 +++ ncurses-6.5-20250215/aclocal.m4 2025-02-16 00:15:17.000000000 +0000 @@ -29,7 +29,7 @@ dnl dnl Author: Thomas E. Dickey 1995-on dnl -dnl $Id: aclocal.m4,v 1.1101 2025/02/02 00:10:44 tom Exp $ +dnl $Id: aclocal.m4,v 1.1102 2025/02/16 00:15:17 tom Exp $ dnl Macros used in NCURSES auto-configuration script. dnl dnl These macros are maintained separately from NCURSES. The copyright on @@ -598,7 +598,7 @@ esac ])dnl dnl --------------------------------------------------------------------------- -dnl CF_BOOL_DECL version: 9 updated: 2023/12/03 09:21:34 +dnl CF_BOOL_DECL version: 10 updated: 2025/02/01 19:31:51 dnl ------------ dnl Test if 'bool' is a builtin type in the configured C/C++ compiler. Some dnl older compilers (e.g., gcc 2.5.8) don't support 'bool' directly; gcc @@ -6034,7 +6034,7 @@ AC_MSG_RESULT($MANPAGE_TBL) ])dnl dnl --------------------------------------------------------------------------- -dnl CF_MAN_PAGES version: 60 updated: 2024/12/28 16:38:35 +dnl CF_MAN_PAGES version: 61 updated: 2025/02/15 19:13:25 dnl ------------ dnl Try to determine if the man-pages on the system are compressed, and if dnl so, what format is used. Use this information to construct a script that @@ -6236,7 +6236,7 @@ if test -n "$cf_manpage_compress" ; then cat >>$cf_edit_man <&5 + LIB_CREATE="$MK_SHARED_LIB" ;; (*-dy\ *) VERSIONED_SYMS="-Wl,-M,\${RESULTING_SYMS}" MK_SHARED_LIB=`echo "$MK_SHARED_LIB" | sed -e "s%-dy%\\${VERSIONED_SYMS} -dy%"` test -n "$verbose" && echo " MK_SHARED_LIB: $MK_SHARED_LIB" 1>&6 -echo "${as_me:-configure}:7706: testing MK_SHARED_LIB: $MK_SHARED_LIB ..." 1>&5 +echo "${as_me:-configure}:7707: testing MK_SHARED_LIB: $MK_SHARED_LIB ..." 1>&5 + LIB_CREATE="$MK_SHARED_LIB" ;; (*) - { echo "$as_me:7710: WARNING: this system does not support versioned-symbols" >&5 + { echo "$as_me:7712: WARNING: this system does not support versioned-symbols" >&5 echo "$as_me: WARNING: this system does not support versioned-symbols" >&2;} ;; esac @@ -7719,7 +7721,7 @@ # symbols. if test "x$VERSIONED_SYMS" != "x" then - echo "$as_me:7722: checking if wildcards can be used to selectively omit symbols" >&5 + echo "$as_me:7724: checking if wildcards can be used to selectively omit symbols" >&5 echo $ECHO_N "checking if wildcards can be used to selectively omit symbols... $ECHO_C" >&6 WILDCARD_SYMS=no @@ -7756,7 +7758,7 @@ } submodule_1.0; EOF cat >conftest.$ac_ext <&5 + echo "$as_me:7792: result: $WILDCARD_SYMS" >&5 echo "${ECHO_T}$WILDCARD_SYMS" >&6 rm -f conftest.* fi @@ -7802,7 +7804,7 @@ ### Checks for special libraries, must be done up-front. SHLIB_LIST="" -echo "$as_me:7805: checking if you want to link with the GPM mouse library" >&5 +echo "$as_me:7807: checking if you want to link with the GPM mouse library" >&5 echo $ECHO_N "checking if you want to link with the GPM mouse library... $ECHO_C" >&6 # Check whether --with-gpm or --without-gpm was given. @@ -7812,27 +7814,27 @@ else with_gpm=maybe fi; -echo "$as_me:7815: result: $with_gpm" >&5 +echo "$as_me:7817: result: $with_gpm" >&5 echo "${ECHO_T}$with_gpm" >&6 if test "$with_gpm" != no ; then - echo "$as_me:7819: checking for gpm.h" >&5 + echo "$as_me:7821: checking for gpm.h" >&5 echo $ECHO_N "checking for gpm.h... $ECHO_C" >&6 if test "${ac_cv_header_gpm_h+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >"conftest.$ac_ext" <<_ACEOF -#line 7825 "configure" +#line 7827 "configure" #include "confdefs.h" #include _ACEOF -if { (eval echo "$as_me:7829: \"$ac_cpp "conftest.$ac_ext"\"") >&5 +if { (eval echo "$as_me:7831: \"$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:7835: \$? = $ac_status" >&5 + echo "$as_me:7837: \$? = $ac_status" >&5 (exit "$ac_status"); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -7851,7 +7853,7 @@ fi rm -f conftest.err "conftest.$ac_ext" fi -echo "$as_me:7854: result: $ac_cv_header_gpm_h" >&5 +echo "$as_me:7856: result: $ac_cv_header_gpm_h" >&5 echo "${ECHO_T}$ac_cv_header_gpm_h" >&6 if test "$ac_cv_header_gpm_h" = yes; then @@ -7862,7 +7864,7 @@ if test "$with_gpm" != yes && test "$with_gpm" != maybe ; then test -n "$verbose" && echo " assuming we really have GPM library" 1>&6 -echo "${as_me:-configure}:7865: testing assuming we really have GPM library ..." 1>&5 +echo "${as_me:-configure}:7867: testing assuming we really have GPM library ..." 1>&5 cat >>confdefs.h <<\EOF #define HAVE_LIBGPM 1 @@ -7870,7 +7872,7 @@ with_gpm=yes else - echo "$as_me:7873: checking for Gpm_Open in -lgpm" >&5 + echo "$as_me:7875: checking for Gpm_Open in -lgpm" >&5 echo $ECHO_N "checking for Gpm_Open in -lgpm... $ECHO_C" >&6 if test "${ac_cv_lib_gpm_Gpm_Open+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -7878,7 +7880,7 @@ ac_check_lib_save_LIBS=$LIBS LIBS="-lgpm $LIBS" cat >"conftest.$ac_ext" <<_ACEOF -#line 7881 "configure" +#line 7883 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -7897,16 +7899,16 @@ } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:7900: \"$ac_link\"") >&5 +if { (eval echo "$as_me:7902: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:7903: \$? = $ac_status" >&5 + echo "$as_me:7905: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:7906: \"$ac_try\"") >&5 + { (eval echo "$as_me:7908: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:7909: \$? = $ac_status" >&5 + echo "$as_me:7911: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_lib_gpm_Gpm_Open=yes else @@ -7917,18 +7919,18 @@ rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:7920: result: $ac_cv_lib_gpm_Gpm_Open" >&5 +echo "$as_me:7922: result: $ac_cv_lib_gpm_Gpm_Open" >&5 echo "${ECHO_T}$ac_cv_lib_gpm_Gpm_Open" >&6 if test "$ac_cv_lib_gpm_Gpm_Open" = yes; then with_gpm=yes else if test "$with_gpm" = maybe; then - { echo "$as_me:7927: WARNING: Cannot link with GPM library" >&5 + { echo "$as_me:7929: WARNING: Cannot link with GPM library" >&5 echo "$as_me: WARNING: Cannot link with GPM library" >&2;} with_gpm=no else - { { echo "$as_me:7931: error: Cannot link with GPM library" >&5 + { { echo "$as_me:7933: error: Cannot link with GPM library" >&5 echo "$as_me: error: Cannot link with GPM library" >&2;} { (exit 1); exit 1; }; } fi @@ -7939,7 +7941,7 @@ else - test "$with_gpm" != maybe && { echo "$as_me:7942: WARNING: Cannot find GPM header" >&5 + test "$with_gpm" != maybe && { echo "$as_me:7944: WARNING: Cannot find GPM header" >&5 echo "$as_me: WARNING: Cannot find GPM header" >&2;} with_gpm=no @@ -7948,7 +7950,7 @@ fi if test "$with_gpm" != no ; then - echo "$as_me:7951: checking if you want to load GPM dynamically" >&5 + echo "$as_me:7953: checking if you want to load GPM dynamically" >&5 echo $ECHO_N "checking if you want to load GPM dynamically... $ECHO_C" >&6 # Check whether --with-dlsym or --without-dlsym was given. @@ -7958,18 +7960,18 @@ else with_dlsym=yes fi; - echo "$as_me:7961: result: $with_dlsym" >&5 + echo "$as_me:7963: result: $with_dlsym" >&5 echo "${ECHO_T}$with_dlsym" >&6 if test "x$with_dlsym" = xyes ; then cf_have_dlsym=no -echo "$as_me:7966: checking for dlsym" >&5 +echo "$as_me:7968: checking for dlsym" >&5 echo $ECHO_N "checking for dlsym... $ECHO_C" >&6 if test "${ac_cv_func_dlsym+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >"conftest.$ac_ext" <<_ACEOF -#line 7972 "configure" +#line 7974 "configure" #include "confdefs.h" #define dlsym autoconf_temporary #include /* least-intrusive standard header which defines gcc2 __stub macros */ @@ -8000,16 +8002,16 @@ } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:8003: \"$ac_link\"") >&5 +if { (eval echo "$as_me:8005: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:8006: \$? = $ac_status" >&5 + echo "$as_me:8008: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:8009: \"$ac_try\"") >&5 + { (eval echo "$as_me:8011: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:8012: \$? = $ac_status" >&5 + echo "$as_me:8014: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_func_dlsym=yes else @@ -8019,14 +8021,14 @@ fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:8022: result: $ac_cv_func_dlsym" >&5 +echo "$as_me:8024: result: $ac_cv_func_dlsym" >&5 echo "${ECHO_T}$ac_cv_func_dlsym" >&6 if test "$ac_cv_func_dlsym" = yes; then cf_have_dlsym=yes else cf_have_libdl=no -echo "$as_me:8029: checking for dlsym in -ldl" >&5 +echo "$as_me:8031: checking for dlsym in -ldl" >&5 echo $ECHO_N "checking for dlsym in -ldl... $ECHO_C" >&6 if test "${ac_cv_lib_dl_dlsym+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -8034,7 +8036,7 @@ ac_check_lib_save_LIBS=$LIBS LIBS="-ldl $LIBS" cat >"conftest.$ac_ext" <<_ACEOF -#line 8037 "configure" +#line 8039 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -8053,16 +8055,16 @@ } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:8056: \"$ac_link\"") >&5 +if { (eval echo "$as_me:8058: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:8059: \$? = $ac_status" >&5 + echo "$as_me:8061: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:8062: \"$ac_try\"") >&5 + { (eval echo "$as_me:8064: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:8065: \$? = $ac_status" >&5 + echo "$as_me:8067: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_lib_dl_dlsym=yes else @@ -8073,7 +8075,7 @@ rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:8076: result: $ac_cv_lib_dl_dlsym" >&5 +echo "$as_me:8078: result: $ac_cv_lib_dl_dlsym" >&5 echo "${ECHO_T}$ac_cv_lib_dl_dlsym" >&6 if test "$ac_cv_lib_dl_dlsym" = yes; then @@ -8102,10 +8104,10 @@ LIBS="$cf_add_libs" } - echo "$as_me:8105: checking whether able to link to dl*() functions" >&5 + echo "$as_me:8107: checking whether able to link to dl*() functions" >&5 echo $ECHO_N "checking whether able to link to dl*() functions... $ECHO_C" >&6 cat >"conftest.$ac_ext" <<_ACEOF -#line 8108 "configure" +#line 8110 "configure" #include "confdefs.h" #include @@ -8126,16 +8128,16 @@ } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:8129: \"$ac_link\"") >&5 +if { (eval echo "$as_me:8131: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:8132: \$? = $ac_status" >&5 + echo "$as_me:8134: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:8135: \"$ac_try\"") >&5 + { (eval echo "$as_me:8137: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:8138: \$? = $ac_status" >&5 + echo "$as_me:8140: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cat >>confdefs.h <<\EOF @@ -8146,15 +8148,15 @@ echo "$as_me: failed program was:" >&5 cat "conftest.$ac_ext" >&5 - { { echo "$as_me:8149: error: Cannot link test program for libdl" >&5 + { { echo "$as_me:8151: error: Cannot link test program for libdl" >&5 echo "$as_me: error: Cannot link test program for libdl" >&2;} { (exit 1); exit 1; }; } fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" - echo "$as_me:8154: result: ok" >&5 + echo "$as_me:8156: result: ok" >&5 echo "${ECHO_T}ok" >&6 else - { { echo "$as_me:8157: error: Cannot find dlsym function" >&5 + { { echo "$as_me:8159: error: Cannot find dlsym function" >&5 echo "$as_me: error: Cannot find dlsym function" >&2;} { (exit 1); exit 1; }; } fi @@ -8162,12 +8164,12 @@ if test "x$with_gpm" != xyes ; then test -n "$verbose" && echo " assuming soname for gpm is $with_gpm" 1>&6 -echo "${as_me:-configure}:8165: testing assuming soname for gpm is $with_gpm ..." 1>&5 +echo "${as_me:-configure}:8167: testing assuming soname for gpm is $with_gpm ..." 1>&5 cf_cv_gpm_soname="$with_gpm" else -echo "$as_me:8170: checking for soname of gpm library" >&5 +echo "$as_me:8172: checking for soname of gpm library" >&5 echo $ECHO_N "checking for soname of gpm library... $ECHO_C" >&6 if test "${cf_cv_gpm_soname+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -8201,15 +8203,15 @@ done LIBS="$cf_add_libs" - if { (eval echo "$as_me:8204: \"$ac_compile\"") >&5 + if { (eval echo "$as_me:8206: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:8207: \$? = $ac_status" >&5 + echo "$as_me:8209: \$? = $ac_status" >&5 (exit "$ac_status"); } ; then - if { (eval echo "$as_me:8209: \"$ac_link\"") >&5 + if { (eval echo "$as_me:8211: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:8212: \$? = $ac_status" >&5 + echo "$as_me:8214: \$? = $ac_status" >&5 (exit "$ac_status"); } ; then cf_cv_gpm_soname="`ldd \"conftest$ac_exeext\" 2>/dev/null | sed -e 's,^.*/,,' -e 's, .*$,,' | ${FGREP-fgrep} libgpm.`" test -z "$cf_cv_gpm_soname" && cf_cv_gpm_soname=unknown @@ -8220,7 +8222,7 @@ fi fi -echo "$as_me:8223: result: $cf_cv_gpm_soname" >&5 +echo "$as_me:8225: result: $cf_cv_gpm_soname" >&5 echo "${ECHO_T}$cf_cv_gpm_soname" >&6 fi @@ -8288,7 +8290,7 @@ #define HAVE_LIBGPM 1 EOF -echo "$as_me:8291: checking for Gpm_Wgetch in -lgpm" >&5 +echo "$as_me:8293: checking for Gpm_Wgetch in -lgpm" >&5 echo $ECHO_N "checking for Gpm_Wgetch in -lgpm... $ECHO_C" >&6 if test "${ac_cv_lib_gpm_Gpm_Wgetch+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -8296,7 +8298,7 @@ ac_check_lib_save_LIBS=$LIBS LIBS="-lgpm $LIBS" cat >"conftest.$ac_ext" <<_ACEOF -#line 8299 "configure" +#line 8301 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -8315,16 +8317,16 @@ } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:8318: \"$ac_link\"") >&5 +if { (eval echo "$as_me:8320: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:8321: \$? = $ac_status" >&5 + echo "$as_me:8323: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:8324: \"$ac_try\"") >&5 + { (eval echo "$as_me:8326: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:8327: \$? = $ac_status" >&5 + echo "$as_me:8329: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_lib_gpm_Gpm_Wgetch=yes else @@ -8335,11 +8337,11 @@ rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:8338: result: $ac_cv_lib_gpm_Gpm_Wgetch" >&5 +echo "$as_me:8340: result: $ac_cv_lib_gpm_Gpm_Wgetch" >&5 echo "${ECHO_T}$ac_cv_lib_gpm_Gpm_Wgetch" >&6 if test "$ac_cv_lib_gpm_Gpm_Wgetch" = yes; then -echo "$as_me:8342: checking if GPM is weakly bound to curses library" >&5 +echo "$as_me:8344: checking if GPM is weakly bound to curses library" >&5 echo $ECHO_N "checking if GPM is weakly bound to curses library... $ECHO_C" >&6 if test "${cf_cv_check_gpm_wgetch+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -8363,15 +8365,15 @@ # to rely on the static library, noting that some packagers may not # include it. LIBS="-static -lgpm -dynamic $LIBS" - if { (eval echo "$as_me:8366: \"$ac_compile\"") >&5 + if { (eval echo "$as_me:8368: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:8369: \$? = $ac_status" >&5 + echo "$as_me:8371: \$? = $ac_status" >&5 (exit "$ac_status"); } ; then - if { (eval echo "$as_me:8371: \"$ac_link\"") >&5 + if { (eval echo "$as_me:8373: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:8374: \$? = $ac_status" >&5 + echo "$as_me:8376: \$? = $ac_status" >&5 (exit "$ac_status"); } ; then cf_cv_check_gpm_wgetch="`nm \"conftest$ac_exeext\" | ${EGREP-egrep} '\' | ${EGREP-egrep} '\<[vVwW]\>'`" test -n "$cf_cv_check_gpm_wgetch" && cf_cv_check_gpm_wgetch=yes @@ -8383,11 +8385,11 @@ fi fi -echo "$as_me:8386: result: $cf_cv_check_gpm_wgetch" >&5 +echo "$as_me:8388: result: $cf_cv_check_gpm_wgetch" >&5 echo "${ECHO_T}$cf_cv_check_gpm_wgetch" >&6 if test "$cf_cv_check_gpm_wgetch" != yes ; then - { echo "$as_me:8390: WARNING: GPM library is already linked with curses - read the FAQ" >&5 + { echo "$as_me:8392: WARNING: GPM library is already linked with curses - read the FAQ" >&5 echo "$as_me: WARNING: GPM library is already linked with curses - read the FAQ" >&2;} fi @@ -8395,7 +8397,7 @@ fi -echo "$as_me:8398: checking if you want to use PCRE2 for regular-expressions" >&5 +echo "$as_me:8400: checking if you want to use PCRE2 for regular-expressions" >&5 echo $ECHO_N "checking if you want to use PCRE2 for regular-expressions... $ECHO_C" >&6 # Check whether --with-pcre2 or --without-pcre2 was given. @@ -8404,7 +8406,7 @@ fi; test -z "$with_pcre2" && with_pcre2=no -echo "$as_me:8407: result: $with_pcre2" >&5 +echo "$as_me:8409: result: $with_pcre2" >&5 echo "${ECHO_T}$with_pcre2" >&6 if test "x$with_pcre2" != xno ; then @@ -8415,17 +8417,17 @@ if test "$PKG_CONFIG" != none && "$PKG_CONFIG" --exists "$cf_with_pcre2"; then test -n "$verbose" && echo " found package $cf_with_pcre2" 1>&6 -echo "${as_me:-configure}:8418: testing found package $cf_with_pcre2 ..." 1>&5 +echo "${as_me:-configure}:8420: testing found package $cf_with_pcre2 ..." 1>&5 cf_pkgconfig_incs="`$PKG_CONFIG --cflags "$cf_with_pcre2" 2>/dev/null`" cf_pkgconfig_libs="`$PKG_CONFIG --libs "$cf_with_pcre2" 2>/dev/null`" test -n "$verbose" && echo " package $cf_with_pcre2 CFLAGS: $cf_pkgconfig_incs" 1>&6 -echo "${as_me:-configure}:8424: testing package $cf_with_pcre2 CFLAGS: $cf_pkgconfig_incs ..." 1>&5 +echo "${as_me:-configure}:8426: testing package $cf_with_pcre2 CFLAGS: $cf_pkgconfig_incs ..." 1>&5 test -n "$verbose" && echo " package $cf_with_pcre2 LIBS: $cf_pkgconfig_libs" 1>&6 -echo "${as_me:-configure}:8428: testing package $cf_with_pcre2 LIBS: $cf_pkgconfig_libs ..." 1>&5 +echo "${as_me:-configure}:8430: testing package $cf_with_pcre2 LIBS: $cf_pkgconfig_libs ..." 1>&5 for cf_required in $cf_with_pcre2 do @@ -8563,7 +8565,7 @@ fi done - cf_with_pcre2_ok=yes || { { echo "$as_me:8566: error: Cannot find PCRE2 library" >&5 + cf_with_pcre2_ok=yes || { { echo "$as_me:8568: error: Cannot find PCRE2 library" >&5 echo "$as_me: error: Cannot find PCRE2 library" >&2;} { (exit 1); exit 1; }; } @@ -8576,7 +8578,7 @@ (*pcre2-posix*|*pcreposix*) ;; (*) - echo "$as_me:8579: checking for regcomp in -lpcre2-posix" >&5 + echo "$as_me:8581: checking for regcomp in -lpcre2-posix" >&5 echo $ECHO_N "checking for regcomp in -lpcre2-posix... $ECHO_C" >&6 if test "${ac_cv_lib_pcre2_posix_regcomp+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -8584,7 +8586,7 @@ ac_check_lib_save_LIBS=$LIBS LIBS="-lpcre2-posix $LIBS" cat >"conftest.$ac_ext" <<_ACEOF -#line 8587 "configure" +#line 8589 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -8603,16 +8605,16 @@ } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:8606: \"$ac_link\"") >&5 +if { (eval echo "$as_me:8608: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:8609: \$? = $ac_status" >&5 + echo "$as_me:8611: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:8612: \"$ac_try\"") >&5 + { (eval echo "$as_me:8614: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:8615: \$? = $ac_status" >&5 + echo "$as_me:8617: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_lib_pcre2_posix_regcomp=yes else @@ -8623,7 +8625,7 @@ rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:8626: result: $ac_cv_lib_pcre2_posix_regcomp" >&5 +echo "$as_me:8628: result: $ac_cv_lib_pcre2_posix_regcomp" >&5 echo "${ECHO_T}$ac_cv_lib_pcre2_posix_regcomp" >&6 if test "$ac_cv_lib_pcre2_posix_regcomp" = yes; then @@ -8644,7 +8646,7 @@ LIBS="$cf_add_libs" else - echo "$as_me:8647: checking for regcomp in -lpcreposix" >&5 + echo "$as_me:8649: checking for regcomp in -lpcreposix" >&5 echo $ECHO_N "checking for regcomp in -lpcreposix... $ECHO_C" >&6 if test "${ac_cv_lib_pcreposix_regcomp+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -8652,7 +8654,7 @@ ac_check_lib_save_LIBS=$LIBS LIBS="-lpcreposix $LIBS" cat >"conftest.$ac_ext" <<_ACEOF -#line 8655 "configure" +#line 8657 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -8671,16 +8673,16 @@ } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:8674: \"$ac_link\"") >&5 +if { (eval echo "$as_me:8676: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:8677: \$? = $ac_status" >&5 + echo "$as_me:8679: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:8680: \"$ac_try\"") >&5 + { (eval echo "$as_me:8682: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:8683: \$? = $ac_status" >&5 + echo "$as_me:8685: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_lib_pcreposix_regcomp=yes else @@ -8691,7 +8693,7 @@ rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:8694: result: $ac_cv_lib_pcreposix_regcomp" >&5 +echo "$as_me:8696: result: $ac_cv_lib_pcreposix_regcomp" >&5 echo "${ECHO_T}$ac_cv_lib_pcreposix_regcomp" >&6 if test "$ac_cv_lib_pcreposix_regcomp" = yes; then @@ -8712,7 +8714,7 @@ LIBS="$cf_add_libs" else - { { echo "$as_me:8715: error: Cannot find PCRE2 POSIX library" >&5 + { { echo "$as_me:8717: error: Cannot find PCRE2 POSIX library" >&5 echo "$as_me: error: Cannot find PCRE2 POSIX library" >&2;} { (exit 1); exit 1; }; } fi @@ -8727,23 +8729,23 @@ for ac_header in pcre2posix.h pcreposix.h do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` -echo "$as_me:8730: checking for $ac_header" >&5 +echo "$as_me:8732: 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 8736 "configure" +#line 8738 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:8740: \"$ac_cpp "conftest.$ac_ext"\"") >&5 +if { (eval echo "$as_me:8742: \"$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:8746: \$? = $ac_status" >&5 + echo "$as_me:8748: \$? = $ac_status" >&5 (exit "$ac_status"); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -8762,7 +8764,7 @@ fi rm -f conftest.err "conftest.$ac_ext" fi -echo "$as_me:8765: result: `eval echo '${'"$as_ac_Header"'}'`" >&5 +echo "$as_me:8767: 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:8780: 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 8784 "configure" +#line 8786 "configure" #include "confdefs.h" #define $ac_func autoconf_temporary #include /* least-intrusive standard header which defines gcc2 __stub macros */ @@ -8812,16 +8814,16 @@ } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:8815: \"$ac_link\"") >&5 +if { (eval echo "$as_me:8817: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:8818: \$? = $ac_status" >&5 + echo "$as_me:8820: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:8821: \"$ac_try\"") >&5 + { (eval echo "$as_me:8823: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:8824: \$? = $ac_status" >&5 + echo "$as_me:8826: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then eval "$as_ac_var=yes" else @@ -8831,7 +8833,7 @@ fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:8834: result: `eval echo '${'"$as_ac_var"'}'`" >&5 +echo "$as_me:8836: 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 </dev/null ; then -echo "$as_me:8848: checking if you want to use sysmouse" >&5 +echo "$as_me:8850: checking if you want to use sysmouse" >&5 echo $ECHO_N "checking if you want to use sysmouse... $ECHO_C" >&6 # Check whether --with-sysmouse or --without-sysmouse was given. @@ -8857,7 +8859,7 @@ fi; if test "$cf_with_sysmouse" != no ; then cat >"conftest.$ac_ext" <<_ACEOF -#line 8860 "configure" +#line 8862 "configure" #include "confdefs.h" #include @@ -8880,16 +8882,16 @@ } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:8883: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:8885: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:8886: \$? = $ac_status" >&5 + echo "$as_me:8888: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:8889: \"$ac_try\"") >&5 + { (eval echo "$as_me:8891: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:8892: \$? = $ac_status" >&5 + echo "$as_me:8894: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_with_sysmouse=yes else @@ -8899,7 +8901,7 @@ fi rm -f "conftest.$ac_objext" "conftest.$ac_ext" fi -echo "$as_me:8902: result: $cf_with_sysmouse" >&5 +echo "$as_me:8904: result: $cf_with_sysmouse" >&5 echo "${ECHO_T}$cf_with_sysmouse" >&6 test "$cf_with_sysmouse" = yes && cat >>confdefs.h <<\EOF @@ -8909,7 +8911,7 @@ fi # pretend that ncurses==ncursesw==ncursest -echo "$as_me:8912: checking if you want to disable library suffixes" >&5 +echo "$as_me:8914: checking if you want to disable library suffixes" >&5 echo $ECHO_N "checking if you want to disable library suffixes... $ECHO_C" >&6 # Check whether --enable-lib-suffixes or --disable-lib-suffixes was given. @@ -8926,13 +8928,13 @@ disable_lib_suffixes=no fi; -echo "$as_me:8929: result: $disable_lib_suffixes" >&5 +echo "$as_me:8931: result: $disable_lib_suffixes" >&5 echo "${ECHO_T}$disable_lib_suffixes" >&6 ### If we're building with rpath, try to link non-standard libs that way too. if test "$DFT_LWR_MODEL" = "shared" && test "x$cf_cv_enable_rpath" != xno; then -echo "$as_me:8935: checking if rpath-hack should be disabled" >&5 +echo "$as_me:8937: checking if rpath-hack should be disabled" >&5 echo $ECHO_N "checking if rpath-hack should be disabled... $ECHO_C" >&6 # Check whether --enable-rpath-hack or --disable-rpath-hack was given. @@ -8950,22 +8952,22 @@ fi; if test "x$enable_rpath_hack" = xno; then cf_disable_rpath_hack=yes; else cf_disable_rpath_hack=no; fi -echo "$as_me:8953: result: $cf_disable_rpath_hack" >&5 +echo "$as_me:8955: result: $cf_disable_rpath_hack" >&5 echo "${ECHO_T}$cf_disable_rpath_hack" >&6 if test "$enable_rpath_hack" = yes ; then -echo "$as_me:8958: checking for updated LDFLAGS" >&5 +echo "$as_me:8960: checking for updated LDFLAGS" >&5 echo $ECHO_N "checking for updated LDFLAGS... $ECHO_C" >&6 if test -n "$LD_RPATH_OPT" ; then - echo "$as_me:8961: result: maybe" >&5 + echo "$as_me:8963: result: maybe" >&5 echo "${ECHO_T}maybe" >&6 for ac_prog in ldd do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 -echo "$as_me:8968: checking for $ac_word" >&5 +echo "$as_me:8970: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_prog_cf_ldd_prog+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -8980,7 +8982,7 @@ test -z "$ac_dir" && ac_dir=. $as_executable_p "$ac_dir/$ac_word" || continue ac_cv_prog_cf_ldd_prog="$ac_prog" -echo "$as_me:8983: found $ac_dir/$ac_word" >&5 +echo "$as_me:8985: found $ac_dir/$ac_word" >&5 break done @@ -8988,10 +8990,10 @@ fi cf_ldd_prog=$ac_cv_prog_cf_ldd_prog if test -n "$cf_ldd_prog"; then - echo "$as_me:8991: result: $cf_ldd_prog" >&5 + echo "$as_me:8993: result: $cf_ldd_prog" >&5 echo "${ECHO_T}$cf_ldd_prog" >&6 else - echo "$as_me:8994: result: no" >&5 + echo "$as_me:8996: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -9005,7 +9007,7 @@ cf_rpath_oops= cat >"conftest.$ac_ext" <<_ACEOF -#line 9008 "configure" +#line 9010 "configure" #include "confdefs.h" #include int @@ -9017,16 +9019,16 @@ } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:9020: \"$ac_link\"") >&5 +if { (eval echo "$as_me:9022: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:9023: \$? = $ac_status" >&5 + echo "$as_me:9025: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:9026: \"$ac_try\"") >&5 + { (eval echo "$as_me:9028: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:9029: \$? = $ac_status" >&5 + echo "$as_me:9031: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_rpath_oops=`"$cf_ldd_prog" "conftest$ac_exeext" | ${FGREP-fgrep} ' not found' | sed -e 's% =>.*$%%' |sort | uniq` cf_rpath_list=`"$cf_ldd_prog" "conftest$ac_exeext" | ${FGREP-fgrep} / | sed -e 's%^.*[ ]/%/%' -e 's%/[^/][^/]*$%%' |sort | uniq` @@ -9054,7 +9056,7 @@ then test -n "$verbose" && echo " ...adding -L$cf_rpath_dir/lib to LDFLAGS for $cf_rpath_src" 1>&6 -echo "${as_me:-configure}:9057: testing ...adding -L$cf_rpath_dir/lib to LDFLAGS for $cf_rpath_src ..." 1>&5 +echo "${as_me:-configure}:9059: testing ...adding -L$cf_rpath_dir/lib to LDFLAGS for $cf_rpath_src ..." 1>&5 LDFLAGS="$LDFLAGS -L$cf_rpath_dir/lib" break @@ -9066,11 +9068,11 @@ test -n "$verbose" && echo " ...checking EXTRA_LDFLAGS $EXTRA_LDFLAGS" 1>&6 -echo "${as_me:-configure}:9069: testing ...checking EXTRA_LDFLAGS $EXTRA_LDFLAGS ..." 1>&5 +echo "${as_me:-configure}:9071: testing ...checking EXTRA_LDFLAGS $EXTRA_LDFLAGS ..." 1>&5 test -n "$verbose" && echo " ...checking LDFLAGS $LDFLAGS" 1>&6 -echo "${as_me:-configure}:9073: testing ...checking LDFLAGS $LDFLAGS ..." 1>&5 +echo "${as_me:-configure}:9075: testing ...checking LDFLAGS $LDFLAGS ..." 1>&5 cf_rpath_dst= for cf_rpath_src in $LDFLAGS @@ -9107,7 +9109,7 @@ then test -n "$verbose" && echo " ...Filter $cf_rpath_src ->$cf_rpath_tmp" 1>&6 -echo "${as_me:-configure}:9110: testing ...Filter $cf_rpath_src ->$cf_rpath_tmp ..." 1>&5 +echo "${as_me:-configure}:9112: testing ...Filter $cf_rpath_src ->$cf_rpath_tmp ..." 1>&5 EXTRA_LDFLAGS="$cf_rpath_tmp $EXTRA_LDFLAGS" fi @@ -9120,11 +9122,11 @@ test -n "$verbose" && echo " ...checked LDFLAGS $LDFLAGS" 1>&6 -echo "${as_me:-configure}:9123: testing ...checked LDFLAGS $LDFLAGS ..." 1>&5 +echo "${as_me:-configure}:9125: testing ...checked LDFLAGS $LDFLAGS ..." 1>&5 test -n "$verbose" && echo " ...checking LIBS $LIBS" 1>&6 -echo "${as_me:-configure}:9127: testing ...checking LIBS $LIBS ..." 1>&5 +echo "${as_me:-configure}:9129: testing ...checking LIBS $LIBS ..." 1>&5 cf_rpath_dst= for cf_rpath_src in $LIBS @@ -9161,7 +9163,7 @@ then test -n "$verbose" && echo " ...Filter $cf_rpath_src ->$cf_rpath_tmp" 1>&6 -echo "${as_me:-configure}:9164: testing ...Filter $cf_rpath_src ->$cf_rpath_tmp ..." 1>&5 +echo "${as_me:-configure}:9166: testing ...Filter $cf_rpath_src ->$cf_rpath_tmp ..." 1>&5 EXTRA_LDFLAGS="$cf_rpath_tmp $EXTRA_LDFLAGS" fi @@ -9174,14 +9176,14 @@ test -n "$verbose" && echo " ...checked LIBS $LIBS" 1>&6 -echo "${as_me:-configure}:9177: testing ...checked LIBS $LIBS ..." 1>&5 +echo "${as_me:-configure}:9179: testing ...checked LIBS $LIBS ..." 1>&5 test -n "$verbose" && echo " ...checked EXTRA_LDFLAGS $EXTRA_LDFLAGS" 1>&6 -echo "${as_me:-configure}:9181: testing ...checked EXTRA_LDFLAGS $EXTRA_LDFLAGS ..." 1>&5 +echo "${as_me:-configure}:9183: testing ...checked EXTRA_LDFLAGS $EXTRA_LDFLAGS ..." 1>&5 else - echo "$as_me:9184: result: no" >&5 + echo "$as_me:9186: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -9195,7 +9197,7 @@ EXTRA_PKG_LDFLAGS="$LDFLAGS $EXTRA_LDFLAGS" if test -n "$EXTRA_PKG_LDFLAGS" then - echo "$as_me:9198: checking if you want to disable extra LDFLAGS for package-scripts" >&5 + echo "$as_me:9200: checking if you want to disable extra LDFLAGS for package-scripts" >&5 echo $ECHO_N "checking if you want to disable extra LDFLAGS for package-scripts... $ECHO_C" >&6 # Check whether --enable-pkg-ldflags or --disable-pkg-ldflags was given. @@ -9212,7 +9214,7 @@ disable_pkg_ldflags=no fi; - echo "$as_me:9215: result: $disable_pkg_ldflags" >&5 + echo "$as_me:9217: result: $disable_pkg_ldflags" >&5 echo "${ECHO_T}$disable_pkg_ldflags" >&6 test "$disable_pkg_ldflags" = yes && EXTRA_PKG_LDFLAGS= fi @@ -9220,7 +9222,7 @@ ############################################################################### ### use option --with-extra-suffix to append suffix to headers and libraries -echo "$as_me:9223: checking for extra suffix to append to header/library paths" >&5 +echo "$as_me:9225: checking for extra suffix to append to header/library paths" >&5 echo $ECHO_N "checking for extra suffix to append to header/library paths... $ECHO_C" >&6 EXTRA_SUFFIX= @@ -9239,11 +9241,11 @@ esac fi; -echo "$as_me:9242: result: ${EXTRA_SUFFIX:-(none)}" >&5 +echo "$as_me:9244: result: ${EXTRA_SUFFIX:-(none)}" >&5 echo "${ECHO_T}${EXTRA_SUFFIX:-(none)}" >&6 ### use option --disable-overwrite to leave out the link to -lcurses -echo "$as_me:9246: checking if you wish to install ncurses overwriting curses" >&5 +echo "$as_me:9248: checking if you wish to install ncurses overwriting curses" >&5 echo $ECHO_N "checking if you wish to install ncurses overwriting curses... $ECHO_C" >&6 # Check whether --enable-overwrite or --disable-overwrite was given. @@ -9253,10 +9255,10 @@ else if test "$prefix" = "/usr" ; then with_overwrite=yes; else with_overwrite=no; fi fi; -echo "$as_me:9256: result: $with_overwrite" >&5 +echo "$as_me:9258: result: $with_overwrite" >&5 echo "${ECHO_T}$with_overwrite" >&6 -echo "$as_me:9259: checking if external terminfo-database is used" >&5 +echo "$as_me:9261: checking if external terminfo-database is used" >&5 echo $ECHO_N "checking if external terminfo-database is used... $ECHO_C" >&6 # Check whether --enable-database or --disable-database was given. @@ -9266,7 +9268,7 @@ else use_database=yes fi; -echo "$as_me:9269: result: $use_database" >&5 +echo "$as_me:9271: result: $use_database" >&5 echo "${ECHO_T}$use_database" >&6 case "$host_os" in @@ -9282,7 +9284,7 @@ if test "$use_database" != no ; then NCURSES_USE_DATABASE=1 - echo "$as_me:9285: checking which terminfo source-file will be installed" >&5 + echo "$as_me:9287: checking which terminfo source-file will be installed" >&5 echo $ECHO_N "checking which terminfo source-file will be installed... $ECHO_C" >&6 # Check whether --with-database or --without-database was given. @@ -9290,10 +9292,10 @@ withval="$with_database" TERMINFO_SRC=$withval fi; - echo "$as_me:9293: result: $TERMINFO_SRC" >&5 + echo "$as_me:9295: result: $TERMINFO_SRC" >&5 echo "${ECHO_T}$TERMINFO_SRC" >&6 - echo "$as_me:9296: checking whether to use hashed database instead of directory/tree" >&5 + echo "$as_me:9298: checking whether to use hashed database instead of directory/tree" >&5 echo $ECHO_N "checking whether to use hashed database instead of directory/tree... $ECHO_C" >&6 # Check whether --with-hashed-db or --without-hashed-db was given. @@ -9303,13 +9305,13 @@ else with_hashed_db=no fi; - echo "$as_me:9306: result: $with_hashed_db" >&5 + echo "$as_me:9308: result: $with_hashed_db" >&5 echo "${ECHO_T}$with_hashed_db" >&6 else with_hashed_db=no fi -echo "$as_me:9312: checking for list of fallback terminal descriptions" >&5 +echo "$as_me:9314: checking for list of fallback terminal descriptions" >&5 echo $ECHO_N "checking for list of fallback terminal descriptions... $ECHO_C" >&6 # Check whether --with-fallbacks or --without-fallbacks was given. @@ -9319,7 +9321,7 @@ else with_fallback= fi; -echo "$as_me:9322: result: ${with_fallback:-(none)}" >&5 +echo "$as_me:9324: result: ${with_fallback:-(none)}" >&5 echo "${ECHO_T}${with_fallback:-(none)}" >&6 case ".$with_fallback" in @@ -9327,7 +9329,7 @@ FALLBACK_LIST= ;; (.yes) - { echo "$as_me:9330: WARNING: expected a list of terminal descriptions" >&5 + { echo "$as_me:9332: WARNING: expected a list of terminal descriptions" >&5 echo "$as_me: WARNING: expected a list of terminal descriptions" >&2;} ;; (*) @@ -9343,7 +9345,7 @@ if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}tic", so it can be a program name with args. set dummy ${ac_tool_prefix}tic; ac_word=$2 -echo "$as_me:9346: checking for $ac_word" >&5 +echo "$as_me:9348: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_prog_TIC+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -9358,7 +9360,7 @@ test -z "$ac_dir" && ac_dir=. $as_executable_p "$ac_dir/$ac_word" || continue ac_cv_prog_TIC="${ac_tool_prefix}tic" -echo "$as_me:9361: found $ac_dir/$ac_word" >&5 +echo "$as_me:9363: found $ac_dir/$ac_word" >&5 break done @@ -9366,10 +9368,10 @@ fi TIC=$ac_cv_prog_TIC if test -n "$TIC"; then - echo "$as_me:9369: result: $TIC" >&5 + echo "$as_me:9371: result: $TIC" >&5 echo "${ECHO_T}$TIC" >&6 else - echo "$as_me:9372: result: no" >&5 + echo "$as_me:9374: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -9378,7 +9380,7 @@ ac_ct_TIC=$TIC # Extract the first word of "tic", so it can be a program name with args. set dummy tic; ac_word=$2 -echo "$as_me:9381: checking for $ac_word" >&5 +echo "$as_me:9383: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_prog_ac_ct_TIC+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -9393,7 +9395,7 @@ test -z "$ac_dir" && ac_dir=. $as_executable_p "$ac_dir/$ac_word" || continue ac_cv_prog_ac_ct_TIC="tic" -echo "$as_me:9396: found $ac_dir/$ac_word" >&5 +echo "$as_me:9398: found $ac_dir/$ac_word" >&5 break done @@ -9401,10 +9403,10 @@ fi ac_ct_TIC=$ac_cv_prog_ac_ct_TIC if test -n "$ac_ct_TIC"; then - echo "$as_me:9404: result: $ac_ct_TIC" >&5 + echo "$as_me:9406: result: $ac_ct_TIC" >&5 echo "${ECHO_T}$ac_ct_TIC" >&6 else - echo "$as_me:9407: result: no" >&5 + echo "$as_me:9409: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -9416,7 +9418,7 @@ if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}infocmp", so it can be a program name with args. set dummy ${ac_tool_prefix}infocmp; ac_word=$2 -echo "$as_me:9419: checking for $ac_word" >&5 +echo "$as_me:9421: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_prog_INFOCMP+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -9431,7 +9433,7 @@ test -z "$ac_dir" && ac_dir=. $as_executable_p "$ac_dir/$ac_word" || continue ac_cv_prog_INFOCMP="${ac_tool_prefix}infocmp" -echo "$as_me:9434: found $ac_dir/$ac_word" >&5 +echo "$as_me:9436: found $ac_dir/$ac_word" >&5 break done @@ -9439,10 +9441,10 @@ fi INFOCMP=$ac_cv_prog_INFOCMP if test -n "$INFOCMP"; then - echo "$as_me:9442: result: $INFOCMP" >&5 + echo "$as_me:9444: result: $INFOCMP" >&5 echo "${ECHO_T}$INFOCMP" >&6 else - echo "$as_me:9445: result: no" >&5 + echo "$as_me:9447: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -9451,7 +9453,7 @@ ac_ct_INFOCMP=$INFOCMP # Extract the first word of "infocmp", so it can be a program name with args. set dummy infocmp; ac_word=$2 -echo "$as_me:9454: checking for $ac_word" >&5 +echo "$as_me:9456: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_prog_ac_ct_INFOCMP+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -9466,7 +9468,7 @@ test -z "$ac_dir" && ac_dir=. $as_executable_p "$ac_dir/$ac_word" || continue ac_cv_prog_ac_ct_INFOCMP="infocmp" -echo "$as_me:9469: found $ac_dir/$ac_word" >&5 +echo "$as_me:9471: found $ac_dir/$ac_word" >&5 break done @@ -9474,10 +9476,10 @@ fi ac_ct_INFOCMP=$ac_cv_prog_ac_ct_INFOCMP if test -n "$ac_ct_INFOCMP"; then - echo "$as_me:9477: result: $ac_ct_INFOCMP" >&5 + echo "$as_me:9479: result: $ac_ct_INFOCMP" >&5 echo "${ECHO_T}$ac_ct_INFOCMP" >&6 else - echo "$as_me:9480: result: no" >&5 + echo "$as_me:9482: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -9492,10 +9494,10 @@ # Check whether --with-tic-path or --without-tic-path was given. if test "${with_tic_path+set}" = set; then withval="$with_tic_path" - echo "$as_me:9495: checking for tic program for fallbacks" >&5 + echo "$as_me:9497: checking for tic program for fallbacks" >&5 echo $ECHO_N "checking for tic program for fallbacks... $ECHO_C" >&6 TIC=$withval - echo "$as_me:9498: result: $TIC" >&5 + echo "$as_me:9500: result: $TIC" >&5 echo "${ECHO_T}$TIC" >&6 if test "x$prefix" != xNONE; then @@ -9521,7 +9523,7 @@ TIC=`echo "$TIC" | sed -e s%NONE%$cf_path_syntax%` ;; (*) - { { echo "$as_me:9524: error: expected a pathname, not \"$TIC\"" >&5 + { { echo "$as_me:9526: error: expected a pathname, not \"$TIC\"" >&5 echo "$as_me: error: expected a pathname, not \"$TIC\"" >&2;} { (exit 1); exit 1; }; } ;; @@ -9534,7 +9536,7 @@ do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 -echo "$as_me:9537: checking for $ac_word" >&5 +echo "$as_me:9539: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_path_TIC+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -9551,7 +9553,7 @@ test -z "$ac_dir" && ac_dir=. if $as_executable_p "$ac_dir/$ac_word"; then ac_cv_path_TIC="$ac_dir/$ac_word" - echo "$as_me:9554: found $ac_dir/$ac_word" >&5 + echo "$as_me:9556: found $ac_dir/$ac_word" >&5 break fi done @@ -9562,10 +9564,10 @@ TIC=$ac_cv_path_TIC if test -n "$TIC"; then - echo "$as_me:9565: result: $TIC" >&5 + echo "$as_me:9567: result: $TIC" >&5 echo "${ECHO_T}$TIC" >&6 else - echo "$as_me:9568: result: no" >&5 + echo "$as_me:9570: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -9622,7 +9624,7 @@ if test -n "$cf_path_prog" ; then -echo "${as_me:-configure}:9625: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me:-configure}:9627: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <&5 + { echo "$as_me:9642: WARNING: no tic program found for fallbacks" >&5 echo "$as_me: WARNING: no tic program found for fallbacks" >&2;} fi @@ -9646,10 +9648,10 @@ # Check whether --with-infocmp-path or --without-infocmp-path was given. if test "${with_infocmp_path+set}" = set; then withval="$with_infocmp_path" - echo "$as_me:9649: checking for infocmp program for fallbacks" >&5 + echo "$as_me:9651: checking for infocmp program for fallbacks" >&5 echo $ECHO_N "checking for infocmp program for fallbacks... $ECHO_C" >&6 INFOCMP=$withval - echo "$as_me:9652: result: $INFOCMP" >&5 + echo "$as_me:9654: result: $INFOCMP" >&5 echo "${ECHO_T}$INFOCMP" >&6 if test "x$prefix" != xNONE; then @@ -9675,7 +9677,7 @@ INFOCMP=`echo "$INFOCMP" | sed -e s%NONE%$cf_path_syntax%` ;; (*) - { { echo "$as_me:9678: error: expected a pathname, not \"$INFOCMP\"" >&5 + { { echo "$as_me:9680: error: expected a pathname, not \"$INFOCMP\"" >&5 echo "$as_me: error: expected a pathname, not \"$INFOCMP\"" >&2;} { (exit 1); exit 1; }; } ;; @@ -9688,7 +9690,7 @@ do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 -echo "$as_me:9691: checking for $ac_word" >&5 +echo "$as_me:9693: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_path_INFOCMP+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -9705,7 +9707,7 @@ test -z "$ac_dir" && ac_dir=. if $as_executable_p "$ac_dir/$ac_word"; then ac_cv_path_INFOCMP="$ac_dir/$ac_word" - echo "$as_me:9708: found $ac_dir/$ac_word" >&5 + echo "$as_me:9710: found $ac_dir/$ac_word" >&5 break fi done @@ -9716,10 +9718,10 @@ INFOCMP=$ac_cv_path_INFOCMP if test -n "$INFOCMP"; then - echo "$as_me:9719: result: $INFOCMP" >&5 + echo "$as_me:9721: result: $INFOCMP" >&5 echo "${ECHO_T}$INFOCMP" >&6 else - echo "$as_me:9722: result: no" >&5 + echo "$as_me:9724: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -9776,7 +9778,7 @@ if test -n "$cf_path_prog" ; then -echo "${as_me:-configure}:9779: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me:-configure}:9781: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <&5 + { echo "$as_me:9796: WARNING: no infocmp program found for fallbacks" >&5 echo "$as_me: WARNING: no infocmp program found for fallbacks" >&2;} fi @@ -9801,7 +9803,7 @@ test -z "$INFOCMP" && FALLBACK_LIST= if test -z "$FALLBACK_LIST" then - { echo "$as_me:9804: WARNING: ignoring fallback option because tic/infocmp are not available" >&5 + { echo "$as_me:9806: WARNING: ignoring fallback option because tic/infocmp are not available" >&5 echo "$as_me: WARNING: ignoring fallback option because tic/infocmp are not available" >&2;} fi fi @@ -9809,7 +9811,7 @@ USE_FALLBACKS= test -z "$FALLBACK_LIST" && USE_FALLBACKS="#" -echo "$as_me:9812: checking if you want modern xterm or antique" >&5 +echo "$as_me:9814: checking if you want modern xterm or antique" >&5 echo $ECHO_N "checking if you want modern xterm or antique... $ECHO_C" >&6 # Check whether --with-xterm-new or --without-xterm-new was given. @@ -9823,7 +9825,7 @@ (no) with_xterm_new=xterm-old;; (*) with_xterm_new=xterm-new;; esac -echo "$as_me:9826: result: $with_xterm_new" >&5 +echo "$as_me:9828: result: $with_xterm_new" >&5 echo "${ECHO_T}$with_xterm_new" >&6 WHICH_XTERM=$with_xterm_new @@ -9836,7 +9838,7 @@ ;; esac -echo "$as_me:9839: checking if xterm backspace sends BS or DEL" >&5 +echo "$as_me:9841: checking if xterm backspace sends BS or DEL" >&5 echo $ECHO_N "checking if xterm backspace sends BS or DEL... $ECHO_C" >&6 # Check whether --with-xterm-kbs or --without-xterm-kbs was given. @@ -9860,13 +9862,13 @@ with_xterm_kbs=$withval ;; esac -echo "$as_me:9863: result: $with_xterm_kbs" >&5 +echo "$as_me:9865: result: $with_xterm_kbs" >&5 echo "${ECHO_T}$with_xterm_kbs" >&6 XTERM_KBS=$with_xterm_kbs if test "x$with_xterm_kbs" != "x$want_xterm_kbs" then - { echo "$as_me:9869: WARNING: expected --with-xterm-kbs=$want_xterm_kbs for $host_os, have $with_xterm_kbs" >&5 + { echo "$as_me:9871: WARNING: expected --with-xterm-kbs=$want_xterm_kbs for $host_os, have $with_xterm_kbs" >&5 echo "$as_me: WARNING: expected --with-xterm-kbs=$want_xterm_kbs for $host_os, have $with_xterm_kbs" >&2;} fi @@ -9876,7 +9878,7 @@ MAKE_TERMINFO="#" else -echo "$as_me:9879: checking for list of terminfo directories" >&5 +echo "$as_me:9881: checking for list of terminfo directories" >&5 echo $ECHO_N "checking for list of terminfo directories... $ECHO_C" >&6 # Check whether --with-terminfo-dirs or --without-terminfo-dirs was given. @@ -9914,7 +9916,7 @@ cf_src_path=`echo "$cf_src_path" | sed -e s%NONE%$cf_path_syntax%` ;; (*) - { { echo "$as_me:9917: error: expected a pathname, not \"$cf_src_path\"" >&5 + { { echo "$as_me:9919: error: expected a pathname, not \"$cf_src_path\"" >&5 echo "$as_me: error: expected a pathname, not \"$cf_src_path\"" >&2;} { (exit 1); exit 1; }; } ;; @@ -9937,7 +9939,7 @@ ;; esac -echo "$as_me:9940: result: $TERMINFO_DIRS" >&5 +echo "$as_me:9942: result: $TERMINFO_DIRS" >&5 echo "${ECHO_T}$TERMINFO_DIRS" >&6 test -n "$TERMINFO_DIRS" && cat >>confdefs.h <&5 + { echo "$as_me:9951: WARNING: ignoring non-directory/file TERMINFO value" >&5 echo "$as_me: WARNING: ignoring non-directory/file TERMINFO value" >&2;} unset TERMINFO ;; esac -echo "$as_me:9955: checking for default terminfo directory" >&5 +echo "$as_me:9957: checking for default terminfo directory" >&5 echo $ECHO_N "checking for default terminfo directory... $ECHO_C" >&6 # Check whether --with-default-terminfo-dir or --without-default-terminfo-dir was given. @@ -9986,7 +9988,7 @@ withval=`echo "$withval" | sed -e s%NONE%$cf_path_syntax%` ;; (*) - { { echo "$as_me:9989: error: expected a pathname, not \"$withval\"" >&5 + { { echo "$as_me:9991: error: expected a pathname, not \"$withval\"" >&5 echo "$as_me: error: expected a pathname, not \"$withval\"" >&2;} { (exit 1); exit 1; }; } ;; @@ -9995,7 +9997,7 @@ fi eval TERMINFO="$withval" -echo "$as_me:9998: result: $TERMINFO" >&5 +echo "$as_me:10000: result: $TERMINFO" >&5 echo "${ECHO_T}$TERMINFO" >&6 cat >>confdefs.h <&5 +echo "$as_me:10011: checking if big-core option selected" >&5 echo $ECHO_N "checking if big-core option selected... $ECHO_C" >&6 # Check whether --enable-big-core or --disable-big-core was given. @@ -10018,7 +10020,7 @@ with_big_core=no else cat >"conftest.$ac_ext" <<_ACEOF -#line 10021 "configure" +#line 10023 "configure" #include "confdefs.h" #include @@ -10032,15 +10034,15 @@ } _ACEOF rm -f "conftest$ac_exeext" -if { (eval echo "$as_me:10035: \"$ac_link\"") >&5 +if { (eval echo "$as_me:10037: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:10038: \$? = $ac_status" >&5 + echo "$as_me:10040: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='"./conftest$ac_exeext"' - { (eval echo "$as_me:10040: \"$ac_try\"") >&5 + { (eval echo "$as_me:10042: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:10043: \$? = $ac_status" >&5 + echo "$as_me:10045: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then with_big_core=yes else @@ -10052,7 +10054,7 @@ rm -f core ./core.* ./*.core "conftest$ac_exeext" "conftest.$ac_objext" "conftest.$ac_ext" fi fi; -echo "$as_me:10055: result: $with_big_core" >&5 +echo "$as_me:10057: result: $with_big_core" >&5 echo "${ECHO_T}$with_big_core" >&6 test "x$with_big_core" = "xyes" && cat >>confdefs.h <<\EOF @@ -10062,7 +10064,7 @@ ### ISO C only guarantees 512-char strings, we have tables which load faster ### when constructed using "big" strings. More than the C compiler, the awk ### program is a limit on most vendor UNIX systems. Check that we can build. -echo "$as_me:10065: checking if big-strings option selected" >&5 +echo "$as_me:10067: checking if big-strings option selected" >&5 echo $ECHO_N "checking if big-strings option selected... $ECHO_C" >&6 # Check whether --enable-big-strings or --disable-big-strings was given. @@ -10086,14 +10088,14 @@ esac fi; -echo "$as_me:10089: result: $with_big_strings" >&5 +echo "$as_me:10091: result: $with_big_strings" >&5 echo "${ECHO_T}$with_big_strings" >&6 USE_BIG_STRINGS=0 test "x$with_big_strings" = "xyes" && USE_BIG_STRINGS=1 ### use option --enable-termcap to compile in the termcap fallback support -echo "$as_me:10096: checking if you want termcap-fallback support" >&5 +echo "$as_me:10098: checking if you want termcap-fallback support" >&5 echo $ECHO_N "checking if you want termcap-fallback support... $ECHO_C" >&6 # Check whether --enable-termcap or --disable-termcap was given. @@ -10103,14 +10105,14 @@ else with_termcap=no fi; -echo "$as_me:10106: result: $with_termcap" >&5 +echo "$as_me:10108: result: $with_termcap" >&5 echo "${ECHO_T}$with_termcap" >&6 NCURSES_USE_TERMCAP=0 if test "x$with_termcap" != "xyes" ; then if test "$use_database" = no ; then if test -z "$with_fallback" ; then - { { echo "$as_me:10113: error: You have disabled the database w/o specifying fallbacks" >&5 + { { echo "$as_me:10115: error: You have disabled the database w/o specifying fallbacks" >&5 echo "$as_me: error: You have disabled the database w/o specifying fallbacks" >&2;} { (exit 1); exit 1; }; } fi @@ -10123,13 +10125,13 @@ else if test "$with_ticlib" != no ; then - { { echo "$as_me:10126: error: Options --with-ticlib and --enable-termcap cannot be combined" >&5 + { { echo "$as_me:10128: error: Options --with-ticlib and --enable-termcap cannot be combined" >&5 echo "$as_me: error: Options --with-ticlib and --enable-termcap cannot be combined" >&2;} { (exit 1); exit 1; }; } fi NCURSES_USE_TERMCAP=1 - echo "$as_me:10132: checking for list of termcap files" >&5 + echo "$as_me:10134: checking for list of termcap files" >&5 echo $ECHO_N "checking for list of termcap files... $ECHO_C" >&6 # Check whether --with-termpath or --without-termpath was given. @@ -10167,7 +10169,7 @@ cf_src_path=`echo "$cf_src_path" | sed -e s%NONE%$cf_path_syntax%` ;; (*) - { { echo "$as_me:10170: error: expected a pathname, not \"$cf_src_path\"" >&5 + { { echo "$as_me:10172: error: expected a pathname, not \"$cf_src_path\"" >&5 echo "$as_me: error: expected a pathname, not \"$cf_src_path\"" >&2;} { (exit 1); exit 1; }; } ;; @@ -10190,7 +10192,7 @@ ;; esac - echo "$as_me:10193: result: $TERMPATH" >&5 + echo "$as_me:10195: result: $TERMPATH" >&5 echo "${ECHO_T}$TERMPATH" >&6 test -n "$TERMPATH" && cat >>confdefs.h <&5 + echo "$as_me:10203: checking if fast termcap-loader is needed" >&5 echo $ECHO_N "checking if fast termcap-loader is needed... $ECHO_C" >&6 # Check whether --enable-getcap or --disable-getcap was given. @@ -10208,14 +10210,14 @@ else with_getcap=no fi; - echo "$as_me:10211: result: $with_getcap" >&5 + echo "$as_me:10213: result: $with_getcap" >&5 echo "${ECHO_T}$with_getcap" >&6 test "x$with_getcap" = "xyes" && cat >>confdefs.h <<\EOF #define USE_GETCAP 1 EOF - echo "$as_me:10218: checking if translated termcaps will be cached in ~/.terminfo" >&5 + echo "$as_me:10220: checking if translated termcaps will be cached in ~/.terminfo" >&5 echo $ECHO_N "checking if translated termcaps will be cached in ~/.terminfo... $ECHO_C" >&6 # Check whether --enable-getcap-cache or --disable-getcap-cache was given. @@ -10225,7 +10227,7 @@ else with_getcap_cache=no fi; - echo "$as_me:10228: result: $with_getcap_cache" >&5 + echo "$as_me:10230: result: $with_getcap_cache" >&5 echo "${ECHO_T}$with_getcap_cache" >&6 test "x$with_getcap_cache" = "xyes" && cat >>confdefs.h <<\EOF @@ -10235,7 +10237,7 @@ fi ### Use option --disable-home-terminfo to completely remove ~/.terminfo -echo "$as_me:10238: checking if ~/.terminfo is wanted" >&5 +echo "$as_me:10240: checking if ~/.terminfo is wanted" >&5 echo $ECHO_N "checking if ~/.terminfo is wanted... $ECHO_C" >&6 # Check whether --enable-home-terminfo or --disable-home-terminfo was given. @@ -10245,14 +10247,14 @@ else with_home_terminfo=yes fi; -echo "$as_me:10248: result: $with_home_terminfo" >&5 +echo "$as_me:10250: result: $with_home_terminfo" >&5 echo "${ECHO_T}$with_home_terminfo" >&6 test "x$with_home_terminfo" = "xyes" && cat >>confdefs.h <<\EOF #define USE_HOME_TERMINFO 1 EOF -echo "$as_me:10255: checking if you want to permit root to use ncurses environment variables" >&5 +echo "$as_me:10257: checking if you want to permit root to use ncurses environment variables" >&5 echo $ECHO_N "checking if you want to permit root to use ncurses environment variables... $ECHO_C" >&6 # Check whether --enable-root-environ or --disable-root-environ was given. @@ -10262,14 +10264,14 @@ else with_root_environ=yes fi; -echo "$as_me:10265: result: $with_root_environ" >&5 +echo "$as_me:10267: result: $with_root_environ" >&5 echo "${ECHO_T}$with_root_environ" >&6 test "x$with_root_environ" = xyes && cat >>confdefs.h <<\EOF #define USE_ROOT_ENVIRON 1 EOF -echo "$as_me:10272: checking if you want to permit setuid programs to access all files" >&5 +echo "$as_me:10274: checking if you want to permit setuid programs to access all files" >&5 echo $ECHO_N "checking if you want to permit setuid programs to access all files... $ECHO_C" >&6 # Check whether --enable-root-access or --disable-root-access was given. @@ -10279,14 +10281,14 @@ else with_root_access=yes fi; -echo "$as_me:10282: result: $with_root_access" >&5 +echo "$as_me:10284: result: $with_root_access" >&5 echo "${ECHO_T}$with_root_access" >&6 test "x$with_root_access" = xyes && cat >>confdefs.h <<\EOF #define USE_ROOT_ACCESS 1 EOF -echo "$as_me:10289: checking if you want to permit setuid use of ncurses environment variables" >&5 +echo "$as_me:10291: checking if you want to permit setuid use of ncurses environment variables" >&5 echo $ECHO_N "checking if you want to permit setuid use of ncurses environment variables... $ECHO_C" >&6 # Check whether --enable-setuid-environ or --disable-setuid-environ was given. @@ -10296,7 +10298,7 @@ else with_setuid_environ=$with_root_environ fi; -echo "$as_me:10299: result: $with_setuid_environ" >&5 +echo "$as_me:10301: result: $with_setuid_environ" >&5 echo "${ECHO_T}$with_setuid_environ" >&6 test "x$with_setuid_environ" = xyes && cat >>confdefs.h <<\EOF @@ -10311,23 +10313,23 @@ do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` -echo "$as_me:10314: checking for $ac_header" >&5 +echo "$as_me:10316: 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 10320 "configure" +#line 10322 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:10324: \"$ac_cpp "conftest.$ac_ext"\"") >&5 +if { (eval echo "$as_me:10326: \"$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:10330: \$? = $ac_status" >&5 + echo "$as_me:10332: \$? = $ac_status" >&5 (exit "$ac_status"); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -10346,7 +10348,7 @@ fi rm -f conftest.err "conftest.$ac_ext" fi -echo "$as_me:10349: result: `eval echo '${'"$as_ac_Header"'}'`" >&5 +echo "$as_me:10351: 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:10366: 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 10370 "configure" +#line 10372 "configure" #include "confdefs.h" #define $ac_func autoconf_temporary #include /* least-intrusive standard header which defines gcc2 __stub macros */ @@ -10398,16 +10400,16 @@ } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:10401: \"$ac_link\"") >&5 +if { (eval echo "$as_me:10403: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:10404: \$? = $ac_status" >&5 + echo "$as_me:10406: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:10407: \"$ac_try\"") >&5 + { (eval echo "$as_me:10409: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:10410: \$? = $ac_status" >&5 + echo "$as_me:10412: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then eval "$as_ac_var=yes" else @@ -10417,7 +10419,7 @@ fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:10420: result: `eval echo '${'"$as_ac_var"'}'`" >&5 +echo "$as_me:10422: 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:10439: 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 10443 "configure" +#line 10445 "configure" #include "confdefs.h" #define $ac_func autoconf_temporary #include /* least-intrusive standard header which defines gcc2 __stub macros */ @@ -10471,16 +10473,16 @@ } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:10474: \"$ac_link\"") >&5 +if { (eval echo "$as_me:10476: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:10477: \$? = $ac_status" >&5 + echo "$as_me:10479: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:10480: \"$ac_try\"") >&5 + { (eval echo "$as_me:10482: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:10483: \$? = $ac_status" >&5 + echo "$as_me:10485: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then eval "$as_ac_var=yes" else @@ -10490,7 +10492,7 @@ fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:10493: result: `eval echo '${'"$as_ac_var"'}'`" >&5 +echo "$as_me:10495: 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:10506: checking if link/symlink functions work" >&5 echo $ECHO_N "checking if link/symlink functions work... $ECHO_C" >&6 if test "${cf_cv_link_funcs+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -10514,7 +10516,7 @@ eval 'ac_cv_func_'$cf_func'=error' else cat >"conftest.$ac_ext" <<_ACEOF -#line 10517 "configure" +#line 10519 "configure" #include "confdefs.h" $ac_includes_default @@ -10548,15 +10550,15 @@ _ACEOF rm -f "conftest$ac_exeext" -if { (eval echo "$as_me:10551: \"$ac_link\"") >&5 +if { (eval echo "$as_me:10553: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:10554: \$? = $ac_status" >&5 + echo "$as_me:10556: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='"./conftest$ac_exeext"' - { (eval echo "$as_me:10556: \"$ac_try\"") >&5 + { (eval echo "$as_me:10558: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:10559: \$? = $ac_status" >&5 + echo "$as_me:10561: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_link_funcs="$cf_cv_link_funcs $cf_func" @@ -10574,7 +10576,7 @@ test -z "$cf_cv_link_funcs" && cf_cv_link_funcs=no fi -echo "$as_me:10577: result: $cf_cv_link_funcs" >&5 +echo "$as_me:10579: result: $cf_cv_link_funcs" >&5 echo "${ECHO_T}$cf_cv_link_funcs" >&6 test "$ac_cv_func_link" = yes && cat >>confdefs.h <<\EOF @@ -10594,7 +10596,7 @@ # soft links (symbolic links) are useful for some systems where hard links do # not work, or to make it simpler to copy terminfo trees around. if test "x$ac_cv_func_symlink" = xyes ; then - echo "$as_me:10597: checking if tic should use symbolic links" >&5 + echo "$as_me:10599: checking if tic should use symbolic links" >&5 echo $ECHO_N "checking if tic should use symbolic links... $ECHO_C" >&6 # Check whether --enable-symlinks or --disable-symlinks was given. @@ -10604,21 +10606,21 @@ else with_symlinks=no fi; - echo "$as_me:10607: result: $with_symlinks" >&5 + echo "$as_me:10609: result: $with_symlinks" >&5 echo "${ECHO_T}$with_symlinks" >&6 fi # If we have hard links and did not choose to use soft links instead, there is # no reason to make this choice optional - use the hard links. if test "$with_symlinks" = no ; then - echo "$as_me:10614: checking if tic should use hard links" >&5 + echo "$as_me:10616: checking if tic should use hard links" >&5 echo $ECHO_N "checking if tic should use hard links... $ECHO_C" >&6 if test "x$ac_cv_func_link" = xyes ; then with_links=yes else with_links=no fi - echo "$as_me:10621: result: $with_links" >&5 + echo "$as_me:10623: result: $with_links" >&5 echo "${ECHO_T}$with_links" >&6 fi @@ -10634,7 +10636,7 @@ ### use option --enable-broken-linker to force on use of broken-linker support -echo "$as_me:10637: checking if you want broken-linker support code" >&5 +echo "$as_me:10639: checking if you want broken-linker support code" >&5 echo $ECHO_N "checking if you want broken-linker support code... $ECHO_C" >&6 # Check whether --enable-broken_linker or --disable-broken_linker was given. @@ -10644,7 +10646,7 @@ else with_broken_linker=no fi; -echo "$as_me:10647: result: $with_broken_linker" >&5 +echo "$as_me:10649: result: $with_broken_linker" >&5 echo "${ECHO_T}$with_broken_linker" >&6 : "${BROKEN_LINKER:=0}" @@ -10658,7 +10660,7 @@ fi ### use option --enable-bsdpad to have tputs process BSD-style prefix padding -echo "$as_me:10661: checking if tputs should process BSD-style prefix padding" >&5 +echo "$as_me:10663: checking if tputs should process BSD-style prefix padding" >&5 echo $ECHO_N "checking if tputs should process BSD-style prefix padding... $ECHO_C" >&6 # Check whether --enable-bsdpad or --disable-bsdpad was given. @@ -10668,7 +10670,7 @@ else with_bsdpad=no fi; -echo "$as_me:10671: result: $with_bsdpad" >&5 +echo "$as_me:10673: result: $with_bsdpad" >&5 echo "${ECHO_T}$with_bsdpad" >&6 test "x$with_bsdpad" = xyes && cat >>confdefs.h <<\EOF @@ -10687,14 +10689,14 @@ # Check to define _XOPEN_SOURCE "automatically" CPPFLAGS_before_XOPEN="$CPPFLAGS" -echo "$as_me:10690: checking if the POSIX test-macros are already defined" >&5 +echo "$as_me:10692: checking if the POSIX test-macros are already defined" >&5 echo $ECHO_N "checking if the POSIX test-macros are already defined... $ECHO_C" >&6 if test "${cf_cv_posix_visible+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >"conftest.$ac_ext" <<_ACEOF -#line 10697 "configure" +#line 10699 "configure" #include "confdefs.h" #include int @@ -10713,16 +10715,16 @@ } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:10716: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:10718: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:10719: \$? = $ac_status" >&5 + echo "$as_me:10721: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:10722: \"$ac_try\"") >&5 + { (eval echo "$as_me:10724: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:10725: \$? = $ac_status" >&5 + echo "$as_me:10727: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_posix_visible=no else @@ -10733,7 +10735,7 @@ rm -f "conftest.$ac_objext" "conftest.$ac_ext" fi -echo "$as_me:10736: result: $cf_cv_posix_visible" >&5 +echo "$as_me:10738: result: $cf_cv_posix_visible" >&5 echo "${ECHO_T}$cf_cv_posix_visible" >&6 if test "$cf_cv_posix_visible" = no; then @@ -10775,14 +10777,14 @@ cf_gnu_xopen_source=$cf_XOPEN_SOURCE -echo "$as_me:10778: checking if this is the GNU C library" >&5 +echo "$as_me:10780: checking if this is the GNU C library" >&5 echo $ECHO_N "checking if this is the GNU C library... $ECHO_C" >&6 if test "${cf_cv_gnu_library+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >"conftest.$ac_ext" <<_ACEOF -#line 10785 "configure" +#line 10787 "configure" #include "confdefs.h" #include int @@ -10801,16 +10803,16 @@ } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:10804: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:10806: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:10807: \$? = $ac_status" >&5 + echo "$as_me:10809: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:10810: \"$ac_try\"") >&5 + { (eval echo "$as_me:10812: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:10813: \$? = $ac_status" >&5 + echo "$as_me:10815: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_gnu_library=yes else @@ -10821,7 +10823,7 @@ rm -f "conftest.$ac_objext" "conftest.$ac_ext" fi -echo "$as_me:10824: result: $cf_cv_gnu_library" >&5 +echo "$as_me:10826: result: $cf_cv_gnu_library" >&5 echo "${ECHO_T}$cf_cv_gnu_library" >&6 if test x$cf_cv_gnu_library = xyes; then @@ -10829,7 +10831,7 @@ # With glibc 2.19 (13 years after this check was begun), _DEFAULT_SOURCE # was changed to help a little. newlib incorporated the change about 4 # years later. - echo "$as_me:10832: checking if _DEFAULT_SOURCE can be used as a basis" >&5 + echo "$as_me:10834: checking if _DEFAULT_SOURCE can be used as a basis" >&5 echo $ECHO_N "checking if _DEFAULT_SOURCE can be used as a basis... $ECHO_C" >&6 if test "${cf_cv_gnu_library_219+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -10841,7 +10843,7 @@ CPPFLAGS="${CPPFLAGS}-D_DEFAULT_SOURCE" cat >"conftest.$ac_ext" <<_ACEOF -#line 10844 "configure" +#line 10846 "configure" #include "confdefs.h" #include int @@ -10860,16 +10862,16 @@ } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:10863: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:10865: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:10866: \$? = $ac_status" >&5 + echo "$as_me:10868: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:10869: \"$ac_try\"") >&5 + { (eval echo "$as_me:10871: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:10872: \$? = $ac_status" >&5 + echo "$as_me:10874: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_gnu_library_219=yes else @@ -10881,12 +10883,12 @@ CPPFLAGS="$cf_save" fi -echo "$as_me:10884: result: $cf_cv_gnu_library_219" >&5 +echo "$as_me:10886: result: $cf_cv_gnu_library_219" >&5 echo "${ECHO_T}$cf_cv_gnu_library_219" >&6 if test "x$cf_cv_gnu_library_219" = xyes; then cf_save="$CPPFLAGS" - echo "$as_me:10889: checking if _XOPEN_SOURCE=$cf_gnu_xopen_source works with _DEFAULT_SOURCE" >&5 + echo "$as_me:10891: checking if _XOPEN_SOURCE=$cf_gnu_xopen_source works with _DEFAULT_SOURCE" >&5 echo $ECHO_N "checking if _XOPEN_SOURCE=$cf_gnu_xopen_source works with _DEFAULT_SOURCE... $ECHO_C" >&6 if test "${cf_cv_gnu_dftsrc_219+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -10991,7 +10993,7 @@ fi cat >"conftest.$ac_ext" <<_ACEOF -#line 10994 "configure" +#line 10996 "configure" #include "confdefs.h" #include @@ -11011,16 +11013,16 @@ } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:11014: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:11016: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:11017: \$? = $ac_status" >&5 + echo "$as_me:11019: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:11020: \"$ac_try\"") >&5 + { (eval echo "$as_me:11022: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:11023: \$? = $ac_status" >&5 + echo "$as_me:11025: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_gnu_dftsrc_219=yes else @@ -11031,7 +11033,7 @@ rm -f "conftest.$ac_objext" "conftest.$ac_ext" fi -echo "$as_me:11034: result: $cf_cv_gnu_dftsrc_219" >&5 +echo "$as_me:11036: result: $cf_cv_gnu_dftsrc_219" >&5 echo "${ECHO_T}$cf_cv_gnu_dftsrc_219" >&6 test "x$cf_cv_gnu_dftsrc_219" = "xyes" || CPPFLAGS="$cf_save" else @@ -11040,14 +11042,14 @@ if test "x$cf_cv_gnu_dftsrc_219" != xyes; then - echo "$as_me:11043: checking if we must define _GNU_SOURCE" >&5 + echo "$as_me:11045: checking if we must define _GNU_SOURCE" >&5 echo $ECHO_N "checking if we must define _GNU_SOURCE... $ECHO_C" >&6 if test "${cf_cv_gnu_source+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >"conftest.$ac_ext" <<_ACEOF -#line 11050 "configure" +#line 11052 "configure" #include "confdefs.h" #include int @@ -11062,16 +11064,16 @@ } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:11065: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:11067: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:11068: \$? = $ac_status" >&5 + echo "$as_me:11070: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:11071: \"$ac_try\"") >&5 + { (eval echo "$as_me:11073: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:11074: \$? = $ac_status" >&5 + echo "$as_me:11076: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_gnu_source=no else @@ -11178,7 +11180,7 @@ fi cat >"conftest.$ac_ext" <<_ACEOF -#line 11181 "configure" +#line 11183 "configure" #include "confdefs.h" #include int @@ -11193,16 +11195,16 @@ } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:11196: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:11198: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:11199: \$? = $ac_status" >&5 + echo "$as_me:11201: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:11202: \"$ac_try\"") >&5 + { (eval echo "$as_me:11204: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:11205: \$? = $ac_status" >&5 + echo "$as_me:11207: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_gnu_source=no else @@ -11217,12 +11219,12 @@ rm -f "conftest.$ac_objext" "conftest.$ac_ext" fi -echo "$as_me:11220: result: $cf_cv_gnu_source" >&5 +echo "$as_me:11222: result: $cf_cv_gnu_source" >&5 echo "${ECHO_T}$cf_cv_gnu_source" >&6 if test "$cf_cv_gnu_source" = yes then - echo "$as_me:11225: checking if we should also define _DEFAULT_SOURCE" >&5 + echo "$as_me:11227: checking if we should also define _DEFAULT_SOURCE" >&5 echo $ECHO_N "checking if we should also define _DEFAULT_SOURCE... $ECHO_C" >&6 if test "${cf_cv_default_source+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -11232,7 +11234,7 @@ CPPFLAGS="${CPPFLAGS}-D_GNU_SOURCE" cat >"conftest.$ac_ext" <<_ACEOF -#line 11235 "configure" +#line 11237 "configure" #include "confdefs.h" #include int @@ -11247,16 +11249,16 @@ } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:11250: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:11252: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:11253: \$? = $ac_status" >&5 + echo "$as_me:11255: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:11256: \"$ac_try\"") >&5 + { (eval echo "$as_me:11258: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:11259: \$? = $ac_status" >&5 + echo "$as_me:11261: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_default_source=no else @@ -11267,7 +11269,7 @@ rm -f "conftest.$ac_objext" "conftest.$ac_ext" fi -echo "$as_me:11270: result: $cf_cv_default_source" >&5 +echo "$as_me:11272: result: $cf_cv_default_source" >&5 echo "${ECHO_T}$cf_cv_default_source" >&6 if test "$cf_cv_default_source" = yes then @@ -11307,16 +11309,16 @@ sed -e 's/-[UD]'"_POSIX_C_SOURCE"'\(=[^ ]*\)\?[ ]/ /g' \ -e 's/-[UD]'"_POSIX_C_SOURCE"'\(=[^ ]*\)\?$//g'` -echo "$as_me:11310: checking if we should define _POSIX_C_SOURCE" >&5 +echo "$as_me:11312: checking if we should define _POSIX_C_SOURCE" >&5 echo $ECHO_N "checking if we should define _POSIX_C_SOURCE... $ECHO_C" >&6 if test "${cf_cv_posix_c_source+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else -echo "${as_me:-configure}:11316: testing if the symbol is already defined go no further ..." 1>&5 +echo "${as_me:-configure}:11318: testing if the symbol is already defined go no further ..." 1>&5 cat >"conftest.$ac_ext" <<_ACEOF -#line 11319 "configure" +#line 11321 "configure" #include "confdefs.h" #include int @@ -11331,16 +11333,16 @@ } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:11334: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:11336: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:11337: \$? = $ac_status" >&5 + echo "$as_me:11339: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:11340: \"$ac_try\"") >&5 + { (eval echo "$as_me:11342: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:11343: \$? = $ac_status" >&5 + echo "$as_me:11345: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_posix_c_source=no else @@ -11361,7 +11363,7 @@ esac if test "$cf_want_posix_source" = yes ; then cat >"conftest.$ac_ext" <<_ACEOF -#line 11364 "configure" +#line 11366 "configure" #include "confdefs.h" #include int @@ -11376,16 +11378,16 @@ } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:11379: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:11381: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:11382: \$? = $ac_status" >&5 + echo "$as_me:11384: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:11385: \"$ac_try\"") >&5 + { (eval echo "$as_me:11387: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:11388: \$? = $ac_status" >&5 + echo "$as_me:11390: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then : else @@ -11396,7 +11398,7 @@ rm -f "conftest.$ac_objext" "conftest.$ac_ext" fi -echo "${as_me:-configure}:11399: testing ifdef from value $cf_POSIX_C_SOURCE ..." 1>&5 +echo "${as_me:-configure}:11401: testing ifdef from value $cf_POSIX_C_SOURCE ..." 1>&5 CFLAGS="$cf_trim_CFLAGS" CPPFLAGS="$cf_trim_CPPFLAGS" @@ -11404,10 +11406,10 @@ test -n "$CPPFLAGS" && CPPFLAGS="$CPPFLAGS " CPPFLAGS="${CPPFLAGS}$cf_cv_posix_c_source" -echo "${as_me:-configure}:11407: testing if the second compile does not leave our definition intact error ..." 1>&5 +echo "${as_me:-configure}:11409: testing if the second compile does not leave our definition intact error ..." 1>&5 cat >"conftest.$ac_ext" <<_ACEOF -#line 11410 "configure" +#line 11412 "configure" #include "confdefs.h" #include int @@ -11422,16 +11424,16 @@ } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:11425: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:11427: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:11428: \$? = $ac_status" >&5 + echo "$as_me:11430: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:11431: \"$ac_try\"") >&5 + { (eval echo "$as_me:11433: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:11434: \$? = $ac_status" >&5 + echo "$as_me:11436: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then : else @@ -11447,7 +11449,7 @@ rm -f "conftest.$ac_objext" "conftest.$ac_ext" fi -echo "$as_me:11450: result: $cf_cv_posix_c_source" >&5 +echo "$as_me:11452: result: $cf_cv_posix_c_source" >&5 echo "${ECHO_T}$cf_cv_posix_c_source" >&6 if test "$cf_cv_posix_c_source" != no ; then @@ -11564,7 +11566,7 @@ # OpenBSD 6.x has broken locale support, both compile-time and runtime. # see https://www.mail-archive.com/bugs@openbsd.org/msg13200.html # Abusing the conformance level is a workaround. - { echo "$as_me:11567: WARNING: this system does not provide usable locale support" >&5 + { echo "$as_me:11569: WARNING: this system does not provide usable locale support" >&5 echo "$as_me: WARNING: this system does not provide usable locale support" >&2;} cf_xopen_source="-D_BSD_SOURCE" cf_XOPEN_SOURCE=700 @@ -11596,14 +11598,14 @@ ;; (*) -echo "$as_me:11599: checking if we should define _XOPEN_SOURCE" >&5 +echo "$as_me:11601: checking if we should define _XOPEN_SOURCE" >&5 echo $ECHO_N "checking if we should define _XOPEN_SOURCE... $ECHO_C" >&6 if test "${cf_cv_xopen_source+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >"conftest.$ac_ext" <<_ACEOF -#line 11606 "configure" +#line 11608 "configure" #include "confdefs.h" $ac_includes_default @@ -11621,16 +11623,16 @@ } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:11624: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:11626: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:11627: \$? = $ac_status" >&5 + echo "$as_me:11629: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:11630: \"$ac_try\"") >&5 + { (eval echo "$as_me:11632: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:11633: \$? = $ac_status" >&5 + echo "$as_me:11635: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_xopen_source=no else @@ -11642,7 +11644,7 @@ CPPFLAGS="${CPPFLAGS}-D_XOPEN_SOURCE=$cf_XOPEN_SOURCE" cat >"conftest.$ac_ext" <<_ACEOF -#line 11645 "configure" +#line 11647 "configure" #include "confdefs.h" $ac_includes_default @@ -11660,16 +11662,16 @@ } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:11663: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:11665: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:11666: \$? = $ac_status" >&5 + echo "$as_me:11668: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:11669: \"$ac_try\"") >&5 + { (eval echo "$as_me:11671: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:11672: \$? = $ac_status" >&5 + echo "$as_me:11674: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_xopen_source=no else @@ -11684,7 +11686,7 @@ rm -f "conftest.$ac_objext" "conftest.$ac_ext" fi -echo "$as_me:11687: result: $cf_cv_xopen_source" >&5 +echo "$as_me:11689: result: $cf_cv_xopen_source" >&5 echo "${ECHO_T}$cf_cv_xopen_source" >&6 if test "$cf_cv_xopen_source" != no ; then @@ -11844,16 +11846,16 @@ sed -e 's/-[UD]'"_POSIX_C_SOURCE"'\(=[^ ]*\)\?[ ]/ /g' \ -e 's/-[UD]'"_POSIX_C_SOURCE"'\(=[^ ]*\)\?$//g'` -echo "$as_me:11847: checking if we should define _POSIX_C_SOURCE" >&5 +echo "$as_me:11849: checking if we should define _POSIX_C_SOURCE" >&5 echo $ECHO_N "checking if we should define _POSIX_C_SOURCE... $ECHO_C" >&6 if test "${cf_cv_posix_c_source+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else -echo "${as_me:-configure}:11853: testing if the symbol is already defined go no further ..." 1>&5 +echo "${as_me:-configure}:11855: testing if the symbol is already defined go no further ..." 1>&5 cat >"conftest.$ac_ext" <<_ACEOF -#line 11856 "configure" +#line 11858 "configure" #include "confdefs.h" #include int @@ -11868,16 +11870,16 @@ } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:11871: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:11873: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:11874: \$? = $ac_status" >&5 + echo "$as_me:11876: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:11877: \"$ac_try\"") >&5 + { (eval echo "$as_me:11879: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:11880: \$? = $ac_status" >&5 + echo "$as_me:11882: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_posix_c_source=no else @@ -11898,7 +11900,7 @@ esac if test "$cf_want_posix_source" = yes ; then cat >"conftest.$ac_ext" <<_ACEOF -#line 11901 "configure" +#line 11903 "configure" #include "confdefs.h" #include int @@ -11913,16 +11915,16 @@ } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:11916: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:11918: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:11919: \$? = $ac_status" >&5 + echo "$as_me:11921: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:11922: \"$ac_try\"") >&5 + { (eval echo "$as_me:11924: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:11925: \$? = $ac_status" >&5 + echo "$as_me:11927: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then : else @@ -11933,7 +11935,7 @@ rm -f "conftest.$ac_objext" "conftest.$ac_ext" fi -echo "${as_me:-configure}:11936: testing ifdef from value $cf_POSIX_C_SOURCE ..." 1>&5 +echo "${as_me:-configure}:11938: testing ifdef from value $cf_POSIX_C_SOURCE ..." 1>&5 CFLAGS="$cf_trim_CFLAGS" CPPFLAGS="$cf_trim_CPPFLAGS" @@ -11941,10 +11943,10 @@ test -n "$CPPFLAGS" && CPPFLAGS="$CPPFLAGS " CPPFLAGS="${CPPFLAGS}$cf_cv_posix_c_source" -echo "${as_me:-configure}:11944: testing if the second compile does not leave our definition intact error ..." 1>&5 +echo "${as_me:-configure}:11946: testing if the second compile does not leave our definition intact error ..." 1>&5 cat >"conftest.$ac_ext" <<_ACEOF -#line 11947 "configure" +#line 11949 "configure" #include "confdefs.h" #include int @@ -11959,16 +11961,16 @@ } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:11962: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:11964: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:11965: \$? = $ac_status" >&5 + echo "$as_me:11967: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:11968: \"$ac_try\"") >&5 + { (eval echo "$as_me:11970: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:11971: \$? = $ac_status" >&5 + echo "$as_me:11973: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then : else @@ -11984,7 +11986,7 @@ rm -f "conftest.$ac_objext" "conftest.$ac_ext" fi -echo "$as_me:11987: result: $cf_cv_posix_c_source" >&5 +echo "$as_me:11989: result: $cf_cv_posix_c_source" >&5 echo "${ECHO_T}$cf_cv_posix_c_source" >&6 if test "$cf_cv_posix_c_source" != no ; then @@ -12097,10 +12099,10 @@ if test "$cf_cv_xopen_source" = no ; then test -n "$verbose" && echo " checking if _POSIX_C_SOURCE interferes with _XOPEN_SOURCE" 1>&6 -echo "${as_me:-configure}:12100: testing checking if _POSIX_C_SOURCE interferes with _XOPEN_SOURCE ..." 1>&5 +echo "${as_me:-configure}:12102: testing checking if _POSIX_C_SOURCE interferes with _XOPEN_SOURCE ..." 1>&5 cat >"conftest.$ac_ext" <<_ACEOF -#line 12103 "configure" +#line 12105 "configure" #include "confdefs.h" $ac_includes_default @@ -12118,23 +12120,23 @@ } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:12121: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:12123: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:12124: \$? = $ac_status" >&5 + echo "$as_me:12126: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:12127: \"$ac_try\"") >&5 + { (eval echo "$as_me:12129: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:12130: \$? = $ac_status" >&5 + echo "$as_me:12132: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then : else echo "$as_me: failed program was:" >&5 cat "conftest.$ac_ext" >&5 - { echo "$as_me:12137: WARNING: _POSIX_C_SOURCE definition is not usable" >&5 + { echo "$as_me:12139: WARNING: _POSIX_C_SOURCE definition is not usable" >&5 echo "$as_me: WARNING: _POSIX_C_SOURCE definition is not usable" >&2;} CPPFLAGS="$cf_save_xopen_cppflags" fi @@ -12157,7 +12159,7 @@ test "$CFLAGS" != "$cf_old_cflag" || break test -n "$verbose" && echo " removing old option $cf_add_cflags from CFLAGS" 1>&6 -echo "${as_me:-configure}:12160: testing removing old option $cf_add_cflags from CFLAGS ..." 1>&5 +echo "${as_me:-configure}:12162: testing removing old option $cf_add_cflags from CFLAGS ..." 1>&5 CFLAGS="$cf_old_cflag" done @@ -12169,7 +12171,7 @@ test "$CPPFLAGS" != "$cf_old_cflag" || break test -n "$verbose" && echo " removing old option $cf_add_cflags from CPPFLAGS" 1>&6 -echo "${as_me:-configure}:12172: testing removing old option $cf_add_cflags from CPPFLAGS ..." 1>&5 +echo "${as_me:-configure}:12174: testing removing old option $cf_add_cflags from CPPFLAGS ..." 1>&5 CPPFLAGS="$cf_old_cflag" done @@ -12257,7 +12259,7 @@ if test -n "$cf_new_cflags" ; then test -n "$verbose" && echo " add to \$CFLAGS $cf_new_cflags" 1>&6 -echo "${as_me:-configure}:12260: testing add to \$CFLAGS $cf_new_cflags ..." 1>&5 +echo "${as_me:-configure}:12262: testing add to \$CFLAGS $cf_new_cflags ..." 1>&5 test -n "$CFLAGS" && CFLAGS="$CFLAGS " CFLAGS="${CFLAGS}$cf_new_cflags" @@ -12267,7 +12269,7 @@ if test -n "$cf_new_cppflags" ; then test -n "$verbose" && echo " add to \$CPPFLAGS $cf_new_cppflags" 1>&6 -echo "${as_me:-configure}:12270: testing add to \$CPPFLAGS $cf_new_cppflags ..." 1>&5 +echo "${as_me:-configure}:12272: testing add to \$CPPFLAGS $cf_new_cppflags ..." 1>&5 test -n "$CPPFLAGS" && CPPFLAGS="$CPPFLAGS " CPPFLAGS="${CPPFLAGS}$cf_new_cppflags" @@ -12277,7 +12279,7 @@ if test -n "$cf_new_extra_cppflags" ; then test -n "$verbose" && echo " add to \$EXTRA_CPPFLAGS $cf_new_extra_cppflags" 1>&6 -echo "${as_me:-configure}:12280: testing add to \$EXTRA_CPPFLAGS $cf_new_extra_cppflags ..." 1>&5 +echo "${as_me:-configure}:12282: testing add to \$EXTRA_CPPFLAGS $cf_new_extra_cppflags ..." 1>&5 test -n "$EXTRA_CPPFLAGS" && EXTRA_CPPFLAGS="$EXTRA_CPPFLAGS " EXTRA_CPPFLAGS="${EXTRA_CPPFLAGS}$cf_new_extra_cppflags" @@ -12289,10 +12291,10 @@ fi if test -n "$cf_XOPEN_SOURCE" && test -z "$cf_cv_xopen_source" ; then - echo "$as_me:12292: checking if _XOPEN_SOURCE really is set" >&5 + echo "$as_me:12294: checking if _XOPEN_SOURCE really is set" >&5 echo $ECHO_N "checking if _XOPEN_SOURCE really is set... $ECHO_C" >&6 cat >"conftest.$ac_ext" <<_ACEOF -#line 12295 "configure" +#line 12297 "configure" #include "confdefs.h" #include int @@ -12307,16 +12309,16 @@ } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:12310: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:12312: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:12313: \$? = $ac_status" >&5 + echo "$as_me:12315: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:12316: \"$ac_try\"") >&5 + { (eval echo "$as_me:12318: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:12319: \$? = $ac_status" >&5 + echo "$as_me:12321: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_XOPEN_SOURCE_set=yes else @@ -12325,12 +12327,12 @@ cf_XOPEN_SOURCE_set=no fi rm -f "conftest.$ac_objext" "conftest.$ac_ext" - echo "$as_me:12328: result: $cf_XOPEN_SOURCE_set" >&5 + echo "$as_me:12330: result: $cf_XOPEN_SOURCE_set" >&5 echo "${ECHO_T}$cf_XOPEN_SOURCE_set" >&6 if test "$cf_XOPEN_SOURCE_set" = yes then cat >"conftest.$ac_ext" <<_ACEOF -#line 12333 "configure" +#line 12335 "configure" #include "confdefs.h" #include int @@ -12345,16 +12347,16 @@ } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:12348: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:12350: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:12351: \$? = $ac_status" >&5 + echo "$as_me:12353: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:12354: \"$ac_try\"") >&5 + { (eval echo "$as_me:12356: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:12357: \$? = $ac_status" >&5 + echo "$as_me:12359: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_XOPEN_SOURCE_set_ok=yes else @@ -12365,19 +12367,19 @@ rm -f "conftest.$ac_objext" "conftest.$ac_ext" if test "$cf_XOPEN_SOURCE_set_ok" = no then - { echo "$as_me:12368: WARNING: _XOPEN_SOURCE is lower than requested" >&5 + { echo "$as_me:12370: WARNING: _XOPEN_SOURCE is lower than requested" >&5 echo "$as_me: WARNING: _XOPEN_SOURCE is lower than requested" >&2;} fi else -echo "$as_me:12373: checking if we should define _XOPEN_SOURCE" >&5 +echo "$as_me:12375: checking if we should define _XOPEN_SOURCE" >&5 echo $ECHO_N "checking if we should define _XOPEN_SOURCE... $ECHO_C" >&6 if test "${cf_cv_xopen_source+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >"conftest.$ac_ext" <<_ACEOF -#line 12380 "configure" +#line 12382 "configure" #include "confdefs.h" $ac_includes_default @@ -12395,16 +12397,16 @@ } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:12398: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:12400: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:12401: \$? = $ac_status" >&5 + echo "$as_me:12403: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:12404: \"$ac_try\"") >&5 + { (eval echo "$as_me:12406: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:12407: \$? = $ac_status" >&5 + echo "$as_me:12409: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_xopen_source=no else @@ -12416,7 +12418,7 @@ CPPFLAGS="${CPPFLAGS}-D_XOPEN_SOURCE=$cf_XOPEN_SOURCE" cat >"conftest.$ac_ext" <<_ACEOF -#line 12419 "configure" +#line 12421 "configure" #include "confdefs.h" $ac_includes_default @@ -12434,16 +12436,16 @@ } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:12437: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:12439: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:12440: \$? = $ac_status" >&5 + echo "$as_me:12442: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:12443: \"$ac_try\"") >&5 + { (eval echo "$as_me:12445: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:12446: \$? = $ac_status" >&5 + echo "$as_me:12448: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_xopen_source=no else @@ -12458,7 +12460,7 @@ rm -f "conftest.$ac_objext" "conftest.$ac_ext" fi -echo "$as_me:12461: result: $cf_cv_xopen_source" >&5 +echo "$as_me:12463: result: $cf_cv_xopen_source" >&5 echo "${ECHO_T}$cf_cv_xopen_source" >&6 if test "$cf_cv_xopen_source" != no ; then @@ -12609,14 +12611,14 @@ # Work around breakage on OS X -echo "$as_me:12612: checking if SIGWINCH is defined" >&5 +echo "$as_me:12614: checking if SIGWINCH is defined" >&5 echo $ECHO_N "checking if SIGWINCH is defined... $ECHO_C" >&6 if test "${cf_cv_define_sigwinch+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >"conftest.$ac_ext" <<_ACEOF -#line 12619 "configure" +#line 12621 "configure" #include "confdefs.h" #include @@ -12631,23 +12633,23 @@ } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:12634: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:12636: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:12637: \$? = $ac_status" >&5 + echo "$as_me:12639: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:12640: \"$ac_try\"") >&5 + { (eval echo "$as_me:12642: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:12643: \$? = $ac_status" >&5 + echo "$as_me:12645: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_define_sigwinch=yes else echo "$as_me: failed program was:" >&5 cat "conftest.$ac_ext" >&5 cat >"conftest.$ac_ext" <<_ACEOF -#line 12650 "configure" +#line 12652 "configure" #include "confdefs.h" #undef _XOPEN_SOURCE @@ -12665,16 +12667,16 @@ } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:12668: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:12670: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:12671: \$? = $ac_status" >&5 + echo "$as_me:12673: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:12674: \"$ac_try\"") >&5 + { (eval echo "$as_me:12676: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:12677: \$? = $ac_status" >&5 + echo "$as_me:12679: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_define_sigwinch=maybe else @@ -12688,11 +12690,11 @@ rm -f "conftest.$ac_objext" "conftest.$ac_ext" fi -echo "$as_me:12691: result: $cf_cv_define_sigwinch" >&5 +echo "$as_me:12693: result: $cf_cv_define_sigwinch" >&5 echo "${ECHO_T}$cf_cv_define_sigwinch" >&6 if test "$cf_cv_define_sigwinch" = maybe ; then -echo "$as_me:12695: checking for actual SIGWINCH definition" >&5 +echo "$as_me:12697: checking for actual SIGWINCH definition" >&5 echo $ECHO_N "checking for actual SIGWINCH definition... $ECHO_C" >&6 if test "${cf_cv_fixup_sigwinch+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -12703,7 +12705,7 @@ while test "$cf_sigwinch" != 1 do cat >"conftest.$ac_ext" <<_ACEOF -#line 12706 "configure" +#line 12708 "configure" #include "confdefs.h" #undef _XOPEN_SOURCE @@ -12725,16 +12727,16 @@ } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:12728: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:12730: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:12731: \$? = $ac_status" >&5 + echo "$as_me:12733: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:12734: \"$ac_try\"") >&5 + { (eval echo "$as_me:12736: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:12737: \$? = $ac_status" >&5 + echo "$as_me:12739: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_fixup_sigwinch=$cf_sigwinch break @@ -12748,7 +12750,7 @@ done fi -echo "$as_me:12751: result: $cf_cv_fixup_sigwinch" >&5 +echo "$as_me:12753: result: $cf_cv_fixup_sigwinch" >&5 echo "${ECHO_T}$cf_cv_fixup_sigwinch" >&6 if test "$cf_cv_fixup_sigwinch" != unknown ; then @@ -12758,13 +12760,13 @@ # Checks for CODESET support. -echo "$as_me:12761: checking for nl_langinfo and CODESET" >&5 +echo "$as_me:12763: checking for nl_langinfo and CODESET" >&5 echo $ECHO_N "checking for nl_langinfo and CODESET... $ECHO_C" >&6 if test "${am_cv_langinfo_codeset+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >"conftest.$ac_ext" <<_ACEOF -#line 12767 "configure" +#line 12769 "configure" #include "confdefs.h" $ac_includes_default @@ -12778,16 +12780,16 @@ } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:12781: \"$ac_link\"") >&5 +if { (eval echo "$as_me:12783: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:12784: \$? = $ac_status" >&5 + echo "$as_me:12786: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:12787: \"$ac_try\"") >&5 + { (eval echo "$as_me:12789: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:12790: \$? = $ac_status" >&5 + echo "$as_me:12792: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then am_cv_langinfo_codeset=yes else @@ -12798,7 +12800,7 @@ rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:12801: result: $am_cv_langinfo_codeset" >&5 +echo "$as_me:12803: result: $am_cv_langinfo_codeset" >&5 echo "${ECHO_T}$am_cv_langinfo_codeset" >&6 if test "$am_cv_langinfo_codeset" = yes; then @@ -12812,7 +12814,7 @@ NCURSES_OK_WCHAR_T= NCURSES_OK_WINT_T= -echo "$as_me:12815: checking if you want wide-character code" >&5 +echo "$as_me:12817: checking if you want wide-character code" >&5 echo $ECHO_N "checking if you want wide-character code... $ECHO_C" >&6 # Check whether --enable-widec or --disable-widec was given. @@ -12822,7 +12824,7 @@ else with_widec=$cf_dft_widec fi; -echo "$as_me:12825: result: $with_widec" >&5 +echo "$as_me:12827: result: $with_widec" >&5 echo "${ECHO_T}$with_widec" >&6 NCURSES_WCWIDTH_GRAPHICS=1 @@ -12844,7 +12846,7 @@ (*_XOPEN_SOURCE=*) ;; (*) - { echo "$as_me:12847: WARNING: _XOPEN_SOURCE feature test macro appears to be predefined" >&5 + { echo "$as_me:12849: WARNING: _XOPEN_SOURCE feature test macro appears to be predefined" >&5 echo "$as_me: WARNING: _XOPEN_SOURCE feature test macro appears to be predefined" >&2;} # CPPFLAGS="$CPPFLAGS -DNCURSES_WIDECHAR" CPPFLAGS_after_XOPEN="$CPPFLAGS_after_XOPEN -DNCURSES_WIDECHAR" @@ -12857,23 +12859,23 @@ do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` -echo "$as_me:12860: checking for $ac_header" >&5 +echo "$as_me:12862: 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 12866 "configure" +#line 12868 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:12870: \"$ac_cpp "conftest.$ac_ext"\"") >&5 +if { (eval echo "$as_me:12872: \"$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:12876: \$? = $ac_status" >&5 + echo "$as_me:12878: \$? = $ac_status" >&5 (exit "$ac_status"); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -12892,7 +12894,7 @@ fi rm -f conftest.err "conftest.$ac_ext" fi -echo "$as_me:12895: result: `eval echo '${'"$as_ac_Header"'}'`" >&5 +echo "$as_me:12897: 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:12907: checking if wchar.h can be used as is" >&5 echo $ECHO_N "checking if wchar.h can be used as is... $ECHO_C" >&6 if test "${cf_cv_wchar_h_okay+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >"conftest.$ac_ext" <<_ACEOF -#line 12912 "configure" +#line 12914 "configure" #include "confdefs.h" $ac_includes_default @@ -12931,16 +12933,16 @@ } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:12934: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:12936: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:12937: \$? = $ac_status" >&5 + echo "$as_me:12939: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:12940: \"$ac_try\"") >&5 + { (eval echo "$as_me:12942: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:12943: \$? = $ac_status" >&5 + echo "$as_me:12945: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_wchar_h_okay=yes else @@ -12950,16 +12952,16 @@ fi rm -f "conftest.$ac_objext" "conftest.$ac_ext" fi -echo "$as_me:12953: result: $cf_cv_wchar_h_okay" >&5 +echo "$as_me:12955: result: $cf_cv_wchar_h_okay" >&5 echo "${ECHO_T}$cf_cv_wchar_h_okay" >&6 if test "$cf_cv_wchar_h_okay" = no then -echo "$as_me:12959: checking if we must define _XOPEN_SOURCE_EXTENDED" >&5 +echo "$as_me:12961: checking if we must define _XOPEN_SOURCE_EXTENDED" >&5 echo $ECHO_N "checking if we must define _XOPEN_SOURCE_EXTENDED... $ECHO_C" >&6 cat >"conftest.$ac_ext" <<_ACEOF -#line 12962 "configure" +#line 12964 "configure" #include "confdefs.h" #include @@ -12975,16 +12977,16 @@ } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:12978: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:12980: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:12981: \$? = $ac_status" >&5 + echo "$as_me:12983: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:12984: \"$ac_try\"") >&5 + { (eval echo "$as_me:12986: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:12987: \$? = $ac_status" >&5 + echo "$as_me:12989: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_result=no else @@ -12993,16 +12995,16 @@ cf_result=yes fi rm -f "conftest.$ac_objext" "conftest.$ac_ext" -echo "$as_me:12996: result: $cf_result" >&5 +echo "$as_me:12998: result: $cf_result" >&5 echo "${ECHO_T}$cf_result" >&6 if test "$cf_result" = yes ; then CPPFLAGS="$CPPFLAGS -D_XOPEN_SOURCE_EXTENDED" elif test "x" != "x" ; then - echo "$as_me:13002: checking checking for compatible value versus " >&5 + echo "$as_me:13004: checking checking for compatible value versus " >&5 echo $ECHO_N "checking checking for compatible value versus ... $ECHO_C" >&6 cat >"conftest.$ac_ext" <<_ACEOF -#line 13005 "configure" +#line 13007 "configure" #include "confdefs.h" #include @@ -13018,16 +13020,16 @@ } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:13021: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:13023: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:13024: \$? = $ac_status" >&5 + echo "$as_me:13026: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:13027: \"$ac_try\"") >&5 + { (eval echo "$as_me:13029: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:13030: \$? = $ac_status" >&5 + echo "$as_me:13032: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_result=yes else @@ -13036,7 +13038,7 @@ cf_result=no fi rm -f "conftest.$ac_objext" "conftest.$ac_ext" - echo "$as_me:13039: result: $cf_result" >&5 + echo "$as_me:13041: result: $cf_result" >&5 echo "${ECHO_T}$cf_result" >&6 if test "$cf_result" = no ; then # perhaps we can override it - try... @@ -13046,7 +13048,7 @@ fi -echo "$as_me:13049: checking if wcwidth agrees graphics are single-width" >&5 +echo "$as_me:13051: checking if wcwidth agrees graphics are single-width" >&5 echo $ECHO_N "checking if wcwidth agrees graphics are single-width... $ECHO_C" >&6 if test "${cf_cv_wcwidth_graphics+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -13117,7 +13119,7 @@ cf_cv_wcwidth_graphics=unknown else cat >"conftest.$ac_ext" <<_ACEOF -#line 13120 "configure" +#line 13122 "configure" #include "confdefs.h" $ac_includes_default @@ -13162,15 +13164,15 @@ _ACEOF rm -f "conftest$ac_exeext" -if { (eval echo "$as_me:13165: \"$ac_link\"") >&5 +if { (eval echo "$as_me:13167: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:13168: \$? = $ac_status" >&5 + echo "$as_me:13170: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='"./conftest$ac_exeext"' - { (eval echo "$as_me:13170: \"$ac_try\"") >&5 + { (eval echo "$as_me:13172: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:13173: \$? = $ac_status" >&5 + echo "$as_me:13175: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_wcwidth_graphics=yes else @@ -13183,7 +13185,7 @@ fi fi -echo "$as_me:13186: result: $cf_cv_wcwidth_graphics" >&5 +echo "$as_me:13188: result: $cf_cv_wcwidth_graphics" >&5 echo "${ECHO_T}$cf_cv_wcwidth_graphics" >&6 test "$cf_cv_wcwidth_graphics" = no && NCURSES_WCWIDTH_GRAPHICS=0 @@ -13194,13 +13196,13 @@ for ac_func in putwc btowc wctob wmemchr mbtowc wctomb mblen mbrlen mbrtowc wcsrtombs mbsrtowcs wcstombs mbstowcs do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` -echo "$as_me:13197: checking for $ac_func" >&5 +echo "$as_me:13199: 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 13203 "configure" +#line 13205 "configure" #include "confdefs.h" #define $ac_func autoconf_temporary #include /* least-intrusive standard header which defines gcc2 __stub macros */ @@ -13231,16 +13233,16 @@ } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:13234: \"$ac_link\"") >&5 +if { (eval echo "$as_me:13236: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:13237: \$? = $ac_status" >&5 + echo "$as_me:13239: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:13240: \"$ac_try\"") >&5 + { (eval echo "$as_me:13242: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:13243: \$? = $ac_status" >&5 + echo "$as_me:13245: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then eval "$as_ac_var=yes" else @@ -13250,7 +13252,7 @@ fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:13253: result: `eval echo '${'"$as_ac_var"'}'`" >&5 +echo "$as_me:13255: 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:13270: 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 13274 "configure" +#line 13276 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:13278: \"$ac_cpp "conftest.$ac_ext"\"") >&5 +if { (eval echo "$as_me:13280: \"$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:13284: \$? = $ac_status" >&5 + echo "$as_me:13286: \$? = $ac_status" >&5 (exit "$ac_status"); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -13300,7 +13302,7 @@ fi rm -f conftest.err "conftest.$ac_ext" fi -echo "$as_me:13303: result: `eval echo '${'"$as_ac_Header"'}'`" >&5 +echo "$as_me:13305: 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:13315: checking for multibyte character support" >&5 echo $ECHO_N "checking for multibyte character support... $ECHO_C" >&6 if test "${cf_cv_utf8_lib+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -13318,7 +13320,7 @@ cf_save_LIBS="$LIBS" cat >"conftest.$ac_ext" <<_ACEOF -#line 13321 "configure" +#line 13323 "configure" #include "confdefs.h" $ac_includes_default @@ -13335,16 +13337,16 @@ } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:13338: \"$ac_link\"") >&5 +if { (eval echo "$as_me:13340: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:13341: \$? = $ac_status" >&5 + echo "$as_me:13343: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:13344: \"$ac_try\"") >&5 + { (eval echo "$as_me:13346: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:13347: \$? = $ac_status" >&5 + echo "$as_me:13349: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_utf8_lib=yes else @@ -13356,12 +13358,12 @@ cf_cv_header_path_utf8= cf_cv_library_path_utf8= -echo "${as_me:-configure}:13359: testing Starting FIND_LINKAGE(utf8,) ..." 1>&5 +echo "${as_me:-configure}:13361: testing Starting FIND_LINKAGE(utf8,) ..." 1>&5 cf_save_LIBS="$LIBS" cat >"conftest.$ac_ext" <<_ACEOF -#line 13364 "configure" +#line 13366 "configure" #include "confdefs.h" #include @@ -13374,16 +13376,16 @@ } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:13377: \"$ac_link\"") >&5 +if { (eval echo "$as_me:13379: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:13380: \$? = $ac_status" >&5 + echo "$as_me:13382: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:13383: \"$ac_try\"") >&5 + { (eval echo "$as_me:13385: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:13386: \$? = $ac_status" >&5 + echo "$as_me:13388: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_find_linkage_utf8=yes @@ -13397,7 +13399,7 @@ LIBS="-lutf8 $cf_save_LIBS" cat >"conftest.$ac_ext" <<_ACEOF -#line 13400 "configure" +#line 13402 "configure" #include "confdefs.h" #include @@ -13410,16 +13412,16 @@ } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:13413: \"$ac_link\"") >&5 +if { (eval echo "$as_me:13415: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:13416: \$? = $ac_status" >&5 + echo "$as_me:13418: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:13419: \"$ac_try\"") >&5 + { (eval echo "$as_me:13421: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:13422: \$? = $ac_status" >&5 + echo "$as_me:13424: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_find_linkage_utf8=yes @@ -13436,9 +13438,9 @@ test -n "$verbose" && echo " find linkage for utf8 library" 1>&6 -echo "${as_me:-configure}:13439: testing find linkage for utf8 library ..." 1>&5 +echo "${as_me:-configure}:13441: testing find linkage for utf8 library ..." 1>&5 -echo "${as_me:-configure}:13441: testing Searching for headers in FIND_LINKAGE(utf8,) ..." 1>&5 +echo "${as_me:-configure}:13443: testing Searching for headers in FIND_LINKAGE(utf8,) ..." 1>&5 cf_save_CPPFLAGS="$CPPFLAGS" cf_test_CPPFLAGS="$CPPFLAGS" @@ -13529,7 +13531,7 @@ if test -d "$cf_cv_header_path_utf8" ; then test -n "$verbose" && echo " ... testing $cf_cv_header_path_utf8" 1>&6 -echo "${as_me:-configure}:13532: testing ... testing $cf_cv_header_path_utf8 ..." 1>&5 +echo "${as_me:-configure}:13534: testing ... testing $cf_cv_header_path_utf8 ..." 1>&5 CPPFLAGS="$cf_save_CPPFLAGS" @@ -13537,7 +13539,7 @@ CPPFLAGS="${CPPFLAGS}-I$cf_cv_header_path_utf8" cat >"conftest.$ac_ext" <<_ACEOF -#line 13540 "configure" +#line 13542 "configure" #include "confdefs.h" #include @@ -13550,21 +13552,21 @@ } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:13553: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:13555: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:13556: \$? = $ac_status" >&5 + echo "$as_me:13558: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:13559: \"$ac_try\"") >&5 + { (eval echo "$as_me:13561: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:13562: \$? = $ac_status" >&5 + echo "$as_me:13564: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then test -n "$verbose" && echo " ... found utf8 headers in $cf_cv_header_path_utf8" 1>&6 -echo "${as_me:-configure}:13567: testing ... found utf8 headers in $cf_cv_header_path_utf8 ..." 1>&5 +echo "${as_me:-configure}:13569: testing ... found utf8 headers in $cf_cv_header_path_utf8 ..." 1>&5 cf_cv_find_linkage_utf8=maybe cf_test_CPPFLAGS="$CPPFLAGS" @@ -13582,7 +13584,7 @@ if test "$cf_cv_find_linkage_utf8" = maybe ; then -echo "${as_me:-configure}:13585: testing Searching for utf8 library in FIND_LINKAGE(utf8,) ..." 1>&5 +echo "${as_me:-configure}:13587: testing Searching for utf8 library in FIND_LINKAGE(utf8,) ..." 1>&5 cf_save_LIBS="$LIBS" cf_save_LDFLAGS="$LDFLAGS" @@ -13657,13 +13659,13 @@ if test -d "$cf_cv_library_path_utf8" ; then test -n "$verbose" && echo " ... testing $cf_cv_library_path_utf8" 1>&6 -echo "${as_me:-configure}:13660: testing ... testing $cf_cv_library_path_utf8 ..." 1>&5 +echo "${as_me:-configure}:13662: testing ... testing $cf_cv_library_path_utf8 ..." 1>&5 CPPFLAGS="$cf_test_CPPFLAGS" LIBS="-lutf8 $cf_save_LIBS" LDFLAGS="$cf_save_LDFLAGS -L$cf_cv_library_path_utf8" cat >"conftest.$ac_ext" <<_ACEOF -#line 13666 "configure" +#line 13668 "configure" #include "confdefs.h" #include @@ -13676,21 +13678,21 @@ } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:13679: \"$ac_link\"") >&5 +if { (eval echo "$as_me:13681: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:13682: \$? = $ac_status" >&5 + echo "$as_me:13684: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:13685: \"$ac_try\"") >&5 + { (eval echo "$as_me:13687: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:13688: \$? = $ac_status" >&5 + echo "$as_me:13690: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then test -n "$verbose" && echo " ... found utf8 library in $cf_cv_library_path_utf8" 1>&6 -echo "${as_me:-configure}:13693: testing ... found utf8 library in $cf_cv_library_path_utf8 ..." 1>&5 +echo "${as_me:-configure}:13695: testing ... found utf8 library in $cf_cv_library_path_utf8 ..." 1>&5 cf_cv_find_linkage_utf8=yes cf_cv_library_file_utf8="-lutf8" @@ -13732,7 +13734,7 @@ fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:13735: result: $cf_cv_utf8_lib" >&5 +echo "$as_me:13737: result: $cf_cv_utf8_lib" >&5 echo "${ECHO_T}$cf_cv_utf8_lib" >&6 # HAVE_LIBUTF8_H is used by ncurses if curses.h is shared between @@ -13770,7 +13772,7 @@ CPPFLAGS="${CPPFLAGS}-I$cf_add_incdir" cat >"conftest.$ac_ext" <<_ACEOF -#line 13773 "configure" +#line 13775 "configure" #include "confdefs.h" #include int @@ -13782,16 +13784,16 @@ } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:13785: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:13787: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:13788: \$? = $ac_status" >&5 + echo "$as_me:13790: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:13791: \"$ac_try\"") >&5 + { (eval echo "$as_me:13793: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:13794: \$? = $ac_status" >&5 + echo "$as_me:13796: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then : else @@ -13808,7 +13810,7 @@ if test "$cf_have_incdir" = no ; then test -n "$verbose" && echo " adding $cf_add_incdir to include-path" 1>&6 -echo "${as_me:-configure}:13811: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:13813: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -13844,7 +13846,7 @@ if test "$cf_have_libdir" = no ; then test -n "$verbose" && echo " adding $cf_add_libdir to library-path" 1>&6 -echo "${as_me:-configure}:13847: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:13849: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -13876,14 +13878,14 @@ fi # This is needed on Tru64 5.0 to declare mbstate_t -echo "$as_me:13879: checking if we must include wchar.h to declare mbstate_t" >&5 +echo "$as_me:13881: checking if we must include wchar.h to declare mbstate_t" >&5 echo $ECHO_N "checking if we must include wchar.h to declare mbstate_t... $ECHO_C" >&6 if test "${cf_cv_mbstate_t+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >"conftest.$ac_ext" <<_ACEOF -#line 13886 "configure" +#line 13888 "configure" #include "confdefs.h" #include @@ -13901,23 +13903,23 @@ } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:13904: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:13906: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:13907: \$? = $ac_status" >&5 + echo "$as_me:13909: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:13910: \"$ac_try\"") >&5 + { (eval echo "$as_me:13912: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:13913: \$? = $ac_status" >&5 + echo "$as_me:13915: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_mbstate_t=no else echo "$as_me: failed program was:" >&5 cat "conftest.$ac_ext" >&5 cat >"conftest.$ac_ext" <<_ACEOF -#line 13920 "configure" +#line 13922 "configure" #include "confdefs.h" #include @@ -13936,16 +13938,16 @@ } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:13939: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:13941: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:13942: \$? = $ac_status" >&5 + echo "$as_me:13944: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:13945: \"$ac_try\"") >&5 + { (eval echo "$as_me:13947: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:13948: \$? = $ac_status" >&5 + echo "$as_me:13950: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_mbstate_t=yes else @@ -13957,7 +13959,7 @@ fi rm -f "conftest.$ac_objext" "conftest.$ac_ext" fi -echo "$as_me:13960: result: $cf_cv_mbstate_t" >&5 +echo "$as_me:13962: result: $cf_cv_mbstate_t" >&5 echo "${ECHO_T}$cf_cv_mbstate_t" >&6 if test "$cf_cv_mbstate_t" = yes ; then @@ -13975,14 +13977,14 @@ fi # This is needed on Tru64 5.0 to declare wchar_t -echo "$as_me:13978: checking if we must include wchar.h to declare wchar_t" >&5 +echo "$as_me:13980: checking if we must include wchar.h to declare wchar_t" >&5 echo $ECHO_N "checking if we must include wchar.h to declare wchar_t... $ECHO_C" >&6 if test "${cf_cv_wchar_t+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >"conftest.$ac_ext" <<_ACEOF -#line 13985 "configure" +#line 13987 "configure" #include "confdefs.h" #include @@ -14000,23 +14002,23 @@ } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:14003: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:14005: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:14006: \$? = $ac_status" >&5 + echo "$as_me:14008: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:14009: \"$ac_try\"") >&5 + { (eval echo "$as_me:14011: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:14012: \$? = $ac_status" >&5 + echo "$as_me:14014: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_wchar_t=no else echo "$as_me: failed program was:" >&5 cat "conftest.$ac_ext" >&5 cat >"conftest.$ac_ext" <<_ACEOF -#line 14019 "configure" +#line 14021 "configure" #include "confdefs.h" #include @@ -14035,16 +14037,16 @@ } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:14038: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:14040: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:14041: \$? = $ac_status" >&5 + echo "$as_me:14043: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:14044: \"$ac_try\"") >&5 + { (eval echo "$as_me:14046: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:14047: \$? = $ac_status" >&5 + echo "$as_me:14049: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_wchar_t=yes else @@ -14056,7 +14058,7 @@ fi rm -f "conftest.$ac_objext" "conftest.$ac_ext" fi -echo "$as_me:14059: result: $cf_cv_wchar_t" >&5 +echo "$as_me:14061: result: $cf_cv_wchar_t" >&5 echo "${ECHO_T}$cf_cv_wchar_t" >&6 if test "$cf_cv_wchar_t" = yes ; then @@ -14079,14 +14081,14 @@ fi # This is needed on Tru64 5.0 to declare wint_t -echo "$as_me:14082: checking if we must include wchar.h to declare wint_t" >&5 +echo "$as_me:14084: checking if we must include wchar.h to declare wint_t" >&5 echo $ECHO_N "checking if we must include wchar.h to declare wint_t... $ECHO_C" >&6 if test "${cf_cv_wint_t+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >"conftest.$ac_ext" <<_ACEOF -#line 14089 "configure" +#line 14091 "configure" #include "confdefs.h" #include @@ -14104,23 +14106,23 @@ } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:14107: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:14109: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:14110: \$? = $ac_status" >&5 + echo "$as_me:14112: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:14113: \"$ac_try\"") >&5 + { (eval echo "$as_me:14115: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:14116: \$? = $ac_status" >&5 + echo "$as_me:14118: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_wint_t=no else echo "$as_me: failed program was:" >&5 cat "conftest.$ac_ext" >&5 cat >"conftest.$ac_ext" <<_ACEOF -#line 14123 "configure" +#line 14125 "configure" #include "confdefs.h" #include @@ -14139,16 +14141,16 @@ } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:14142: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:14144: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:14145: \$? = $ac_status" >&5 + echo "$as_me:14147: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:14148: \"$ac_try\"") >&5 + { (eval echo "$as_me:14150: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:14151: \$? = $ac_status" >&5 + echo "$as_me:14153: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_wint_t=yes else @@ -14160,7 +14162,7 @@ fi rm -f "conftest.$ac_objext" "conftest.$ac_ext" fi -echo "$as_me:14163: result: $cf_cv_wint_t" >&5 +echo "$as_me:14165: result: $cf_cv_wint_t" >&5 echo "${ECHO_T}$cf_cv_wint_t" >&6 if test "$cf_cv_wint_t" = yes ; then @@ -14192,7 +14194,7 @@ fi ### use option --disable-lp64 to allow long chtype -echo "$as_me:14195: checking whether to enable _LP64 definition in curses.h" >&5 +echo "$as_me:14197: checking whether to enable _LP64 definition in curses.h" >&5 echo $ECHO_N "checking whether to enable _LP64 definition in curses.h... $ECHO_C" >&6 # Check whether --enable-lp64 or --disable-lp64 was given. @@ -14202,7 +14204,7 @@ else with_lp64=$cf_dft_with_lp64 fi; -echo "$as_me:14205: result: $with_lp64" >&5 +echo "$as_me:14207: result: $with_lp64" >&5 echo "${ECHO_T}$with_lp64" >&6 if test "x$with_lp64" = xyes ; then @@ -14218,7 +14220,7 @@ fi; if test "$enable_largefile" != no; then - echo "$as_me:14221: checking for special C compiler options needed for large files" >&5 + echo "$as_me:14223: checking for special C compiler options needed for large files" >&5 echo $ECHO_N "checking for special C compiler options needed for large files... $ECHO_C" >&6 if test "${ac_cv_sys_largefile_CC+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -14230,7 +14232,7 @@ # IRIX 6.2 and later do not support large files by default, # so use the C compiler's -n32 option if that helps. cat >"conftest.$ac_ext" <<_ACEOF -#line 14233 "configure" +#line 14235 "configure" #include "confdefs.h" #include /* Check that off_t can represent 2**63 - 1 correctly. @@ -14250,16 +14252,16 @@ } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:14253: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:14255: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:14256: \$? = $ac_status" >&5 + echo "$as_me:14258: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:14259: \"$ac_try\"") >&5 + { (eval echo "$as_me:14261: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:14262: \$? = $ac_status" >&5 + echo "$as_me:14264: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then break else @@ -14269,16 +14271,16 @@ rm -f "conftest.$ac_objext" CC="$CC -n32" rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:14272: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:14274: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:14275: \$? = $ac_status" >&5 + echo "$as_me:14277: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:14278: \"$ac_try\"") >&5 + { (eval echo "$as_me:14280: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:14281: \$? = $ac_status" >&5 + echo "$as_me:14283: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_sys_largefile_CC=' -n32'; break else @@ -14292,13 +14294,13 @@ rm -f "conftest.$ac_ext" fi fi -echo "$as_me:14295: result: $ac_cv_sys_largefile_CC" >&5 +echo "$as_me:14297: result: $ac_cv_sys_largefile_CC" >&5 echo "${ECHO_T}$ac_cv_sys_largefile_CC" >&6 if test "$ac_cv_sys_largefile_CC" != no; then CC=$CC$ac_cv_sys_largefile_CC fi - echo "$as_me:14301: checking for _FILE_OFFSET_BITS value needed for large files" >&5 + echo "$as_me:14303: checking for _FILE_OFFSET_BITS value needed for large files" >&5 echo $ECHO_N "checking for _FILE_OFFSET_BITS value needed for large files... $ECHO_C" >&6 if test "${ac_cv_sys_file_offset_bits+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -14306,7 +14308,7 @@ while :; do ac_cv_sys_file_offset_bits=no cat >"conftest.$ac_ext" <<_ACEOF -#line 14309 "configure" +#line 14311 "configure" #include "confdefs.h" #include /* Check that off_t can represent 2**63 - 1 correctly. @@ -14326,16 +14328,16 @@ } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:14329: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:14331: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:14332: \$? = $ac_status" >&5 + echo "$as_me:14334: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:14335: \"$ac_try\"") >&5 + { (eval echo "$as_me:14337: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:14338: \$? = $ac_status" >&5 + echo "$as_me:14340: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then break else @@ -14344,7 +14346,7 @@ fi rm -f "conftest.$ac_objext" "conftest.$ac_ext" cat >"conftest.$ac_ext" <<_ACEOF -#line 14347 "configure" +#line 14349 "configure" #include "confdefs.h" #define _FILE_OFFSET_BITS 64 #include @@ -14365,16 +14367,16 @@ } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:14368: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:14370: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:14371: \$? = $ac_status" >&5 + echo "$as_me:14373: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:14374: \"$ac_try\"") >&5 + { (eval echo "$as_me:14376: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:14377: \$? = $ac_status" >&5 + echo "$as_me:14379: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_sys_file_offset_bits=64; break else @@ -14385,7 +14387,7 @@ break done fi -echo "$as_me:14388: result: $ac_cv_sys_file_offset_bits" >&5 +echo "$as_me:14390: result: $ac_cv_sys_file_offset_bits" >&5 echo "${ECHO_T}$ac_cv_sys_file_offset_bits" >&6 if test "$ac_cv_sys_file_offset_bits" != no; then @@ -14395,7 +14397,7 @@ fi rm -rf conftest* - echo "$as_me:14398: checking for _LARGE_FILES value needed for large files" >&5 + echo "$as_me:14400: checking for _LARGE_FILES value needed for large files" >&5 echo $ECHO_N "checking for _LARGE_FILES value needed for large files... $ECHO_C" >&6 if test "${ac_cv_sys_large_files+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -14403,7 +14405,7 @@ while :; do ac_cv_sys_large_files=no cat >"conftest.$ac_ext" <<_ACEOF -#line 14406 "configure" +#line 14408 "configure" #include "confdefs.h" #include /* Check that off_t can represent 2**63 - 1 correctly. @@ -14423,16 +14425,16 @@ } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:14426: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:14428: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:14429: \$? = $ac_status" >&5 + echo "$as_me:14431: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:14432: \"$ac_try\"") >&5 + { (eval echo "$as_me:14434: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:14435: \$? = $ac_status" >&5 + echo "$as_me:14437: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then break else @@ -14441,7 +14443,7 @@ fi rm -f "conftest.$ac_objext" "conftest.$ac_ext" cat >"conftest.$ac_ext" <<_ACEOF -#line 14444 "configure" +#line 14446 "configure" #include "confdefs.h" #define _LARGE_FILES 1 #include @@ -14462,16 +14464,16 @@ } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:14465: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:14467: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:14468: \$? = $ac_status" >&5 + echo "$as_me:14470: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:14471: \"$ac_try\"") >&5 + { (eval echo "$as_me:14473: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:14474: \$? = $ac_status" >&5 + echo "$as_me:14476: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_sys_large_files=1; break else @@ -14482,7 +14484,7 @@ break done fi -echo "$as_me:14485: result: $ac_cv_sys_large_files" >&5 +echo "$as_me:14487: result: $ac_cv_sys_large_files" >&5 echo "${ECHO_T}$ac_cv_sys_large_files" >&6 if test "$ac_cv_sys_large_files" != no; then @@ -14495,7 +14497,7 @@ fi if test "$enable_largefile" != no ; then - echo "$as_me:14498: checking for _LARGEFILE_SOURCE value needed for large files" >&5 + echo "$as_me:14500: checking for _LARGEFILE_SOURCE value needed for large files" >&5 echo $ECHO_N "checking for _LARGEFILE_SOURCE value needed for large files... $ECHO_C" >&6 if test "${ac_cv_sys_largefile_source+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -14503,7 +14505,7 @@ while :; do ac_cv_sys_largefile_source=no cat >"conftest.$ac_ext" <<_ACEOF -#line 14506 "configure" +#line 14508 "configure" #include "confdefs.h" #include #include @@ -14518,16 +14520,16 @@ } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:14521: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:14523: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:14524: \$? = $ac_status" >&5 + echo "$as_me:14526: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:14527: \"$ac_try\"") >&5 + { (eval echo "$as_me:14529: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:14530: \$? = $ac_status" >&5 + echo "$as_me:14532: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then break else @@ -14536,7 +14538,7 @@ fi rm -f "conftest.$ac_objext" "conftest.$ac_ext" cat >"conftest.$ac_ext" <<_ACEOF -#line 14539 "configure" +#line 14541 "configure" #include "confdefs.h" #define _LARGEFILE_SOURCE 1 #include @@ -14552,16 +14554,16 @@ } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:14555: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:14557: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:14558: \$? = $ac_status" >&5 + echo "$as_me:14560: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:14561: \"$ac_try\"") >&5 + { (eval echo "$as_me:14563: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:14564: \$? = $ac_status" >&5 + echo "$as_me:14566: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_sys_largefile_source=1; break else @@ -14572,7 +14574,7 @@ break done fi -echo "$as_me:14575: result: $ac_cv_sys_largefile_source" >&5 +echo "$as_me:14577: result: $ac_cv_sys_largefile_source" >&5 echo "${ECHO_T}$ac_cv_sys_largefile_source" >&6 if test "$ac_cv_sys_largefile_source" != no; then @@ -14586,13 +14588,13 @@ # We used to try defining _XOPEN_SOURCE=500 too, to work around a bug # in glibc 2.1.3, but that breaks too many other things. # If you want fseeko and ftello with glibc, upgrade to a fixed glibc. -echo "$as_me:14589: checking for fseeko" >&5 +echo "$as_me:14591: checking for fseeko" >&5 echo $ECHO_N "checking for fseeko... $ECHO_C" >&6 if test "${ac_cv_func_fseeko+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >"conftest.$ac_ext" <<_ACEOF -#line 14595 "configure" +#line 14597 "configure" #include "confdefs.h" #include #include @@ -14606,16 +14608,16 @@ } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:14609: \"$ac_link\"") >&5 +if { (eval echo "$as_me:14611: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:14612: \$? = $ac_status" >&5 + echo "$as_me:14614: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:14615: \"$ac_try\"") >&5 + { (eval echo "$as_me:14617: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:14618: \$? = $ac_status" >&5 + echo "$as_me:14620: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_func_fseeko=yes else @@ -14625,7 +14627,7 @@ fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:14628: result: $ac_cv_func_fseeko" >&5 +echo "$as_me:14630: result: $ac_cv_func_fseeko" >&5 echo "${ECHO_T}$ac_cv_func_fseeko" >&6 if test $ac_cv_func_fseeko = yes; then @@ -14664,14 +14666,14 @@ fi - echo "$as_me:14667: checking whether to use struct dirent64" >&5 + echo "$as_me:14669: checking whether to use struct dirent64" >&5 echo $ECHO_N "checking whether to use struct dirent64... $ECHO_C" >&6 if test "${cf_cv_struct_dirent64+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >"conftest.$ac_ext" <<_ACEOF -#line 14674 "configure" +#line 14676 "configure" #include "confdefs.h" #pragma GCC diagnostic error "-Wincompatible-pointer-types" @@ -14698,16 +14700,16 @@ } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:14701: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:14703: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:14704: \$? = $ac_status" >&5 + echo "$as_me:14706: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:14707: \"$ac_try\"") >&5 + { (eval echo "$as_me:14709: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:14710: \$? = $ac_status" >&5 + echo "$as_me:14712: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_struct_dirent64=yes else @@ -14718,7 +14720,7 @@ rm -f "conftest.$ac_objext" "conftest.$ac_ext" fi -echo "$as_me:14721: result: $cf_cv_struct_dirent64" >&5 +echo "$as_me:14723: result: $cf_cv_struct_dirent64" >&5 echo "${ECHO_T}$cf_cv_struct_dirent64" >&6 test "$cf_cv_struct_dirent64" = yes && cat >>confdefs.h <<\EOF @@ -14728,7 +14730,7 @@ fi ### use option --disable-tparm-varargs to make tparm() conform to X/Open -echo "$as_me:14731: checking if you want tparm not to use X/Open fixed-parameter list" >&5 +echo "$as_me:14733: checking if you want tparm not to use X/Open fixed-parameter list" >&5 echo $ECHO_N "checking if you want tparm not to use X/Open fixed-parameter list... $ECHO_C" >&6 # Check whether --enable-tparm-varargs or --disable-tparm-varargs was given. @@ -14738,14 +14740,14 @@ else with_tparm_varargs=yes fi; -echo "$as_me:14741: result: $with_tparm_varargs" >&5 +echo "$as_me:14743: result: $with_tparm_varargs" >&5 echo "${ECHO_T}$with_tparm_varargs" >&6 NCURSES_TPARM_VARARGS=0 test "x$with_tparm_varargs" = xyes && NCURSES_TPARM_VARARGS=1 ### use option --disable-tic-depends to make libtic not explicitly depend on ncurses/ncursesw if test "$with_ticlib" != no ; then -echo "$as_me:14748: checking if you want tic library to use explicit dependency on ncurses$LIB_SUFFIX library" >&5 +echo "$as_me:14750: checking if you want tic library to use explicit dependency on ncurses$LIB_SUFFIX library" >&5 echo $ECHO_N "checking if you want tic library to use explicit dependency on ncurses$LIB_SUFFIX library... $ECHO_C" >&6 # Check whether --enable-tic-depends or --disable-tic-depends was given. @@ -14755,14 +14757,14 @@ else with_tic_depends=yes fi; -echo "$as_me:14758: result: $with_tic_depends" >&5 +echo "$as_me:14760: result: $with_tic_depends" >&5 echo "${ECHO_T}$with_tic_depends" >&6 else with_tic_depends=no fi ### use option --enable-wattr-macros to enable wattr* macros in curses.h -echo "$as_me:14765: checking if you want to enable wattr* macros" >&5 +echo "$as_me:14767: checking if you want to enable wattr* macros" >&5 echo $ECHO_N "checking if you want to enable wattr* macros... $ECHO_C" >&6 # Check whether --enable-wattr-macros or --disable-wattr-macros was given. @@ -14774,15 +14776,15 @@ fi; if [ "x$with_wattr_macros" != xyes ]; then NCURSES_WATTR_MACROS=0 - echo "$as_me:14777: result: no" >&5 + echo "$as_me:14779: result: no" >&5 echo "${ECHO_T}no" >&6 else NCURSES_WATTR_MACROS=1 - echo "$as_me:14781: result: yes" >&5 + echo "$as_me:14783: result: yes" >&5 echo "${ECHO_T}yes" >&6 fi -echo "$as_me:14785: checking for X11 rgb file" >&5 +echo "$as_me:14787: checking for X11 rgb file" >&5 echo $ECHO_N "checking for X11 rgb file... $ECHO_C" >&6 # Check whether --with-x11-rgb or --without-x11-rgb was given. @@ -14844,7 +14846,7 @@ cf_path=`echo "$cf_path" | sed -e s%NONE%$cf_path_syntax%` ;; (*) - { { echo "$as_me:14847: error: expected a pathname, not \"$cf_path\"" >&5 + { { echo "$as_me:14849: error: expected a pathname, not \"$cf_path\"" >&5 echo "$as_me: error: expected a pathname, not \"$cf_path\"" >&2;} { (exit 1); exit 1; }; } ;; @@ -14852,7 +14854,7 @@ fi -echo "$as_me:14855: result: $RGB_PATH" >&5 +echo "$as_me:14857: result: $RGB_PATH" >&5 echo "${ECHO_T}$RGB_PATH" >&6 cat >>confdefs.h <&5 +echo "$as_me:14872: checking for type of bool" >&5 echo $ECHO_N "checking for type of bool... $ECHO_C" >&6 # Check whether --with-bool or --without-bool was given. @@ -14877,17 +14879,17 @@ else NCURSES_BOOL=auto fi; -echo "$as_me:14880: result: $NCURSES_BOOL" >&5 +echo "$as_me:14882: result: $NCURSES_BOOL" >&5 echo "${ECHO_T}$NCURSES_BOOL" >&6 case x$NCURSES_BOOL in (x|xyes|xno) - { { echo "$as_me:14884: error: expected a type name for bool" >&5 + { { echo "$as_me:14886: error: expected a type name for bool" >&5 echo "$as_me: error: expected a type name for bool" >&2;} { (exit 1); exit 1; }; } ;; esac -echo "$as_me:14890: checking for alternate terminal capabilities file" >&5 +echo "$as_me:14892: checking for alternate terminal capabilities file" >&5 echo $ECHO_N "checking for alternate terminal capabilities file... $ECHO_C" >&6 # Check whether --with-caps or --without-caps was given. @@ -14899,16 +14901,16 @@ fi; if test ! -f "${srcdir}/include/${TERMINFO_CAPS}" then - { echo "$as_me:14902: WARNING: file not found: \"${srcdir}/include/${TERMINFO_CAPS}\"" >&5 + { echo "$as_me:14904: WARNING: file not found: \"${srcdir}/include/${TERMINFO_CAPS}\"" >&5 echo "$as_me: WARNING: file not found: \"${srcdir}/include/${TERMINFO_CAPS}\"" >&2;} TERMINFO_CAPS=Caps fi -echo "$as_me:14906: result: $TERMINFO_CAPS" >&5 +echo "$as_me:14908: result: $TERMINFO_CAPS" >&5 echo "${ECHO_T}$TERMINFO_CAPS" >&6 ### use option --with-chtype to override chtype's type -echo "$as_me:14911: checking for type of chtype" >&5 +echo "$as_me:14913: checking for type of chtype" >&5 echo $ECHO_N "checking for type of chtype... $ECHO_C" >&6 # Check whether --with-chtype or --without-chtype was given. @@ -14918,11 +14920,11 @@ else NCURSES_CHTYPE=$cf_dft_chtype fi; -echo "$as_me:14921: result: $NCURSES_CHTYPE" >&5 +echo "$as_me:14923: result: $NCURSES_CHTYPE" >&5 echo "${ECHO_T}$NCURSES_CHTYPE" >&6 case x$NCURSES_CHTYPE in (x|xyes|xno) - { { echo "$as_me:14925: error: expected a type name for chtype" >&5 + { { echo "$as_me:14927: error: expected a type name for chtype" >&5 echo "$as_me: error: expected a type name for chtype" >&2;} { (exit 1); exit 1; }; } ;; @@ -14930,7 +14932,7 @@ ### use option --with-ospeed to override ospeed's type -echo "$as_me:14933: checking for type of ospeed" >&5 +echo "$as_me:14935: checking for type of ospeed" >&5 echo $ECHO_N "checking for type of ospeed... $ECHO_C" >&6 # Check whether --with-ospeed or --without-ospeed was given. @@ -14940,11 +14942,11 @@ else NCURSES_OSPEED=short fi; -echo "$as_me:14943: result: $NCURSES_OSPEED" >&5 +echo "$as_me:14945: result: $NCURSES_OSPEED" >&5 echo "${ECHO_T}$NCURSES_OSPEED" >&6 case x$NCURSES_OSPEED in (x|xyes|xno) - { { echo "$as_me:14947: error: expected a type name for ospeed" >&5 + { { echo "$as_me:14949: error: expected a type name for ospeed" >&5 echo "$as_me: error: expected a type name for ospeed" >&2;} { (exit 1); exit 1; }; } ;; @@ -14952,7 +14954,7 @@ ### use option --with-mmask-t to override mmask_t's type -echo "$as_me:14955: checking for type of mmask-t" >&5 +echo "$as_me:14957: checking for type of mmask-t" >&5 echo $ECHO_N "checking for type of mmask-t... $ECHO_C" >&6 # Check whether --with-mmask-t or --without-mmask-t was given. @@ -14962,18 +14964,18 @@ else NCURSES_MMASK_T=$cf_dft_mmask_t fi; -echo "$as_me:14965: result: $NCURSES_MMASK_T" >&5 +echo "$as_me:14967: result: $NCURSES_MMASK_T" >&5 echo "${ECHO_T}$NCURSES_MMASK_T" >&6 case x$NCURSES_MMASK_T in (x|xyes|xno) - { { echo "$as_me:14969: error: expected a type name for mmask-t" >&5 + { { echo "$as_me:14971: error: expected a type name for mmask-t" >&5 echo "$as_me: error: expected a type name for mmask-t" >&2;} { (exit 1); exit 1; }; } ;; esac ### use option --with-ccharw-max to override CCHARW_MAX size -echo "$as_me:14976: checking for size CCHARW_MAX" >&5 +echo "$as_me:14978: checking for size CCHARW_MAX" >&5 echo $ECHO_N "checking for size CCHARW_MAX... $ECHO_C" >&6 # Check whether --with-ccharw-max or --without-ccharw-max was given. @@ -14983,16 +14985,16 @@ else NCURSES_CCHARW_MAX=$cf_dft_ccharw_max fi; -echo "$as_me:14986: result: $NCURSES_CCHARW_MAX" >&5 +echo "$as_me:14988: result: $NCURSES_CCHARW_MAX" >&5 echo "${ECHO_T}$NCURSES_CCHARW_MAX" >&6 -echo "$as_me:14989: checking for signed char" >&5 +echo "$as_me:14991: checking for signed char" >&5 echo $ECHO_N "checking for signed char... $ECHO_C" >&6 if test "${ac_cv_type_signed_char+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >"conftest.$ac_ext" <<_ACEOF -#line 14995 "configure" +#line 14997 "configure" #include "confdefs.h" $ac_includes_default int @@ -15007,16 +15009,16 @@ } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:15010: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:15012: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:15013: \$? = $ac_status" >&5 + echo "$as_me:15015: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:15016: \"$ac_try\"") >&5 + { (eval echo "$as_me:15018: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:15019: \$? = $ac_status" >&5 + echo "$as_me:15021: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_type_signed_char=yes else @@ -15026,10 +15028,10 @@ fi rm -f "conftest.$ac_objext" "conftest.$ac_ext" fi -echo "$as_me:15029: result: $ac_cv_type_signed_char" >&5 +echo "$as_me:15031: result: $ac_cv_type_signed_char" >&5 echo "${ECHO_T}$ac_cv_type_signed_char" >&6 -echo "$as_me:15032: checking size of signed char" >&5 +echo "$as_me:15034: checking size of signed char" >&5 echo $ECHO_N "checking size of signed char... $ECHO_C" >&6 if test "${ac_cv_sizeof_signed_char+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -15038,7 +15040,7 @@ if test "$cross_compiling" = yes; then # Depending upon the size, compute the lo and hi bounds. cat >"conftest.$ac_ext" <<_ACEOF -#line 15041 "configure" +#line 15043 "configure" #include "confdefs.h" $ac_includes_default int @@ -15050,21 +15052,21 @@ } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:15053: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:15055: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:15056: \$? = $ac_status" >&5 + echo "$as_me:15058: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:15059: \"$ac_try\"") >&5 + { (eval echo "$as_me:15061: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:15062: \$? = $ac_status" >&5 + echo "$as_me:15064: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_lo=0 ac_mid=0 while :; do cat >"conftest.$ac_ext" <<_ACEOF -#line 15067 "configure" +#line 15069 "configure" #include "confdefs.h" $ac_includes_default int @@ -15076,16 +15078,16 @@ } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:15079: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:15081: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:15082: \$? = $ac_status" >&5 + echo "$as_me:15084: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:15085: \"$ac_try\"") >&5 + { (eval echo "$as_me:15087: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:15088: \$? = $ac_status" >&5 + echo "$as_me:15090: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_hi=$ac_mid; break else @@ -15101,7 +15103,7 @@ ac_hi=-1 ac_mid=-1 while :; do cat >"conftest.$ac_ext" <<_ACEOF -#line 15104 "configure" +#line 15106 "configure" #include "confdefs.h" $ac_includes_default int @@ -15113,16 +15115,16 @@ } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:15116: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:15118: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:15119: \$? = $ac_status" >&5 + echo "$as_me:15121: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:15122: \"$ac_try\"") >&5 + { (eval echo "$as_me:15124: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:15125: \$? = $ac_status" >&5 + echo "$as_me:15127: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_lo=$ac_mid; break else @@ -15138,7 +15140,7 @@ 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 15141 "configure" +#line 15143 "configure" #include "confdefs.h" $ac_includes_default int @@ -15150,16 +15152,16 @@ } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:15153: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:15155: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:15156: \$? = $ac_status" >&5 + echo "$as_me:15158: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:15159: \"$ac_try\"") >&5 + { (eval echo "$as_me:15161: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:15162: \$? = $ac_status" >&5 + echo "$as_me:15164: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_hi=$ac_mid else @@ -15172,12 +15174,12 @@ ac_cv_sizeof_signed_char=$ac_lo else if test "$cross_compiling" = yes; then - { { echo "$as_me:15175: error: cannot run test program while cross compiling" >&5 + { { echo "$as_me:15177: 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 15180 "configure" +#line 15182 "configure" #include "confdefs.h" $ac_includes_default int @@ -15193,15 +15195,15 @@ } _ACEOF rm -f "conftest$ac_exeext" -if { (eval echo "$as_me:15196: \"$ac_link\"") >&5 +if { (eval echo "$as_me:15198: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:15199: \$? = $ac_status" >&5 + echo "$as_me:15201: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='"./conftest$ac_exeext"' - { (eval echo "$as_me:15201: \"$ac_try\"") >&5 + { (eval echo "$as_me:15203: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:15204: \$? = $ac_status" >&5 + echo "$as_me:15206: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_sizeof_signed_char=`cat conftest.val` else @@ -15217,7 +15219,7 @@ ac_cv_sizeof_signed_char=0 fi fi -echo "$as_me:15220: result: $ac_cv_sizeof_signed_char" >&5 +echo "$as_me:15222: result: $ac_cv_sizeof_signed_char" >&5 echo "${ECHO_T}$ac_cv_sizeof_signed_char" >&6 cat >>confdefs.h <&5 +echo "$as_me:15233: checking whether to use signed chars for Boolean array in term.h" >&5 echo $ECHO_N "checking whether to use signed chars for Boolean array in term.h... $ECHO_C" >&6 # Check whether --enable-signed-char or --disable-signed-char was given. @@ -15238,13 +15240,13 @@ else with_signed_char=$cf_dft_signed_char fi; -echo "$as_me:15241: result: $with_signed_char" >&5 +echo "$as_me:15243: result: $with_signed_char" >&5 echo "${ECHO_T}$with_signed_char" >&6 test "x$with_signed_char" != xyes && NCURSES_SBOOL="char" ### use option --with-tparm-arg to override tparm's argument type -echo "$as_me:15247: checking for type of tparm-arg" >&5 +echo "$as_me:15249: checking for type of tparm-arg" >&5 echo $ECHO_N "checking for type of tparm-arg... $ECHO_C" >&6 # Check whether --with-tparm-arg or --without-tparm-arg was given. @@ -15254,18 +15256,18 @@ else NCURSES_TPARM_ARG=$cf_dft_tparm_arg fi; -echo "$as_me:15257: result: $NCURSES_TPARM_ARG" >&5 +echo "$as_me:15259: result: $NCURSES_TPARM_ARG" >&5 echo "${ECHO_T}$NCURSES_TPARM_ARG" >&6 case x$NCURSES_TPARM_ARG in (x|xyes|xno) - { { echo "$as_me:15261: error: expected a type name for tparm-arg" >&5 + { { echo "$as_me:15263: error: expected a type name for tparm-arg" >&5 echo "$as_me: error: expected a type name for tparm-arg" >&2;} { (exit 1); exit 1; }; } ;; esac ### Enable compiling-in rcs id's -echo "$as_me:15268: checking if RCS identifiers should be compiled-in" >&5 +echo "$as_me:15270: checking if RCS identifiers should be compiled-in" >&5 echo $ECHO_N "checking if RCS identifiers should be compiled-in... $ECHO_C" >&6 # Check whether --with-rcs-ids or --without-rcs-ids was given. @@ -15275,7 +15277,7 @@ else with_rcs_ids=no fi; -echo "$as_me:15278: result: $with_rcs_ids" >&5 +echo "$as_me:15280: result: $with_rcs_ids" >&5 echo "${ECHO_T}$with_rcs_ids" >&6 test "x$with_rcs_ids" = xyes && cat >>confdefs.h <<\EOF @@ -15284,7 +15286,7 @@ ############################################################################### -echo "$as_me:15287: checking format of man-pages" >&5 +echo "$as_me:15289: checking format of man-pages" >&5 echo $ECHO_N "checking format of man-pages... $ECHO_C" >&6 # Check whether --with-manpage-format or --without-manpage-format was given. @@ -15375,10 +15377,10 @@ ;; esac -echo "$as_me:15378: result: $MANPAGE_FORMAT" >&5 +echo "$as_me:15380: result: $MANPAGE_FORMAT" >&5 echo "${ECHO_T}$MANPAGE_FORMAT" >&6 if test -n "$cf_unknown" ; then - { echo "$as_me:15381: WARNING: Unexpected manpage-format $cf_unknown" >&5 + { echo "$as_me:15383: WARNING: Unexpected manpage-format $cf_unknown" >&5 echo "$as_me: WARNING: Unexpected manpage-format $cf_unknown" >&2;} fi @@ -15419,7 +15421,7 @@ esac done -echo "$as_me:15422: checking for manpage renaming" >&5 +echo "$as_me:15424: checking for manpage renaming" >&5 echo $ECHO_N "checking for manpage renaming... $ECHO_C" >&6 # Check whether --with-manpage-renames or --without-manpage-renames was given. @@ -15448,15 +15450,15 @@ elif test "$MANPAGE_RENAMES" = no ; then : elif test ! -f "$MANPAGE_RENAMES" ; then - { { echo "$as_me:15451: error: not a filename: $MANPAGE_RENAMES" >&5 + { { echo "$as_me:15453: error: not a filename: $MANPAGE_RENAMES" >&5 echo "$as_me: error: not a filename: $MANPAGE_RENAMES" >&2;} { (exit 1); exit 1; }; } fi -echo "$as_me:15456: result: $MANPAGE_RENAMES" >&5 +echo "$as_me:15458: result: $MANPAGE_RENAMES" >&5 echo "${ECHO_T}$MANPAGE_RENAMES" >&6 -echo "$as_me:15459: checking if manpage aliases will be installed" >&5 +echo "$as_me:15461: checking if manpage aliases will be installed" >&5 echo $ECHO_N "checking if manpage aliases will be installed... $ECHO_C" >&6 # Check whether --with-manpage-aliases or --without-manpage-aliases was given. @@ -15467,7 +15469,7 @@ MANPAGE_ALIASES=yes fi; -echo "$as_me:15470: result: $MANPAGE_ALIASES" >&5 +echo "$as_me:15472: result: $MANPAGE_ALIASES" >&5 echo "${ECHO_T}$MANPAGE_ALIASES" >&6 case "x$LN_S" in @@ -15481,7 +15483,7 @@ MANPAGE_SYMLINKS=no if test "$MANPAGE_ALIASES" = yes ; then -echo "$as_me:15484: checking if manpage symlinks should be used" >&5 +echo "$as_me:15486: checking if manpage symlinks should be used" >&5 echo $ECHO_N "checking if manpage symlinks should be used... $ECHO_C" >&6 # Check whether --with-manpage-symlinks or --without-manpage-symlinks was given. @@ -15494,17 +15496,17 @@ if test "$cf_use_symlinks" = no; then if test "$MANPAGE_SYMLINKS" = yes ; then - { echo "$as_me:15497: WARNING: cannot make symlinks" >&5 + { echo "$as_me:15499: WARNING: cannot make symlinks" >&5 echo "$as_me: WARNING: cannot make symlinks" >&2;} MANPAGE_SYMLINKS=no fi fi -echo "$as_me:15503: result: $MANPAGE_SYMLINKS" >&5 +echo "$as_me:15505: result: $MANPAGE_SYMLINKS" >&5 echo "${ECHO_T}$MANPAGE_SYMLINKS" >&6 fi -echo "$as_me:15507: checking for manpage tbl" >&5 +echo "$as_me:15509: checking for manpage tbl" >&5 echo $ECHO_N "checking for manpage tbl... $ECHO_C" >&6 # Check whether --with-manpage-tbl or --without-manpage-tbl was given. @@ -15515,7 +15517,7 @@ MANPAGE_TBL=no fi; -echo "$as_me:15518: result: $MANPAGE_TBL" >&5 +echo "$as_me:15520: result: $MANPAGE_TBL" >&5 echo "${ECHO_T}$MANPAGE_TBL" >&6 if test "$prefix" = "NONE" ; then @@ -15707,7 +15709,7 @@ if test -n "$cf_manpage_compress" ; then cat >>$cf_edit_man <&5 +echo "$as_me:15841: checking if you want to build with function extensions" >&5 echo $ECHO_N "checking if you want to build with function extensions... $ECHO_C" >&6 # Check whether --enable-ext-funcs or --disable-ext-funcs was given. @@ -15846,7 +15848,7 @@ else with_ext_funcs=yes fi; -echo "$as_me:15849: result: $with_ext_funcs" >&5 +echo "$as_me:15851: result: $with_ext_funcs" >&5 echo "${ECHO_T}$with_ext_funcs" >&6 if test "x$with_ext_funcs" = xyes ; then NCURSES_EXT_FUNCS=1 @@ -15903,7 +15905,7 @@ GENERATED_EXT_FUNCS= fi -echo "$as_me:15906: checking if you want to build with SCREEN extensions" >&5 +echo "$as_me:15908: checking if you want to build with SCREEN extensions" >&5 echo $ECHO_N "checking if you want to build with SCREEN extensions... $ECHO_C" >&6 # Check whether --enable-sp-funcs or --disable-sp-funcs was given. @@ -15913,7 +15915,7 @@ else with_sp_funcs=$cf_dft_ext_spfuncs fi; -echo "$as_me:15916: result: $with_sp_funcs" >&5 +echo "$as_me:15918: result: $with_sp_funcs" >&5 echo "${ECHO_T}$with_sp_funcs" >&6 if test "x$with_sp_funcs" = xyes ; then NCURSES_SP_FUNCS=1 @@ -15932,7 +15934,7 @@ GENERATED_SP_FUNCS= fi -echo "$as_me:15935: checking if you want to build with terminal-driver" >&5 +echo "$as_me:15937: checking if you want to build with terminal-driver" >&5 echo $ECHO_N "checking if you want to build with terminal-driver... $ECHO_C" >&6 # Check whether --enable-term-driver or --disable-term-driver was given. @@ -15942,7 +15944,7 @@ else with_term_driver=no fi; -echo "$as_me:15945: result: $with_term_driver" >&5 +echo "$as_me:15947: result: $with_term_driver" >&5 echo "${ECHO_T}$with_term_driver" >&6 if test "x$with_term_driver" = xyes ; then @@ -15951,19 +15953,19 @@ EOF if test "x$with_termlib" != xno ; then - { { echo "$as_me:15954: error: The term-driver option conflicts with the termlib option" >&5 + { { echo "$as_me:15956: error: The term-driver option conflicts with the termlib option" >&5 echo "$as_me: error: The term-driver option conflicts with the termlib option" >&2;} { (exit 1); exit 1; }; } fi if test "x$with_sp_funcs" != xyes ; then - { { echo "$as_me:15959: error: The term-driver option relies upon sp-funcs" >&5 + { { echo "$as_me:15961: error: The term-driver option relies upon sp-funcs" >&5 echo "$as_me: error: The term-driver option relies upon sp-funcs" >&2;} { (exit 1); exit 1; }; } fi fi ### use option --enable-const to turn on use of const beyond that in XSI. -echo "$as_me:15966: checking for extended use of const keyword" >&5 +echo "$as_me:15968: checking for extended use of const keyword" >&5 echo $ECHO_N "checking for extended use of const keyword... $ECHO_C" >&6 # Check whether --enable-const or --disable-const was given. @@ -15973,7 +15975,7 @@ else with_ext_const=$cf_dft_ext_const fi; -echo "$as_me:15976: result: $with_ext_const" >&5 +echo "$as_me:15978: result: $with_ext_const" >&5 echo "${ECHO_T}$with_ext_const" >&6 NCURSES_CONST='/*nothing*/' if test "x$with_ext_const" = xyes ; then @@ -15981,7 +15983,7 @@ fi ### use option --enable-ext-colors to turn on use of colors beyond 16. -echo "$as_me:15984: checking if you want to use extended colors" >&5 +echo "$as_me:15986: checking if you want to use extended colors" >&5 echo $ECHO_N "checking if you want to use extended colors... $ECHO_C" >&6 # Check whether --enable-ext-colors or --disable-ext-colors was given. @@ -15991,12 +15993,12 @@ else with_ext_colors=$cf_dft_ext_colors fi; -echo "$as_me:15994: result: $with_ext_colors" >&5 +echo "$as_me:15996: result: $with_ext_colors" >&5 echo "${ECHO_T}$with_ext_colors" >&6 NCURSES_EXT_COLORS=0 if test "x$with_ext_colors" = xyes ; then if test "x$with_widec" != xyes ; then - { echo "$as_me:15999: WARNING: This option applies only to wide-character library" >&5 + { echo "$as_me:16001: WARNING: This option applies only to wide-character library" >&5 echo "$as_me: WARNING: This option applies only to wide-character library" >&2;} else # cannot be ABI 5 since it changes sizeof(cchar_t) @@ -16007,7 +16009,7 @@ cf_cv_rel_version=6.0 cf_cv_abi_version=6 cf_cv_abi_default=6 - { echo "$as_me:16010: WARNING: overriding ABI version to $cf_cv_abi_default" >&5 + { echo "$as_me:16012: WARNING: overriding ABI version to $cf_cv_abi_default" >&5 echo "$as_me: WARNING: overriding ABI version to $cf_cv_abi_default" >&2;} ;; esac @@ -16035,7 +16037,7 @@ fi ### use option --enable-ext-mouse to modify coding to support 5-button mice -echo "$as_me:16038: checking if you want to use extended mouse encoding" >&5 +echo "$as_me:16040: checking if you want to use extended mouse encoding" >&5 echo $ECHO_N "checking if you want to use extended mouse encoding... $ECHO_C" >&6 # Check whether --enable-ext-mouse or --disable-ext-mouse was given. @@ -16045,7 +16047,7 @@ else with_ext_mouse=$cf_dft_ext_mouse fi; -echo "$as_me:16048: result: $with_ext_mouse" >&5 +echo "$as_me:16050: result: $with_ext_mouse" >&5 echo "${ECHO_T}$with_ext_mouse" >&6 if test "x$with_ext_mouse" = xyes ; then @@ -16055,7 +16057,7 @@ cf_cv_rel_version=6.0 cf_cv_abi_version=6 cf_cv_abi_default=6 - { echo "$as_me:16058: WARNING: overriding ABI version to $cf_cv_abi_default" >&5 + { echo "$as_me:16060: WARNING: overriding ABI version to $cf_cv_abi_default" >&5 echo "$as_me: WARNING: overriding ABI version to $cf_cv_abi_default" >&2;} ;; esac @@ -16072,7 +16074,7 @@ fi ### use option --enable-ext-putwin to turn on extended screendumps -echo "$as_me:16075: checking if you want to use extended putwin/screendump" >&5 +echo "$as_me:16077: checking if you want to use extended putwin/screendump" >&5 echo $ECHO_N "checking if you want to use extended putwin/screendump... $ECHO_C" >&6 # Check whether --enable-ext-putwin or --disable-ext-putwin was given. @@ -16082,7 +16084,7 @@ else with_ext_putwin=$cf_dft_ext_putwin fi; -echo "$as_me:16085: result: $with_ext_putwin" >&5 +echo "$as_me:16087: result: $with_ext_putwin" >&5 echo "${ECHO_T}$with_ext_putwin" >&6 if test "x$with_ext_putwin" = xyes ; then @@ -16092,7 +16094,7 @@ fi -echo "$as_me:16095: checking if you want \$NCURSES_NO_PADDING code" >&5 +echo "$as_me:16097: checking if you want \$NCURSES_NO_PADDING code" >&5 echo $ECHO_N "checking if you want \$NCURSES_NO_PADDING code... $ECHO_C" >&6 # Check whether --enable-no-padding or --disable-no-padding was given. @@ -16102,7 +16104,7 @@ else with_no_padding=$with_ext_funcs fi; -echo "$as_me:16105: result: $with_no_padding" >&5 +echo "$as_me:16107: result: $with_no_padding" >&5 echo "${ECHO_T}$with_no_padding" >&6 test "x$with_no_padding" = xyes && cat >>confdefs.h <<\EOF @@ -16110,7 +16112,7 @@ EOF ### use option --enable-sigwinch to turn on use of SIGWINCH logic -echo "$as_me:16113: checking if you want SIGWINCH handler" >&5 +echo "$as_me:16115: checking if you want SIGWINCH handler" >&5 echo $ECHO_N "checking if you want SIGWINCH handler... $ECHO_C" >&6 # Check whether --enable-sigwinch or --disable-sigwinch was given. @@ -16120,7 +16122,7 @@ else with_sigwinch=$with_ext_funcs fi; -echo "$as_me:16123: result: $with_sigwinch" >&5 +echo "$as_me:16125: result: $with_sigwinch" >&5 echo "${ECHO_T}$with_sigwinch" >&6 if test "x$with_sigwinch" = xyes then @@ -16135,7 +16137,7 @@ fi ### use option --enable-tcap-names to allow user to define new capabilities -echo "$as_me:16138: checking if you want user-definable terminal capabilities like termcap" >&5 +echo "$as_me:16140: checking if you want user-definable terminal capabilities like termcap" >&5 echo $ECHO_N "checking if you want user-definable terminal capabilities like termcap... $ECHO_C" >&6 # Check whether --enable-tcap-names or --disable-tcap-names was given. @@ -16145,7 +16147,7 @@ else with_tcap_names=$with_ext_funcs fi; -echo "$as_me:16148: result: $with_tcap_names" >&5 +echo "$as_me:16150: result: $with_tcap_names" >&5 echo "${ECHO_T}$with_tcap_names" >&6 NCURSES_XNAMES=0 if test "x$with_tcap_names" = xyes; then @@ -16159,7 +16161,7 @@ ############################################################################## -echo "$as_me:16162: checking if you want to link with the pthread library" >&5 +echo "$as_me:16164: checking if you want to link with the pthread library" >&5 echo $ECHO_N "checking if you want to link with the pthread library... $ECHO_C" >&6 # Check whether --with-pthread or --without-pthread was given. @@ -16169,27 +16171,27 @@ else with_pthread=no fi; -echo "$as_me:16172: result: $with_pthread" >&5 +echo "$as_me:16174: result: $with_pthread" >&5 echo "${ECHO_T}$with_pthread" >&6 if test "$with_pthread" != no ; then - echo "$as_me:16176: checking for pthread.h" >&5 + echo "$as_me:16178: checking for pthread.h" >&5 echo $ECHO_N "checking for pthread.h... $ECHO_C" >&6 if test "${ac_cv_header_pthread_h+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >"conftest.$ac_ext" <<_ACEOF -#line 16182 "configure" +#line 16184 "configure" #include "confdefs.h" #include _ACEOF -if { (eval echo "$as_me:16186: \"$ac_cpp "conftest.$ac_ext"\"") >&5 +if { (eval echo "$as_me:16188: \"$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:16192: \$? = $ac_status" >&5 + echo "$as_me:16194: \$? = $ac_status" >&5 (exit "$ac_status"); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -16208,7 +16210,7 @@ fi rm -f conftest.err "conftest.$ac_ext" fi -echo "$as_me:16211: result: $ac_cv_header_pthread_h" >&5 +echo "$as_me:16213: result: $ac_cv_header_pthread_h" >&5 echo "${ECHO_T}$ac_cv_header_pthread_h" >&6 if test "$ac_cv_header_pthread_h" = yes; then @@ -16218,7 +16220,7 @@ for cf_lib_pthread in pthread c_r do - echo "$as_me:16221: checking if we can link with the $cf_lib_pthread library" >&5 + echo "$as_me:16223: checking if we can link with the $cf_lib_pthread library" >&5 echo $ECHO_N "checking if we can link with the $cf_lib_pthread library... $ECHO_C" >&6 cf_save_LIBS="$LIBS" @@ -16239,7 +16241,7 @@ LIBS="$cf_add_libs" cat >"conftest.$ac_ext" <<_ACEOF -#line 16242 "configure" +#line 16244 "configure" #include "confdefs.h" #include @@ -16256,16 +16258,16 @@ } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:16259: \"$ac_link\"") >&5 +if { (eval echo "$as_me:16261: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:16262: \$? = $ac_status" >&5 + echo "$as_me:16264: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:16265: \"$ac_try\"") >&5 + { (eval echo "$as_me:16267: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:16268: \$? = $ac_status" >&5 + echo "$as_me:16270: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then with_pthread=yes else @@ -16275,7 +16277,7 @@ fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" LIBS="$cf_save_LIBS" - echo "$as_me:16278: result: $with_pthread" >&5 + echo "$as_me:16280: result: $with_pthread" >&5 echo "${ECHO_T}$with_pthread" >&6 test "$with_pthread" = yes && break done @@ -16303,7 +16305,7 @@ EOF else - { { echo "$as_me:16306: error: Cannot link with pthread library" >&5 + { { echo "$as_me:16308: error: Cannot link with pthread library" >&5 echo "$as_me: error: Cannot link with pthread library" >&2;} { (exit 1); exit 1; }; } fi @@ -16313,13 +16315,13 @@ fi if test "x$with_pthread" != xno; then - echo "$as_me:16316: checking for pthread_kill" >&5 + echo "$as_me:16318: checking for pthread_kill" >&5 echo $ECHO_N "checking for pthread_kill... $ECHO_C" >&6 if test "${ac_cv_func_pthread_kill+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >"conftest.$ac_ext" <<_ACEOF -#line 16322 "configure" +#line 16324 "configure" #include "confdefs.h" #define pthread_kill autoconf_temporary #include /* least-intrusive standard header which defines gcc2 __stub macros */ @@ -16350,16 +16352,16 @@ } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:16353: \"$ac_link\"") >&5 +if { (eval echo "$as_me:16355: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:16356: \$? = $ac_status" >&5 + echo "$as_me:16358: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:16359: \"$ac_try\"") >&5 + { (eval echo "$as_me:16361: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:16362: \$? = $ac_status" >&5 + echo "$as_me:16364: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_func_pthread_kill=yes else @@ -16369,11 +16371,11 @@ fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:16372: result: $ac_cv_func_pthread_kill" >&5 +echo "$as_me:16374: result: $ac_cv_func_pthread_kill" >&5 echo "${ECHO_T}$ac_cv_func_pthread_kill" >&6 if test "$ac_cv_func_pthread_kill" = yes; then - echo "$as_me:16376: checking if you want to allow EINTR in wgetch with pthreads" >&5 + echo "$as_me:16378: checking if you want to allow EINTR in wgetch with pthreads" >&5 echo $ECHO_N "checking if you want to allow EINTR in wgetch with pthreads... $ECHO_C" >&6 # Check whether --enable-pthreads-eintr or --disable-pthreads-eintr was given. @@ -16383,7 +16385,7 @@ else use_pthreads_eintr=no fi; - echo "$as_me:16386: result: $use_pthreads_eintr" >&5 + echo "$as_me:16388: result: $use_pthreads_eintr" >&5 echo "${ECHO_T}$use_pthreads_eintr" >&6 if test "x$use_pthreads_eintr" = xyes ; then @@ -16394,7 +16396,7 @@ fi fi - echo "$as_me:16397: checking if you want to use weak-symbols for pthreads" >&5 + echo "$as_me:16399: checking if you want to use weak-symbols for pthreads" >&5 echo $ECHO_N "checking if you want to use weak-symbols for pthreads... $ECHO_C" >&6 # Check whether --enable-weak-symbols or --disable-weak-symbols was given. @@ -16404,18 +16406,18 @@ else use_weak_symbols=no fi; - echo "$as_me:16407: result: $use_weak_symbols" >&5 + echo "$as_me:16409: result: $use_weak_symbols" >&5 echo "${ECHO_T}$use_weak_symbols" >&6 if test "x$use_weak_symbols" = xyes ; then -echo "$as_me:16411: checking if $CC supports weak symbols" >&5 +echo "$as_me:16413: checking if $CC supports weak symbols" >&5 echo $ECHO_N "checking if $CC supports weak symbols... $ECHO_C" >&6 if test "${cf_cv_weak_symbols+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >"conftest.$ac_ext" <<_ACEOF -#line 16418 "configure" +#line 16420 "configure" #include "confdefs.h" #include @@ -16441,16 +16443,16 @@ } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:16444: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:16446: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:16447: \$? = $ac_status" >&5 + echo "$as_me:16449: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:16450: \"$ac_try\"") >&5 + { (eval echo "$as_me:16452: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:16453: \$? = $ac_status" >&5 + echo "$as_me:16455: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_weak_symbols=yes else @@ -16461,7 +16463,7 @@ rm -f "conftest.$ac_objext" "conftest.$ac_ext" fi -echo "$as_me:16464: result: $cf_cv_weak_symbols" >&5 +echo "$as_me:16466: result: $cf_cv_weak_symbols" >&5 echo "${ECHO_T}$cf_cv_weak_symbols" >&6 else @@ -16511,7 +16513,7 @@ # opaque outside of that, so there is no --enable-opaque option. We can use # this option without --with-pthreads, but this will be always set for # pthreads. -echo "$as_me:16514: checking if you want reentrant code" >&5 +echo "$as_me:16516: checking if you want reentrant code" >&5 echo $ECHO_N "checking if you want reentrant code... $ECHO_C" >&6 # Check whether --enable-reentrant or --disable-reentrant was given. @@ -16521,7 +16523,7 @@ else with_reentrant=no fi; -echo "$as_me:16524: result: $with_reentrant" >&5 +echo "$as_me:16526: result: $with_reentrant" >&5 echo "${ECHO_T}$with_reentrant" >&6 if test "x$with_reentrant" = xyes ; then cf_cv_enable_reentrant=1 @@ -16610,7 +16612,7 @@ cf_cv_rel_version=6.0 cf_cv_abi_version=6 cf_cv_abi_default=6 - { echo "$as_me:16613: WARNING: overriding ABI version to $cf_cv_abi_default" >&5 + { echo "$as_me:16615: WARNING: overriding ABI version to $cf_cv_abi_default" >&5 echo "$as_me: WARNING: overriding ABI version to $cf_cv_abi_default" >&2;} ;; esac @@ -16622,7 +16624,7 @@ NCURSES_SIZE_T=$cf_dft_ordinate_type fi -echo "$as_me:16625: checking whether curses library structures should be opaque" >&5 +echo "$as_me:16627: checking whether curses library structures should be opaque" >&5 echo $ECHO_N "checking whether curses library structures should be opaque... $ECHO_C" >&6 # Check whether --enable-opaque-curses or --disable-opaque-curses was given. @@ -16644,16 +16646,16 @@ test "$cf_cv_enable_reentrant" = 1 || enable_opaque_curses=$cf_dft_opaque_curses fi; -echo "$as_me:16647: result: $enable_opaque_curses" >&5 +echo "$as_me:16649: result: $enable_opaque_curses" >&5 echo "${ECHO_T}$enable_opaque_curses" >&6 test "$cf_cv_enable_reentrant" = 1 && \ test "$enable_opaque_curses" = no && \ -{ { echo "$as_me:16652: error: reentrant configuration requires opaque library" >&5 +{ { echo "$as_me:16654: error: reentrant configuration requires opaque library" >&5 echo "$as_me: error: reentrant configuration requires opaque library" >&2;} { (exit 1); exit 1; }; } -echo "$as_me:16656: checking whether form library structures should be opaque" >&5 +echo "$as_me:16658: checking whether form library structures should be opaque" >&5 echo $ECHO_N "checking whether form library structures should be opaque... $ECHO_C" >&6 # Check whether --enable-opaque-form or --disable-opaque-form was given. @@ -16670,10 +16672,10 @@ enable_opaque_form=$cf_dft_opaque_curses fi; -echo "$as_me:16673: result: $enable_opaque_form" >&5 +echo "$as_me:16675: result: $enable_opaque_form" >&5 echo "${ECHO_T}$enable_opaque_form" >&6 -echo "$as_me:16676: checking whether menu library structures should be opaque" >&5 +echo "$as_me:16678: checking whether menu library structures should be opaque" >&5 echo $ECHO_N "checking whether menu library structures should be opaque... $ECHO_C" >&6 # Check whether --enable-opaque-menu or --disable-opaque-menu was given. @@ -16690,10 +16692,10 @@ enable_opaque_menu=$cf_dft_opaque_curses fi; -echo "$as_me:16693: result: $enable_opaque_menu" >&5 +echo "$as_me:16695: result: $enable_opaque_menu" >&5 echo "${ECHO_T}$enable_opaque_menu" >&6 -echo "$as_me:16696: checking whether panel library structures should be opaque" >&5 +echo "$as_me:16698: checking whether panel library structures should be opaque" >&5 echo $ECHO_N "checking whether panel library structures should be opaque... $ECHO_C" >&6 # Check whether --enable-opaque-panel or --disable-opaque-panel was given. @@ -16710,7 +16712,7 @@ enable_opaque_panel=$cf_dft_opaque_curses fi; -echo "$as_me:16713: result: $enable_opaque_panel" >&5 +echo "$as_me:16715: result: $enable_opaque_panel" >&5 echo "${ECHO_T}$enable_opaque_panel" >&6 NCURSES_OPAQUE=0; test "$enable_opaque_curses" = yes && NCURSES_OPAQUE=1 @@ -16720,7 +16722,7 @@ ### Allow using a different wrap-prefix if test "$cf_cv_enable_reentrant" != 0 || test "$BROKEN_LINKER" = 1 ; then - echo "$as_me:16723: checking for prefix used to wrap public variables" >&5 + echo "$as_me:16725: checking for prefix used to wrap public variables" >&5 echo $ECHO_N "checking for prefix used to wrap public variables... $ECHO_C" >&6 # Check whether --with-wrap-prefix or --without-wrap-prefix was given. @@ -16730,7 +16732,7 @@ else NCURSES_WRAP_PREFIX=_nc_ fi; - echo "$as_me:16733: result: $NCURSES_WRAP_PREFIX" >&5 + echo "$as_me:16735: result: $NCURSES_WRAP_PREFIX" >&5 echo "${ECHO_T}$NCURSES_WRAP_PREFIX" >&6 else NCURSES_WRAP_PREFIX=_nc_ @@ -16743,7 +16745,7 @@ ############################################################################### # These options are relatively safe to experiment with. -echo "$as_me:16746: checking if you want all development code" >&5 +echo "$as_me:16748: checking if you want all development code" >&5 echo $ECHO_N "checking if you want all development code... $ECHO_C" >&6 # Check whether --with-develop or --without-develop was given. @@ -16753,11 +16755,11 @@ else with_develop=no fi; -echo "$as_me:16756: result: $with_develop" >&5 +echo "$as_me:16758: result: $with_develop" >&5 echo "${ECHO_T}$with_develop" >&6 ### use option --enable-check-size to detect screensize with CPR -echo "$as_me:16760: checking if you want to check screensize of serial terminals" >&5 +echo "$as_me:16762: checking if you want to check screensize of serial terminals" >&5 echo $ECHO_N "checking if you want to check screensize of serial terminals... $ECHO_C" >&6 # Check whether --enable-check-size or --disable-check-size was given. @@ -16767,7 +16769,7 @@ else enable_check_size=$with_develop fi; -echo "$as_me:16770: result: $enable_check_size" >&5 +echo "$as_me:16772: result: $enable_check_size" >&5 echo "${ECHO_T}$enable_check_size" >&6 test "x$enable_check_size" = xyes && cat >>confdefs.h <<\EOF @@ -16775,7 +16777,7 @@ EOF ### use option --enable-hard-tabs to turn on use of hard-tabs optimize -echo "$as_me:16778: checking if you want hard-tabs code" >&5 +echo "$as_me:16780: checking if you want hard-tabs code" >&5 echo $ECHO_N "checking if you want hard-tabs code... $ECHO_C" >&6 # Check whether --enable-hard-tabs or --disable-hard-tabs was given. @@ -16785,7 +16787,7 @@ else enable_hard_tabs=$with_develop fi; -echo "$as_me:16788: result: $enable_hard_tabs" >&5 +echo "$as_me:16790: result: $enable_hard_tabs" >&5 echo "${ECHO_T}$enable_hard_tabs" >&6 test "x$enable_hard_tabs" = xyes && cat >>confdefs.h <<\EOF @@ -16793,7 +16795,7 @@ EOF ### use option --enable-xmc-glitch to turn on use of magic-cookie optimize -echo "$as_me:16796: checking if you want limited support for xmc" >&5 +echo "$as_me:16798: checking if you want limited support for xmc" >&5 echo $ECHO_N "checking if you want limited support for xmc... $ECHO_C" >&6 # Check whether --enable-xmc-glitch or --disable-xmc-glitch was given. @@ -16803,7 +16805,7 @@ else enable_xmc_glitch=$with_develop fi; -echo "$as_me:16806: result: $enable_xmc_glitch" >&5 +echo "$as_me:16808: result: $enable_xmc_glitch" >&5 echo "${ECHO_T}$enable_xmc_glitch" >&6 test "x$enable_xmc_glitch" = xyes && cat >>confdefs.h <<\EOF @@ -16813,7 +16815,7 @@ ############################################################################### # These are just experimental, probably should not be in a package: -echo "$as_me:16816: checking if you do not want to assume colors are white-on-black" >&5 +echo "$as_me:16818: checking if you do not want to assume colors are white-on-black" >&5 echo $ECHO_N "checking if you do not want to assume colors are white-on-black... $ECHO_C" >&6 # Check whether --enable-assumed-color or --disable-assumed-color was given. @@ -16823,7 +16825,7 @@ else with_assumed_color=yes fi; -echo "$as_me:16826: result: $with_assumed_color" >&5 +echo "$as_me:16828: result: $with_assumed_color" >&5 echo "${ECHO_T}$with_assumed_color" >&6 test "x$with_assumed_color" = xyes && cat >>confdefs.h <<\EOF @@ -16831,7 +16833,7 @@ EOF ### use option --enable-hashmap to turn on use of hashmap scrolling logic -echo "$as_me:16834: checking if you want hashmap scrolling-optimization code" >&5 +echo "$as_me:16836: checking if you want hashmap scrolling-optimization code" >&5 echo $ECHO_N "checking if you want hashmap scrolling-optimization code... $ECHO_C" >&6 # Check whether --enable-hashmap or --disable-hashmap was given. @@ -16841,7 +16843,7 @@ else with_hashmap=yes fi; -echo "$as_me:16844: result: $with_hashmap" >&5 +echo "$as_me:16846: result: $with_hashmap" >&5 echo "${ECHO_T}$with_hashmap" >&6 test "x$with_hashmap" = xyes && cat >>confdefs.h <<\EOF @@ -16849,7 +16851,7 @@ EOF ### use option --enable-colorfgbg to turn on use of $COLORFGBG environment -echo "$as_me:16852: checking if you want colorfgbg code" >&5 +echo "$as_me:16854: checking if you want colorfgbg code" >&5 echo $ECHO_N "checking if you want colorfgbg code... $ECHO_C" >&6 # Check whether --enable-colorfgbg or --disable-colorfgbg was given. @@ -16859,7 +16861,7 @@ else with_colorfgbg=no fi; -echo "$as_me:16862: result: $with_colorfgbg" >&5 +echo "$as_me:16864: result: $with_colorfgbg" >&5 echo "${ECHO_T}$with_colorfgbg" >&6 test "x$with_colorfgbg" = xyes && cat >>confdefs.h <<\EOF @@ -16867,7 +16869,7 @@ EOF ### use option --enable-fvisibility to turn on use of gcc-specific feature -echo "$as_me:16870: checking if you want to use gcc -fvisibility option" >&5 +echo "$as_me:16872: checking if you want to use gcc -fvisibility option" >&5 echo $ECHO_N "checking if you want to use gcc -fvisibility option... $ECHO_C" >&6 # Check whether --enable-fvisibility or --disable-fvisibility was given. @@ -16877,14 +16879,14 @@ else cf_with_fvisibility=no fi; -echo "$as_me:16880: result: $cf_with_fvisibility" >&5 +echo "$as_me:16882: result: $cf_with_fvisibility" >&5 echo "${ECHO_T}$cf_with_fvisibility" >&6 NCURSES_IMPEXP= NCURSES_CXX_IMPEXP= if test "x$cf_with_fvisibility" = xyes; then -echo "$as_me:16887: checking if $CC -fvisibility=hidden option works" >&5 +echo "$as_me:16889: checking if $CC -fvisibility=hidden option works" >&5 echo $ECHO_N "checking if $CC -fvisibility=hidden option works... $ECHO_C" >&6 if test "${cf_cv_fvisibility_hidden+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -16893,7 +16895,7 @@ cf_save_cflags="$CFLAGS" CFLAGS="$CFLAGS -fvisibility=hidden" cat >"conftest.$ac_ext" <<_ACEOF -#line 16896 "configure" +#line 16898 "configure" #include "confdefs.h" __attribute__ ((visibility("default"))) int somefunc() {return 42;} @@ -16909,16 +16911,16 @@ } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:16912: \"$ac_link\"") >&5 +if { (eval echo "$as_me:16914: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:16915: \$? = $ac_status" >&5 + echo "$as_me:16917: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:16918: \"$ac_try\"") >&5 + { (eval echo "$as_me:16920: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:16921: \$? = $ac_status" >&5 + echo "$as_me:16923: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_fvisibility_hidden=yes else @@ -16930,7 +16932,7 @@ CFLAGS=$cf_save_cflags fi -echo "$as_me:16933: result: $cf_cv_fvisibility_hidden" >&5 +echo "$as_me:16935: result: $cf_cv_fvisibility_hidden" >&5 echo "${ECHO_T}$cf_cv_fvisibility_hidden" >&6 if test "x$cf_cv_fvisibility_hidden" = xyes @@ -17045,7 +17047,7 @@ ac_compiler_gnu=$ac_cv_cxx_compiler_gnu ac_main_return="return" -echo "$as_me:17048: checking if $CXX -fvisibility=hidden option works" >&5 +echo "$as_me:17050: checking if $CXX -fvisibility=hidden option works" >&5 echo $ECHO_N "checking if $CXX -fvisibility=hidden option works... $ECHO_C" >&6 if test "${cf_cv_fvisibility_hidden2+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -17054,7 +17056,7 @@ cf_save_cflags="$CXXFLAGS" CXXFLAGS="$CXXFLAGS -fvisibility=hidden" cat >"conftest.$ac_ext" <<_ACEOF -#line 17057 "configure" +#line 17059 "configure" #include "confdefs.h" __attribute__ ((visibility("default"))) int somefunc() {return 42;} @@ -17070,16 +17072,16 @@ } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:17073: \"$ac_link\"") >&5 +if { (eval echo "$as_me:17075: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:17076: \$? = $ac_status" >&5 + echo "$as_me:17078: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:17079: \"$ac_try\"") >&5 + { (eval echo "$as_me:17081: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:17082: \$? = $ac_status" >&5 + echo "$as_me:17084: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_fvisibility_hidden2=yes else @@ -17091,7 +17093,7 @@ CXXFLAGS=$cf_save_cflags fi -echo "$as_me:17094: result: $cf_cv_fvisibility_hidden2" >&5 +echo "$as_me:17096: result: $cf_cv_fvisibility_hidden2" >&5 echo "${ECHO_T}$cf_cv_fvisibility_hidden2" >&6 if test "x$cf_cv_fvisibility_hidden2" = xyes @@ -17214,7 +17216,7 @@ fi ### use option --enable-interop to turn on use of bindings used for interop -echo "$as_me:17217: checking if you want interop bindings" >&5 +echo "$as_me:17219: checking if you want interop bindings" >&5 echo $ECHO_N "checking if you want interop bindings... $ECHO_C" >&6 # Check whether --enable-interop or --disable-interop was given. @@ -17224,13 +17226,13 @@ else with_exp_interop=$cf_dft_interop fi; -echo "$as_me:17227: result: $with_exp_interop" >&5 +echo "$as_me:17229: result: $with_exp_interop" >&5 echo "${ECHO_T}$with_exp_interop" >&6 NCURSES_INTEROP_FUNCS=0 test "x$with_exp_interop" = xyes && NCURSES_INTEROP_FUNCS=1 -echo "$as_me:17233: checking if you want experimental safe-sprintf code" >&5 +echo "$as_me:17235: checking if you want experimental safe-sprintf code" >&5 echo $ECHO_N "checking if you want experimental safe-sprintf code... $ECHO_C" >&6 # Check whether --enable-safe-sprintf or --disable-safe-sprintf was given. @@ -17240,13 +17242,13 @@ else with_safe_sprintf=no fi; -echo "$as_me:17243: result: $with_safe_sprintf" >&5 +echo "$as_me:17245: result: $with_safe_sprintf" >&5 echo "${ECHO_T}$with_safe_sprintf" >&6 ### use option --disable-scroll-hints to turn off use of scroll-hints scrolling logic # when hashmap is used scroll hints are useless if test "$with_hashmap" = no ; then -echo "$as_me:17249: checking if you want to experiment without scrolling-hints code" >&5 +echo "$as_me:17251: checking if you want to experiment without scrolling-hints code" >&5 echo $ECHO_N "checking if you want to experiment without scrolling-hints code... $ECHO_C" >&6 # Check whether --enable-scroll-hints or --disable-scroll-hints was given. @@ -17256,7 +17258,7 @@ else with_scroll_hints=yes fi; -echo "$as_me:17259: result: $with_scroll_hints" >&5 +echo "$as_me:17261: result: $with_scroll_hints" >&5 echo "${ECHO_T}$with_scroll_hints" >&6 test "x$with_scroll_hints" = xyes && cat >>confdefs.h <<\EOF @@ -17265,7 +17267,7 @@ fi -echo "$as_me:17268: checking if you want wgetch-events code" >&5 +echo "$as_me:17270: checking if you want wgetch-events code" >&5 echo $ECHO_N "checking if you want wgetch-events code... $ECHO_C" >&6 # Check whether --enable-wgetch-events or --disable-wgetch-events was given. @@ -17275,7 +17277,7 @@ else with_wgetch_events=no fi; -echo "$as_me:17278: result: $with_wgetch_events" >&5 +echo "$as_me:17280: result: $with_wgetch_events" >&5 echo "${ECHO_T}$with_wgetch_events" >&6 if test "x$with_wgetch_events" = xyes ; then @@ -17290,7 +17292,7 @@ case "$cf_cv_system_name" in (*mingw32*|*mingw64*|*-msvc*) - echo "$as_me:17293: checking if you want experimental-Windows driver" >&5 + echo "$as_me:17295: checking if you want experimental-Windows driver" >&5 echo $ECHO_N "checking if you want experimental-Windows driver... $ECHO_C" >&6 # Check whether --enable-exp-win32 or --disable-exp-win32 was given. @@ -17300,7 +17302,7 @@ else with_exp_win32=no fi; - echo "$as_me:17303: result: $with_exp_win32" >&5 + echo "$as_me:17305: result: $with_exp_win32" >&5 echo "${ECHO_T}$with_exp_win32" >&6 if test "x$with_exp_win32" = xyes then @@ -17326,7 +17328,7 @@ ### use option --disable-echo to suppress full display compiling commands -echo "$as_me:17329: checking if you want to see long compiling messages" >&5 +echo "$as_me:17331: checking if you want to see long compiling messages" >&5 echo $ECHO_N "checking if you want to see long compiling messages... $ECHO_C" >&6 # Check whether --enable-echo or --disable-echo was given. @@ -17360,7 +17362,7 @@ ECHO_CC='' fi; -echo "$as_me:17363: result: $enableval" >&5 +echo "$as_me:17365: result: $enableval" >&5 echo "${ECHO_T}$enableval" >&6 if test "x$enable_echo" = xyes; then @@ -17373,7 +17375,7 @@ # --disable-stripping is used for debugging -echo "$as_me:17376: checking if you want to install stripped executables" >&5 +echo "$as_me:17378: checking if you want to install stripped executables" >&5 echo $ECHO_N "checking if you want to install stripped executables... $ECHO_C" >&6 # Check whether --enable-stripping or --disable-stripping was given. @@ -17390,7 +17392,7 @@ enable_stripping=yes fi; -echo "$as_me:17393: result: $enable_stripping" >&5 +echo "$as_me:17395: result: $enable_stripping" >&5 echo "${ECHO_T}$enable_stripping" >&6 if test "$enable_stripping" = yes @@ -17401,7 +17403,7 @@ fi : "${INSTALL:=install}" -echo "$as_me:17404: checking if install accepts -p option" >&5 +echo "$as_me:17406: checking if install accepts -p option" >&5 echo $ECHO_N "checking if install accepts -p option... $ECHO_C" >&6 if test "${cf_cv_install_p+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -17432,10 +17434,10 @@ rm -rf ./conftest* fi -echo "$as_me:17435: result: $cf_cv_install_p" >&5 +echo "$as_me:17437: result: $cf_cv_install_p" >&5 echo "${ECHO_T}$cf_cv_install_p" >&6 -echo "$as_me:17438: checking if install needs to be told about ownership" >&5 +echo "$as_me:17440: checking if install needs to be told about ownership" >&5 echo $ECHO_N "checking if install needs to be told about ownership... $ECHO_C" >&6 case `$ac_config_guess` in (*minix) @@ -17446,7 +17448,7 @@ ;; esac -echo "$as_me:17449: result: $with_install_o" >&5 +echo "$as_me:17451: result: $with_install_o" >&5 echo "${ECHO_T}$with_install_o" >&6 if test "x$with_install_o" = xyes then @@ -17457,7 +17459,7 @@ if test -n "$INSTALL_OPT_S" then - echo "$as_me:17460: checking if you want to specify strip-program" >&5 + echo "$as_me:17462: checking if you want to specify strip-program" >&5 echo $ECHO_N "checking if you want to specify strip-program... $ECHO_C" >&6 # Check whether --with-strip-program or --without-strip-program was given. @@ -17467,11 +17469,11 @@ else with_strip_program=no fi; - echo "$as_me:17470: result: $with_strip_program" >&5 + echo "$as_me:17472: result: $with_strip_program" >&5 echo "${ECHO_T}$with_strip_program" >&6 if test "$with_strip_program" != no then - echo "$as_me:17474: checking if strip-program is supported with this installer" >&5 + echo "$as_me:17476: checking if strip-program is supported with this installer" >&5 echo $ECHO_N "checking if strip-program is supported with this installer... $ECHO_C" >&6 cf_install_program=`echo "$INSTALL" | sed -e 's%[ ]*[ ]-.%%'` check_install_strip=no @@ -17492,11 +17494,11 @@ done fi fi - echo "$as_me:17495: result: $check_install_strip" >&5 + echo "$as_me:17497: result: $check_install_strip" >&5 echo "${ECHO_T}$check_install_strip" >&6 case "$check_install_strip" in (no) - { echo "$as_me:17499: WARNING: $cf_install_program does not support strip program option" >&5 + { echo "$as_me:17501: WARNING: $cf_install_program does not support strip program option" >&5 echo "$as_me: WARNING: $cf_install_program does not support strip program option" >&2;} with_strip_program=no ;; @@ -17511,7 +17513,7 @@ chmod +x "$INSTALL" test -n "$verbose" && echo " created $INSTALL" 1>&6 -echo "${as_me:-configure}:17514: testing created $INSTALL ..." 1>&5 +echo "${as_me:-configure}:17516: testing created $INSTALL ..." 1>&5 ;; (option) @@ -17537,7 +17539,7 @@ ### use option --enable-warnings to turn on all gcc warnings -echo "$as_me:17540: checking if you want to use C11 _Noreturn feature" >&5 +echo "$as_me:17542: checking if you want to use C11 _Noreturn feature" >&5 echo $ECHO_N "checking if you want to use C11 _Noreturn feature... $ECHO_C" >&6 # Check whether --enable-stdnoreturn or --disable-stdnoreturn was given. @@ -17554,17 +17556,17 @@ enable_stdnoreturn=no fi; -echo "$as_me:17557: result: $enable_stdnoreturn" >&5 +echo "$as_me:17559: result: $enable_stdnoreturn" >&5 echo "${ECHO_T}$enable_stdnoreturn" >&6 if test $enable_stdnoreturn = yes; then -echo "$as_me:17561: checking for C11 _Noreturn feature" >&5 +echo "$as_me:17563: checking for C11 _Noreturn feature" >&5 echo $ECHO_N "checking for C11 _Noreturn feature... $ECHO_C" >&6 if test "${cf_cv_c11_noreturn+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >"conftest.$ac_ext" <<_ACEOF -#line 17567 "configure" +#line 17569 "configure" #include "confdefs.h" $ac_includes_default @@ -17580,16 +17582,16 @@ } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:17583: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:17585: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:17586: \$? = $ac_status" >&5 + echo "$as_me:17588: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:17589: \"$ac_try\"") >&5 + { (eval echo "$as_me:17591: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:17592: \$? = $ac_status" >&5 + echo "$as_me:17594: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_c11_noreturn=yes else @@ -17600,7 +17602,7 @@ rm -f "conftest.$ac_objext" "conftest.$ac_ext" fi -echo "$as_me:17603: result: $cf_cv_c11_noreturn" >&5 +echo "$as_me:17605: result: $cf_cv_c11_noreturn" >&5 echo "${ECHO_T}$cf_cv_c11_noreturn" >&6 else cf_cv_c11_noreturn=no, @@ -17656,16 +17658,16 @@ then test -n "$verbose" && echo " repairing CFLAGS: $CFLAGS" 1>&6 -echo "${as_me:-configure}:17659: testing repairing CFLAGS: $CFLAGS ..." 1>&5 +echo "${as_me:-configure}:17661: testing repairing CFLAGS: $CFLAGS ..." 1>&5 CFLAGS="$cf_temp_flags" test -n "$verbose" && echo " ... fixed $CFLAGS" 1>&6 -echo "${as_me:-configure}:17664: testing ... fixed $CFLAGS ..." 1>&5 +echo "${as_me:-configure}:17666: testing ... fixed $CFLAGS ..." 1>&5 test -n "$verbose" && echo " ... extra $EXTRA_CFLAGS" 1>&6 -echo "${as_me:-configure}:17668: testing ... extra $EXTRA_CFLAGS ..." 1>&5 +echo "${as_me:-configure}:17670: testing ... extra $EXTRA_CFLAGS ..." 1>&5 fi ;; @@ -17704,16 +17706,16 @@ then test -n "$verbose" && echo " repairing CPPFLAGS: $CPPFLAGS" 1>&6 -echo "${as_me:-configure}:17707: testing repairing CPPFLAGS: $CPPFLAGS ..." 1>&5 +echo "${as_me:-configure}:17709: testing repairing CPPFLAGS: $CPPFLAGS ..." 1>&5 CPPFLAGS="$cf_temp_flags" test -n "$verbose" && echo " ... fixed $CPPFLAGS" 1>&6 -echo "${as_me:-configure}:17712: testing ... fixed $CPPFLAGS ..." 1>&5 +echo "${as_me:-configure}:17714: testing ... fixed $CPPFLAGS ..." 1>&5 test -n "$verbose" && echo " ... extra $EXTRA_CFLAGS" 1>&6 -echo "${as_me:-configure}:17716: testing ... extra $EXTRA_CFLAGS ..." 1>&5 +echo "${as_me:-configure}:17718: testing ... extra $EXTRA_CFLAGS ..." 1>&5 fi ;; @@ -17752,23 +17754,23 @@ then test -n "$verbose" && echo " repairing LDFLAGS: $LDFLAGS" 1>&6 -echo "${as_me:-configure}:17755: testing repairing LDFLAGS: $LDFLAGS ..." 1>&5 +echo "${as_me:-configure}:17757: testing repairing LDFLAGS: $LDFLAGS ..." 1>&5 LDFLAGS="$cf_temp_flags" test -n "$verbose" && echo " ... fixed $LDFLAGS" 1>&6 -echo "${as_me:-configure}:17760: testing ... fixed $LDFLAGS ..." 1>&5 +echo "${as_me:-configure}:17762: testing ... fixed $LDFLAGS ..." 1>&5 test -n "$verbose" && echo " ... extra $EXTRA_CFLAGS" 1>&6 -echo "${as_me:-configure}:17764: testing ... extra $EXTRA_CFLAGS ..." 1>&5 +echo "${as_me:-configure}:17766: testing ... extra $EXTRA_CFLAGS ..." 1>&5 fi ;; esac fi -echo "$as_me:17771: checking if you want to turn on gcc warnings" >&5 +echo "$as_me:17773: checking if you want to turn on gcc warnings" >&5 echo $ECHO_N "checking if you want to turn on gcc warnings... $ECHO_C" >&6 # Check whether --enable-warnings or --disable-warnings was given. @@ -17785,7 +17787,7 @@ enable_warnings=no fi; -echo "$as_me:17788: result: $enable_warnings" >&5 +echo "$as_me:17790: result: $enable_warnings" >&5 echo "${ECHO_T}$enable_warnings" >&6 if test "$enable_warnings" = "yes" then @@ -17809,7 +17811,7 @@ done cat >"conftest.$ac_ext" <<_ACEOF -#line 17812 "configure" +#line 17814 "configure" #include "confdefs.h" $ac_includes_default @@ -17824,26 +17826,26 @@ } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:17827: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:17829: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:17830: \$? = $ac_status" >&5 + echo "$as_me:17832: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:17833: \"$ac_try\"") >&5 + { (eval echo "$as_me:17835: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:17836: \$? = $ac_status" >&5 + echo "$as_me:17838: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then -echo "$as_me:17839: checking for X11/Xt const-feature" >&5 +echo "$as_me:17841: checking for X11/Xt const-feature" >&5 echo $ECHO_N "checking for X11/Xt const-feature... $ECHO_C" >&6 if test "${cf_cv_const_x_string+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >"conftest.$ac_ext" <<_ACEOF -#line 17846 "configure" +#line 17848 "configure" #include "confdefs.h" #undef _CONST_X_STRING @@ -17861,16 +17863,16 @@ } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:17864: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:17866: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:17867: \$? = $ac_status" >&5 + echo "$as_me:17869: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:17870: \"$ac_try\"") >&5 + { (eval echo "$as_me:17872: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:17873: \$? = $ac_status" >&5 + echo "$as_me:17875: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_const_x_string=no @@ -17885,7 +17887,7 @@ rm -f "conftest.$ac_objext" "conftest.$ac_ext" fi -echo "$as_me:17888: result: $cf_cv_const_x_string" >&5 +echo "$as_me:17890: result: $cf_cv_const_x_string" >&5 echo "${ECHO_T}$cf_cv_const_x_string" >&6 LIBS="$cf_save_LIBS_CF_CONST_X_STRING" @@ -17914,7 +17916,7 @@ rm -f "conftest.$ac_objext" "conftest.$ac_ext" fi cat > "conftest.$ac_ext" <&5 + { echo "$as_me:17935: checking for $CC warning options..." >&5 echo "$as_me: checking for $CC warning options..." >&6;} cf_save_CFLAGS="$CFLAGS" EXTRA_CFLAGS="$EXTRA_CFLAGS -Wall" @@ -17946,12 +17948,12 @@ wd981 do CFLAGS="$cf_save_CFLAGS $EXTRA_CFLAGS -$cf_opt" - if { (eval echo "$as_me:17949: \"$ac_compile\"") >&5 + if { (eval echo "$as_me:17951: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:17952: \$? = $ac_status" >&5 + echo "$as_me:17954: \$? = $ac_status" >&5 (exit "$ac_status"); }; then - test -n "$verbose" && echo "$as_me:17954: result: ... -$cf_opt" >&5 + test -n "$verbose" && echo "$as_me:17956: result: ... -$cf_opt" >&5 echo "${ECHO_T}... -$cf_opt" >&6 EXTRA_CFLAGS="$EXTRA_CFLAGS -$cf_opt" fi @@ -17959,7 +17961,7 @@ CFLAGS="$cf_save_CFLAGS" elif test "$GCC" = yes && test "$GCC_VERSION" != "unknown" then - { echo "$as_me:17962: checking for $CC warning options..." >&5 + { echo "$as_me:17964: checking for $CC warning options..." >&5 echo "$as_me: checking for $CC warning options..." >&6;} cf_save_CFLAGS="$CFLAGS" cf_warn_CONST="" @@ -17982,12 +17984,12 @@ Wundef Wno-inline $cf_gcc_warnings $cf_warn_CONST Wno-unknown-pragmas Wswitch-enum do CFLAGS="$cf_save_CFLAGS $EXTRA_CFLAGS -$cf_opt" - if { (eval echo "$as_me:17985: \"$ac_compile\"") >&5 + if { (eval echo "$as_me:17987: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:17988: \$? = $ac_status" >&5 + echo "$as_me:17990: \$? = $ac_status" >&5 (exit "$ac_status"); }; then - test -n "$verbose" && echo "$as_me:17990: result: ... -$cf_opt" >&5 + test -n "$verbose" && echo "$as_me:17992: result: ... -$cf_opt" >&5 echo "${ECHO_T}... -$cf_opt" >&6 case "$cf_opt" in (Winline) @@ -17995,7 +17997,7 @@ ([34].*) test -n "$verbose" && echo " feature is broken in gcc $GCC_VERSION" 1>&6 -echo "${as_me:-configure}:17998: testing feature is broken in gcc $GCC_VERSION ..." 1>&5 +echo "${as_me:-configure}:18000: testing feature is broken in gcc $GCC_VERSION ..." 1>&5 continue;; esac @@ -18005,7 +18007,7 @@ ([12].*) test -n "$verbose" && echo " feature is broken in gcc $GCC_VERSION" 1>&6 -echo "${as_me:-configure}:18008: testing feature is broken in gcc $GCC_VERSION ..." 1>&5 +echo "${as_me:-configure}:18010: testing feature is broken in gcc $GCC_VERSION ..." 1>&5 continue;; esac @@ -18038,10 +18040,10 @@ EOF if test "$GCC" = yes then - { echo "$as_me:18041: checking for $CC __attribute__ directives..." >&5 + { echo "$as_me:18043: checking for $CC __attribute__ directives..." >&5 echo "$as_me: checking for $CC __attribute__ directives..." >&6;} cat > "conftest.$ac_ext" < #include "confdefs.h" #include "conftest.h" @@ -18091,12 +18093,12 @@ ;; esac - if { (eval echo "$as_me:18094: \"$ac_compile\"") >&5 + if { (eval echo "$as_me:18096: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:18097: \$? = $ac_status" >&5 + echo "$as_me:18099: \$? = $ac_status" >&5 (exit "$ac_status"); }; then - test -n "$verbose" && echo "$as_me:18099: result: ... $cf_attribute" >&5 + test -n "$verbose" && echo "$as_me:18101: result: ... $cf_attribute" >&5 echo "${ECHO_T}... $cf_attribute" >&6 cat conftest.h >>confdefs.h case "$cf_attribute" in @@ -18168,12 +18170,12 @@ if test "$GCC" = yes ; then case "$host_os" in (linux*|gnu*) - echo "$as_me:18171: checking if this is really Intel C++ compiler" >&5 + echo "$as_me:18173: checking if this is really Intel C++ compiler" >&5 echo $ECHO_N "checking if this is really Intel C++ compiler... $ECHO_C" >&6 cf_save_CFLAGS="$CXXFLAGS" CXXFLAGS="$CXXFLAGS -no-gcc" cat >"conftest.$ac_ext" <<_ACEOF -#line 18176 "configure" +#line 18178 "configure" #include "confdefs.h" int @@ -18190,16 +18192,16 @@ } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:18193: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:18195: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:18196: \$? = $ac_status" >&5 + echo "$as_me:18198: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:18199: \"$ac_try\"") >&5 + { (eval echo "$as_me:18201: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:18202: \$? = $ac_status" >&5 + echo "$as_me:18204: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then INTEL_CPLUSPLUS=yes cf_save_CFLAGS="$cf_save_CFLAGS -we147" @@ -18210,7 +18212,7 @@ fi rm -f "conftest.$ac_objext" "conftest.$ac_ext" CXXFLAGS="$cf_save_CFLAGS" - echo "$as_me:18213: result: $INTEL_CPLUSPLUS" >&5 + echo "$as_me:18215: result: $INTEL_CPLUSPLUS" >&5 echo "${ECHO_T}$INTEL_CPLUSPLUS" >&6 ;; esac @@ -18219,11 +18221,11 @@ CLANG_CPLUSPLUS=no if test "$GCC" = yes ; then - echo "$as_me:18222: checking if this is really Clang C++ compiler" >&5 + echo "$as_me:18224: checking if this is really Clang C++ compiler" >&5 echo $ECHO_N "checking if this is really Clang C++ compiler... $ECHO_C" >&6 cf_save_CFLAGS="$CXXFLAGS" cat >"conftest.$ac_ext" <<_ACEOF -#line 18226 "configure" +#line 18228 "configure" #include "confdefs.h" int @@ -18240,16 +18242,16 @@ } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:18243: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:18245: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:18246: \$? = $ac_status" >&5 + echo "$as_me:18248: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:18249: \"$ac_try\"") >&5 + { (eval echo "$as_me:18251: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:18252: \$? = $ac_status" >&5 + echo "$as_me:18254: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then CLANG_CPLUSPLUS=yes @@ -18259,7 +18261,7 @@ fi rm -f "conftest.$ac_objext" "conftest.$ac_ext" CXXFLAGS="$cf_save_CFLAGS" - echo "$as_me:18262: result: $CLANG_CPLUSPLUS" >&5 + echo "$as_me:18264: result: $CLANG_CPLUSPLUS" >&5 echo "${ECHO_T}$CLANG_CPLUSPLUS" >&6 fi @@ -18268,30 +18270,30 @@ if test "x$CLANG_CPLUSPLUS" = "xyes" ; then case "$CC" in (c[1-9][0-9]|*/c[1-9][0-9]) - { echo "$as_me:18271: WARNING: replacing broken compiler alias $CC" >&5 + { echo "$as_me:18273: WARNING: replacing broken compiler alias $CC" >&5 echo "$as_me: WARNING: replacing broken compiler alias $CC" >&2;} CFLAGS="$CFLAGS -std=`echo "$CC" | sed -e 's%.*/%%'`" CC=clang ;; esac - echo "$as_me:18278: checking version of $CC" >&5 + echo "$as_me:18280: checking version of $CC" >&5 echo $ECHO_N "checking version of $CC... $ECHO_C" >&6 CLANG_VERSION="`$CC --version 2>/dev/null | sed -e '2,$d' -e 's/^.*(CLANG[^)]*) //' -e 's/^.*(Debian[^)]*) //' -e 's/^[^0-9.]*//' -e 's/[^0-9.].*//'`" test -z "$CLANG_VERSION" && CLANG_VERSION=unknown - echo "$as_me:18282: result: $CLANG_VERSION" >&5 + echo "$as_me:18284: result: $CLANG_VERSION" >&5 echo "${ECHO_T}$CLANG_VERSION" >&6 for cf_clang_opt in \ -Qunused-arguments \ -Wno-error=implicit-function-declaration do - echo "$as_me:18289: checking if option $cf_clang_opt works" >&5 + echo "$as_me:18291: checking if option $cf_clang_opt works" >&5 echo $ECHO_N "checking if option $cf_clang_opt works... $ECHO_C" >&6 cf_save_CFLAGS="$CFLAGS" CFLAGS="$CFLAGS $cf_clang_opt" cat >"conftest.$ac_ext" <<_ACEOF -#line 18294 "configure" +#line 18296 "configure" #include "confdefs.h" #include @@ -18305,16 +18307,16 @@ } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:18308: \"$ac_link\"") >&5 +if { (eval echo "$as_me:18310: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:18311: \$? = $ac_status" >&5 + echo "$as_me:18313: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:18314: \"$ac_try\"") >&5 + { (eval echo "$as_me:18316: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:18317: \$? = $ac_status" >&5 + echo "$as_me:18319: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_clang_optok=yes @@ -18325,13 +18327,13 @@ cf_clang_optok=no fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" - echo "$as_me:18328: result: $cf_clang_optok" >&5 + echo "$as_me:18330: result: $cf_clang_optok" >&5 echo "${ECHO_T}$cf_clang_optok" >&6 CFLAGS="$cf_save_CFLAGS" if test "$cf_clang_optok" = yes; then test -n "$verbose" && echo " adding option $cf_clang_opt" 1>&6 -echo "${as_me:-configure}:18334: testing adding option $cf_clang_opt ..." 1>&5 +echo "${as_me:-configure}:18336: testing adding option $cf_clang_opt ..." 1>&5 test -n "$CFLAGS" && CFLAGS="$CFLAGS " CFLAGS="${CFLAGS}$cf_clang_opt" @@ -18348,7 +18350,7 @@ ac_main_return="return" cat > conftest.$ac_ext <&5 + { echo "$as_me:18371: checking for $CC warning options..." >&5 echo "$as_me: checking for $CC warning options..." >&6;} cf_save_CXXFLAGS="$CXXFLAGS" EXTRA_CXXFLAGS="-Wall" @@ -18383,12 +18385,12 @@ wd981 do CXXFLAGS="$cf_save_CXXFLAGS $EXTRA_CXXFLAGS -$cf_opt" - if { (eval echo "$as_me:18386: \"$ac_compile\"") >&5 + if { (eval echo "$as_me:18388: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:18389: \$? = $ac_status" >&5 + echo "$as_me:18391: \$? = $ac_status" >&5 (exit "$ac_status"); }; then - test -n "$verbose" && echo "$as_me:18391: result: ... -$cf_opt" >&5 + test -n "$verbose" && echo "$as_me:18393: result: ... -$cf_opt" >&5 echo "${ECHO_T}... -$cf_opt" >&6 EXTRA_CXXFLAGS="$EXTRA_CXXFLAGS -$cf_opt" fi @@ -18397,7 +18399,7 @@ elif test "$GXX" = yes then - { echo "$as_me:18400: checking for $CXX warning options..." >&5 + { echo "$as_me:18402: checking for $CXX warning options..." >&5 echo "$as_me: checking for $CXX warning options..." >&6;} cf_save_CXXFLAGS="$CXXFLAGS" EXTRA_CXXFLAGS="-W -Wall" @@ -18427,16 +18429,16 @@ Wundef $cf_gxx_extra_warnings Wno-unused do CXXFLAGS="$cf_save_CXXFLAGS $EXTRA_CXXFLAGS -Werror -$cf_opt" - if { (eval echo "$as_me:18430: \"$ac_compile\"") >&5 + if { (eval echo "$as_me:18432: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:18433: \$? = $ac_status" >&5 + echo "$as_me:18435: \$? = $ac_status" >&5 (exit "$ac_status"); }; then - test -n "$verbose" && echo "$as_me:18435: result: ... -$cf_opt" >&5 + test -n "$verbose" && echo "$as_me:18437: result: ... -$cf_opt" >&5 echo "${ECHO_T}... -$cf_opt" >&6 EXTRA_CXXFLAGS="$EXTRA_CXXFLAGS -$cf_opt" else - test -n "$verbose" && echo "$as_me:18439: result: ... no -$cf_opt" >&5 + test -n "$verbose" && echo "$as_me:18441: result: ... no -$cf_opt" >&5 echo "${ECHO_T}... no -$cf_opt" >&6 fi done @@ -18454,7 +18456,7 @@ fi fi -echo "$as_me:18457: checking if you want to work around bogus compiler/loader warnings" >&5 +echo "$as_me:18459: checking if you want to work around bogus compiler/loader warnings" >&5 echo $ECHO_N "checking if you want to work around bogus compiler/loader warnings... $ECHO_C" >&6 # Check whether --enable-string-hacks or --disable-string-hacks was given. @@ -18464,7 +18466,7 @@ else enable_string_hacks=no fi; -echo "$as_me:18467: result: $enable_string_hacks" >&5 +echo "$as_me:18469: result: $enable_string_hacks" >&5 echo "${ECHO_T}$enable_string_hacks" >&6 if test "x$enable_string_hacks" = "xyes"; then @@ -18473,15 +18475,15 @@ #define USE_STRING_HACKS 1 EOF - { echo "$as_me:18476: WARNING: enabling string-hacks to work around bogus compiler/loader warnings" >&5 + { echo "$as_me:18478: WARNING: enabling string-hacks to work around bogus compiler/loader warnings" >&5 echo "$as_me: WARNING: enabling string-hacks to work around bogus compiler/loader warnings" >&2;} - echo "$as_me:18478: checking for strlcat" >&5 + echo "$as_me:18480: checking for strlcat" >&5 echo $ECHO_N "checking for strlcat... $ECHO_C" >&6 if test "${ac_cv_func_strlcat+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >"conftest.$ac_ext" <<_ACEOF -#line 18484 "configure" +#line 18486 "configure" #include "confdefs.h" #define strlcat autoconf_temporary #include /* least-intrusive standard header which defines gcc2 __stub macros */ @@ -18512,16 +18514,16 @@ } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:18515: \"$ac_link\"") >&5 +if { (eval echo "$as_me:18517: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:18518: \$? = $ac_status" >&5 + echo "$as_me:18520: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:18521: \"$ac_try\"") >&5 + { (eval echo "$as_me:18523: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:18524: \$? = $ac_status" >&5 + echo "$as_me:18526: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_func_strlcat=yes else @@ -18531,7 +18533,7 @@ fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:18534: result: $ac_cv_func_strlcat" >&5 +echo "$as_me:18536: result: $ac_cv_func_strlcat" >&5 echo "${ECHO_T}$ac_cv_func_strlcat" >&6 if test "$ac_cv_func_strlcat" = yes; then @@ -18541,7 +18543,7 @@ else - echo "$as_me:18544: checking for strlcat in -lbsd" >&5 + echo "$as_me:18546: checking for strlcat in -lbsd" >&5 echo $ECHO_N "checking for strlcat in -lbsd... $ECHO_C" >&6 if test "${ac_cv_lib_bsd_strlcat+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -18549,7 +18551,7 @@ ac_check_lib_save_LIBS=$LIBS LIBS="-lbsd $LIBS" cat >"conftest.$ac_ext" <<_ACEOF -#line 18552 "configure" +#line 18554 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -18568,16 +18570,16 @@ } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:18571: \"$ac_link\"") >&5 +if { (eval echo "$as_me:18573: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:18574: \$? = $ac_status" >&5 + echo "$as_me:18576: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:18577: \"$ac_try\"") >&5 + { (eval echo "$as_me:18579: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:18580: \$? = $ac_status" >&5 + echo "$as_me:18582: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_lib_bsd_strlcat=yes else @@ -18588,7 +18590,7 @@ rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:18591: result: $ac_cv_lib_bsd_strlcat" >&5 +echo "$as_me:18593: result: $ac_cv_lib_bsd_strlcat" >&5 echo "${ECHO_T}$ac_cv_lib_bsd_strlcat" >&6 if test "$ac_cv_lib_bsd_strlcat" = yes; then @@ -18611,23 +18613,23 @@ for ac_header in bsd/string.h do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` -echo "$as_me:18614: checking for $ac_header" >&5 +echo "$as_me:18616: 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 18620 "configure" +#line 18622 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:18624: \"$ac_cpp "conftest.$ac_ext"\"") >&5 +if { (eval echo "$as_me:18626: \"$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:18630: \$? = $ac_status" >&5 + echo "$as_me:18632: \$? = $ac_status" >&5 (exit "$ac_status"); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -18646,7 +18648,7 @@ fi rm -f conftest.err "conftest.$ac_ext" fi -echo "$as_me:18649: result: `eval echo '${'"$as_ac_Header"'}'`" >&5 +echo "$as_me:18651: 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:18672: 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 18676 "configure" +#line 18678 "configure" #include "confdefs.h" #define $ac_func autoconf_temporary #include /* least-intrusive standard header which defines gcc2 __stub macros */ @@ -18704,16 +18706,16 @@ } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:18707: \"$ac_link\"") >&5 +if { (eval echo "$as_me:18709: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:18710: \$? = $ac_status" >&5 + echo "$as_me:18712: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:18713: \"$ac_try\"") >&5 + { (eval echo "$as_me:18715: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:18716: \$? = $ac_status" >&5 + echo "$as_me:18718: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then eval "$as_ac_var=yes" else @@ -18723,7 +18725,7 @@ fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:18726: result: `eval echo '${'"$as_ac_var"'}'`" >&5 +echo "$as_me:18728: 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:18741: checking if you want to enable runtime assertions" >&5 echo $ECHO_N "checking if you want to enable runtime assertions... $ECHO_C" >&6 # Check whether --enable-assertions or --disable-assertions was given. @@ -18746,7 +18748,7 @@ else with_assertions=no fi; -echo "$as_me:18749: result: $with_assertions" >&5 +echo "$as_me:18751: result: $with_assertions" >&5 echo "${ECHO_T}$with_assertions" >&6 if test -n "$GCC" then @@ -18762,7 +18764,7 @@ ### use option --disable-leaks to suppress "permanent" leaks, for testing -echo "$as_me:18765: checking if you want to use dmalloc for testing" >&5 +echo "$as_me:18767: checking if you want to use dmalloc for testing" >&5 echo $ECHO_N "checking if you want to use dmalloc for testing... $ECHO_C" >&6 # Check whether --with-dmalloc or --without-dmalloc was given. @@ -18784,7 +18786,7 @@ else with_dmalloc= fi; -echo "$as_me:18787: result: ${with_dmalloc:-no}" >&5 +echo "$as_me:18789: result: ${with_dmalloc:-no}" >&5 echo "${ECHO_T}${with_dmalloc:-no}" >&6 case ".$with_cflags" in @@ -18898,23 +18900,23 @@ esac if test "$with_dmalloc" = yes ; then - echo "$as_me:18901: checking for dmalloc.h" >&5 + echo "$as_me:18903: checking for dmalloc.h" >&5 echo $ECHO_N "checking for dmalloc.h... $ECHO_C" >&6 if test "${ac_cv_header_dmalloc_h+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >"conftest.$ac_ext" <<_ACEOF -#line 18907 "configure" +#line 18909 "configure" #include "confdefs.h" #include _ACEOF -if { (eval echo "$as_me:18911: \"$ac_cpp "conftest.$ac_ext"\"") >&5 +if { (eval echo "$as_me:18913: \"$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:18917: \$? = $ac_status" >&5 + echo "$as_me:18919: \$? = $ac_status" >&5 (exit "$ac_status"); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -18933,11 +18935,11 @@ fi rm -f conftest.err "conftest.$ac_ext" fi -echo "$as_me:18936: result: $ac_cv_header_dmalloc_h" >&5 +echo "$as_me:18938: result: $ac_cv_header_dmalloc_h" >&5 echo "${ECHO_T}$ac_cv_header_dmalloc_h" >&6 if test "$ac_cv_header_dmalloc_h" = yes; then -echo "$as_me:18940: checking for dmalloc_debug in -ldmalloc" >&5 +echo "$as_me:18942: checking for dmalloc_debug in -ldmalloc" >&5 echo $ECHO_N "checking for dmalloc_debug in -ldmalloc... $ECHO_C" >&6 if test "${ac_cv_lib_dmalloc_dmalloc_debug+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -18945,7 +18947,7 @@ ac_check_lib_save_LIBS=$LIBS LIBS="-ldmalloc $LIBS" cat >"conftest.$ac_ext" <<_ACEOF -#line 18948 "configure" +#line 18950 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -18964,16 +18966,16 @@ } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:18967: \"$ac_link\"") >&5 +if { (eval echo "$as_me:18969: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:18970: \$? = $ac_status" >&5 + echo "$as_me:18972: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:18973: \"$ac_try\"") >&5 + { (eval echo "$as_me:18975: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:18976: \$? = $ac_status" >&5 + echo "$as_me:18978: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_lib_dmalloc_dmalloc_debug=yes else @@ -18984,7 +18986,7 @@ rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:18987: result: $ac_cv_lib_dmalloc_dmalloc_debug" >&5 +echo "$as_me:18989: result: $ac_cv_lib_dmalloc_dmalloc_debug" >&5 echo "${ECHO_T}$ac_cv_lib_dmalloc_dmalloc_debug" >&6 if test "$ac_cv_lib_dmalloc_dmalloc_debug" = yes; then cat >>confdefs.h <&5 +echo "$as_me:19004: checking if you want to use dbmalloc for testing" >&5 echo $ECHO_N "checking if you want to use dbmalloc for testing... $ECHO_C" >&6 # Check whether --with-dbmalloc or --without-dbmalloc was given. @@ -19021,7 +19023,7 @@ else with_dbmalloc= fi; -echo "$as_me:19024: result: ${with_dbmalloc:-no}" >&5 +echo "$as_me:19026: result: ${with_dbmalloc:-no}" >&5 echo "${ECHO_T}${with_dbmalloc:-no}" >&6 case ".$with_cflags" in @@ -19135,23 +19137,23 @@ esac if test "$with_dbmalloc" = yes ; then - echo "$as_me:19138: checking for dbmalloc.h" >&5 + echo "$as_me:19140: checking for dbmalloc.h" >&5 echo $ECHO_N "checking for dbmalloc.h... $ECHO_C" >&6 if test "${ac_cv_header_dbmalloc_h+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >"conftest.$ac_ext" <<_ACEOF -#line 19144 "configure" +#line 19146 "configure" #include "confdefs.h" #include _ACEOF -if { (eval echo "$as_me:19148: \"$ac_cpp "conftest.$ac_ext"\"") >&5 +if { (eval echo "$as_me:19150: \"$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:19154: \$? = $ac_status" >&5 + echo "$as_me:19156: \$? = $ac_status" >&5 (exit "$ac_status"); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -19170,11 +19172,11 @@ fi rm -f conftest.err "conftest.$ac_ext" fi -echo "$as_me:19173: result: $ac_cv_header_dbmalloc_h" >&5 +echo "$as_me:19175: result: $ac_cv_header_dbmalloc_h" >&5 echo "${ECHO_T}$ac_cv_header_dbmalloc_h" >&6 if test "$ac_cv_header_dbmalloc_h" = yes; then -echo "$as_me:19177: checking for debug_malloc in -ldbmalloc" >&5 +echo "$as_me:19179: checking for debug_malloc in -ldbmalloc" >&5 echo $ECHO_N "checking for debug_malloc in -ldbmalloc... $ECHO_C" >&6 if test "${ac_cv_lib_dbmalloc_debug_malloc+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -19182,7 +19184,7 @@ ac_check_lib_save_LIBS=$LIBS LIBS="-ldbmalloc $LIBS" cat >"conftest.$ac_ext" <<_ACEOF -#line 19185 "configure" +#line 19187 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -19201,16 +19203,16 @@ } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:19204: \"$ac_link\"") >&5 +if { (eval echo "$as_me:19206: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:19207: \$? = $ac_status" >&5 + echo "$as_me:19209: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:19210: \"$ac_try\"") >&5 + { (eval echo "$as_me:19212: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:19213: \$? = $ac_status" >&5 + echo "$as_me:19215: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_lib_dbmalloc_debug_malloc=yes else @@ -19221,7 +19223,7 @@ rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:19224: result: $ac_cv_lib_dbmalloc_debug_malloc" >&5 +echo "$as_me:19226: result: $ac_cv_lib_dbmalloc_debug_malloc" >&5 echo "${ECHO_T}$ac_cv_lib_dbmalloc_debug_malloc" >&6 if test "$ac_cv_lib_dbmalloc_debug_malloc" = yes; then cat >>confdefs.h <&5 +echo "$as_me:19241: checking if you want to use valgrind for testing" >&5 echo $ECHO_N "checking if you want to use valgrind for testing... $ECHO_C" >&6 # Check whether --with-valgrind or --without-valgrind was given. @@ -19258,7 +19260,7 @@ else with_valgrind= fi; -echo "$as_me:19261: result: ${with_valgrind:-no}" >&5 +echo "$as_me:19263: result: ${with_valgrind:-no}" >&5 echo "${ECHO_T}${with_valgrind:-no}" >&6 case ".$with_cflags" in @@ -19371,7 +19373,7 @@ ;; esac -echo "$as_me:19374: checking if you want to perform memory-leak testing" >&5 +echo "$as_me:19376: checking if you want to perform memory-leak testing" >&5 echo $ECHO_N "checking if you want to perform memory-leak testing... $ECHO_C" >&6 # Check whether --enable-leaks or --disable-leaks was given. @@ -19382,7 +19384,7 @@ enable_leaks=yes fi; if test "x$enable_leaks" = xno; then with_no_leaks=yes; else with_no_leaks=no; fi -echo "$as_me:19385: result: $with_no_leaks" >&5 +echo "$as_me:19387: result: $with_no_leaks" >&5 echo "${ECHO_T}$with_no_leaks" >&6 if test "$enable_leaks" = no ; then @@ -19434,7 +19436,7 @@ ;; esac -echo "$as_me:19437: checking whether to add trace feature to all models" >&5 +echo "$as_me:19439: checking whether to add trace feature to all models" >&5 echo $ECHO_N "checking whether to add trace feature to all models... $ECHO_C" >&6 # Check whether --with-trace or --without-trace was given. @@ -19444,7 +19446,7 @@ else cf_with_trace=$cf_all_traces fi; -echo "$as_me:19447: result: $cf_with_trace" >&5 +echo "$as_me:19449: result: $cf_with_trace" >&5 echo "${ECHO_T}$cf_with_trace" >&6 if test "x$cf_with_trace" = xyes ; then @@ -19464,7 +19466,7 @@ ADA_TRACE=FALSE fi -echo "$as_me:19467: checking if we want to use GNAT projects" >&5 +echo "$as_me:19469: checking if we want to use GNAT projects" >&5 echo $ECHO_N "checking if we want to use GNAT projects... $ECHO_C" >&6 # Check whether --enable-gnat-projects or --disable-gnat-projects was given. @@ -19481,7 +19483,7 @@ enable_gnat_projects=yes fi; -echo "$as_me:19484: result: $enable_gnat_projects" >&5 +echo "$as_me:19486: result: $enable_gnat_projects" >&5 echo "${ECHO_T}$enable_gnat_projects" >&6 ### Checks for libraries. @@ -19494,14 +19496,14 @@ CPPFLAGS="$CPPFLAGS -DWINVER=0x0501 -DWIN32_LEAN_AND_MEAN" fi -echo "$as_me:19497: checking if ssp library is needed" >&5 +echo "$as_me:19499: checking if ssp library is needed" >&5 echo $ECHO_N "checking if ssp library is needed... $ECHO_C" >&6 if test "${cf_cv_need_libssp+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >"conftest.$ac_ext" <<_ACEOF -#line 19504 "configure" +#line 19506 "configure" #include "confdefs.h" #include @@ -19518,16 +19520,16 @@ } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:19521: \"$ac_link\"") >&5 +if { (eval echo "$as_me:19523: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:19524: \$? = $ac_status" >&5 + echo "$as_me:19526: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:19527: \"$ac_try\"") >&5 + { (eval echo "$as_me:19529: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:19530: \$? = $ac_status" >&5 + echo "$as_me:19532: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_need_libssp=no else @@ -19537,7 +19539,7 @@ cf_save_LIBS="$LIBS" LIBS="$LIBS -lssp" cat >"conftest.$ac_ext" <<_ACEOF -#line 19540 "configure" +#line 19542 "configure" #include "confdefs.h" #include @@ -19554,16 +19556,16 @@ } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:19557: \"$ac_link\"") >&5 +if { (eval echo "$as_me:19559: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:19560: \$? = $ac_status" >&5 + echo "$as_me:19562: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:19563: \"$ac_try\"") >&5 + { (eval echo "$as_me:19565: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:19566: \$? = $ac_status" >&5 + echo "$as_me:19568: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_need_libssp=yes else @@ -19577,7 +19579,7 @@ fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:19580: result: $cf_cv_need_libssp" >&5 +echo "$as_me:19582: result: $cf_cv_need_libssp" >&5 echo "${ECHO_T}$cf_cv_need_libssp" >&6 if test "x$cf_cv_need_libssp" = xyes @@ -19606,14 +19608,14 @@ ;; esac -echo "$as_me:19609: checking if -lm needed for math functions" >&5 +echo "$as_me:19611: checking if -lm needed for math functions" >&5 echo $ECHO_N "checking if -lm needed for math functions... $ECHO_C" >&6 if test "${cf_cv_need_libm+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >"conftest.$ac_ext" <<_ACEOF -#line 19616 "configure" +#line 19618 "configure" #include "confdefs.h" #include @@ -19629,16 +19631,16 @@ } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:19632: \"$ac_link\"") >&5 +if { (eval echo "$as_me:19634: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:19635: \$? = $ac_status" >&5 + echo "$as_me:19637: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:19638: \"$ac_try\"") >&5 + { (eval echo "$as_me:19640: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:19641: \$? = $ac_status" >&5 + echo "$as_me:19643: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_need_libm=no else @@ -19648,7 +19650,7 @@ fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:19651: result: $cf_cv_need_libm" >&5 +echo "$as_me:19653: result: $cf_cv_need_libm" >&5 echo "${ECHO_T}$cf_cv_need_libm" >&6 if test "$cf_cv_need_libm" = yes @@ -19656,14 +19658,14 @@ cf_save_LIBS="$LIBS" LIBS="$LIBS -lm" - echo "$as_me:19659: checking if -lm is available for math functions" >&5 + echo "$as_me:19661: checking if -lm is available for math functions" >&5 echo $ECHO_N "checking if -lm is available for math functions... $ECHO_C" >&6 if test "${cf_cv_have_libm+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >"conftest.$ac_ext" <<_ACEOF -#line 19666 "configure" +#line 19668 "configure" #include "confdefs.h" #include @@ -19679,16 +19681,16 @@ } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:19682: \"$ac_link\"") >&5 +if { (eval echo "$as_me:19684: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:19685: \$? = $ac_status" >&5 + echo "$as_me:19687: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:19688: \"$ac_try\"") >&5 + { (eval echo "$as_me:19690: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:19691: \$? = $ac_status" >&5 + echo "$as_me:19693: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_have_libm=yes else @@ -19698,7 +19700,7 @@ fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:19701: result: $cf_cv_have_libm" >&5 +echo "$as_me:19703: result: $cf_cv_have_libm" >&5 echo "${ECHO_T}$cf_cv_have_libm" >&6 LIBS="$cf_save_LIBS" @@ -19720,13 +19722,13 @@ fi ### Checks for header files. -echo "$as_me:19723: checking whether time.h and sys/time.h may both be included" >&5 +echo "$as_me:19725: checking whether time.h and sys/time.h may both be included" >&5 echo $ECHO_N "checking whether time.h and sys/time.h may both be included... $ECHO_C" >&6 if test "${ac_cv_header_time+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >"conftest.$ac_ext" <<_ACEOF -#line 19729 "configure" +#line 19731 "configure" #include "confdefs.h" #include #include @@ -19742,16 +19744,16 @@ } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:19745: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:19747: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:19748: \$? = $ac_status" >&5 + echo "$as_me:19750: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:19751: \"$ac_try\"") >&5 + { (eval echo "$as_me:19753: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:19754: \$? = $ac_status" >&5 + echo "$as_me:19756: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_header_time=yes else @@ -19761,7 +19763,7 @@ fi rm -f "conftest.$ac_objext" "conftest.$ac_ext" fi -echo "$as_me:19764: result: $ac_cv_header_time" >&5 +echo "$as_me:19766: result: $ac_cv_header_time" >&5 echo "${ECHO_T}$ac_cv_header_time" >&6 if test $ac_cv_header_time = yes; then @@ -19776,7 +19778,7 @@ case "$host_os" in (mingw*) # -lsystre -ltre -lintl -liconv - echo "$as_me:19779: checking for regcomp in -lsystre" >&5 + echo "$as_me:19781: checking for regcomp in -lsystre" >&5 echo $ECHO_N "checking for regcomp in -lsystre... $ECHO_C" >&6 if test "${ac_cv_lib_systre_regcomp+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -19784,7 +19786,7 @@ ac_check_lib_save_LIBS=$LIBS LIBS="-lsystre $LIBS" cat >"conftest.$ac_ext" <<_ACEOF -#line 19787 "configure" +#line 19789 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -19803,16 +19805,16 @@ } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:19806: \"$ac_link\"") >&5 +if { (eval echo "$as_me:19808: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:19809: \$? = $ac_status" >&5 + echo "$as_me:19811: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:19812: \"$ac_try\"") >&5 + { (eval echo "$as_me:19814: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:19815: \$? = $ac_status" >&5 + echo "$as_me:19817: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_lib_systre_regcomp=yes else @@ -19823,11 +19825,11 @@ rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:19826: result: $ac_cv_lib_systre_regcomp" >&5 +echo "$as_me:19828: result: $ac_cv_lib_systre_regcomp" >&5 echo "${ECHO_T}$ac_cv_lib_systre_regcomp" >&6 if test "$ac_cv_lib_systre_regcomp" = yes; then - echo "$as_me:19830: checking for libiconv_open in -liconv" >&5 + echo "$as_me:19832: checking for libiconv_open in -liconv" >&5 echo $ECHO_N "checking for libiconv_open in -liconv... $ECHO_C" >&6 if test "${ac_cv_lib_iconv_libiconv_open+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -19835,7 +19837,7 @@ ac_check_lib_save_LIBS=$LIBS LIBS="-liconv $LIBS" cat >"conftest.$ac_ext" <<_ACEOF -#line 19838 "configure" +#line 19840 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -19854,16 +19856,16 @@ } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:19857: \"$ac_link\"") >&5 +if { (eval echo "$as_me:19859: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:19860: \$? = $ac_status" >&5 + echo "$as_me:19862: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:19863: \"$ac_try\"") >&5 + { (eval echo "$as_me:19865: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:19866: \$? = $ac_status" >&5 + echo "$as_me:19868: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_lib_iconv_libiconv_open=yes else @@ -19874,7 +19876,7 @@ rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:19877: result: $ac_cv_lib_iconv_libiconv_open" >&5 +echo "$as_me:19879: result: $ac_cv_lib_iconv_libiconv_open" >&5 echo "${ECHO_T}$ac_cv_lib_iconv_libiconv_open" >&6 if test "$ac_cv_lib_iconv_libiconv_open" = yes; then @@ -19896,7 +19898,7 @@ fi - echo "$as_me:19899: checking for libintl_gettext in -lintl" >&5 + echo "$as_me:19901: checking for libintl_gettext in -lintl" >&5 echo $ECHO_N "checking for libintl_gettext in -lintl... $ECHO_C" >&6 if test "${ac_cv_lib_intl_libintl_gettext+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -19904,7 +19906,7 @@ ac_check_lib_save_LIBS=$LIBS LIBS="-lintl $LIBS" cat >"conftest.$ac_ext" <<_ACEOF -#line 19907 "configure" +#line 19909 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -19923,16 +19925,16 @@ } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:19926: \"$ac_link\"") >&5 +if { (eval echo "$as_me:19928: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:19929: \$? = $ac_status" >&5 + echo "$as_me:19931: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:19932: \"$ac_try\"") >&5 + { (eval echo "$as_me:19934: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:19935: \$? = $ac_status" >&5 + echo "$as_me:19937: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_lib_intl_libintl_gettext=yes else @@ -19943,7 +19945,7 @@ rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:19946: result: $ac_cv_lib_intl_libintl_gettext" >&5 +echo "$as_me:19948: result: $ac_cv_lib_intl_libintl_gettext" >&5 echo "${ECHO_T}$ac_cv_lib_intl_libintl_gettext" >&6 if test "$ac_cv_lib_intl_libintl_gettext" = yes; then @@ -19965,7 +19967,7 @@ fi - echo "$as_me:19968: checking for tre_regcomp in -ltre" >&5 + echo "$as_me:19970: checking for tre_regcomp in -ltre" >&5 echo $ECHO_N "checking for tre_regcomp in -ltre... $ECHO_C" >&6 if test "${ac_cv_lib_tre_tre_regcomp+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -19973,7 +19975,7 @@ ac_check_lib_save_LIBS=$LIBS LIBS="-ltre $LIBS" cat >"conftest.$ac_ext" <<_ACEOF -#line 19976 "configure" +#line 19978 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -19992,16 +19994,16 @@ } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:19995: \"$ac_link\"") >&5 +if { (eval echo "$as_me:19997: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:19998: \$? = $ac_status" >&5 + echo "$as_me:20000: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:20001: \"$ac_try\"") >&5 + { (eval echo "$as_me:20003: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:20004: \$? = $ac_status" >&5 + echo "$as_me:20006: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_lib_tre_tre_regcomp=yes else @@ -20012,7 +20014,7 @@ rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:20015: result: $ac_cv_lib_tre_tre_regcomp" >&5 +echo "$as_me:20017: result: $ac_cv_lib_tre_tre_regcomp" >&5 echo "${ECHO_T}$ac_cv_lib_tre_tre_regcomp" >&6 if test "$ac_cv_lib_tre_tre_regcomp" = yes; then @@ -20054,7 +20056,7 @@ else - echo "$as_me:20057: checking for regcomp in -lgnurx" >&5 + echo "$as_me:20059: checking for regcomp in -lgnurx" >&5 echo $ECHO_N "checking for regcomp in -lgnurx... $ECHO_C" >&6 if test "${ac_cv_lib_gnurx_regcomp+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -20062,7 +20064,7 @@ ac_check_lib_save_LIBS=$LIBS LIBS="-lgnurx $LIBS" cat >"conftest.$ac_ext" <<_ACEOF -#line 20065 "configure" +#line 20067 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -20081,16 +20083,16 @@ } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:20084: \"$ac_link\"") >&5 +if { (eval echo "$as_me:20086: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:20087: \$? = $ac_status" >&5 + echo "$as_me:20089: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:20090: \"$ac_try\"") >&5 + { (eval echo "$as_me:20092: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:20093: \$? = $ac_status" >&5 + echo "$as_me:20095: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_lib_gnurx_regcomp=yes else @@ -20101,7 +20103,7 @@ rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:20104: result: $ac_cv_lib_gnurx_regcomp" >&5 +echo "$as_me:20106: result: $ac_cv_lib_gnurx_regcomp" >&5 echo "${ECHO_T}$ac_cv_lib_gnurx_regcomp" >&6 if test "$ac_cv_lib_gnurx_regcomp" = yes; then @@ -20129,13 +20131,13 @@ ;; (*) cf_regex_libs="regex re" - echo "$as_me:20132: checking for regcomp" >&5 + echo "$as_me:20134: checking for regcomp" >&5 echo $ECHO_N "checking for regcomp... $ECHO_C" >&6 if test "${ac_cv_func_regcomp+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >"conftest.$ac_ext" <<_ACEOF -#line 20138 "configure" +#line 20140 "configure" #include "confdefs.h" #define regcomp autoconf_temporary #include /* least-intrusive standard header which defines gcc2 __stub macros */ @@ -20166,16 +20168,16 @@ } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:20169: \"$ac_link\"") >&5 +if { (eval echo "$as_me:20171: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:20172: \$? = $ac_status" >&5 + echo "$as_me:20174: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:20175: \"$ac_try\"") >&5 + { (eval echo "$as_me:20177: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:20178: \$? = $ac_status" >&5 + echo "$as_me:20180: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_func_regcomp=yes else @@ -20185,7 +20187,7 @@ fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:20188: result: $ac_cv_func_regcomp" >&5 +echo "$as_me:20190: result: $ac_cv_func_regcomp" >&5 echo "${ECHO_T}$ac_cv_func_regcomp" >&6 if test "$ac_cv_func_regcomp" = yes; then cf_regex_func=regcomp @@ -20194,7 +20196,7 @@ for cf_regex_lib in $cf_regex_libs do as_ac_Lib=`echo "ac_cv_lib_$cf_regex_lib''_regcomp" | $as_tr_sh` -echo "$as_me:20197: checking for regcomp in -l$cf_regex_lib" >&5 +echo "$as_me:20199: checking for regcomp in -l$cf_regex_lib" >&5 echo $ECHO_N "checking for regcomp in -l$cf_regex_lib... $ECHO_C" >&6 if eval "test \"\${$as_ac_Lib+set}\" = set"; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -20202,7 +20204,7 @@ ac_check_lib_save_LIBS=$LIBS LIBS="-l$cf_regex_lib $LIBS" cat >"conftest.$ac_ext" <<_ACEOF -#line 20205 "configure" +#line 20207 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -20221,16 +20223,16 @@ } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:20224: \"$ac_link\"") >&5 +if { (eval echo "$as_me:20226: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:20227: \$? = $ac_status" >&5 + echo "$as_me:20229: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:20230: \"$ac_try\"") >&5 + { (eval echo "$as_me:20232: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:20233: \$? = $ac_status" >&5 + echo "$as_me:20235: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then eval "$as_ac_Lib=yes" else @@ -20241,7 +20243,7 @@ rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:20244: result: `eval echo '${'"$as_ac_Lib"'}'`" >&5 +echo "$as_me:20246: result: `eval echo '${'"$as_ac_Lib"'}'`" >&5 echo "${ECHO_T}`eval echo '${'"$as_ac_Lib"'}'`" >&6 if test "`eval echo '${'"$as_ac_Lib"'}'`" = yes; then @@ -20273,13 +20275,13 @@ esac if test "$cf_regex_func" = no ; then - echo "$as_me:20276: checking for compile" >&5 + echo "$as_me:20278: checking for compile" >&5 echo $ECHO_N "checking for compile... $ECHO_C" >&6 if test "${ac_cv_func_compile+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >"conftest.$ac_ext" <<_ACEOF -#line 20282 "configure" +#line 20284 "configure" #include "confdefs.h" #define compile autoconf_temporary #include /* least-intrusive standard header which defines gcc2 __stub macros */ @@ -20310,16 +20312,16 @@ } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:20313: \"$ac_link\"") >&5 +if { (eval echo "$as_me:20315: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:20316: \$? = $ac_status" >&5 + echo "$as_me:20318: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:20319: \"$ac_try\"") >&5 + { (eval echo "$as_me:20321: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:20322: \$? = $ac_status" >&5 + echo "$as_me:20324: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_func_compile=yes else @@ -20329,13 +20331,13 @@ fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:20332: result: $ac_cv_func_compile" >&5 +echo "$as_me:20334: result: $ac_cv_func_compile" >&5 echo "${ECHO_T}$ac_cv_func_compile" >&6 if test "$ac_cv_func_compile" = yes; then cf_regex_func=compile else - echo "$as_me:20338: checking for compile in -lgen" >&5 + echo "$as_me:20340: checking for compile in -lgen" >&5 echo $ECHO_N "checking for compile in -lgen... $ECHO_C" >&6 if test "${ac_cv_lib_gen_compile+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -20343,7 +20345,7 @@ ac_check_lib_save_LIBS=$LIBS LIBS="-lgen $LIBS" cat >"conftest.$ac_ext" <<_ACEOF -#line 20346 "configure" +#line 20348 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -20362,16 +20364,16 @@ } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:20365: \"$ac_link\"") >&5 +if { (eval echo "$as_me:20367: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:20368: \$? = $ac_status" >&5 + echo "$as_me:20370: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:20371: \"$ac_try\"") >&5 + { (eval echo "$as_me:20373: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:20374: \$? = $ac_status" >&5 + echo "$as_me:20376: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_lib_gen_compile=yes else @@ -20382,7 +20384,7 @@ rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:20385: result: $ac_cv_lib_gen_compile" >&5 +echo "$as_me:20387: result: $ac_cv_lib_gen_compile" >&5 echo "${ECHO_T}$ac_cv_lib_gen_compile" >&6 if test "$ac_cv_lib_gen_compile" = yes; then @@ -20410,11 +20412,11 @@ fi if test "$cf_regex_func" = no ; then - { echo "$as_me:20413: WARNING: cannot find regular expression library" >&5 + { echo "$as_me:20415: WARNING: cannot find regular expression library" >&5 echo "$as_me: WARNING: cannot find regular expression library" >&2;} fi -echo "$as_me:20417: checking for regular-expression headers" >&5 +echo "$as_me:20419: checking for regular-expression headers" >&5 echo $ECHO_N "checking for regular-expression headers... $ECHO_C" >&6 if test "${cf_cv_regex_hdrs+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -20426,7 +20428,7 @@ for cf_regex_hdr in regexp.h regexpr.h do cat >"conftest.$ac_ext" <<_ACEOF -#line 20429 "configure" +#line 20431 "configure" #include "confdefs.h" #include <$cf_regex_hdr> int @@ -20443,16 +20445,16 @@ } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:20446: \"$ac_link\"") >&5 +if { (eval echo "$as_me:20448: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:20449: \$? = $ac_status" >&5 + echo "$as_me:20451: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:20452: \"$ac_try\"") >&5 + { (eval echo "$as_me:20454: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:20455: \$? = $ac_status" >&5 + echo "$as_me:20457: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_regex_hdrs=$cf_regex_hdr @@ -20469,7 +20471,7 @@ for cf_regex_hdr in regex.h do cat >"conftest.$ac_ext" <<_ACEOF -#line 20472 "configure" +#line 20474 "configure" #include "confdefs.h" #include #include @@ -20490,16 +20492,16 @@ } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:20493: \"$ac_link\"") >&5 +if { (eval echo "$as_me:20495: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:20496: \$? = $ac_status" >&5 + echo "$as_me:20498: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:20499: \"$ac_try\"") >&5 + { (eval echo "$as_me:20501: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:20502: \$? = $ac_status" >&5 + echo "$as_me:20504: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_regex_hdrs=$cf_regex_hdr @@ -20515,11 +20517,11 @@ esac fi -echo "$as_me:20518: result: $cf_cv_regex_hdrs" >&5 +echo "$as_me:20520: result: $cf_cv_regex_hdrs" >&5 echo "${ECHO_T}$cf_cv_regex_hdrs" >&6 case "$cf_cv_regex_hdrs" in - (no) { echo "$as_me:20522: WARNING: no regular expression header found" >&5 + (no) { echo "$as_me:20524: WARNING: no regular expression header found" >&5 echo "$as_me: WARNING: no regular expression header found" >&2;} ;; (regex.h) cat >>confdefs.h <<\EOF @@ -20557,23 +20559,23 @@ do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` -echo "$as_me:20560: checking for $ac_header" >&5 +echo "$as_me:20562: 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 20566 "configure" +#line 20568 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:20570: \"$ac_cpp "conftest.$ac_ext"\"") >&5 +if { (eval echo "$as_me:20572: \"$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:20576: \$? = $ac_status" >&5 + echo "$as_me:20578: \$? = $ac_status" >&5 (exit "$ac_status"); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -20592,7 +20594,7 @@ fi rm -f conftest.err "conftest.$ac_ext" fi -echo "$as_me:20595: result: `eval echo '${'"$as_ac_Header"'}'`" >&5 +echo "$as_me:20597: 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:20610: 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 20614 "configure" +#line 20616 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:20618: \"$ac_cpp "conftest.$ac_ext"\"") >&5 +if { (eval echo "$as_me:20620: \"$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:20624: \$? = $ac_status" >&5 + echo "$as_me:20626: \$? = $ac_status" >&5 (exit "$ac_status"); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -20640,7 +20642,7 @@ fi rm -f conftest.err "conftest.$ac_ext" fi -echo "$as_me:20643: result: `eval echo '${'"$as_ac_Header"'}'`" >&5 +echo "$as_me:20645: 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:20655: checking for header declaring getopt variables" >&5 echo $ECHO_N "checking for header declaring getopt variables... $ECHO_C" >&6 if test "${cf_cv_getopt_header+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -20660,7 +20662,7 @@ for cf_header in stdio.h stdlib.h unistd.h getopt.h do cat >"conftest.$ac_ext" <<_ACEOF -#line 20663 "configure" +#line 20665 "configure" #include "confdefs.h" #include <$cf_header> @@ -20673,16 +20675,16 @@ } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:20676: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:20678: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:20679: \$? = $ac_status" >&5 + echo "$as_me:20681: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:20682: \"$ac_try\"") >&5 + { (eval echo "$as_me:20684: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:20685: \$? = $ac_status" >&5 + echo "$as_me:20687: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_getopt_header=$cf_header break @@ -20694,7 +20696,7 @@ done fi -echo "$as_me:20697: result: $cf_cv_getopt_header" >&5 +echo "$as_me:20699: result: $cf_cv_getopt_header" >&5 echo "${ECHO_T}$cf_cv_getopt_header" >&6 if test "$cf_cv_getopt_header" != none ; then @@ -20711,14 +20713,14 @@ fi -echo "$as_me:20714: checking if external environ is declared" >&5 +echo "$as_me:20716: checking if external environ is declared" >&5 echo $ECHO_N "checking if external environ is declared... $ECHO_C" >&6 if test "${cf_cv_dcl_environ+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >"conftest.$ac_ext" <<_ACEOF -#line 20721 "configure" +#line 20723 "configure" #include "confdefs.h" $ac_includes_default @@ -20731,16 +20733,16 @@ } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:20734: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:20736: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:20737: \$? = $ac_status" >&5 + echo "$as_me:20739: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:20740: \"$ac_try\"") >&5 + { (eval echo "$as_me:20742: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:20743: \$? = $ac_status" >&5 + echo "$as_me:20745: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_dcl_environ=yes else @@ -20751,7 +20753,7 @@ rm -f "conftest.$ac_objext" "conftest.$ac_ext" fi -echo "$as_me:20754: result: $cf_cv_dcl_environ" >&5 +echo "$as_me:20756: result: $cf_cv_dcl_environ" >&5 echo "${ECHO_T}$cf_cv_dcl_environ" >&6 if test "$cf_cv_dcl_environ" = no ; then @@ -20766,14 +20768,14 @@ # It's possible (for near-UNIX clones) that the data doesn't exist -echo "$as_me:20769: checking if external environ exists" >&5 +echo "$as_me:20771: checking if external environ exists" >&5 echo $ECHO_N "checking if external environ exists... $ECHO_C" >&6 if test "${cf_cv_have_environ+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >"conftest.$ac_ext" <<_ACEOF -#line 20776 "configure" +#line 20778 "configure" #include "confdefs.h" #undef environ @@ -20788,16 +20790,16 @@ } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:20791: \"$ac_link\"") >&5 +if { (eval echo "$as_me:20793: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:20794: \$? = $ac_status" >&5 + echo "$as_me:20796: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:20797: \"$ac_try\"") >&5 + { (eval echo "$as_me:20799: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:20800: \$? = $ac_status" >&5 + echo "$as_me:20802: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_have_environ=yes else @@ -20808,7 +20810,7 @@ rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:20811: result: $cf_cv_have_environ" >&5 +echo "$as_me:20813: result: $cf_cv_have_environ" >&5 echo "${ECHO_T}$cf_cv_have_environ" >&6 if test "$cf_cv_have_environ" = yes ; then @@ -20821,13 +20823,13 @@ fi -echo "$as_me:20824: checking for getenv" >&5 +echo "$as_me:20826: checking for getenv" >&5 echo $ECHO_N "checking for getenv... $ECHO_C" >&6 if test "${ac_cv_func_getenv+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >"conftest.$ac_ext" <<_ACEOF -#line 20830 "configure" +#line 20832 "configure" #include "confdefs.h" #define getenv autoconf_temporary #include /* least-intrusive standard header which defines gcc2 __stub macros */ @@ -20858,16 +20860,16 @@ } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:20861: \"$ac_link\"") >&5 +if { (eval echo "$as_me:20863: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:20864: \$? = $ac_status" >&5 + echo "$as_me:20866: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:20867: \"$ac_try\"") >&5 + { (eval echo "$as_me:20869: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:20870: \$? = $ac_status" >&5 + echo "$as_me:20872: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_func_getenv=yes else @@ -20877,19 +20879,19 @@ fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:20880: result: $ac_cv_func_getenv" >&5 +echo "$as_me:20882: result: $ac_cv_func_getenv" >&5 echo "${ECHO_T}$ac_cv_func_getenv" >&6 for ac_func in putenv setenv strdup do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` -echo "$as_me:20886: checking for $ac_func" >&5 +echo "$as_me:20888: 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 20892 "configure" +#line 20894 "configure" #include "confdefs.h" #define $ac_func autoconf_temporary #include /* least-intrusive standard header which defines gcc2 __stub macros */ @@ -20920,16 +20922,16 @@ } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:20923: \"$ac_link\"") >&5 +if { (eval echo "$as_me:20925: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:20926: \$? = $ac_status" >&5 + echo "$as_me:20928: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:20929: \"$ac_try\"") >&5 + { (eval echo "$as_me:20931: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:20932: \$? = $ac_status" >&5 + echo "$as_me:20934: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then eval "$as_ac_var=yes" else @@ -20939,7 +20941,7 @@ fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:20942: result: `eval echo '${'"$as_ac_var"'}'`" >&5 +echo "$as_me:20944: 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:20954: checking if getenv returns consistent values" >&5 echo $ECHO_N "checking if getenv returns consistent values... $ECHO_C" >&6 if test "${cf_cv_consistent_getenv+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -20959,7 +20961,7 @@ cf_cv_consistent_getenv=unknown else cat >"conftest.$ac_ext" <<_ACEOF -#line 20962 "configure" +#line 20964 "configure" #include "confdefs.h" $ac_includes_default @@ -21064,15 +21066,15 @@ _ACEOF rm -f "conftest$ac_exeext" -if { (eval echo "$as_me:21067: \"$ac_link\"") >&5 +if { (eval echo "$as_me:21069: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:21070: \$? = $ac_status" >&5 + echo "$as_me:21072: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='"./conftest$ac_exeext"' - { (eval echo "$as_me:21072: \"$ac_try\"") >&5 + { (eval echo "$as_me:21074: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:21075: \$? = $ac_status" >&5 + echo "$as_me:21077: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_consistent_getenv=yes else @@ -21085,7 +21087,7 @@ fi fi -echo "$as_me:21088: result: $cf_cv_consistent_getenv" >&5 +echo "$as_me:21090: result: $cf_cv_consistent_getenv" >&5 echo "${ECHO_T}$cf_cv_consistent_getenv" >&6 if test "x$cf_cv_consistent_getenv" = xno @@ -21100,18 +21102,18 @@ if test "x$cf_cv_consistent_getenv" = xno && \ test "x$cf_with_trace" = xyes then - { echo "$as_me:21103: WARNING: The NCURSES_TRACE environment variable is not supported with this configuration" >&5 + { echo "$as_me:21105: WARNING: The NCURSES_TRACE environment variable is not supported with this configuration" >&5 echo "$as_me: WARNING: The NCURSES_TRACE environment variable is not supported with this configuration" >&2;} fi -echo "$as_me:21107: checking if sys/time.h works with sys/select.h" >&5 +echo "$as_me:21109: checking if sys/time.h works with sys/select.h" >&5 echo $ECHO_N "checking if sys/time.h works with sys/select.h... $ECHO_C" >&6 if test "${cf_cv_sys_time_select+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >"conftest.$ac_ext" <<_ACEOF -#line 21114 "configure" +#line 21116 "configure" #include "confdefs.h" #include @@ -21131,16 +21133,16 @@ } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:21134: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:21136: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:21137: \$? = $ac_status" >&5 + echo "$as_me:21139: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:21140: \"$ac_try\"") >&5 + { (eval echo "$as_me:21142: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:21143: \$? = $ac_status" >&5 + echo "$as_me:21145: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_sys_time_select=yes else @@ -21152,7 +21154,7 @@ fi -echo "$as_me:21155: result: $cf_cv_sys_time_select" >&5 +echo "$as_me:21157: result: $cf_cv_sys_time_select" >&5 echo "${ECHO_T}$cf_cv_sys_time_select" >&6 test "$cf_cv_sys_time_select" = yes && cat >>confdefs.h <<\EOF @@ -21167,13 +21169,13 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu ac_main_return="return" -echo "$as_me:21170: checking for an ANSI C-conforming const" >&5 +echo "$as_me:21172: checking for an ANSI C-conforming const" >&5 echo $ECHO_N "checking for an ANSI C-conforming const... $ECHO_C" >&6 if test "${ac_cv_c_const+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >"conftest.$ac_ext" <<_ACEOF -#line 21176 "configure" +#line 21178 "configure" #include "confdefs.h" int @@ -21235,16 +21237,16 @@ } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:21238: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:21240: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:21241: \$? = $ac_status" >&5 + echo "$as_me:21243: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:21244: \"$ac_try\"") >&5 + { (eval echo "$as_me:21246: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:21247: \$? = $ac_status" >&5 + echo "$as_me:21249: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_c_const=yes else @@ -21254,7 +21256,7 @@ fi rm -f "conftest.$ac_objext" "conftest.$ac_ext" fi -echo "$as_me:21257: result: $ac_cv_c_const" >&5 +echo "$as_me:21259: result: $ac_cv_c_const" >&5 echo "${ECHO_T}$ac_cv_c_const" >&6 if test $ac_cv_c_const = no; then @@ -21264,7 +21266,7 @@ fi -echo "$as_me:21267: checking for inline" >&5 +echo "$as_me:21269: checking for inline" >&5 echo $ECHO_N "checking for inline... $ECHO_C" >&6 if test "${ac_cv_c_inline+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -21272,7 +21274,7 @@ ac_cv_c_inline=no for ac_kw in inline __inline__ __inline; do cat >"conftest.$ac_ext" <<_ACEOF -#line 21275 "configure" +#line 21277 "configure" #include "confdefs.h" #ifndef __cplusplus static $ac_kw int static_foo (void) {return 0; } @@ -21281,16 +21283,16 @@ _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:21284: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:21286: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:21287: \$? = $ac_status" >&5 + echo "$as_me:21289: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:21290: \"$ac_try\"") >&5 + { (eval echo "$as_me:21292: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:21293: \$? = $ac_status" >&5 + echo "$as_me:21295: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_c_inline=$ac_kw; break else @@ -21301,7 +21303,7 @@ done fi -echo "$as_me:21304: result: $ac_cv_c_inline" >&5 +echo "$as_me:21306: result: $ac_cv_c_inline" >&5 echo "${ECHO_T}$ac_cv_c_inline" >&6 case $ac_cv_c_inline in inline | yes) ;; @@ -21327,7 +21329,7 @@ : elif test "$GCC" = yes then - echo "$as_me:21330: checking if $CC supports options to tune inlining" >&5 + echo "$as_me:21332: checking if $CC supports options to tune inlining" >&5 echo $ECHO_N "checking if $CC supports options to tune inlining... $ECHO_C" >&6 if test "${cf_cv_gcc_inline+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -21336,7 +21338,7 @@ cf_save_CFLAGS=$CFLAGS CFLAGS="$CFLAGS --param max-inline-insns-single=1200" cat >"conftest.$ac_ext" <<_ACEOF -#line 21339 "configure" +#line 21341 "configure" #include "confdefs.h" inline int foo(void) { return 1; } int @@ -21348,16 +21350,16 @@ } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:21351: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:21353: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:21354: \$? = $ac_status" >&5 + echo "$as_me:21356: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:21357: \"$ac_try\"") >&5 + { (eval echo "$as_me:21359: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:21360: \$? = $ac_status" >&5 + echo "$as_me:21362: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_gcc_inline=yes else @@ -21369,7 +21371,7 @@ CFLAGS=$cf_save_CFLAGS fi -echo "$as_me:21372: result: $cf_cv_gcc_inline" >&5 +echo "$as_me:21374: result: $cf_cv_gcc_inline" >&5 echo "${ECHO_T}$cf_cv_gcc_inline" >&6 if test "$cf_cv_gcc_inline" = yes ; then @@ -21475,7 +21477,7 @@ fi fi -echo "$as_me:21478: checking for signal global datatype" >&5 +echo "$as_me:21480: checking for signal global datatype" >&5 echo $ECHO_N "checking for signal global datatype... $ECHO_C" >&6 if test "${cf_cv_sig_atomic_t+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -21487,7 +21489,7 @@ "int" do cat >"conftest.$ac_ext" <<_ACEOF -#line 21490 "configure" +#line 21492 "configure" #include "confdefs.h" #include @@ -21511,16 +21513,16 @@ } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:21514: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:21516: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:21517: \$? = $ac_status" >&5 + echo "$as_me:21519: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:21520: \"$ac_try\"") >&5 + { (eval echo "$as_me:21522: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:21523: \$? = $ac_status" >&5 + echo "$as_me:21525: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_sig_atomic_t=$cf_type else @@ -21534,7 +21536,7 @@ fi -echo "$as_me:21537: result: $cf_cv_sig_atomic_t" >&5 +echo "$as_me:21539: result: $cf_cv_sig_atomic_t" >&5 echo "${ECHO_T}$cf_cv_sig_atomic_t" >&6 test "$cf_cv_sig_atomic_t" != no && cat >>confdefs.h <&5 +echo "$as_me:21548: checking for type of chtype" >&5 echo $ECHO_N "checking for type of chtype... $ECHO_C" >&6 if test "${cf_cv_typeof_chtype+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -21553,7 +21555,7 @@ cf_cv_typeof_chtype=long else cat >"conftest.$ac_ext" <<_ACEOF -#line 21556 "configure" +#line 21558 "configure" #include "confdefs.h" $ac_includes_default @@ -21588,15 +21590,15 @@ _ACEOF rm -f "conftest$ac_exeext" -if { (eval echo "$as_me:21591: \"$ac_link\"") >&5 +if { (eval echo "$as_me:21593: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:21594: \$? = $ac_status" >&5 + echo "$as_me:21596: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='"./conftest$ac_exeext"' - { (eval echo "$as_me:21596: \"$ac_try\"") >&5 + { (eval echo "$as_me:21598: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:21599: \$? = $ac_status" >&5 + echo "$as_me:21601: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_typeof_chtype=`cat cf_test.out` else @@ -21611,7 +21613,7 @@ fi -echo "$as_me:21614: result: $cf_cv_typeof_chtype" >&5 +echo "$as_me:21616: result: $cf_cv_typeof_chtype" >&5 echo "${ECHO_T}$cf_cv_typeof_chtype" >&6 cat >>confdefs.h <&5 +echo "$as_me:21628: checking if unsigned literals are legal" >&5 echo $ECHO_N "checking if unsigned literals are legal... $ECHO_C" >&6 if test "${cf_cv_unsigned_literals+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >"conftest.$ac_ext" <<_ACEOF -#line 21633 "configure" +#line 21635 "configure" #include "confdefs.h" int @@ -21642,16 +21644,16 @@ } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:21645: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:21647: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:21648: \$? = $ac_status" >&5 + echo "$as_me:21650: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:21651: \"$ac_try\"") >&5 + { (eval echo "$as_me:21653: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:21654: \$? = $ac_status" >&5 + echo "$as_me:21656: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_unsigned_literals=yes else @@ -21663,7 +21665,7 @@ fi -echo "$as_me:21666: result: $cf_cv_unsigned_literals" >&5 +echo "$as_me:21668: result: $cf_cv_unsigned_literals" >&5 echo "${ECHO_T}$cf_cv_unsigned_literals" >&6 cf_cv_1UL="1" @@ -21679,14 +21681,14 @@ ### Checks for external-data -echo "$as_me:21682: checking if external errno is declared" >&5 +echo "$as_me:21684: checking if external errno is declared" >&5 echo $ECHO_N "checking if external errno is declared... $ECHO_C" >&6 if test "${cf_cv_dcl_errno+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >"conftest.$ac_ext" <<_ACEOF -#line 21689 "configure" +#line 21691 "configure" #include "confdefs.h" $ac_includes_default @@ -21700,16 +21702,16 @@ } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:21703: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:21705: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:21706: \$? = $ac_status" >&5 + echo "$as_me:21708: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:21709: \"$ac_try\"") >&5 + { (eval echo "$as_me:21711: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:21712: \$? = $ac_status" >&5 + echo "$as_me:21714: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_dcl_errno=yes else @@ -21720,7 +21722,7 @@ rm -f "conftest.$ac_objext" "conftest.$ac_ext" fi -echo "$as_me:21723: result: $cf_cv_dcl_errno" >&5 +echo "$as_me:21725: result: $cf_cv_dcl_errno" >&5 echo "${ECHO_T}$cf_cv_dcl_errno" >&6 if test "$cf_cv_dcl_errno" = no ; then @@ -21735,14 +21737,14 @@ # It's possible (for near-UNIX clones) that the data doesn't exist -echo "$as_me:21738: checking if external errno exists" >&5 +echo "$as_me:21740: checking if external errno exists" >&5 echo $ECHO_N "checking if external errno exists... $ECHO_C" >&6 if test "${cf_cv_have_errno+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >"conftest.$ac_ext" <<_ACEOF -#line 21745 "configure" +#line 21747 "configure" #include "confdefs.h" #undef errno @@ -21757,16 +21759,16 @@ } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:21760: \"$ac_link\"") >&5 +if { (eval echo "$as_me:21762: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:21763: \$? = $ac_status" >&5 + echo "$as_me:21765: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:21766: \"$ac_try\"") >&5 + { (eval echo "$as_me:21768: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:21769: \$? = $ac_status" >&5 + echo "$as_me:21771: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_have_errno=yes else @@ -21777,7 +21779,7 @@ rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:21780: result: $cf_cv_have_errno" >&5 +echo "$as_me:21782: result: $cf_cv_have_errno" >&5 echo "${ECHO_T}$cf_cv_have_errno" >&6 if test "$cf_cv_have_errno" = yes ; then @@ -21790,7 +21792,7 @@ fi -echo "$as_me:21793: checking if data-only library module links" >&5 +echo "$as_me:21795: checking if data-only library module links" >&5 echo $ECHO_N "checking if data-only library module links... $ECHO_C" >&6 if test "${cf_cv_link_dataonly+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -21798,20 +21800,20 @@ rm -f conftest.a cat >conftest.$ac_ext <&5 + if { (eval echo "$as_me:21806: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:21807: \$? = $ac_status" >&5 + echo "$as_me:21809: \$? = $ac_status" >&5 (exit "$ac_status"); } ; then mv conftest.o data.o && \ ( $AR $ARFLAGS conftest.a data.o ) 2>&5 1>/dev/null fi rm -f conftest.$ac_ext data.o cat >conftest.$ac_ext <&5 + if { (eval echo "$as_me:21833: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:21834: \$? = $ac_status" >&5 + echo "$as_me:21836: \$? = $ac_status" >&5 (exit "$ac_status"); }; then mv conftest.o func.o && \ ( $AR $ARFLAGS conftest.a func.o ) 2>&5 1>/dev/null @@ -21844,7 +21846,7 @@ cf_cv_link_dataonly=unknown else cat >"conftest.$ac_ext" <<_ACEOF -#line 21847 "configure" +#line 21849 "configure" #include "confdefs.h" extern int testfunc(void); @@ -21855,15 +21857,15 @@ _ACEOF rm -f "conftest$ac_exeext" -if { (eval echo "$as_me:21858: \"$ac_link\"") >&5 +if { (eval echo "$as_me:21860: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:21861: \$? = $ac_status" >&5 + echo "$as_me:21863: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='"./conftest$ac_exeext"' - { (eval echo "$as_me:21863: \"$ac_try\"") >&5 + { (eval echo "$as_me:21865: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:21866: \$? = $ac_status" >&5 + echo "$as_me:21868: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_link_dataonly=yes else @@ -21878,7 +21880,7 @@ fi -echo "$as_me:21881: result: $cf_cv_link_dataonly" >&5 +echo "$as_me:21883: result: $cf_cv_link_dataonly" >&5 echo "${ECHO_T}$cf_cv_link_dataonly" >&6 if test "$cf_cv_link_dataonly" = no ; then @@ -21893,13 +21895,13 @@ ### Checks for library functions. cf_save_libs="$LIBS" -echo "$as_me:21896: checking for clock_gettime" >&5 +echo "$as_me:21898: checking for clock_gettime" >&5 echo $ECHO_N "checking for clock_gettime... $ECHO_C" >&6 if test "${ac_cv_func_clock_gettime+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >"conftest.$ac_ext" <<_ACEOF -#line 21902 "configure" +#line 21904 "configure" #include "confdefs.h" #define clock_gettime autoconf_temporary #include /* least-intrusive standard header which defines gcc2 __stub macros */ @@ -21930,16 +21932,16 @@ } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:21933: \"$ac_link\"") >&5 +if { (eval echo "$as_me:21935: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:21936: \$? = $ac_status" >&5 + echo "$as_me:21938: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:21939: \"$ac_try\"") >&5 + { (eval echo "$as_me:21941: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:21942: \$? = $ac_status" >&5 + echo "$as_me:21944: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_func_clock_gettime=yes else @@ -21949,12 +21951,12 @@ fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:21952: result: $ac_cv_func_clock_gettime" >&5 +echo "$as_me:21954: result: $ac_cv_func_clock_gettime" >&5 echo "${ECHO_T}$ac_cv_func_clock_gettime" >&6 if test "$ac_cv_func_clock_gettime" = yes; then cf_cv_test_clock_gettime=yes else - echo "$as_me:21957: checking for clock_gettime in -lrt" >&5 + echo "$as_me:21959: checking for clock_gettime in -lrt" >&5 echo $ECHO_N "checking for clock_gettime in -lrt... $ECHO_C" >&6 if test "${ac_cv_lib_rt_clock_gettime+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -21962,7 +21964,7 @@ ac_check_lib_save_LIBS=$LIBS LIBS="-lrt $LIBS" cat >"conftest.$ac_ext" <<_ACEOF -#line 21965 "configure" +#line 21967 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -21981,16 +21983,16 @@ } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:21984: \"$ac_link\"") >&5 +if { (eval echo "$as_me:21986: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:21987: \$? = $ac_status" >&5 + echo "$as_me:21989: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:21990: \"$ac_try\"") >&5 + { (eval echo "$as_me:21992: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:21993: \$? = $ac_status" >&5 + echo "$as_me:21995: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_lib_rt_clock_gettime=yes else @@ -22001,7 +22003,7 @@ rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:22004: result: $ac_cv_lib_rt_clock_gettime" >&5 +echo "$as_me:22006: result: $ac_cv_lib_rt_clock_gettime" >&5 echo "${ECHO_T}$ac_cv_lib_rt_clock_gettime" >&6 if test "$ac_cv_lib_rt_clock_gettime" = yes; then LIBS="-lrt $LIBS" @@ -22013,14 +22015,14 @@ fi if test "$cf_cv_test_clock_gettime" = yes ; then -echo "$as_me:22016: checking if clock_gettime links" >&5 +echo "$as_me:22018: checking if clock_gettime links" >&5 echo $ECHO_N "checking if clock_gettime links... $ECHO_C" >&6 if test "${cf_cv_func_clock_gettime+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >"conftest.$ac_ext" <<_ACEOF -#line 22023 "configure" +#line 22025 "configure" #include "confdefs.h" $ac_includes_default @@ -22038,16 +22040,16 @@ } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:22041: \"$ac_link\"") >&5 +if { (eval echo "$as_me:22043: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:22044: \$? = $ac_status" >&5 + echo "$as_me:22046: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:22047: \"$ac_try\"") >&5 + { (eval echo "$as_me:22049: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:22050: \$? = $ac_status" >&5 + echo "$as_me:22052: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_func_clock_gettime=yes else @@ -22058,7 +22060,7 @@ rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:22061: result: $cf_cv_func_clock_gettime" >&5 +echo "$as_me:22063: result: $cf_cv_func_clock_gettime" >&5 echo "${ECHO_T}$cf_cv_func_clock_gettime" >&6 else cf_cv_func_clock_gettime=no @@ -22072,13 +22074,13 @@ EOF else -echo "$as_me:22075: checking for gettimeofday" >&5 +echo "$as_me:22077: checking for gettimeofday" >&5 echo $ECHO_N "checking for gettimeofday... $ECHO_C" >&6 if test "${ac_cv_func_gettimeofday+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >"conftest.$ac_ext" <<_ACEOF -#line 22081 "configure" +#line 22083 "configure" #include "confdefs.h" #define gettimeofday autoconf_temporary #include /* least-intrusive standard header which defines gcc2 __stub macros */ @@ -22109,16 +22111,16 @@ } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:22112: \"$ac_link\"") >&5 +if { (eval echo "$as_me:22114: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:22115: \$? = $ac_status" >&5 + echo "$as_me:22117: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:22118: \"$ac_try\"") >&5 + { (eval echo "$as_me:22120: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:22121: \$? = $ac_status" >&5 + echo "$as_me:22123: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_func_gettimeofday=yes else @@ -22128,7 +22130,7 @@ fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:22131: result: $ac_cv_func_gettimeofday" >&5 +echo "$as_me:22133: result: $ac_cv_func_gettimeofday" >&5 echo "${ECHO_T}$ac_cv_func_gettimeofday" >&6 if test "$ac_cv_func_gettimeofday" = yes; then @@ -22138,7 +22140,7 @@ else -echo "$as_me:22141: checking for gettimeofday in -lbsd" >&5 +echo "$as_me:22143: checking for gettimeofday in -lbsd" >&5 echo $ECHO_N "checking for gettimeofday in -lbsd... $ECHO_C" >&6 if test "${ac_cv_lib_bsd_gettimeofday+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -22146,7 +22148,7 @@ ac_check_lib_save_LIBS=$LIBS LIBS="-lbsd $LIBS" cat >"conftest.$ac_ext" <<_ACEOF -#line 22149 "configure" +#line 22151 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -22165,16 +22167,16 @@ } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:22168: \"$ac_link\"") >&5 +if { (eval echo "$as_me:22170: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:22171: \$? = $ac_status" >&5 + echo "$as_me:22173: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:22174: \"$ac_try\"") >&5 + { (eval echo "$as_me:22176: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:22177: \$? = $ac_status" >&5 + echo "$as_me:22179: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_lib_bsd_gettimeofday=yes else @@ -22185,7 +22187,7 @@ rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:22188: result: $ac_cv_lib_bsd_gettimeofday" >&5 +echo "$as_me:22190: result: $ac_cv_lib_bsd_gettimeofday" >&5 echo "${ECHO_T}$ac_cv_lib_bsd_gettimeofday" >&6 if test "$ac_cv_lib_bsd_gettimeofday" = yes; then @@ -22244,13 +22246,13 @@ do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` -echo "$as_me:22247: checking for $ac_func" >&5 +echo "$as_me:22249: 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 22253 "configure" +#line 22255 "configure" #include "confdefs.h" #define $ac_func autoconf_temporary #include /* least-intrusive standard header which defines gcc2 __stub macros */ @@ -22281,16 +22283,16 @@ } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:22284: \"$ac_link\"") >&5 +if { (eval echo "$as_me:22286: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:22287: \$? = $ac_status" >&5 + echo "$as_me:22289: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:22290: \"$ac_try\"") >&5 + { (eval echo "$as_me:22292: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:22293: \$? = $ac_status" >&5 + echo "$as_me:22295: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then eval "$as_ac_var=yes" else @@ -22300,7 +22302,7 @@ fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:22303: result: `eval echo '${'"$as_ac_var"'}'`" >&5 +echo "$as_me:22305: 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:22315: 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 22320 "configure" +#line 22322 "configure" #include "confdefs.h" #include @@ -22332,16 +22334,16 @@ } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:22335: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:22337: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:22338: \$? = $ac_status" >&5 + echo "$as_me:22340: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:22341: \"$ac_try\"") >&5 + { (eval echo "$as_me:22343: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:22344: \$? = $ac_status" >&5 + echo "$as_me:22346: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_PATH_TTYS=yes else @@ -22351,7 +22353,7 @@ fi rm -f "conftest.$ac_objext" "conftest.$ac_ext" fi -echo "$as_me:22354: result: $cf_cv_PATH_TTYS" >&5 +echo "$as_me:22356: result: $cf_cv_PATH_TTYS" >&5 echo "${ECHO_T}$cf_cv_PATH_TTYS" >&6 if test $cf_cv_PATH_TTYS = no @@ -22373,7 +22375,7 @@ if test $cf_cv_PATH_TTYS != no then - echo "$as_me:22376: checking if _PATH_TTYS file exists" >&5 + echo "$as_me:22378: 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 @@ -22383,7 +22385,7 @@ cf_cv_have_PATH_TTYS=unknown else cat >"conftest.$ac_ext" <<_ACEOF -#line 22386 "configure" +#line 22388 "configure" #include "confdefs.h" $ac_includes_default @@ -22396,15 +22398,15 @@ } _ACEOF rm -f "conftest$ac_exeext" -if { (eval echo "$as_me:22399: \"$ac_link\"") >&5 +if { (eval echo "$as_me:22401: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:22402: \$? = $ac_status" >&5 + echo "$as_me:22404: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='"./conftest$ac_exeext"' - { (eval echo "$as_me:22404: \"$ac_try\"") >&5 + { (eval echo "$as_me:22406: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:22407: \$? = $ac_status" >&5 + echo "$as_me:22409: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_have_PATH_TTYS=yes else @@ -22416,7 +22418,7 @@ rm -f core ./core.* ./*.core "conftest$ac_exeext" "conftest.$ac_objext" "conftest.$ac_ext" fi fi -echo "$as_me:22419: result: $cf_cv_have_PATH_TTYS" >&5 +echo "$as_me:22421: 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 @@ -22428,14 +22430,14 @@ #define HAVE_PATH_TTYS 1 EOF - echo "$as_me:22431: checking for getttynam" >&5 + echo "$as_me:22433: 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 22438 "configure" +#line 22440 "configure" #include "confdefs.h" #include int @@ -22447,16 +22449,16 @@ } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:22450: \"$ac_link\"") >&5 +if { (eval echo "$as_me:22452: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:22453: \$? = $ac_status" >&5 + echo "$as_me:22455: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:22456: \"$ac_try\"") >&5 + { (eval echo "$as_me:22458: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:22459: \$? = $ac_status" >&5 + echo "$as_me:22461: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_func_getttynam=yes else @@ -22466,7 +22468,7 @@ fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:22469: result: $cf_cv_func_getttynam" >&5 +echo "$as_me:22471: 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 @@ -22476,7 +22478,7 @@ if test "x$ac_cv_func_getopt" = xno && \ test "x$cf_with_progs$cf_with_tests" != xnono; then - { { echo "$as_me:22479: error: getopt is required for building programs" >&5 + { { echo "$as_me:22481: error: getopt is required for building programs" >&5 echo "$as_me: error: getopt is required for building programs" >&2;} { (exit 1); exit 1; }; } fi @@ -22485,7 +22487,7 @@ then if test "x$ac_cv_func_vsnprintf" = xyes then - { echo "$as_me:22488: WARNING: will use vsnprintf instead of safe-sprintf option" >&5 + { echo "$as_me:22490: WARNING: will use vsnprintf instead of safe-sprintf option" >&5 echo "$as_me: WARNING: will use vsnprintf instead of safe-sprintf option" >&2;} else @@ -22498,14 +22500,14 @@ if test "x$with_getcap" = "xyes" ; then -echo "$as_me:22501: checking for terminal-capability database functions" >&5 +echo "$as_me:22503: 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 22508 "configure" +#line 22510 "configure" #include "confdefs.h" $ac_includes_default @@ -22525,16 +22527,16 @@ } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:22528: \"$ac_link\"") >&5 +if { (eval echo "$as_me:22530: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:22531: \$? = $ac_status" >&5 + echo "$as_me:22533: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:22534: \"$ac_try\"") >&5 + { (eval echo "$as_me:22536: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:22537: \$? = $ac_status" >&5 + echo "$as_me:22539: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_cgetent=yes else @@ -22545,7 +22547,7 @@ rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:22548: result: $cf_cv_cgetent" >&5 +echo "$as_me:22550: result: $cf_cv_cgetent" >&5 echo "${ECHO_T}$cf_cv_cgetent" >&6 if test "$cf_cv_cgetent" = yes @@ -22555,14 +22557,14 @@ #define HAVE_BSD_CGETENT 1 EOF -echo "$as_me:22558: checking if cgetent uses const parameter" >&5 +echo "$as_me:22560: 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 22565 "configure" +#line 22567 "configure" #include "confdefs.h" #pragma GCC diagnostic error "-Wincompatible-pointer-types-discards-qualifiers" @@ -22585,16 +22587,16 @@ } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:22588: \"$ac_link\"") >&5 +if { (eval echo "$as_me:22590: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:22591: \$? = $ac_status" >&5 + echo "$as_me:22593: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:22594: \"$ac_try\"") >&5 + { (eval echo "$as_me:22596: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:22597: \$? = $ac_status" >&5 + echo "$as_me:22599: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_cgetent_const=yes else @@ -22605,7 +22607,7 @@ rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:22608: result: $cf_cv_cgetent_const" >&5 +echo "$as_me:22610: result: $cf_cv_cgetent_const" >&5 echo "${ECHO_T}$cf_cv_cgetent_const" >&6 if test "$cf_cv_cgetent_const" = yes then @@ -22619,14 +22621,14 @@ fi -echo "$as_me:22622: checking for isascii" >&5 +echo "$as_me:22624: 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 22629 "configure" +#line 22631 "configure" #include "confdefs.h" #include int @@ -22638,16 +22640,16 @@ } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:22641: \"$ac_link\"") >&5 +if { (eval echo "$as_me:22643: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:22644: \$? = $ac_status" >&5 + echo "$as_me:22646: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:22647: \"$ac_try\"") >&5 + { (eval echo "$as_me:22649: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:22650: \$? = $ac_status" >&5 + echo "$as_me:22652: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_have_isascii=yes else @@ -22658,7 +22660,7 @@ rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:22661: result: $cf_cv_have_isascii" >&5 +echo "$as_me:22663: result: $cf_cv_have_isascii" >&5 echo "${ECHO_T}$cf_cv_have_isascii" >&6 test "$cf_cv_have_isascii" = yes && cat >>confdefs.h <<\EOF @@ -22666,10 +22668,10 @@ EOF if test "$ac_cv_func_sigaction" = yes; then -echo "$as_me:22669: checking whether sigaction needs _POSIX_SOURCE" >&5 +echo "$as_me:22671: 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 22672 "configure" +#line 22674 "configure" #include "confdefs.h" #include @@ -22683,16 +22685,16 @@ } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:22686: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:22688: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:22689: \$? = $ac_status" >&5 + echo "$as_me:22691: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:22692: \"$ac_try\"") >&5 + { (eval echo "$as_me:22694: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:22695: \$? = $ac_status" >&5 + echo "$as_me:22697: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then sigact_bad=no else @@ -22700,7 +22702,7 @@ cat "conftest.$ac_ext" >&5 cat >"conftest.$ac_ext" <<_ACEOF -#line 22703 "configure" +#line 22705 "configure" #include "confdefs.h" #define _POSIX_SOURCE @@ -22715,16 +22717,16 @@ } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:22718: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:22720: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:22721: \$? = $ac_status" >&5 + echo "$as_me:22723: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:22724: \"$ac_try\"") >&5 + { (eval echo "$as_me:22726: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:22727: \$? = $ac_status" >&5 + echo "$as_me:22729: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then sigact_bad=yes @@ -22740,11 +22742,11 @@ rm -f "conftest.$ac_objext" "conftest.$ac_ext" fi rm -f "conftest.$ac_objext" "conftest.$ac_ext" -echo "$as_me:22743: result: $sigact_bad" >&5 +echo "$as_me:22745: result: $sigact_bad" >&5 echo "${ECHO_T}$sigact_bad" >&6 fi -echo "$as_me:22747: checking if nanosleep really works" >&5 +echo "$as_me:22749: 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 @@ -22754,7 +22756,7 @@ cf_cv_func_nanosleep=unknown else cat >"conftest.$ac_ext" <<_ACEOF -#line 22757 "configure" +#line 22759 "configure" #include "confdefs.h" $ac_includes_default @@ -22780,15 +22782,15 @@ _ACEOF rm -f "conftest$ac_exeext" -if { (eval echo "$as_me:22783: \"$ac_link\"") >&5 +if { (eval echo "$as_me:22785: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:22786: \$? = $ac_status" >&5 + echo "$as_me:22788: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='"./conftest$ac_exeext"' - { (eval echo "$as_me:22788: \"$ac_try\"") >&5 + { (eval echo "$as_me:22790: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:22791: \$? = $ac_status" >&5 + echo "$as_me:22793: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_func_nanosleep=yes else @@ -22800,7 +22802,7 @@ rm -f core ./core.* ./*.core "conftest$ac_exeext" "conftest.$ac_objext" "conftest.$ac_ext" fi fi -echo "$as_me:22803: result: $cf_cv_func_nanosleep" >&5 +echo "$as_me:22805: result: $cf_cv_func_nanosleep" >&5 echo "${ECHO_T}$cf_cv_func_nanosleep" >&6 test "$cf_cv_func_nanosleep" = "yes" && @@ -22817,23 +22819,23 @@ do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` -echo "$as_me:22820: checking for $ac_header" >&5 +echo "$as_me:22822: 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 22826 "configure" +#line 22828 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:22830: \"$ac_cpp "conftest.$ac_ext"\"") >&5 +if { (eval echo "$as_me:22832: \"$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:22836: \$? = $ac_status" >&5 + echo "$as_me:22838: \$? = $ac_status" >&5 (exit "$ac_status"); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -22852,7 +22854,7 @@ fi rm -f conftest.err "conftest.$ac_ext" fi -echo "$as_me:22855: result: `eval echo '${'"$as_ac_Header"'}'`" >&5 +echo "$as_me:22857: 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:22874: 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 22875 "configure" +#line 22877 "configure" #include "confdefs.h" #include int @@ -22884,16 +22886,16 @@ } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:22887: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:22889: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:22890: \$? = $ac_status" >&5 + echo "$as_me:22892: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:22893: \"$ac_try\"") >&5 + { (eval echo "$as_me:22895: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:22896: \$? = $ac_status" >&5 + echo "$as_me:22898: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then termios_bad=no else @@ -22901,7 +22903,7 @@ cat "conftest.$ac_ext" >&5 cat >"conftest.$ac_ext" <<_ACEOF -#line 22904 "configure" +#line 22906 "configure" #include "confdefs.h" #define _POSIX_SOURCE @@ -22915,16 +22917,16 @@ } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:22918: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:22920: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:22921: \$? = $ac_status" >&5 + echo "$as_me:22923: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:22924: \"$ac_try\"") >&5 + { (eval echo "$as_me:22926: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:22927: \$? = $ac_status" >&5 + echo "$as_me:22929: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then termios_bad=unknown else @@ -22940,19 +22942,19 @@ fi rm -f "conftest.$ac_objext" "conftest.$ac_ext" - echo "$as_me:22943: result: $termios_bad" >&5 + echo "$as_me:22945: result: $termios_bad" >&5 echo "${ECHO_T}$termios_bad" >&6 fi fi -echo "$as_me:22948: checking for tcgetattr" >&5 +echo "$as_me:22950: 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 22955 "configure" +#line 22957 "configure" #include "confdefs.h" #include @@ -22980,16 +22982,16 @@ } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:22983: \"$ac_link\"") >&5 +if { (eval echo "$as_me:22985: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:22986: \$? = $ac_status" >&5 + echo "$as_me:22988: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:22989: \"$ac_try\"") >&5 + { (eval echo "$as_me:22991: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:22992: \$? = $ac_status" >&5 + echo "$as_me:22994: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_have_tcgetattr=yes else @@ -22999,21 +23001,21 @@ fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:23002: result: $cf_cv_have_tcgetattr" >&5 +echo "$as_me:23004: 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:23009: checking for vsscanf function or workaround" >&5 +echo "$as_me:23011: 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 23016 "configure" +#line 23018 "configure" #include "confdefs.h" #include @@ -23039,16 +23041,16 @@ } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:23042: \"$ac_link\"") >&5 +if { (eval echo "$as_me:23044: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:23045: \$? = $ac_status" >&5 + echo "$as_me:23047: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:23048: \"$ac_try\"") >&5 + { (eval echo "$as_me:23050: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23051: \$? = $ac_status" >&5 + echo "$as_me:23053: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_func_vsscanf=vsscanf else @@ -23056,7 +23058,7 @@ cat "conftest.$ac_ext" >&5 cat >"conftest.$ac_ext" <<_ACEOF -#line 23059 "configure" +#line 23061 "configure" #include "confdefs.h" #include @@ -23078,16 +23080,16 @@ } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:23081: \"$ac_link\"") >&5 +if { (eval echo "$as_me:23083: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:23084: \$? = $ac_status" >&5 + echo "$as_me:23086: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:23087: \"$ac_try\"") >&5 + { (eval echo "$as_me:23089: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23090: \$? = $ac_status" >&5 + echo "$as_me:23092: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_func_vsscanf=vfscanf else @@ -23095,7 +23097,7 @@ cat "conftest.$ac_ext" >&5 cat >"conftest.$ac_ext" <<_ACEOF -#line 23098 "configure" +#line 23100 "configure" #include "confdefs.h" #include @@ -23117,16 +23119,16 @@ } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:23120: \"$ac_link\"") >&5 +if { (eval echo "$as_me:23122: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:23123: \$? = $ac_status" >&5 + echo "$as_me:23125: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:23126: \"$ac_try\"") >&5 + { (eval echo "$as_me:23128: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23129: \$? = $ac_status" >&5 + echo "$as_me:23131: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_func_vsscanf=_doscan else @@ -23141,7 +23143,7 @@ fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:23144: result: $cf_cv_func_vsscanf" >&5 +echo "$as_me:23146: result: $cf_cv_func_vsscanf" >&5 echo "${ECHO_T}$cf_cv_func_vsscanf" >&6 case "$cf_cv_func_vsscanf" in @@ -23167,23 +23169,23 @@ do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` -echo "$as_me:23170: checking for $ac_header" >&5 +echo "$as_me:23172: 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 23176 "configure" +#line 23178 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:23180: \"$ac_cpp "conftest.$ac_ext"\"") >&5 +if { (eval echo "$as_me:23182: \"$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:23186: \$? = $ac_status" >&5 + echo "$as_me:23188: \$? = $ac_status" >&5 (exit "$ac_status"); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -23202,7 +23204,7 @@ fi rm -f conftest.err "conftest.$ac_ext" fi -echo "$as_me:23205: result: `eval echo '${'"$as_ac_Header"'}'`" >&5 +echo "$as_me:23207: 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:23217: 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 @@ -23223,7 +23225,7 @@ cf_cv_func_mkstemp=maybe else cat >"conftest.$ac_ext" <<_ACEOF -#line 23226 "configure" +#line 23228 "configure" #include "confdefs.h" $ac_includes_default @@ -23258,15 +23260,15 @@ _ACEOF rm -f "conftest$ac_exeext" -if { (eval echo "$as_me:23261: \"$ac_link\"") >&5 +if { (eval echo "$as_me:23263: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:23264: \$? = $ac_status" >&5 + echo "$as_me:23266: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='"./conftest$ac_exeext"' - { (eval echo "$as_me:23266: \"$ac_try\"") >&5 + { (eval echo "$as_me:23268: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23269: \$? = $ac_status" >&5 + echo "$as_me:23271: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_func_mkstemp=yes @@ -23281,16 +23283,16 @@ fi fi -echo "$as_me:23284: result: $cf_cv_func_mkstemp" >&5 +echo "$as_me:23286: 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:23287: checking for mkstemp" >&5 + echo "$as_me:23289: 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 23293 "configure" +#line 23295 "configure" #include "confdefs.h" #define mkstemp autoconf_temporary #include /* least-intrusive standard header which defines gcc2 __stub macros */ @@ -23321,16 +23323,16 @@ } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:23324: \"$ac_link\"") >&5 +if { (eval echo "$as_me:23326: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:23327: \$? = $ac_status" >&5 + echo "$as_me:23329: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:23330: \"$ac_try\"") >&5 + { (eval echo "$as_me:23332: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23333: \$? = $ac_status" >&5 + echo "$as_me:23335: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_func_mkstemp=yes else @@ -23340,7 +23342,7 @@ fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:23343: result: $ac_cv_func_mkstemp" >&5 +echo "$as_me:23345: result: $ac_cv_func_mkstemp" >&5 echo "${ECHO_T}$ac_cv_func_mkstemp" >&6 fi @@ -23361,21 +23363,21 @@ fi if test "x$cross_compiling" = xyes ; then - { echo "$as_me:23364: WARNING: cross compiling: assume setvbuf params not reversed" >&5 + { echo "$as_me:23366: 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:23367: checking whether setvbuf arguments are reversed" >&5 + echo "$as_me:23369: 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:23373: error: cannot run test program while cross compiling" >&5 + { { echo "$as_me:23375: 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 23378 "configure" +#line 23380 "configure" #include "confdefs.h" #include /* If setvbuf has the reversed format, exit 0. */ @@ -23392,15 +23394,15 @@ } _ACEOF rm -f "conftest$ac_exeext" -if { (eval echo "$as_me:23395: \"$ac_link\"") >&5 +if { (eval echo "$as_me:23397: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:23398: \$? = $ac_status" >&5 + echo "$as_me:23400: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='"./conftest$ac_exeext"' - { (eval echo "$as_me:23400: \"$ac_try\"") >&5 + { (eval echo "$as_me:23402: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23403: \$? = $ac_status" >&5 + echo "$as_me:23405: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_func_setvbuf_reversed=yes else @@ -23413,7 +23415,7 @@ fi rm -f core ./core.* ./*.core fi -echo "$as_me:23416: result: $ac_cv_func_setvbuf_reversed" >&5 +echo "$as_me:23418: 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 @@ -23424,13 +23426,13 @@ fi fi -echo "$as_me:23427: checking for intptr_t" >&5 +echo "$as_me:23429: 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 23433 "configure" +#line 23435 "configure" #include "confdefs.h" $ac_includes_default int @@ -23445,16 +23447,16 @@ } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:23448: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:23450: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:23451: \$? = $ac_status" >&5 + echo "$as_me:23453: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:23454: \"$ac_try\"") >&5 + { (eval echo "$as_me:23456: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23457: \$? = $ac_status" >&5 + echo "$as_me:23459: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_type_intptr_t=yes else @@ -23464,7 +23466,7 @@ fi rm -f "conftest.$ac_objext" "conftest.$ac_ext" fi -echo "$as_me:23467: result: $ac_cv_type_intptr_t" >&5 +echo "$as_me:23469: 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 : @@ -23476,13 +23478,13 @@ fi -echo "$as_me:23479: checking for ssize_t" >&5 +echo "$as_me:23481: 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 23485 "configure" +#line 23487 "configure" #include "confdefs.h" $ac_includes_default int @@ -23497,16 +23499,16 @@ } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:23500: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:23502: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:23503: \$? = $ac_status" >&5 + echo "$as_me:23505: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:23506: \"$ac_try\"") >&5 + { (eval echo "$as_me:23508: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23509: \$? = $ac_status" >&5 + echo "$as_me:23511: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_type_ssize_t=yes else @@ -23516,7 +23518,7 @@ fi rm -f "conftest.$ac_objext" "conftest.$ac_ext" fi -echo "$as_me:23519: result: $ac_cv_type_ssize_t" >&5 +echo "$as_me:23521: 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 : @@ -23528,14 +23530,14 @@ fi -echo "$as_me:23531: checking for type sigaction_t" >&5 +echo "$as_me:23533: 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 23538 "configure" +#line 23540 "configure" #include "confdefs.h" #include @@ -23548,16 +23550,16 @@ } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:23551: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:23553: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:23554: \$? = $ac_status" >&5 + echo "$as_me:23556: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:23557: \"$ac_try\"") >&5 + { (eval echo "$as_me:23559: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23560: \$? = $ac_status" >&5 + echo "$as_me:23562: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_type_sigaction=yes else @@ -23568,14 +23570,14 @@ rm -f "conftest.$ac_objext" "conftest.$ac_ext" fi -echo "$as_me:23571: result: $cf_cv_type_sigaction" >&5 +echo "$as_me:23573: 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:23578: checking declaration of size-change" >&5 +echo "$as_me:23580: 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 @@ -23596,7 +23598,7 @@ fi cat >"conftest.$ac_ext" <<_ACEOF -#line 23599 "configure" +#line 23601 "configure" #include "confdefs.h" #include #ifdef HAVE_TERMIOS_H @@ -23646,16 +23648,16 @@ } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:23649: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:23651: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:23652: \$? = $ac_status" >&5 + echo "$as_me:23654: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:23655: \"$ac_try\"") >&5 + { (eval echo "$as_me:23657: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23658: \$? = $ac_status" >&5 + echo "$as_me:23660: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_sizechange=yes else @@ -23674,7 +23676,7 @@ done fi -echo "$as_me:23677: result: $cf_cv_sizechange" >&5 +echo "$as_me:23679: result: $cf_cv_sizechange" >&5 echo "${ECHO_T}$cf_cv_sizechange" >&6 if test "$cf_cv_sizechange" != no ; then @@ -23692,13 +23694,13 @@ esac fi -echo "$as_me:23695: checking for memmove" >&5 +echo "$as_me:23697: 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 23701 "configure" +#line 23703 "configure" #include "confdefs.h" #define memmove autoconf_temporary #include /* least-intrusive standard header which defines gcc2 __stub macros */ @@ -23729,16 +23731,16 @@ } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:23732: \"$ac_link\"") >&5 +if { (eval echo "$as_me:23734: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:23735: \$? = $ac_status" >&5 + echo "$as_me:23737: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:23738: \"$ac_try\"") >&5 + { (eval echo "$as_me:23740: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23741: \$? = $ac_status" >&5 + echo "$as_me:23743: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_func_memmove=yes else @@ -23748,19 +23750,19 @@ fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:23751: result: $ac_cv_func_memmove" >&5 +echo "$as_me:23753: 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:23757: checking for bcopy" >&5 +echo "$as_me:23759: 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 23763 "configure" +#line 23765 "configure" #include "confdefs.h" #define bcopy autoconf_temporary #include /* least-intrusive standard header which defines gcc2 __stub macros */ @@ -23791,16 +23793,16 @@ } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:23794: \"$ac_link\"") >&5 +if { (eval echo "$as_me:23796: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:23797: \$? = $ac_status" >&5 + echo "$as_me:23799: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:23800: \"$ac_try\"") >&5 + { (eval echo "$as_me:23802: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23803: \$? = $ac_status" >&5 + echo "$as_me:23805: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_func_bcopy=yes else @@ -23810,11 +23812,11 @@ fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:23813: result: $ac_cv_func_bcopy" >&5 +echo "$as_me:23815: 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:23817: checking if bcopy does overlapping moves" >&5 + echo "$as_me:23819: 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 @@ -23824,7 +23826,7 @@ cf_cv_good_bcopy=unknown else cat >"conftest.$ac_ext" <<_ACEOF -#line 23827 "configure" +#line 23829 "configure" #include "confdefs.h" $ac_includes_default @@ -23840,15 +23842,15 @@ _ACEOF rm -f "conftest$ac_exeext" -if { (eval echo "$as_me:23843: \"$ac_link\"") >&5 +if { (eval echo "$as_me:23845: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:23846: \$? = $ac_status" >&5 + echo "$as_me:23848: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='"./conftest$ac_exeext"' - { (eval echo "$as_me:23848: \"$ac_try\"") >&5 + { (eval echo "$as_me:23850: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23851: \$? = $ac_status" >&5 + echo "$as_me:23853: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_good_bcopy=yes else @@ -23861,7 +23863,7 @@ fi fi -echo "$as_me:23864: result: $cf_cv_good_bcopy" >&5 +echo "$as_me:23866: result: $cf_cv_good_bcopy" >&5 echo "${ECHO_T}$cf_cv_good_bcopy" >&6 else @@ -23888,13 +23890,13 @@ for ac_func in posix_openpt do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` -echo "$as_me:23891: checking for $ac_func" >&5 +echo "$as_me:23893: 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 23897 "configure" +#line 23899 "configure" #include "confdefs.h" #define $ac_func autoconf_temporary #include /* least-intrusive standard header which defines gcc2 __stub macros */ @@ -23925,16 +23927,16 @@ } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:23928: \"$ac_link\"") >&5 +if { (eval echo "$as_me:23930: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:23931: \$? = $ac_status" >&5 + echo "$as_me:23933: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:23934: \"$ac_try\"") >&5 + { (eval echo "$as_me:23936: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23937: \$? = $ac_status" >&5 + echo "$as_me:23939: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then eval "$as_ac_var=yes" else @@ -23944,7 +23946,7 @@ fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:23947: result: `eval echo '${'"$as_ac_var"'}'`" >&5 +echo "$as_me:23949: 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:23959: 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 @@ -23964,7 +23966,7 @@ cf_cv_working_poll=unknown else cat >"conftest.$ac_ext" <<_ACEOF -#line 23967 "configure" +#line 23969 "configure" #include "confdefs.h" $ac_includes_default @@ -24017,15 +24019,15 @@ } _ACEOF rm -f "conftest$ac_exeext" -if { (eval echo "$as_me:24020: \"$ac_link\"") >&5 +if { (eval echo "$as_me:24022: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:24023: \$? = $ac_status" >&5 + echo "$as_me:24025: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='"./conftest$ac_exeext"' - { (eval echo "$as_me:24025: \"$ac_try\"") >&5 + { (eval echo "$as_me:24027: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:24028: \$? = $ac_status" >&5 + echo "$as_me:24030: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_working_poll=yes else @@ -24037,21 +24039,21 @@ rm -f core ./core.* ./*.core "conftest$ac_exeext" "conftest.$ac_objext" "conftest.$ac_ext" fi fi -echo "$as_me:24040: result: $cf_cv_working_poll" >&5 +echo "$as_me:24042: 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:24047: checking if MB_LEN_MAX is usable" >&5 +echo "$as_me:24049: 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 24054 "configure" +#line 24056 "configure" #include "confdefs.h" $ac_includes_default @@ -24071,16 +24073,16 @@ } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:24074: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:24076: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:24077: \$? = $ac_status" >&5 + echo "$as_me:24079: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:24080: \"$ac_try\"") >&5 + { (eval echo "$as_me:24082: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:24083: \$? = $ac_status" >&5 + echo "$as_me:24085: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_mb_len_max=yes else @@ -24090,7 +24092,7 @@ fi rm -f "conftest.$ac_objext" "conftest.$ac_ext" fi -echo "$as_me:24093: result: $cf_cv_mb_len_max" >&5 +echo "$as_me:24095: 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 @@ -24100,18 +24102,18 @@ EOF else - { echo "$as_me:24103: WARNING: MB_LEN_MAX is missing/inconsistent in system headers" >&5 + { echo "$as_me:24105: 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:24107: checking for va_copy" >&5 +echo "$as_me:24109: 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 24114 "configure" +#line 24116 "configure" #include "confdefs.h" #include @@ -24128,16 +24130,16 @@ } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:24131: \"$ac_link\"") >&5 +if { (eval echo "$as_me:24133: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:24134: \$? = $ac_status" >&5 + echo "$as_me:24136: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:24137: \"$ac_try\"") >&5 + { (eval echo "$as_me:24139: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:24140: \$? = $ac_status" >&5 + echo "$as_me:24142: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_have_va_copy=yes else @@ -24147,7 +24149,7 @@ fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:24150: result: $cf_cv_have_va_copy" >&5 +echo "$as_me:24152: result: $cf_cv_have_va_copy" >&5 echo "${ECHO_T}$cf_cv_have_va_copy" >&6 if test "$cf_cv_have_va_copy" = yes; @@ -24159,14 +24161,14 @@ else # !cf_cv_have_va_copy -echo "$as_me:24162: checking for __va_copy" >&5 +echo "$as_me:24164: 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 24169 "configure" +#line 24171 "configure" #include "confdefs.h" #include @@ -24183,16 +24185,16 @@ } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:24186: \"$ac_link\"") >&5 +if { (eval echo "$as_me:24188: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:24189: \$? = $ac_status" >&5 + echo "$as_me:24191: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:24192: \"$ac_try\"") >&5 + { (eval echo "$as_me:24194: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:24195: \$? = $ac_status" >&5 + echo "$as_me:24197: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_have___va_copy=yes else @@ -24202,7 +24204,7 @@ fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:24205: result: $cf_cv_have___va_copy" >&5 +echo "$as_me:24207: result: $cf_cv_have___va_copy" >&5 echo "${ECHO_T}$cf_cv_have___va_copy" >&6 if test "$cf_cv_have___va_copy" = yes @@ -24214,14 +24216,14 @@ else # !cf_cv_have___va_copy -echo "$as_me:24217: checking for __builtin_va_copy" >&5 +echo "$as_me:24219: 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 24224 "configure" +#line 24226 "configure" #include "confdefs.h" #include @@ -24238,16 +24240,16 @@ } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:24241: \"$ac_link\"") >&5 +if { (eval echo "$as_me:24243: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:24244: \$? = $ac_status" >&5 + echo "$as_me:24246: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:24247: \"$ac_try\"") >&5 + { (eval echo "$as_me:24249: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:24250: \$? = $ac_status" >&5 + echo "$as_me:24252: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_have___builtin_va_copy=yes else @@ -24257,7 +24259,7 @@ fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:24260: result: $cf_cv_have___builtin_va_copy" >&5 +echo "$as_me:24262: 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 && @@ -24275,14 +24277,14 @@ ;; (*) - echo "$as_me:24278: checking if we can simply copy va_list" >&5 + echo "$as_me:24280: 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 24285 "configure" +#line 24287 "configure" #include "confdefs.h" #include @@ -24299,16 +24301,16 @@ } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:24302: \"$ac_link\"") >&5 +if { (eval echo "$as_me:24304: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:24305: \$? = $ac_status" >&5 + echo "$as_me:24307: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:24308: \"$ac_try\"") >&5 + { (eval echo "$as_me:24310: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:24311: \$? = $ac_status" >&5 + echo "$as_me:24313: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_pointer_va_list=yes else @@ -24318,19 +24320,19 @@ fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:24321: result: $cf_cv_pointer_va_list" >&5 +echo "$as_me:24323: 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:24326: checking if we can copy va_list indirectly" >&5 + echo "$as_me:24328: 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 24333 "configure" +#line 24335 "configure" #include "confdefs.h" #include @@ -24347,16 +24349,16 @@ } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:24350: \"$ac_link\"") >&5 +if { (eval echo "$as_me:24352: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:24353: \$? = $ac_status" >&5 + echo "$as_me:24355: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:24356: \"$ac_try\"") >&5 + { (eval echo "$as_me:24358: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:24359: \$? = $ac_status" >&5 + echo "$as_me:24361: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_array_va_list=yes else @@ -24366,7 +24368,7 @@ fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:24369: result: $cf_cv_array_va_list" >&5 +echo "$as_me:24371: 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 @@ -24377,13 +24379,13 @@ ;; esac -echo "$as_me:24380: checking for pid_t" >&5 +echo "$as_me:24382: 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 24386 "configure" +#line 24388 "configure" #include "confdefs.h" $ac_includes_default int @@ -24398,16 +24400,16 @@ } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:24401: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:24403: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:24404: \$? = $ac_status" >&5 + echo "$as_me:24406: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:24407: \"$ac_try\"") >&5 + { (eval echo "$as_me:24409: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:24410: \$? = $ac_status" >&5 + echo "$as_me:24412: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_type_pid_t=yes else @@ -24417,7 +24419,7 @@ fi rm -f "conftest.$ac_objext" "conftest.$ac_ext" fi -echo "$as_me:24420: result: $ac_cv_type_pid_t" >&5 +echo "$as_me:24422: 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 : @@ -24432,23 +24434,23 @@ for ac_header in unistd.h vfork.h do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` -echo "$as_me:24435: checking for $ac_header" >&5 +echo "$as_me:24437: 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 24441 "configure" +#line 24443 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:24445: \"$ac_cpp "conftest.$ac_ext"\"") >&5 +if { (eval echo "$as_me:24447: \"$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:24451: \$? = $ac_status" >&5 + echo "$as_me:24453: \$? = $ac_status" >&5 (exit "$ac_status"); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -24467,7 +24469,7 @@ fi rm -f conftest.err "conftest.$ac_ext" fi -echo "$as_me:24470: result: `eval echo '${'"$as_ac_Header"'}'`" >&5 +echo "$as_me:24472: 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:24485: 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 24489 "configure" +#line 24491 "configure" #include "confdefs.h" #define $ac_func autoconf_temporary #include /* least-intrusive standard header which defines gcc2 __stub macros */ @@ -24517,16 +24519,16 @@ } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:24520: \"$ac_link\"") >&5 +if { (eval echo "$as_me:24522: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:24523: \$? = $ac_status" >&5 + echo "$as_me:24525: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:24526: \"$ac_try\"") >&5 + { (eval echo "$as_me:24528: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:24529: \$? = $ac_status" >&5 + echo "$as_me:24531: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then eval "$as_ac_var=yes" else @@ -24536,7 +24538,7 @@ fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:24539: result: `eval echo '${'"$as_ac_var"'}'`" >&5 +echo "$as_me:24541: 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:24553: 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 @@ -24571,15 +24573,15 @@ } _ACEOF rm -f "conftest$ac_exeext" -if { (eval echo "$as_me:24574: \"$ac_link\"") >&5 +if { (eval echo "$as_me:24576: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:24577: \$? = $ac_status" >&5 + echo "$as_me:24579: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='"./conftest$ac_exeext"' - { (eval echo "$as_me:24579: \"$ac_try\"") >&5 + { (eval echo "$as_me:24581: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:24582: \$? = $ac_status" >&5 + echo "$as_me:24584: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_func_fork_works=yes else @@ -24591,7 +24593,7 @@ rm -f core ./core.* ./*.core "conftest$ac_exeext" "conftest.$ac_objext" "conftest.$ac_ext" fi fi -echo "$as_me:24594: result: $ac_cv_func_fork_works" >&5 +echo "$as_me:24596: result: $ac_cv_func_fork_works" >&5 echo "${ECHO_T}$ac_cv_func_fork_works" >&6 fi @@ -24605,12 +24607,12 @@ ac_cv_func_fork_works=yes ;; esac - { echo "$as_me:24608: WARNING: CROSS: Result $ac_cv_func_fork_works guessed due to cross-compiling." >&5 + { echo "$as_me:24610: 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:24613: checking for working vfork" >&5 + echo "$as_me:24615: 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 @@ -24619,7 +24621,7 @@ ac_cv_func_vfork_works=cross else cat >"conftest.$ac_ext" <<_ACEOF -#line 24622 "configure" +#line 24624 "configure" #include "confdefs.h" /* Thanks to Paul Eggert for this test. */ #include @@ -24712,15 +24714,15 @@ } _ACEOF rm -f "conftest$ac_exeext" -if { (eval echo "$as_me:24715: \"$ac_link\"") >&5 +if { (eval echo "$as_me:24717: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:24718: \$? = $ac_status" >&5 + echo "$as_me:24720: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='"./conftest$ac_exeext"' - { (eval echo "$as_me:24720: \"$ac_try\"") >&5 + { (eval echo "$as_me:24722: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:24723: \$? = $ac_status" >&5 + echo "$as_me:24725: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_func_vfork_works=yes else @@ -24732,13 +24734,13 @@ rm -f core ./core.* ./*.core "conftest$ac_exeext" "conftest.$ac_objext" "conftest.$ac_ext" fi fi -echo "$as_me:24735: result: $ac_cv_func_vfork_works" >&5 +echo "$as_me:24737: 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:24741: WARNING: CROSS: Result $ac_cv_func_vfork_works guessed due to cross-compiling." >&5 + { echo "$as_me:24743: 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 @@ -24763,7 +24765,7 @@ fi -echo "$as_me:24766: checking if fopen accepts explicit binary mode" >&5 +echo "$as_me:24768: 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 @@ -24773,7 +24775,7 @@ cf_cv_fopen_bin_r=unknown else cat >"conftest.$ac_ext" <<_ACEOF -#line 24776 "configure" +#line 24778 "configure" #include "confdefs.h" $ac_includes_default @@ -24808,15 +24810,15 @@ _ACEOF rm -f "conftest$ac_exeext" -if { (eval echo "$as_me:24811: \"$ac_link\"") >&5 +if { (eval echo "$as_me:24813: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:24814: \$? = $ac_status" >&5 + echo "$as_me:24816: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='"./conftest$ac_exeext"' - { (eval echo "$as_me:24816: \"$ac_try\"") >&5 + { (eval echo "$as_me:24818: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:24819: \$? = $ac_status" >&5 + echo "$as_me:24821: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_fopen_bin_r=yes else @@ -24829,20 +24831,20 @@ fi fi -echo "$as_me:24832: result: $cf_cv_fopen_bin_r" >&5 +echo "$as_me:24834: 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 #define USE_FOPEN_BIN_R 1 EOF - echo "$as_me:24839: checking for cc_t" >&5 + echo "$as_me:24841: checking for cc_t" >&5 echo $ECHO_N "checking for cc_t... $ECHO_C" >&6 if test "${ac_cv_type_cc_t+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >"conftest.$ac_ext" <<_ACEOF -#line 24845 "configure" +#line 24847 "configure" #include "confdefs.h" $ac_includes_default @@ -24860,16 +24862,16 @@ } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:24863: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:24865: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:24866: \$? = $ac_status" >&5 + echo "$as_me:24868: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:24869: \"$ac_try\"") >&5 + { (eval echo "$as_me:24871: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:24872: \$? = $ac_status" >&5 + echo "$as_me:24874: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_type_cc_t=yes else @@ -24879,7 +24881,7 @@ fi rm -f "conftest.$ac_objext" "conftest.$ac_ext" fi -echo "$as_me:24882: result: $ac_cv_type_cc_t" >&5 +echo "$as_me:24884: result: $ac_cv_type_cc_t" >&5 echo "${ECHO_T}$ac_cv_type_cc_t" >&6 if test "$ac_cv_type_cc_t" = yes; then @@ -24889,13 +24891,13 @@ fi - echo "$as_me:24892: checking for speed_t" >&5 + echo "$as_me:24894: checking for speed_t" >&5 echo $ECHO_N "checking for speed_t... $ECHO_C" >&6 if test "${ac_cv_type_speed_t+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >"conftest.$ac_ext" <<_ACEOF -#line 24898 "configure" +#line 24900 "configure" #include "confdefs.h" $ac_includes_default @@ -24913,16 +24915,16 @@ } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:24916: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:24918: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:24919: \$? = $ac_status" >&5 + echo "$as_me:24921: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:24922: \"$ac_try\"") >&5 + { (eval echo "$as_me:24924: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:24925: \$? = $ac_status" >&5 + echo "$as_me:24927: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_type_speed_t=yes else @@ -24932,7 +24934,7 @@ fi rm -f "conftest.$ac_objext" "conftest.$ac_ext" fi -echo "$as_me:24935: result: $ac_cv_type_speed_t" >&5 +echo "$as_me:24937: result: $ac_cv_type_speed_t" >&5 echo "${ECHO_T}$ac_cv_type_speed_t" >&6 if test "$ac_cv_type_speed_t" = yes; then @@ -24942,13 +24944,13 @@ fi - echo "$as_me:24945: checking for tcflag_t" >&5 + echo "$as_me:24947: checking for tcflag_t" >&5 echo $ECHO_N "checking for tcflag_t... $ECHO_C" >&6 if test "${ac_cv_type_tcflag_t+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >"conftest.$ac_ext" <<_ACEOF -#line 24951 "configure" +#line 24953 "configure" #include "confdefs.h" $ac_includes_default @@ -24966,16 +24968,16 @@ } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:24969: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:24971: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:24972: \$? = $ac_status" >&5 + echo "$as_me:24974: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:24975: \"$ac_try\"") >&5 + { (eval echo "$as_me:24977: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:24978: \$? = $ac_status" >&5 + echo "$as_me:24980: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_type_tcflag_t=yes else @@ -24985,7 +24987,7 @@ fi rm -f "conftest.$ac_objext" "conftest.$ac_ext" fi -echo "$as_me:24988: result: $ac_cv_type_tcflag_t" >&5 +echo "$as_me:24990: result: $ac_cv_type_tcflag_t" >&5 echo "${ECHO_T}$ac_cv_type_tcflag_t" >&6 if test "$ac_cv_type_tcflag_t" = yes; then @@ -24995,13 +24997,13 @@ fi - echo "$as_me:24998: checking for sigset_t" >&5 + echo "$as_me:25000: checking for sigset_t" >&5 echo $ECHO_N "checking for sigset_t... $ECHO_C" >&6 if test "${ac_cv_type_sigset_t+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >"conftest.$ac_ext" <<_ACEOF -#line 25004 "configure" +#line 25006 "configure" #include "confdefs.h" $ac_includes_default @@ -25019,16 +25021,16 @@ } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:25022: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:25024: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:25025: \$? = $ac_status" >&5 + echo "$as_me:25027: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:25028: \"$ac_try\"") >&5 + { (eval echo "$as_me:25030: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25031: \$? = $ac_status" >&5 + echo "$as_me:25033: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_type_sigset_t=yes else @@ -25038,7 +25040,7 @@ fi rm -f "conftest.$ac_objext" "conftest.$ac_ext" fi -echo "$as_me:25041: result: $ac_cv_type_sigset_t" >&5 +echo "$as_me:25043: result: $ac_cv_type_sigset_t" >&5 echo "${ECHO_T}$ac_cv_type_sigset_t" >&6 if test "$ac_cv_type_sigset_t" = yes; then @@ -25050,7 +25052,7 @@ # special check for test/ditto.c -echo "$as_me:25053: checking for openpty in -lutil" >&5 +echo "$as_me:25055: 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 @@ -25058,7 +25060,7 @@ ac_check_lib_save_LIBS=$LIBS LIBS="-lutil $LIBS" cat >"conftest.$ac_ext" <<_ACEOF -#line 25061 "configure" +#line 25063 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -25077,16 +25079,16 @@ } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:25080: \"$ac_link\"") >&5 +if { (eval echo "$as_me:25082: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:25083: \$? = $ac_status" >&5 + echo "$as_me:25085: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:25086: \"$ac_try\"") >&5 + { (eval echo "$as_me:25088: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25089: \$? = $ac_status" >&5 + echo "$as_me:25091: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_lib_util_openpty=yes else @@ -25097,7 +25099,7 @@ rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:25100: result: $ac_cv_lib_util_openpty" >&5 +echo "$as_me:25102: 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 @@ -25105,7 +25107,7 @@ cf_cv_lib_util=no fi -echo "$as_me:25108: checking for openpty header" >&5 +echo "$as_me:25110: 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 @@ -25132,7 +25134,7 @@ for cf_header in pty.h libutil.h util.h do cat >"conftest.$ac_ext" <<_ACEOF -#line 25135 "configure" +#line 25137 "configure" #include "confdefs.h" #include <$cf_header> @@ -25150,16 +25152,16 @@ } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:25153: \"$ac_link\"") >&5 +if { (eval echo "$as_me:25155: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:25156: \$? = $ac_status" >&5 + echo "$as_me:25158: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:25159: \"$ac_try\"") >&5 + { (eval echo "$as_me:25161: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25162: \$? = $ac_status" >&5 + echo "$as_me:25164: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_func_openpty=$cf_header @@ -25177,7 +25179,7 @@ LIBS="$cf_save_LIBS" fi -echo "$as_me:25180: result: $cf_cv_func_openpty" >&5 +echo "$as_me:25182: result: $cf_cv_func_openpty" >&5 echo "${ECHO_T}$cf_cv_func_openpty" >&6 if test "$cf_cv_func_openpty" != no ; then @@ -25250,7 +25252,7 @@ CPPFLAGS="${CPPFLAGS}-I$cf_add_incdir" cat >"conftest.$ac_ext" <<_ACEOF -#line 25253 "configure" +#line 25255 "configure" #include "confdefs.h" #include int @@ -25262,16 +25264,16 @@ } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:25265: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:25267: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:25268: \$? = $ac_status" >&5 + echo "$as_me:25270: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:25271: \"$ac_try\"") >&5 + { (eval echo "$as_me:25273: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25274: \$? = $ac_status" >&5 + echo "$as_me:25276: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then : else @@ -25288,7 +25290,7 @@ if test "$cf_have_incdir" = no ; then test -n "$verbose" && echo " adding $cf_add_incdir to include-path" 1>&6 -echo "${as_me:-configure}:25291: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:25293: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -25324,7 +25326,7 @@ if test "$cf_have_libdir" = no ; then test -n "$verbose" && echo " adding $cf_add_libdir to library-path" 1>&6 -echo "${as_me:-configure}:25327: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:25329: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -25335,7 +25337,7 @@ else case "$with_hashed_db" in (./*|../*|/*) - { echo "$as_me:25338: WARNING: no such directory $with_hashed_db" >&5 + { echo "$as_me:25340: WARNING: no such directory $with_hashed_db" >&5 echo "$as_me: WARNING: no such directory $with_hashed_db" >&2;} ;; (*) @@ -25407,7 +25409,7 @@ CPPFLAGS="${CPPFLAGS}-I$cf_add_incdir" cat >"conftest.$ac_ext" <<_ACEOF -#line 25410 "configure" +#line 25412 "configure" #include "confdefs.h" #include int @@ -25419,16 +25421,16 @@ } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:25422: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:25424: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:25425: \$? = $ac_status" >&5 + echo "$as_me:25427: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:25428: \"$ac_try\"") >&5 + { (eval echo "$as_me:25430: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25431: \$? = $ac_status" >&5 + echo "$as_me:25433: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then : else @@ -25445,7 +25447,7 @@ if test "$cf_have_incdir" = no ; then test -n "$verbose" && echo " adding $cf_add_incdir to include-path" 1>&6 -echo "${as_me:-configure}:25448: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:25450: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -25525,7 +25527,7 @@ if test "$cf_have_libdir" = no ; then test -n "$verbose" && echo " adding $cf_add_libdir to library-path" 1>&6 -echo "${as_me:-configure}:25528: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:25530: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -25542,23 +25544,23 @@ fi esac -echo "$as_me:25545: checking for db.h" >&5 +echo "$as_me:25547: 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 25551 "configure" +#line 25553 "configure" #include "confdefs.h" #include _ACEOF -if { (eval echo "$as_me:25555: \"$ac_cpp "conftest.$ac_ext"\"") >&5 +if { (eval echo "$as_me:25557: \"$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:25561: \$? = $ac_status" >&5 + echo "$as_me:25563: \$? = $ac_status" >&5 (exit "$ac_status"); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -25577,11 +25579,11 @@ fi rm -f conftest.err "conftest.$ac_ext" fi -echo "$as_me:25580: result: $ac_cv_header_db_h" >&5 +echo "$as_me:25582: 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:25584: checking for version of db" >&5 +echo "$as_me:25586: 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 @@ -25592,10 +25594,10 @@ for cf_db_version in 1 2 3 4 5 6 do -echo "${as_me:-configure}:25595: testing checking for db version $cf_db_version ..." 1>&5 +echo "${as_me:-configure}:25597: testing checking for db version $cf_db_version ..." 1>&5 cat >"conftest.$ac_ext" <<_ACEOF -#line 25598 "configure" +#line 25600 "configure" #include "confdefs.h" $ac_includes_default @@ -25625,16 +25627,16 @@ } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:25628: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:25630: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:25631: \$? = $ac_status" >&5 + echo "$as_me:25633: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:25634: \"$ac_try\"") >&5 + { (eval echo "$as_me:25636: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25637: \$? = $ac_status" >&5 + echo "$as_me:25639: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_hashed_db_version=$cf_db_version @@ -25648,16 +25650,16 @@ done fi -echo "$as_me:25651: result: $cf_cv_hashed_db_version" >&5 +echo "$as_me:25653: 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:25655: error: Cannot determine version of db" >&5 + { { echo "$as_me:25657: 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:25660: checking for db libraries" >&5 +echo "$as_me:25662: 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 @@ -25687,10 +25689,10 @@ fi -echo "${as_me:-configure}:25690: testing checking for library $cf_db_libs ..." 1>&5 +echo "${as_me:-configure}:25692: testing checking for library $cf_db_libs ..." 1>&5 cat >"conftest.$ac_ext" <<_ACEOF -#line 25693 "configure" +#line 25695 "configure" #include "confdefs.h" $ac_includes_default @@ -25745,16 +25747,16 @@ } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:25748: \"$ac_link\"") >&5 +if { (eval echo "$as_me:25750: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:25751: \$? = $ac_status" >&5 + echo "$as_me:25753: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:25754: \"$ac_try\"") >&5 + { (eval echo "$as_me:25756: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25757: \$? = $ac_status" >&5 + echo "$as_me:25759: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then if test -n "$cf_db_libs" ; then @@ -25774,11 +25776,11 @@ done fi -echo "$as_me:25777: result: $cf_cv_hashed_db_libs" >&5 +echo "$as_me:25779: 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:25781: error: Cannot determine library for db" >&5 + { { echo "$as_me:25783: 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 @@ -25804,7 +25806,7 @@ else - { { echo "$as_me:25807: error: Cannot find db.h" >&5 + { { echo "$as_me:25809: error: Cannot find db.h" >&5 echo "$as_me: error: Cannot find db.h" >&2;} { (exit 1); exit 1; }; } @@ -25819,7 +25821,7 @@ # Just in case, check if the C compiler has a bool type. -echo "$as_me:25822: checking if we should include stdbool.h" >&5 +echo "$as_me:25824: 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 @@ -25827,7 +25829,7 @@ else cat >"conftest.$ac_ext" <<_ACEOF -#line 25830 "configure" +#line 25832 "configure" #include "confdefs.h" #ifndef __BEOS__ @@ -25843,23 +25845,23 @@ } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:25846: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:25848: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:25849: \$? = $ac_status" >&5 + echo "$as_me:25851: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:25852: \"$ac_try\"") >&5 + { (eval echo "$as_me:25854: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25855: \$? = $ac_status" >&5 + echo "$as_me:25857: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_header_stdbool_h=1 else echo "$as_me: failed program was:" >&5 cat "conftest.$ac_ext" >&5 cat >"conftest.$ac_ext" <<_ACEOF -#line 25862 "configure" +#line 25864 "configure" #include "confdefs.h" int @@ -25871,16 +25873,16 @@ } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:25874: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:25876: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:25877: \$? = $ac_status" >&5 + echo "$as_me:25879: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:25880: \"$ac_try\"") >&5 + { (eval echo "$as_me:25882: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25883: \$? = $ac_status" >&5 + echo "$as_me:25885: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_header_stdbool_h=0 else @@ -25893,13 +25895,13 @@ fi if test "$cf_cv_header_stdbool_h" = 1 -then echo "$as_me:25896: result: yes" >&5 +then echo "$as_me:25898: result: yes" >&5 echo "${ECHO_T}yes" >&6 -else echo "$as_me:25898: result: no" >&5 +else echo "$as_me:25900: result: no" >&5 echo "${ECHO_T}no" >&6 fi -echo "$as_me:25902: checking for builtin bool type" >&5 +echo "$as_me:25904: 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 @@ -25907,7 +25909,7 @@ else cat >"conftest.$ac_ext" <<_ACEOF -#line 25910 "configure" +#line 25912 "configure" #include "confdefs.h" #include @@ -25922,16 +25924,16 @@ } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:25925: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:25927: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:25928: \$? = $ac_status" >&5 + echo "$as_me:25930: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:25931: \"$ac_try\"") >&5 + { (eval echo "$as_me:25933: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25934: \$? = $ac_status" >&5 + echo "$as_me:25936: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_cc_bool_type=1 else @@ -25943,9 +25945,9 @@ fi if test "$cf_cv_cc_bool_type" = 1 -then echo "$as_me:25946: result: yes" >&5 +then echo "$as_me:25948: result: yes" >&5 echo "${ECHO_T}yes" >&6 -else echo "$as_me:25948: result: no" >&5 +else echo "$as_me:25950: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -25962,10 +25964,10 @@ cf_save="$LIBS" LIBS="$LIBS $CXXLIBS" - echo "$as_me:25965: checking if we already have C++ library" >&5 + echo "$as_me:25967: 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 25968 "configure" +#line 25970 "configure" #include "confdefs.h" #include @@ -25979,16 +25981,16 @@ } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:25982: \"$ac_link\"") >&5 +if { (eval echo "$as_me:25984: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:25985: \$? = $ac_status" >&5 + echo "$as_me:25987: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:25988: \"$ac_try\"") >&5 + { (eval echo "$as_me:25990: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25991: \$? = $ac_status" >&5 + echo "$as_me:25993: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_have_libstdcpp=yes else @@ -25997,7 +25999,7 @@ cf_have_libstdcpp=no fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" - echo "$as_me:26000: result: $cf_have_libstdcpp" >&5 + echo "$as_me:26002: result: $cf_have_libstdcpp" >&5 echo "${ECHO_T}$cf_have_libstdcpp" >&6 LIBS="$cf_save" @@ -26016,7 +26018,7 @@ ;; esac - echo "$as_me:26019: checking for library $cf_stdcpp_libname" >&5 + echo "$as_me:26021: 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 @@ -26042,7 +26044,7 @@ LIBS="$cf_add_libs" cat >"conftest.$ac_ext" <<_ACEOF -#line 26045 "configure" +#line 26047 "configure" #include "confdefs.h" #include @@ -26056,16 +26058,16 @@ } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:26059: \"$ac_link\"") >&5 +if { (eval echo "$as_me:26061: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:26062: \$? = $ac_status" >&5 + echo "$as_me:26064: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:26065: \"$ac_try\"") >&5 + { (eval echo "$as_me:26067: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:26068: \$? = $ac_status" >&5 + echo "$as_me:26070: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_libstdcpp=yes else @@ -26077,7 +26079,7 @@ LIBS="$cf_save" fi -echo "$as_me:26080: result: $cf_cv_libstdcpp" >&5 +echo "$as_me:26082: result: $cf_cv_libstdcpp" >&5 echo "${ECHO_T}$cf_cv_libstdcpp" >&6 test "$cf_cv_libstdcpp" = yes && { cf_add_libs="$CXXLIBS" @@ -26099,7 +26101,7 @@ fi fi - echo "$as_me:26102: checking whether $CXX understands -c and -o together" >&5 + echo "$as_me:26104: 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 @@ -26114,15 +26116,15 @@ # 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:26117: \"$ac_try\"") >&5 +if { (eval echo "$as_me:26119: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:26120: \$? = $ac_status" >&5 + echo "$as_me:26122: \$? = $ac_status" >&5 (exit "$ac_status"); } && - test -f conftest2.$ac_objext && { (eval echo "$as_me:26122: \"$ac_try\"") >&5 + test -f conftest2.$ac_objext && { (eval echo "$as_me:26124: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:26125: \$? = $ac_status" >&5 + echo "$as_me:26127: \$? = $ac_status" >&5 (exit "$ac_status"); }; then eval cf_cv_prog_CXX_c_o=yes @@ -26133,10 +26135,10 @@ fi if test "$cf_cv_prog_CXX_c_o" = yes; then - echo "$as_me:26136: result: yes" >&5 + echo "$as_me:26138: result: yes" >&5 echo "${ECHO_T}yes" >&6 else - echo "$as_me:26139: result: no" >&5 + echo "$as_me:26141: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -26156,7 +26158,7 @@ ;; esac if test "$GXX" = yes; then - echo "$as_me:26159: checking for lib$cf_gpp_libname" >&5 + echo "$as_me:26161: checking for lib$cf_gpp_libname" >&5 echo $ECHO_N "checking for lib$cf_gpp_libname... $ECHO_C" >&6 cf_save="$LIBS" @@ -26177,7 +26179,7 @@ LIBS="$cf_add_libs" cat >"conftest.$ac_ext" <<_ACEOF -#line 26180 "configure" +#line 26182 "configure" #include "confdefs.h" #include <$cf_gpp_libname/builtin.h> @@ -26191,16 +26193,16 @@ } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:26194: \"$ac_link\"") >&5 +if { (eval echo "$as_me:26196: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:26197: \$? = $ac_status" >&5 + echo "$as_me:26199: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:26200: \"$ac_try\"") >&5 + { (eval echo "$as_me:26202: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:26203: \$? = $ac_status" >&5 + echo "$as_me:26205: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cxx_library=yes @@ -26237,7 +26239,7 @@ echo "$as_me: failed program was:" >&5 cat "conftest.$ac_ext" >&5 cat >"conftest.$ac_ext" <<_ACEOF -#line 26240 "configure" +#line 26242 "configure" #include "confdefs.h" #include @@ -26251,16 +26253,16 @@ } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:26254: \"$ac_link\"") >&5 +if { (eval echo "$as_me:26256: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:26257: \$? = $ac_status" >&5 + echo "$as_me:26259: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:26260: \"$ac_try\"") >&5 + { (eval echo "$as_me:26262: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:26263: \$? = $ac_status" >&5 + echo "$as_me:26265: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cxx_library=yes @@ -26293,7 +26295,7 @@ fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" LIBS="$cf_save" - echo "$as_me:26296: result: $cf_cxx_library" >&5 + echo "$as_me:26298: result: $cf_cxx_library" >&5 echo "${ECHO_T}$cf_cxx_library" >&6 fi @@ -26309,7 +26311,7 @@ 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:26312: checking how to run the C++ preprocessor" >&5 +echo "$as_me:26314: 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 @@ -26326,18 +26328,18 @@ # 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 26329 "configure" +#line 26331 "configure" #include "confdefs.h" #include Syntax error _ACEOF -if { (eval echo "$as_me:26334: \"$ac_cpp "conftest.$ac_ext"\"") >&5 +if { (eval echo "$as_me:26336: \"$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:26340: \$? = $ac_status" >&5 + echo "$as_me:26342: \$? = $ac_status" >&5 (exit "$ac_status"); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_cxx_preproc_warn_flag @@ -26360,17 +26362,17 @@ # OK, works on sane cases. Now check whether non-existent headers # can be detected and how. cat >"conftest.$ac_ext" <<_ACEOF -#line 26363 "configure" +#line 26365 "configure" #include "confdefs.h" #include _ACEOF -if { (eval echo "$as_me:26367: \"$ac_cpp "conftest.$ac_ext"\"") >&5 +if { (eval echo "$as_me:26369: \"$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:26373: \$? = $ac_status" >&5 + echo "$as_me:26375: \$? = $ac_status" >&5 (exit "$ac_status"); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_cxx_preproc_warn_flag @@ -26407,7 +26409,7 @@ else ac_cv_prog_CXXCPP=$CXXCPP fi -echo "$as_me:26410: result: $CXXCPP" >&5 +echo "$as_me:26412: result: $CXXCPP" >&5 echo "${ECHO_T}$CXXCPP" >&6 ac_preproc_ok=false for ac_cxx_preproc_warn_flag in '' yes @@ -26417,18 +26419,18 @@ # 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 26420 "configure" +#line 26422 "configure" #include "confdefs.h" #include Syntax error _ACEOF -if { (eval echo "$as_me:26425: \"$ac_cpp "conftest.$ac_ext"\"") >&5 +if { (eval echo "$as_me:26427: \"$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:26431: \$? = $ac_status" >&5 + echo "$as_me:26433: \$? = $ac_status" >&5 (exit "$ac_status"); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_cxx_preproc_warn_flag @@ -26451,17 +26453,17 @@ # OK, works on sane cases. Now check whether non-existent headers # can be detected and how. cat >"conftest.$ac_ext" <<_ACEOF -#line 26454 "configure" +#line 26456 "configure" #include "confdefs.h" #include _ACEOF -if { (eval echo "$as_me:26458: \"$ac_cpp "conftest.$ac_ext"\"") >&5 +if { (eval echo "$as_me:26460: \"$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:26464: \$? = $ac_status" >&5 + echo "$as_me:26466: \$? = $ac_status" >&5 (exit "$ac_status"); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_cxx_preproc_warn_flag @@ -26489,7 +26491,7 @@ if $ac_preproc_ok; then : else - { { echo "$as_me:26492: error: C++ preprocessor \"$CXXCPP\" fails sanity check" >&5 + { { echo "$as_me:26494: error: C++ preprocessor \"$CXXCPP\" fails sanity check" >&5 echo "$as_me: error: C++ preprocessor \"$CXXCPP\" fails sanity check" >&2;} { (exit 1); exit 1; }; } fi @@ -26504,23 +26506,23 @@ for ac_header in new exception typeinfo do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` -echo "$as_me:26507: checking for $ac_header" >&5 +echo "$as_me:26509: 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 26513 "configure" +#line 26515 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:26517: \"$ac_cpp "conftest.$ac_ext"\"") >&5 +if { (eval echo "$as_me:26519: \"$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:26523: \$? = $ac_status" >&5 + echo "$as_me:26525: \$? = $ac_status" >&5 (exit "$ac_status"); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_cxx_preproc_warn_flag @@ -26539,7 +26541,7 @@ fi rm -f conftest.err "conftest.$ac_ext" fi -echo "$as_me:26542: result: `eval echo '${'"$as_ac_Header"'}'`" >&5 +echo "$as_me:26544: 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:26557: 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 26561 "configure" +#line 26563 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:26565: \"$ac_cpp "conftest.$ac_ext"\"") >&5 +if { (eval echo "$as_me:26567: \"$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:26571: \$? = $ac_status" >&5 + echo "$as_me:26573: \$? = $ac_status" >&5 (exit "$ac_status"); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_cxx_preproc_warn_flag @@ -26587,7 +26589,7 @@ fi rm -f conftest.err "conftest.$ac_ext" fi -echo "$as_me:26590: result: `eval echo '${'"$as_ac_Header"'}'`" >&5 +echo "$as_me:26592: 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:26603: 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 26604 "configure" +#line 26606 "configure" #include "confdefs.h" #include @@ -26618,16 +26620,16 @@ } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:26621: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:26623: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:26624: \$? = $ac_status" >&5 + echo "$as_me:26626: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:26627: \"$ac_try\"") >&5 + { (eval echo "$as_me:26629: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:26630: \$? = $ac_status" >&5 + echo "$as_me:26632: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_iostream_namespace=yes else @@ -26636,7 +26638,7 @@ cf_iostream_namespace=no fi rm -f "conftest.$ac_objext" "conftest.$ac_ext" - echo "$as_me:26639: result: $cf_iostream_namespace" >&5 + echo "$as_me:26641: result: $cf_iostream_namespace" >&5 echo "${ECHO_T}$cf_iostream_namespace" >&6 if test "$cf_iostream_namespace" = yes ; then @@ -26647,7 +26649,7 @@ fi fi -echo "$as_me:26650: checking if we should include stdbool.h" >&5 +echo "$as_me:26652: 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 @@ -26655,7 +26657,7 @@ else cat >"conftest.$ac_ext" <<_ACEOF -#line 26658 "configure" +#line 26660 "configure" #include "confdefs.h" #ifndef __BEOS__ @@ -26671,23 +26673,23 @@ } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:26674: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:26676: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:26677: \$? = $ac_status" >&5 + echo "$as_me:26679: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:26680: \"$ac_try\"") >&5 + { (eval echo "$as_me:26682: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:26683: \$? = $ac_status" >&5 + echo "$as_me:26685: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_header_stdbool_h=1 else echo "$as_me: failed program was:" >&5 cat "conftest.$ac_ext" >&5 cat >"conftest.$ac_ext" <<_ACEOF -#line 26690 "configure" +#line 26692 "configure" #include "confdefs.h" int @@ -26699,16 +26701,16 @@ } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:26702: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:26704: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:26705: \$? = $ac_status" >&5 + echo "$as_me:26707: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:26708: \"$ac_try\"") >&5 + { (eval echo "$as_me:26710: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:26711: \$? = $ac_status" >&5 + echo "$as_me:26713: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_header_stdbool_h=0 else @@ -26721,13 +26723,13 @@ fi if test "$cf_cv_header_stdbool_h" = 1 -then echo "$as_me:26724: result: yes" >&5 +then echo "$as_me:26726: result: yes" >&5 echo "${ECHO_T}yes" >&6 -else echo "$as_me:26726: result: no" >&5 +else echo "$as_me:26728: result: no" >&5 echo "${ECHO_T}no" >&6 fi -echo "$as_me:26730: checking for builtin bool type" >&5 +echo "$as_me:26732: 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 @@ -26735,7 +26737,7 @@ else cat >"conftest.$ac_ext" <<_ACEOF -#line 26738 "configure" +#line 26740 "configure" #include "confdefs.h" #include @@ -26750,16 +26752,16 @@ } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:26753: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:26755: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:26756: \$? = $ac_status" >&5 + echo "$as_me:26758: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:26759: \"$ac_try\"") >&5 + { (eval echo "$as_me:26761: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:26762: \$? = $ac_status" >&5 + echo "$as_me:26764: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_builtin_bool=1 else @@ -26771,19 +26773,19 @@ fi if test "$cf_cv_builtin_bool" = 1 -then echo "$as_me:26774: result: yes" >&5 +then echo "$as_me:26776: result: yes" >&5 echo "${ECHO_T}yes" >&6 -else echo "$as_me:26776: result: no" >&5 +else echo "$as_me:26778: result: no" >&5 echo "${ECHO_T}no" >&6 fi -echo "$as_me:26780: checking for bool" >&5 +echo "$as_me:26782: 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 26786 "configure" +#line 26788 "configure" #include "confdefs.h" $ac_includes_default @@ -26818,16 +26820,16 @@ } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:26821: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:26823: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:26824: \$? = $ac_status" >&5 + echo "$as_me:26826: \$? = $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:26829: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:26830: \$? = $ac_status" >&5 + echo "$as_me:26832: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_type_bool=yes else @@ -26837,10 +26839,10 @@ fi rm -f "conftest.$ac_objext" "conftest.$ac_ext" fi -echo "$as_me:26840: result: $ac_cv_type_bool" >&5 +echo "$as_me:26842: result: $ac_cv_type_bool" >&5 echo "${ECHO_T}$ac_cv_type_bool" >&6 -echo "$as_me:26843: checking size of bool" >&5 +echo "$as_me:26845: 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 @@ -26849,7 +26851,7 @@ if test "$cross_compiling" = yes; then # Depending upon the size, compute the lo and hi bounds. cat >"conftest.$ac_ext" <<_ACEOF -#line 26852 "configure" +#line 26854 "configure" #include "confdefs.h" $ac_includes_default @@ -26881,21 +26883,21 @@ } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:26884: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:26886: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:26887: \$? = $ac_status" >&5 + echo "$as_me:26889: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:26890: \"$ac_try\"") >&5 + { (eval echo "$as_me:26892: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:26893: \$? = $ac_status" >&5 + echo "$as_me:26895: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_lo=0 ac_mid=0 while :; do cat >"conftest.$ac_ext" <<_ACEOF -#line 26898 "configure" +#line 26900 "configure" #include "confdefs.h" $ac_includes_default @@ -26927,16 +26929,16 @@ } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:26930: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:26932: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:26933: \$? = $ac_status" >&5 + echo "$as_me:26935: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:26936: \"$ac_try\"") >&5 + { (eval echo "$as_me:26938: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:26939: \$? = $ac_status" >&5 + echo "$as_me:26941: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_hi=$ac_mid; break else @@ -26952,7 +26954,7 @@ ac_hi=-1 ac_mid=-1 while :; do cat >"conftest.$ac_ext" <<_ACEOF -#line 26955 "configure" +#line 26957 "configure" #include "confdefs.h" $ac_includes_default @@ -26984,16 +26986,16 @@ } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:26987: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:26989: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:26990: \$? = $ac_status" >&5 + echo "$as_me:26992: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:26993: \"$ac_try\"") >&5 + { (eval echo "$as_me:26995: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:26996: \$? = $ac_status" >&5 + echo "$as_me:26998: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_lo=$ac_mid; break else @@ -27009,7 +27011,7 @@ 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 27012 "configure" +#line 27014 "configure" #include "confdefs.h" $ac_includes_default @@ -27041,16 +27043,16 @@ } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:27044: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:27046: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:27047: \$? = $ac_status" >&5 + echo "$as_me:27049: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:27050: \"$ac_try\"") >&5 + { (eval echo "$as_me:27052: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27053: \$? = $ac_status" >&5 + echo "$as_me:27055: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_hi=$ac_mid else @@ -27063,12 +27065,12 @@ ac_cv_sizeof_bool=$ac_lo else if test "$cross_compiling" = yes; then - { { echo "$as_me:27066: error: cannot run test program while cross compiling" >&5 + { { echo "$as_me:27068: 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 27071 "configure" +#line 27073 "configure" #include "confdefs.h" $ac_includes_default @@ -27104,15 +27106,15 @@ } _ACEOF rm -f "conftest$ac_exeext" -if { (eval echo "$as_me:27107: \"$ac_link\"") >&5 +if { (eval echo "$as_me:27109: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:27110: \$? = $ac_status" >&5 + echo "$as_me:27112: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='"./conftest$ac_exeext"' - { (eval echo "$as_me:27112: \"$ac_try\"") >&5 + { (eval echo "$as_me:27114: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27115: \$? = $ac_status" >&5 + echo "$as_me:27117: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_sizeof_bool=`cat conftest.val` else @@ -27128,13 +27130,13 @@ ac_cv_sizeof_bool=0 fi fi -echo "$as_me:27131: result: $ac_cv_sizeof_bool" >&5 +echo "$as_me:27133: result: $ac_cv_sizeof_bool" >&5 echo "${ECHO_T}$ac_cv_sizeof_bool" >&6 cat >>confdefs.h <&5 +echo "$as_me:27139: 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 @@ -27153,7 +27155,7 @@ else cat >"conftest.$ac_ext" <<_ACEOF -#line 27156 "configure" +#line 27158 "configure" #include "confdefs.h" $ac_includes_default @@ -27194,15 +27196,15 @@ _ACEOF rm -f "conftest$ac_exeext" -if { (eval echo "$as_me:27197: \"$ac_link\"") >&5 +if { (eval echo "$as_me:27199: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:27200: \$? = $ac_status" >&5 + echo "$as_me:27202: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='"./conftest$ac_exeext"' - { (eval echo "$as_me:27202: \"$ac_try\"") >&5 + { (eval echo "$as_me:27204: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27205: \$? = $ac_status" >&5 + echo "$as_me:27207: \$? = $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 @@ -27219,19 +27221,19 @@ rm -f cf_test.out fi -echo "$as_me:27222: result: $cf_cv_type_of_bool" >&5 +echo "$as_me:27224: 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:27229: WARNING: Assuming $NCURSES_BOOL for type of bool" >&5 + { echo "$as_me:27231: 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:27234: checking for special defines needed for etip.h" >&5 +echo "$as_me:27236: 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" @@ -27249,7 +27251,7 @@ 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 27252 "configure" +#line 27254 "configure" #include "confdefs.h" #include @@ -27263,16 +27265,16 @@ } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:27266: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:27268: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:27269: \$? = $ac_status" >&5 + echo "$as_me:27271: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:27272: \"$ac_try\"") >&5 + { (eval echo "$as_me:27274: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27275: \$? = $ac_status" >&5 + echo "$as_me:27277: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then test -n "$cf_math" && cat >>confdefs.h <&5 +echo "$as_me:27298: result: ${cf_result:-(none)}" >&5 echo "${ECHO_T}${cf_result:-(none)}" >&6 CXXFLAGS="$cf_save_CXXFLAGS" if test -n "$CXX"; then -echo "$as_me:27301: checking if $CXX accepts override keyword" >&5 +echo "$as_me:27303: 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 @@ -27315,7 +27317,7 @@ cf_cv_cpp_override=unknown else cat >"conftest.$ac_ext" <<_ACEOF -#line 27318 "configure" +#line 27320 "configure" #include "confdefs.h" class base @@ -27334,15 +27336,15 @@ _ACEOF rm -f "conftest$ac_exeext" -if { (eval echo "$as_me:27337: \"$ac_link\"") >&5 +if { (eval echo "$as_me:27339: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:27340: \$? = $ac_status" >&5 + echo "$as_me:27342: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='"./conftest$ac_exeext"' - { (eval echo "$as_me:27342: \"$ac_try\"") >&5 + { (eval echo "$as_me:27344: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27345: \$? = $ac_status" >&5 + echo "$as_me:27347: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_cpp_override=yes else @@ -27361,7 +27363,7 @@ ac_main_return="return" fi -echo "$as_me:27364: result: $cf_cv_cpp_override" >&5 +echo "$as_me:27366: result: $cf_cv_cpp_override" >&5 echo "${ECHO_T}$cf_cv_cpp_override" >&6 fi test "$cf_cv_cpp_override" = yes && @@ -27370,7 +27372,7 @@ EOF if test -n "$CXX"; then -echo "$as_me:27373: checking if $CXX accepts parameter initialization" >&5 +echo "$as_me:27375: 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 @@ -27387,7 +27389,7 @@ cf_cv_cpp_param_init=unknown else cat >"conftest.$ac_ext" <<_ACEOF -#line 27390 "configure" +#line 27392 "configure" #include "confdefs.h" class TEST { @@ -27406,15 +27408,15 @@ _ACEOF rm -f "conftest$ac_exeext" -if { (eval echo "$as_me:27409: \"$ac_link\"") >&5 +if { (eval echo "$as_me:27411: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:27412: \$? = $ac_status" >&5 + echo "$as_me:27414: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='"./conftest$ac_exeext"' - { (eval echo "$as_me:27414: \"$ac_try\"") >&5 + { (eval echo "$as_me:27416: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27417: \$? = $ac_status" >&5 + echo "$as_me:27419: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_cpp_param_init=yes else @@ -27433,7 +27435,7 @@ ac_main_return="return" fi -echo "$as_me:27436: result: $cf_cv_cpp_param_init" >&5 +echo "$as_me:27438: result: $cf_cv_cpp_param_init" >&5 echo "${ECHO_T}$cf_cv_cpp_param_init" >&6 fi test "$cf_cv_cpp_param_init" = yes && @@ -27443,7 +27445,7 @@ if test -n "$CXX"; then -echo "$as_me:27446: checking if $CXX accepts static_cast" >&5 +echo "$as_me:27448: 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 @@ -27457,7 +27459,7 @@ ac_main_return="return" cat >"conftest.$ac_ext" <<_ACEOF -#line 27460 "configure" +#line 27462 "configure" #include "confdefs.h" class NCursesPanel @@ -27501,16 +27503,16 @@ } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:27504: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:27506: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:27507: \$? = $ac_status" >&5 + echo "$as_me:27509: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:27510: \"$ac_try\"") >&5 + { (eval echo "$as_me:27512: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27513: \$? = $ac_status" >&5 + echo "$as_me:27515: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_cpp_static_cast=yes else @@ -27528,7 +27530,7 @@ ac_main_return="return" fi -echo "$as_me:27531: result: $cf_cv_cpp_static_cast" >&5 +echo "$as_me:27533: result: $cf_cv_cpp_static_cast" >&5 echo "${ECHO_T}$cf_cv_cpp_static_cast" >&6 fi @@ -27576,13 +27578,13 @@ cf_cv_header_stdbool_h=0 else -echo "$as_me:27579: checking for bool" >&5 +echo "$as_me:27581: 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 27585 "configure" +#line 27587 "configure" #include "confdefs.h" $ac_includes_default @@ -27617,16 +27619,16 @@ } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:27620: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:27622: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:27623: \$? = $ac_status" >&5 + echo "$as_me:27625: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:27626: \"$ac_try\"") >&5 + { (eval echo "$as_me:27628: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27629: \$? = $ac_status" >&5 + echo "$as_me:27631: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_type_bool=yes else @@ -27636,10 +27638,10 @@ fi rm -f "conftest.$ac_objext" "conftest.$ac_ext" fi -echo "$as_me:27639: result: $ac_cv_type_bool" >&5 +echo "$as_me:27641: result: $ac_cv_type_bool" >&5 echo "${ECHO_T}$ac_cv_type_bool" >&6 -echo "$as_me:27642: checking size of bool" >&5 +echo "$as_me:27644: 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 @@ -27648,7 +27650,7 @@ if test "$cross_compiling" = yes; then # Depending upon the size, compute the lo and hi bounds. cat >"conftest.$ac_ext" <<_ACEOF -#line 27651 "configure" +#line 27653 "configure" #include "confdefs.h" $ac_includes_default @@ -27680,21 +27682,21 @@ } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:27683: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:27685: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:27686: \$? = $ac_status" >&5 + echo "$as_me:27688: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:27689: \"$ac_try\"") >&5 + { (eval echo "$as_me:27691: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27692: \$? = $ac_status" >&5 + echo "$as_me:27694: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_lo=0 ac_mid=0 while :; do cat >"conftest.$ac_ext" <<_ACEOF -#line 27697 "configure" +#line 27699 "configure" #include "confdefs.h" $ac_includes_default @@ -27726,16 +27728,16 @@ } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:27729: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:27731: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:27732: \$? = $ac_status" >&5 + echo "$as_me:27734: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:27735: \"$ac_try\"") >&5 + { (eval echo "$as_me:27737: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27738: \$? = $ac_status" >&5 + echo "$as_me:27740: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_hi=$ac_mid; break else @@ -27751,7 +27753,7 @@ ac_hi=-1 ac_mid=-1 while :; do cat >"conftest.$ac_ext" <<_ACEOF -#line 27754 "configure" +#line 27756 "configure" #include "confdefs.h" $ac_includes_default @@ -27783,16 +27785,16 @@ } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:27786: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:27788: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:27789: \$? = $ac_status" >&5 + echo "$as_me:27791: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:27792: \"$ac_try\"") >&5 + { (eval echo "$as_me:27794: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27795: \$? = $ac_status" >&5 + echo "$as_me:27797: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_lo=$ac_mid; break else @@ -27808,7 +27810,7 @@ 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 27811 "configure" +#line 27813 "configure" #include "confdefs.h" $ac_includes_default @@ -27840,16 +27842,16 @@ } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:27843: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:27845: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:27846: \$? = $ac_status" >&5 + echo "$as_me:27848: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:27849: \"$ac_try\"") >&5 + { (eval echo "$as_me:27851: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27852: \$? = $ac_status" >&5 + echo "$as_me:27854: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_hi=$ac_mid else @@ -27862,12 +27864,12 @@ ac_cv_sizeof_bool=$ac_lo else if test "$cross_compiling" = yes; then - { { echo "$as_me:27865: error: cannot run test program while cross compiling" >&5 + { { echo "$as_me:27867: 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 27870 "configure" +#line 27872 "configure" #include "confdefs.h" $ac_includes_default @@ -27903,15 +27905,15 @@ } _ACEOF rm -f "conftest$ac_exeext" -if { (eval echo "$as_me:27906: \"$ac_link\"") >&5 +if { (eval echo "$as_me:27908: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:27909: \$? = $ac_status" >&5 + echo "$as_me:27911: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='"./conftest$ac_exeext"' - { (eval echo "$as_me:27911: \"$ac_try\"") >&5 + { (eval echo "$as_me:27913: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27914: \$? = $ac_status" >&5 + echo "$as_me:27916: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_sizeof_bool=`cat conftest.val` else @@ -27927,13 +27929,13 @@ ac_cv_sizeof_bool=0 fi fi -echo "$as_me:27930: result: $ac_cv_sizeof_bool" >&5 +echo "$as_me:27932: result: $ac_cv_sizeof_bool" >&5 echo "${ECHO_T}$ac_cv_sizeof_bool" >&6 cat >>confdefs.h <&5 +echo "$as_me:27938: 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 @@ -27952,7 +27954,7 @@ else cat >"conftest.$ac_ext" <<_ACEOF -#line 27955 "configure" +#line 27957 "configure" #include "confdefs.h" $ac_includes_default @@ -27993,15 +27995,15 @@ _ACEOF rm -f "conftest$ac_exeext" -if { (eval echo "$as_me:27996: \"$ac_link\"") >&5 +if { (eval echo "$as_me:27998: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:27999: \$? = $ac_status" >&5 + echo "$as_me:28001: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='"./conftest$ac_exeext"' - { (eval echo "$as_me:28001: \"$ac_try\"") >&5 + { (eval echo "$as_me:28003: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28004: \$? = $ac_status" >&5 + echo "$as_me:28006: \$? = $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 @@ -28018,14 +28020,14 @@ rm -f cf_test.out fi -echo "$as_me:28021: result: $cf_cv_type_of_bool" >&5 +echo "$as_me:28023: 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:28028: WARNING: Assuming $NCURSES_BOOL for type of bool" >&5 + { echo "$as_me:28030: 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 @@ -28056,7 +28058,7 @@ if test "$cf_with_ada" != "no" ; then if test "$with_libtool" != "no"; then - { echo "$as_me:28059: WARNING: libtool does not support Ada - disabling feature" >&5 + { echo "$as_me:28061: 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 @@ -28067,7 +28069,7 @@ ADAFLAGS="$ADAFLAGS -gnatpn" - echo "$as_me:28070: checking optimization options for ADAFLAGS" >&5 + echo "$as_me:28072: checking optimization options for ADAFLAGS" >&5 echo $ECHO_N "checking optimization options for ADAFLAGS... $ECHO_C" >&6 case "$CFLAGS" in (*-g*) @@ -28084,10 +28086,10 @@ ;; esac - echo "$as_me:28087: result: $ADAFLAGS" >&5 + echo "$as_me:28089: result: $ADAFLAGS" >&5 echo "${ECHO_T}$ADAFLAGS" >&6 -echo "$as_me:28090: checking if GNATPREP supports -T option" >&5 +echo "$as_me:28092: 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 @@ -28097,11 +28099,11 @@ gnatprep -T 2>/dev/null >/dev/null && cf_cv_gnatprep_opt_t=yes fi -echo "$as_me:28100: result: $cf_cv_gnatprep_opt_t" >&5 +echo "$as_me:28102: 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:28104: checking if GNAT supports generics" >&5 +echo "$as_me:28106: 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]) @@ -28111,7 +28113,7 @@ cf_gnat_generics=no ;; esac -echo "$as_me:28114: result: $cf_gnat_generics" >&5 +echo "$as_me:28116: result: $cf_gnat_generics" >&5 echo "${ECHO_T}$cf_gnat_generics" >&6 if test "$cf_gnat_generics" = yes @@ -28123,7 +28125,7 @@ cf_generic_objects= fi -echo "$as_me:28126: checking if GNAT supports SIGINT" >&5 +echo "$as_me:28128: 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 @@ -28171,7 +28173,7 @@ rm -rf ./conftest* ./*~conftest* fi -echo "$as_me:28174: result: $cf_cv_gnat_sigint" >&5 +echo "$as_me:28176: result: $cf_cv_gnat_sigint" >&5 echo "${ECHO_T}$cf_cv_gnat_sigint" >&6 if test "$cf_cv_gnat_sigint" = yes ; then @@ -28184,7 +28186,7 @@ cf_gnat_projects=no if test "$enable_gnat_projects" != no ; then -echo "$as_me:28187: checking if GNAT supports project files" >&5 +echo "$as_me:28189: 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]*) @@ -28247,15 +28249,15 @@ esac ;; esac -echo "$as_me:28250: result: $cf_gnat_projects" >&5 +echo "$as_me:28252: 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:28256: checking if GNAT supports libraries" >&5 + echo "$as_me:28258: checking if GNAT supports libraries" >&5 echo $ECHO_N "checking if GNAT supports libraries... $ECHO_C" >&6 - echo "$as_me:28258: result: $cf_gnat_libraries" >&5 + echo "$as_me:28260: result: $cf_gnat_libraries" >&5 echo "${ECHO_T}$cf_gnat_libraries" >&6 fi @@ -28275,7 +28277,7 @@ then USE_GNAT_MAKE_GPR="" else - { echo "$as_me:28278: WARNING: use old makefile rules since tools are missing" >&5 + { echo "$as_me:28280: 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 @@ -28287,7 +28289,7 @@ USE_GNAT_LIBRARIES="#" fi -echo "$as_me:28290: checking for Ada95 compiler" >&5 +echo "$as_me:28292: 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. @@ -28298,12 +28300,12 @@ cf_ada_compiler=gnatmake fi; -echo "$as_me:28301: result: $cf_ada_compiler" >&5 +echo "$as_me:28303: result: $cf_ada_compiler" >&5 echo "${ECHO_T}$cf_ada_compiler" >&6 cf_ada_package=terminal_interface -echo "$as_me:28306: checking for Ada95 include directory" >&5 +echo "$as_me:28308: 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. @@ -28337,7 +28339,7 @@ withval=`echo "$withval" | sed -e s%NONE%$cf_path_syntax%` ;; (*) - { { echo "$as_me:28340: error: expected a pathname, not \"$withval\"" >&5 + { { echo "$as_me:28342: error: expected a pathname, not \"$withval\"" >&5 echo "$as_me: error: expected a pathname, not \"$withval\"" >&2;} { (exit 1); exit 1; }; } ;; @@ -28346,10 +28348,10 @@ fi eval ADA_INCLUDE="$withval" -echo "$as_me:28349: result: $ADA_INCLUDE" >&5 +echo "$as_me:28351: result: $ADA_INCLUDE" >&5 echo "${ECHO_T}$ADA_INCLUDE" >&6 -echo "$as_me:28352: checking for Ada95 object directory" >&5 +echo "$as_me:28354: 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. @@ -28383,7 +28385,7 @@ withval=`echo "$withval" | sed -e s%NONE%$cf_path_syntax%` ;; (*) - { { echo "$as_me:28386: error: expected a pathname, not \"$withval\"" >&5 + { { echo "$as_me:28388: error: expected a pathname, not \"$withval\"" >&5 echo "$as_me: error: expected a pathname, not \"$withval\"" >&2;} { (exit 1); exit 1; }; } ;; @@ -28392,10 +28394,10 @@ fi eval ADA_OBJECTS="$withval" -echo "$as_me:28395: result: $ADA_OBJECTS" >&5 +echo "$as_me:28397: result: $ADA_OBJECTS" >&5 echo "${ECHO_T}$ADA_OBJECTS" >&6 -echo "$as_me:28398: checking whether to build an Ada95 shared library" >&5 +echo "$as_me:28400: 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. @@ -28416,11 +28418,11 @@ fi fi -echo "$as_me:28419: result: $with_ada_sharedlib" >&5 +echo "$as_me:28421: result: $with_ada_sharedlib" >&5 echo "${ECHO_T}$with_ada_sharedlib" >&6 if test "x$cf_ada_sharedlib_warn" != xno then - { echo "$as_me:28423: WARNING: disabling Ada95 shared library since GNAT projects are not supported" >&5 + { echo "$as_me:28425: 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 @@ -28438,7 +28440,7 @@ # allow the Ada binding to be renamed -echo "$as_me:28441: checking for Ada95 curses library name" >&5 +echo "$as_me:28443: 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. @@ -28454,7 +28456,7 @@ ;; esac -echo "$as_me:28457: result: $ADA_LIBNAME" >&5 +echo "$as_me:28459: result: $ADA_LIBNAME" >&5 echo "${ECHO_T}$ADA_LIBNAME" >&6 fi @@ -28465,13 +28467,13 @@ # do this "late" to avoid conflict with header-checks if test "x$with_widec" = xyes ; then - echo "$as_me:28468: checking for wchar_t" >&5 + echo "$as_me:28470: 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 28474 "configure" +#line 28476 "configure" #include "confdefs.h" $ac_includes_default int @@ -28486,16 +28488,16 @@ } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:28489: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:28491: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:28492: \$? = $ac_status" >&5 + echo "$as_me:28494: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:28495: \"$ac_try\"") >&5 + { (eval echo "$as_me:28497: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28498: \$? = $ac_status" >&5 + echo "$as_me:28500: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_type_wchar_t=yes else @@ -28505,10 +28507,10 @@ fi rm -f "conftest.$ac_objext" "conftest.$ac_ext" fi -echo "$as_me:28508: result: $ac_cv_type_wchar_t" >&5 +echo "$as_me:28510: result: $ac_cv_type_wchar_t" >&5 echo "${ECHO_T}$ac_cv_type_wchar_t" >&6 -echo "$as_me:28511: checking size of wchar_t" >&5 +echo "$as_me:28513: 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 @@ -28517,7 +28519,7 @@ if test "$cross_compiling" = yes; then # Depending upon the size, compute the lo and hi bounds. cat >"conftest.$ac_ext" <<_ACEOF -#line 28520 "configure" +#line 28522 "configure" #include "confdefs.h" $ac_includes_default int @@ -28529,21 +28531,21 @@ } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:28532: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:28534: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:28535: \$? = $ac_status" >&5 + echo "$as_me:28537: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:28538: \"$ac_try\"") >&5 + { (eval echo "$as_me:28540: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28541: \$? = $ac_status" >&5 + echo "$as_me:28543: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_lo=0 ac_mid=0 while :; do cat >"conftest.$ac_ext" <<_ACEOF -#line 28546 "configure" +#line 28548 "configure" #include "confdefs.h" $ac_includes_default int @@ -28555,16 +28557,16 @@ } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:28558: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:28560: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:28561: \$? = $ac_status" >&5 + echo "$as_me:28563: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:28564: \"$ac_try\"") >&5 + { (eval echo "$as_me:28566: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28567: \$? = $ac_status" >&5 + echo "$as_me:28569: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_hi=$ac_mid; break else @@ -28580,7 +28582,7 @@ ac_hi=-1 ac_mid=-1 while :; do cat >"conftest.$ac_ext" <<_ACEOF -#line 28583 "configure" +#line 28585 "configure" #include "confdefs.h" $ac_includes_default int @@ -28592,16 +28594,16 @@ } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:28595: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:28597: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:28598: \$? = $ac_status" >&5 + echo "$as_me:28600: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:28601: \"$ac_try\"") >&5 + { (eval echo "$as_me:28603: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28604: \$? = $ac_status" >&5 + echo "$as_me:28606: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_lo=$ac_mid; break else @@ -28617,7 +28619,7 @@ 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 28620 "configure" +#line 28622 "configure" #include "confdefs.h" $ac_includes_default int @@ -28629,16 +28631,16 @@ } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:28632: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:28634: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:28635: \$? = $ac_status" >&5 + echo "$as_me:28637: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:28638: \"$ac_try\"") >&5 + { (eval echo "$as_me:28640: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28641: \$? = $ac_status" >&5 + echo "$as_me:28643: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_hi=$ac_mid else @@ -28651,12 +28653,12 @@ ac_cv_sizeof_wchar_t=$ac_lo else if test "$cross_compiling" = yes; then - { { echo "$as_me:28654: error: cannot run test program while cross compiling" >&5 + { { echo "$as_me:28656: 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 28659 "configure" +#line 28661 "configure" #include "confdefs.h" $ac_includes_default int @@ -28672,15 +28674,15 @@ } _ACEOF rm -f "conftest$ac_exeext" -if { (eval echo "$as_me:28675: \"$ac_link\"") >&5 +if { (eval echo "$as_me:28677: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:28678: \$? = $ac_status" >&5 + echo "$as_me:28680: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='"./conftest$ac_exeext"' - { (eval echo "$as_me:28680: \"$ac_try\"") >&5 + { (eval echo "$as_me:28682: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28683: \$? = $ac_status" >&5 + echo "$as_me:28685: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_sizeof_wchar_t=`cat conftest.val` else @@ -28696,7 +28698,7 @@ ac_cv_sizeof_wchar_t=0 fi fi -echo "$as_me:28699: result: $ac_cv_sizeof_wchar_t" >&5 +echo "$as_me:28701: result: $ac_cv_sizeof_wchar_t" >&5 echo "${ECHO_T}$ac_cv_sizeof_wchar_t" >&6 cat >>confdefs.h <&6 -echo "${as_me:-configure}:28712: testing test failed (assume 2) ..." 1>&5 +echo "${as_me:-configure}:28714: testing test failed (assume 2) ..." 1>&5 sed /SIZEOF_WCHAR_T/d confdefs.h >confdefs.tmp mv confdefs.tmp confdefs.h @@ -28727,7 +28729,7 @@ ### chooses to split module lists into libraries. ### ### (see CF_LIB_RULES). -echo "$as_me:28730: checking for library subsets" >&5 +echo "$as_me:28732: checking for library subsets" >&5 echo $ECHO_N "checking for library subsets... $ECHO_C" >&6 LIB_SUBSETS= @@ -28781,7 +28783,7 @@ 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:28784: result: $LIB_SUBSETS" >&5 +echo "$as_me:28786: result: $LIB_SUBSETS" >&5 echo "${ECHO_T}$LIB_SUBSETS" >&6 ### Construct the list of include-directories to be generated @@ -28812,7 +28814,7 @@ fi ### Build up pieces for makefile rules -echo "$as_me:28815: checking default library suffix" >&5 +echo "$as_me:28817: checking default library suffix" >&5 echo $ECHO_N "checking default library suffix... $ECHO_C" >&6 case $DFT_LWR_MODEL in @@ -28823,10 +28825,10 @@ (shared) DFT_ARG_SUFFIX='' ;; esac test -n "$LIB_SUFFIX" && DFT_ARG_SUFFIX="${LIB_SUFFIX}${DFT_ARG_SUFFIX}" -echo "$as_me:28826: result: $DFT_ARG_SUFFIX" >&5 +echo "$as_me:28828: result: $DFT_ARG_SUFFIX" >&5 echo "${ECHO_T}$DFT_ARG_SUFFIX" >&6 -echo "$as_me:28829: checking default library-dependency suffix" >&5 +echo "$as_me:28831: checking default library-dependency suffix" >&5 echo $ECHO_N "checking default library-dependency suffix... $ECHO_C" >&6 case X$DFT_LWR_MODEL in @@ -28909,10 +28911,10 @@ DFT_LIB_SUFFIX="${LIB_SUFFIX}${EXTRA_SUFFIX}${DFT_LIB_SUFFIX}" DFT_DEP_SUFFIX="${LIB_SUFFIX}${EXTRA_SUFFIX}${DFT_DEP_SUFFIX}" fi -echo "$as_me:28912: result: $DFT_DEP_SUFFIX" >&5 +echo "$as_me:28914: result: $DFT_DEP_SUFFIX" >&5 echo "${ECHO_T}$DFT_DEP_SUFFIX" >&6 -echo "$as_me:28915: checking default object directory" >&5 +echo "$as_me:28917: checking default object directory" >&5 echo $ECHO_N "checking default object directory... $ECHO_C" >&6 case $DFT_LWR_MODEL in @@ -28928,11 +28930,11 @@ DFT_OBJ_SUBDIR='obj_s' ;; esac esac -echo "$as_me:28931: result: $DFT_OBJ_SUBDIR" >&5 +echo "$as_me:28933: result: $DFT_OBJ_SUBDIR" >&5 echo "${ECHO_T}$DFT_OBJ_SUBDIR" >&6 if test "x$cf_with_cxx" = xyes ; then -echo "$as_me:28935: checking c++ library-dependency suffix" >&5 +echo "$as_me:28937: 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++) @@ -29025,7 +29027,7 @@ fi fi -echo "$as_me:29028: result: $CXX_LIB_SUFFIX" >&5 +echo "$as_me:29030: result: $CXX_LIB_SUFFIX" >&5 echo "${ECHO_T}$CXX_LIB_SUFFIX" >&6 fi @@ -29201,19 +29203,19 @@ if test -n "$LDFLAGS_STATIC" && test -n "$LDFLAGS_SHARED" then - echo "$as_me:29204: checking if linker supports switching between static/dynamic" >&5 + echo "$as_me:29206: 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:29213: \"$ac_compile\"") >&5 + if { (eval echo "$as_me:29215: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:29216: \$? = $ac_status" >&5 + echo "$as_me:29218: \$? = $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 @@ -29224,10 +29226,10 @@ LIBS="$LDFLAGS_STATIC -L`pwd` -lconftest $LDFLAGS_DYNAMIC $LIBS" cat >"conftest.$ac_ext" <<_ACEOF -#line 29227 "configure" +#line 29229 "configure" #include "confdefs.h" -#line 29230 "configure" +#line 29232 "configure" #include int cf_ldflags_static(FILE *fp); @@ -29242,16 +29244,16 @@ } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:29245: \"$ac_link\"") >&5 +if { (eval echo "$as_me:29247: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:29248: \$? = $ac_status" >&5 + echo "$as_me:29250: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:29251: \"$ac_try\"") >&5 + { (eval echo "$as_me:29253: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:29254: \$? = $ac_status" >&5 + echo "$as_me:29256: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then # some linkers simply ignore the -dynamic @@ -29274,7 +29276,7 @@ rm -f libconftest.* LIBS="$cf_save_LIBS" - echo "$as_me:29277: result: $cf_ldflags_static" >&5 + echo "$as_me:29279: result: $cf_ldflags_static" >&5 echo "${ECHO_T}$cf_ldflags_static" >&6 if test "$cf_ldflags_static" != yes @@ -29290,7 +29292,7 @@ ;; esac -echo "$as_me:29293: checking where we will install curses.h" >&5 +echo "$as_me:29295: checking where we will install curses.h" >&5 echo $ECHO_N "checking where we will install curses.h... $ECHO_C" >&6 includesubdir= @@ -29300,7 +29302,7 @@ then includesubdir="/ncurses${USE_LIB_SUFFIX}" fi -echo "$as_me:29303: result: ${includedir}${includesubdir}" >&5 +echo "$as_me:29305: result: ${includedir}${includesubdir}" >&5 echo "${ECHO_T}${includedir}${includesubdir}" >&6 ### Resolve a conflict between normal and wide-curses by forcing applications @@ -29308,7 +29310,7 @@ if test "$with_overwrite" != no ; then if test "$NCURSES_LIBUTF8" = 1 ; then NCURSES_LIBUTF8='defined(HAVE_LIBUTF8_H)' - { echo "$as_me:29311: WARNING: Wide-character applications must define HAVE_LIBUTF8_H to include curses.h" >&5 + { echo "$as_me:29313: 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 @@ -29333,7 +29335,7 @@ # pkgsrc uses these -echo "$as_me:29336: checking for desired basename for form library" >&5 +echo "$as_me:29338: 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. @@ -29353,10 +29355,10 @@ ;; esac -echo "$as_me:29356: result: $FORM_NAME" >&5 +echo "$as_me:29358: result: $FORM_NAME" >&5 echo "${ECHO_T}$FORM_NAME" >&6 -echo "$as_me:29359: checking for desired basename for menu library" >&5 +echo "$as_me:29361: 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. @@ -29376,10 +29378,10 @@ ;; esac -echo "$as_me:29379: result: $MENU_NAME" >&5 +echo "$as_me:29381: result: $MENU_NAME" >&5 echo "${ECHO_T}$MENU_NAME" >&6 -echo "$as_me:29382: checking for desired basename for panel library" >&5 +echo "$as_me:29384: 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. @@ -29399,10 +29401,10 @@ ;; esac -echo "$as_me:29402: result: $PANEL_NAME" >&5 +echo "$as_me:29404: result: $PANEL_NAME" >&5 echo "${ECHO_T}$PANEL_NAME" >&6 -echo "$as_me:29405: checking for desired basename for cxx library" >&5 +echo "$as_me:29407: 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. @@ -29422,13 +29424,13 @@ ;; esac -echo "$as_me:29425: result: $CXX_NAME" >&5 +echo "$as_me:29427: 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:29431: checking for src modules" >&5 +echo "$as_me:29433: checking for src modules" >&5 echo $ECHO_N "checking for src modules... $ECHO_C" >&6 # dependencies and linker-arguments for test-programs @@ -29487,7 +29489,7 @@ fi fi done -echo "$as_me:29490: result: $cf_cv_src_modules" >&5 +echo "$as_me:29492: result: $cf_cv_src_modules" >&5 echo "${ECHO_T}$cf_cv_src_modules" >&6 TEST_ARGS="-L${LIB_DIR} $TEST_ARGS" @@ -29648,7 +29650,7 @@ (*-D_XOPEN_SOURCE_EXTENDED*) test -n "$verbose" && echo " moving _XOPEN_SOURCE_EXTENDED to work around g++ problem" 1>&6 -echo "${as_me:-configure}:29651: testing moving _XOPEN_SOURCE_EXTENDED to work around g++ problem ..." 1>&5 +echo "${as_me:-configure}:29653: 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//'` @@ -29659,7 +29661,7 @@ # Help to automatically enable the extended curses features when using either # the *-config or the ".pc" files by adding defines. -echo "$as_me:29662: checking for defines to add to ncurses${USE_CFG_SUFFIX}${cf_config_suffix}-config script" >&5 +echo "$as_me:29664: 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 @@ -29675,7 +29677,7 @@ done test "$cf_found" = no && PKG_CFLAGS="$PKG_CFLAGS $cf_loop1" done -echo "$as_me:29678: result: $PKG_CFLAGS" >&5 +echo "$as_me:29680: result: $PKG_CFLAGS" >&5 echo "${ECHO_T}$PKG_CFLAGS" >&6 case "$cf_cv_system_name" in @@ -29747,7 +29749,7 @@ 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}:29750: testing will map symbols to ABI=$cf_cv_abi_default ..." 1>&5 +echo "${as_me:-configure}:29752: testing will map symbols to ABI=$cf_cv_abi_default ..." 1>&5 fi @@ -29774,7 +29776,7 @@ # This is used for the *-config script and *.pc data files. -echo "$as_me:29777: checking for linker search path" >&5 +echo "$as_me:29779: 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 @@ -29822,7 +29824,7 @@ cf_pathlist="$cf_pathlist /lib /usr/lib" ;; (*) - { echo "$as_me:29825: WARNING: problem with Solaris architecture" >&5 + { echo "$as_me:29827: WARNING: problem with Solaris architecture" >&5 echo "$as_me: WARNING: problem with Solaris architecture" >&2;} ;; esac @@ -29863,7 +29865,7 @@ test -z "$cf_cv_ld_searchpath" && cf_cv_ld_searchpath=/usr/lib fi -echo "$as_me:29866: result: $cf_cv_ld_searchpath" >&5 +echo "$as_me:29868: 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'` @@ -29949,7 +29951,7 @@ : "${CONFIG_STATUS=./config.status}" ac_clean_files_save=$ac_clean_files ac_clean_files="$ac_clean_files $CONFIG_STATUS" -{ echo "$as_me:29952: creating $CONFIG_STATUS" >&5 +{ echo "$as_me:29954: creating $CONFIG_STATUS" >&5 echo "$as_me: creating $CONFIG_STATUS" >&6;} cat >"$CONFIG_STATUS" <<_ACEOF #! $SHELL @@ -30130,7 +30132,7 @@ echo "$ac_cs_version"; exit 0 ;; --he | --h) # Conflict between --help and --header - { { echo "$as_me:30133: error: ambiguous option: $1 + { { echo "$as_me:30135: 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;} @@ -30149,7 +30151,7 @@ ac_need_defaults=false;; # This is an error. - -*) { { echo "$as_me:30152: error: unrecognized option: $1 + -*) { { echo "$as_me:30154: 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;} @@ -30281,7 +30283,7 @@ "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:30284: error: invalid argument: $ac_config_target" >&5 + *) { { echo "$as_me:30286: error: invalid argument: $ac_config_target" >&5 echo "$as_me: error: invalid argument: $ac_config_target" >&2;} { (exit 1); exit 1; }; };; esac @@ -30809,7 +30811,7 @@ esac if test x"$ac_file" != x-; then - { echo "$as_me:30812: creating $ac_file" >&5 + { echo "$as_me:30814: creating $ac_file" >&5 echo "$as_me: creating $ac_file" >&6;} rm -f "$ac_file" fi @@ -30827,7 +30829,7 @@ -) echo "$tmp"/stdin ;; [\\/$]*) # Absolute (can't be DOS-style, as IFS=:) - test -f "$f" || { { echo "$as_me:30830: error: cannot find input file: $f" >&5 + test -f "$f" || { { echo "$as_me:30832: error: cannot find input file: $f" >&5 echo "$as_me: error: cannot find input file: $f" >&2;} { (exit 1); exit 1; }; } echo "$f";; @@ -30840,7 +30842,7 @@ echo "$srcdir/$f" else # /dev/null tree - { { echo "$as_me:30843: error: cannot find input file: $f" >&5 + { { echo "$as_me:30845: error: cannot find input file: $f" >&5 echo "$as_me: error: cannot find input file: $f" >&2;} { (exit 1); exit 1; }; } fi;; @@ -30856,7 +30858,7 @@ if test -n "$ac_seen"; then ac_used=`grep '@datarootdir@' "$ac_item"` if test -z "$ac_used"; then - { echo "$as_me:30859: WARNING: datarootdir was used implicitly but not set: + { echo "$as_me:30861: 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;} @@ -30865,7 +30867,7 @@ fi ac_seen=`grep '${datarootdir}' "$ac_item"` if test -n "$ac_seen"; then - { echo "$as_me:30868: WARNING: datarootdir was used explicitly but not set: + { echo "$as_me:30870: 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;} @@ -30910,7 +30912,7 @@ 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:30913: WARNING: Variable $ac_name is used but was not set: + { echo "$as_me:30915: 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;} @@ -30921,7 +30923,7 @@ $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:30924: WARNING: Some variables may not be substituted: + { echo "$as_me:30926: WARNING: Some variables may not be substituted: $ac_seen" >&5 echo "$as_me: WARNING: Some variables may not be substituted: $ac_seen" >&2;} @@ -30970,7 +30972,7 @@ * ) ac_file_in=$ac_file.in ;; esac - test x"$ac_file" != x- && { echo "$as_me:30973: creating $ac_file" >&5 + test x"$ac_file" != x- && { echo "$as_me:30975: creating $ac_file" >&5 echo "$as_me: creating $ac_file" >&6;} # First look for the input files in the build tree, otherwise in the @@ -30981,7 +30983,7 @@ -) echo "$tmp"/stdin ;; [\\/$]*) # Absolute (can't be DOS-style, as IFS=:) - test -f "$f" || { { echo "$as_me:30984: error: cannot find input file: $f" >&5 + test -f "$f" || { { echo "$as_me:30986: error: cannot find input file: $f" >&5 echo "$as_me: error: cannot find input file: $f" >&2;} { (exit 1); exit 1; }; } echo $f;; @@ -30994,7 +30996,7 @@ echo "$srcdir/$f" else # /dev/null tree - { { echo "$as_me:30997: error: cannot find input file: $f" >&5 + { { echo "$as_me:30999: error: cannot find input file: $f" >&5 echo "$as_me: error: cannot find input file: $f" >&2;} { (exit 1); exit 1; }; } fi;; @@ -31052,7 +31054,7 @@ 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:31055: $ac_file is unchanged" >&5 + { echo "$as_me:31057: $ac_file is unchanged" >&5 echo "$as_me: $ac_file is unchanged" >&6;} else ac_dir=`$as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ @@ -31439,7 +31441,7 @@ (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}:31442: testing overriding CXX_MODEL to SHARED ..." 1>&5 +echo "${as_me:-configure}:31444: testing overriding CXX_MODEL to SHARED ..." 1>&5 with_shared_cxx=yes ;; Index: dist.mk Prereq: 1.1654 --- ncurses-6.5-20250208+/dist.mk 2025-02-08 11:01:51.000000000 +0000 +++ ncurses-6.5-20250215/dist.mk 2025-02-15 12:35:22.000000000 +0000 @@ -26,7 +26,7 @@ # use or other dealings in this Software without prior written # # authorization. # ############################################################################## -# $Id: dist.mk,v 1.1654 2025/02/08 11:01:51 tom Exp $ +# $Id: dist.mk,v 1.1655 2025/02/15 12:35:22 tom Exp $ # Makefile for creating ncurses distributions. # # This only needs to be used directly as a makefile by developers, but @@ -38,7 +38,7 @@ # These define the major/minor/patch versions of ncurses. NCURSES_MAJOR = 6 NCURSES_MINOR = 5 -NCURSES_PATCH = 20250208 +NCURSES_PATCH = 20250215 # We don't append the patch to the version, since this only applies to releases VERSION = $(NCURSES_MAJOR).$(NCURSES_MINOR) Index: doc/html/man/curs_attr.3x.html --- ncurses-6.5-20250208+/doc/html/man/curs_attr.3x.html 2025-02-02 00:43:57.000000000 +0000 +++ ncurses-6.5-20250215/doc/html/man/curs_attr.3x.html 2025-02-15 20:06:25.000000000 +0000 @@ -28,19 +28,19 @@ * sale, use or other dealings in this Software without prior written * * authorization. * **************************************************************************** - * @Id: curs_attr.3x,v 1.133 2025/02/01 23:59:36 tom Exp @ + * @Id: curs_attr.3x,v 1.136 2025/02/15 19:35:37 tom Exp @ --> -curs_attr 3x 2025-02-01 ncurses 6.5 Library calls +curs_attr 3x 2025-02-15 ncurses 6.5 Library calls -

curs_attr 3x 2025-02-01 ncurses 6.5 Library calls

+

curs_attr 3x 2025-02-15 ncurses 6.5 Library calls

 curs_attr(3x)                    Library calls                   curs_attr(3x)
 
@@ -219,7 +219,7 @@
               A_ALTCHARSET   Alternate character set
               A_ITALIC       Italics (non-X/Open extension)
               A_ATTRIBUTES   Mask to extract character code
-              A_CHARTEXT     Mask to extract atributes
+              A_CHARTEXT     Mask to extract attributes
               A_COLOR        Mask to extract color pair identifier
 
        attr_on,  attr_off,  and  attr_set support the foregoing as well as the
@@ -287,7 +287,7 @@
            standard pointer to short parameter.
 
        o   For functions which turn attributes off, e.g., wattr_off, the  opts
-           parameter is ignored except except to check that it is NULL.
+           parameter is ignored except to check that it is NULL.
 
 
 

PORTABILITY

@@ -493,7 +493,7 @@
 
 
 
-ncurses 6.5                       2025-02-01                     curs_attr(3x)
+ncurses 6.5                       2025-02-15                     curs_attr(3x)